vite polyfill comparsion

Created Diff never expires
5 removals
Words removed26
Total words3559
Words removed (%)0.73
757 lines
1 addition
Words added32
Total words3565
Words added (%)0.90
754 lines
(function polyfill() {
(function polyfill() {
const relList = document.createElement("link").relList;
const relList = document.createElement("link").relList;
if (relList && relList.supports && relList.supports("modulepreload")) {
if (relList && relList.supports && relList.supports("modulepreload")) {
return;
return;
}
}
for (const link of document.querySelectorAll('link[rel="modulepreload"]')) {
for (const link of document.querySelectorAll('link[rel="modulepreload"]')) {
processPreload(link);
processPreload(link);
}
}
new MutationObserver((mutations) => {
new MutationObserver((mutations) => {
for (const mutation of mutations) {
for (const mutation of mutations) {
if (mutation.type !== "childList") {
if (mutation.type !== "childList") {
continue;
continue;
}
}
for (const node of mutation.addedNodes) {
for (const node of mutation.addedNodes) {
if (node.tagName === "LINK" && node.rel === "modulepreload")
if (node.tagName === "LINK" && node.rel === "modulepreload")
processPreload(node);
processPreload(node);
}
}
}
}
}).observe(document, { childList: true, subtree: true });
}).observe(document, { childList: true, subtree: true });
function getFetchOpts(link) {
function getFetchOpts(link) {
const fetchOpts = {};
const fetchOpts = {};
if (link.integrity)
if (link.integrity)
fetchOpts.integrity = link.integrity;
fetchOpts.integrity = link.integrity;
if (link.referrerPolicy)
if (link.referrerPolicy)
fetchOpts.referrerPolicy = link.referrerPolicy;
fetchOpts.referrerPolicy = link.referrerPolicy;
if (link.crossOrigin === "use-credentials")
if (link.crossOrigin === "use-credentials")
fetchOpts.credentials = "include";
fetchOpts.credentials = "include";
else if (link.crossOrigin === "anonymous")
else if (link.crossOrigin === "anonymous")
fetchOpts.credentials = "omit";
fetchOpts.credentials = "omit";
else
else
fetchOpts.credentials = "same-origin";
fetchOpts.credentials = "same-origin";
return fetchOpts;
return fetchOpts;
}
}
function processPreload(link) {
function processPreload(link) {
if (link.ep)
if (link.ep)
return;
return;
link.ep = true;
link.ep = true;
const fetchOpts = getFetchOpts(link);
const fetchOpts = getFetchOpts(link);
fetch(link.href, fetchOpts);
fetch(link.href, fetchOpts);
}
}
})();
})();
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
function getDefaultExportFromCjs(x2) {
function getDefaultExportFromCjs(x2) {
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
}
}
var jsxRuntime = { exports: {} };
var jsxRuntime = { exports: {} };
var reactJsxRuntime_production_min = {};
var reactJsxRuntime_production_min = {};
var react = { exports: {} };
var react = { exports: {} };
var react_production_min = {};
var react_production_min = {};
/**
/**
* @license React
* @license React
* react.production.min.js
* react.production.min.js
*
*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Facebook, Inc. and its affiliates.
*
*
* This source code is licensed under the MIT license found in the
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* LICENSE file in the root directory of this source tree.
*/
*/
var l$1 = Symbol.for("react.element"), n$1 = Symbol.for("react.portal"), p$2 = Symbol.for("react.fragment"), q$1 = Symbol.for("react.strict_mode"), r = Symbol.for("react.profiler"), t = Symbol.for("react.provider"), u = Symbol.for("react.context"), v$1 = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), x = Symbol.for("react.memo"), y = Symbol.for("react.lazy"), z$1 = Symbol.iterator;
var l$1 = Symbol.for("react.element"), n$1 = Symbol.for("react.portal"), p$2 = Symbol.for("react.fragment"), q$1 = Symbol.for("react.strict_mode"), r = Symbol.for("react.profiler"), t = Symbol.for("react.provider"), u = Symbol.for("react.context"), v$1 = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), x = Symbol.for("react.memo"), y = Symbol.for("react.lazy"), z$1 = Symbol.iterator;
function A$1(a) {
function A$1(a) {
if (null === a || "object" !== typeof a)
if (null === a || "object" !== typeof a)
return null;
return null;
a = z$1 && a[z$1] || a["@@iterator"];
a = z$1 && a[z$1] || a["@@iterator"];
return "function" === typeof a ? a : null;
return "function" === typeof a ? a : null;
}
}
var B$1 = { isMounted: function() {
var B$1 = { isMounted: function() {
return false;
return false;
}, enqueueForceUpdate: function() {
}, enqueueForceUpdate: function() {
}, enqueueReplaceState: function() {
}, enqueueReplaceState: function() {
}, enqueueSetState: function() {
}, enqueueSetState: function() {
} }, C$1 = Object.assign, D$1 = {};
} }, C$1 = Object.assign, D$1 = {};
function E$1(a, b, e) {
function E$1(a, b, e) {
this.props = a;
this.props = a;
this.context = b;
this.context = b;
this.refs = D$1;
this.refs = D$1;
this.updater = e || B$1;
this.updater = e || B$1;
}
}
E$1.prototype.isReactComponent = {};
E$1.prototype.isReactComponent = {};
E$1.prototype.setState = function(a, b) {
E$1.prototype.setState = function(a, b) {
if ("object" !== typeof a && "function" !== typeof a && null != a)
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.");
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");
this.updater.enqueueSetState(this, a, b, "setState");
};
};
E$1.prototype.forceUpdate = function(a) {
E$1.prototype.forceUpdate = function(a) {
this.updater.enqueueForceUpdate(this, a, "forceUpdate");
this.updater.enqueueForceUpdate(this, a, "forceUpdate");
};
};
function F() {
function F() {
}
}
F.prototype = E$1.prototype;
F.prototype = E$1.prototype;
function G$1(a, b, e) {
function G$1(a, b, e) {
this.props = a;
this.props = a;
this.context = b;
this.context = b;
this.refs = D$1;
this.refs = D$1;
this.updater = e || B$1;
this.updater = e || B$1;
}
}
var H$1 = G$1.prototype = new F();
var H$1 = G$1.prototype = new F();
H$1.constructor = G$1;
H$1.constructor = G$1;
C$1(H$1, E$1.prototype);
C$1(H$1, E$1.prototype);
H$1.isPureReactComponent = true;
H$1.isPureReactComponent = true;
var I$1 = Array.isArray, J = Object.prototype.hasOwnProperty, K$1 = { current: null }, L$1 = { key: true, ref: true, __self: true, __source: true };
var I$1 = Array.isArray, J = Object.prototype.hasOwnProperty, K$1 = { current: null }, L$1 = { key: true, ref: true, __self: true, __source: true };
function M$1(a, b, e) {
function M$1(a, b, e) {
var d, c = {}, k2 = null, h = null;
var d, c = {}, k2 = null, h = null;
if (null != b)
if (null != b)
for (d in void 0 !== b.ref && (h = b.ref), void 0 !== b.key && (k2 = "" + b.key), b)
for (d in void 0 !== b.ref && (h = b.ref), void 0 !== b.key && (k2 = "" + b.key), b)
J.call(b, d) && !L$1.hasOwnProperty(d) && (c[d] = b[d]);
J.call(b, d) && !L$1.hasOwnProperty(d) && (c[d] = b[d]);
var g = arguments.length - 2;
var g = arguments.length - 2;
if (1 === g)
if (1 === g)
c.children = e;
c.children = e;
else if (1 < g) {
else if (1 < g) {
for (var f2 = Array(g), m2 = 0; m2 < g; m2++)
for (var f2 = Array(g), m2 = 0; m2 < g; m2++)
f2[m2] = arguments[m2 + 2];
f2[m2] = arguments[m2 + 2];
c.children = f2;
c.children = f2;
}
}
if (a && a.defaultProps)
if (a && a.defaultProps)
for (d in g = a.defaultProps, g)
for (d in g = a.defaultProps, g)
void 0 === c[d] && (c[d] = g[d]);
void 0 === c[d] && (c[d] = g[d]);
return { $$typeof: l$1, type: a, key: k2, ref: h, props: c, _owner: K$1.current };
return { $$typeof: l$1, type: a, key: k2, ref: h, props: c, _owner: K$1.current };
}
}
function N$1(a, b) {
function N$1(a, b) {
return { $$typeof: l$1, type: a.type, key: b, ref: a.ref, props: a.props, _owner: a._owner };
return { $$typeof: l$1, type: a.type, key: b, ref: a.ref, props: a.props, _owner: a._owner };
}
}
function O$1(a) {
function O$1(a) {
return "object" === typeof a && null !== a && a.$$typeof === l$1;
return "object" === typeof a && null !== a && a.$$typeof === l$1;
}
}
function escape(a) {
function escape(a) {
var b = { "=": "=0", ":": "=2" };
var b = { "=": "=0", ":": "=2" };
return "$" + a.replace(/[=:]/g, function(a2) {
return "$" + a.replace(/[=:]/g, function(a2) {
return b[a2];
return b[a2];
});
});
}
}
var P$1 = /\/+/g;
var P$1 = /\/+/g;
function Q$1(a, b) {
function Q$1(a, b) {
return "object" === typeof a && null !== a && null != a.key ? escape("" + a.key) : b.toString(36);
return "object" === typeof a && null !== a && null != a.key ? escape("" + a.key) : b.toString(36);
}
}
function R$1(a, b, e, d, c) {
function R$1(a, b, e, d, c) {
var k2 = typeof a;
var k2 = typeof a;
if ("undefined" === k2 || "boolean" === k2)
if ("undefined" === k2 || "boolean" === k2)
a = null;
a = null;
var h = false;
var h = false;
if (null === a)
if (null === a)
h = true;
h = true;
else
else
switch (k2) {
switch (k2) {
case "string":
case "string":
case "number":
case "number":
h = true;
h = true;
break;
break;
case "object":
case "object":
switch (a.$$typeof) {
switch (a.$$typeof) {
case l$1:
case l$1:
case n$1:
case n$1:
h = true;
h = true;
}
}
}
}
if (h)
if (h)
return h = a, c = c(h), a = "" === d ? "." + Q$1(h, 0) : d, I$1(c) ? (e = "", null != a && (e = a.replace(P$1, "$&/") + "/"), R$1(c, b, e, "", function(a2) {
return h = a, c = c(h), a = "" === d ? "." + Q$1(h, 0) : d, I$1(c) ? (e = "", null != a && (e = a.replace(P$1, "$&/") + "/"), R$1(c, b, e, "", function(a2) {
return a2;
return a2;
})) : null != c && (O$1(c) && (c = N$1(c, e + (!c.key || h && h.key === c.key ? "" : ("" + c.key).replace(P$1, "$&/") + "/") + a)), b.push(c)), 1;
})) : null != c && (O$1(c) && (c = N$1(c, e + (!c.key || h && h.key === c.key ? "" : ("" + c.key).replace(P$1, "$&/") + "/") + a)), b.push(c)), 1;
h = 0;
h = 0;
d = "" === d ? "." : d + ":";
d = "" === d ? "." : d + ":";
if (I$1(a))
if (I$1(a))
for (var g = 0; g < a.length; g++) {
for (var g = 0; g < a.length; g++) {
k2 = a[g];
k2 = a[g];
var f2 = d + Q$1(k2, g);
var f2 = d + Q$1(k2, g);
h += R$1(k2, b, e, f2, c);
h += R$1(k2, b, e, f2, c);
}
}
else if (f2 = A$1(a), "function" === typeof f2)
else if (f2 = A$1(a), "function" === typeof f2)
for (a = f2.call(a), g = 0; !(k2 = a.next()).done; )
for (a = f2.call(a), g = 0; !(k2 = a.next()).done; )
k2 = k2.value, f2 = d + Q$1(k2, g++), h += R$1(k2, b, e, f2, c);
k2 = k2.value, f2 = d + Q$1(k2, g++), h += R$1(k2, b, e, f2, c);
else if ("object" === k2)
else if ("object" === k2)
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.");
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;
return h;
}
}
function S$1(a, b, e) {
function S$1(a, b, e) {
if (null == a)
if (null == a)
return a;
return a;
var d = [], c = 0;
var d = [], c = 0;
R$1(a, d, "", "", function(a2) {
R$1(a, d, "", "", function(a2) {
return b.call(e, a2, c++);
return b.call(e, a2, c++);
});
});
return d;
return d;
}
}
function T$1(a) {
function T$1(a) {
if (-1 === a._status) {
if (-1 === a._status) {
var b = a._result;
var b = a._result;
b = b();
b = b();
b.then(function(b2) {
b.then(function(b2) {
if (0 === a._status || -1 === a._status)
if (0 === a._status || -1 === a._status)
a._status = 1, a._result = b2;
a._status = 1, a._result = b2;
}, function(b2) {
}, function(b2) {
if (0 === a._status || -1 === a._status)
if (0 === a._status || -1 === a._status)
a._status = 2, a._result = b2;
a._status = 2, a._result = b2;
});
});
-1 === a._status && (a._status = 0, a._result = b);
-1 === a._status && (a._status = 0, a._result = b);
}
}
if (1 === a._status)
if (1 === a._status)
return a._result.default;
return a._result.default;
throw a._result;
throw a._result;
}
}
var U$1 = { current: null }, V$1 = { transition: null }, W$1 = { ReactCurrentDispatcher: U$1, ReactCurrentBatchConfig: V$1, ReactCurrentOwner: K$1 };
var U$1 = { current: null }, V$1 = { transition: null }, W$1 = { ReactCurrentDispatcher: U$1, ReactCurrentBatchConfig: V$1, ReactCurrentOwner: K$1 };
react_production_min.Children = { map: S$1, forEach: function(a, b, e) {
react_production_min.Children = { map: S$1, forEach: function(a, b, e) {
S$1(a, function() {
S$1(a, function() {
b.apply(this, arguments);
b.apply(this, arguments);
}, e);
}, e);
}, count: function(a) {
}, count: function(a) {
var b = 0;
var b = 0;
S$1(a, function() {
S$1(a, function() {
b++;
b++;
});
});
return b;
return b;
}, toArray: function(a) {
}, toArray: function(a) {
return S$1(a, function(a2) {
return S$1(a, function(a2) {
return a2;
return a2;
}) || [];
}) || [];
}, only: function(a) {
}, only: function(a) {
if (!O$1(a))
if (!O$1(a))
throw Error("React.Children.only expected to receive a single React element child.");
throw Error("React.Children.only expected to receive a single React element child.");
return a;
return a;
} };
} };
react_production_min.Component = E$1;
react_production_min.Component = E$1;
react_production_min.Fragment = p$2;
react_production_min.Fragment = p$2;
react_production_min.Profiler = r;
react_production_min.Profiler = r;
react_production_min.PureComponent = G$1;
react_production_min.PureComponent = G$1;
react_production_min.StrictMode = q$1;
react_production_min.StrictMode = q$1;
react_production_min.Suspense = w;
react_production_min.Suspense = w;
react_production_min.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = W$1;
react_production_min.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = W$1;
react_production_min.cloneElement = function(a, b, e) {
react_production_min.cloneElement = function(a, b, e) {
if (null === a || void 0 === a)
if (null === a || void 0 === a)
throw Error("React.cloneElement(...): The argument must be a React element, but you passed " + a + ".");
throw Error("React.cloneElement(...): The argument must be a React element, but you passed " + a + ".");
var d = C$1({}, a.props), c = a.key, k2 = a.ref, h = a._owner;
var d = C$1({}, a.props), c = a.key, k2 = a.ref, h = a._owner;
if (null != b) {
if (null != b) {
void 0 !== b.ref && (k2 = b.ref, h = K$1.current);
void 0 !== b.ref && (k2 = b.ref, h = K$1.current);
void 0 !== b.key && (c = "" + b.key);
void 0 !== b.key && (c = "" + b.key);
if (a.type && a.type.defaultProps)
if (a.type && a.type.defaultProps)
var g = a.type.defaultProps;
var g = a.type.defaultProps;
for (f2 in b)
for (f2 in b)
J.call(b, f2) && !L$1.hasOwnProperty(f2) && (d[f2] = void 0 === b[f2] && void 0 !== g ? g[f2] : b[f2]);
J.call(b, f2) && !L$1.hasOwnProperty(f2) && (d[f2] = void 0 === b[f2] && void 0 !== g ? g[f2] : b[f2]);
}
}
var f2 = arguments.length - 2;
var f2 = arguments.length - 2;
if (1 === f2)
if (1 === f2)
d.children = e;
d.children = e;
else if (1 < f2) {
else if (1 < f2) {
g = Array(f2);
g = Array(f2);
for (var m2 = 0; m2 < f2; m2++)
for (var m2 = 0; m2 < f2; m2++)
g[m2] = arguments[m2 + 2];
g[m2] = arguments[m2 + 2];
d.children = g;
d.children = g;
}
}
return { $$typeof: l$1, type: a.type, key: c, ref: k2, props: d, _owner: h };
return { $$typeof: l$1, type: a.type, key: c, ref: k2, props: d, _owner: h };
};
};
react_production_min.createContext = function(a) {
react_production_min.createContext = function(a) {
a = { $$typeof: u, _currentValue: a, _currentValue2: a, _threadCount: 0, Provider: null, Consumer: null, _defaultValue: null, _globalName: null };
a = { $$typeof: u, _currentValue: a, _currentValue2: a, _threadCount: 0, Provider: null, Consumer: null, _defaultValue: null, _globalName: null };
a.Provider = { $$typeof: t, _context: a };
a.Provider = { $$typeof: t, _context: a };
return a.Consumer = a;
return a.Consumer = a;
};
};
react_production_min.createElement = M$1;
react_production_min.createElement = M$1;
react_production_min.createFactory = function(a) {
react_production_min.createFactory = function(a) {
var b = M$1.bind(null, a);
var b = M$1.bind(null, a);
b.type = a;
b.type = a;
return b;
return b;
};
};
react_production_min.createRef = function() {
react_production_min.createRef = function() {
return { current: null };
return { current: null };
};
};
react_production_min.forwardRef = function(a) {
react_production_min.forwardRef = function(a) {
return { $$typeof: v$1, render: a };
return { $$typeof: v$1, render: a };
};
};
react_production_min.isValidElement = O$1;
react_production_min.isValidElement = O$1;
react_production_min.lazy = function(a) {
react_production_min.lazy = function(a) {
return { $$typeof: y, _payload: { _status: -1, _result: a }, _init: T$1 };
return { $$typeof: y, _payload: { _status: -1, _result: a }, _init: T$1 };
};
};
react_production_min.memo = function(a, b) {
react_production_min.memo = function(a, b) {
return { $$typeof: x, type: a, compare: void 0 === b ? null : b };
return { $$typeof: x, type: a, compare: void 0 === b ? null : b };
};
};
react_production_min.startTransition = function(a) {
react_production_min.startTransition = function(a) {
var b = V$1.transition;
var b = V$1.transition;
V$1.transition = {};
V$1.transition = {};
try {
try {
a();
a();
} finally {
} finally {
V$1.transition = b;
V$1.transition = b;
}
}
};
};
react_production_min.unstable_act = function() {
react_production_min.unstable_act = function() {
throw Error("act(...) is not supported in production builds of React.");
throw Error("act(...) is not supported in production builds of React.");
};
};
react_production_min.useCallback = function(a, b) {
react_production_min.useCallback = function(a, b) {
return U$1.current.useCallback(a, b);
return U$1.current.useCallback(a, b);
};
};
react_production_min.useContext = function(a) {
react_production_min.useContext = function(a) {
return U$1.current.useContext(a);
return U$1.current.useContext(a);
};
};
react_production_min.useDebugValue = function() {
react_production_min.useDebugValue = function() {
};
};
react_production_min.useDeferredValue = function(a) {
react_production_min.useDeferredValue = function(a) {
return U$1.current.useDeferredValue(a);
return U$1.current.useDeferredValue(a);
};
};
react_production_min.useEffect = function(a, b) {
react_production_min.useEffect = function(a, b) {
return U$1.current.useEffect(a, b);
return U$1.current.useEffect(a, b);
};
};
react_production_min.useId = function() {
react_production_min.useId = function() {
return U$1.current.useId();
return U$1.current.useId();
};
};
react_production_min.useImperativeHandle = function(a, b, e) {
react_production_min.useImperativeHandle = function(a, b, e) {
return U$1.current.useImperativeHandle(a, b, e);
return U$1.current.useImperativeHandle(a, b, e);
};
};
react_production_min.useInsertionEffect = function(a, b) {
react_production_min.useInsertionEffect = function(a, b) {
return U$1.current.useInsertionEffect(a, b);
return U$1.current.useInsertionEffect(a, b);
};
};
react_production_min.useLayoutEffect = function(a, b) {
react_production_min.useLayoutEffect = function(a, b) {
return U$1.current.useLayoutEffect(a, b);
return U$1.current.useLayoutEffect(a, b);
};
};
react_production_min.useMemo = function(a, b) {
react_production_min.useMemo = function(a, b) {
return U$1.current.useMemo(a, b);
return U$1.current.useMemo(a, b);
};
};
react_production_min.useReducer = function(a, b, e) {
react_production_min.useReducer = function(a, b, e) {
return U$1.current.useReducer(a, b, e);
return U$1.current.useReducer(a, b, e);
};
};
react_production_min.useRef = function(a) {
react_production_min.useRef = function(a) {
return U$1.current.useRef(a);
return U$1.current.useRef(a);
};
};
react_production_min.useState = function(a) {
react_production_min.useState = function(a) {
return U$1.current.useState(a);
return U$1.current.useState(a);
};
};
react_production_min.useSyncExternalStore = function(a, b, e) {
react_production_min.useSyncExternalStore = function(a, b, e) {
return U$1.current.useSyncExternalStore(a, b, e);
return U$1.current.useSyncExternalStore(a, b, e);
};
};
react_production_min.useTransition = function() {
react_production_min.useTransition = function() {
return U$1.current.useTransition();
return U$1.current.useTransition();
};
};
react_production_min.version = "18.2.0";
react_production_min.version = "18.2.0";
{
{
react.exports = react_production_min;
react.exports = react_production_min;
}
}
var reactExports = react.exports;
var reactExports = react.exports;
const React = /* @__PURE__ */ getDefaultExportFromCjs(reactExports);
const React = /* @__PURE__ */ getDefaultExportFromCjs(reactExports);
/**
/**
* @license React
* @license React
* react-jsx-runtime.production.min.js
* react-jsx-runtime.production.min.js
*
*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Facebook, Inc. and its affiliates.
*
*
* This source code is licensed under the MIT license found in the
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* LICENSE file in the root directory of this source tree.
*/
*/
var f = reactExports, k = Symbol.for("react.element"), l = Symbol.for("react.fragment"), m$1 = Object.prototype.hasOwnProperty, n = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p$1 = { key: true, ref: true, __self: true, __source: true };
var f = reactExports, k = Symbol.for("react.element"), l = Symbol.for("react.fragment"), m$1 = Object.prototype.hasOwnProperty, n = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p$1 = { key: true, ref: true, __self: true, __source: true };
function q(c, a, g) {
function q(c, a, g) {
var b, d = {}, e = null, h = null;
var b, d = {}, e = null, h = null;
void 0 !== g && (e = "" + g);
void 0 !== g && (e = "" + g);
void 0 !== a.key && (e = "" + a.key);
void 0 !== a.key && (e = "" + a.key);
void 0 !== a.ref && (h = a.ref);
void 0 !== a.ref && (h = a.ref);
for (b in a)
for (b in a)
m$1.call(a, b) && !p$1.hasOwnProperty(b) && (d[b] = a[b]);
m$1.call(a, b) && !p$1.hasOwnProperty(b) && (d[b] = a[b]);
if (c && c.defaultProps)
if (c && c.defaultProps)
for (b in a = c.defaultProps, a)
for (b in a = c.defaultProps, a)
void 0 === d[b] && (d[b] = a[b]);
void 0 === d[b] && (d[b] = a[b]);
return { $$typeof: k, type: c, key: e, ref: h, props: d, _owner: n.current };
return { $$typeof: k, type: c, key: e, ref: h, props: d, _owner: n.current };
}
}
reactJsxRuntime_production_min.Fragment = l;
reactJsxRuntime_production_min.Fragment = l;
reactJsxRuntime_production_min.jsx = q;
reactJsxRuntime_production_min.jsx = q;
reactJsxRuntime_production_min.jsxs = q;
reactJsxRuntime_production_min.jsxs = q;
{
{
jsxRuntime.exports = reactJsxRuntime_production_min;
jsxRuntime.exports = reactJsxRuntime_production_min;
}
}
var jsxRuntimeExports = jsxRuntime.exports;
var jsxRuntimeExports = jsxRuntime.exports;
var client = {};
var client = {};
var reactDom = { exports: {} };
var reactDom = { exports: {} };
var reactDom_production_min = {};
var reactDom_production_min = {};
var scheduler = { exports: {} };
var scheduler = { exports: {} };
var scheduler_production_min = {};
var scheduler_production_min = {};
/**
/**
* @license React
* @license React
* scheduler.production.min.js
* scheduler.production.min.js
*
*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Facebook, Inc. and its affiliates.
*
*
* This source code is licensed under the MIT license found in the
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* LICENSE file in the root directory of this source tree.
*/
*/
(function(exports) {
(function(exports) {
function f2(a, b) {
function f2(a, b) {
var c = a.length;
var c = a.length;
a.push(b);
a.push(b);
a:
a:
for (; 0 < c; ) {
for (; 0 < c; ) {
var d = c - 1 >>> 1, e = a[d];
var d = c - 1 >>> 1, e = a[d];
if (0 < g(e, b))
if (0 < g(e, b))
a[d] = b, a[c] = e, c = d;
a[d] = b, a[c] = e, c = d;
else
else
break a;
break a;
}
}
}
}
function h(a) {
function h(a) {
return 0 === a.length ? null : a[0];
return 0 === a.length ? null : a[0];
}
}
function k2(a) {
function k2(a) {
if (0 === a.length)
if (0 === a.length)
return null;
return null;
var b = a[0], c = a.pop();
var b = a[0], c = a.pop();
if (c !== b) {
if (c !== b) {
a[0] = c;
a[0] = c;
a:
a:
for (var d = 0, e = a.length, w2 = e >>> 1; d < w2; ) {
for (var d = 0, e = a.length, w2 = e >>> 1; d < w2; ) {
var m2 = 2 * (d + 1) - 1, C2 = a[m2], n2 = m2 + 1, x2 = a[n2];
var m2 = 2 * (d + 1) - 1, C2 = a[m2], n2 = m2 + 1, x2 = a[n2];
if (0 > g(C2, c))
if (0 > g(C2, c))
n2 < e && 0 > g(x2, C2) ? (a[d] = x2, a[n2] = c, d = n2) : (a[d] = C2, a[m2] = c, d = m2);
n2 < e && 0 > g(x2, C2) ? (a[d] = x2, a[n2] = c, d = n2) : (a[d] = C2, a[m2] = c, d = m2);
else if (n2 < e && 0 > g(x2, c))
else if (n2 < e && 0 > g(x2, c))
a[d] = x2, a[n2] = c, d = n2;
a[d] = x2, a[n2] = c, d = n2;
else
else
break a;
break a;
}
}
}
}
return b;
return b;
}
}
function g(a, b) {
function g(a, b) {
var c = a.sortIndex - b.sortIndex;
var c = a.sortIndex - b.sortIndex;
return 0 !== c ? c : a.id - b.id;
return 0 !== c ? c : a.id - b.id;
}
}
if ("object" === typeof performance && "function" === typeof performance.now) {
if ("object" === typeof performance && "function" === typeof performance.now) {
var l2 = performance;
var l2 = performance;
exports.unstable_now = function() {
exports.unstable_now = function() {
return l2.now();
return l2.now();
};
};
} else {
} else {
var p2 = Date, q2 = p2.now();
var p2 = Date, q2 = p2.now();
exports.unstable_now = function() {
exports.unstable_now = function() {
return p2.now() - q2;
return p2.now() - q2;
};
};
}
}
var r2 = [], t2 = [], u2 = 1, v2 = null, y2 = 3, z2 = false, A2 = false, B2 = false, D2 = "function" === typeof setTimeout ? setTimeout : null, E2 = "function" === typeof clearTimeout ? clearTimeout : null, F2 = "undefined" !== typeof setImmediate ? setImmediate : null;
var r2 = [], t2 = [], u2 = 1, v2 = null, y2 = 3, z2 = false, A2 = false, B2 = false, D2 = "function" === typeof setTimeout ? setTimeout : null, E2 = "function" === typeof clearTimeout ? clearTimeout : null, F2 = "undefined" !== typeof setImmediate ? setImmediate : null;
"undefined" !== typeof navigator && void 0 !== navigator.scheduling && void 0 !== navigator.scheduling.isInputPending && navigator.scheduling.isInputPending.bind(navigator.scheduling);
"undefined" !== typeof navigator && void 0 !== navigator.scheduling && void 0 !== navigator.scheduling.isInputPending && navigator.scheduling.isInputPending.bind(navigator.scheduling);
function G2(a) {
function G2(a) {
for (var b = h(t2); null !== b; ) {
for (var b = h(t2); null !== b; ) {
if (null === b.callback)
if (null === b.callback)
k2(t2);
k2(t2);
else if (b.startTime <= a)
else if (b.startTime <= a)
k2(t2), b.sortIndex = b.expirationTime, f2(r2, b);
k2(t2), b.sortIndex = b.expirationTime, f2(r2, b);
else
else
break;
break;
b = h(t2);
b = h(t2);
}
}
}
}
function H2(a) {
function H2(a) {
B2 = false;
B2 = false;
G2(a);
G2(a);
if (!A2)
if (!A2)
if (null !== h(r2))
if (null !== h(r2))
A2 = true, I2(J2);
A2 = true, I2(J2);
else {
else {
var b = h(t2);
var b = h(t2);
null !== b && K2(H2, b.startTime - a);
null !== b && K2(H2, b.startTime - a);
}
}
}
}
function J2(a, b) {
function J2(a, b) {
A2 = false;
A2 = false;
B2 && (B2 = false, E2(L2), L2 = -1);
B2 && (B2 = false, E2(L2), L2 = -1);
z2 = true;
z2 = true;
var c = y2;
var c = y2;
try {
try {
G2(b);
G2(b);
for (v2 = h(r2); null !== v2 && (!(v2.expirationTime > b) || a && !M2()); ) {
for (v2 = h(r2); null !== v2 && (!(v2.expirationTime > b) || a && !M2()); ) {
var d = v2.callback;
var d = v2.callback;
if ("function" === typeof d) {
if ("function" === typeof d) {
v2.callback = null;
v2.callback = null;
y2 = v2.priorityLevel;
y2 = v2.priorityLevel;
var e = d(v2.expirationTime <= b);
var e = d(v2.expirationTime <= b);
b = exports.unstable_now();
b = exports.unstable_now();
"function" === typeof e ? v2.callback = e : v2 === h(r2) && k2(r2);
"function" === typeof e ? v2.callback = e : v2 === h(r2) && k2(r2);
G2(b);
G2(b);
} else
} else
k2(r2);
k2(r2);
v2 = h(r2);
v2 = h(r2);
}
}
if (null !== v2)
if (null !== v2)
var w2 = true;
var w2 = true;
else {
else {
var m2 = h(t2);
var m2 = h(t2);
null !== m2 && K2(H2, m2.startTime - b);
null !== m2 && K2(H2, m2.startTime - b);
w2 = false;
w2 = false;
}
}
return w2;
return w2;
} finally {
} finally {
v2 = null, y2 = c, z2 = false;
v2 = null, y2 = c, z2 = false;
}
}
}
}
var N2 = false, O2 = null, L2 = -1, P2 = 5, Q2 = -1;
var N2 = false, O2 = null, L2 = -1, P2 = 5, Q2 = -1;
function M2() {
function M2() {
return exports.unstable_now() - Q2 < P2 ? false : true;
return exports.unstable_now() - Q2 < P2 ? false : true;
}
}
function R2() {
function R2() {
if (null !== O2) {
if (null !== O2) {
var a = exports.unstable_now();
var a = exports.unstable_now();
Q2 = a;
Q2 = a;
var b = true;
var b = true;
try {
try {
b = O2(true, a);
b = O2(true, a);
} finally {
} finally {
b ? S2() : (N2 = false, O2 = null);
b ? S2() : (N2 = false, O2 = null);
}
}
} else
} else
N2 = false;
N2 = false;
}
}
var S2;
var S2;
if ("function" === typeof F2)
if ("function" === typeof F2)
S2 = function() {
S2 = function() {
F2(R2);
F2(R2);
};
};
else if ("undefined" !== typeof MessageChannel) {
else if ("undefined" !== typeof MessageChannel) {
var T2 = new MessageChannel(), U2 = T2.port2;
var T2 = new MessageChannel(), U2 = T2.port2;
T2.port1.onmessage = R2;
T2.port1.onmessage = R2;
S2 = function() {
S2 = function() {
U2.postMessage(null);
U2.postMessage(null);
};
};
} else
} else
S2 = function() {
S2 = function() {
D2(R2, 0);
D2(R2, 0);
};
};
function I2(a) {
function I2(a) {
O2 = a;
O2 = a;
N2 || (N2 = true, S2());
N2 || (N2 = true, S2());
}
}
function K2(a, b) {
function K2(a, b) {
L2 = D2(function() {
L2 = D2(function() {
a(exports.unstable_now());
a(exports.unstable_now());
}, b);
}, b);
}
}
exports.unstable_IdlePriority = 5;
exports.unstable_IdlePriority = 5;
exports.unstable_ImmediatePriority = 1;
exports.unstable_ImmediatePriority = 1;
exports.unstable_LowPriority = 4;
exports.unstable_LowPriority = 4;
exports.unstable_NormalPriority = 3;
exports.unstable_NormalPriority = 3;
exports.unstable_Profiling = null;
exports.unstable_Profiling = null;
exports.unstable_UserBlockingPriority = 2;
exports.unstable_UserBlockingPriority = 2;
exports.unstable_cancelCallback = function(a) {
exports.unstable_cancelCallback = function(a) {
a.callback = null;
a.callback = null;
};
};
exports.unstable_continueExecution = function() {
exports.unstable_continueExecution = function() {
A2 || z2 || (A2 = true, I2(J2));
A2 || z2 || (A2 = true, I2(J2));
};
};
exports.unstable_forceFrameRate = function(a) {
exports.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") : P2 = 0 < a ? Math.floor(1e3 / a) : 5;
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") : P2 = 0 < a ? Math.floor(1e3 / a) : 5;
};
};
exports.unstable_getCurrentPriorityLevel = function() {
exports.unstable_getCurrentPriorityLevel = function() {
return y2;
return y2;
};
};
exports.unstable_getFirstCallbackNode = function() {
exports.unstable_getFirstCallbackNode = function() {
return h(r2);
return h(r2);
};
};
exports.unstable_next = function(a) {
exports.unstable_next = function(a) {
switch (y2) {
switch (y2) {
case 1:
case 1:
case 2:
case 2:
case 3:
case 3:
var b = 3;
var b = 3;
break;
break;
default:
default:
b = y2;
b = y2;
}
}
var c = y2;
var c = y2;
y2 = b;
y2 = b;
try {
try {
return a();
return a();
} finally {
} finally {
y2 = c;
y2 = c;
}
}
};
};
exports.unstable_pauseExecution = function() {
exports.unstable_pauseExecution = function() {
};
};
exports.unstable_requestPaint = function() {
exports.unstable_requestPaint = function() {
};
};
exports.unstable_runWithPriority = function(a, b) {
exports.unstable_runWithPriority = function(a, b) {
switch (a) {
switch (a) {
case 1:
case 1:
case 2:
case 2:
case 3:
case 3:
case 4:
case 4:
case 5:
case 5:
break;
break;
default:
default:
a = 3;
a = 3;
}
}
var c = y2;
var c = y2;
y2 = a;
y2 = a;
try {
try {
return b();
return b();
} finally {
} finally {
y2 = c;
y2 = c;
}
}
};
};
exports.unstable_scheduleCallback = function(a, b, c) {
exports.unstable_scheduleCallback = function(a, b, c) {
var d = exports.unstable_now();
var d = exports.unstable_now();
"object" === typeof c && null !== c ? (c = c.delay, c = "number" === typeof c && 0 < c ? d + c : d) : c = d;
"object" === typeof c && null !== c ? (c = c.delay, c = "number" === typeof c && 0 < c ? d + c : d) : c = d;
switch (a) {
switch (a) {
case 1:
case 1:
var e = -1;
var e = -1;
break;
break;
case 2:
case 2:
e = 250;
e = 250;
break;
break;
case 5:
case 5:
e = 1073741823;
e = 1073741823;
break;
break;
case 4:
case 4:
e = 1e4;
e = 1e4;
break;
break;
default:
default:
e = 5e3;
e = 5e3;
}
}
e = c + e;
e = c + e;
a = { id: u2++, callback: b, priorityLevel: a, startTime: c, expirationTime: e, sortIndex: -1 };
a = { id: u2++, callback: b, priorityLevel: a, startTime: c, expirationTime: e, sortIndex: -1 };
c > d ? (a.sortIndex = c, f2(t2, a), null === h(r2) && a === h(t2) && (B2 ? (E2(L2), L2 = -1) : B2 = true, K2(H2, c - d))) : (a.sortIndex = e, f2(r2, a), A2 || z2 || (A2 = true, I2(J2)));
c > d ? (a.sortIndex = c, f2(t2, a), null === h(r2) && a === h(t2) && (B2 ? (E2(L2), L2 = -1) : B2 = true, K2(H2, c - d))) : (a.sortIndex = e, f2(r2, a), A2 || z2 || (A2 = true, I2(J2)));
return a;
return a;
};
};
exports.unstable_shouldYield = M2;
exports.unstable_shouldYield = M2;
exports.unstable_wrapCallback = function(a) {
exports.unstable_wrapCallback = function(a) {
var b = y2;
var b = y2;
return function() {
return function() {
var c = y2;
var c = y2;
y2 = b;
y2 = b;
try {
try {
return a.apply(this, arguments);
return a.apply(this, arguments);
} finally {
} finally {
y2 = c;
y2 = c;
}
}
};
};
};
};
})(scheduler_production_min);
})(scheduler_production_min);
{
{
scheduler.exports = scheduler_production_min;
scheduler.exports = scheduler_production_min;
}
}
var schedulerExports = scheduler.exports;
var schedulerExports = scheduler.exports;
/**
/**
* @license React
* @license React
* react-dom.production.min.js
* react-dom.production.min.js
*
*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Facebook, Inc. and its affiliates.
*
*
* This source code is licensed under the MIT license found in the
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* LICENSE file in the root directory of this source tree.
*/
*/
var aa = reactExports, ca = schedulerExports;
var aa = reactExports, ca = schedulerExports;
function p(a) {
function p(a) {
for (var b = "https://reactjs.org/docs/error-decoder.html?invariant=" + a, c = 1; c < arguments.length; c++)
for (var b = "https://reactjs.org/docs/error-decoder.html?invariant=" + a, c = 1; c < arguments.length; c++)
b += "&args[]=" + encodeURIComponent(arguments[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.";
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 da = /* @__PURE__ */ new Set(), ea = {};
var da = /* @__PURE__ */ new Set(), ea = {};
function fa(a, b) {
function fa(a, b) {
ha(a, b);
ha(a, b);
ha(a + "Capture", b);
ha(a + "Capture", b);
}
}
function ha(a, b) {
function ha(a, b) {
ea[a] = b;
ea[a] = b;
for (a = 0; a < b.length; a++)
for (a = 0; a < b.length; a++)
da.add(b[a]);
da.add(b[a]);
}
}
var ia = !("undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement), ja = Object.prototype.hasOwnProperty, ka = /^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/, la = {}, ma = {};
var ia = !("undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement), ja = Object.prototype.hasOwnProperty, ka = /^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/, la = {}, ma = {};
function oa(a) {
function oa(a) {
if (ja.call(ma, a))
if (ja.call(ma, a))
return true;
return true;
if (ja.call(la, a))
if (ja.call(la, a))
return false;
return false;
if (ka.test(a))
if (ka.test(a))
return ma[a] = true;
return ma[a] = true;
la[a] = true;
la[a] = true;
return false;
return false;
}
}
function pa(a, b, c, d) {
function pa(a, b, c, d) {
if (null !== c && 0 === c.type)
if (null !== c && 0 === c.type)
return false;
return false;
switch (typeof b) {
switch (typeof b) {
case "function":
case "function":
case "symbol":
case "symbol":
return true;
return true;
case "boolean":
case "boolean":
if (d)
if (d)
return false;
return false;
if (null !== c)
if (null !== c)
return !c.acceptsBooleans;
return !c.acceptsBooleans;
a = a.toLowerCase().slice(0, 5);
a = a.toLowerCase().slice(0, 5);
return "data-" !== a && "aria-" !== a;
return "data-" !== a && "aria-" !== a;
default:
default:
return false;
return false;
}
}
}
}
function qa(a, b, c, d) {
function qa(a, b, c, d) {
if (null === b || "undefined" === typeof b || pa(a, b, c, d))
if (null === b || "undefined" === typeof b || pa(a, b, c, d))
return true;
return true;
if (d)
if (d)
return false;
return false;
if (null !== c)
if (null !== c)
switch (c.type) {
switch (c.type) {
case 3:
case 3:
return !b;
return !b;
case 4:
case 4:
return false === b;
return false === b;
case 5:
case 5:
return isNaN(b);
return isNaN(b);
case 6:
case 6:
return isNaN(b) || 1 > b;
return isNaN(b) || 1 > b;
}
}
return false;
return false;
}
}
function v(a, b, c, d, e, f2, g) {
function v(a, b, c, d, e, f2, g) {
this.acceptsBooleans = 2 === b || 3 === b || 4 === b;
this.acceptsBooleans = 2 === b || 3 === b || 4 === b;
this.attributeName = d;
this.attributeName = d;
this.attributeNamespace = e;
this.attributeNamespace = e;
this.mustUseProperty = c;
this.mustUseProperty = c;
this.propertyName = a;
this.propertyName = a;
this.type = b;
this.type = b;
this.sanitizeURL = f2;
this.sanitizeURL = f2;
this.removeEmptyString = g;
this.removeEmptyString = g;
}
}
var z = {};
var z = {};
"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a) {
"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a) {
z[a] = new v(a, 0, false, a, null, false, false);
z[a] = new v(a, 0, false, a, null, false, false);
});
});
[["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(a) {
[["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(a) {
var b = a[0];
var b = a[0];
z[b] = new v(b, 1, false, a[1], null, false, false);
z[b] = new v(b, 1, false, a[1], null, false, false);
});
});
["contentEditable", "draggable", "spellCheck", "value"].forEach(function(a) {
["contentEditable", "draggable", "spellCheck", "value"].forEach(function(a) {
z[a] = new v(a, 2, false, a.toLowerCase(), null, false, false);
z[a] = new v(a, 2, false, a.toLowerCase(), null, false, false);
});
});
["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(a) {
["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(a) {
z[a] = new v(a, 2, false, a, null, false, false);
z[a] = new v(a, 2, false, a, null, false, false);
});
});
"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a) {
"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a) {
z[a] = new v(a, 3, false, a.toLowerCase(), null, false, false);
z[a] = new v(a, 3, false, a.toLowerCase(), null, false, false);
});
});
["checked", "multiple", "muted", "selected"].forEach(function(a) {
["checked", "multiple", "muted", "selected"].forEach(function(a) {
z[a] = new v(a, 3, true, a, null, false, false);
z[a] = new v(a, 3, true, a, null, false, false);
});
});
["capture", "download"].forEach(function(a) {
["capture", "download"].forEach(function(a) {
z[a] = new v(a, 4, false, a, null, false, false);
z[a] = new v(a, 4, false, a, null, false, false);
});
});
["cols", "rows", "size", "span"].forEach(function(a) {
["cols", "rows", "size", "span"].forEach(function(a) {
z[a] = new v(a, 6, false, a, null, false, false);
z[a] = new v(a, 6, false, a, null, false, false);
});
});
["rowSpan", "start"].forEach(function(a) {
["rowSpan", "start"].forEach(function(a) {
z[a] = new v(a, 5, false, a.toLowerCase(), null, false, false);
z[a] = new v(a, 5, false, a.toLowerCase(), null, false, false);
});
});
var ra = /[\-:]([a-z])/g;
var ra = /[\-:]([a-z])/g;
function sa(a) {
function sa(a) {
return a[1].toUpperCase();
return a[1].toUpperCase();
}
}
"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a) {
"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a) {
var b = a.replace(
var b = a.replace(
ra,
ra,
sa
sa
);
);
z[b] = new v(b, 1, false, a, null, false, false);
z[b] = new v(b, 1, false, a, null, false, false);
});
});
"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a) {
"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a) {
var b = a.replace(ra, sa);
var b = a.replace(ra, sa);
z[b] = new v(b, 1, false, a, "http://www.w3.org/1999/xlink", false, false);
});
["xml:base", "xml:lang", "xml:space"].forEach(function(a) {
var b = a.replace(ra, sa);
z[b] = new v(b, 1, fa