Socket
Socket
Sign inDemoInstall

react

Package Overview
Dependencies
3
Maintainers
7
Versions
1742
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-experimental-5027eb465 to 0.0.0-experimental-51947a14b-20220113

125

cjs/react-jsx-dev-runtime.development.js

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.development.js

@@ -37,3 +38,2 @@ *

var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;

@@ -59,3 +59,2 @@ var REACT_OFFSCREEN_TYPE = 0xeae2;

REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');

@@ -87,7 +86,9 @@ REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');

{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
printWarning('error', format, args);
}
printWarning('error', format, args);
}

@@ -106,6 +107,7 @@ }

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -137,3 +139,3 @@

if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
return true;

@@ -156,4 +158,10 @@ }

function getWrappedName(outerType, innerType, wrapperName) {
var displayName = outerType.displayName;
if (displayName) {
return displayName;
}
var functionName = innerType.displayName || innerType.name || '';
return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName);
return functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName;
} // Keep in sync with react-reconciler/getComponentNameFromFiber

@@ -175,3 +183,3 @@

if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}

@@ -225,4 +233,10 @@ }

case REACT_MEMO_TYPE:
return getComponentNameFromType(type.type);
var outerName = type.displayName || null;
if (outerName !== null) {
return outerName;
}
return getComponentNameFromType(type.type) || 'Memo';
case REACT_LAZY_TYPE:

@@ -477,4 +491,11 @@ {

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -612,2 +633,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -652,2 +674,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -841,2 +930,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -846,2 +939,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -848,0 +945,0 @@ }

3

cjs/react-jsx-dev-runtime.production.min.js

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.production.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-dev-runtime.profiling.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.development.js

@@ -37,3 +38,2 @@ *

var REACT_SCOPE_TYPE = 0xead7;
var REACT_OPAQUE_ID_TYPE = 0xeae0;
var REACT_DEBUG_TRACING_MODE_TYPE = 0xeae1;

@@ -59,3 +59,2 @@ var REACT_OFFSCREEN_TYPE = 0xeae2;

REACT_SCOPE_TYPE = symbolFor('react.scope');
REACT_OPAQUE_ID_TYPE = symbolFor('react.opaque.id');
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor('react.debug_trace_mode');

@@ -87,7 +86,9 @@ REACT_OFFSCREEN_TYPE = symbolFor('react.offscreen');

{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
{
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}
printWarning('error', format, args);
}
printWarning('error', format, args);
}

@@ -106,6 +107,7 @@ }

args = args.concat([stack]);
}
} // eslint-disable-next-line react-internal/safe-string-coercion
var argsWithFormat = args.map(function (item) {
return '' + item;
return String(item);
}); // Careful: RN currently depends on this prefix

@@ -137,3 +139,3 @@

if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
if (type === exports.Fragment || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || type === REACT_CACHE_TYPE) {
return true;

@@ -156,4 +158,10 @@ }

function getWrappedName(outerType, innerType, wrapperName) {
var displayName = outerType.displayName;
if (displayName) {
return displayName;
}
var functionName = innerType.displayName || innerType.name || '';
return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName);
return functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName;
} // Keep in sync with react-reconciler/getComponentNameFromFiber

@@ -175,3 +183,3 @@

if (typeof type.tag === 'number') {
error('Received an unexpected object in getComponentName(). ' + 'This is likely a bug in React. Please file an issue.');
error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');
}

@@ -225,4 +233,10 @@ }

case REACT_MEMO_TYPE:
return getComponentNameFromType(type.type);
var outerName = type.displayName || null;
if (outerName !== null) {
return outerName;
}
return getComponentNameFromType(type.type) || 'Memo';
case REACT_LAZY_TYPE:

@@ -477,4 +491,11 @@ {

// V8 adds a "new" prefix for native classes. Let's remove it to make it prettier.
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at ');
var _frame = '\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled "<anonymous>"
// but we have a user-provided "displayName"
// splice it in to make the stack more readable.
if (fn.displayName && _frame.includes('<anonymous>')) {
_frame = _frame.replace('<anonymous>', fn.displayName);
}
{

@@ -612,2 +633,3 @@ if (typeof fn === 'function') {

if (typeof typeSpecs[typeSpecName] !== 'function') {
// eslint-disable-next-line react-internal/prod-error-codes
var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');

@@ -652,2 +674,69 @@ err.name = 'Invariant Violation';

/*
* The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol
* and Temporal.* types. See https://github.com/facebook/react/pull/22064.
*
* The functions in this module will throw an easier-to-understand,
* easier-to-debug exception with a clear errors message message explaining the
* problem. (Instead of a confusing exception thrown inside the implementation
* of the `value` object).
*/
// $FlowFixMe only called in DEV, so void return is not possible.
function typeName(value) {
{
// toStringTag is needed for namespaced types like Temporal.Instant
var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';
return type;
}
} // $FlowFixMe only called in DEV, so void return is not possible.
function willCoercionThrow(value) {
{
try {
testStringCoercion(value);
return false;
} catch (e) {
return true;
}
}
}
function testStringCoercion(value) {
// If you ended up here by following an exception call stack, here's what's
// happened: you supplied an object or symbol value to React (as a prop, key,
// DOM attribute, CSS property, string ref, etc.) and when React tried to
// coerce it to a string using `'' + value`, an exception was thrown.
//
// The most common types that will cause this exception are `Symbol` instances
// and Temporal objects like `Temporal.Instant`. But any object that has a
// `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this
// exception. (Library authors do this to prevent users from using built-in
// numeric operators like `+` or comparison operators like `>=` because custom
// methods are needed to perform accurate arithmetic or comparison.)
//
// To fix the problem, coerce this object or symbol value to a string before
// passing it to React. The most reliable way is usually `String(value)`.
//
// To find which value is throwing, check the browser or debugger console.
// Before this exception was thrown, there should be `console.error` output
// that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the
// problem and how that type was used: key, atrribute, input value prop, etc.
// In most cases, this console output also shows the component and its
// ancestor components where the exception happened.
//
// eslint-disable-next-line react-internal/safe-string-coercion
return '' + value;
}
function checkKeyStringCoercion(value) {
{
if (willCoercionThrow(value)) {
error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));
return testStringCoercion(value); // throw (to help callers find troubleshooting comments)
}
}
}
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;

@@ -841,2 +930,6 @@ var RESERVED_PROPS = {

if (maybeKey !== undefined) {
{
checkKeyStringCoercion(maybeKey);
}
key = '' + maybeKey;

@@ -846,2 +939,6 @@ }

if (hasValidKey(config)) {
{
checkKeyStringCoercion(config.key);
}
key = '' + config.key;

@@ -848,0 +945,0 @@ }

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.production.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-jsx-runtime.profiling.min.js

@@ -3,0 +4,0 @@ *

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react-unstable-shared-subset.production.min.js

@@ -9,16 +10,16 @@ *

*/
'use strict';var l=require("object-assign"),n=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.unstable_SuspenseList=60120;var r=60115,t=60116;exports.unstable_DebugTracingMode=60129;
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;n=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.unstable_SuspenseList=u("react.suspense_list");r=u("react.memo");t=u("react.lazy");exports.unstable_DebugTracingMode=u("react.debug_trace_mode")}var v="function"===typeof Symbol&&Symbol.iterator;
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60112;exports.Suspense=60113;exports.SuspenseList=60120;var r=60115,t=60116;exports.unstable_DebugTracingMode=60129;
if("function"===typeof Symbol&&Symbol.for){var u=Symbol.for;m=u("react.element");p=u("react.portal");exports.Fragment=u("react.fragment");exports.StrictMode=u("react.strict_mode");exports.Profiler=u("react.profiler");q=u("react.forward_ref");exports.Suspense=u("react.suspense");exports.SuspenseList=u("react.suspense_list");r=u("react.memo");t=u("react.lazy");exports.unstable_DebugTracingMode=u("react.debug_trace_mode")}var v="function"===typeof Symbol&&Symbol.iterator;
function w(a){if(null===a||"object"!==typeof a)return null;a=v&&a[v]||a["@@iterator"];return"function"===typeof a?a:null}function x(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,e=1;e<arguments.length;e++)b+="&args[]="+encodeURIComponent(arguments[e]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}
var y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},z={};function A(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}A.prototype.isReactComponent={};A.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(x(85));this.updater.enqueueSetState(this,a,b,"setState")};A.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};
function B(){}B.prototype=A.prototype;function C(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}var D=C.prototype=new B;D.constructor=C;l(D,A.prototype);D.isPureReactComponent=!0;var E=Array.isArray,F=Object.prototype.hasOwnProperty,G={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function I(a,b){return{$$typeof:n,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function J(a){return"object"===typeof a&&null!==a&&a.$$typeof===n}
function B(){}B.prototype=A.prototype;function C(a,b,e){this.props=a;this.context=b;this.refs=z;this.updater=e||y}var D=C.prototype=new B;D.constructor=C;l(D,A.prototype);D.isPureReactComponent=!0;var E=Array.isArray,F=Object.prototype.hasOwnProperty,G={current:null},H={key:!0,ref:!0,__self:!0,__source:!0};function I(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function J(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}
function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var K=/\/+/g;function L(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function M(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case n:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+L(h,0):d,E(c)?(e="",null!=a&&(e=a.replace(K,"$&/")+"/"),M(c,b,e,"",function(a){return a})):null!=c&&(J(c)&&(c=I(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(K,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(E(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+L(k,g);h+=M(k,b,e,f,c)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+L(k,g++),h+=M(k,b,e,f,c);else if("object"===k)throw b=""+a,Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function N(a,b,e){if(null==a)return a;var d=[],c=0;M(a,d,"","",function(a){return b.call(e,a,c++)});return d}
function O(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}var P={current:null},Q={ReactCurrentDispatcher:P,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:G,IsSomeRendererActing:{current:!1},assign:l};
exports.Children={map:N,forEach:function(a,b,e){N(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!J(a))throw Error(x(143));return a}};exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Q;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a));var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)F.call(b,f)&&!H.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);for(var m=0;m<f;m++)g[m]=arguments[m+2];d.children=g}return{$$typeof:n,type:a.type,
key:c,ref:k,props:d,_owner:h}};exports.createElement=function(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)F.call(b,d)&&!H.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),m=0;m<g;m++)f[m]=arguments[m+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:n,type:a,key:k,ref:h,props:c,_owner:G.current}};exports.createRef=function(){return{current:null}};
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=J;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:O}};exports.memo=function(a,b){return{$$typeof:r,type:a,compare:void 0===b?null:b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return P.current.getCacheForType(a)};
exports.unstable_useDeferredValue=function(a){return P.current.useDeferredValue(a)};exports.unstable_useMutableSource=function(a,b,e){return P.current.useMutableSource(a,b,e)};exports.unstable_useOpaqueIdentifier=function(){return P.current.useOpaqueIdentifier()};exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useMemo=function(a,b){return P.current.useMemo(a,b)};
exports.version="17.0.3-experimental-5027eb465";
function M(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+L(h,0):d,E(c)?(e="",null!=a&&(e=a.replace(K,"$&/")+"/"),M(c,b,e,"",function(a){return a})):null!=c&&(J(c)&&(c=I(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(K,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(E(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+L(k,g);h+=M(k,b,e,f,c)}else if(f=w(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+L(k,g++),h+=M(k,b,e,f,c);else if("object"===k)throw b=String(a),Error(x(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function N(a,b,e){if(null==a)return a;var d=[],c=0;M(a,d,"","",function(a){return b.call(e,a,c++)});return d}
function O(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}var P={current:null};function Q(a){return P.current.useDeferredValue(a)}var R={transition:0},S={ReactCurrentDispatcher:P,ReactCurrentBatchConfig:R,ReactCurrentOwner:G,assign:l};
exports.Children={map:N,forEach:function(a,b,e){N(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;N(a,function(){b++});return b},toArray:function(a){return N(a,function(a){return a})||[]},only:function(a){if(!J(a))throw Error(x(143));return a}};exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=S;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error(x(267,a));var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=G.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)F.call(b,f)&&!H.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];d.children=g}return{$$typeof:m,type:a.type,
key:c,ref:k,props:d,_owner:h}};exports.createElement=function(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)F.call(b,d)&&!H.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:m,type:a,key:k,ref:h,props:c,_owner:G.current}};exports.createRef=function(){return{current:null}};
exports.forwardRef=function(a){return{$$typeof:q,render:a}};exports.isValidElement=J;exports.lazy=function(a){return{$$typeof:t,_payload:{_status:-1,_result:a},_init:O}};exports.memo=function(a,b){return{$$typeof:r,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=R.transition;R.transition=1;try{a()}finally{R.transition=b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};
exports.unstable_getCacheForType=function(a){return P.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return P.current.getCacheSignal()};exports.unstable_useDeferredValue=Q;exports.unstable_useMutableSource=function(a,b,e){return P.current.useMutableSource(a,b,e)};exports.useCallback=function(a,b){return P.current.useCallback(a,b)};exports.useContext=function(a){return P.current.useContext(a)};exports.useDebugValue=function(){};exports.useDeferredValue=Q;exports.useId=function(){return P.current.useId()};
exports.useMemo=function(a,b){return P.current.useMemo(a,b)};exports.useTransition=function(){return P.current.useTransition()};exports.version="18.0.0-rc.0-experimental-51947a14b-20220113";

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -9,19 +10,19 @@ *

*/
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.unstable_SuspenseList=60120;var u=60115,v=60116;exports.unstable_DebugTracingMode=60129;exports.unstable_LegacyHidden=60131;exports.unstable_Cache=60132;
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.unstable_SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_LegacyHidden=
w("react.legacy_hidden");exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null}
function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var A={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},B={};
function C(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}C.prototype.isReactComponent={};C.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(z(85));this.updater.enqueueSetState(this,a,b,"setState")};C.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function D(){}D.prototype=C.prototype;function E(a,b,c){this.props=a;this.context=b;this.refs=B;this.updater=c||A}var F=E.prototype=new D;
F.constructor=E;l(F,C.prototype);F.isPureReactComponent=!0;var G=Array.isArray,H=Object.prototype.hasOwnProperty,I={current:null},J={key:!0,ref:!0,__self:!0,__source:!0};
function K(a,b,c){var e,d={},k=null,h=null;if(null!=b)for(e in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)H.call(b,e)&&!J.hasOwnProperty(e)&&(d[e]=b[e]);var g=arguments.length-2;if(1===g)d.children=c;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];d.children=f}if(a&&a.defaultProps)for(e in g=a.defaultProps,g)void 0===d[e]&&(d[e]=g[e]);return{$$typeof:m,type:a,key:k,ref:h,props:d,_owner:I.current}}
function L(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function M(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var N=/\/+/g;function O(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function P(a,b,c,e,d){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,d=d(h),a=""===e?"."+O(h,0):e,G(d)?(c="",null!=a&&(c=a.replace(N,"$&/")+"/"),P(d,b,c,"",function(a){return a})):null!=d&&(M(d)&&(d=L(d,c+(!d.key||h&&h.key===d.key?"":(""+d.key).replace(N,"$&/")+"/")+a)),b.push(d)),1;h=0;e=""===e?".":e+":";if(G(a))for(var g=0;g<a.length;g++){k=
a[g];var f=e+O(k,g);h+=P(k,b,c,f,d)}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=e+O(k,g++),h+=P(k,b,c,f,d);else if("object"===k)throw b=""+a,Error(z(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function Q(a,b,c){if(null==a)return a;var e=[],d=0;P(a,e,"","",function(a){return b.call(c,a,d++)});return e}
function R(a){if(-1===a._status){var b=a._result;b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}var S={current:null},T={transition:0},U={ReactCurrentDispatcher:S,ReactCurrentBatchConfig:T,ReactCurrentOwner:I,IsSomeRendererActing:{current:!1},assign:l};
exports.Children={map:Q,forEach:function(a,b,c){Q(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;Q(a,function(){b++});return b},toArray:function(a){return Q(a,function(a){return a})||[]},only:function(a){if(!M(a))throw Error(z(143));return a}};exports.Component=C;exports.PureComponent=E;exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=U;
exports.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(z(267,a));var e=l({},a.props),d=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=I.current);void 0!==b.key&&(d=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)H.call(b,f)&&!J.hasOwnProperty(f)&&(e[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)e.children=c;else if(1<f){g=Array(f);for(var n=0;n<f;n++)g[n]=arguments[n+2];e.children=g}return{$$typeof:m,type:a.type,
key:d,ref:k,props:e,_owner:h}};exports.createContext=function(a){a={$$typeof:r,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=K;exports.createFactory=function(a){var b=K.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};exports.isValidElement=M;
exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:R}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return S.current.getCacheForType(a)};
exports.unstable_startTransition=function(a){var b=T.transition;T.transition=1;try{a()}finally{T.transition=b}};exports.unstable_useCacheRefresh=function(){return S.current.useCacheRefresh()};exports.unstable_useDeferredValue=function(a){return S.current.useDeferredValue(a)};exports.unstable_useMutableSource=function(a,b,c){return S.current.useMutableSource(a,b,c)};exports.unstable_useOpaqueIdentifier=function(){return S.current.useOpaqueIdentifier()};exports.unstable_useTransition=function(){return S.current.useTransition()};
exports.useCallback=function(a,b){return S.current.useCallback(a,b)};exports.useContext=function(a){return S.current.useContext(a)};exports.useDebugValue=function(){};exports.useEffect=function(a,b){return S.current.useEffect(a,b)};exports.useImperativeHandle=function(a,b,c){return S.current.useImperativeHandle(a,b,c)};exports.useLayoutEffect=function(a,b){return S.current.useLayoutEffect(a,b)};exports.useMemo=function(a,b){return S.current.useMemo(a,b)};
exports.useReducer=function(a,b,c){return S.current.useReducer(a,b,c)};exports.useRef=function(a){return S.current.useRef(a)};exports.useState=function(a){return S.current.useState(a)};exports.version="17.0.3-experimental-5027eb465";
'use strict';var l=require("object-assign"),m=60103,p=60106;exports.Fragment=60107;exports.StrictMode=60108;exports.Profiler=60114;var q=60109,r=60110,t=60112;exports.Suspense=60113;exports.SuspenseList=60120;var u=60115,v=60116;exports.unstable_DebugTracingMode=60129;exports.unstable_Offscreen=60130;exports.unstable_LegacyHidden=60131;exports.unstable_Cache=60132;
if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;m=w("react.element");p=w("react.portal");exports.Fragment=w("react.fragment");exports.StrictMode=w("react.strict_mode");exports.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");exports.Suspense=w("react.suspense");exports.SuspenseList=w("react.suspense_list");u=w("react.memo");v=w("react.lazy");exports.unstable_DebugTracingMode=w("react.debug_trace_mode");exports.unstable_Offscreen=w("react.offscreen");
exports.unstable_LegacyHidden=w("react.legacy_hidden");exports.unstable_Cache=w("react.cache")}var x="function"===typeof Symbol&&Symbol.iterator;function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return"function"===typeof a?a:null}var z={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},A={};function B(a,b,e){this.props=a;this.context=b;this.refs=A;this.updater=e||z}
B.prototype.isReactComponent={};B.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)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,a,b,"setState")};B.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};function C(){}C.prototype=B.prototype;
function D(a,b,e){this.props=a;this.context=b;this.refs=A;this.updater=e||z}var E=D.prototype=new C;E.constructor=D;l(E,B.prototype);E.isPureReactComponent=!0;var F=Array.isArray,G=Object.prototype.hasOwnProperty,H={current:null},I={key:!0,ref:!0,__self:!0,__source:!0};
function J(a,b,e){var d,c={},k=null,h=null;if(null!=b)for(d in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(k=""+b.key),b)G.call(b,d)&&!I.hasOwnProperty(d)&&(c[d]=b[d]);var g=arguments.length-2;if(1===g)c.children=e;else if(1<g){for(var f=Array(g),n=0;n<g;n++)f[n]=arguments[n+2];c.children=f}if(a&&a.defaultProps)for(d in g=a.defaultProps,g)void 0===c[d]&&(c[d]=g[d]);return{$$typeof:m,type:a,key:k,ref:h,props:c,_owner:H.current}}
function K(a,b){return{$$typeof:m,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===m}function escape(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}var M=/\/+/g;function N(a,b){return"object"===typeof a&&null!==a&&null!=a.key?escape(""+a.key):b.toString(36)}
function O(a,b,e,d,c){var k=typeof a;if("undefined"===k||"boolean"===k)a=null;var h=!1;if(null===a)h=!0;else switch(k){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case m:case p:h=!0}}if(h)return h=a,c=c(h),a=""===d?"."+N(h,0):d,F(c)?(e="",null!=a&&(e=a.replace(M,"$&/")+"/"),O(c,b,e,"",function(a){return a})):null!=c&&(L(c)&&(c=K(c,e+(!c.key||h&&h.key===c.key?"":(""+c.key).replace(M,"$&/")+"/")+a)),b.push(c)),1;h=0;d=""===d?".":d+":";if(F(a))for(var g=0;g<a.length;g++){k=
a[g];var f=d+N(k,g);h+=O(k,b,e,f,c)}else if(f=y(a),"function"===typeof f)for(a=f.call(a),g=0;!(k=a.next()).done;)k=k.value,f=d+N(k,g++),h+=O(k,b,e,f,c);else if("object"===k)throw b=String(a),Error("Objects are not valid as a React child (found: "+("[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b)+"). If you meant to render a collection of children, use an array instead.");return h}
function P(a,b,e){if(null==a)return a;var d=[],c=0;O(a,d,"","",function(a){return b.call(e,a,c++)});return d}function Q(a){if(-1===a._status){var b=a._result;b=b();b.then(function(b){if(0===a._status||-1===a._status)a._status=1,a._result=b},function(b){if(0===a._status||-1===a._status)a._status=2,a._result=b});-1===a._status&&(a._status=0,a._result=b)}if(1===a._status)return a._result.default;throw a._result;}
var R={current:null},S={transition:0},T={ReactCurrentDispatcher:R,ReactCurrentBatchConfig:S,ReactCurrentOwner:H,assign:l};exports.Children={map:P,forEach:function(a,b,e){P(a,function(){b.apply(this,arguments)},e)},count:function(a){var b=0;P(a,function(){b++});return b},toArray:function(a){return P(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};exports.Component=B;exports.PureComponent=D;
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T;
exports.cloneElement=function(a,b,e){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=l({},a.props),c=a.key,k=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(k=b.ref,h=H.current);void 0!==b.key&&(c=""+b.key);if(a.type&&a.type.defaultProps)var g=a.type.defaultProps;for(f in b)G.call(b,f)&&!I.hasOwnProperty(f)&&(d[f]=void 0===b[f]&&void 0!==g?g[f]:b[f])}var f=arguments.length-2;if(1===f)d.children=e;else if(1<f){g=Array(f);
for(var n=0;n<f;n++)g[n]=arguments[n+2];d.children=g}return{$$typeof:m,type:a.type,key:c,ref:k,props:d,_owner:h}};exports.createContext=function(a){a={$$typeof:r,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:q,_context:a};return a.Consumer=a};exports.createElement=J;exports.createFactory=function(a){var b=J.bind(null,a);b.type=a;return b};exports.createRef=function(){return{current:null}};exports.forwardRef=function(a){return{$$typeof:t,render:a}};
exports.isValidElement=L;exports.lazy=function(a){return{$$typeof:v,_payload:{_status:-1,_result:a},_init:Q}};exports.memo=function(a,b){return{$$typeof:u,type:a,compare:void 0===b?null:b}};exports.startTransition=function(a){var b=S.transition;S.transition=1;try{a()}finally{S.transition=b}};exports.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.");};
exports.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};exports.unstable_getCacheForType=function(a){return R.current.getCacheForType(a)};exports.unstable_getCacheSignal=function(){return R.current.getCacheSignal()};exports.unstable_useCacheRefresh=function(){return R.current.useCacheRefresh()};exports.useCallback=function(a,b){return R.current.useCallback(a,b)};exports.useContext=function(a){return R.current.useContext(a)};
exports.useDebugValue=function(){};exports.useDeferredValue=function(a){return R.current.useDeferredValue(a)};exports.useEffect=function(a,b){return R.current.useEffect(a,b)};exports.useId=function(){return R.current.useId()};exports.useImperativeHandle=function(a,b,e){return R.current.useImperativeHandle(a,b,e)};exports.useInsertionEffect=function(a,b){return R.current.useInsertionEffect(a,b)};exports.useLayoutEffect=function(a,b){return R.current.useLayoutEffect(a,b)};
exports.useMemo=function(a,b){return R.current.useMemo(a,b)};exports.useReducer=function(a,b,e){return R.current.useReducer(a,b,e)};exports.useRef=function(a){return R.current.useRef(a)};exports.useState=function(a){return R.current.useState(a)};exports.useSyncExternalStore=function(a,b,e){return R.current.useSyncExternalStore(a,b,e)};exports.useTransition=function(){return R.current.useTransition()};exports.version="18.0.0-rc.0-experimental-51947a14b-20220113";

@@ -7,3 +7,3 @@ {

],
"version": "0.0.0-experimental-5027eb465",
"version": "0.0.0-experimental-51947a14b-20220113",
"homepage": "https://reactjs.org/",

@@ -15,3 +15,2 @@ "bugs": "https://github.com/facebook/react/issues",

"README.md",
"build-info.json",
"index.js",

@@ -34,3 +33,3 @@ "cjs/",

},
"./build-info.json": "./build-info.json",
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js",

@@ -37,0 +36,0 @@ "./jsx-dev-runtime": "./jsx-dev-runtime.js",

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.production.min.js

@@ -9,25 +10,25 @@ *

*/
(function(){'use strict';(function(c,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(c=c||self,w(c.React={}))})(this,function(c){function w(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function A(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,e=1;e<arguments.length;e++)b+="&args[]="+encodeURIComponent(arguments[e]);return"Minified React error #"+
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function u(a,b,e){this.props=a;this.context=b;this.refs=W;this.updater=e||X}function Y(){}function J(a,b,e){this.props=a;this.context=b;this.refs=W;this.updater=e||X}function Z(a,b,e){var l,c={},aa=null,x=null;if(null!=b)for(l in void 0!==b.ref&&(x=b.ref),void 0!==b.key&&(aa=""+b.key),b)ba.call(b,l)&&!ca.hasOwnProperty(l)&&(c[l]=b[l]);var d=arguments.length-2;if(1===d)c.children=
e;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];c.children=g}if(a&&a.defaultProps)for(l in d=a.defaultProps,d)void 0===c[l]&&(c[l]=d[l]);return{$$typeof:v,type:a,key:aa,ref:x,props:c,_owner:K.current}}function ta(a,b){return{$$typeof:v,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ua(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function M(a,b){return"object"===
typeof a&&null!==a&&null!=a.key?ua(""+a.key):b.toString(36)}function B(a,b,e,c,k){var l=typeof a;if("undefined"===l||"boolean"===l)a=null;var d=!1;if(null===a)d=!0;else switch(l){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case da:d=!0}}if(d)return d=a,k=k(d),a=""===c?"."+M(d,0):c,ea(k)?(e="",null!=a&&(e=a.replace(fa,"$&/")+"/"),B(k,b,e,"",function(a){return a})):null!=k&&(L(k)&&(k=ta(k,e+(!k.key||d&&d.key===k.key?"":(""+k.key).replace(fa,"$&/")+"/")+a)),b.push(k)),
1;d=0;c=""===c?".":c+":";if(ea(a))for(var f=0;f<a.length;f++){l=a[f];var g=c+M(l,f);d+=B(l,b,e,g,k)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(l=a.next()).done;)l=l.value,g=c+M(l,f++),d+=B(l,b,e,g,k);else if("object"===l)throw b=""+a,Error(A(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return d}function C(a,b,e){if(null==a)return a;var c=[],d=0;B(a,c,"","",function(a){return b.call(e,a,d++)});return c}function va(a){if(-1===a._status){var b=a._result;
b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function N(a,b){var e=a.length;a.push(b);a:for(;0<e;){var c=e-1>>>1,d=a[c];if(0<D(d,b))a[c]=b,a[e]=d,e=c;else break a}}function m(a){return 0===a.length?null:a[0]}function E(a){if(0===a.length)return null;var b=a[0],e=a.pop();if(e!==b){a[0]=e;a:for(var c=0,d=a.length,f=d>>>1;c<f;){var h=2*(c+
1)-1,n=a[h],g=h+1,m=a[g];if(0>D(n,e))g<d&&0>D(m,n)?(a[c]=m,a[g]=e,c=g):(a[c]=n,a[h]=e,c=h);else if(g<d&&0>D(m,e))a[c]=m,a[g]=e,c=g;else break a}}return b}function D(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function O(a){for(var b=m(q);null!==b;){if(null===b.callback)E(q);else if(b.startTime<=a)E(q),b.sortIndex=b.expirationTime,N(p,b);else break;b=m(q)}}function P(a){y=!1;O(a);if(!r)if(null!==m(p))r=!0,Q(R);else{var b=m(q);null!==b&&S(P,b.startTime-a)}}function R(a,b){r=!1;y&&(y=
!1,ha(z),z=-1);F=!0;var c=f;try{O(b);for(n=m(p);null!==n&&(!(n.expirationTime>b)||a&&!ia());){var d=n.callback;if("function"===typeof d){n.callback=null;f=n.priorityLevel;var k=d(n.expirationTime<=b);b=t();"function"===typeof k?n.callback=k:n===m(p)&&E(p);O(b)}else E(p);n=m(p)}if(null!==n)var h=!0;else{var x=m(q);null!==x&&S(P,x.startTime-b);h=!1}return h}finally{n=null,f=c,F=!1}}function ia(){return t()>=ja}function Q(a){G=a;H||(H=!0,T())}function S(a,b){z=wa(function(){a(t())},b)}var v=60103,da=
60106;c.Fragment=60107;c.StrictMode=60108;c.Profiler=60114;var ka=60109,la=60110,ma=60112;c.Suspense=60113;c.unstable_SuspenseList=60120;var na=60115,oa=60116;c.unstable_DebugTracingMode=60129;c.unstable_LegacyHidden=60131;c.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");c.Fragment=d("react.fragment");c.StrictMode=d("react.strict_mode");c.Profiler=d("react.profiler");ka=d("react.provider");la=d("react.context");ma=d("react.forward_ref");
c.Suspense=d("react.suspense");c.unstable_SuspenseList=d("react.suspense_list");na=d("react.memo");oa=d("react.lazy");c.unstable_DebugTracingMode=d("react.debug_trace_mode");c.unstable_LegacyHidden=d("react.legacy_hidden");c.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,xa=Object.prototype.hasOwnProperty,U=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var c=Object(a),d=1;d<arguments.length;d++){var k=
arguments[d];if(null!=k){var f=void 0;k=Object(k);for(f in k)xa.call(k,f)&&(c[f]=k[f])}}return c},X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,d){},enqueueSetState:function(a,b,c,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(A(85));this.updater.enqueueSetState(this,a,b,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;U(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,h={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var ya=performance;var t=function(){return ya.now()}}else{var pa=Date,za=pa.now();t=function(){return pa.now()-za}}var p=[],q=[],Aa=1,n=null,f=3,F=!1,r=
!1,y=!1,wa=window.setTimeout,ha=window.clearTimeout,qa=window.setImmediate;"undefined"!==typeof console&&(d=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!==typeof d&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));
var H=!1,G=null,z=-1,ra=5,ja=0,sa=function(){if(null!==G){var a=t();ja=a+ra;var b=!0;try{b=G(!0,a)}finally{b?T():(H=!1,G=null)}}else H=!1};if("function"===typeof qa)var T=function(){qa(sa)};else{d=new MessageChannel;var Ba=d.port2;d.port1.onmessage=sa;T=function(){Ba.postMessage(null)}}var Ca=0;d={ReactCurrentDispatcher:h,ReactCurrentOwner:K,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:I,assign:U,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,
unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=f;f=a;try{return b()}finally{f=c}},unstable_next:function(a){switch(f){case 1:case 2:case 3:var b=3;break;default:b=f}var c=f;f=b;try{return a()}finally{f=c}},unstable_scheduleCallback:function(a,b,c){var d=t();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?d+c:d):c=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=
1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Aa++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>d?(a.sortIndex=c,N(q,a),null===m(p)&&a===m(q)&&(y?(ha(z),z=-1):y=!0,S(P,c-d))):(a.sortIndex=e,N(p,a),r||F||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=f;return function(){var c=f;f=b;try{return a.apply(this,arguments)}finally{f=c}}},unstable_getCurrentPriorityLevel:function(){return f},unstable_shouldYield:ia,
unstable_requestPaint:function(){},unstable_continueExecution:function(){r||F||(r=!0,Q(R))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return m(p)},get unstable_now(){return t},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ra=0<a?Math.floor(1E3/a):5},unstable_Profiling:null},SchedulerTracing:{__proto__:null,__interactionsRef:null,__subscriberRef:null,
unstable_clear:function(a){return a()},unstable_getCurrent:function(){return null},unstable_getThreadID:function(){return++Ca},unstable_trace:function(a,b,c){return c()},unstable_wrap:function(a){return a},unstable_subscribe:function(a){},unstable_unsubscribe:function(a){}}};c.Children={map:C,forEach:function(a,b,c){C(a,function(){b.apply(this,arguments)},c)},count:function(a){var b=0;C(a,function(){b++});return b},toArray:function(a){return C(a,function(a){return a})||[]},only:function(a){if(!L(a))throw Error(A(143));
return a}};c.Component=u;c.PureComponent=J;c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;c.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(A(267,a));var d=U({},a.props),e=a.key,f=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(f=b.ref,h=K.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var m=a.type.defaultProps;for(g in b)ba.call(b,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===b[g]&&void 0!==m?m[g]:b[g])}var g=arguments.length-2;if(1===g)d.children=c;else if(1<
g){m=Array(g);for(var n=0;n<g;n++)m[n]=arguments[n+2];d.children=m}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:h}};c.createContext=function(a){a={$$typeof:la,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ka,_context:a};return a.Consumer=a};c.createElement=Z;c.createFactory=function(a){var b=Z.bind(null,a);b.type=a;return b};c.createRef=function(){return{current:null}};c.forwardRef=function(a){return{$$typeof:ma,render:a}};c.isValidElement=
L;c.lazy=function(a){return{$$typeof:oa,_payload:{_status:-1,_result:a},_init:va}};c.memo=function(a,b){return{$$typeof:na,type:a,compare:void 0===b?null:b}};c.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};c.unstable_getCacheForType=function(a){return h.current.getCacheForType(a)};c.unstable_startTransition=function(a){var b=I.transition;I.transition=1;try{a()}finally{I.transition=b}};c.unstable_useCacheRefresh=
function(){return h.current.useCacheRefresh()};c.unstable_useDeferredValue=function(a){return h.current.useDeferredValue(a)};c.unstable_useMutableSource=function(a,b,c){return h.current.useMutableSource(a,b,c)};c.unstable_useOpaqueIdentifier=function(){return h.current.useOpaqueIdentifier()};c.unstable_useTransition=function(){return h.current.useTransition()};c.useCallback=function(a,b){return h.current.useCallback(a,b)};c.useContext=function(a){return h.current.useContext(a)};c.useDebugValue=function(a,
b){};c.useEffect=function(a,b){return h.current.useEffect(a,b)};c.useImperativeHandle=function(a,b,c){return h.current.useImperativeHandle(a,b,c)};c.useLayoutEffect=function(a,b){return h.current.useLayoutEffect(a,b)};c.useMemo=function(a,b){return h.current.useMemo(a,b)};c.useReducer=function(a,b,c){return h.current.useReducer(a,b,c)};c.useRef=function(a){return h.current.useRef(a)};c.useState=function(a){return h.current.useState(a)};c.version="17.0.3-experimental-5027eb465"});
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function u(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Y(){}function J(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Z(a,c,
l){var b,e={},aa=null,x=null;if(null!=c)for(b in void 0!==c.ref&&(x=c.ref),void 0!==c.key&&(aa=""+c.key),c)ba.call(c,b)&&!ca.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=l;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:aa,ref:x,props:e,_owner:K.current}}function ta(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}
function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ua(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function M(a,c){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):c.toString(36)}function A(a,c,l,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case da:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+
M(d,0):b,ea(e)?(l="",null!=a&&(l=a.replace(fa,"$&/")+"/"),A(e,c,l,"",function(a){return a})):null!=e&&(L(e)&&(e=ta(e,l+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(fa,"$&/")+"/")+a)),c.push(e)),1;d=0;b=""===b?".":b+":";if(ea(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+M(n,f);d+=A(n,c,l,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+M(n,f++),d+=A(n,c,l,g,e);else if("object"===n)throw c=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c)+"). If you meant to render a collection of children, use an array instead.");return d}function B(a,c,b){if(null==a)return a;var l=[],e=0;A(a,l,"","",function(a){return c.call(b,a,e++)});return l}function va(a){if(-1===a._status){var c=a._result;c=c();c.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=c)}if(1===a._status)return a._result.default;throw a._result;}function N(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<C(e,c))a[d]=c,a[b]=e,b=d;else break a}}function k(a){return 0===a.length?null:a[0]}function D(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,k=a[g];if(0>C(m,b))g<e&&0>C(k,m)?(a[d]=k,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>C(k,b))a[d]=k,a[g]=b,d=g;else break a}}return c}
function C(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function O(a){for(var c=k(q);null!==c;){if(null===c.callback)D(q);else if(c.startTime<=a)D(q),c.sortIndex=c.expirationTime,N(p,c);else break;c=k(q)}}function P(a){y=!1;O(a);if(!r)if(null!==k(p))r=!0,Q(R);else{var c=k(q);null!==c&&S(P,c.startTime-a)}}function R(a,c){r=!1;y&&(y=!1,ha(z),z=-1);E=!0;var b=h;try{O(c);for(m=k(p);null!==m&&(!(m.expirationTime>c)||a&&!ia());){var d=m.callback;if("function"===typeof d){m.callback=null;
h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===k(p)&&D(p);O(c)}else D(p);m=k(p)}if(null!==m)var f=!0;else{var x=k(q);null!==x&&S(P,x.startTime-c);f=!1}return f}finally{m=null,h=b,E=!1}}function ia(){return t()-ja<ka?!1:!0}function Q(a){F=a;G||(G=!0,H())}function S(a,c){z=la(function(){a(t())},c)}var v=60103,da=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=
60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=
d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,wa=Object.prototype.hasOwnProperty,T=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)wa.call(e,f)&&(b[f]=e[f])}}return b},
X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)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,a,c,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;T(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,f={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var xa=performance;var t=function(){return xa.now()}}else{var ra=Date,ya=ra.now();t=function(){return ra.now()-ya}}var p=[],q=[],za=1,m=null,h=3,E=!1,r=
!1,y=!1,la="function"===typeof setTimeout?setTimeout:null,ha="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var G=!1,F=null,z=-1,ka=5,ja=-1,U=function(){if(null!==F){var a=t();ja=a;var c=!0;try{c=F(!0,a)}finally{c?H():(G=!1,F=null)}}else G=!1};if("function"===typeof sa)var H=
function(){sa(U)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Aa=d.port2;d.port1.onmessage=U;H=function(){Aa.postMessage(null)}}else H=function(){la(U,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:K,ReactCurrentBatchConfig:I,assign:T,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=b+e;a={id:za++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,N(q,a),null===k(p)&&a===k(q)&&(y?(ha(z),z=-1):y=!0,S(P,b-d))):(a.sortIndex=e,N(p,a),r||E||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||E||(r=!0,Q(R))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return k(p)},get unstable_now(){return t},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:B,forEach:function(a,c,b){B(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;B(a,function(){c++});return c},toArray:function(a){return B(a,function(a){return a})||
[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};b.Component=u;b.PureComponent=J;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=T({},a.props),e=a.key,f=a.ref,l=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,l=K.current);void 0!==c.key&&(e=""+c.key);if(a.type&&
a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ba.call(c,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var k=0;k<g;k++)h[k]=arguments[k+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:l}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=
Z;b.createFactory=function(a){var c=Z.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=L;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:va}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=I.transition;I.transition=1;try{a()}finally{I.transition=c}};b.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.useCallback=function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=
function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useId=function(){return f.current.useId()};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};b.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,b)};b.useMemo=function(a,b){return f.current.useMemo(a,b)};b.useReducer=function(a,b,
d){return f.current.useReducer(a,b,d)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useSyncExternalStore=function(a,b,d){return f.current.useSyncExternalStore(a,b,d)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-rc.0-experimental-51947a14b-20220113"});
})();

@@ -1,2 +0,3 @@

/** @license React vundefined
/**
* @license React
* react.profiling.min.js

@@ -9,30 +10,25 @@ *

*/
(function(){'use strict';(function(d,C){"object"===typeof exports&&"undefined"!==typeof module?C(exports):"function"===typeof define&&define.amd?define(["exports"],C):(d=d||self,C(d.React={}))})(this,function(d){function C(a){if(null===a||"object"!==typeof a)return null;a=aa&&a[aa]||a["@@iterator"];return"function"===typeof a?a:null}function F(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+
a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function A(a,b,c){this.props=a;this.context=b;this.refs=ba;this.updater=c||ca}function da(){}function O(a,b,c){this.props=a;this.context=b;this.refs=ba;this.updater=c||ca}function ea(a,b,c){var f,e={},d=null,h=null;if(null!=b)for(f in void 0!==b.ref&&(h=b.ref),void 0!==b.key&&(d=""+b.key),b)fa.call(b,f)&&!ha.hasOwnProperty(f)&&(e[f]=b[f]);var l=arguments.length-2;if(1===
l)e.children=c;else if(1<l){for(var k=Array(l),g=0;g<l;g++)k[g]=arguments[g+2];e.children=k}if(a&&a.defaultProps)for(f in l=a.defaultProps,l)void 0===e[f]&&(e[f]=l[f]);return{$$typeof:B,type:a,key:d,ref:h,props:e,_owner:P.current}}function xa(a,b){return{$$typeof:B,type:a.type,key:b,ref:a.ref,props:a.props,_owner:a._owner}}function Q(a){return"object"===typeof a&&null!==a&&a.$$typeof===B}function ya(a){var b={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return b[a]})}function R(a,b){return"object"===
typeof a&&null!==a&&null!=a.key?ya(""+a.key):b.toString(36)}function G(a,b,c,f,e){var d=typeof a;if("undefined"===d||"boolean"===d)a=null;var h=!1;if(null===a)h=!0;else switch(d){case "string":case "number":h=!0;break;case "object":switch(a.$$typeof){case B:case ia:h=!0}}if(h)return h=a,e=e(h),a=""===f?"."+R(h,0):f,ja(e)?(c="",null!=a&&(c=a.replace(ka,"$&/")+"/"),G(e,b,c,"",function(a){return a})):null!=e&&(Q(e)&&(e=xa(e,c+(!e.key||h&&h.key===e.key?"":(""+e.key).replace(ka,"$&/")+"/")+a)),b.push(e)),
1;h=0;f=""===f?".":f+":";if(ja(a))for(var l=0;l<a.length;l++){d=a[l];var k=f+R(d,l);h+=G(d,b,c,k,e)}else if(k=C(a),"function"===typeof k)for(a=k.call(a),l=0;!(d=a.next()).done;)d=d.value,k=f+R(d,l++),h+=G(d,b,c,k,e);else if("object"===d)throw b=""+a,Error(F(31,"[object Object]"===b?"object with keys {"+Object.keys(a).join(", ")+"}":b));return h}function H(a,b,c){if(null==a)return a;var f=[],e=0;G(a,f,"","",function(a){return b.call(c,a,e++)});return f}function za(a){if(-1===a._status){var b=a._result;
b=b();a._status=0;a._result=b;b.then(function(b){0===a._status&&(b=b.default,a._status=1,a._result=b)},function(b){0===a._status&&(a._status=2,a._result=b)})}if(1===a._status)return a._result;throw a._result;}function S(a,b){var c=a.length;a.push(b);a:for(;0<c;){var f=c-1>>>1,e=a[f];if(0<I(e,b))a[f]=b,a[c]=e,c=f;else break a}}function r(a){return 0===a.length?null:a[0]}function J(a){if(0===a.length)return null;var b=a[0],c=a.pop();if(c!==b){a[0]=c;a:for(var f=0,e=a.length,d=e>>>1;f<d;){var h=2*(f+
1)-1,l=a[h],k=h+1,g=a[k];if(0>I(l,c))k<e&&0>I(g,l)?(a[f]=g,a[k]=c,f=k):(a[f]=l,a[h]=c,f=h);else if(k<e&&0>I(g,c))a[f]=g,a[k]=c,f=k;else break a}}return b}function I(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}function T(a){for(var b=r(v);null!==b;){if(null===b.callback)J(v);else if(b.startTime<=a)J(v),b.sortIndex=b.expirationTime,S(u,b);else break;b=r(v)}}function U(a){D=!1;T(a);if(!y)if(null!==r(u))y=!0,V(W);else{var b=r(v);null!==b&&X(U,b.startTime-a)}}function W(a,b){y=!1;D&&(D=
!1,la(E),E=-1);K=!0;var c=m;try{T(b);for(q=r(u);null!==q&&(!(q.expirationTime>b)||a&&!ma());){var f=q.callback;if("function"===typeof f){q.callback=null;m=q.priorityLevel;var e=f(q.expirationTime<=b);b=z();"function"===typeof e?q.callback=e:q===r(u)&&J(u);T(b)}else J(u);q=r(u)}if(null!==q)var d=!0;else{var h=r(v);null!==h&&X(U,h.startTime-b);d=!1}return d}finally{q=null,m=c,K=!1}}function ma(){return z()>=na}function V(a){L=a;M||(M=!0,Y())}function X(a,b){E=Aa(function(){a(z())},b)}function Ba(a){var b=
!1,c=null;t.forEach(function(f){try{f.onInteractionTraced(a)}catch(e){b||(b=!0,c=e)}});if(b)throw c;}function Ca(a){var b=!1,c=null;t.forEach(function(f){try{f.onInteractionScheduledWorkCompleted(a)}catch(e){b||(b=!0,c=e)}});if(b)throw c;}function Da(a,b){var c=!1,f=null;t.forEach(function(e){try{e.onWorkScheduled(a,b)}catch(x){c||(c=!0,f=x)}});if(c)throw f;}function Ea(a,b){var c=!1,f=null;t.forEach(function(e){try{e.onWorkStarted(a,b)}catch(x){c||(c=!0,f=x)}});if(c)throw f;}function Fa(a,b){var c=
!1,f=null;t.forEach(function(e){try{e.onWorkStopped(a,b)}catch(x){c||(c=!0,f=x)}});if(c)throw f;}function Ga(a,b){var c=!1,f=null;t.forEach(function(e){try{e.onWorkCanceled(a,b)}catch(x){c||(c=!0,f=x)}});if(c)throw f;}var B=60103,ia=60106;d.Fragment=60107;d.StrictMode=60108;d.Profiler=60114;var oa=60109,pa=60110,qa=60112;d.Suspense=60113;d.unstable_SuspenseList=60120;var ra=60115,sa=60116;d.unstable_DebugTracingMode=60129;d.unstable_LegacyHidden=60131;d.unstable_Cache=60132;if("function"===typeof Symbol&&
Symbol.for){var g=Symbol.for;B=g("react.element");ia=g("react.portal");d.Fragment=g("react.fragment");d.StrictMode=g("react.strict_mode");d.Profiler=g("react.profiler");oa=g("react.provider");pa=g("react.context");qa=g("react.forward_ref");d.Suspense=g("react.suspense");d.unstable_SuspenseList=g("react.suspense_list");ra=g("react.memo");sa=g("react.lazy");d.unstable_DebugTracingMode=g("react.debug_trace_mode");d.unstable_LegacyHidden=g("react.legacy_hidden");d.unstable_Cache=g("react.cache")}var aa=
"function"===typeof Symbol&&Symbol.iterator,Ha=Object.prototype.hasOwnProperty,Z=Object.assign||function(a,b){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var c=Object(a),f=1;f<arguments.length;f++){var e=arguments[f];if(null!=e){var d=void 0;e=Object(e);for(d in e)Ha.call(e,d)&&(c[d]=e[d])}}return c},ca={isMounted:function(a){return!1},enqueueForceUpdate:function(a,b,c){},enqueueReplaceState:function(a,b,c,f){},enqueueSetState:function(a,b,c,f){}},ba={};
A.prototype.isReactComponent={};A.prototype.setState=function(a,b){if("object"!==typeof a&&"function"!==typeof a&&null!=a)throw Error(F(85));this.updater.enqueueSetState(this,a,b,"setState")};A.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,a,"forceUpdate")};da.prototype=A.prototype;g=O.prototype=new da;g.constructor=O;Z(g,A.prototype);g.isPureReactComponent=!0;var ja=Array.isArray,fa=Object.prototype.hasOwnProperty,P={current:null},ha={key:!0,ref:!0,__self:!0,__source:!0},
ka=/\/+/g,n={current:null},N={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var Ia=performance;var z=function(){return Ia.now()}}else{var ta=Date,Ja=ta.now();z=function(){return ta.now()-Ja}}var u=[],v=[],Ka=1,q=null,m=3,K=!1,y=!1,D=!1,Aa=window.setTimeout,la=window.clearTimeout,ua=window.setImmediate;"undefined"!==typeof console&&(g=window.cancelAnimationFrame,"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),
"function"!==typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"));var M=!1,L=null,E=-1,va=5,na=0,wa=function(){if(null!==L){var a=z();na=a+va;var b=!0;try{b=L(!0,a)}finally{b?Y():(M=!1,L=null)}}else M=!1};if("function"===typeof ua)var Y=function(){ua(wa)};else{g=new MessageChannel;var La=g.port2;g.port1.onmessage=wa;Y=function(){La.postMessage(null)}}g={__proto__:null,unstable_ImmediatePriority:1,
unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3}var c=m;m=a;try{return b()}finally{m=c}},unstable_next:function(a){switch(m){case 1:case 2:case 3:var b=3;break;default:b=m}var c=m;m=b;try{return a()}finally{m=c}},unstable_scheduleCallback:function(a,b,c){var f=z();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0<c?f+c:f):c=
f;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=c+e;a={id:Ka++,callback:b,priorityLevel:a,startTime:c,expirationTime:e,sortIndex:-1};c>f?(a.sortIndex=c,S(v,a),null===r(u)&&a===r(v)&&(D?(la(E),E=-1):D=!0,X(U,c-f))):(a.sortIndex=e,S(u,a),y||K||(y=!0,V(W)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var b=m;return function(){var c=m;m=b;try{return a.apply(this,arguments)}finally{m=
c}}},unstable_getCurrentPriorityLevel:function(){return m},unstable_shouldYield:ma,unstable_requestPaint:function(){},unstable_continueExecution:function(){y||K||(y=!0,V(W))},unstable_pauseExecution:function(){},unstable_getFirstCallbackNode:function(){return r(u)},get unstable_now(){return z},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):va=0<a?Math.floor(1E3/a):5},unstable_Profiling:null};
var Ma=0,Na=0,p=null,w=null;p={current:new Set};w={current:null};var t=null;t=new Set;g={ReactCurrentDispatcher:n,ReactCurrentOwner:P,IsSomeRendererActing:{current:!1},ReactCurrentBatchConfig:N,assign:Z,Scheduler:g,SchedulerTracing:{__proto__:null,get __interactionsRef(){return p},get __subscriberRef(){return w},unstable_clear:function(a){var b=p.current;p.current=new Set;try{return a()}finally{p.current=b}},unstable_getCurrent:function(){return p.current},unstable_getThreadID:function(){return++Na},
unstable_trace:function(a,b,c){var f=3<arguments.length&&void 0!==arguments[3]?arguments[3]:0,e={__count:1,id:Ma++,name:a,timestamp:b},d=p.current,h=new Set(d);h.add(e);p.current=h;var g=w.current;try{if(null!==g)g.onInteractionTraced(e)}finally{try{if(null!==g)g.onWorkStarted(h,f)}finally{try{var k=c()}finally{p.current=d;try{if(null!==g)g.onWorkStopped(h,f)}finally{if(e.__count--,null!==g&&0===e.__count)g.onInteractionScheduledWorkCompleted(e)}}}}return k},unstable_wrap:function(a){function b(){var b=
p.current;p.current=d;e=w.current;try{try{if(null!==e)e.onWorkStarted(d,c)}finally{try{var f=a.apply(void 0,arguments)}finally{if(p.current=b,null!==e)e.onWorkStopped(d,c)}}return f}finally{g||(g=!0,d.forEach(function(a){a.__count--;if(null!==e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)}))}}var c=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,d=p.current,e=w.current;if(null!==e)e.onWorkScheduled(d,c);d.forEach(function(a){a.__count++});var g=!1;b.cancel=function(){e=w.current;
try{if(null!==e)e.onWorkCanceled(d,c)}finally{d.forEach(function(a){a.__count--;if(e&&0===a.__count)e.onInteractionScheduledWorkCompleted(a)})}};return b},unstable_subscribe:function(a){t.add(a);1===t.size&&(w.current={onInteractionScheduledWorkCompleted:Ca,onInteractionTraced:Ba,onWorkCanceled:Ga,onWorkScheduled:Da,onWorkStarted:Ea,onWorkStopped:Fa})},unstable_unsubscribe:function(a){t.delete(a);0===t.size&&(w.current=null)}}};d.Children={map:H,forEach:function(a,b,c){H(a,function(){b.apply(this,
arguments)},c)},count:function(a){var b=0;H(a,function(){b++});return b},toArray:function(a){return H(a,function(a){return a})||[]},only:function(a){if(!Q(a))throw Error(F(143));return a}};d.Component=A;d.PureComponent=O;d.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=g;d.cloneElement=function(a,b,c){if(null===a||void 0===a)throw Error(F(267,a));var d=Z({},a.props),e=a.key,g=a.ref,h=a._owner;if(null!=b){void 0!==b.ref&&(g=b.ref,h=P.current);void 0!==b.key&&(e=""+b.key);if(a.type&&a.type.defaultProps)var l=
a.type.defaultProps;for(k in b)fa.call(b,k)&&!ha.hasOwnProperty(k)&&(d[k]=void 0===b[k]&&void 0!==l?l[k]:b[k])}var k=arguments.length-2;if(1===k)d.children=c;else if(1<k){l=Array(k);for(var m=0;m<k;m++)l[m]=arguments[m+2];d.children=l}return{$$typeof:B,type:a.type,key:e,ref:g,props:d,_owner:h}};d.createContext=function(a){a={$$typeof:pa,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:oa,_context:a};return a.Consumer=a};d.createElement=ea;d.createFactory=
function(a){var b=ea.bind(null,a);b.type=a;return b};d.createRef=function(){return{current:null}};d.forwardRef=function(a){return{$$typeof:qa,render:a}};d.isValidElement=Q;d.lazy=function(a){return{$$typeof:sa,_payload:{_status:-1,_result:a},_init:za}};d.memo=function(a,b){return{$$typeof:ra,type:a,compare:void 0===b?null:b}};d.unstable_createMutableSource=function(a,b){return{_getVersion:b,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};d.unstable_getCacheForType=
function(a){return n.current.getCacheForType(a)};d.unstable_startTransition=function(a){var b=N.transition;N.transition=1;try{a()}finally{N.transition=b}};d.unstable_useCacheRefresh=function(){return n.current.useCacheRefresh()};d.unstable_useDeferredValue=function(a){return n.current.useDeferredValue(a)};d.unstable_useMutableSource=function(a,b,c){return n.current.useMutableSource(a,b,c)};d.unstable_useOpaqueIdentifier=function(){return n.current.useOpaqueIdentifier()};d.unstable_useTransition=function(){return n.current.useTransition()};
d.useCallback=function(a,b){return n.current.useCallback(a,b)};d.useContext=function(a){return n.current.useContext(a)};d.useDebugValue=function(a,b){};d.useEffect=function(a,b){return n.current.useEffect(a,b)};d.useImperativeHandle=function(a,b,c){return n.current.useImperativeHandle(a,b,c)};d.useLayoutEffect=function(a,b){return n.current.useLayoutEffect(a,b)};d.useMemo=function(a,b){return n.current.useMemo(a,b)};d.useReducer=function(a,b,c){return n.current.useReducer(a,b,c)};d.useRef=function(a){return n.current.useRef(a)};
d.useState=function(a){return n.current.useState(a)};d.version="17.0.3-experimental-5027eb465"});
(function(){'use strict';(function(b,w){"object"===typeof exports&&"undefined"!==typeof module?w(exports):"function"===typeof define&&define.amd?define(["exports"],w):(b=b||self,w(b.React={}))})(this,function(b){function w(a){if(null===a||"object"!==typeof a)return null;a=V&&a[V]||a["@@iterator"];return"function"===typeof a?a:null}function u(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Y(){}function J(a,c,l){this.props=a;this.context=c;this.refs=W;this.updater=l||X}function Z(a,c,
l){var b,e={},aa=null,x=null;if(null!=c)for(b in void 0!==c.ref&&(x=c.ref),void 0!==c.key&&(aa=""+c.key),c)ba.call(c,b)&&!ca.hasOwnProperty(b)&&(e[b]=c[b]);var d=arguments.length-2;if(1===d)e.children=l;else if(1<d){for(var g=Array(d),f=0;f<d;f++)g[f]=arguments[f+2];e.children=g}if(a&&a.defaultProps)for(b in d=a.defaultProps,d)void 0===e[b]&&(e[b]=d[b]);return{$$typeof:v,type:a,key:aa,ref:x,props:e,_owner:K.current}}function ta(a,c){return{$$typeof:v,type:a.type,key:c,ref:a.ref,props:a.props,_owner:a._owner}}
function L(a){return"object"===typeof a&&null!==a&&a.$$typeof===v}function ua(a){var c={"=":"=0",":":"=2"};return"$"+a.replace(/[=:]/g,function(a){return c[a]})}function M(a,c){return"object"===typeof a&&null!==a&&null!=a.key?ua(""+a.key):c.toString(36)}function A(a,c,l,b,e){var n=typeof a;if("undefined"===n||"boolean"===n)a=null;var d=!1;if(null===a)d=!0;else switch(n){case "string":case "number":d=!0;break;case "object":switch(a.$$typeof){case v:case da:d=!0}}if(d)return d=a,e=e(d),a=""===b?"."+
M(d,0):b,ea(e)?(l="",null!=a&&(l=a.replace(fa,"$&/")+"/"),A(e,c,l,"",function(a){return a})):null!=e&&(L(e)&&(e=ta(e,l+(!e.key||d&&d.key===e.key?"":(""+e.key).replace(fa,"$&/")+"/")+a)),c.push(e)),1;d=0;b=""===b?".":b+":";if(ea(a))for(var f=0;f<a.length;f++){n=a[f];var g=b+M(n,f);d+=A(n,c,l,g,e)}else if(g=w(a),"function"===typeof g)for(a=g.call(a),f=0;!(n=a.next()).done;)n=n.value,g=b+M(n,f++),d+=A(n,c,l,g,e);else if("object"===n)throw c=String(a),Error("Objects are not valid as a React child (found: "+
("[object Object]"===c?"object with keys {"+Object.keys(a).join(", ")+"}":c)+"). If you meant to render a collection of children, use an array instead.");return d}function B(a,c,b){if(null==a)return a;var l=[],e=0;A(a,l,"","",function(a){return c.call(b,a,e++)});return l}function va(a){if(-1===a._status){var c=a._result;c=c();c.then(function(c){if(0===a._status||-1===a._status)a._status=1,a._result=c},function(c){if(0===a._status||-1===a._status)a._status=2,a._result=c});-1===a._status&&(a._status=
0,a._result=c)}if(1===a._status)return a._result.default;throw a._result;}function N(a,c){var b=a.length;a.push(c);a:for(;0<b;){var d=b-1>>>1,e=a[d];if(0<C(e,c))a[d]=c,a[b]=e,b=d;else break a}}function k(a){return 0===a.length?null:a[0]}function D(a){if(0===a.length)return null;var c=a[0],b=a.pop();if(b!==c){a[0]=b;a:for(var d=0,e=a.length,f=e>>>1;d<f;){var h=2*(d+1)-1,m=a[h],g=h+1,k=a[g];if(0>C(m,b))g<e&&0>C(k,m)?(a[d]=k,a[g]=b,d=g):(a[d]=m,a[h]=b,d=h);else if(g<e&&0>C(k,b))a[d]=k,a[g]=b,d=g;else break a}}return c}
function C(a,c){var b=a.sortIndex-c.sortIndex;return 0!==b?b:a.id-c.id}function O(a){for(var c=k(q);null!==c;){if(null===c.callback)D(q);else if(c.startTime<=a)D(q),c.sortIndex=c.expirationTime,N(p,c);else break;c=k(q)}}function P(a){y=!1;O(a);if(!r)if(null!==k(p))r=!0,Q(R);else{var c=k(q);null!==c&&S(P,c.startTime-a)}}function R(a,c){r=!1;y&&(y=!1,ha(z),z=-1);E=!0;var b=h;try{O(c);for(m=k(p);null!==m&&(!(m.expirationTime>c)||a&&!ia());){var d=m.callback;if("function"===typeof d){m.callback=null;
h=m.priorityLevel;var e=d(m.expirationTime<=c);c=t();"function"===typeof e?m.callback=e:m===k(p)&&D(p);O(c)}else D(p);m=k(p)}if(null!==m)var f=!0;else{var x=k(q);null!==x&&S(P,x.startTime-c);f=!1}return f}finally{m=null,h=b,E=!1}}function ia(){return t()-ja<ka?!1:!0}function Q(a){F=a;G||(G=!0,H())}function S(a,c){z=la(function(){a(t())},c)}var v=60103,da=60106;b.Fragment=60107;b.StrictMode=60108;b.Profiler=60114;var ma=60109,na=60110,oa=60112;b.Suspense=60113;b.SuspenseList=60120;var pa=60115,qa=
60116;b.unstable_DebugTracingMode=60129;b.unstable_Offscreen=60130;b.unstable_LegacyHidden=60131;b.unstable_Cache=60132;if("function"===typeof Symbol&&Symbol.for){var d=Symbol.for;v=d("react.element");da=d("react.portal");b.Fragment=d("react.fragment");b.StrictMode=d("react.strict_mode");b.Profiler=d("react.profiler");ma=d("react.provider");na=d("react.context");oa=d("react.forward_ref");b.Suspense=d("react.suspense");b.SuspenseList=d("react.suspense_list");pa=d("react.memo");qa=d("react.lazy");b.unstable_DebugTracingMode=
d("react.debug_trace_mode");b.unstable_Offscreen=d("react.offscreen");b.unstable_LegacyHidden=d("react.legacy_hidden");b.unstable_Cache=d("react.cache")}var V="function"===typeof Symbol&&Symbol.iterator,wa=Object.prototype.hasOwnProperty,T=Object.assign||function(a,c){if(null==a)throw new TypeError("Object.assign target cannot be null or undefined");for(var b=Object(a),d=1;d<arguments.length;d++){var e=arguments[d];if(null!=e){var f=void 0;e=Object(e);for(f in e)wa.call(e,f)&&(b[f]=e[f])}}return b},
X={isMounted:function(a){return!1},enqueueForceUpdate:function(a,c,b){},enqueueReplaceState:function(a,c,b,d){},enqueueSetState:function(a,c,b,d){}},W={};u.prototype.isReactComponent={};u.prototype.setState=function(a,c){if("object"!==typeof a&&"function"!==typeof a&&null!=a)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,a,c,"setState")};u.prototype.forceUpdate=function(a){this.updater.enqueueForceUpdate(this,
a,"forceUpdate")};Y.prototype=u.prototype;d=J.prototype=new Y;d.constructor=J;T(d,u.prototype);d.isPureReactComponent=!0;var ea=Array.isArray,ba=Object.prototype.hasOwnProperty,K={current:null},ca={key:!0,ref:!0,__self:!0,__source:!0},fa=/\/+/g,f={current:null},I={transition:0};if("object"===typeof performance&&"function"===typeof performance.now){var xa=performance;var t=function(){return xa.now()}}else{var ra=Date,ya=ra.now();t=function(){return ra.now()-ya}}var p=[],q=[],za=1,m=null,h=3,E=!1,r=
!1,y=!1,la="function"===typeof setTimeout?setTimeout:null,ha="function"===typeof clearTimeout?clearTimeout:null,sa="undefined"!==typeof setImmediate?setImmediate:null;"undefined"!==typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var G=!1,F=null,z=-1,ka=5,ja=-1,U=function(){if(null!==F){var a=t();ja=a;var c=!0;try{c=F(!0,a)}finally{c?H():(G=!1,F=null)}}else G=!1};if("function"===typeof sa)var H=
function(){sa(U)};else if("undefined"!==typeof MessageChannel){d=new MessageChannel;var Aa=d.port2;d.port1.onmessage=U;H=function(){Aa.postMessage(null)}}else H=function(){la(U,0)};d={ReactCurrentDispatcher:f,ReactCurrentOwner:K,ReactCurrentBatchConfig:I,assign:T,Scheduler:{__proto__:null,unstable_ImmediatePriority:1,unstable_UserBlockingPriority:2,unstable_NormalPriority:3,unstable_IdlePriority:5,unstable_LowPriority:4,unstable_runWithPriority:function(a,c){switch(a){case 1:case 2:case 3:case 4:case 5:break;
default:a=3}var b=h;h=a;try{return c()}finally{h=b}},unstable_next:function(a){switch(h){case 1:case 2:case 3:var c=3;break;default:c=h}var b=h;h=c;try{return a()}finally{h=b}},unstable_scheduleCallback:function(a,c,b){var d=t();"object"===typeof b&&null!==b?(b=b.delay,b="number"===typeof b&&0<b?d+b:d):b=d;switch(a){case 1:var e=-1;break;case 2:e=250;break;case 5:e=1073741823;break;case 4:e=1E4;break;default:e=5E3}e=b+e;a={id:za++,callback:c,priorityLevel:a,startTime:b,expirationTime:e,sortIndex:-1};
b>d?(a.sortIndex=b,N(q,a),null===k(p)&&a===k(q)&&(y?(ha(z),z=-1):y=!0,S(P,b-d))):(a.sortIndex=e,N(p,a),r||E||(r=!0,Q(R)));return a},unstable_cancelCallback:function(a){a.callback=null},unstable_wrapCallback:function(a){var c=h;return function(){var b=h;h=c;try{return a.apply(this,arguments)}finally{h=b}}},unstable_getCurrentPriorityLevel:function(){return h},unstable_shouldYield:ia,unstable_requestPaint:function(){},unstable_continueExecution:function(){r||E||(r=!0,Q(R))},unstable_pauseExecution:function(){},
unstable_getFirstCallbackNode:function(){return k(p)},get unstable_now(){return t},unstable_forceFrameRate:function(a){0>a||125<a?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):ka=0<a?Math.floor(1E3/a):5},unstable_Profiling:null}};b.Children={map:B,forEach:function(a,c,b){B(a,function(){c.apply(this,arguments)},b)},count:function(a){var c=0;B(a,function(){c++});return c},toArray:function(a){return B(a,function(a){return a})||
[]},only:function(a){if(!L(a))throw Error("React.Children.only expected to receive a single React element child.");return a}};b.Component=u;b.PureComponent=J;b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=d;b.cloneElement=function(a,c,b){if(null===a||void 0===a)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+a+".");var d=T({},a.props),e=a.key,f=a.ref,l=a._owner;if(null!=c){void 0!==c.ref&&(f=c.ref,l=K.current);void 0!==c.key&&(e=""+c.key);if(a.type&&
a.type.defaultProps)var h=a.type.defaultProps;for(g in c)ba.call(c,g)&&!ca.hasOwnProperty(g)&&(d[g]=void 0===c[g]&&void 0!==h?h[g]:c[g])}var g=arguments.length-2;if(1===g)d.children=b;else if(1<g){h=Array(g);for(var k=0;k<g;k++)h[k]=arguments[k+2];d.children=h}return{$$typeof:v,type:a.type,key:e,ref:f,props:d,_owner:l}};b.createContext=function(a){a={$$typeof:na,_currentValue:a,_currentValue2:a,_threadCount:0,Provider:null,Consumer:null};a.Provider={$$typeof:ma,_context:a};return a.Consumer=a};b.createElement=
Z;b.createFactory=function(a){var c=Z.bind(null,a);c.type=a;return c};b.createRef=function(){return{current:null}};b.forwardRef=function(a){return{$$typeof:oa,render:a}};b.isValidElement=L;b.lazy=function(a){return{$$typeof:qa,_payload:{_status:-1,_result:a},_init:va}};b.memo=function(a,c){return{$$typeof:pa,type:a,compare:void 0===c?null:c}};b.startTransition=function(a){var c=I.transition;I.transition=1;try{a()}finally{I.transition=c}};b.unstable_act=function(a){throw Error("act(...) is not supported in production builds of React.");
};b.unstable_createMutableSource=function(a,c){return{_getVersion:c,_source:a,_workInProgressVersionPrimary:null,_workInProgressVersionSecondary:null}};b.unstable_getCacheForType=function(a){return f.current.getCacheForType(a)};b.unstable_getCacheSignal=function(){return f.current.getCacheSignal()};b.unstable_useCacheRefresh=function(){return f.current.useCacheRefresh()};b.useCallback=function(a,c){return f.current.useCallback(a,c)};b.useContext=function(a){return f.current.useContext(a)};b.useDebugValue=
function(a,c){};b.useDeferredValue=function(a){return f.current.useDeferredValue(a)};b.useEffect=function(a,c){return f.current.useEffect(a,c)};b.useId=function(){return f.current.useId()};b.useImperativeHandle=function(a,c,b){return f.current.useImperativeHandle(a,c,b)};b.useInsertionEffect=function(a,b){return f.current.useInsertionEffect(a,b)};b.useLayoutEffect=function(a,b){return f.current.useLayoutEffect(a,b)};b.useMemo=function(a,b){return f.current.useMemo(a,b)};b.useReducer=function(a,b,
d){return f.current.useReducer(a,b,d)};b.useRef=function(a){return f.current.useRef(a)};b.useState=function(a){return f.current.useState(a)};b.useSyncExternalStore=function(a,b,d){return f.current.useSyncExternalStore(a,b,d)};b.useTransition=function(){return f.current.useTransition()};b.version="18.0.0-rc.0-experimental-51947a14b-20220113"});
})();

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc