Commit 734f2ea9a0 for wordpress.org

commit 734f2ea9a02b09f320f0ab8188a875bb4be0eba1
Author: youknowriad <youknowriad@git.wordpress.org>
Date:   Wed Jan 28 10:28:42 2026 +0000

    Build/Test Tools: Fix React Refresh hot reloading for block plugins.

    The `react-refresh-entry.js` script was bundling its own copy of
    `react-refresh/runtime` instead of using the `window.ReactRefreshRuntime`
    global set up by `react-refresh-runtime.js`. This created two separate
    runtime instances: the entry script set up hooks on its bundled copy, while
    plugins called `performReactRefresh()` on the window global — a different
    instance with no hooks registered.

    This splits the development webpack config into two configs so that
    `externals` only applies to the entry script. The runtime config bundles
    `react-refresh/runtime` and exposes it as `window.ReactRefreshRuntime`,
    while the entry config uses that global as an external.

    Props manzoorwanijk, wildworks.
    See #64393.

    Built from https://develop.svn.wordpress.org/trunk@61543


    git-svn-id: http://core.svn.wordpress.org/trunk@60854 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/js/dist/development/react-refresh-entry.js b/wp-includes/js/dist/development/react-refresh-entry.js
index cfde54fe12..fc33f0a2b3 100644
--- a/wp-includes/js/dist/development/react-refresh-entry.js
+++ b/wp-includes/js/dist/development/react-refresh-entry.js
@@ -744,675 +744,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
 };


-/***/ }),
-
-/***/ 5644:
-/*!*****************************************************************************!*\
-  !*** ./node_modules/react-refresh/cjs/react-refresh-runtime.development.js ***!
-  \*****************************************************************************/
-/***/ ((__unused_webpack_module, exports) => {
-
-"use strict";
-/**
- * @license React
- * react-refresh-runtime.development.js
- *
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-
-
-if (true) {
-  (function() {
-'use strict';
-
-// ATTENTION
-var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');
-var REACT_MEMO_TYPE = Symbol.for('react.memo');
-
-var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map; // We never remove these associations.
-// It's OK to reference families, but use WeakMap/Set for types.
-
-var allFamiliesByID = new Map();
-var allFamiliesByType = new PossiblyWeakMap();
-var allSignaturesByType = new PossiblyWeakMap(); // This WeakMap is read by React, so we only put families
-// that have actually been edited here. This keeps checks fast.
-// $FlowIssue
-
-var updatedFamiliesByType = new PossiblyWeakMap(); // This is cleared on every performReactRefresh() call.
-// It is an array of [Family, NextType] tuples.
-
-var pendingUpdates = []; // This is injected by the renderer via DevTools global hook.
-
-var helpersByRendererID = new Map();
-var helpersByRoot = new Map(); // We keep track of mounted roots so we can schedule updates.
-
-var mountedRoots = new Set(); // If a root captures an error, we remember it so we can retry on edit.
-
-var failedRoots = new Set(); // In environments that support WeakMap, we also remember the last element for every root.
-// It needs to be weak because we do this even for roots that failed to mount.
-// If there is no WeakMap, we won't attempt to do retrying.
-// $FlowIssue
-
-var rootElements = // $FlowIssue
-typeof WeakMap === 'function' ? new WeakMap() : null;
-var isPerformingRefresh = false;
-
-function computeFullKey(signature) {
-  if (signature.fullKey !== null) {
-    return signature.fullKey;
-  }
-
-  var fullKey = signature.ownKey;
-  var hooks;
-
-  try {
-    hooks = signature.getCustomHooks();
-  } catch (err) {
-    // This can happen in an edge case, e.g. if expression like Foo.useSomething
-    // depends on Foo which is lazily initialized during rendering.
-    // In that case just assume we'll have to remount.
-    signature.forceReset = true;
-    signature.fullKey = fullKey;
-    return fullKey;
-  }
-
-  for (var i = 0; i < hooks.length; i++) {
-    var hook = hooks[i];
-
-    if (typeof hook !== 'function') {
-      // Something's wrong. Assume we need to remount.
-      signature.forceReset = true;
-      signature.fullKey = fullKey;
-      return fullKey;
-    }
-
-    var nestedHookSignature = allSignaturesByType.get(hook);
-
-    if (nestedHookSignature === undefined) {
-      // No signature means Hook wasn't in the source code, e.g. in a library.
-      // We'll skip it because we can assume it won't change during this session.
-      continue;
-    }
-
-    var nestedHookKey = computeFullKey(nestedHookSignature);
-
-    if (nestedHookSignature.forceReset) {
-      signature.forceReset = true;
-    }
-
-    fullKey += '\n---\n' + nestedHookKey;
-  }
-
-  signature.fullKey = fullKey;
-  return fullKey;
-}
-
-function haveEqualSignatures(prevType, nextType) {
-  var prevSignature = allSignaturesByType.get(prevType);
-  var nextSignature = allSignaturesByType.get(nextType);
-
-  if (prevSignature === undefined && nextSignature === undefined) {
-    return true;
-  }
-
-  if (prevSignature === undefined || nextSignature === undefined) {
-    return false;
-  }
-
-  if (computeFullKey(prevSignature) !== computeFullKey(nextSignature)) {
-    return false;
-  }
-
-  if (nextSignature.forceReset) {
-    return false;
-  }
-
-  return true;
-}
-
-function isReactClass(type) {
-  return type.prototype && type.prototype.isReactComponent;
-}
-
-function canPreserveStateBetween(prevType, nextType) {
-  if (isReactClass(prevType) || isReactClass(nextType)) {
-    return false;
-  }
-
-  if (haveEqualSignatures(prevType, nextType)) {
-    return true;
-  }
-
-  return false;
-}
-
-function resolveFamily(type) {
-  // Only check updated types to keep lookups fast.
-  return updatedFamiliesByType.get(type);
-} // If we didn't care about IE11, we could use new Map/Set(iterable).
-
-
-function cloneMap(map) {
-  var clone = new Map();
-  map.forEach(function (value, key) {
-    clone.set(key, value);
-  });
-  return clone;
-}
-
-function cloneSet(set) {
-  var clone = new Set();
-  set.forEach(function (value) {
-    clone.add(value);
-  });
-  return clone;
-} // This is a safety mechanism to protect against rogue getters and Proxies.
-
-
-function getProperty(object, property) {
-  try {
-    return object[property];
-  } catch (err) {
-    // Intentionally ignore.
-    return undefined;
-  }
-}
-
-function performReactRefresh() {
-
-  if (pendingUpdates.length === 0) {
-    return null;
-  }
-
-  if (isPerformingRefresh) {
-    return null;
-  }
-
-  isPerformingRefresh = true;
-
-  try {
-    var staleFamilies = new Set();
-    var updatedFamilies = new Set();
-    var updates = pendingUpdates;
-    pendingUpdates = [];
-    updates.forEach(function (_ref) {
-      var family = _ref[0],
-          nextType = _ref[1];
-      // Now that we got a real edit, we can create associations
-      // that will be read by the React reconciler.
-      var prevType = family.current;
-      updatedFamiliesByType.set(prevType, family);
-      updatedFamiliesByType.set(nextType, family);
-      family.current = nextType; // Determine whether this should be a re-render or a re-mount.
-
-      if (canPreserveStateBetween(prevType, nextType)) {
-        updatedFamilies.add(family);
-      } else {
-        staleFamilies.add(family);
-      }
-    }); // TODO: rename these fields to something more meaningful.
-
-    var update = {
-      updatedFamilies: updatedFamilies,
-      // Families that will re-render preserving state
-      staleFamilies: staleFamilies // Families that will be remounted
-
-    };
-    helpersByRendererID.forEach(function (helpers) {
-      // Even if there are no roots, set the handler on first update.
-      // This ensures that if *new* roots are mounted, they'll use the resolve handler.
-      helpers.setRefreshHandler(resolveFamily);
-    });
-    var didError = false;
-    var firstError = null; // We snapshot maps and sets that are mutated during commits.
-    // If we don't do this, there is a risk they will be mutated while
-    // we iterate over them. For example, trying to recover a failed root
-    // may cause another root to be added to the failed list -- an infinite loop.
-
-    var failedRootsSnapshot = cloneSet(failedRoots);
-    var mountedRootsSnapshot = cloneSet(mountedRoots);
-    var helpersByRootSnapshot = cloneMap(helpersByRoot);
-    failedRootsSnapshot.forEach(function (root) {
-      var helpers = helpersByRootSnapshot.get(root);
-
-      if (helpers === undefined) {
-        throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');
-      }
-
-      if (!failedRoots.has(root)) {// No longer failed.
-      }
-
-      if (rootElements === null) {
-        return;
-      }
-
-      if (!rootElements.has(root)) {
-        return;
-      }
-
-      var element = rootElements.get(root);
-
-      try {
-        helpers.scheduleRoot(root, element);
-      } catch (err) {
-        if (!didError) {
-          didError = true;
-          firstError = err;
-        } // Keep trying other roots.
-
-      }
-    });
-    mountedRootsSnapshot.forEach(function (root) {
-      var helpers = helpersByRootSnapshot.get(root);
-
-      if (helpers === undefined) {
-        throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');
-      }
-
-      if (!mountedRoots.has(root)) {// No longer mounted.
-      }
-
-      try {
-        helpers.scheduleRefresh(root, update);
-      } catch (err) {
-        if (!didError) {
-          didError = true;
-          firstError = err;
-        } // Keep trying other roots.
-
-      }
-    });
-
-    if (didError) {
-      throw firstError;
-    }
-
-    return update;
-  } finally {
-    isPerformingRefresh = false;
-  }
-}
-function register(type, id) {
-  {
-    if (type === null) {
-      return;
-    }
-
-    if (typeof type !== 'function' && typeof type !== 'object') {
-      return;
-    } // This can happen in an edge case, e.g. if we register
-    // return value of a HOC but it returns a cached component.
-    // Ignore anything but the first registration for each type.
-
-
-    if (allFamiliesByType.has(type)) {
-      return;
-    } // Create family or remember to update it.
-    // None of this bookkeeping affects reconciliation
-    // until the first performReactRefresh() call above.
-
-
-    var family = allFamiliesByID.get(id);
-
-    if (family === undefined) {
-      family = {
-        current: type
-      };
-      allFamiliesByID.set(id, family);
-    } else {
-      pendingUpdates.push([family, type]);
-    }
-
-    allFamiliesByType.set(type, family); // Visit inner types because we might not have registered them.
-
-    if (typeof type === 'object' && type !== null) {
-      switch (getProperty(type, '$$typeof')) {
-        case REACT_FORWARD_REF_TYPE:
-          register(type.render, id + '$render');
-          break;
-
-        case REACT_MEMO_TYPE:
-          register(type.type, id + '$type');
-          break;
-      }
-    }
-  }
-}
-function setSignature(type, key) {
-  var forceReset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
-  var getCustomHooks = arguments.length > 3 ? arguments[3] : undefined;
-
-  {
-    if (!allSignaturesByType.has(type)) {
-      allSignaturesByType.set(type, {
-        forceReset: forceReset,
-        ownKey: key,
-        fullKey: null,
-        getCustomHooks: getCustomHooks || function () {
-          return [];
-        }
-      });
-    } // Visit inner types because we might not have signed them.
-
-
-    if (typeof type === 'object' && type !== null) {
-      switch (getProperty(type, '$$typeof')) {
-        case REACT_FORWARD_REF_TYPE:
-          setSignature(type.render, key, forceReset, getCustomHooks);
-          break;
-
-        case REACT_MEMO_TYPE:
-          setSignature(type.type, key, forceReset, getCustomHooks);
-          break;
-      }
-    }
-  }
-} // This is lazily called during first render for a type.
-// It captures Hook list at that time so inline requires don't break comparisons.
-
-function collectCustomHooksForSignature(type) {
-  {
-    var signature = allSignaturesByType.get(type);
-
-    if (signature !== undefined) {
-      computeFullKey(signature);
-    }
-  }
-}
-function getFamilyByID(id) {
-  {
-    return allFamiliesByID.get(id);
-  }
-}
-function getFamilyByType(type) {
-  {
-    return allFamiliesByType.get(type);
-  }
-}
-function findAffectedHostInstances(families) {
-  {
-    var affectedInstances = new Set();
-    mountedRoots.forEach(function (root) {
-      var helpers = helpersByRoot.get(root);
-
-      if (helpers === undefined) {
-        throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');
-      }
-
-      var instancesForRoot = helpers.findHostInstancesForRefresh(root, families);
-      instancesForRoot.forEach(function (inst) {
-        affectedInstances.add(inst);
-      });
-    });
-    return affectedInstances;
-  }
-}
-function injectIntoGlobalHook(globalObject) {
-  {
-    // For React Native, the global hook will be set up by require('react-devtools-core').
-    // That code will run before us. So we need to monkeypatch functions on existing hook.
-    // For React Web, the global hook will be set up by the extension.
-    // This will also run before us.
-    var hook = globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__;
-
-    if (hook === undefined) {
-      // However, if there is no DevTools extension, we'll need to set up the global hook ourselves.
-      // Note that in this case it's important that renderer code runs *after* this method call.
-      // Otherwise, the renderer will think that there is no global hook, and won't do the injection.
-      var nextID = 0;
-      globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__ = hook = {
-        renderers: new Map(),
-        supportsFiber: true,
-        inject: function (injected) {
-          return nextID++;
-        },
-        onScheduleFiberRoot: function (id, root, children) {},
-        onCommitFiberRoot: function (id, root, maybePriorityLevel, didError) {},
-        onCommitFiberUnmount: function () {}
-      };
-    }
-
-    if (hook.isDisabled) {
-      // This isn't a real property on the hook, but it can be set to opt out
-      // of DevTools integration and associated warnings and logs.
-      // Using console['warn'] to evade Babel and ESLint
-      console['warn']('Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). ' + 'Fast Refresh is not compatible with this shim and will be disabled.');
-      return;
-    } // Here, we just want to get a reference to scheduleRefresh.
-
-
-    var oldInject = hook.inject;
-
-    hook.inject = function (injected) {
-      var id = oldInject.apply(this, arguments);
-
-      if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') {
-        // This version supports React Refresh.
-        helpersByRendererID.set(id, injected);
-      }
-
-      return id;
-    }; // Do the same for any already injected roots.
-    // This is useful if ReactDOM has already been initialized.
-    // https://github.com/facebook/react/issues/17626
-
-
-    hook.renderers.forEach(function (injected, id) {
-      if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') {
-        // This version supports React Refresh.
-        helpersByRendererID.set(id, injected);
-      }
-    }); // We also want to track currently mounted roots.
-
-    var oldOnCommitFiberRoot = hook.onCommitFiberRoot;
-
-    var oldOnScheduleFiberRoot = hook.onScheduleFiberRoot || function () {};
-
-    hook.onScheduleFiberRoot = function (id, root, children) {
-      if (!isPerformingRefresh) {
-        // If it was intentionally scheduled, don't attempt to restore.
-        // This includes intentionally scheduled unmounts.
-        failedRoots.delete(root);
-
-        if (rootElements !== null) {
-          rootElements.set(root, children);
-        }
-      }
-
-      return oldOnScheduleFiberRoot.apply(this, arguments);
-    };
-
-    hook.onCommitFiberRoot = function (id, root, maybePriorityLevel, didError) {
-      var helpers = helpersByRendererID.get(id);
-
-      if (helpers !== undefined) {
-        helpersByRoot.set(root, helpers);
-        var current = root.current;
-        var alternate = current.alternate; // We need to determine whether this root has just (un)mounted.
-        // This logic is copy-pasted from similar logic in the DevTools backend.
-        // If this breaks with some refactoring, you'll want to update DevTools too.
-
-        if (alternate !== null) {
-          var wasMounted = alternate.memoizedState != null && alternate.memoizedState.element != null && mountedRoots.has(root);
-          var isMounted = current.memoizedState != null && current.memoizedState.element != null;
-
-          if (!wasMounted && isMounted) {
-            // Mount a new root.
-            mountedRoots.add(root);
-            failedRoots.delete(root);
-          } else if (wasMounted && isMounted) ; else if (wasMounted && !isMounted) {
-            // Unmount an existing root.
-            mountedRoots.delete(root);
-
-            if (didError) {
-              // We'll remount it on future edits.
-              failedRoots.add(root);
-            } else {
-              helpersByRoot.delete(root);
-            }
-          } else if (!wasMounted && !isMounted) {
-            if (didError) {
-              // We'll remount it on future edits.
-              failedRoots.add(root);
-            }
-          }
-        } else {
-          // Mount a new root.
-          mountedRoots.add(root);
-        }
-      } // Always call the decorated DevTools hook.
-
-
-      return oldOnCommitFiberRoot.apply(this, arguments);
-    };
-  }
-}
-function hasUnrecoverableErrors() {
-  // TODO: delete this after removing dependency in RN.
-  return false;
-} // Exposed for testing.
-
-function _getMountedRootCount() {
-  {
-    return mountedRoots.size;
-  }
-} // This is a wrapper over more primitive functions for setting signature.
-// Signatures let us decide whether the Hook order has changed on refresh.
-//
-// This function is intended to be used as a transform target, e.g.:
-// var _s = createSignatureFunctionForTransform()
-//
-// function Hello() {
-//   const [foo, setFoo] = useState(0);
-//   const value = useCustomHook();
-//   _s(); /* Call without arguments triggers collecting the custom Hook list.
-//          * This doesn't happen during the module evaluation because we
-//          * don't want to change the module order with inline requires.
-//          * Next calls are noops. */
-//   return <h1>Hi</h1>;
-// }
-//
-// /* Call with arguments attaches the signature to the type: */
-// _s(
-//   Hello,
-//   'useState{[foo, setFoo]}(0)',
-//   () => [useCustomHook], /* Lazy to avoid triggering inline requires */
-// );
-
-function createSignatureFunctionForTransform() {
-  {
-    var savedType;
-    var hasCustomHooks;
-    var didCollectHooks = false;
-    return function (type, key, forceReset, getCustomHooks) {
-      if (typeof key === 'string') {
-        // We're in the initial phase that associates signatures
-        // with the functions. Note this may be called multiple times
-        // in HOC chains like _s(hoc1(_s(hoc2(_s(actualFunction))))).
-        if (!savedType) {
-          // We're in the innermost call, so this is the actual type.
-          savedType = type;
-          hasCustomHooks = typeof getCustomHooks === 'function';
-        } // Set the signature for all types (even wrappers!) in case
-        // they have no signatures of their own. This is to prevent
-        // problems like https://github.com/facebook/react/issues/20417.
-
-
-        if (type != null && (typeof type === 'function' || typeof type === 'object')) {
-          setSignature(type, key, forceReset, getCustomHooks);
-        }
-
-        return type;
-      } else {
-        // We're in the _s() call without arguments, which means
-        // this is the time to collect custom Hook signatures.
-        // Only do this once. This path is hot and runs *inside* every render!
-        if (!didCollectHooks && hasCustomHooks) {
-          didCollectHooks = true;
-          collectCustomHooksForSignature(savedType);
-        }
-      }
-    };
-  }
-}
-function isLikelyComponentType(type) {
-  {
-    switch (typeof type) {
-      case 'function':
-        {
-          // First, deal with classes.
-          if (type.prototype != null) {
-            if (type.prototype.isReactComponent) {
-              // React class.
-              return true;
-            }
-
-            var ownNames = Object.getOwnPropertyNames(type.prototype);
-
-            if (ownNames.length > 1 || ownNames[0] !== 'constructor') {
-              // This looks like a class.
-              return false;
-            } // eslint-disable-next-line no-proto
-
-
-            if (type.prototype.__proto__ !== Object.prototype) {
-              // It has a superclass.
-              return false;
-            } // Pass through.
-            // This looks like a regular function with empty prototype.
-
-          } // For plain functions and arrows, use name as a heuristic.
-
-
-          var name = type.name || type.displayName;
-          return typeof name === 'string' && /^[A-Z]/.test(name);
-        }
-
-      case 'object':
-        {
-          if (type != null) {
-            switch (getProperty(type, '$$typeof')) {
-              case REACT_FORWARD_REF_TYPE:
-              case REACT_MEMO_TYPE:
-                // Definitely React components.
-                return true;
-
-              default:
-                return false;
-            }
-          }
-
-          return false;
-        }
-
-      default:
-        {
-          return false;
-        }
-    }
-  }
-}
-
-exports._getMountedRootCount = _getMountedRootCount;
-exports.collectCustomHooksForSignature = collectCustomHooksForSignature;
-exports.createSignatureFunctionForTransform = createSignatureFunctionForTransform;
-exports.findAffectedHostInstances = findAffectedHostInstances;
-exports.getFamilyByID = getFamilyByID;
-exports.getFamilyByType = getFamilyByType;
-exports.hasUnrecoverableErrors = hasUnrecoverableErrors;
-exports.injectIntoGlobalHook = injectIntoGlobalHook;
-exports.isLikelyComponentType = isLikelyComponentType;
-exports.performReactRefresh = performReactRefresh;
-exports.register = register;
-exports.setSignature = setSignature;
-  })();
-}
-
-
 /***/ }),

 /***/ 5683:
@@ -1594,22 +925,6 @@ var store = global[SHARED] || defineGlobalProperty(SHARED, {});
 module.exports = store;


-/***/ }),
-
-/***/ 6206:
-/*!***********************************************!*\
-  !*** ./node_modules/react-refresh/runtime.js ***!
-  \***********************************************/
-/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
-
-"use strict";
-
-
-if (false) {} else {
-  module.exports = __webpack_require__(/*! ./cjs/react-refresh-runtime.development.js */ 5644);
-}
-
-
 /***/ }),

 /***/ 6264:
@@ -1810,6 +1125,17 @@ var POLYFILL = isForced.POLYFILL = 'P';
 module.exports = isForced;


+/***/ }),
+
+/***/ 8015:
+/*!**************************************!*\
+  !*** external "ReactRefreshRuntime" ***!
+  \**************************************/
+/***/ ((module) => {
+
+"use strict";
+module.exports = ReactRefreshRuntime;
+
 /***/ }),

 /***/ 8280:
@@ -2081,7 +1407,7 @@ var __webpack_exports__ = {};

 if (true) {
   const safeThis = __webpack_require__(/*! core-js-pure/features/global-this */ 4444);
-  const RefreshRuntime = __webpack_require__(/*! react-refresh/runtime */ 6206);
+  const RefreshRuntime = __webpack_require__(/*! react-refresh/runtime */ 8015);

   if (typeof safeThis !== 'undefined') {
     var $RefreshInjected$ = '__reactRefreshInjected';
diff --git a/wp-includes/js/dist/development/react-refresh-entry.min.js b/wp-includes/js/dist/development/react-refresh-entry.min.js
index da453c4c48..c6681958e2 100644
--- a/wp-includes/js/dist/development/react-refresh-entry.min.js
+++ b/wp-includes/js/dist/development/react-refresh-entry.min.js
@@ -1,184 +1,172 @@
 (()=>{var t={214:
 /*!*******************************************************!*\
   !*** ./node_modules/core-js-pure/full/global-this.js ***!
-  \*******************************************************/(t,e,r)=>{"use strict";r(/*! ../modules/esnext.global-this */397);var n=r(/*! ../actual/global-this */3565);t.exports=n},397:
+  \*******************************************************/(t,r,e)=>{"use strict";e(/*! ../modules/esnext.global-this */397);var n=e(/*! ../actual/global-this */3565);t.exports=n},397:
 /*!*****************************************************************!*\
   !*** ./node_modules/core-js-pure/modules/esnext.global-this.js ***!
-  \*****************************************************************/(t,e,r)=>{"use strict";r(/*! ../modules/es.global-this */2344)},470:
+  \*****************************************************************/(t,r,e)=>{"use strict";e(/*! ../modules/es.global-this */2344)},470:
 /*!****************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/to-property-key.js ***!
-  \****************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/to-primitive */6028),o=r(/*! ../internals/is-symbol */5594);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},581:
+  \****************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/to-primitive */6028),o=e(/*! ../internals/is-symbol */5594);t.exports=function(t){var r=n(t,"string");return o(r)?r:r+""}},581:
 /*!**********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/ordinary-to-primitive.js ***!
-  \**********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-call */3930),o=r(/*! ../internals/is-callable */2250),i=r(/*! ../internals/is-object */6285),u=TypeError;t.exports=function(t,e){var r,s;if("string"===e&&o(r=t.toString)&&!i(s=n(r,t)))return s;if(o(r=t.valueOf)&&!i(s=n(r,t)))return s;if("string"!==e&&o(r=t.toString)&&!i(s=n(r,t)))return s;throw new u("Can't convert object to primitive value")}},1010:
+  \**********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-call */3930),o=e(/*! ../internals/is-callable */2250),i=e(/*! ../internals/is-object */6285),s=TypeError;t.exports=function(t,r){var e,u;if("string"===r&&o(e=t.toString)&&!i(u=n(e,t)))return u;if(o(e=t.valueOf)&&!i(u=n(e,t)))return u;if("string"!==r&&o(e=t.toString)&&!i(u=n(e,t)))return u;throw new s("Can't convert object to primitive value")}},1010:
 /*!*******************************************************!*\
   !*** ./node_modules/core-js-pure/internals/global.js ***!
-  \*******************************************************/function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},1091:
+  \*******************************************************/function(t,r,e){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e.g&&e.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},1091:
 /*!*******************************************************!*\
   !*** ./node_modules/core-js-pure/internals/export.js ***!
-  \*******************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/global */1010),o=r(/*! ../internals/function-apply */6024),i=r(/*! ../internals/function-uncurry-this-clause */2361),u=r(/*! ../internals/is-callable */2250),s=r(/*! ../internals/object-get-own-property-descriptor */3846).f,c=r(/*! ../internals/is-forced */7463),a=r(/*! ../internals/path */2046),f=r(/*! ../internals/function-bind-context */8311),p=r(/*! ../internals/create-non-enumerable-property */1626),l=r(/*! ../internals/has-own-property */9724),v=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,o,y,h,d,b,m,g,w,x=t.target,_=t.global,S=t.stat,j=t.proto,O=_?n:S?n[x]:n[x]&&n[x].prototype,R=_?a:a[x]||p(a,x,{})[x],E=R.prototype;for(h in e)o=!(r=c(_?h:x+(S?".":"#")+h,t.forced))&&O&&l(O,h),b=R[h],o&&(m=t.dontCallGetSet?(w=s(O,h))&&w.value:O[h]),d=o&&m?m:e[h],(r||j||typeof b!=typeof d)&&(g=t.bind&&o?f(d,n):t.wrap&&o?v(d):j&&u(d)?i(d):d,(t.sham||d&&d.sham||b&&b.sham)&&p(g,"sham",!0),p(R,h,g),j&&(l(a,y=x+"Prototype")||p(a,y,{}),p(a[y],h,d),t.real&&E&&(r||!E[h])&&p(E,h,d)))}},1175:
+  \*******************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/global */1010),o=e(/*! ../internals/function-apply */6024),i=e(/*! ../internals/function-uncurry-this-clause */2361),s=e(/*! ../internals/is-callable */2250),u=e(/*! ../internals/object-get-own-property-descriptor */3846).f,c=e(/*! ../internals/is-forced */7463),a=e(/*! ../internals/path */2046),p=e(/*! ../internals/function-bind-context */8311),f=e(/*! ../internals/create-non-enumerable-property */1626),l=e(/*! ../internals/has-own-property */9724),v=function(t){var r=function(e,n,i){if(this instanceof r){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return o(t,this,arguments)};return r.prototype=t.prototype,r};t.exports=function(t,r){var e,o,y,b,h,x,d,g,m,w=t.target,j=t.global,_=t.stat,O=t.proto,S=j?n:_?n[w]:n[w]&&n[w].prototype,P=j?a:a[w]||f(a,w,{})[w],E=P.prototype;for(b in r)o=!(e=c(j?b:w+(_?".":"#")+b,t.forced))&&S&&l(S,b),x=P[b],o&&(d=t.dontCallGetSet?(m=u(S,b))&&m.value:S[b]),h=o&&d?d:r[b],(e||O||typeof x!=typeof h)&&(g=t.bind&&o?p(h,n):t.wrap&&o?v(h):O&&s(h)?i(h):h,(t.sham||h&&h.sham||x&&x.sham)&&f(g,"sham",!0),f(P,b,g),O&&(l(a,y=w+"Prototype")||f(a,y,{}),f(a[y],b,h),t.real&&E&&(e||!E[b])&&f(E,b,h)))}},1175:
 /*!******************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/use-symbol-as-uid.js ***!
-  \******************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/symbol-constructor-detection */9846);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1505:
+  \******************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/symbol-constructor-detection */9846);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1505:
 /*!*********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-bind-native.js ***!
-  \*********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/fails */8828);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},1626:
+  \*********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/fails */8828);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},1626:
 /*!*******************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/create-non-enumerable-property.js ***!
-  \*******************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/descriptors */9447),o=r(/*! ../internals/object-define-property */4284),i=r(/*! ../internals/create-property-descriptor */5817);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},1907:
+  \*******************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/descriptors */9447),o=e(/*! ../internals/object-define-property */4284),i=e(/*! ../internals/create-property-descriptor */5817);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},1907:
 /*!**********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-uncurry-this.js ***!
-  \**********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-bind-native */1505),o=Function.prototype,i=o.call,u=n&&o.bind.bind(i,i);t.exports=n?u:function(t){return function(){return i.apply(t,arguments)}}},1960:
+  \**********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-bind-native */1505),o=Function.prototype,i=o.call,s=n&&o.bind.bind(i,i);t.exports=n?s:function(t){return function(){return i.apply(t,arguments)}}},1960:
 /*!*********************************************************!*\
   !*** ./node_modules/core-js-pure/stable/global-this.js ***!
-  \*********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../es/global-this */2671);t.exports=n},2046:
+  \*********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../es/global-this */2671);t.exports=n},2046:
 /*!*****************************************************!*\
   !*** ./node_modules/core-js-pure/internals/path.js ***!
   \*****************************************************/t=>{"use strict";t.exports={}},2159:
 /*!***********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/a-callable.js ***!
-  \***********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/is-callable */2250),o=r(/*! ../internals/try-to-string */4640),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},2250:
+  \***********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/is-callable */2250),o=e(/*! ../internals/try-to-string */4640),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},2250:
 /*!************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-callable.js ***!
-  \************************************************************/t=>{"use strict";var e="object"==typeof document&&document.all;t.exports=void 0===e&&void 0!==e?function(t){return"function"==typeof t||t===e}:function(t){return"function"==typeof t}},2344:
+  \************************************************************/t=>{"use strict";var r="object"==typeof document&&document.all;t.exports=void 0===r&&void 0!==r?function(t){return"function"==typeof t||t===r}:function(t){return"function"==typeof t}},2344:
 /*!*************************************************************!*\
   !*** ./node_modules/core-js-pure/modules/es.global-this.js ***!
-  \*************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/export */1091),o=r(/*! ../internals/global */1010);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},2361:
+  \*************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/export */1091),o=e(/*! ../internals/global */1010);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},2361:
 /*!*****************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-uncurry-this-clause.js ***!
-  \*****************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/classof-raw */5807),o=r(/*! ../internals/function-uncurry-this */1907);t.exports=function(t){if("Function"===n(t))return o(t)}},2532:
+  \*****************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/classof-raw */5807),o=e(/*! ../internals/function-uncurry-this */1907);t.exports=function(t){if("Function"===n(t))return o(t)}},2532:
 /*!***********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/define-global-property.js ***!
-  \***********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/global */1010),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},2574:
+  \***********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/global */1010),o=Object.defineProperty;t.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},2574:
 /*!******************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/object-property-is-enumerable.js ***!
-  \******************************************************************************/(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},2671:
+  \******************************************************************************/(t,r)=>{"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},2671:
 /*!*****************************************************!*\
   !*** ./node_modules/core-js-pure/es/global-this.js ***!
-  \*****************************************************/(t,e,r)=>{"use strict";r(/*! ../modules/es.global-this */2344),t.exports=r(/*! ../internals/global */1010)},3565:
+  \*****************************************************/(t,r,e)=>{"use strict";e(/*! ../modules/es.global-this */2344),t.exports=e(/*! ../internals/global */1010)},3565:
 /*!*********************************************************!*\
   !*** ./node_modules/core-js-pure/actual/global-this.js ***!
-  \*********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../stable/global-this */1960);t.exports=n},3648:
+  \*********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../stable/global-this */1960);t.exports=n},3648:
 /*!***************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/ie8-dom-define.js ***!
-  \***************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/descriptors */9447),o=r(/*! ../internals/fails */8828),i=r(/*! ../internals/document-create-element */9552);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},3846:
+  \***************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/descriptors */9447),o=e(/*! ../internals/fails */8828),i=e(/*! ../internals/document-create-element */9552);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},3846:
 /*!***********************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/object-get-own-property-descriptor.js ***!
-  \***********************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/descriptors */9447),o=r(/*! ../internals/function-call */3930),i=r(/*! ../internals/object-property-is-enumerable */2574),u=r(/*! ../internals/create-property-descriptor */5817),s=r(/*! ../internals/to-indexed-object */7374),c=r(/*! ../internals/to-property-key */470),a=r(/*! ../internals/has-own-property */9724),f=r(/*! ../internals/ie8-dom-define */3648),p=Object.getOwnPropertyDescriptor;e.f=n?p:function(t,e){if(t=s(t),e=c(e),f)try{return p(t,e)}catch(t){}if(a(t,e))return u(!o(i.f,t,e),t[e])}},3930:
+  \***********************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/descriptors */9447),o=e(/*! ../internals/function-call */3930),i=e(/*! ../internals/object-property-is-enumerable */2574),s=e(/*! ../internals/create-property-descriptor */5817),u=e(/*! ../internals/to-indexed-object */7374),c=e(/*! ../internals/to-property-key */470),a=e(/*! ../internals/has-own-property */9724),p=e(/*! ../internals/ie8-dom-define */3648),f=Object.getOwnPropertyDescriptor;r.f=n?f:function(t,r){if(t=u(t),r=c(r),p)try{return f(t,r)}catch(t){}if(a(t,r))return s(!o(i.f,t,r),t[r])}},3930:
 /*!**************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-call.js ***!
-  \**************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-bind-native */1505),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},4239:
+  \**************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-bind-native */1505),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},4239:
 /*!*************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/require-object-coercible.js ***!
-  \*************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/is-null-or-undefined */7136),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},4284:
+  \*************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/is-null-or-undefined */7136),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},4284:
 /*!***********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/object-define-property.js ***!
-  \***********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/descriptors */9447),o=r(/*! ../internals/ie8-dom-define */3648),i=r(/*! ../internals/v8-prototype-define-bug */8661),u=r(/*! ../internals/an-object */6624),s=r(/*! ../internals/to-property-key */470),c=TypeError,a=Object.defineProperty,f=Object.getOwnPropertyDescriptor,p="enumerable",l="configurable",v="writable";e.f=n?i?function(t,e,r){if(u(t),e=s(e),u(r),"function"==typeof t&&"prototype"===e&&"value"in r&&v in r&&!r[v]){var n=f(t,e);n&&n[v]&&(t[e]=r.value,r={configurable:l in r?r[l]:n[l],enumerable:p in r?r[p]:n[p],writable:!1})}return a(t,e,r)}:a:function(t,e,r){if(u(t),e=s(e),u(r),o)try{return a(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new c("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},4444:
+  \***********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/descriptors */9447),o=e(/*! ../internals/ie8-dom-define */3648),i=e(/*! ../internals/v8-prototype-define-bug */8661),s=e(/*! ../internals/an-object */6624),u=e(/*! ../internals/to-property-key */470),c=TypeError,a=Object.defineProperty,p=Object.getOwnPropertyDescriptor,f="enumerable",l="configurable",v="writable";r.f=n?i?function(t,r,e){if(s(t),r=u(r),s(e),"function"==typeof t&&"prototype"===r&&"value"in e&&v in e&&!e[v]){var n=p(t,r);n&&n[v]&&(t[r]=e.value,e={configurable:l in e?e[l]:n[l],enumerable:f in e?e[f]:n[f],writable:!1})}return a(t,r,e)}:a:function(t,r,e){if(s(t),r=u(r),s(e),o)try{return a(t,r,e)}catch(t){}if("get"in e||"set"in e)throw new c("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},4444:
 /*!***********************************************************!*\
   !*** ./node_modules/core-js-pure/features/global-this.js ***!
-  \***********************************************************/(t,e,r)=>{"use strict";t.exports=r(/*! ../full/global-this */214)},4640:
+  \***********************************************************/(t,r,e)=>{"use strict";t.exports=e(/*! ../full/global-this */214)},4640:
 /*!**************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/try-to-string.js ***!
-  \**************************************************************/t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},4723:
+  \**************************************************************/t=>{"use strict";var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},4723:
 /*!******************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/engine-user-agent.js ***!
   \******************************************************************/t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},5582:
 /*!*************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/get-built-in.js ***!
-  \*************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/path */2046),o=r(/*! ../internals/global */1010),i=r(/*! ../internals/is-callable */2250),u=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?u(n[t])||u(o[t]):n[t]&&n[t][e]||o[t]&&o[t][e]}},5594:
+  \*************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/path */2046),o=e(/*! ../internals/global */1010),i=e(/*! ../internals/is-callable */2250),s=function(t){return i(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?s(n[t])||s(o[t]):n[t]&&n[t][r]||o[t]&&o[t][r]}},5594:
 /*!**********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-symbol.js ***!
-  \**********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/get-built-in */5582),o=r(/*! ../internals/is-callable */2250),i=r(/*! ../internals/object-is-prototype-of */8280),u=r(/*! ../internals/use-symbol-as-uid */1175),s=Object;t.exports=u?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return o(e)&&i(e.prototype,s(t))}},5644:
-/*!*****************************************************************************!*\
-  !*** ./node_modules/react-refresh/cjs/react-refresh-runtime.development.js ***!
-  \*****************************************************************************/(t,e)=>{"use strict";
-/**
- * @license React
- * react-refresh-runtime.development.js
- *
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */(function(){var t=Symbol.for("react.forward_ref"),r=Symbol.for("react.memo"),n="function"==typeof WeakMap?WeakMap:Map,o=new Map,i=new n,u=new n,s=new n,c=[],a=new Map,f=new Map,p=new Set,l=new Set,v="function"==typeof WeakMap?new WeakMap:null,y=!1;function h(t){if(null!==t.fullKey)return t.fullKey;var e,r=t.ownKey;try{e=t.getCustomHooks()}catch(e){return t.forceReset=!0,t.fullKey=r,r}for(var n=0;n<e.length;n++){var o=e[n];if("function"!=typeof o)return t.forceReset=!0,t.fullKey=r,r;var i=u.get(o);if(void 0!==i){var s=h(i);i.forceReset&&(t.forceReset=!0),r+="\n---\n"+s}}return t.fullKey=r,r}function d(t){return t.prototype&&t.prototype.isReactComponent}function b(t,e){return!d(t)&&!d(e)&&!!function(t,e){var r=u.get(t),n=u.get(e);return void 0===r&&void 0===n||void 0!==r&&void 0!==n&&h(r)===h(n)&&!n.forceReset}(t,e)}function m(t){return s.get(t)}function g(t){var e=new Set;return t.forEach((function(t){e.add(t)})),e}function w(t,e){try{return t[e]}catch(t){return}}function x(e,n){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=arguments.length>3?arguments[3]:void 0;if(u.has(e)||u.set(e,{forceReset:o,ownKey:n,fullKey:null,getCustomHooks:i||function(){return[]}}),"object"==typeof e&&null!==e)switch(w(e,"$$typeof")){case t:x(e.render,n,o,i);break;case r:x(e.type,n,o,i)}}function _(t){var e=u.get(t);void 0!==e&&h(e)}e._getMountedRootCount=function(){return p.size},e.collectCustomHooksForSignature=_,e.createSignatureFunctionForTransform=function(){var t,e,r=!1;return function(n,o,i,u){if("string"==typeof o)return t||(t=n,e="function"==typeof u),null==n||"function"!=typeof n&&"object"!=typeof n||x(n,o,i,u),n;!r&&e&&(r=!0,_(t))}},e.findAffectedHostInstances=function(t){var e=new Set;return p.forEach((function(r){var n=f.get(r);if(void 0===n)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");n.findHostInstancesForRefresh(r,t).forEach((function(t){e.add(t)}))})),e},e.getFamilyByID=function(t){return o.get(t)},e.getFamilyByType=function(t){return i.get(t)},e.hasUnrecoverableErrors=function(){return!1},e.injectIntoGlobalHook=function(t){var e=t.__REACT_DEVTOOLS_GLOBAL_HOOK__;if(void 0===e){var r=0;t.__REACT_DEVTOOLS_GLOBAL_HOOK__=e={renderers:new Map,supportsFiber:!0,inject:function(t){return r++},onScheduleFiberRoot:function(t,e,r){},onCommitFiberRoot:function(t,e,r,n){},onCommitFiberUnmount:function(){}}}if(e.isDisabled)console.warn("Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). Fast Refresh is not compatible with this shim and will be disabled.");else{var n=e.inject;e.inject=function(t){var e=n.apply(this,arguments);return"function"==typeof t.scheduleRefresh&&"function"==typeof t.setRefreshHandler&&a.set(e,t),e},e.renderers.forEach((function(t,e){"function"==typeof t.scheduleRefresh&&"function"==typeof t.setRefreshHandler&&a.set(e,t)}));var o=e.onCommitFiberRoot,i=e.onScheduleFiberRoot||function(){};e.onScheduleFiberRoot=function(t,e,r){return y||(l.delete(e),null!==v&&v.set(e,r)),i.apply(this,arguments)},e.onCommitFiberRoot=function(t,e,r,n){var i=a.get(t);if(void 0!==i){f.set(e,i);var u=e.current,s=u.alternate;if(null!==s){var c=null!=s.memoizedState&&null!=s.memoizedState.element&&p.has(e),v=null!=u.memoizedState&&null!=u.memoizedState.element;!c&&v?(p.add(e),l.delete(e)):c&&v||(c&&!v?(p.delete(e),n?l.add(e):f.delete(e)):c||v||n&&l.add(e))}else p.add(e)}return o.apply(this,arguments)}}},e.isLikelyComponentType=function(e){switch(typeof e){case"function":if(null!=e.prototype){if(e.prototype.isReactComponent)return!0;var n=Object.getOwnPropertyNames(e.prototype);if(n.length>1||"constructor"!==n[0])return!1;if(e.prototype.__proto__!==Object.prototype)return!1}var o=e.name||e.displayName;return"string"==typeof o&&/^[A-Z]/.test(o);case"object":if(null!=e)switch(w(e,"$$typeof")){case t:case r:return!0;default:return!1}return!1;default:return!1}},e.performReactRefresh=function(){if(0===c.length)return null;if(y)return null;y=!0;try{var t=new Set,e=new Set,r=c;c=[],r.forEach((function(r){var n=r[0],o=r[1],i=n.current;s.set(i,n),s.set(o,n),n.current=o,b(i,o)?e.add(n):t.add(n)}));var n={updatedFamilies:e,staleFamilies:t};a.forEach((function(t){t.setRefreshHandler(m)}));var o=!1,i=null,u=g(l),h=g(p),d=(w=f,x=new Map,w.forEach((function(t,e){x.set(e,t)})),x);if(u.forEach((function(t){var e=d.get(t);if(void 0===e)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");if(l.has(t),null!==v&&v.has(t)){var r=v.get(t);try{e.scheduleRoot(t,r)}catch(t){o||(o=!0,i=t)}}})),h.forEach((function(t){var e=d.get(t);if(void 0===e)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");p.has(t);try{e.scheduleRefresh(t,n)}catch(t){o||(o=!0,i=t)}})),o)throw i;return n}finally{y=!1}var w,x},e.register=function e(n,u){if(null!==n&&("function"==typeof n||"object"==typeof n)&&!i.has(n)){var s=o.get(u);if(void 0===s?(s={current:n},o.set(u,s)):c.push([s,n]),i.set(n,s),"object"==typeof n&&null!==n)switch(w(n,"$$typeof")){case t:e(n.render,u+"$render");break;case r:e(n.type,u+"$type")}}},e.setSignature=x})()},5683:
+  \**********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/get-built-in */5582),o=e(/*! ../internals/is-callable */2250),i=e(/*! ../internals/object-is-prototype-of */8280),s=e(/*! ../internals/use-symbol-as-uid */1175),u=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var r=n("Symbol");return o(r)&&i(r.prototype,u(t))}},5683:
 /*!******************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/engine-v8-version.js ***!
-  \******************************************************************/(t,e,r)=>{"use strict";var n,o,i=r(/*! ../internals/global */1010),u=r(/*! ../internals/engine-user-agent */4723),s=i.process,c=i.Deno,a=s&&s.versions||c&&c.version,f=a&&a.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&u&&(!(n=u.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=u.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},5807:
+  \******************************************************************/(t,r,e)=>{"use strict";var n,o,i=e(/*! ../internals/global */1010),s=e(/*! ../internals/engine-user-agent */4723),u=i.process,c=i.Deno,a=u&&u.versions||c&&c.version,p=a&&a.v8;p&&(o=(n=p.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&s&&(!(n=s.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},5807:
 /*!************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/classof-raw.js ***!
-  \************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this */1907),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},5816:
+  \************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this */1907),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},5816:
 /*!*******************************************************!*\
   !*** ./node_modules/core-js-pure/internals/shared.js ***!
-  \*******************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/is-pure */7376),o=r(/*! ../internals/shared-store */6128);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.35.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5817:
+  \*******************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/is-pure */7376),o=e(/*! ../internals/shared-store */6128);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.35.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5817:
 /*!***************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/create-property-descriptor.js ***!
-  \***************************************************************************/t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},6024:
+  \***************************************************************************/t=>{"use strict";t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},6024:
 /*!***************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-apply.js ***!
-  \***************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-bind-native */1505),o=Function.prototype,i=o.apply,u=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?u.bind(i):function(){return u.apply(i,arguments)})},6028:
+  \***************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-bind-native */1505),o=Function.prototype,i=o.apply,s=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},6028:
 /*!*************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/to-primitive.js ***!
-  \*************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-call */3930),o=r(/*! ../internals/is-object */6285),i=r(/*! ../internals/is-symbol */5594),u=r(/*! ../internals/get-method */9367),s=r(/*! ../internals/ordinary-to-primitive */581),c=r(/*! ../internals/well-known-symbol */6264),a=TypeError,f=c("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,c=u(t,f);if(c){if(void 0===e&&(e="default"),r=n(c,t,e),!o(r)||i(r))return r;throw new a("Can't convert object to primitive value")}return void 0===e&&(e="number"),s(t,e)}},6128:
+  \*************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-call */3930),o=e(/*! ../internals/is-object */6285),i=e(/*! ../internals/is-symbol */5594),s=e(/*! ../internals/get-method */9367),u=e(/*! ../internals/ordinary-to-primitive */581),c=e(/*! ../internals/well-known-symbol */6264),a=TypeError,p=c("toPrimitive");t.exports=function(t,r){if(!o(t)||i(t))return t;var e,c=s(t,p);if(c){if(void 0===r&&(r="default"),e=n(c,t,r),!o(e)||i(e))return e;throw new a("Can't convert object to primitive value")}return void 0===r&&(r="number"),u(t,r)}},6128:
 /*!*************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/shared-store.js ***!
-  \*************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/global */1010),o=r(/*! ../internals/define-global-property */2532),i="__core-js_shared__",u=n[i]||o(i,{});t.exports=u},6206:
-/*!***********************************************!*\
-  !*** ./node_modules/react-refresh/runtime.js ***!
-  \***********************************************/(t,e,r)=>{"use strict";t.exports=r(/*! ./cjs/react-refresh-runtime.development.js */5644)},6264:
+  \*************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/global */1010),o=e(/*! ../internals/define-global-property */2532),i="__core-js_shared__",s=n[i]||o(i,{});t.exports=s},6264:
 /*!******************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/well-known-symbol.js ***!
-  \******************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/global */1010),o=r(/*! ../internals/shared */5816),i=r(/*! ../internals/has-own-property */9724),u=r(/*! ../internals/uid */6499),s=r(/*! ../internals/symbol-constructor-detection */9846),c=r(/*! ../internals/use-symbol-as-uid */1175),a=n.Symbol,f=o("wks"),p=c?a.for||a:a&&a.withoutSetter||u;t.exports=function(t){return i(f,t)||(f[t]=s&&i(a,t)?a[t]:p("Symbol."+t)),f[t]}},6285:
+  \******************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/global */1010),o=e(/*! ../internals/shared */5816),i=e(/*! ../internals/has-own-property */9724),s=e(/*! ../internals/uid */6499),u=e(/*! ../internals/symbol-constructor-detection */9846),c=e(/*! ../internals/use-symbol-as-uid */1175),a=n.Symbol,p=o("wks"),f=c?a.for||a:a&&a.withoutSetter||s;t.exports=function(t){return i(p,t)||(p[t]=u&&i(a,t)?a[t]:f("Symbol."+t)),p[t]}},6285:
 /*!**********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-object.js ***!
-  \**********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/is-callable */2250);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},6499:
+  \**********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/is-callable */2250);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},6499:
 /*!****************************************************!*\
   !*** ./node_modules/core-js-pure/internals/uid.js ***!
-  \****************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this */1907),o=0,i=Math.random(),u=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+u(++o+i,36)}},6624:
+  \****************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this */1907),o=0,i=Math.random(),s=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++o+i,36)}},6624:
 /*!**********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/an-object.js ***!
-  \**********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/is-object */6285),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},6946:
+  \**********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/is-object */6285),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},6946:
 /*!***************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/indexed-object.js ***!
-  \***************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this */1907),o=r(/*! ../internals/fails */8828),i=r(/*! ../internals/classof-raw */5807),u=Object,s=n("".split);t.exports=o((function(){return!u("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?s(t,""):u(t)}:u},7136:
+  \***************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this */1907),o=e(/*! ../internals/fails */8828),i=e(/*! ../internals/classof-raw */5807),s=Object,u=n("".split);t.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?u(t,""):s(t)}:s},7136:
 /*!*********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-null-or-undefined.js ***!
   \*********************************************************************/t=>{"use strict";t.exports=function(t){return null==t}},7374:
 /*!******************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/to-indexed-object.js ***!
-  \******************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/indexed-object */6946),o=r(/*! ../internals/require-object-coercible */4239);t.exports=function(t){return n(o(t))}},7376:
+  \******************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/indexed-object */6946),o=e(/*! ../internals/require-object-coercible */4239);t.exports=function(t){return n(o(t))}},7376:
 /*!********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-pure.js ***!
   \********************************************************/t=>{"use strict";t.exports=!0},7463:
 /*!**********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/is-forced.js ***!
-  \**********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/fails */8828),o=r(/*! ../internals/is-callable */2250),i=/#|\.prototype\./,u=function(t,e){var r=c[s(t)];return r===f||r!==a&&(o(e)?n(e):!!e)},s=u.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=u.data={},a=u.NATIVE="N",f=u.POLYFILL="P";t.exports=u},8280:
+  \**********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/fails */8828),o=e(/*! ../internals/is-callable */2250),i=/#|\.prototype\./,s=function(t,r){var e=c[u(t)];return e===p||e!==a&&(o(r)?n(r):!!r)},u=s.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=s.data={},a=s.NATIVE="N",p=s.POLYFILL="P";t.exports=s},8015:
+/*!**************************************!*\
+  !*** external "ReactRefreshRuntime" ***!
+  \**************************************/t=>{"use strict";t.exports=ReactRefreshRuntime},8280:
 /*!***********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/object-is-prototype-of.js ***!
-  \***********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this */1907);t.exports=n({}.isPrototypeOf)},8311:
+  \***********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this */1907);t.exports=n({}.isPrototypeOf)},8311:
 /*!**********************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/function-bind-context.js ***!
-  \**********************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this-clause */2361),o=r(/*! ../internals/a-callable */2159),i=r(/*! ../internals/function-bind-native */1505),u=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?u(t,e):function(){return t.apply(e,arguments)}}},8661:
+  \**********************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this-clause */2361),o=e(/*! ../internals/a-callable */2159),i=e(/*! ../internals/function-bind-native */1505),s=n(n.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?s(t,r):function(){return t.apply(r,arguments)}}},8661:
 /*!************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/v8-prototype-define-bug.js ***!
-  \************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/descriptors */9447),o=r(/*! ../internals/fails */8828);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},8828:
+  \************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/descriptors */9447),o=e(/*! ../internals/fails */8828);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},8828:
 /*!******************************************************!*\
   !*** ./node_modules/core-js-pure/internals/fails.js ***!
   \******************************************************/t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},9298:
 /*!**********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/to-object.js ***!
-  \**********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/require-object-coercible */4239),o=Object;t.exports=function(t){return o(n(t))}},9367:
+  \**********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/require-object-coercible */4239),o=Object;t.exports=function(t){return o(n(t))}},9367:
 /*!***********************************************************!*\
   !*** ./node_modules/core-js-pure/internals/get-method.js ***!
-  \***********************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/a-callable */2159),o=r(/*! ../internals/is-null-or-undefined */7136);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},9447:
+  \***********************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/a-callable */2159),o=e(/*! ../internals/is-null-or-undefined */7136);t.exports=function(t,r){var e=t[r];return o(e)?void 0:n(e)}},9447:
 /*!************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/descriptors.js ***!
-  \************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/fails */8828);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9552:
+  \************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/fails */8828);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9552:
 /*!************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/document-create-element.js ***!
-  \************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/global */1010),o=r(/*! ../internals/is-object */6285),i=n.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},9724:
+  \************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/global */1010),o=e(/*! ../internals/is-object */6285),i=n.document,s=o(i)&&o(i.createElement);t.exports=function(t){return s?i.createElement(t):{}}},9724:
 /*!*****************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/has-own-property.js ***!
-  \*****************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/function-uncurry-this */1907),o=r(/*! ../internals/to-object */9298),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},9846:
+  \*****************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/function-uncurry-this */1907),o=e(/*! ../internals/to-object */9298),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},9846:
 /*!*****************************************************************************!*\
   !*** ./node_modules/core-js-pure/internals/symbol-constructor-detection.js ***!
-  \*****************************************************************************/(t,e,r)=>{"use strict";var n=r(/*! ../internals/engine-v8-version */5683),o=r(/*! ../internals/fails */8828),i=r(/*! ../internals/global */1010).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n].call(i.exports,i,i.exports,r),i.exports}r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),(()=>{{const e=r(/*! core-js-pure/features/global-this */4444),n=r(/*! react-refresh/runtime */6206);if(void 0!==e){var t="__reactRefreshInjected";"undefined"!=typeof __react_refresh_library__&&__react_refresh_library__&&(t+="_"+__react_refresh_library__),e[t]||(n.injectIntoGlobalHook(e),e[t]=!0)}}})()})();
\ No newline at end of file
+  \*****************************************************************************/(t,r,e)=>{"use strict";var n=e(/*! ../internals/engine-v8-version */5683),o=e(/*! ../internals/fails */8828),i=e(/*! ../internals/global */1010).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n].call(i.exports,i,i.exports,e),i.exports}e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),(()=>{{const r=e(/*! core-js-pure/features/global-this */4444),n=e(/*! react-refresh/runtime */8015);if(void 0!==r){var t="__reactRefreshInjected";"undefined"!=typeof __react_refresh_library__&&__react_refresh_library__&&(t+="_"+__react_refresh_library__),r[t]||(n.injectIntoGlobalHook(r),r[t]=!0)}}})()})();
\ No newline at end of file
diff --git a/wp-includes/js/dist/development/react-refresh-runtime.js b/wp-includes/js/dist/development/react-refresh-runtime.js
index 7d7b06b6ff..7f020dab22 100644
--- a/wp-includes/js/dist/development/react-refresh-runtime.js
+++ b/wp-includes/js/dist/development/react-refresh-runtime.js
@@ -2,7 +2,22 @@
 /******/ 	"use strict";
 /******/ 	var __webpack_modules__ = ({

-/***/ 5644:
+/***/ 206:
+/*!***********************************************!*\
+  !*** ./node_modules/react-refresh/runtime.js ***!
+  \***********************************************/
+/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
+
+
+
+if (false) {} else {
+  module.exports = __webpack_require__(/*! ./cjs/react-refresh-runtime.development.js */ 644);
+}
+
+
+/***/ }),
+
+/***/ 644:
 /*!*****************************************************************************!*\
   !*** ./node_modules/react-refresh/cjs/react-refresh-runtime.development.js ***!
   \*****************************************************************************/
@@ -668,21 +683,6 @@ exports.setSignature = setSignature;
 }


-/***/ }),
-
-/***/ 6206:
-/*!***********************************************!*\
-  !*** ./node_modules/react-refresh/runtime.js ***!
-  \***********************************************/
-/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
-
-
-
-if (false) {} else {
-  module.exports = __webpack_require__(/*! ./cjs/react-refresh-runtime.development.js */ 5644);
-}
-
-
 /***/ })

 /******/ 	});
@@ -716,7 +716,7 @@ if (false) {} else {
 /******/ 	// startup
 /******/ 	// Load entry module and return exports
 /******/ 	// This entry module used 'module' so it can't be inlined
-/******/ 	var __webpack_exports__ = __webpack_require__(6206);
+/******/ 	var __webpack_exports__ = __webpack_require__(206);
 /******/ 	window.ReactRefreshRuntime = __webpack_exports__;
 /******/
 /******/ })()
diff --git a/wp-includes/js/dist/development/react-refresh-runtime.min.js b/wp-includes/js/dist/development/react-refresh-runtime.min.js
index 354d34a9ab..9484b7788c 100644
--- a/wp-includes/js/dist/development/react-refresh-runtime.min.js
+++ b/wp-includes/js/dist/development/react-refresh-runtime.min.js
@@ -1,7 +1,7 @@
-(()=>{"use strict";var e={5644:
-/*!*****************************************************************************!*\
-  !*** ./node_modules/react-refresh/cjs/react-refresh-runtime.development.js ***!
-  \*****************************************************************************/(e,t)=>{(function(){var e=Symbol.for("react.forward_ref"),n=Symbol.for("react.memo"),r="function"==typeof WeakMap?WeakMap:Map,o=new Map,i=new r,f=new r,a=new r,u=[],c=new Map,s=new Map,l=new Set,d=new Set,p="function"==typeof WeakMap?new WeakMap:null,h=!1;function y(e){if(null!==e.fullKey)return e.fullKey;var t,n=e.ownKey;try{t=e.getCustomHooks()}catch(t){return e.forceReset=!0,e.fullKey=n,n}for(var r=0;r<t.length;r++){var o=t[r];if("function"!=typeof o)return e.forceReset=!0,e.fullKey=n,n;var i=f.get(o);if(void 0!==i){var a=y(i);i.forceReset&&(e.forceReset=!0),n+="\n---\n"+a}}return e.fullKey=n,n}function v(e){return e.prototype&&e.prototype.isReactComponent}function m(e,t){return!v(e)&&!v(t)&&!!function(e,t){var n=f.get(e),r=f.get(t);return void 0===n&&void 0===r||void 0!==n&&void 0!==r&&y(n)===y(r)&&!r.forceReset}(e,t)}function R(e){return a.get(e)}function g(e){var t=new Set;return e.forEach((function(e){t.add(e)})),t}function w(e,t){try{return e[t]}catch(e){return}}function b(t,r){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=arguments.length>3?arguments[3]:void 0;if(f.has(t)||f.set(t,{forceReset:o,ownKey:r,fullKey:null,getCustomHooks:i||function(){return[]}}),"object"==typeof t&&null!==t)switch(w(t,"$$typeof")){case e:b(t.render,r,o,i);break;case n:b(t.type,r,o,i)}}function _(e){var t=f.get(e);void 0!==t&&y(t)}t._getMountedRootCount=function(){return l.size},t.collectCustomHooksForSignature=_,t.createSignatureFunctionForTransform=function(){var e,t,n=!1;return function(r,o,i,f){if("string"==typeof o)return e||(e=r,t="function"==typeof f),null==r||"function"!=typeof r&&"object"!=typeof r||b(r,o,i,f),r;!n&&t&&(n=!0,_(e))}},t.findAffectedHostInstances=function(e){var t=new Set;return l.forEach((function(n){var r=s.get(n);if(void 0===r)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");r.findHostInstancesForRefresh(n,e).forEach((function(e){t.add(e)}))})),t},t.getFamilyByID=function(e){return o.get(e)},t.getFamilyByType=function(e){return i.get(e)},t.hasUnrecoverableErrors=function(){return!1},t.injectIntoGlobalHook=function(e){var t=e.__REACT_DEVTOOLS_GLOBAL_HOOK__;if(void 0===t){var n=0;e.__REACT_DEVTOOLS_GLOBAL_HOOK__=t={renderers:new Map,supportsFiber:!0,inject:function(e){return n++},onScheduleFiberRoot:function(e,t,n){},onCommitFiberRoot:function(e,t,n,r){},onCommitFiberUnmount:function(){}}}if(t.isDisabled)console.warn("Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). Fast Refresh is not compatible with this shim and will be disabled.");else{var r=t.inject;t.inject=function(e){var t=r.apply(this,arguments);return"function"==typeof e.scheduleRefresh&&"function"==typeof e.setRefreshHandler&&c.set(t,e),t},t.renderers.forEach((function(e,t){"function"==typeof e.scheduleRefresh&&"function"==typeof e.setRefreshHandler&&c.set(t,e)}));var o=t.onCommitFiberRoot,i=t.onScheduleFiberRoot||function(){};t.onScheduleFiberRoot=function(e,t,n){return h||(d.delete(t),null!==p&&p.set(t,n)),i.apply(this,arguments)},t.onCommitFiberRoot=function(e,t,n,r){var i=c.get(e);if(void 0!==i){s.set(t,i);var f=t.current,a=f.alternate;if(null!==a){var u=null!=a.memoizedState&&null!=a.memoizedState.element&&l.has(t),p=null!=f.memoizedState&&null!=f.memoizedState.element;!u&&p?(l.add(t),d.delete(t)):u&&p||(u&&!p?(l.delete(t),r?d.add(t):s.delete(t)):u||p||r&&d.add(t))}else l.add(t)}return o.apply(this,arguments)}}},t.isLikelyComponentType=function(t){switch(typeof t){case"function":if(null!=t.prototype){if(t.prototype.isReactComponent)return!0;var r=Object.getOwnPropertyNames(t.prototype);if(r.length>1||"constructor"!==r[0])return!1;if(t.prototype.__proto__!==Object.prototype)return!1}var o=t.name||t.displayName;return"string"==typeof o&&/^[A-Z]/.test(o);case"object":if(null!=t)switch(w(t,"$$typeof")){case e:case n:return!0;default:return!1}return!1;default:return!1}},t.performReactRefresh=function(){if(0===u.length)return null;if(h)return null;h=!0;try{var e=new Set,t=new Set,n=u;u=[],n.forEach((function(n){var r=n[0],o=n[1],i=r.current;a.set(i,r),a.set(o,r),r.current=o,m(i,o)?t.add(r):e.add(r)}));var r={updatedFamilies:t,staleFamilies:e};c.forEach((function(e){e.setRefreshHandler(R)}));var o=!1,i=null,f=g(d),y=g(l),v=(w=s,b=new Map,w.forEach((function(e,t){b.set(t,e)})),b);if(f.forEach((function(e){var t=v.get(e);if(void 0===t)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");if(d.has(e),null!==p&&p.has(e)){var n=p.get(e);try{t.scheduleRoot(e,n)}catch(e){o||(o=!0,i=e)}}})),y.forEach((function(e){var t=v.get(e);if(void 0===t)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");l.has(e);try{t.scheduleRefresh(e,r)}catch(e){o||(o=!0,i=e)}})),o)throw i;return r}finally{h=!1}var w,b},t.register=function t(r,f){if(null!==r&&("function"==typeof r||"object"==typeof r)&&!i.has(r)){var a=o.get(f);if(void 0===a?(a={current:r},o.set(f,a)):u.push([a,r]),i.set(r,a),"object"==typeof r&&null!==r)switch(w(r,"$$typeof")){case e:t(r.render,f+"$render");break;case n:t(r.type,f+"$type")}}},t.setSignature=b})()},6206:
+(()=>{"use strict";var e={206:
 /*!***********************************************!*\
   !*** ./node_modules/react-refresh/runtime.js ***!
-  \***********************************************/(e,t,n)=>{e.exports=n(/*! ./cjs/react-refresh-runtime.development.js */5644)}},t={};var n=function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}(6206);window.ReactRefreshRuntime=n})();
\ No newline at end of file
+  \***********************************************/(e,t,n)=>{e.exports=n(/*! ./cjs/react-refresh-runtime.development.js */644)},644:
+/*!*****************************************************************************!*\
+  !*** ./node_modules/react-refresh/cjs/react-refresh-runtime.development.js ***!
+  \*****************************************************************************/(e,t)=>{(function(){var e=Symbol.for("react.forward_ref"),n=Symbol.for("react.memo"),r="function"==typeof WeakMap?WeakMap:Map,o=new Map,i=new r,f=new r,a=new r,u=[],c=new Map,s=new Map,l=new Set,d=new Set,p="function"==typeof WeakMap?new WeakMap:null,h=!1;function y(e){if(null!==e.fullKey)return e.fullKey;var t,n=e.ownKey;try{t=e.getCustomHooks()}catch(t){return e.forceReset=!0,e.fullKey=n,n}for(var r=0;r<t.length;r++){var o=t[r];if("function"!=typeof o)return e.forceReset=!0,e.fullKey=n,n;var i=f.get(o);if(void 0!==i){var a=y(i);i.forceReset&&(e.forceReset=!0),n+="\n---\n"+a}}return e.fullKey=n,n}function v(e){return e.prototype&&e.prototype.isReactComponent}function m(e,t){return!v(e)&&!v(t)&&!!function(e,t){var n=f.get(e),r=f.get(t);return void 0===n&&void 0===r||void 0!==n&&void 0!==r&&y(n)===y(r)&&!r.forceReset}(e,t)}function R(e){return a.get(e)}function g(e){var t=new Set;return e.forEach((function(e){t.add(e)})),t}function w(e,t){try{return e[t]}catch(e){return}}function b(t,r){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=arguments.length>3?arguments[3]:void 0;if(f.has(t)||f.set(t,{forceReset:o,ownKey:r,fullKey:null,getCustomHooks:i||function(){return[]}}),"object"==typeof t&&null!==t)switch(w(t,"$$typeof")){case e:b(t.render,r,o,i);break;case n:b(t.type,r,o,i)}}function _(e){var t=f.get(e);void 0!==t&&y(t)}t._getMountedRootCount=function(){return l.size},t.collectCustomHooksForSignature=_,t.createSignatureFunctionForTransform=function(){var e,t,n=!1;return function(r,o,i,f){if("string"==typeof o)return e||(e=r,t="function"==typeof f),null==r||"function"!=typeof r&&"object"!=typeof r||b(r,o,i,f),r;!n&&t&&(n=!0,_(e))}},t.findAffectedHostInstances=function(e){var t=new Set;return l.forEach((function(n){var r=s.get(n);if(void 0===r)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");r.findHostInstancesForRefresh(n,e).forEach((function(e){t.add(e)}))})),t},t.getFamilyByID=function(e){return o.get(e)},t.getFamilyByType=function(e){return i.get(e)},t.hasUnrecoverableErrors=function(){return!1},t.injectIntoGlobalHook=function(e){var t=e.__REACT_DEVTOOLS_GLOBAL_HOOK__;if(void 0===t){var n=0;e.__REACT_DEVTOOLS_GLOBAL_HOOK__=t={renderers:new Map,supportsFiber:!0,inject:function(e){return n++},onScheduleFiberRoot:function(e,t,n){},onCommitFiberRoot:function(e,t,n,r){},onCommitFiberUnmount:function(){}}}if(t.isDisabled)console.warn("Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). Fast Refresh is not compatible with this shim and will be disabled.");else{var r=t.inject;t.inject=function(e){var t=r.apply(this,arguments);return"function"==typeof e.scheduleRefresh&&"function"==typeof e.setRefreshHandler&&c.set(t,e),t},t.renderers.forEach((function(e,t){"function"==typeof e.scheduleRefresh&&"function"==typeof e.setRefreshHandler&&c.set(t,e)}));var o=t.onCommitFiberRoot,i=t.onScheduleFiberRoot||function(){};t.onScheduleFiberRoot=function(e,t,n){return h||(d.delete(t),null!==p&&p.set(t,n)),i.apply(this,arguments)},t.onCommitFiberRoot=function(e,t,n,r){var i=c.get(e);if(void 0!==i){s.set(t,i);var f=t.current,a=f.alternate;if(null!==a){var u=null!=a.memoizedState&&null!=a.memoizedState.element&&l.has(t),p=null!=f.memoizedState&&null!=f.memoizedState.element;!u&&p?(l.add(t),d.delete(t)):u&&p||(u&&!p?(l.delete(t),r?d.add(t):s.delete(t)):u||p||r&&d.add(t))}else l.add(t)}return o.apply(this,arguments)}}},t.isLikelyComponentType=function(t){switch(typeof t){case"function":if(null!=t.prototype){if(t.prototype.isReactComponent)return!0;var r=Object.getOwnPropertyNames(t.prototype);if(r.length>1||"constructor"!==r[0])return!1;if(t.prototype.__proto__!==Object.prototype)return!1}var o=t.name||t.displayName;return"string"==typeof o&&/^[A-Z]/.test(o);case"object":if(null!=t)switch(w(t,"$$typeof")){case e:case n:return!0;default:return!1}return!1;default:return!1}},t.performReactRefresh=function(){if(0===u.length)return null;if(h)return null;h=!0;try{var e=new Set,t=new Set,n=u;u=[],n.forEach((function(n){var r=n[0],o=n[1],i=r.current;a.set(i,r),a.set(o,r),r.current=o,m(i,o)?t.add(r):e.add(r)}));var r={updatedFamilies:t,staleFamilies:e};c.forEach((function(e){e.setRefreshHandler(R)}));var o=!1,i=null,f=g(d),y=g(l),v=(w=s,b=new Map,w.forEach((function(e,t){b.set(t,e)})),b);if(f.forEach((function(e){var t=v.get(e);if(void 0===t)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");if(d.has(e),null!==p&&p.has(e)){var n=p.get(e);try{t.scheduleRoot(e,n)}catch(e){o||(o=!0,i=e)}}})),y.forEach((function(e){var t=v.get(e);if(void 0===t)throw new Error("Could not find helpers for a root. This is a bug in React Refresh.");l.has(e);try{t.scheduleRefresh(e,r)}catch(e){o||(o=!0,i=e)}})),o)throw i;return r}finally{h=!1}var w,b},t.register=function t(r,f){if(null!==r&&("function"==typeof r||"object"==typeof r)&&!i.has(r)){var a=o.get(f);if(void 0===a?(a={current:r},o.set(f,a)):u.push([a,r]),i.set(r,a),"object"==typeof r&&null!==r)switch(w(r,"$$typeof")){case e:t(r.render,f+"$render");break;case n:t(r.type,f+"$type")}}},t.setSignature=b})()}},t={};var n=function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}(206);window.ReactRefreshRuntime=n})();
\ No newline at end of file
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 4e0a0e0d51..d9a6ea462e 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61542';
+$wp_version = '7.0-alpha-61543';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.