@heycater/qualification-funnel 1.3.20 → 1.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/heycater-funnel.iife.js +255 -221
- package/dist/index.cjs.js +187 -163
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1395 -660
- package/dist/index.esm.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -655,8 +655,8 @@ function baseHas$1(object2, key) {
|
|
|
655
655
|
return object2 != null && hasOwnProperty$9.call(object2, key);
|
|
656
656
|
}
|
|
657
657
|
var _baseHas = baseHas$1;
|
|
658
|
-
var isArray$
|
|
659
|
-
var isArray_1 = isArray$
|
|
658
|
+
var isArray$c = Array.isArray;
|
|
659
|
+
var isArray_1 = isArray$c;
|
|
660
660
|
var freeGlobal$1 = typeof commonjsGlobal == "object" && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
|
|
661
661
|
var _freeGlobal = freeGlobal$1;
|
|
662
662
|
var freeGlobal = _freeGlobal;
|
|
@@ -715,10 +715,10 @@ function isSymbol$4(value) {
|
|
|
715
715
|
return typeof value == "symbol" || isObjectLike$4(value) && baseGetTag$4(value) == symbolTag$1;
|
|
716
716
|
}
|
|
717
717
|
var isSymbol_1 = isSymbol$4;
|
|
718
|
-
var isArray$
|
|
718
|
+
var isArray$b = isArray_1, isSymbol$3 = isSymbol_1;
|
|
719
719
|
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
|
|
720
720
|
function isKey$3(value, object2) {
|
|
721
|
-
if (isArray$
|
|
721
|
+
if (isArray$b(value)) {
|
|
722
722
|
return false;
|
|
723
723
|
}
|
|
724
724
|
var type2 = typeof value;
|
|
@@ -1053,13 +1053,13 @@ function arrayMap$1(array2, iteratee) {
|
|
|
1053
1053
|
return result;
|
|
1054
1054
|
}
|
|
1055
1055
|
var _arrayMap = arrayMap$1;
|
|
1056
|
-
var Symbol$2 = _Symbol, arrayMap = _arrayMap, isArray$
|
|
1056
|
+
var Symbol$2 = _Symbol, arrayMap = _arrayMap, isArray$a = isArray_1, isSymbol$2 = isSymbol_1;
|
|
1057
1057
|
var symbolProto$1 = Symbol$2 ? Symbol$2.prototype : void 0, symbolToString = symbolProto$1 ? symbolProto$1.toString : void 0;
|
|
1058
1058
|
function baseToString$1(value) {
|
|
1059
1059
|
if (typeof value == "string") {
|
|
1060
1060
|
return value;
|
|
1061
1061
|
}
|
|
1062
|
-
if (isArray$
|
|
1062
|
+
if (isArray$a(value)) {
|
|
1063
1063
|
return arrayMap(value, baseToString$1) + "";
|
|
1064
1064
|
}
|
|
1065
1065
|
if (isSymbol$2(value)) {
|
|
@@ -1074,9 +1074,9 @@ function toString$5(value) {
|
|
|
1074
1074
|
return value == null ? "" : baseToString(value);
|
|
1075
1075
|
}
|
|
1076
1076
|
var toString_1 = toString$5;
|
|
1077
|
-
var isArray$
|
|
1077
|
+
var isArray$9 = isArray_1, isKey$2 = _isKey, stringToPath$1 = _stringToPath, toString$4 = toString_1;
|
|
1078
1078
|
function castPath$2(value, object2) {
|
|
1079
|
-
if (isArray$
|
|
1079
|
+
if (isArray$9(value)) {
|
|
1080
1080
|
return value;
|
|
1081
1081
|
}
|
|
1082
1082
|
return isKey$2(value, object2) ? [value] : stringToPath$1(toString$4(value));
|
|
@@ -1120,7 +1120,7 @@ function toKey$4(value) {
|
|
|
1120
1120
|
return result == "0" && 1 / value == -Infinity ? "-0" : result;
|
|
1121
1121
|
}
|
|
1122
1122
|
var _toKey = toKey$4;
|
|
1123
|
-
var castPath$1 = _castPath, isArguments$1 = isArguments_1, isArray$
|
|
1123
|
+
var castPath$1 = _castPath, isArguments$1 = isArguments_1, isArray$8 = isArray_1, isIndex$1 = _isIndex, isLength$2 = isLength_1, toKey$3 = _toKey;
|
|
1124
1124
|
function hasPath$2(object2, path, hasFunc) {
|
|
1125
1125
|
path = castPath$1(path, object2);
|
|
1126
1126
|
var index = -1, length = path.length, result = false;
|
|
@@ -1135,15 +1135,15 @@ function hasPath$2(object2, path, hasFunc) {
|
|
|
1135
1135
|
return result;
|
|
1136
1136
|
}
|
|
1137
1137
|
length = object2 == null ? 0 : object2.length;
|
|
1138
|
-
return !!length && isLength$2(length) && isIndex$1(key, length) && (isArray$
|
|
1138
|
+
return !!length && isLength$2(length) && isIndex$1(key, length) && (isArray$8(object2) || isArguments$1(object2));
|
|
1139
1139
|
}
|
|
1140
1140
|
var _hasPath = hasPath$2;
|
|
1141
1141
|
var baseHas = _baseHas, hasPath$1 = _hasPath;
|
|
1142
|
-
function has$
|
|
1142
|
+
function has$5(object2, path) {
|
|
1143
1143
|
return object2 != null && hasPath$1(object2, path, baseHas);
|
|
1144
1144
|
}
|
|
1145
|
-
var has_1 = has$
|
|
1146
|
-
const has$
|
|
1145
|
+
var has_1 = has$5;
|
|
1146
|
+
const has$6 = /* @__PURE__ */ getDefaultExportFromCjs(has_1);
|
|
1147
1147
|
const isSchema = (obj) => obj && obj.__isYupSchema__;
|
|
1148
1148
|
class Condition {
|
|
1149
1149
|
constructor(refs, options) {
|
|
@@ -1154,7 +1154,7 @@ class Condition {
|
|
|
1154
1154
|
this.fn = options;
|
|
1155
1155
|
return;
|
|
1156
1156
|
}
|
|
1157
|
-
if (!has$
|
|
1157
|
+
if (!has$6(options, "is")) throw new TypeError("`is:` is required for `when()` conditions");
|
|
1158
1158
|
if (!options.then && !options.otherwise) throw new TypeError("either `then:` or `otherwise:` is required for `when()` conditions");
|
|
1159
1159
|
let {
|
|
1160
1160
|
is,
|
|
@@ -1393,11 +1393,11 @@ var baseIsTypedArray = _baseIsTypedArray, baseUnary = _baseUnary, nodeUtil = _no
|
|
|
1393
1393
|
var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
|
1394
1394
|
var isTypedArray$2 = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
|
1395
1395
|
var isTypedArray_1 = isTypedArray$2;
|
|
1396
|
-
var baseTimes = _baseTimes, isArguments = isArguments_1, isArray$
|
|
1396
|
+
var baseTimes = _baseTimes, isArguments = isArguments_1, isArray$7 = isArray_1, isBuffer$2 = isBufferExports, isIndex = _isIndex, isTypedArray$1 = isTypedArray_1;
|
|
1397
1397
|
var objectProto$5 = Object.prototype;
|
|
1398
1398
|
var hasOwnProperty$3 = objectProto$5.hasOwnProperty;
|
|
1399
1399
|
function arrayLikeKeys$1(value, inherited) {
|
|
1400
|
-
var isArr = isArray$
|
|
1400
|
+
var isArr = isArray$7(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer$2(value), isType = !isArr && !isArg && !isBuff && isTypedArray$1(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
|
|
1401
1401
|
for (var key in value) {
|
|
1402
1402
|
if ((inherited || hasOwnProperty$3.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode.
|
|
1403
1403
|
(key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers.
|
|
@@ -1665,10 +1665,10 @@ function arrayPush$1(array2, values2) {
|
|
|
1665
1665
|
return array2;
|
|
1666
1666
|
}
|
|
1667
1667
|
var _arrayPush = arrayPush$1;
|
|
1668
|
-
var arrayPush = _arrayPush, isArray$
|
|
1668
|
+
var arrayPush = _arrayPush, isArray$6 = isArray_1;
|
|
1669
1669
|
function baseGetAllKeys$1(object2, keysFunc, symbolsFunc) {
|
|
1670
1670
|
var result = keysFunc(object2);
|
|
1671
|
-
return isArray$
|
|
1671
|
+
return isArray$6(object2) ? result : arrayPush(result, symbolsFunc(object2));
|
|
1672
1672
|
}
|
|
1673
1673
|
var _baseGetAllKeys = baseGetAllKeys$1;
|
|
1674
1674
|
function arrayFilter$1(array2, predicate) {
|
|
@@ -1791,13 +1791,13 @@ if (DataView$1 && getTag$1(new DataView$1(new ArrayBuffer(1))) != dataViewTag ||
|
|
|
1791
1791
|
};
|
|
1792
1792
|
}
|
|
1793
1793
|
var _getTag = getTag$1;
|
|
1794
|
-
var Stack$1 = _Stack, equalArrays = _equalArrays, equalByTag = _equalByTag, equalObjects = _equalObjects, getTag = _getTag, isArray$
|
|
1794
|
+
var Stack$1 = _Stack, equalArrays = _equalArrays, equalByTag = _equalByTag, equalObjects = _equalObjects, getTag = _getTag, isArray$5 = isArray_1, isBuffer$1 = isBufferExports, isTypedArray = isTypedArray_1;
|
|
1795
1795
|
var COMPARE_PARTIAL_FLAG$2 = 1;
|
|
1796
1796
|
var argsTag = "[object Arguments]", arrayTag = "[object Array]", objectTag = "[object Object]";
|
|
1797
1797
|
var objectProto = Object.prototype;
|
|
1798
1798
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
1799
1799
|
function baseIsEqualDeep$1(object2, other, bitmask, customizer, equalFunc, stack) {
|
|
1800
|
-
var objIsArr = isArray$
|
|
1800
|
+
var objIsArr = isArray$5(object2), othIsArr = isArray$5(other), objTag = objIsArr ? arrayTag : getTag(object2), othTag = othIsArr ? arrayTag : getTag(other);
|
|
1801
1801
|
objTag = objTag == argsTag ? objectTag : objTag;
|
|
1802
1802
|
othTag = othTag == argsTag ? objectTag : othTag;
|
|
1803
1803
|
var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag;
|
|
@@ -1966,7 +1966,7 @@ function property$1(path) {
|
|
|
1966
1966
|
return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);
|
|
1967
1967
|
}
|
|
1968
1968
|
var property_1 = property$1;
|
|
1969
|
-
var baseMatches = _baseMatches, baseMatchesProperty = _baseMatchesProperty, identity = identity_1, isArray$
|
|
1969
|
+
var baseMatches = _baseMatches, baseMatchesProperty = _baseMatchesProperty, identity = identity_1, isArray$4 = isArray_1, property = property_1;
|
|
1970
1970
|
function baseIteratee$2(value) {
|
|
1971
1971
|
if (typeof value == "function") {
|
|
1972
1972
|
return value;
|
|
@@ -1975,7 +1975,7 @@ function baseIteratee$2(value) {
|
|
|
1975
1975
|
return identity;
|
|
1976
1976
|
}
|
|
1977
1977
|
if (typeof value == "object") {
|
|
1978
|
-
return isArray$
|
|
1978
|
+
return isArray$4(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value);
|
|
1979
1979
|
}
|
|
1980
1980
|
return property(value);
|
|
1981
1981
|
}
|
|
@@ -2008,11 +2008,27 @@ Cache.prototype.set = function(key, value) {
|
|
|
2008
2008
|
return this._values[key] = value;
|
|
2009
2009
|
};
|
|
2010
2010
|
var SPLIT_REGEX = /[^.^\]^[]+|(?=\[\]|\.\.)/g, DIGIT_REGEX = /^\d+$/, LEAD_DIGIT_REGEX = /^\d/, SPEC_CHAR_REGEX = /[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g, CLEAN_QUOTES_REGEX = /^\s*(['"]?)(.*?)(\1)\s*$/, MAX_CACHE_SIZE = 512;
|
|
2011
|
-
var pathCache = new Cache(MAX_CACHE_SIZE);
|
|
2012
|
-
new Cache(MAX_CACHE_SIZE);
|
|
2013
|
-
var getCache = new Cache(MAX_CACHE_SIZE);
|
|
2011
|
+
var pathCache = new Cache(MAX_CACHE_SIZE), setCache = new Cache(MAX_CACHE_SIZE), getCache = new Cache(MAX_CACHE_SIZE);
|
|
2014
2012
|
var propertyExpr = {
|
|
2013
|
+
Cache,
|
|
2015
2014
|
split,
|
|
2015
|
+
normalizePath,
|
|
2016
|
+
setter: function(path) {
|
|
2017
|
+
var parts = normalizePath(path);
|
|
2018
|
+
return setCache.get(path) || setCache.set(path, function setter(obj, value) {
|
|
2019
|
+
var index = 0;
|
|
2020
|
+
var len = parts.length;
|
|
2021
|
+
var data = obj;
|
|
2022
|
+
while (index < len - 1) {
|
|
2023
|
+
var part = parts[index];
|
|
2024
|
+
if (part === "__proto__" || part === "constructor" || part === "prototype") {
|
|
2025
|
+
return obj;
|
|
2026
|
+
}
|
|
2027
|
+
data = data[parts[index++]];
|
|
2028
|
+
}
|
|
2029
|
+
data[parts[index]] = value;
|
|
2030
|
+
});
|
|
2031
|
+
},
|
|
2016
2032
|
getter: function(path, safe) {
|
|
2017
2033
|
var parts = normalizePath(path);
|
|
2018
2034
|
return getCache.get(path) || getCache.set(path, function getter(data) {
|
|
@@ -2024,6 +2040,11 @@ var propertyExpr = {
|
|
|
2024
2040
|
return data;
|
|
2025
2041
|
});
|
|
2026
2042
|
},
|
|
2043
|
+
join: function(segments) {
|
|
2044
|
+
return segments.reduce(function(path, part) {
|
|
2045
|
+
return path + (isQuoted(part) || DIGIT_REGEX.test(part) ? "[" + part + "]" : (path ? "." : "") + part);
|
|
2046
|
+
}, "");
|
|
2047
|
+
},
|
|
2027
2048
|
forEach: function(path, cb, thisArg) {
|
|
2028
2049
|
forEach(Array.isArray(path) ? path : split(path), cb, thisArg);
|
|
2029
2050
|
}
|
|
@@ -3618,7 +3639,7 @@ function sortFields(fields, excludedEdges = []) {
|
|
|
3618
3639
|
nodes.add(node);
|
|
3619
3640
|
if (!excludes.has(`${key}-${node}`)) edges.push([key, node]);
|
|
3620
3641
|
}
|
|
3621
|
-
for (const key in fields) if (has$
|
|
3642
|
+
for (const key in fields) if (has$6(fields, key)) {
|
|
3622
3643
|
let value = fields[key];
|
|
3623
3644
|
nodes.add(key);
|
|
3624
3645
|
if (Reference.isRef(value) && value.isSibling) addNode(value.path, key);
|
|
@@ -3707,7 +3728,7 @@ class ObjectSchema extends BaseSchema {
|
|
|
3707
3728
|
let isChanged = false;
|
|
3708
3729
|
for (const prop of props) {
|
|
3709
3730
|
let field = fields[prop];
|
|
3710
|
-
let exists = has$
|
|
3731
|
+
let exists = has$6(value, prop);
|
|
3711
3732
|
if (field) {
|
|
3712
3733
|
let fieldValue;
|
|
3713
3734
|
let inputValue = value[prop];
|
|
@@ -3870,7 +3891,7 @@ class ObjectSchema extends BaseSchema {
|
|
|
3870
3891
|
return this.transform((obj) => {
|
|
3871
3892
|
if (obj == null) return obj;
|
|
3872
3893
|
let newObj = obj;
|
|
3873
|
-
if (has$
|
|
3894
|
+
if (has$6(obj, from)) {
|
|
3874
3895
|
newObj = _extends$4({}, obj);
|
|
3875
3896
|
if (!alias) delete newObj[from];
|
|
3876
3897
|
newObj[to] = fromGetter(obj);
|
|
@@ -5106,90 +5127,18 @@ const deliveryFrequencyQuestion = Object.freeze(
|
|
|
5106
5127
|
}
|
|
5107
5128
|
})
|
|
5108
5129
|
);
|
|
5109
|
-
const Meat = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-30 -20 478.5 321.25", ...props, children: [
|
|
5110
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
5111
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.309 0h416.636v279.754H.31Zm0 0" }) }),
|
|
5112
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M.309 0h416.636v279.754H.31Zm0 0" }) })
|
|
5113
|
-
] }),
|
|
5114
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M410.59 139.668c-5.863-16.648-12.274-33.106-18.027-49.793-4.665-13.531-8.817-27.227-15.993-39.742-10.218-17.828-23.629-32.422-42.316-41.574-15.367-7.524-31.531-10.63-48.406-6.672-19.106 4.472-37.805 10.242-55.414 19.199-13.36 6.797-26.168 14.465-38.246 23.293-20.583 15.039-38.903 32.648-56.7 50.809-11.414 11.648-23.86 21.816-38.656 28.984-3.32 1.61-6 4.539-8.98 6.848-.465.363-.93.851-1.47.976-6.874 1.625-13.769 3.168-20.644 4.793-1.418.336-2.21-.023-2.96-1.316-2.387-4.094-5.852-6.993-10.212-8.907-9.375-4.117-18.77-3.515-27.761.676-13.367 6.227-22.461 16.14-24.301 31.414-1.066 8.852 2.172 16.106 8.902 22.121-.316.602-.511.989-.719 1.368-5.347 9.8-4.015 21.02 3.489 29.238 7.562 8.281 17.215 10.832 27.965 9.734 13.96-1.43 23.289-11.851 24.48-21.887.074-.664 1.332-1.605 2.129-1.703 7.188-.902 14.387-1.726 21.598-2.351 1.32-.117 2.777.633 4.078 1.203 2.96 1.289 5.761 3.055 8.82 4.008 4.285 1.336 8.848 1.789 13.11 3.175 15.43 5.016 29.878 12.286 44.132 19.918 23.922 12.81 47.828 25.633 72.563 36.836 22.355 10.122 45.39 17.782 70.125 19.164 28.504 1.594 54.629-5.293 77.336-22.921 25.922-20.125 37.648-47.5 38.66-79.73.398-12.731-2.356-25.169-6.582-37.161M71.809 186.715c-.871.113-1.743.254-2.621.36-3.438.421-6.797 1.37-9.977-1.403-1.863-1.625-4.438-1.305-6.258.601-1.82 1.91-1.637 4.184-.433 6.383 2.414 4.41 2.136 7.758-1.008 11.653-8.266 10.214-26.543 9.015-33.621-2.059-3.633-5.684-3.164-16.266 4.027-19.758 2.047-.992 2.125-3.137 1.71-5.137-.472-2.28-2.128-3.746-4.292-3.671-4.457.152-6.23-2.832-7.703-6.086-1.88-4.145-1.57-8.508-.168-12.707 3.797-11.344 16.777-21.868 29.656-20.79 3.004.25 6.09 1.133 8.84 2.38 3.195 1.449 4.71 4.21 4.383 8-.38 4.312 3.324 6.933 6.894 4.601 4.434-2.894 9.496-2.965 14.254-4.371 1.664-.492 3.41-.7 5.457-1.106-5.386 14.422-4.457 28.13 2.918 41.583zm237.136 85.035c-38.691.578-103.418-32.926-136.632-52.281-32.438-18.895-67.329-28.555-68.946-29l-.058-.012c-2.371-.516-4.274-1.82-5.961-3.644-11.953-12.942-12.91-34.868-1.91-48.72 1.746-2.198 4.257-4.073 6.8-5.304 12.64-6.129 23.696-14.418 33.793-24.078 12.922-12.36 25.543-25.043 38.79-37.047 21.902-19.848 46.124-36.273 73.585-47.621 1.008-.414 1.996-.871 3.469-1.516-4.027 4.348-7.836 8.145-11.285 12.239-13.852 16.449-26.367 33.804-33.317 54.418-10.804 32.058-7.957 63.148 8.32 92.746 7.15 13.004 15.954 24.16 26.192 33.675 13.102 12.184 28.559 21.688 45.906 28.954 10.391 4.351 21.153 7.379 32.32 8.84q.39.051.778.097.008-.001.016.004c29.761 3.117 46.468-.527 46.468-.527s-19.64 18.199-58.328 18.777m97.809-92.434c-.785 30.418-20.938 55.86-50.473 63.16-2.57.637-5.164 1.278-7.785 1.575-4.039.465-8.105.633-12.164.926-17.95-.227-34.816-4.836-50.934-12.356-20.55-9.598-38.046-23.148-51.757-41.312-12.461-16.508-20.11-34.973-22.043-55.707-2.258-24.2 4.066-46.235 16.582-66.723 8.105-13.258 17.52-25.54 28.441-36.606 8.961-9.07 18.57-17.242 31.414-20.343 15.899-3.836 30.746-.465 44.684 7.226 18.797 10.38 31.43 26.489 39.84 45.828 4.671 10.739 7.878 22.102 11.87 33.137 4.622 12.781 9.356 25.52 14.098 38.258 5.16 13.851 8.614 27.96 8.227 42.937m0 0" }) }),
|
|
5115
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M195.66 89.57c-.906 1.36-1.531 3.04-2.738 3.98-15.484 12.06-31.047 24.016-46.606 35.981-1.117.864-2.27 1.742-3.543 2.313-2.546 1.14-4.964.308-6.18-1.906-1.316-2.399-.738-5.41 1.294-6.942 10.879-8.187 21.773-16.351 32.61-24.586 5.21-3.96 10.308-8.066 15.46-12.097 2.848-2.227 6.059-2.45 7.898-.368.766.868 1.083 2.13 1.805 3.625M221.977 125.898c-.082-21.3 7.203-40.187 19.03-57.511 7.845-11.485 16.227-22.57 26.384-32.164 7.785-7.352 16.527-13.032 27.351-14.754 12.778-2.032 24.387 1.37 35.156 8.011 16.043 9.903 26.852 24.282 33.645 41.555 5.684 14.438 10.398 29.254 15.605 43.88 4.266 11.98 9.125 23.772 12.817 35.925 4.957 16.34 5.82 33.015-.746 49.18-7.758 19.101-22.469 29.93-42.586 33.488-17.281 3.058-33.836-.418-49.88-6.567-22.608-8.668-41.714-22.242-56.444-41.671-13.313-17.56-20.196-37.313-20.332-59.368Zm139.062-31.921c-3.547 4.335-6.64 8.285-9.93 12.062-1.855 2.129-2.437 4.266-1.66 7.02.856 3.043 1.875 6.191 1.899 9.296.132 15.075-7.383 25.563-20.375 32.454-4.32 2.293-4.563 2.68-3.121 7.441 3.082 10.152 3.765 20.465 1.96 30.941-1.472 8.54-5.011 16.114-10.226 22.996-3.02 3.981-2.121 6.157 2.773 7.06 8.598 1.589 17.258 1.96 25.84.155 17.422-3.66 29.496-13.625 34.746-30.906 4.235-13.937 2.977-27.93-1.496-41.508-4.746-14.406-10.289-28.547-15.453-42.82-1.676-4.633-3.25-9.3-4.957-14.188Zm-117.125 51.675c-1.148 0-2.305.067-3.45-.011-4.808-.313-5.905 1.132-4.433 5.836 3.504 11.187 9.11 21.23 16.45 30.343 12.597 15.653 28.558 26.754 46.84 34.72 2.843 1.237 5.542.929 7.84-1.306 1.265-1.23 2.62-2.414 3.671-3.82 11.023-14.758 12.254-30.934 6.816-48.047-1.015-3.203-2.921-5.156-6.488-5.164-1.137 0-2.308-.18-3.402-.488-9.188-2.563-16.156-8.086-21.238-16.082-1.965-3.09-3.625-3.742-7.141-2.742-.762.214-1.508.492-2.254.761-10.73 3.899-21.762 6.145-33.21 6M302.313 30.95c-9.153.004-16.536 3-22.918 8.211-4.368 3.563-8.297 7.676-12.305 11.656-3.453 3.43-3.18 5.704.574 8.73a151 151 0 0 1 23.012 23.067c2.265 2.828 4.351 5.801 6.578 8.664 1.332 1.711 2.918 2.746 5.273 1.86 12.668-4.754 24.305-2.211 35.2 5.156 3.539 2.394 4.808 2.621 7.543-.816 3.382-4.25 6.23-8.934 9.18-13.516 1.59-2.469 1.488-5.129.398-7.863-5.118-12.864-12.43-24.184-23.137-33.118-8.723-7.28-18.54-11.894-29.399-12.035Zm-57.684 104.793c11.39.133 22.172-2.824 32.781-6.605 2.676-.957 4-2.657 4.016-5.766.031-7.055 1.87-13.598 6.484-19.187 2.809-3.399 2.809-4.477.262-8.164-7.336-10.622-16.18-19.864-25.985-28.204-3.992-3.394-6.804-3.027-9.613 1.348-3.527 5.496-7.035 11.027-10.129 16.77-7.168 13.308-10.558 27.62-10.515 42.738.011 4.879 1.675 6.68 6.605 7.047 2.02.148 4.063.023 6.094.023m46.625-12.265c.226 1.753.367 3.515.691 5.25 1.942 10.421 12.067 19.195 21.77 19.925 9.996.754 20.082-4.949 24.996-14.672 4.277-8.468 3.187-17.394-3.316-24.277-7.004-7.422-15.614-10.45-25.747-8.398-10.496 2.125-18.304 11.672-18.398 22.172Zm0 0" }),
|
|
5116
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M315.86 109.137c8.624.035 15.886 6.89 15.847 14.96-.043 8.653-7.562 15.97-16.281 15.84-7.91-.117-15.07-7.742-14.988-15.96.085-8.48 6.726-14.872 15.421-14.84M320.012 253.398c-11.168-1.46-21.93-4.488-32.32-8.84-17.348-7.265-32.805-16.769-45.907-28.953 33.55 19.23 65.492 35.915 78.227 37.793m0 0" }),
|
|
5117
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M410.59 139.668c-5.863-16.648-12.274-33.106-18.027-49.793-4.665-13.531-8.817-27.227-15.993-39.742-10.218-17.828-23.629-32.422-42.316-41.574-15.367-7.524-31.531-10.63-48.406-6.672-19.106 4.472-37.805 10.242-55.414 19.199-13.36 6.797-26.168 14.465-38.246 23.293-20.583 15.039-38.903 32.648-56.7 50.809-11.414 11.648-23.86 21.816-38.656 28.984-3.32 1.61-6 4.539-8.98 6.848-.465.363-.93.851-1.47.976-6.874 1.625-13.769 3.168-20.644 4.793-1.418.336-2.21-.023-2.96-1.316-2.387-4.094-5.852-6.993-10.212-8.907-9.375-4.117-18.77-3.515-27.761.676-13.367 6.227-22.461 16.14-24.301 31.414-1.066 8.852 2.172 16.106 8.902 22.121-.316.602-.511.989-.719 1.368-5.347 9.8-4.015 21.02 3.489 29.238 7.562 8.281 17.215 10.832 27.965 9.734 13.96-1.43 23.289-11.851 24.48-21.887.074-.664 1.332-1.605 2.129-1.703 7.188-.902 14.387-1.726 21.598-2.351 1.32-.117 2.777.633 4.078 1.203 2.96 1.289 5.761 3.055 8.82 4.008 4.285 1.336 8.848 1.789 13.11 3.175 15.43 5.016 29.878 12.286 44.132 19.918 23.922 12.81 47.828 25.633 72.563 36.836 22.355 10.122 45.39 17.782 70.125 19.164 28.504 1.594 54.629-5.293 77.336-22.921 25.922-20.125 37.648-47.5 38.66-79.73.398-12.731-2.356-25.169-6.582-37.161M71.809 186.715c-.871.113-1.743.254-2.621.36-3.438.421-6.797 1.37-9.977-1.403-1.863-1.625-4.438-1.305-6.258.601-1.82 1.91-1.637 4.184-.433 6.383 2.414 4.41 2.136 7.758-1.008 11.653-8.266 10.214-26.543 9.015-33.621-2.059-3.633-5.684-3.164-16.266 4.027-19.758 2.047-.992 2.125-3.137 1.71-5.137-.472-2.28-2.128-3.746-4.292-3.671-4.457.152-6.23-2.832-7.703-6.086-1.88-4.145-1.57-8.508-.168-12.707 3.797-11.344 16.777-21.868 29.656-20.79 3.004.25 6.09 1.133 8.84 2.38 3.195 1.449 4.71 4.21 4.383 8-.38 4.312 3.324 6.933 6.894 4.601 4.434-2.894 9.496-2.965 14.254-4.371 1.664-.492 3.41-.7 5.457-1.106-5.386 14.422-4.457 28.13 2.918 41.583zm237.136 85.035c-38.691.578-103.418-32.926-136.632-52.281-32.438-18.895-67.329-28.555-68.946-29l-.058-.012c-2.371-.516-4.274-1.82-5.961-3.644-11.953-12.942-12.91-34.868-1.91-48.72 1.746-2.198 4.257-4.073 6.8-5.304 12.64-6.129 23.696-14.418 33.793-24.078 12.922-12.36 25.543-25.043 38.79-37.047 21.902-19.848 46.124-36.273 73.585-47.621 1.008-.414 1.996-.871 3.469-1.516-4.027 4.348-7.836 8.145-11.285 12.239-13.852 16.449-26.367 33.804-33.317 54.418-10.804 32.058-7.957 63.148 8.32 92.746 7.15 13.004 15.954 24.16 26.192 33.675 13.102 12.184 28.559 21.688 45.906 28.954 10.391 4.351 21.153 7.379 32.32 8.84q.39.051.778.097.008-.001.016.004c29.761 3.117 46.468-.527 46.468-.527s-19.64 18.199-58.328 18.777m97.809-92.434c-.785 30.418-20.938 55.86-50.473 63.16-2.57.637-5.164 1.278-7.785 1.575-4.039.465-8.105.633-12.164.926-17.95-.227-34.816-4.836-50.934-12.356-20.55-9.598-38.046-23.148-51.757-41.312-12.461-16.508-20.11-34.973-22.043-55.707-2.258-24.2 4.066-46.235 16.582-66.723 8.105-13.258 17.52-25.54 28.441-36.606 8.961-9.07 18.57-17.242 31.414-20.343 15.899-3.836 30.746-.465 44.684 7.226 18.797 10.38 31.43 26.489 39.84 45.828 4.671 10.739 7.878 22.102 11.87 33.137 4.622 12.781 9.356 25.52 14.098 38.258 5.16 13.851 8.614 27.96 8.227 42.937m0 0" }) }),
|
|
5118
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M195.66 89.57c-.906 1.36-1.531 3.04-2.738 3.98-15.484 12.06-31.047 24.016-46.606 35.981-1.117.864-2.27 1.742-3.543 2.313-2.546 1.14-4.964.308-6.18-1.906-1.316-2.399-.738-5.41 1.294-6.942 10.879-8.187 21.773-16.351 32.61-24.586 5.21-3.96 10.308-8.066 15.46-12.097 2.848-2.227 6.059-2.45 7.898-.368.766.868 1.083 2.13 1.805 3.625M221.977 125.898c-.082-21.3 7.203-40.187 19.03-57.511 7.845-11.485 16.227-22.57 26.384-32.164 7.785-7.352 16.527-13.032 27.351-14.754 12.778-2.032 24.387 1.37 35.156 8.011 16.043 9.903 26.852 24.282 33.645 41.555 5.684 14.438 10.398 29.254 15.605 43.88 4.266 11.98 9.125 23.772 12.817 35.925 4.957 16.34 5.82 33.015-.746 49.18-7.758 19.101-22.469 29.93-42.586 33.488-17.281 3.058-33.836-.418-49.88-6.567-22.608-8.668-41.714-22.242-56.444-41.671-13.313-17.56-20.196-37.313-20.332-59.368Zm139.062-31.921c-3.547 4.335-6.64 8.285-9.93 12.062-1.855 2.129-2.437 4.266-1.66 7.02.856 3.043 1.875 6.191 1.899 9.296.132 15.075-7.383 25.563-20.375 32.454-4.32 2.293-4.563 2.68-3.121 7.441 3.082 10.152 3.765 20.465 1.96 30.941-1.472 8.54-5.011 16.114-10.226 22.996-3.02 3.981-2.121 6.157 2.773 7.06 8.598 1.589 17.258 1.96 25.84.155 17.422-3.66 29.496-13.625 34.746-30.906 4.235-13.937 2.977-27.93-1.496-41.508-4.746-14.406-10.289-28.547-15.453-42.82-1.676-4.633-3.25-9.3-4.957-14.188Zm-117.125 51.675c-1.148 0-2.305.067-3.45-.011-4.808-.313-5.905 1.132-4.433 5.836 3.504 11.187 9.11 21.23 16.45 30.343 12.597 15.653 28.558 26.754 46.84 34.72 2.843 1.237 5.542.929 7.84-1.306 1.265-1.23 2.62-2.414 3.671-3.82 11.023-14.758 12.254-30.934 6.816-48.047-1.015-3.203-2.921-5.156-6.488-5.164-1.137 0-2.308-.18-3.402-.488-9.188-2.563-16.156-8.086-21.238-16.082-1.965-3.09-3.625-3.742-7.141-2.742-.762.214-1.508.492-2.254.761-10.73 3.899-21.762 6.145-33.21 6M302.313 30.95c-9.153.004-16.536 3-22.918 8.211-4.368 3.563-8.297 7.676-12.305 11.656-3.453 3.43-3.18 5.704.574 8.73a151 151 0 0 1 23.012 23.067c2.265 2.828 4.351 5.801 6.578 8.664 1.332 1.711 2.918 2.746 5.273 1.86 12.668-4.754 24.305-2.211 35.2 5.156 3.539 2.394 4.808 2.621 7.543-.816 3.382-4.25 6.23-8.934 9.18-13.516 1.59-2.469 1.488-5.129.398-7.863-5.118-12.864-12.43-24.184-23.137-33.118-8.723-7.28-18.54-11.894-29.399-12.035Zm-57.684 104.793c11.39.133 22.172-2.824 32.781-6.605 2.676-.957 4-2.657 4.016-5.766.031-7.055 1.87-13.598 6.484-19.187 2.809-3.399 2.809-4.477.262-8.164-7.336-10.622-16.18-19.864-25.985-28.204-3.992-3.394-6.804-3.027-9.613 1.348-3.527 5.496-7.035 11.027-10.129 16.77-7.168 13.308-10.558 27.62-10.515 42.738.011 4.879 1.675 6.68 6.605 7.047 2.02.148 4.063.023 6.094.023m46.625-12.265c.226 1.753.367 3.515.691 5.25 1.942 10.421 12.067 19.195 21.77 19.925 9.996.754 20.082-4.949 24.996-14.672 4.277-8.468 3.187-17.394-3.316-24.277-7.004-7.422-15.614-10.45-25.747-8.398-10.496 2.125-18.304 11.672-18.398 22.172Zm0 0" }),
|
|
5119
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M315.86 109.137c8.624.035 15.886 6.89 15.847 14.96-.043 8.653-7.562 15.97-16.281 15.84-7.91-.117-15.07-7.742-14.988-15.96.085-8.48 6.726-14.872 15.421-14.84M320.012 253.398c-11.168-1.46-21.93-4.488-32.32-8.84-17.348-7.265-32.805-16.769-45.907-28.953 33.55 19.23 65.492 35.915 78.227 37.793m0 0" })
|
|
5120
|
-
] });
|
|
5121
|
-
const Vegan = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-48 0 627 420.75", ...props, children: [
|
|
5122
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
5123
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M207.168 91.82h268.078V415.31H207.168Zm0 0" }) }),
|
|
5124
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M78 4h230v412H78Zm0 0" }) }),
|
|
5125
|
-
/* @__PURE__ */ jsx("clipPath", { id: "c", children: /* @__PURE__ */ jsx("path", { d: "M0 175.438 202.887.214l211.441 244.824-202.887 175.223Zm0 0" }) }),
|
|
5126
|
-
/* @__PURE__ */ jsx("clipPath", { id: "d", children: /* @__PURE__ */ jsx("path", { d: "M0 175.438 202.887.214l211.441 244.824-202.887 175.223Zm0 0" }) }),
|
|
5127
|
-
/* @__PURE__ */ jsx("clipPath", { id: "e", children: /* @__PURE__ */ jsx("path", { d: "M200 173.535h59.922v135.293H200Zm0 0" }) }),
|
|
5128
|
-
/* @__PURE__ */ jsx("clipPath", { id: "f", children: /* @__PURE__ */ jsx("path", { d: "M259.672 191.98c-2.695 41.711-2.848 46.727-5.016 52.946-2.62 7.262-6.293 18.867-12.508 22.164-5.914 3.144-17.597 1.945-23.21-1.871-5.77-3.746-8.762-14.078-10.786-21.043-1.797-6.14-1.422-11.832-1.648-18.196-.297-6.89-.149-14.527.226-21.566.301-6.742-2.62-15.875 1.57-19.77 5.692-5.39 31.75-5.917 37.669-.824 4.27 3.82 2.172 12.282 2.32 19.918.149 10.41-2.547 24.563-3.07 36.692-.45 11.98 2.097 25.761.074 35.57-1.496 7.563-8.461 15.727-8.086 19.094.148 1.347 1.945 1.574 1.945 2.62 0 1.423-2.468 3.821-4.117 5.317-1.574 1.5-3.52 2.848-5.543 3.746a21.5 21.5 0 0 1-6.512 1.723c-2.171.223-4.492.074-6.664-.375-2.171-.523-4.343-1.348-6.214-2.547-1.875-1.121-3.672-2.621-5.094-4.344a22.7 22.7 0 0 1-3.446-5.765c-.824-2.098-1.273-4.344-1.421-6.59-.075-2.172.148-4.492.75-6.664a20.6 20.6 0 0 1 2.918-6.067c1.199-1.796 2.847-3.52 4.644-4.867 1.723-1.273 3.817-2.394 5.914-3.07 2.098-.672 4.418-1.047 6.59-1.047 2.246 0 4.566.375 6.664 1.121 2.098.676 4.121 1.8 5.918 3.149 1.723 1.347 3.367 3.07 4.566 4.941 1.2 1.797 2.172 3.969 2.77 6.066.602 2.172.824 4.493.676 6.664-.074 2.247-.602 4.493-1.422 6.59-.899 2.02-2.098 4.043-3.52 5.692a19.3 19.3 0 0 1-5.168 4.34c-1.87 1.125-4.043 1.949-6.214 2.472-2.172.45-4.493.524-6.739.301-2.172-.227-4.418-.898-6.441-1.797-2.024-.976-3.895-2.324-5.543-3.82-1.57-1.574-2.992-3.445-4.043-5.39a23.6 23.6 0 0 1-2.098-6.368c-.297-2.172-.297-4.492.078-6.738.371-2.172 1.57-4.043 2.172-6.29.672-2.62 1.047-4.57 1.496-8.386.825-7.938.223-24.563 1.2-37.145 1.046-13.027-2.172-34.07 5.09-39.687 6.89-5.238 31-.82 35.718 4.871 3.371 3.969.676 11.98-.75 17.895-1.57 6.367-4.117 14.003-8.836 18.87-4.867 5.169-18.12 12.579-20.515 10.708-2.32-1.871 3.968-12.73 5.39-20.668 1.797-10.633.824-30.176 3.219-37.739 1.05-3.671 2.621-5.691 4.121-7.488 1.047-1.273 1.871-1.95 3.293-2.773 2.024-1.196 5.316-2.618 8.09-2.844 2.77-.3 5.914.226 8.46 1.273 2.548 1.047 5.317 3.293 6.966 5.016 1.12 1.2 1.644 2.098 2.32 3.594.898 2.172 1.797 8.386 1.797 8.386" }) }),
|
|
5129
|
-
/* @__PURE__ */ jsx("clipPath", { id: "h", children: /* @__PURE__ */ jsx("path", { d: "M0 .535h59.75v135.293H0Zm0 0" }) }),
|
|
5130
|
-
/* @__PURE__ */ jsx("clipPath", { id: "i", children: /* @__PURE__ */ jsx("path", { d: "M59.672 18.98c-2.695 41.711-2.848 46.727-5.016 52.946-2.62 7.261-6.293 18.867-12.508 22.164-5.914 3.144-17.597 1.945-23.21-1.871-5.77-3.746-8.762-14.078-10.786-21.043-1.797-6.14-1.422-11.832-1.648-18.196-.297-6.89-.149-14.527.226-21.566.301-6.742-2.62-15.875 1.57-19.77 5.692-5.39 31.75-5.917 37.669-.824 4.27 3.82 2.172 12.282 2.32 19.918.148 10.41-2.547 24.563-3.07 36.692-.45 11.98 2.097 25.761.074 35.57-1.496 7.563-8.461 15.727-8.086 19.094.148 1.347 1.945 1.574 1.945 2.62 0 1.423-2.468 3.821-4.117 5.317-1.574 1.5-3.52 2.848-5.543 3.746a21.5 21.5 0 0 1-6.512 1.723c-2.171.223-4.492.074-6.664-.375-2.171-.523-4.343-1.348-6.214-2.547-1.875-1.121-3.672-2.621-5.094-4.344a22.7 22.7 0 0 1-3.445-5.765c-.825-2.098-1.274-4.344-1.422-6.59-.075-2.172.148-4.492.75-6.664a20.6 20.6 0 0 1 2.918-6.067c1.199-1.796 2.847-3.52 4.644-4.867 1.723-1.273 3.817-2.394 5.914-3.07 2.098-.672 4.418-1.047 6.59-1.047 2.246 0 4.566.375 6.664 1.121 2.098.676 4.121 1.8 5.918 3.149 1.723 1.347 3.367 3.07 4.566 4.941 1.2 1.797 2.172 3.969 2.77 6.066.602 2.172.824 4.493.676 6.664-.074 2.247-.602 4.493-1.422 6.59-.899 2.02-2.098 4.043-3.52 5.692a19.3 19.3 0 0 1-5.168 4.34c-1.87 1.125-4.043 1.949-6.214 2.472-2.172.45-4.493.524-6.739.301-2.172-.227-4.418-.898-6.441-1.797-2.024-.976-3.895-2.324-5.543-3.82-1.57-1.574-2.992-3.446-4.043-5.39a23.6 23.6 0 0 1-2.098-6.368c-.297-2.172-.297-4.492.078-6.738.372-2.172 1.57-4.043 2.172-6.29.672-2.62 1.047-4.57 1.496-8.386.825-7.938.223-24.563 1.2-37.145 1.046-13.027-2.172-34.07 5.09-39.687 6.89-5.238 31-.82 35.718 4.871 3.371 3.969.676 11.98-.75 17.895-1.57 6.367-4.117 14.003-8.836 18.87-4.867 5.169-18.12 12.579-20.515 10.708-2.32-1.871 3.968-12.73 5.39-20.668 1.797-10.633.824-30.176 3.219-37.739 1.05-3.671 2.621-5.691 4.121-7.488 1.047-1.273 1.871-1.95 3.293-2.773C34.062 2.359 37.355.938 40.13.71c2.77-.3 5.914.227 8.46 1.273C51.138 3.031 53.907 5.277 55.556 7c1.12 1.2 1.644 2.098 2.32 3.594.898 2.172 1.797 8.386 1.797 8.386" }) }),
|
|
5131
|
-
/* @__PURE__ */ jsx("clipPath", { id: "g", children: /* @__PURE__ */ jsx("path", { d: "M0 0h60v136H0z" }) }),
|
|
5132
|
-
/* @__PURE__ */ jsx("clipPath", { id: "j", children: /* @__PURE__ */ jsx("path", { d: "M234 138h47v56h-47Zm0 0" }) }),
|
|
5133
|
-
/* @__PURE__ */ jsx("clipPath", { id: "k", children: /* @__PURE__ */ jsx("path", { d: "m238.195 136.066 44.711 3.973-5.031 56.582-44.707-3.973Zm0 0" }) }),
|
|
5134
|
-
/* @__PURE__ */ jsx("clipPath", { id: "l", children: /* @__PURE__ */ jsx("path", { d: "M234.363 179.344c4.114-11.59 6.422-13.04 6.653-13.918.101-.293-.164-.692-.164-.692s.046-.523.07-.82c-.047-.305.008-.902.008-.902s.12-.516.222-.809c.098-.289.22-.805.22-.805s.339-.421.44-.714c.106-.368.004-.903.118-1.344.047-.52.168-1.035.289-1.55.191-.435.386-.946.722-1.364.266-.43.602-.852 1.008-1.192a3.8 3.8 0 0 1 1.211-.945c.32-.195.535-.101.785-.379.489-.41.657-1.445 1.34-2.363.953-1.418 2.848-3.281 4.418-4.867 1.656-1.735 3.34-3.766 5.336-5.09 1.918-1.258 4.125-2.414 6.477-2.656 2.59-.371 6.398-.11 8.457 1.277 1.84 1.289 2.632 4.219 3.648 6.336.953 1.965 1.602 3.976 2.172 5.984.644 2.086.879 4.512 1.316 6.356.395 1.465.942 2.941 1.168 3.785.114.387.102.539.223.848.05.304.145.917.145.917s-.051.594-.079.895c-.027.297-.003.902-.003.902s-.204.582-.305.875c-.102.29-.23.88-.23.88s-.344.495-.52.78c-.102.293-.445.79-.445.79s-.415.414-.657.617c-.168.21-.582.625-.59.699 0 0-.546.254-.789.457-.238.129-.793.453-.793.453s-.543.18-.855.3c-.305.052-.848.227-.848.227s-.758.083-.906.07c-.082.067-.23.055-.23.055l.074.004c-.028.301-4.328 2.172-6.262 3.657-1.937 1.48-3.695 3.504-5.367 5.386-1.582 1.739-2.211 3.711-4.383 5.325-3.227 2.492-11.8 7.597-14.488 6.53-1.668-.675-1.344-5.155-2.406-5.929-.555-.5-1.286.113-1.926-.32-1.418-.953-4.274-7.746-4.274-7.746" }) }),
|
|
5135
|
-
/* @__PURE__ */ jsx("clipPath", { id: "n", children: /* @__PURE__ */ jsx("path", { d: "M.352.469h46.484V56H.352Zm0 0" }) }),
|
|
5136
|
-
/* @__PURE__ */ jsx("clipPath", { id: "o", children: /* @__PURE__ */ jsx("path", { d: "M4.195-1.934 48.906 2.04l-5.031 56.582-44.707-3.973Zm0 0" }) }),
|
|
5137
|
-
/* @__PURE__ */ jsx("clipPath", { id: "p", children: /* @__PURE__ */ jsx("path", { d: "M.363 41.344c4.114-11.59 6.422-13.04 6.653-13.918.101-.293-.164-.692-.164-.692s.046-.523.07-.82c-.047-.305.008-.902.008-.902s.12-.516.222-.809c.098-.289.22-.805.22-.805s.339-.421.44-.714c.106-.368.004-.903.118-1.344.047-.52.168-1.035.289-1.55.191-.435.386-.946.722-1.364.266-.43.602-.852 1.008-1.192a3.8 3.8 0 0 1 1.211-.945c.32-.195.535-.102.785-.379.489-.41.657-1.445 1.34-2.363.953-1.418 2.848-3.281 4.418-4.867 1.656-1.735 3.34-3.766 5.336-5.09 1.918-1.258 4.125-2.414 6.477-2.656 2.59-.372 6.398-.11 8.457 1.277 1.84 1.289 2.632 4.219 3.648 6.336.953 1.965 1.602 3.976 2.172 5.984.645 2.086.879 4.512 1.316 6.356.395 1.465.942 2.941 1.168 3.785.114.387.102.539.223.848.05.304.145.918.145.918s-.051.593-.079.894c-.027.297-.004.902-.004.902l-.304.875c-.102.29-.23.88-.23.88s-.344.495-.52.78c-.102.294-.446.79-.446.79s-.414.414-.656.617c-.168.21-.582.625-.59.699 0 0-.546.254-.789.457-.238.129-.793.453-.793.453s-.543.18-.855.3c-.305.052-.848.227-.848.227s-.758.083-.906.07c-.082.067-.23.056-.23.056l.074.003c-.028.301-4.328 2.172-6.262 3.657-1.937 1.48-3.695 3.504-5.367 5.386-1.582 1.739-2.211 3.711-4.383 5.325-3.227 2.492-11.8 7.597-14.488 6.53-1.668-.675-1.344-5.155-2.406-5.929-.555-.5-1.286.113-1.926-.32-1.418-.953-4.274-7.746-4.274-7.746" }) }),
|
|
5138
|
-
/* @__PURE__ */ jsx("clipPath", { id: "m", children: /* @__PURE__ */ jsx("path", { d: "M0 0h47v56H0z" }) }),
|
|
5139
|
-
/* @__PURE__ */ jsx("clipPath", { id: "q", children: /* @__PURE__ */ jsx("path", { d: "M208.371 295.906h14.531v15.64h-14.53Zm0 0" }) }),
|
|
5140
|
-
/* @__PURE__ */ jsx("clipPath", { id: "r", children: /* @__PURE__ */ jsx("path", { d: "M221.105 301.012c1.352 6.812 1.051 7.261.528 7.863-.75.82-2.324 1.945-3.371 2.32-.75.297-1.274.375-2.024.297-1.12-.148-2.843-.672-3.816-1.496-1.05-.824-1.871-2.473-2.172-3.52-.227-.75-.3-1.273-.148-2.023.222-1.121.972-2.918 1.644-3.742.524-.598.973-.973 1.649-1.274 1.046-.449 2.77-.898 4.042-.75 1.274.227 2.848 1.2 3.668 1.875.602.524.903.973 1.125 1.723.45 1.047.825 2.844.524 4.043-.297 1.274-1.274 2.77-2.098 3.594-.523.523-1.12.824-1.719 1.047-.675.3-1.273.523-2.023.449-1.125 0-2.922-.297-3.969-1.047-1.047-.676-2.097-1.95-2.547-3.219-.375-1.199.524-3.672 0-4.047-.375-.296-1.496.75-1.796.45-.524-.371 0-3.22.675-4.493.746-1.195 2.172-2.394 3.52-2.843 1.348-.45 3.293-.301 4.566.148.973.375 1.797 1.051 2.473 1.871.598.75 1.27 2.774 1.27 2.774" }) }),
|
|
5141
|
-
/* @__PURE__ */ jsx("clipPath", { id: "t", children: /* @__PURE__ */ jsx("path", { d: "M.371.906h14.531v15.64H.372Zm0 0" }) }),
|
|
5142
|
-
/* @__PURE__ */ jsx("clipPath", { id: "u", children: /* @__PURE__ */ jsx("path", { d: "M13.105 6.012c1.352 6.812 1.051 7.261.528 7.863-.75.82-2.324 1.945-3.371 2.32-.75.297-1.274.375-2.024.297-1.12-.148-2.843-.672-3.816-1.496-1.05-.824-1.871-2.473-2.172-3.52-.227-.75-.3-1.273-.148-2.023.222-1.121.972-2.918 1.644-3.742.524-.598.973-.973 1.649-1.274 1.046-.449 2.77-.898 4.043-.75 1.273.227 2.847 1.2 3.667 1.876.602.523.903.972 1.125 1.722.45 1.047.825 2.844.524 4.043-.297 1.274-1.274 2.77-2.098 3.594-.523.523-1.12.824-1.719 1.047-.675.3-1.273.523-2.023.449-1.125 0-2.922-.297-3.969-1.047-1.047-.676-2.097-1.95-2.547-3.219-.375-1.199.524-3.672 0-4.047-.375-.296-1.496.75-1.796.45-.524-.371 0-3.22.675-4.492.746-1.196 2.172-2.395 3.52-2.844 1.348-.45 3.293-.301 4.566.148.973.375 1.797 1.051 2.473 1.871.598.75 1.27 2.774 1.27 2.774" }) }),
|
|
5143
|
-
/* @__PURE__ */ jsx("clipPath", { id: "s", children: /* @__PURE__ */ jsx("path", { d: "M0 0h15v17H0z" }) }),
|
|
5144
|
-
/* @__PURE__ */ jsx("clipPath", { id: "v", children: /* @__PURE__ */ jsx("path", { d: "M209.648 295.434h19.938v18.156h-19.938Zm0 0" }) }),
|
|
5145
|
-
/* @__PURE__ */ jsx("clipPath", { id: "w", children: /* @__PURE__ */ jsx("path", { d: "M216.766 298.54c4.34-3.071 6.289-3.071 7.636-2.548 1.422.602 2.844 1.875 3.446 3.223.672 1.273.746 3.293.523 4.64-.226 1.051-.75 1.723-1.496 2.77-1.352 1.648-4.57 4.418-6.367 5.617-1.121.676-1.946 1.051-2.996 1.2-1.047.148-2.172.148-3.219-.301-1.273-.45-2.996-1.871-3.742-2.996-.602-.973-.824-2.094-.903-3.145 0-1.047.079-2.172.676-3.219.899-1.422 3.219-2.922 5.016-4.117 1.797-1.273 4.27-2.695 5.844-3.144.824-.227 1.496-.227 2.171-.153.747.074 1.422.153 2.168.602 1.051.523 2.547 1.797 3.223 2.992.672 1.2.824 3.144.746 4.344-.074.824-.222 1.347-.672 2.097-.675.973-1.945 2.473-3.144 3.07-1.274.598-3.07.75-4.418.524-1.348-.3-2.922-1.422-3.746-2.246-.598-.598-.899-1.125-1.196-1.945-.375-1.125-.601-2.996-.3-4.344.375-1.348 1.347-2.848 2.472-3.672 1.121-.82 2.77-1.422 4.117-1.422 1.422 0 3.07.524 4.192 1.348 1.125.824 2.098 2.473 2.547 3.594.226.824.226 1.5.226 2.246 0 .75-.078 1.425-.449 2.172-.527 1.05-1.648 2.699-2.848 3.37-1.046.598-2.695.075-3.742.598-.898.528-1.05 1.875-2.023 2.547-1.2.75-3.145 1.422-4.64 1.274-1.5-.149-3.298-1.121-4.345-2.098-.824-.746-1.347-1.723-1.574-2.844-.3-1.347-.148-3.37.375-4.793.524-1.273 1.422-2.172 2.621-3.293 1.649-1.5 4.868-3.82 6.813-4.57 1.199-.375 2.023-.523 3.148-.3 1.27.226 3.145 1.124 4.117 2.25.899 1.12 1.497 3.07 1.57 4.417a6 6 0 0 1-.82 2.992c-.449.899-1.05 1.575-2.097 2.325-1.871 1.347-6.89 3.52-8.91 3.742-.977.148-1.5 0-2.246-.301-1.125-.523-2.848-1.57-3.598-2.77-.746-1.273-1.047-3.07-.82-4.492.222-1.422 1.195-2.996 2.32-3.894 1.121-.899 4.344-1.348 4.344-1.348" }) }),
|
|
5146
|
-
/* @__PURE__ */ jsx("clipPath", { id: "y", children: /* @__PURE__ */ jsx("path", { d: "M.648.434h19.938V18.59H.648Zm0 0" }) }),
|
|
5147
|
-
/* @__PURE__ */ jsx("clipPath", { id: "z", children: /* @__PURE__ */ jsx("path", { d: "M7.766 3.54C12.106.468 14.055.468 15.402.991c1.422.602 2.844 1.875 3.446 3.223.672 1.273.746 3.293.523 4.64-.226 1.051-.75 1.723-1.496 2.77-1.352 1.648-4.57 4.418-6.367 5.617-1.121.676-1.945 1.051-2.996 1.2-1.047.148-2.172.148-3.219-.301-1.273-.45-2.996-1.871-3.742-2.996C.949 14.172.727 13.05.648 12c0-1.047.079-2.172.676-3.219C2.223 7.36 4.543 5.86 6.34 4.664c1.797-1.273 4.27-2.695 5.844-3.144.824-.227 1.496-.227 2.171-.153.747.074 1.422.153 2.168.602 1.051.523 2.547 1.797 3.223 2.992.672 1.2.824 3.144.746 4.344-.074.824-.222 1.347-.672 2.097-.675.973-1.945 2.473-3.144 3.07-1.274.598-3.07.75-4.418.524-1.348-.3-2.922-1.422-3.746-2.246-.598-.598-.899-1.125-1.196-1.945-.375-1.125-.601-2.996-.3-4.344.375-1.348 1.347-2.848 2.472-3.672 1.121-.82 2.77-1.422 4.117-1.422 1.422 0 3.07.524 4.192 1.348 1.125.824 2.098 2.473 2.547 3.594.226.824.226 1.5.226 2.246 0 .75-.078 1.425-.449 2.172-.527 1.05-1.648 2.699-2.848 3.37-1.046.598-2.695.075-3.742.598-.898.528-1.05 1.875-2.023 2.547-1.2.75-3.145 1.422-4.64 1.274-1.5-.149-3.298-1.121-4.345-2.098-.824-.746-1.347-1.723-1.574-2.844-.3-1.347-.148-3.37.375-4.793.524-1.273 1.422-2.172 2.621-3.293 1.649-1.5 4.868-3.82 6.813-4.57 1.199-.375 2.023-.523 3.148-.3 1.27.226 3.145 1.124 4.117 2.25.899 1.12 1.497 3.07 1.57 4.417a6 6 0 0 1-.82 2.992c-.449.899-1.05 1.575-2.097 2.325-1.871 1.347-6.89 3.52-8.91 3.742-.977.148-1.5 0-2.246-.301-1.125-.523-2.848-1.57-3.598-2.77-.746-1.273-1.047-3.07-.82-4.492.222-1.422 1.195-2.996 2.32-3.894 1.121-.899 4.344-1.348 4.344-1.348" }) }),
|
|
5148
|
-
/* @__PURE__ */ jsx("clipPath", { id: "x", children: /* @__PURE__ */ jsx("path", { d: "M0 0h21v19H0z" }) }),
|
|
5149
|
-
/* @__PURE__ */ jsx("clipPath", { id: "A", children: /* @__PURE__ */ jsx("path", { d: "M217.336 310.973h1.476v1.246h-1.476Zm0 0" }) }),
|
|
5150
|
-
/* @__PURE__ */ jsx("clipPath", { id: "B", children: /* @__PURE__ */ jsx("path", { d: "M218.785 311.418c-.672 1.05-1.273.824-1.347.602-.149-.153-.075-.825.148-.977.226-.148.976.078.976.078" }) }),
|
|
5151
|
-
/* @__PURE__ */ jsx("clipPath", { id: "D", children: /* @__PURE__ */ jsx("path", { d: "M.336.973h1.477v1.246H.335Zm0 0" }) }),
|
|
5152
|
-
/* @__PURE__ */ jsx("clipPath", { id: "E", children: /* @__PURE__ */ jsx("path", { d: "M1.785 1.418c-.672 1.05-1.273.824-1.347.602-.149-.153-.075-.825.148-.977.227-.148.977.078.977.078" }) }),
|
|
5153
|
-
/* @__PURE__ */ jsx("clipPath", { id: "C", children: /* @__PURE__ */ jsx("path", { d: "M0 0h2v3H0z" }) }),
|
|
5154
|
-
/* @__PURE__ */ jsx("clipPath", { id: "F", children: /* @__PURE__ */ jsx("path", { d: "M218.293 310.45h1.477v1.218h-1.477Zm0 0" }) }),
|
|
5155
|
-
/* @__PURE__ */ jsx("clipPath", { id: "G", children: /* @__PURE__ */ jsx("path", { d: "M219.758 310.895c-.672.972-1.27.824-1.422.597-.074-.222 0-.82.226-.972.149-.149.973.074.973.074" }) }),
|
|
5156
|
-
/* @__PURE__ */ jsx("clipPath", { id: "I", children: /* @__PURE__ */ jsx("path", { d: "M.293.45H1.77v1.218H.293Zm0 0" }) }),
|
|
5157
|
-
/* @__PURE__ */ jsx("clipPath", { id: "J", children: /* @__PURE__ */ jsx("path", { d: "M1.758.895c-.672.972-1.27.824-1.422.597-.074-.222 0-.82.226-.972.149-.149.973.074.973.074" }) }),
|
|
5158
|
-
/* @__PURE__ */ jsx("clipPath", { id: "H", children: /* @__PURE__ */ jsx("path", { d: "M0 0h2v2H0z" }) }),
|
|
5159
|
-
/* @__PURE__ */ jsx("clipPath", { id: "K", children: /* @__PURE__ */ jsx("path", { d: "M219.598 299.277h17.68v13.203h-17.68Zm0 0" }) }),
|
|
5160
|
-
/* @__PURE__ */ jsx("clipPath", { id: "L", children: /* @__PURE__ */ jsx("path", { d: "M220.059 309.098c3.52-.672 3.445-.223 3.296.074-.226.601-1.574 1.797-2.097 1.871-.375 0-.824-.148-.899-.371-.152-.227-.152-.75.149-1.125.523-.672 2.996-1.797 3.894-1.723.45.074.899.375.899.676.074.746-3.07 3.668-4.043 3.895-.45.074-.973-.079-1.125-.301-.149-.301-.149-.676.152-1.2 1.27-2.019 13.703-11.082 15.797-11.53.527-.15.824-.075.977.148.148.226.148.976-.079 1.125-.222.148-1.12-.149-1.27-.375-.077-.227.372-.973.599-.973.222-.074.898.672.898 1.121-.074.602-1.047 1.274-2.172 2.172-2.547 2.246-11.68 9.438-13.777 9.813-.602.074-.973-.079-1.125-.301-.149-.301-.074-.75.152-1.2.524-.824 2.918-2.921 3.89-2.996.45-.074 1.052.301 1.126.602.074.297-.301.824-.676 1.195-.672.528-2.695 1.575-3.367 1.348-.524-.148-.973-.898-.899-1.348.075-.597 1.57-1.644 2.098-1.797.371 0 .746.153.898.375.149.227.075.75-.152 1.051-.375.524-1.945 1.27-2.621 1.196-.45 0-.898-.297-.973-.524-.074-.223.45-.898.45-.898" }) }),
|
|
5161
|
-
/* @__PURE__ */ jsx("clipPath", { id: "N", children: /* @__PURE__ */ jsx("path", { d: "M.598.277h17.629V13.48H.597Zm0 0" }) }),
|
|
5162
|
-
/* @__PURE__ */ jsx("clipPath", { id: "O", children: /* @__PURE__ */ jsx("path", { d: "M1.059 10.098c3.52-.672 3.445-.223 3.296.074-.226.601-1.574 1.797-2.097 1.871-.375 0-.824-.148-.899-.371-.152-.227-.152-.75.149-1.125.523-.672 2.996-1.797 3.894-1.723.45.074.899.375.899.676.074.746-3.07 3.668-4.043 3.895-.45.074-.973-.079-1.125-.301-.149-.301-.149-.676.152-1.2C2.555 9.876 14.988.814 17.082.365c.527-.15.824-.075.977.148.148.226.148.976-.079 1.125-.222.148-1.12-.149-1.27-.375-.077-.227.372-.973.599-.973.222-.074.898.672.898 1.121-.074.602-1.047 1.274-2.172 2.172-2.547 2.246-11.68 9.438-13.777 9.813-.602.074-.973-.079-1.125-.301-.149-.301-.074-.75.152-1.2.524-.824 2.918-2.921 3.89-2.996.45-.074 1.052.301 1.126.602.074.297-.301.824-.676 1.195-.672.528-2.695 1.575-3.367 1.348-.524-.148-.973-.898-.899-1.348.075-.597 1.57-1.644 2.098-1.797.371 0 .746.153.898.375.149.227.075.75-.152 1.051-.375.524-1.945 1.27-2.621 1.196-.45 0-.898-.297-.973-.524-.074-.223.45-.898.45-.898" }) }),
|
|
5163
|
-
/* @__PURE__ */ jsx("clipPath", { id: "M", children: /* @__PURE__ */ jsx("path", { d: "M0 0h19v14H0z" }) })
|
|
5164
|
-
] }),
|
|
5165
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M371.305 206.941c-39.774 36.051-79.696 82.52-108.383 128.063 53.914 15.387 115.422 6.57 148.578-40.621 35.031-49.863 43.383-121.371 43.68-182.168-57.188 5.707-126.149 16.566-174.356 49.781-45.969 31.664-56.183 88.227-42.883 139.563 1.66 6.406-1.812 11.761-7.93 12.742-5.144.828-9.87-2.465-11.335-8.61-14.313-60.03-2.45-123.324 50.512-159.949 38.187-26.406 88.464-39.762 134.207-46.887 20.578-3.203 40.144-6.113 60.902-6.882 14.265-.524 10.566 19.613 10.363 34.039-.805 57.086-10.691 120.383-40.129 169.824-38.336 64.387-112.773 77.242-182.097 57.098-10.207 17.16-18.996 34.367-25.02 53.105-1.883 5.863-5.027 9.633-10.906 9.059-5.133-.5-10.938-5.602-8.95-12.207 6.087-20.204 15.313-38.317 25.653-56.832 34.168-61.176 91.586-127.196 145.52-171.75 4.273-3.532 10.687-.446 12.824 2.808 2.86 4.356 2.465 10.676-2.239 14.149-6.503 4.797-12 10.222-18.011 15.672Zm0 0" }) }),
|
|
5166
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#c)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#d)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M199.469 155.277c-6.543 53.286-6.383 114.547 1.676 167.762 50.859-23.59 91.648-70.469 85.894-127.855-6.078-60.637-46.496-120.211-86.008-166.414-39.55 41.695-84.644 94.988-99.422 151.636-14.09 54.008 15.149 103.492 58.77 133.653 5.441 3.761 6.312 10.086 2.324 14.824-3.351 3.992-9.078 4.59-14.203.894-50.07-36.074-82.46-91.734-66.32-154.07 11.64-44.945 40.965-87.91 70.925-123.203 13.48-15.875 26.387-30.867 41.594-45.016 10.453-9.722 20.817 7.938 30.09 18.989 36.703 43.726 70.594 98.093 80.629 154.753 13.074 73.79-34.86 132.168-100.492 162.239 3.488 19.656 8.086 38.426 15.777 56.543 2.406 5.668 2.488 10.578-2.336 13.984-4.21 2.977-11.937 2.91-14.75-3.387-8.601-19.27-13.457-39.011-17.734-59.785-14.125-68.629-13.82-156.12-2.125-225.094.926-5.464 7.797-7.324 11.539-6.257 5.012 1.43 8.844 6.465 7.555 12.172-1.786 7.882-2.399 15.578-3.387 23.628Zm0 0" }) }) }) }),
|
|
5167
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#e)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#f)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#g)", transform: "translate(200 173)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#h)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#i)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-304.775-265.565h685.8v605.88h-685.8z" }) }) }) }) }) }),
|
|
5168
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#j)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#k)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#l)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#m)", transform: "translate(234 138)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#n)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#o)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#p)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "m1.438-4.57 50.644 4.5-5.5 61.922-50.648-4.5Zm0 0" }) }) }) }) }) }) }) }),
|
|
5169
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#q)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#r)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#s)", transform: "translate(208 295)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#t)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#u)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-312.775-387.565h685.8v605.88h-685.8z" }) }) }) }) }) }),
|
|
5170
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#v)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#w)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#x)", transform: "translate(209 295)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#y)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#z)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-313.775-387.565h685.8v605.88h-685.8z" }) }) }) }) }) }),
|
|
5171
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#A)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#B)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#C)", transform: "translate(217 310)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#D)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#E)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-321.775-402.565h685.8v605.88h-685.8z" }) }) }) }) }) }),
|
|
5172
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#F)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#G)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#H)", transform: "translate(218 310)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#I)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#J)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-322.775-402.565h685.8v605.88h-685.8z" }) }) }) }) }) }),
|
|
5173
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#K)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#L)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#M)", transform: "translate(219 299)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#N)", children: /* @__PURE__ */ jsx("g", { clipPath: "url(#O)", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M-323.775-391.565h685.8v605.88h-685.8z" }) }) }) }) }) })
|
|
5174
|
-
] });
|
|
5175
|
-
const Vegetarian = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "-107 0 483 324", ...props, children: [
|
|
5176
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M0 .45h267.754v323.1H0Zm0 0" }) }) }),
|
|
5177
|
-
/* @__PURE__ */ jsxs("g", { fill: "#F95524", clipPath: "url(#a)", children: [
|
|
5178
|
-
/* @__PURE__ */ jsx("path", { d: "M163.938 115.43c-39.727 36.007-79.602 82.425-108.25 127.91 53.847 15.37 115.28 6.562 148.398-40.574 34.988-49.801 43.328-121.223 43.625-181.946-57.121 5.7-125.996 16.547-174.148 49.723-45.91 31.625-56.11 88.121-42.829 139.395 1.657 6.398-1.812 11.746-7.918 12.722-5.14.828-9.859-2.457-11.324-8.597C-2.805 154.105 9.047 90.887 61.945 54.304c38.14-26.375 88.356-39.711 134.043-46.828 20.551-3.2 40.098-6.106 60.828-6.872 14.25-.527 10.551 19.59 10.352 33.997-.805 57.015-10.68 120.234-40.082 169.617-38.29 64.308-112.637 77.148-181.879 57.031-10.191 17.137-18.973 34.324-24.984 53.04-1.883 5.855-5.024 9.624-10.899 9.046-5.12-.5-10.922-5.594-8.933-12.188 6.078-20.183 15.289-38.273 25.62-56.77C60.138 193.282 117.485 127.34 171.356 82.84c4.266-3.528 10.672-.445 12.805 2.805 2.86 4.351 2.465 10.66-2.234 14.128-6.496 4.793-11.98 10.211-17.988 15.653Zm0 0" }),
|
|
5179
|
-
/* @__PURE__ */ jsx("path", { d: "M163.938 115.43c-39.727 36.007-79.602 82.425-108.25 127.91 53.847 15.37 115.28 6.562 148.398-40.574 34.988-49.801 43.328-121.223 43.625-181.946-57.121 5.7-125.996 16.547-174.148 49.723-45.91 31.625-56.11 88.121-42.829 139.395 1.657 6.398-1.812 11.746-7.918 12.722-5.14.828-9.859-2.457-11.324-8.597C-2.805 154.105 9.047 90.887 61.945 54.304c38.14-26.375 88.356-39.711 134.043-46.828 20.551-3.2 40.098-6.106 60.828-6.872 14.25-.527 10.551 19.59 10.352 33.997-.805 57.015-10.68 120.234-40.082 169.617-38.29 64.308-112.637 77.148-181.879 57.031-10.191 17.137-18.973 34.324-24.984 53.04-1.883 5.855-5.024 9.624-10.899 9.046-5.12-.5-10.922-5.594-8.933-12.188 6.078-20.183 15.289-38.273 25.62-56.77C60.138 193.282 117.485 127.34 171.356 82.84c4.266-3.528 10.672-.445 12.805 2.805 2.86 4.351 2.465 10.66-2.234 14.128-6.496 4.793-11.98 10.211-17.988 15.653Zm0 0" })
|
|
5180
|
-
] })
|
|
5181
|
-
] });
|
|
5182
5130
|
const DEFAULT_DIETARY_PERCENTAGE = {
|
|
5183
5131
|
carnivore: 0.3,
|
|
5184
5132
|
vegetarian: 0.5
|
|
5185
5133
|
};
|
|
5134
|
+
const DIETARY_PATH = "/artifacts/images/survey/dietary_restrictions";
|
|
5186
5135
|
const numberOfVegetariansQuestion = createQuestion({
|
|
5187
5136
|
id: "number_of_vegetarians",
|
|
5188
5137
|
getValidator: () => yup.number().required().min(0),
|
|
5189
5138
|
content: {
|
|
5190
5139
|
titleEn: "Vegetarians",
|
|
5191
5140
|
titleDe: "Vegetarier",
|
|
5192
|
-
|
|
5141
|
+
image: `${DIETARY_PATH}/vegetarian.svg`
|
|
5193
5142
|
}
|
|
5194
5143
|
});
|
|
5195
5144
|
const numberOfVegansQuestion = createQuestion({
|
|
@@ -5198,7 +5147,7 @@ const numberOfVegansQuestion = createQuestion({
|
|
|
5198
5147
|
content: {
|
|
5199
5148
|
titleEn: "Vegans",
|
|
5200
5149
|
titleDe: "Veganer",
|
|
5201
|
-
|
|
5150
|
+
image: `${DIETARY_PATH}/vegan.svg`
|
|
5202
5151
|
}
|
|
5203
5152
|
});
|
|
5204
5153
|
const numberOfCarnivoresQuestion = createQuestion({
|
|
@@ -5207,7 +5156,7 @@ const numberOfCarnivoresQuestion = createQuestion({
|
|
|
5207
5156
|
content: {
|
|
5208
5157
|
titleEn: "Carnivore",
|
|
5209
5158
|
titleDe: "Fleischesser",
|
|
5210
|
-
|
|
5159
|
+
image: `${DIETARY_PATH}/meat.svg`
|
|
5211
5160
|
}
|
|
5212
5161
|
});
|
|
5213
5162
|
function _typeof$1(o) {
|
|
@@ -8332,9 +8281,13 @@ function useQualification({
|
|
|
8332
8281
|
return;
|
|
8333
8282
|
}
|
|
8334
8283
|
if (prevQuestionId !== (question == null ? void 0 : question.id)) {
|
|
8335
|
-
|
|
8284
|
+
const stepIndex = context.state.qualification.stepIndex;
|
|
8285
|
+
const enabledSteps = context.state.qualification.steps.filter(
|
|
8286
|
+
(s3) => !s3.disabled
|
|
8287
|
+
);
|
|
8288
|
+
onQuestionChange(question, stepIndex, enabledSteps.length);
|
|
8336
8289
|
}
|
|
8337
|
-
}, [onQuestionChange, prevQuestionId, question]);
|
|
8290
|
+
}, [onQuestionChange, prevQuestionId, question, status, context.state]);
|
|
8338
8291
|
return context;
|
|
8339
8292
|
}
|
|
8340
8293
|
const QualificationContext = createContext(
|
|
@@ -10900,7 +10853,7 @@ const DietaryStepper = ({ question, autoFocus }) => {
|
|
|
10900
10853
|
() => {
|
|
10901
10854
|
var _a2, _b;
|
|
10902
10855
|
return {
|
|
10903
|
-
|
|
10856
|
+
image: ((_a2 = question == null ? void 0 : question.content) == null ? void 0 : _a2.image) ? getAssetUrl(question.content.image) : void 0,
|
|
10904
10857
|
label: (_b = question.content) == null ? void 0 : _b[localizedAttributeName("title")]
|
|
10905
10858
|
};
|
|
10906
10859
|
},
|
|
@@ -10913,7 +10866,6 @@ const DietaryStepper = ({ question, autoFocus }) => {
|
|
|
10913
10866
|
const handleChange = (value) => {
|
|
10914
10867
|
actions.answerQuestion(question.id, value);
|
|
10915
10868
|
};
|
|
10916
|
-
const { IconComponent } = localizedOptions;
|
|
10917
10869
|
return /* @__PURE__ */ jsx(Box, { my: 2, children: /* @__PURE__ */ jsxs(GridWrapper$1, { children: [
|
|
10918
10870
|
/* @__PURE__ */ jsxs(
|
|
10919
10871
|
Box,
|
|
@@ -10922,7 +10874,13 @@ const DietaryStepper = ({ question, autoFocus }) => {
|
|
|
10922
10874
|
alignItems: "center",
|
|
10923
10875
|
justifyContent: { xs: "center", sm: "start" },
|
|
10924
10876
|
children: [
|
|
10925
|
-
|
|
10877
|
+
(localizedOptions == null ? void 0 : localizedOptions.image) && /* @__PURE__ */ jsx(IconWrapper$3, { children: /* @__PURE__ */ jsx(
|
|
10878
|
+
StyledImg$1,
|
|
10879
|
+
{
|
|
10880
|
+
alt: "",
|
|
10881
|
+
src: localizedOptions == null ? void 0 : localizedOptions.image
|
|
10882
|
+
}
|
|
10883
|
+
) }),
|
|
10926
10884
|
/* @__PURE__ */ jsx(Typography, { variant: "body1", pl: 1, children: localizedOptions.label })
|
|
10927
10885
|
]
|
|
10928
10886
|
}
|
|
@@ -10947,6 +10905,11 @@ const IconWrapper$3 = styled.div`
|
|
|
10947
10905
|
justify-content: center;
|
|
10948
10906
|
flex-shrink: 0;
|
|
10949
10907
|
`;
|
|
10908
|
+
const StyledImg$1 = styled.img`
|
|
10909
|
+
width: 100%;
|
|
10910
|
+
height: 100%;
|
|
10911
|
+
object-fit: contain;
|
|
10912
|
+
`;
|
|
10950
10913
|
const GridWrapper$1 = styled.div`
|
|
10951
10914
|
display: grid;
|
|
10952
10915
|
align-items: center;
|
|
@@ -11225,6 +11188,86 @@ function FullServiceIcon(props) {
|
|
|
11225
11188
|
}
|
|
11226
11189
|
);
|
|
11227
11190
|
}
|
|
11191
|
+
function trackFunnelEvent(action2, properties) {
|
|
11192
|
+
const eventName = `funnel_${action2}`;
|
|
11193
|
+
if (typeof window === "undefined") return;
|
|
11194
|
+
if (window.posthog) {
|
|
11195
|
+
window.posthog.capture(eventName, properties);
|
|
11196
|
+
}
|
|
11197
|
+
if (window.dataLayer) {
|
|
11198
|
+
window.dataLayer.push({
|
|
11199
|
+
event: eventName,
|
|
11200
|
+
...properties
|
|
11201
|
+
});
|
|
11202
|
+
}
|
|
11203
|
+
}
|
|
11204
|
+
function trackFunnelStarted(mode, totalSteps) {
|
|
11205
|
+
trackFunnelEvent("started", {
|
|
11206
|
+
funnel_mode: mode,
|
|
11207
|
+
total_steps: totalSteps
|
|
11208
|
+
});
|
|
11209
|
+
}
|
|
11210
|
+
function trackStepViewed(mode, stepId, stepIndex, totalSteps) {
|
|
11211
|
+
trackFunnelEvent("step_viewed", {
|
|
11212
|
+
funnel_mode: mode,
|
|
11213
|
+
step_id: stepId,
|
|
11214
|
+
step_index: stepIndex,
|
|
11215
|
+
total_steps: totalSteps
|
|
11216
|
+
});
|
|
11217
|
+
}
|
|
11218
|
+
function trackAnswerSelected(mode, stepId, questionId, value) {
|
|
11219
|
+
trackFunnelEvent("answer_selected", {
|
|
11220
|
+
funnel_mode: mode,
|
|
11221
|
+
step_id: stepId,
|
|
11222
|
+
question_id: questionId,
|
|
11223
|
+
answer_value: value
|
|
11224
|
+
});
|
|
11225
|
+
}
|
|
11226
|
+
function trackStepCompleted(mode, stepId, stepIndex, totalSteps) {
|
|
11227
|
+
trackFunnelEvent("step_completed", {
|
|
11228
|
+
funnel_mode: mode,
|
|
11229
|
+
step_id: stepId,
|
|
11230
|
+
step_index: stepIndex,
|
|
11231
|
+
total_steps: totalSteps
|
|
11232
|
+
});
|
|
11233
|
+
}
|
|
11234
|
+
function trackFormSubmitted(mode, properties) {
|
|
11235
|
+
trackFunnelEvent("form_submitted", {
|
|
11236
|
+
funnel_mode: mode,
|
|
11237
|
+
...properties
|
|
11238
|
+
});
|
|
11239
|
+
}
|
|
11240
|
+
function trackFunnelCompleted(mode) {
|
|
11241
|
+
trackFunnelEvent("completed", {
|
|
11242
|
+
funnel_mode: mode
|
|
11243
|
+
});
|
|
11244
|
+
}
|
|
11245
|
+
const TrackingContext = createContext(null);
|
|
11246
|
+
function TrackingProvider({
|
|
11247
|
+
mode,
|
|
11248
|
+
currentStepId,
|
|
11249
|
+
children
|
|
11250
|
+
}) {
|
|
11251
|
+
const trackAnswer = useCallback(
|
|
11252
|
+
(questionId, value) => {
|
|
11253
|
+
trackAnswerSelected(mode, currentStepId, questionId, value);
|
|
11254
|
+
},
|
|
11255
|
+
[mode, currentStepId]
|
|
11256
|
+
);
|
|
11257
|
+
return /* @__PURE__ */ jsx(TrackingContext.Provider, { value: { mode, currentStepId, trackAnswer }, children });
|
|
11258
|
+
}
|
|
11259
|
+
function useTracking() {
|
|
11260
|
+
const context = useContext(TrackingContext);
|
|
11261
|
+
if (!context) {
|
|
11262
|
+
return {
|
|
11263
|
+
mode: "embedded",
|
|
11264
|
+
currentStepId: "",
|
|
11265
|
+
trackAnswer: () => {
|
|
11266
|
+
}
|
|
11267
|
+
};
|
|
11268
|
+
}
|
|
11269
|
+
return context;
|
|
11270
|
+
}
|
|
11228
11271
|
const tileIcons$1 = SERVICE_TYPE_ITEMS.map((item) => ({
|
|
11229
11272
|
id: item.value,
|
|
11230
11273
|
Icon: getIconForServiceType(item.value),
|
|
@@ -11250,6 +11293,7 @@ const ServiceTypeTiles = ({
|
|
|
11250
11293
|
}) => {
|
|
11251
11294
|
const { i18n } = useTranslation();
|
|
11252
11295
|
const isGerman = i18n.language === "de";
|
|
11296
|
+
const { trackAnswer } = useTracking();
|
|
11253
11297
|
return /* @__PURE__ */ jsx(TilesWrapper, { children: tileIcons$1.map(({ id, Icon, labelDe, labelEn, subtitleDe, subtitleEn }) => {
|
|
11254
11298
|
const label = isGerman ? labelDe : labelEn;
|
|
11255
11299
|
const subtitle = isGerman ? subtitleDe : subtitleEn;
|
|
@@ -11259,8 +11303,10 @@ const ServiceTypeTiles = ({
|
|
|
11259
11303
|
$variant: variant,
|
|
11260
11304
|
$selected: selected === id,
|
|
11261
11305
|
id: `tile__service-type--${id}`,
|
|
11306
|
+
"data-ph-capture-attribute-value": id,
|
|
11262
11307
|
onClick: (e2) => {
|
|
11263
11308
|
e2.currentTarget.blur();
|
|
11309
|
+
trackAnswer("service_type", id);
|
|
11264
11310
|
onSelect(id);
|
|
11265
11311
|
},
|
|
11266
11312
|
children: [
|
|
@@ -11321,149 +11367,8 @@ const SubtitleText = styled(Typography)`
|
|
|
11321
11367
|
font-size: 12px;
|
|
11322
11368
|
}
|
|
11323
11369
|
`;
|
|
11324
|
-
const
|
|
11325
|
-
|
|
11326
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.426 117H210v6H.426Zm0 0" }) }),
|
|
11327
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M11 136h189v5.758H11Zm0 0" }) }),
|
|
11328
|
-
/* @__PURE__ */ jsx("clipPath", { id: "c", children: /* @__PURE__ */ jsx("path", { d: "M.426 117H210v6H.426Zm0 0" }) }),
|
|
11329
|
-
/* @__PURE__ */ jsx("clipPath", { id: "d", children: /* @__PURE__ */ jsx("path", { d: "M11 136h189v5.758H11Zm0 0" }) })
|
|
11330
|
-
] }),
|
|
11331
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M145.633 122.777h-14.117c-8.989 0-17.461-3.53-23.852-9.945-6.371-6.394-9.883-14.84-9.883-23.781V50.098h81.73V89.05c0 8.933-3.534 17.383-9.96 23.789-6.434 6.406-14.926 9.937-23.918 9.937m-42.7-67.527v33.8c0 7.571 2.977 14.723 8.38 20.145 5.417 5.438 12.593 8.43 20.203 8.43h14.117c7.617 0 14.82-2.996 20.281-8.434 5.445-5.433 8.45-12.586 8.45-20.14V55.25Zm0 0" }),
|
|
11332
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M176.938 89.012h-2.575V50.098h21.88v19.457c0 10.73-8.661 19.457-19.305 19.457m2.574-33.762v28.375c6.578-1.227 11.578-7.07 11.578-14.07V55.25Zm0 0" }),
|
|
11333
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M.45 117.625h209.488v5.152H.448Zm0 0" }) }),
|
|
11334
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M101.855 122.777H76.461l-14.223-50.52.758-1.015c.29-.387 7.274-9.472 26.137-9.633 4.074 0 7.945.477 11.855 1.461l1.946.492v25.489c0 4.89 1.265 9.703 3.656 13.918l.527.93Zm-21.492-5.152h17.578l3.645-13.07A33.44 33.44 0 0 1 97.78 89.05V67.62a43 43 0 0 0-8.625-.863c-8.433.074-13.992 2.14-17.164 3.863-1.972 1.07-3.293 2.14-4.058 2.86Zm0 0" }),
|
|
11335
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M81.813 122.777h-26.52l-.773-1.078a6 6 0 0 0-.196-.27c-11.344-15.386-15.293-27.421-16.46-31.878l-.212-.793.29-.766c.07-.187 1.765-4.644 5.933-9.043 3.875-4.086 10.703-8.91 21.23-8.746l1.915.035Zm-23.887-5.152h17.086l-11.89-42.234c-13.161.691-18.735 10.832-20.048 13.691 3.278 11.656 11.07 23.324 14.852 28.543m0 0" }),
|
|
11336
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M61.426 122.777H30.28l-.77-.879c-2.866-3.28-4.323-6.535-4.323-9.675 0-5.496 5.125-11.805 15.667-19.29l2.715-1.925 1.184 3.11c1.96 5.144 5.898 13.48 13.527 23.984.246.34.41.566.48.671Zm-28.766-5.152h18.985c-5.133-7.52-8.395-13.848-10.434-18.559-6.95 5.313-10.871 10.032-10.871 13.157 0 1.593.8 3.445 2.32 5.402M122.613 122.777H96.508l7.047-25.277 3.047 5.488c3.554 6.407 9.656 11.278 16.738 13.364l3.687 1.085-2.406 2.997c-.289.359-.5.644-.672.87-.222.294-.379.508-.578.708Zm-19.32-5.152h10.422a33.9 33.9 0 0 1-8.375-7.352l-2.05 7.352Zm0 0" }),
|
|
11337
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M146.86 122.777h-1.075v-5.152h1.074Zm-15.505 0h-15.988l4.285-4.332q.07-.088.176-.23c.184-.246.434-.578.777-1.008l1.122-1.394 1.703.566c2.48.828 5.148 1.246 7.925 1.246Zm-11.648-4.382" }),
|
|
11338
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M11.348 136.809h187.691v5.152H11.348Zm0 0" }) }),
|
|
11339
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "m19.277 120.82 5-1.238 4.762 19.18-5 1.242ZM181.195 138.766l4.754-19.184 5 1.238-4.754 19.184ZM116.063 40.234c-.231-.12-5.633-2.957-6.813-8.402-.734-3.39.29-6.883 3.05-10.375 3.513-4.371 4.997-7.809 4.548-10.527-.375-2.266-2.207-4.418-5.594-6.57l2.762-4.348c4.699 2.984 7.285 6.281 7.914 10.078.71 4.305-1.067 8.937-5.602 14.578-1.738 2.2-2.433 4.242-2.05 6.05.648 3.06 4.117 4.923 4.152 4.938ZM141.215 40.227c-.227-.118-5.52-2.942-6.672-8.348-.73-3.402.309-6.91 3.082-10.422 3.512-4.371 4.992-7.809 4.543-10.527-.375-2.27-2.203-4.418-5.59-6.57l2.766-4.348c4.691 2.984 7.277 6.281 7.906 10.078.71 4.305-1.066 8.937-5.594 14.578-1.758 2.223-2.46 4.285-2.082 6.11.63 3.03 4.004 4.87 4.04 4.886ZM166.54 40.227c-.224-.118-5.52-2.942-6.677-8.348-.726-3.406.309-6.91 3.082-10.422 3.508-4.367 4.985-7.793 4.528-10.496-.387-2.277-2.254-4.434-5.711-6.59L164.492 0c4.778 2.984 7.414 6.29 8.059 10.102.73 4.296-1.043 8.925-5.574 14.566-1.758 2.223-2.461 4.281-2.082 6.11.632 3.027 4.007 4.87 4.042 4.886ZM145.633 122.777h-14.117c-8.989 0-17.461-3.53-23.852-9.945-6.371-6.394-9.883-14.84-9.883-23.781V50.098h81.73V89.05c0 8.933-3.534 17.383-9.96 23.789-6.434 6.406-14.926 9.937-23.918 9.937m-42.7-67.527v33.8c0 7.571 2.977 14.723 8.38 20.145 5.417 5.438 12.593 8.43 20.203 8.43h14.117c7.617 0 14.82-2.996 20.281-8.434 5.445-5.433 8.45-12.586 8.45-20.14V55.25Zm0 0" }),
|
|
11340
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M176.938 89.012h-2.575V50.098h21.88v19.457c0 10.73-8.661 19.457-19.305 19.457m2.574-33.762v28.375c6.578-1.227 11.578-7.07 11.578-14.07V55.25Zm0 0" }),
|
|
11341
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#c)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M.45 117.625h209.488v5.152H.448Zm0 0" }) }),
|
|
11342
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M101.855 122.777H76.461l-14.223-50.52.758-1.015c.29-.387 7.274-9.472 26.137-9.633 4.074 0 7.945.477 11.855 1.461l1.946.492v25.489c0 4.89 1.265 9.703 3.656 13.918l.527.93Zm-21.492-5.152h17.578l3.645-13.07A33.44 33.44 0 0 1 97.78 89.05V67.62a43 43 0 0 0-8.625-.863c-8.433.074-13.992 2.14-17.164 3.863-1.972 1.07-3.293 2.14-4.058 2.86Zm0 0" }),
|
|
11343
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M81.813 122.777h-26.52l-.773-1.078a6 6 0 0 0-.196-.27c-11.344-15.386-15.293-27.421-16.46-31.878l-.212-.793.29-.766c.07-.187 1.765-4.644 5.933-9.043 3.875-4.086 10.703-8.91 21.23-8.746l1.915.035Zm-23.887-5.152h17.086l-11.89-42.234c-13.161.691-18.735 10.832-20.048 13.691 3.278 11.656 11.07 23.324 14.852 28.543m0 0" }),
|
|
11344
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M61.426 122.777H30.28l-.77-.879c-2.866-3.28-4.323-6.535-4.323-9.675 0-5.496 5.125-11.805 15.667-19.29l2.715-1.925 1.184 3.11c1.96 5.144 5.898 13.48 13.527 23.984.246.34.41.566.48.671Zm-28.766-5.152h18.985c-5.133-7.52-8.395-13.848-10.434-18.559-6.95 5.313-10.871 10.032-10.871 13.157 0 1.593.8 3.445 2.32 5.402M122.613 122.777H96.508l7.047-25.277 3.047 5.488c3.554 6.407 9.656 11.278 16.738 13.364l3.687 1.085-2.406 2.997c-.289.359-.5.644-.672.87-.222.294-.379.508-.578.708Zm-19.32-5.152h10.422a33.9 33.9 0 0 1-8.375-7.352l-2.05 7.352Zm0 0" }),
|
|
11345
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M146.86 122.777h-1.075v-5.152h1.074Zm-15.505 0h-15.988l4.285-4.332q.07-.088.176-.23c.184-.246.434-.578.777-1.008l1.122-1.394 1.703.566c2.48.828 5.148 1.246 7.925 1.246Zm-11.648-4.382" }),
|
|
11346
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#d)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M11.348 136.809h187.691v5.152H11.348Zm0 0" }) }),
|
|
11347
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "m19.277 120.82 5-1.238 4.762 19.18-5 1.242ZM181.195 138.766l4.754-19.184 5 1.238-4.754 19.184ZM116.063 40.234c-.231-.12-5.633-2.957-6.813-8.402-.734-3.39.29-6.883 3.05-10.375 3.513-4.371 4.997-7.809 4.548-10.527-.375-2.266-2.207-4.418-5.594-6.57l2.762-4.348c4.699 2.984 7.285 6.281 7.914 10.078.71 4.305-1.067 8.937-5.602 14.578-1.738 2.2-2.433 4.242-2.05 6.05.648 3.06 4.117 4.923 4.152 4.938ZM141.215 40.227c-.227-.118-5.52-2.942-6.672-8.348-.73-3.402.309-6.91 3.082-10.422 3.512-4.371 4.992-7.809 4.543-10.527-.375-2.27-2.203-4.418-5.59-6.57l2.766-4.348c4.691 2.984 7.277 6.281 7.906 10.078.71 4.305-1.066 8.937-5.594 14.578-1.758 2.223-2.46 4.285-2.082 6.11.63 3.03 4.004 4.87 4.04 4.886ZM166.54 40.227c-.224-.118-5.52-2.942-6.677-8.348-.726-3.406.309-6.91 3.082-10.422 3.508-4.367 4.985-7.793 4.528-10.496-.387-2.277-2.254-4.434-5.711-6.59L164.492 0c4.778 2.984 7.414 6.29 8.059 10.102.73 4.296-1.043 8.925-5.574 14.566-1.758 2.223-2.461 4.281-2.082 6.11.632 3.027 4.007 4.87 4.042 4.886Zm0 0" })
|
|
11348
|
-
] });
|
|
11349
|
-
const Buffet = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 210.75 154.5", ...props, children: [
|
|
11350
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.215 0H210v153.254H.215Zm0 0" }) }) }),
|
|
11351
|
-
/* @__PURE__ */ jsxs("g", { fill: "#F95524", clipPath: "url(#a)", children: [
|
|
11352
|
-
/* @__PURE__ */ jsx("path", { d: "m209.855 123.785-4.097-60.668c-.446-6.613-5.676-11.597-12.172-11.597H16.566c-6.48 0-11.714 4.98-12.171 11.59l-4.11 59.37c-.37 5.356 3.668 10.176 9.395 11.211 1.675.301 3.23.383 4.683.309v16.031a3.29 3.29 0 0 0 3.29 3.29h26.132a3.29 3.29 0 0 0 3.29-3.29V131.56c4.362 1.984 9.304 3.98 15.445 3.187 3.855-.496 7.023-1.996 9.816-3.32 5.18-2.457 9.273-4.399 17.27-.52l.304.145c14.602 6.558 21.832 3.304 27.645.683 4.515-2.03 7.777-3.504 14.441-.804.316.129.594.226.899.324 16.78 5.25 24.695 3.644 30.187 1.164v17.613a3.286 3.286 0 0 0 3.285 3.29h26.137a3.286 3.286 0 0 0 3.285-3.29v-14.77q.736.065 1.45.063c1.472 0 2.894-.191 4.277-.578 5.246-1.453 8.675-5.96 8.34-10.96M20.938 146.746v-14.2c1.515-.57 2.925-1.237 4.273-1.878 2.582-1.223 5.016-2.375 7.84-2.742 2.703-.348 5.09.058 7.445.84v17.98Zm168.277 0h-19.559v-17.64c3.13-1.27 6.555-1.395 13.793 1.726.18.078.32.148.5.25 1.844 1.047 3.594 1.895 5.266 2.55Zm10.543-18.336c-1.414.395-3.305.625-6.207-.219a3 3 0 0 0-.172-.05c-1.691-.508-3.715-1.375-6.184-2.778a11 11 0 0 0-1.14-.57c-5.25-2.262-9.2-3.09-12.383-3.09-3.711 0-6.379 1.129-8.848 2.414l-.035.02c-.457.238-.91.484-1.36.726-4.96 2.692-10.581 5.746-28.57.114a5 5 0 0 1-.398-.145c-9.266-3.75-14.758-1.273-19.606.91-5.32 2.395-10.343 4.66-22.246-.691-.05-.02-.09-.043-.136-.063-10.832-5.25-17.27-2.199-22.953.496-2.582 1.223-5.016 2.38-7.84 2.743-4.782.617-8.563-1.122-12.942-3.137a94 94 0 0 0-3.629-1.606q-.076-.033-.16-.066c-3.691-1.496-7.832-2.645-12.742-2.012-3.852.496-7.02 1.996-9.812 3.32-3.75 1.778-6.993 3.313-11.543 2.493-2.422-.438-4.145-2.278-4.004-4.285l4.109-59.371c.215-3.118 2.629-5.47 5.613-5.47h177.016c2.988 0 5.402 2.352 5.613 5.466l4.094 60.671c.125 1.848-1.328 3.57-3.535 4.18M19.148 49.875H63.29c4.984 0 9.04-4.055 9.04-9.035 0-4.008-2.626-7.414-6.247-8.594-1.293-11.383-10.254-20.469-21.574-21.96V3.272a3.288 3.288 0 1 0-6.574 0v7.012c-11.325 1.492-20.282 10.578-21.575 21.961-3.62 1.18-6.246 4.586-6.246 8.594 0 4.98 4.055 9.035 9.035 9.035m44.141-6.574H19.15a2.46 2.46 0 0 1-2.458-2.461 2.46 2.46 0 0 1 2.457-2.461H63.29a2.46 2.46 0 1 1 0 4.922M41.22 16.64c9.054 0 16.597 6.55 18.152 15.16H23.066c1.559-8.61 9.102-15.16 18.153-15.16m41.789 33.234h44.14c4.98 0 9.036-4.055 9.036-9.035 0-4.008-2.625-7.414-6.246-8.594-1.293-11.383-10.25-20.469-21.575-21.96V3.272a3.288 3.288 0 1 0-6.574 0v7.012c-11.32 1.492-20.277 10.578-21.574 21.961-3.621 1.18-6.242 4.586-6.242 8.594 0 4.98 4.05 9.035 9.035 9.035m44.14-6.574h-44.14a2.466 2.466 0 0 1-2.461-2.461c0-1.36 1.105-2.461 2.46-2.461h44.141a2.46 2.46 0 0 1 2.457 2.46 2.46 2.46 0 0 1-2.457 2.462m-22.07-26.66c9.05 0 16.594 6.55 18.152 15.16H86.926c1.554-8.61 9.101-15.16 18.152-15.16m41.785 33.234h44.14c4.981 0 9.036-4.055 9.036-9.035 0-4.008-2.625-7.414-6.246-8.594-1.293-11.383-10.25-20.469-21.57-21.96V3.272a3.29 3.29 0 0 0-6.578 0v7.012c-11.32 1.492-20.278 10.578-21.57 21.961-3.622 1.18-6.247 4.586-6.247 8.594 0 4.98 4.055 9.035 9.035 9.035m44.14-6.574h-44.14a2.466 2.466 0 0 1-2.46-2.461c0-1.36 1.105-2.461 2.46-2.461h44.14a2.463 2.463 0 0 1 2.462 2.46 2.466 2.466 0 0 1-2.461 2.462m-22.07-26.66c9.051 0 16.598 6.55 18.153 15.16H150.78c1.555-8.61 9.102-15.16 18.153-15.16m0 0" }),
|
|
11353
|
-
/* @__PURE__ */ jsx("path", { d: "m209.855 123.785-4.097-60.668c-.446-6.613-5.676-11.597-12.172-11.597H16.566c-6.48 0-11.714 4.98-12.171 11.59l-4.11 59.37c-.37 5.356 3.668 10.176 9.395 11.211 1.675.301 3.23.383 4.683.309v16.031a3.29 3.29 0 0 0 3.29 3.29h26.132a3.29 3.29 0 0 0 3.29-3.29V131.56c4.362 1.984 9.304 3.98 15.445 3.187 3.855-.496 7.023-1.996 9.816-3.32 5.18-2.457 9.273-4.399 17.27-.52l.304.145c14.602 6.558 21.832 3.304 27.645.683 4.515-2.03 7.777-3.504 14.441-.804.316.129.594.226.899.324 16.78 5.25 24.695 3.644 30.187 1.164v17.613a3.286 3.286 0 0 0 3.285 3.29h26.137a3.286 3.286 0 0 0 3.285-3.29v-14.77q.736.065 1.45.063c1.472 0 2.894-.191 4.277-.578 5.246-1.453 8.675-5.96 8.34-10.96M20.938 146.746v-14.2c1.515-.57 2.925-1.237 4.273-1.878 2.582-1.223 5.016-2.375 7.84-2.742 2.703-.348 5.09.058 7.445.84v17.98Zm168.277 0h-19.559v-17.64c3.13-1.27 6.555-1.395 13.793 1.726.18.078.32.148.5.25 1.844 1.047 3.594 1.895 5.266 2.55Zm10.543-18.336c-1.414.395-3.305.625-6.207-.219a3 3 0 0 0-.172-.05c-1.691-.508-3.715-1.375-6.184-2.778a11 11 0 0 0-1.14-.57c-5.25-2.262-9.2-3.09-12.383-3.09-3.711 0-6.379 1.129-8.848 2.414l-.035.02c-.457.238-.91.484-1.36.726-4.96 2.692-10.581 5.746-28.57.114a5 5 0 0 1-.398-.145c-9.266-3.75-14.758-1.273-19.606.91-5.32 2.395-10.343 4.66-22.246-.691-.05-.02-.09-.043-.136-.063-10.832-5.25-17.27-2.199-22.953.496-2.582 1.223-5.016 2.38-7.84 2.743-4.782.617-8.563-1.122-12.942-3.137a94 94 0 0 0-3.629-1.606q-.076-.033-.16-.066c-3.691-1.496-7.832-2.645-12.742-2.012-3.852.496-7.02 1.996-9.812 3.32-3.75 1.778-6.993 3.313-11.543 2.493-2.422-.438-4.145-2.278-4.004-4.285l4.109-59.371c.215-3.118 2.629-5.47 5.613-5.47h177.016c2.988 0 5.402 2.352 5.613 5.466l4.094 60.671c.125 1.848-1.328 3.57-3.535 4.18M19.148 49.875H63.29c4.984 0 9.04-4.055 9.04-9.035 0-4.008-2.626-7.414-6.247-8.594-1.293-11.383-10.254-20.469-21.574-21.96V3.272a3.288 3.288 0 1 0-6.574 0v7.012c-11.325 1.492-20.282 10.578-21.575 21.961-3.62 1.18-6.246 4.586-6.246 8.594 0 4.98 4.055 9.035 9.035 9.035m44.141-6.574H19.15a2.46 2.46 0 0 1-2.458-2.461 2.46 2.46 0 0 1 2.457-2.461H63.29a2.46 2.46 0 1 1 0 4.922M41.22 16.64c9.054 0 16.597 6.55 18.152 15.16H23.066c1.559-8.61 9.102-15.16 18.153-15.16m41.789 33.234h44.14c4.98 0 9.036-4.055 9.036-9.035 0-4.008-2.625-7.414-6.246-8.594-1.293-11.383-10.25-20.469-21.575-21.96V3.272a3.288 3.288 0 1 0-6.574 0v7.012c-11.32 1.492-20.277 10.578-21.574 21.961-3.621 1.18-6.242 4.586-6.242 8.594 0 4.98 4.05 9.035 9.035 9.035m44.14-6.574h-44.14a2.466 2.466 0 0 1-2.461-2.461c0-1.36 1.105-2.461 2.46-2.461h44.141a2.46 2.46 0 0 1 2.457 2.46 2.46 2.46 0 0 1-2.457 2.462m-22.07-26.66c9.05 0 16.594 6.55 18.152 15.16H86.926c1.554-8.61 9.101-15.16 18.152-15.16m41.785 33.234h44.14c4.981 0 9.036-4.055 9.036-9.035 0-4.008-2.625-7.414-6.246-8.594-1.293-11.383-10.25-20.469-21.57-21.96V3.272a3.29 3.29 0 0 0-6.578 0v7.012c-11.32 1.492-20.278 10.578-21.57 21.961-3.622 1.18-6.247 4.586-6.247 8.594 0 4.98 4.055 9.035 9.035 9.035m44.14-6.574h-44.14a2.466 2.466 0 0 1-2.46-2.461c0-1.36 1.105-2.461 2.46-2.461h44.14a2.463 2.463 0 0 1 2.462 2.46 2.466 2.466 0 0 1-2.461 2.462m-22.07-26.66c9.051 0 16.598 6.55 18.153 15.16H150.78c1.555-8.61 9.102-15.16 18.153-15.16m0 0" })
|
|
11354
|
-
] })
|
|
11355
|
-
] });
|
|
11356
|
-
const BusinessLunch = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 160.5 171", ...props, children: [
|
|
11357
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
11358
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.219 0h159.566v151H.22Zm0 0" }) }),
|
|
11359
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M.219 0h159.566v151H.22Zm0 0" }) })
|
|
11360
|
-
] }),
|
|
11361
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M105.492 67.066c5.067-2.793 7.492-7.25 7.672-12.941.102-3.266.016-6.531.016-9.8 0-7.84-.02-15.68.011-23.52.012-2.996-1.187-5.29-3.843-6.645-2.684-1.363-5.254-.945-7.606.922-.144.113-.324.18-.465.254-3.785-2.809-6.023-2.785-10.195.094-1.898-1.492-3.977-2.52-6.508-1.813-3.484.973-5.308 3.52-5.316 7.438-.024 10.855-.063 21.707-.035 32.562.011 5.742 2.64 10.11 7.418 13.168.93.594 1.125 1.195 1.074 2.18-.266 5.52-.492 11.043-.719 16.562-.734 17.875-1.46 35.746-2.2 53.618-.175 4.21-.378 8.421-.577 12.742-.63.05-1.168.14-1.707.133-2.86-.051-5.723-.18-8.586-.172-1.352.004-1.739-.508-1.844-1.836-.918-11.364-1.906-22.727-2.89-34.086-.493-5.703-1.051-11.403-1.512-17.114-.04-.507.27-1.34.668-1.55 4.855-2.621 6.906-6.809 6.949-12.145.035-3.969.082-7.941-.004-11.91-.2-9.133-.2-18.285-.816-27.398-.551-8.133-2.856-15.899-7.157-22.942-2.136-3.5-4.672-6.687-8.242-8.847-4.418-2.665-9.41.074-9.586 5.21-.035 1.055-.023 2.11-.015 3.165q.274 42.964.562 85.93.175 25.101.367 50.202c.051 6.352 5.184 11.45 11.438 11.391 6.25-.059 11.023-5.117 10.933-11.586-.007-.633 0-1.27 0-1.828h11.196c.043.539.09.934.101 1.324.192 6.871 5.649 12.215 12.438 12.07 5.96-.125 12.168-4.453 12.008-12.25-.086-4.218-.254-8.433-.43-12.652-.637-15.664-1.262-31.328-1.942-46.988-.414-9.59-.925-19.172-1.367-28.758-.035-.762-.383-1.578.711-2.184M61.957 165.13c-3.758.184-6.898-2.934-6.941-6.992-.059-5.23-.047-10.457-.047-15.684-.004-17.793 0-35.582 0-53.375h-.332q-.257-34.302-.508-68.605c-.004-.496-.016-1.016.11-1.489.363-1.382 1.277-1.746 2.48-.992 2.754 1.727 4.656 4.25 6.363 6.938 4.305 6.789 6.469 14.351 6.867 22.234.57 11.434.492 22.899.684 34.352a97 97 0 0 1-.012 4.523c-.113 3.64-2.473 6.684-5.98 7.625-1.5.402-2.028 1.258-1.891 2.746 1.004 10.957 2.02 21.91 2.977 32.871q1.26 14.415 2.39 28.84a6.455 6.455 0 0 1-6.16 7.008m38.055-98.758q.596 11.896 1.105 23.785a49735 49735 0 0 1 2.285 53.91c.184 4.368.375 8.739.48 13.11.106 4.605-3.155 7.98-7.593 7.969-4.324-.012-7.773-3.528-7.613-8.024.41-11.351.96-22.691 1.386-34.039.13-3.36.02-6.723.02-10.086h.45c.616-14.812 1.23-29.621 1.85-44.426q.013-.304.036-.601c.254-3.16.234-3.121-2.508-4.598-3.91-2.105-6.008-5.344-6-9.863.012-10.653 0-21.305-.004-31.965 0-.2-.008-.402-.004-.602C83.961 19.234 85 18 86.34 18.04c1.363.04 2.433 1.27 2.437 2.922.016 7.586.008 15.176.008 22.762 0 2.058-.027 4.12-.008 6.18.02 2.117.84 3.105 2.473 3.058 1.48-.043 2.348-1.145 2.348-3.074q.021-13.565.03-27.137c0-.45-.003-.906 0-1.355.017-1.985 1.099-3.415 2.614-3.457 1.496-.043 2.578 1.375 2.582 3.44.028 9.395.047 18.794.078 28.192 0 .551-.011 1.13.149 1.64.32 1.048 1.02 1.72 2.191 1.731 1.156.012 1.922-.574 2.23-1.66.173-.613.223-1.277.227-1.922.008-9.246-.004-18.492-.008-27.738 0-.402-.027-.812.024-1.207.168-1.32 1.297-2.453 2.515-2.383 1.336.078 2.008 1.004 2.297 2.227.082.336.047.699.047 1.05.008 10.755.02 21.508.028 32.262 0 4.778-2.508 8.438-7.004 10.227-1.196.465-1.653 1.285-1.586 2.574m0 0" }),
|
|
11362
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M148.383 38.414c-6.188-10.3-14.406-18.766-24.52-25.36C107.781 2.567 90.168-1.503 71.153.525c-16.301 1.738-30.712 8.03-43.15 18.703C16.494 29.105 8.196 41.18 3.782 55.77c-6.09 20.152-4.41 39.683 5.293 58.335 8.043 15.465 20.27 26.805 35.824 34.59.883.438 1.82.762 3.055 1.274 0-1.34-.02-2.29.004-3.239.031-1.16-.398-1.859-1.52-2.433-5.832-2.988-11.312-6.531-16.214-10.91-15.977-14.285-24.926-32.02-25.176-53.574-.274-23.704 9.215-43.149 27.437-58.149C47.777 9.078 65.551 3.637 85.316 4.891c18.032 1.136 33.618 8.101 46.57 20.566 16.317 15.703 24.247 34.973 22.915 57.723-1.25 21.285-10.91 38.328-27.016 51.925-4.976 4.204-10.555 7.497-16.363 10.422-.5.246-1.121.825-1.164 1.297-.106 1.227.078 2.48.148 3.801.39-.086.653-.09.864-.191 2.718-1.29 5.546-2.403 8.132-3.918 21.305-12.489 34.848-30.637 39.153-55.11 3.316-18.851-.328-36.613-10.172-52.992m0 0" }) }),
|
|
11363
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M111.945 117.281c-1.304 1.008-1.558 2.45-.699 3.5.95 1.156 2.172 1.219 3.563.133 13.789-10.793 20.976-24.914 21.464-43.203-.222-2.164-.343-5.09-.855-7.95-2.066-11.507-7.176-21.448-15.656-29.577-1.293-1.243-2.375-.996-3.11.664-.468 1.058-.437 1.96.407 3.02 2.754 3.44 5.726 6.796 7.91 10.593 7.265 12.625 8.504 26.012 3.812 39.8-3.191 9.376-9 16.97-16.836 23.02M43.46 43.527c1.325-1.297 1.544-2.863.5-3.996-.995-1.082-2.148-.93-3.636.485-6.156 5.859-10.629 12.824-13.476 20.8-7.59 21.235-.625 45.18 17.136 59.118.004.004.012.007.016.011 1.059.825 2.61.196 2.816-1.129.223-1.425-.328-2.562-1.675-3.808-10.02-9.29-16.028-20.602-16.602-34.348-.61-14.527 4.512-26.945 14.922-37.133M72.543 130.426c.004.012.004.023.008.031.097.469.683 1.129 1.117 1.191 1.883.27 3.789.41 5.691.48 2.72.095 3.403-.75 3.02-3.425-.125-.894-.512-1.25-1.473-1.27-1.84-.035-3.676-.124-5.582-.226-1.754-.09-3.133 1.496-2.781 3.219m0 0" }),
|
|
11364
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M105.492 67.066c5.067-2.793 7.492-7.25 7.672-12.941.102-3.266.016-6.531.016-9.8 0-7.84-.02-15.68.011-23.52.012-2.996-1.187-5.29-3.843-6.645-2.684-1.363-5.254-.945-7.606.922-.144.113-.324.18-.465.254-3.785-2.809-6.023-2.785-10.195.094-1.898-1.492-3.977-2.52-6.508-1.813-3.484.973-5.308 3.52-5.316 7.438-.024 10.855-.063 21.707-.035 32.562.011 5.742 2.64 10.11 7.418 13.168.93.594 1.125 1.195 1.074 2.18-.266 5.52-.492 11.043-.719 16.562-.734 17.875-1.46 35.746-2.2 53.618-.175 4.21-.378 8.421-.577 12.742-.63.05-1.168.14-1.707.133-2.86-.051-5.723-.18-8.586-.172-1.352.004-1.739-.508-1.844-1.836-.918-11.364-1.906-22.727-2.89-34.086-.493-5.703-1.051-11.403-1.512-17.114-.04-.507.27-1.34.668-1.55 4.855-2.621 6.906-6.809 6.949-12.145.035-3.969.082-7.941-.004-11.91-.2-9.133-.2-18.285-.816-27.398-.551-8.133-2.856-15.899-7.157-22.942-2.136-3.5-4.672-6.687-8.242-8.847-4.418-2.665-9.41.074-9.586 5.21-.035 1.055-.023 2.11-.015 3.165q.274 42.964.562 85.93.175 25.101.367 50.202c.051 6.352 5.184 11.45 11.438 11.391 6.25-.059 11.023-5.117 10.933-11.586-.007-.633 0-1.27 0-1.828h11.196c.043.539.09.934.101 1.324.192 6.871 5.649 12.215 12.438 12.07 5.96-.125 12.168-4.453 12.008-12.25-.086-4.218-.254-8.433-.43-12.652-.637-15.664-1.262-31.328-1.942-46.988-.414-9.59-.925-19.172-1.367-28.758-.035-.762-.383-1.578.711-2.184M61.957 165.13c-3.758.184-6.898-2.934-6.941-6.992-.059-5.23-.047-10.457-.047-15.684-.004-17.793 0-35.582 0-53.375h-.332q-.257-34.302-.508-68.605c-.004-.496-.016-1.016.11-1.489.363-1.382 1.277-1.746 2.48-.992 2.754 1.727 4.656 4.25 6.363 6.938 4.305 6.789 6.469 14.351 6.867 22.234.57 11.434.492 22.899.684 34.352a97 97 0 0 1-.012 4.523c-.113 3.64-2.473 6.684-5.98 7.625-1.5.402-2.028 1.258-1.891 2.746 1.004 10.957 2.02 21.91 2.977 32.871q1.26 14.415 2.39 28.84a6.455 6.455 0 0 1-6.16 7.008m38.055-98.758q.596 11.896 1.105 23.785a49735 49735 0 0 1 2.285 53.91c.184 4.368.375 8.739.48 13.11.106 4.605-3.155 7.98-7.593 7.969-4.324-.012-7.773-3.528-7.613-8.024.41-11.351.96-22.691 1.386-34.039.13-3.36.02-6.723.02-10.086h.45c.616-14.812 1.23-29.621 1.85-44.426q.013-.304.036-.601c.254-3.16.234-3.121-2.508-4.598-3.91-2.105-6.008-5.344-6-9.863.012-10.653 0-21.305-.004-31.965 0-.2-.008-.402-.004-.602C83.961 19.234 85 18 86.34 18.04c1.363.04 2.433 1.27 2.437 2.922.016 7.586.008 15.176.008 22.762 0 2.058-.027 4.12-.008 6.18.02 2.117.84 3.105 2.473 3.058 1.48-.043 2.348-1.145 2.348-3.074q.021-13.565.03-27.137c0-.45-.003-.906 0-1.355.017-1.985 1.099-3.415 2.614-3.457 1.496-.043 2.578 1.375 2.582 3.44.028 9.395.047 18.794.078 28.192 0 .551-.011 1.13.149 1.64.32 1.048 1.02 1.72 2.191 1.731 1.156.012 1.922-.574 2.23-1.66.173-.613.223-1.277.227-1.922.008-9.246-.004-18.492-.008-27.738 0-.402-.027-.812.024-1.207.168-1.32 1.297-2.453 2.515-2.383 1.336.078 2.008 1.004 2.297 2.227.082.336.047.699.047 1.05.008 10.755.02 21.508.028 32.262 0 4.778-2.508 8.438-7.004 10.227-1.196.465-1.653 1.285-1.586 2.574m0 0" }),
|
|
11365
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M148.383 38.414c-6.188-10.3-14.406-18.766-24.52-25.36C107.781 2.567 90.168-1.503 71.153.525c-16.301 1.738-30.712 8.03-43.15 18.703C16.494 29.105 8.196 41.18 3.782 55.77c-6.09 20.152-4.41 39.683 5.293 58.335 8.043 15.465 20.27 26.805 35.824 34.59.883.438 1.82.762 3.055 1.274 0-1.34-.02-2.29.004-3.239.031-1.16-.398-1.859-1.52-2.433-5.832-2.988-11.312-6.531-16.214-10.91-15.977-14.285-24.926-32.02-25.176-53.574-.274-23.704 9.215-43.149 27.437-58.149C47.777 9.078 65.551 3.637 85.316 4.891c18.032 1.136 33.618 8.101 46.57 20.566 16.317 15.703 24.247 34.973 22.915 57.723-1.25 21.285-10.91 38.328-27.016 51.925-4.976 4.204-10.555 7.497-16.363 10.422-.5.246-1.121.825-1.164 1.297-.106 1.227.078 2.48.148 3.801.39-.086.653-.09.864-.191 2.718-1.29 5.546-2.403 8.132-3.918 21.305-12.489 34.848-30.637 39.153-55.11 3.316-18.851-.328-36.613-10.172-52.992m0 0" }) }),
|
|
11366
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M111.945 117.281c-1.304 1.008-1.558 2.45-.699 3.5.95 1.156 2.172 1.219 3.563.133 13.789-10.793 20.976-24.914 21.464-43.203-.222-2.164-.343-5.09-.855-7.95-2.066-11.507-7.176-21.448-15.656-29.577-1.293-1.243-2.375-.996-3.11.664-.468 1.058-.437 1.96.407 3.02 2.754 3.44 5.726 6.796 7.91 10.593 7.265 12.625 8.504 26.012 3.812 39.8-3.191 9.376-9 16.97-16.836 23.02M43.46 43.527c1.325-1.297 1.544-2.863.5-3.996-.995-1.082-2.148-.93-3.636.485-6.156 5.859-10.629 12.824-13.476 20.8-7.59 21.235-.625 45.18 17.136 59.118.004.004.012.007.016.011 1.059.825 2.61.196 2.816-1.129.223-1.425-.328-2.562-1.675-3.808-10.02-9.29-16.028-20.602-16.602-34.348-.61-14.527 4.512-26.945 14.922-37.133M72.543 130.426c.004.012.004.023.008.031.097.469.683 1.129 1.117 1.191 1.883.27 3.789.41 5.691.48 2.72.095 3.403-.75 3.02-3.425-.125-.894-.512-1.25-1.473-1.27-1.84-.035-3.676-.124-5.582-.226-1.754-.09-3.133 1.496-2.781 3.219m0 0" })
|
|
11367
|
-
] });
|
|
11368
|
-
const CakesAndSweets = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 137.25 171", ...props, children: [
|
|
11369
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.027 0h136.45v170H.027Zm0 0" }) }) }),
|
|
11370
|
-
/* @__PURE__ */ jsxs("g", { fill: "#F95524", clipPath: "url(#a)", children: [
|
|
11371
|
-
/* @__PURE__ */ jsx("path", { d: "M116.008 158.871c-5.242 3.07-17.285 8.008-30.485 9.313-17.71 1.75-28.113.601-28.113.601-16.152-1.531-33.293-7.02-37.918-12.137-2.855-3.164-2.953-3.441-8.238-23.824-1.52-5.86-4.602-17.168-6.848-25.137C2.156 99.724.48 93.5.316 92.427.031 90.55 1.703 87.94 3.664 87.55c1.836-.367 2.191-1.024 2.828-4.797.48-2.871 4.258-8.606 7.485-11.371l2.609-2.235.02-4.546c.011-3.383.343-5.274 1.3-7.372 1.64-3.597 6.168-8.011 10.11-9.851l3.066-1.434.004-4.187c.012-8.36 3.914-13.012 16.219-19.332 3.93-2.02 8.566-4.606 10.304-5.746 5.125-3.364 7.625-8.293 6.575-12.961C63.574 1.012 64.285 0 66.8.008c4.633.015 11.078 4.918 13.293 10.113 1.054 2.477 1.379 2.754 3.547 3.043 5.84.785 13.164 5.664 15.152 10.797.574 1.477 1.234 3.07 1.469 6.152.156 2.086-.078 3.598-.078 3.598l5.023 2.613c6.223 3.59 8.984 6.39 11.766 10.832 2.117 3.387 2.222 6.008 2.285 8.278.058 2.226-.477 5.21-.477 5.21l4.293 4.5c5.535 5.801 8.574 11.684 9.031 17.485.278 3.492.594 4.363 2.305 6.371 1.371 1.61 1.98 2.922 1.98 4.258 0 2.8-2.1 13.277-4.097 20.398a5497 5497 0 0 0-6.238 22.715c-2.856 10.477-5.043 17.371-5.95 18.754-.789 1.2-2.632 2.887-4.097 3.746M85.5 164.094c13.836-1.946 25.477-5.735 29.707-9.555 2.543-2.297 1.941-.562 9.293-26.746 5.656-20.16 8.496-31.898 8.234-34.09-.277-2.36-1.437-2.363-2.55-.016-1.024 2.153-6.493 6.637-9.282 7.61-1.218.426-2.113.328-3.515-.371-2.555-1.274-4.258-1.18-5.602.304-2.539 2.805-6.285 3.63-9.117 2.012-2.316-1.328-4.781-1.047-7.672.871-3.879 2.575-5.383 2.73-9.148.95-1.77-.84-3.766-1.528-4.434-1.528-.664 0-2.937.918-5.047 2.035-4.207 2.235-5.285 2.215-9.195-.172-2.598-1.585-5.863-1.617-8.723-.085-2.898 1.554-4.676 1.488-7.547-.282-2.699-1.66-6.293-1.914-8.578-.605-2.62 1.496-4.945 1.086-8.36-1.48-3.51-2.641-4.034-2.743-7.616-1.481-3.735 1.32-4.516 1.14-7.602-1.75-2.144-2.004-3.453-2.73-5.45-3.028-3.253-.484-4.898-1.476-6.26-3.785-1.345-2.273-2.579-2.32-2.579-.101 0 .93 1.313 6.187 2.918 11.687 1.605 5.496 5.086 18.114 7.738 28.04 2.649 9.921 5.274 18.843 5.832 19.82 2.965 5.195 18.176 10.71 36.168 12.308 9.961.883 22.375.281 28.387-.562m-29.883-9.114c-.37-1.078-1.015-9.066-2.078-29.171-.703-13.305-.477-15.434 1.414-13.371.586.636 1.043 6.214 1.766 21.488.535 11.344.863 19.894.672 20.832-.164.816-1.543.894-1.774.222m-13.726-.71c-.578-1.965-6.078-42.985-5.266-45.13.18-.468.707-.714 1.234-.234.582.528 1.325 5.551 2.352 15.043.844 7.809 2.062 17.75 2.71 22.094.645 4.34.974 7.133.927 8.18-.035.804-1.73.816-1.957.047m28.968.05c-.55-.55-.73-5.55-.73-20.316 0-14.176.105-19.29.867-20.48.313-.489 1.043-.633 1.309.156.625 1.86.882 38.668.035 40.351-.332.66-.942.758-1.48.29m13.082-.812c-.289-.754 2.793-33.86 3.704-39.801.222-1.445.562-1.906 1.3-1.758 1.364.281 1.168 4.707-1.078 24.801-.969 8.668-1.765 16.027-1.765 16.355 0 1.016-1.797 1.352-2.16.403m15.524-1.38c-.176-.28.074-2.741.555-5.472.48-2.726 1.82-11.48 2.972-19.453 2.38-16.437 2.406-16.566 3.563-16.566 1.156 0 1.093 2.402-.317 12.27-1.734 12.109-4.16 27.523-4.515 28.698-.332 1.086-1.715 1.407-2.258.524m-71.25-2.038c-1.832-2.356-9.707-41.54-8.703-44.02.117-.285.746-.582 1.277-.062.582.57 1.656 5.215 2.957 12.68 1.125 6.472 2.973 15.734 4.102 20.582 1.129 4.847 2.054 9.44 2.05 10.207-.007 1.207-1.168 1.273-1.683.613m82.738-.563c0-.742 3.79-20.062 4.797-27.058 1.008-6.996 2.055-12.73 2.27-13.098.273-.473.863-.504 1.273-.098.473.473.46 2.165-.04 6.184-1.503 12.043-5.48 29.309-6.515 33.898-.281 1.243-1.886 1.403-1.785.172m-35.496-47.543c3.254-2.152 6.781-2.453 10.336-.882 3.719 1.648 4.836 1.57 7.941-.536 2.985-2.02 6.282-2.316 9.73-.875 1.169.489 2.337.887 2.599.887.261 0 1.761-1.062 3.335-2.367 3.133-2.586 6.133-3.113 8.32-1.461 1.7 1.29 2.434 1.105 5.927-1.477 3.77-2.78 4.656-4.886 4.66-11.02 0-3.468-.32-4.886-1.852-8.16-1.687-3.605-7.789-11.011-9.07-11.011-.27 0-2.676 2.871-4.524 4.57-1.703 1.567-5.695 4.61-9.597 6.48-12.903 6.177-24.11 8.829-38.352 9.27-6.918.22-14.527-.332-17.027-.722-9.684-1.5-20.797-5.801-25.578-9.89-1.297-1.11-2.785-2.017-3.313-2.017-1.562 0-6.086 4.61-7.703 7.856-1.121 2.25-1.508 3.953-1.508 6.64 0 4.84.668 5.618 5.317 6.165 3.03.359 3.964.722 4.707 1.84 2.547 3.847 2.66 3.91 5.023 2.78 4.086-1.949 8.453-1.124 11.531 2.173 1.649 1.761 2.504 1.89 4.395.652 3.32-2.176 7.52-1.73 12.316 1.312 1.516.961 1.692.938 4.739-.601 4.039-2.043 6.093-2.02 10.035.12 3.98 2.161 4.719 2.188 7.613.274M45.313 80.105c10.789 2.278 28.023 1.344 36.488-.488 17.625-3.82 28.23-9.972 31.894-17.789 1.907-4.07 1.89-8.832-.043-12.648-1.757-3.461-6.695-8.032-11.273-10.426l-3.395-1.777-.968 1.457c-4.512 6.777-13.707 12.5-27.25 15.855-4.946 1.223-11.18 1.734-15.172 1.816-3.934.079-7.985.07-13.364-1.546-1.898-.57-4.582-2.301-6.097-3.457-1.942-1.485-3.145-2.008-4.067-1.778-2.277.57-7.671 4.723-9.472 7.29-1.817 2.581-2.664 6.972-1.922 9.929 1.355 5.398 12.11 10.922 24.64 13.562m21.78-28.984c16.844-3.43 29.759-11.39 29.645-19.902-.117-9.016-8.113-14.754-15.218-14.125-.41.035-.602.383-.743 1.133-.425 2.257-3.035 7.128-5.867 9.773-3.469 3.246-9.008 6.09-16.91 8.68-3.254 1.066-6.633 2.3-7.508 2.742-2.035 1.027-2.804.031-1.277-1.652 1.445-1.598 2.972-2.352 10.55-5.196 6.997-2.633 9.516-4.011 12.923-7.082 3.039-2.742 4.539-5.86 4.539-9.422 0-3.941-1.188-6.504-4.383-9.449-3.32-3.062-4.489-3.195-4.489-.512 0 3.871-1.808 7.63-5.308 11.051-2.582 2.52-5.258 4.211-11.91 7.512-12.18 6.047-16.504 10.281-16.504 16.156 0 5.805 5.008 9.879 13.844 11.27 3.867.609 12.316.304 18.617-.977m0 0" }),
|
|
11372
|
-
/* @__PURE__ */ jsx("path", { d: "M116.008 158.871c-5.242 3.07-17.285 8.008-30.485 9.313-17.71 1.75-28.113.601-28.113.601-16.152-1.531-33.293-7.02-37.918-12.137-2.855-3.164-2.953-3.441-8.238-23.824-1.52-5.86-4.602-17.168-6.848-25.137C2.156 99.724.48 93.5.316 92.427.031 90.55 1.703 87.94 3.664 87.55c1.836-.367 2.191-1.024 2.828-4.797.48-2.871 4.258-8.606 7.485-11.371l2.609-2.235.02-4.546c.011-3.383.343-5.274 1.3-7.372 1.64-3.597 6.168-8.011 10.11-9.851l3.066-1.434.004-4.187c.012-8.36 3.914-13.012 16.219-19.332 3.93-2.02 8.566-4.606 10.304-5.746 5.125-3.364 7.625-8.293 6.575-12.961C63.574 1.012 64.285 0 66.8.008c4.633.015 11.078 4.918 13.293 10.113 1.054 2.477 1.379 2.754 3.547 3.043 5.84.785 13.164 5.664 15.152 10.797.574 1.477 1.234 3.07 1.469 6.152.156 2.086-.078 3.598-.078 3.598l5.023 2.613c6.223 3.59 8.984 6.39 11.766 10.832 2.117 3.387 2.222 6.008 2.285 8.278.058 2.226-.477 5.21-.477 5.21l4.293 4.5c5.535 5.801 8.574 11.684 9.031 17.485.278 3.492.594 4.363 2.305 6.371 1.371 1.61 1.98 2.922 1.98 4.258 0 2.8-2.1 13.277-4.097 20.398a5497 5497 0 0 0-6.238 22.715c-2.856 10.477-5.043 17.371-5.95 18.754-.789 1.2-2.632 2.887-4.097 3.746M85.5 164.094c13.836-1.946 25.477-5.735 29.707-9.555 2.543-2.297 1.941-.562 9.293-26.746 5.656-20.16 8.496-31.898 8.234-34.09-.277-2.36-1.437-2.363-2.55-.016-1.024 2.153-6.493 6.637-9.282 7.61-1.218.426-2.113.328-3.515-.371-2.555-1.274-4.258-1.18-5.602.304-2.539 2.805-6.285 3.63-9.117 2.012-2.316-1.328-4.781-1.047-7.672.871-3.879 2.575-5.383 2.73-9.148.95-1.77-.84-3.766-1.528-4.434-1.528-.664 0-2.937.918-5.047 2.035-4.207 2.235-5.285 2.215-9.195-.172-2.598-1.585-5.863-1.617-8.723-.085-2.898 1.554-4.676 1.488-7.547-.282-2.699-1.66-6.293-1.914-8.578-.605-2.62 1.496-4.945 1.086-8.36-1.48-3.51-2.641-4.034-2.743-7.616-1.481-3.735 1.32-4.516 1.14-7.602-1.75-2.144-2.004-3.453-2.73-5.45-3.028-3.253-.484-4.898-1.476-6.26-3.785-1.345-2.273-2.579-2.32-2.579-.101 0 .93 1.313 6.187 2.918 11.687 1.605 5.496 5.086 18.114 7.738 28.04 2.649 9.921 5.274 18.843 5.832 19.82 2.965 5.195 18.176 10.71 36.168 12.308 9.961.883 22.375.281 28.387-.562m-29.883-9.114c-.37-1.078-1.015-9.066-2.078-29.171-.703-13.305-.477-15.434 1.414-13.371.586.636 1.043 6.214 1.766 21.488.535 11.344.863 19.894.672 20.832-.164.816-1.543.894-1.774.222m-13.726-.71c-.578-1.965-6.078-42.985-5.266-45.13.18-.468.707-.714 1.234-.234.582.528 1.325 5.551 2.352 15.043.844 7.809 2.062 17.75 2.71 22.094.645 4.34.974 7.133.927 8.18-.035.804-1.73.816-1.957.047m28.968.05c-.55-.55-.73-5.55-.73-20.316 0-14.176.105-19.29.867-20.48.313-.489 1.043-.633 1.309.156.625 1.86.882 38.668.035 40.351-.332.66-.942.758-1.48.29m13.082-.812c-.289-.754 2.793-33.86 3.704-39.801.222-1.445.562-1.906 1.3-1.758 1.364.281 1.168 4.707-1.078 24.801-.969 8.668-1.765 16.027-1.765 16.355 0 1.016-1.797 1.352-2.16.403m15.524-1.38c-.176-.28.074-2.741.555-5.472.48-2.726 1.82-11.48 2.972-19.453 2.38-16.437 2.406-16.566 3.563-16.566 1.156 0 1.093 2.402-.317 12.27-1.734 12.109-4.16 27.523-4.515 28.698-.332 1.086-1.715 1.407-2.258.524m-71.25-2.038c-1.832-2.356-9.707-41.54-8.703-44.02.117-.285.746-.582 1.277-.062.582.57 1.656 5.215 2.957 12.68 1.125 6.472 2.973 15.734 4.102 20.582 1.129 4.847 2.054 9.44 2.05 10.207-.007 1.207-1.168 1.273-1.683.613m82.738-.563c0-.742 3.79-20.062 4.797-27.058 1.008-6.996 2.055-12.73 2.27-13.098.273-.473.863-.504 1.273-.098.473.473.46 2.165-.04 6.184-1.503 12.043-5.48 29.309-6.515 33.898-.281 1.243-1.886 1.403-1.785.172m-35.496-47.543c3.254-2.152 6.781-2.453 10.336-.882 3.719 1.648 4.836 1.57 7.941-.536 2.985-2.02 6.282-2.316 9.73-.875 1.169.489 2.337.887 2.599.887.261 0 1.761-1.062 3.335-2.367 3.133-2.586 6.133-3.113 8.32-1.461 1.7 1.29 2.434 1.105 5.927-1.477 3.77-2.78 4.656-4.886 4.66-11.02 0-3.468-.32-4.886-1.852-8.16-1.687-3.605-7.789-11.011-9.07-11.011-.27 0-2.676 2.871-4.524 4.57-1.703 1.567-5.695 4.61-9.597 6.48-12.903 6.177-24.11 8.829-38.352 9.27-6.918.22-14.527-.332-17.027-.722-9.684-1.5-20.797-5.801-25.578-9.89-1.297-1.11-2.785-2.017-3.313-2.017-1.562 0-6.086 4.61-7.703 7.856-1.121 2.25-1.508 3.953-1.508 6.64 0 4.84.668 5.618 5.317 6.165 3.03.359 3.964.722 4.707 1.84 2.547 3.847 2.66 3.91 5.023 2.78 4.086-1.949 8.453-1.124 11.531 2.173 1.649 1.761 2.504 1.89 4.395.652 3.32-2.176 7.52-1.73 12.316 1.312 1.516.961 1.692.938 4.739-.601 4.039-2.043 6.093-2.02 10.035.12 3.98 2.161 4.719 2.188 7.613.274M45.313 80.105c10.789 2.278 28.023 1.344 36.488-.488 17.625-3.82 28.23-9.972 31.894-17.789 1.907-4.07 1.89-8.832-.043-12.648-1.757-3.461-6.695-8.032-11.273-10.426l-3.395-1.777-.968 1.457c-4.512 6.777-13.707 12.5-27.25 15.855-4.946 1.223-11.18 1.734-15.172 1.816-3.934.079-7.985.07-13.364-1.546-1.898-.57-4.582-2.301-6.097-3.457-1.942-1.485-3.145-2.008-4.067-1.778-2.277.57-7.671 4.723-9.472 7.29-1.817 2.581-2.664 6.972-1.922 9.929 1.355 5.398 12.11 10.922 24.64 13.562m21.78-28.984c16.844-3.43 29.759-11.39 29.645-19.902-.117-9.016-8.113-14.754-15.218-14.125-.41.035-.602.383-.743 1.133-.425 2.257-3.035 7.128-5.867 9.773-3.469 3.246-9.008 6.09-16.91 8.68-3.254 1.066-6.633 2.3-7.508 2.742-2.035 1.027-2.804.031-1.277-1.652 1.445-1.598 2.972-2.352 10.55-5.196 6.997-2.633 9.516-4.011 12.923-7.082 3.039-2.742 4.539-5.86 4.539-9.422 0-3.941-1.188-6.504-4.383-9.449-3.32-3.062-4.489-3.195-4.489-.512 0 3.871-1.808 7.63-5.308 11.051-2.582 2.52-5.258 4.211-11.91 7.512-12.18 6.047-16.504 10.281-16.504 16.156 0 5.805 5.008 9.879 13.844 11.27 3.867.609 12.316.304 18.617-.977m0 0" })
|
|
11373
|
-
] })
|
|
11374
|
-
] });
|
|
11375
|
-
const Drinks = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 138.75 171", ...props, children: [
|
|
11376
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
11377
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M65 0h72.477v105H65Zm0 0" }) }),
|
|
11378
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M.277 5H64v65H.277Zm0 0" }) }),
|
|
11379
|
-
/* @__PURE__ */ jsx("clipPath", { id: "c", children: /* @__PURE__ */ jsx("path", { d: "M65 0h72.477v105H65Zm0 0" }) }),
|
|
11380
|
-
/* @__PURE__ */ jsx("clipPath", { id: "d", children: /* @__PURE__ */ jsx("path", { d: "M.277 5H64v65H.277Zm0 0" }) })
|
|
11381
|
-
] }),
|
|
11382
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M100.11 169.938H48.167c-4.027 0-7.414-3.125-7.75-7.114L29.878 37.562c-.038-.64.15-1.242.602-1.73.45-.488 1.016-.715 1.657-.715h84.047a2.23 2.23 0 0 1 1.652.715c.414.45.64 1.09.605 1.73l-10.539 125.262c-.34 3.988-3.765 7.113-7.793 7.113M34.581 39.632l10.313 122.812a3.267 3.267 0 0 0 3.238 2.973h51.976c1.696 0 3.125-1.316 3.239-2.973L113.66 39.633Zm0 0" }),
|
|
11383
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M94.465 158.27H53.816c-1.168 0-2.144-.907-2.257-2.07l-4.141-49.532c-.113-1.242.828-2.336 2.07-2.45 1.242-.113 2.332.829 2.446 2.071l3.988 47.461h36.512l3.988-47.46c.113-1.243 1.203-2.185 2.445-2.071s2.184 1.207 2.07 2.449l-4.214 49.531c-.075 1.164-1.055 2.07-2.258 2.07M93.938 74.223c-2.711 0-5.57-.266-8.618-.828-3.351-.602-6.664-1.47-9.863-2.332-3.914-1.02-7.941-2.07-11.969-2.637-4.703-.64-13.511-.977-19.648 4.066a2.26 2.26 0 0 1-3.16-.3c-.79-.981-.64-2.372.3-3.165 5.536-4.515 13.739-6.324 23.11-5.043 4.293.602 8.469 1.696 12.496 2.746 3.125.829 6.324 1.657 9.523 2.262 8.395 1.543 15.207.75 20.211-2.336a2.274 2.274 0 0 1 2.371 3.879c-4.066 2.406-8.996 3.688-14.753 3.688m0 0" }),
|
|
11384
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M67.668 104.82c-.305 0-.606-.074-.906-.187-1.13-.528-1.657-1.844-1.13-2.973L108.43 5.832c.3-.676.941-1.164 1.656-1.316L134.66.039a2.27 2.27 0 0 1 2.637 1.805 2.27 2.27 0 0 1-1.809 2.636l-23.37 4.25-42.419 94.774a2.21 2.21 0 0 1-2.031 1.316m0 0" }) }),
|
|
11385
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M100.637 96.918a2.264 2.264 0 0 1-2.258-2.258v-8.43a2.267 2.267 0 0 1 2.258-2.261 2.267 2.267 0 0 1 2.258 2.261v8.43a2.264 2.264 0 0 1-2.258 2.258M48.281 92.363a2.264 2.264 0 0 1-2.258-2.258v-5.27a2.264 2.264 0 0 1 2.258-2.257 2.264 2.264 0 0 1 2.258 2.258v5.27a2.264 2.264 0 0 1-2.258 2.257M64.617 122.887a2.264 2.264 0 0 1-2.258-2.258v-2.82a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v2.82a2.264 2.264 0 0 1-2.258 2.258M83.777 111.633a2.267 2.267 0 0 1-2.261-2.258v-3.535a2.27 2.27 0 0 1 2.261-2.262 2.27 2.27 0 0 1 2.258 2.262v3.535c0 1.242-.98 2.258-2.258 2.258M76.285 137.453a2.264 2.264 0 0 1-2.258-2.258v-2.972a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v2.972a2.264 2.264 0 0 1-2.258 2.258M85.207 89.016a2.267 2.267 0 0 1-2.258-2.262v-1.43a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v1.43a2.267 2.267 0 0 1-2.258 2.262m0 0" }),
|
|
11386
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 69.066C14.672 69.066.445 54.84.445 37.375S14.672 5.684 32.137 5.684 63.828 19.91 63.828 37.375a2.264 2.264 0 0 1-2.258 2.258 2.264 2.264 0 0 1-2.258-2.258c0-14.98-12.195-27.176-27.175-27.176S4.96 22.395 4.96 37.375s12.195 27.176 27.176 27.176q1.185-.002 2.258-.114c1.242-.113 2.332.829 2.445 2.07.113 1.243-.828 2.333-2.07 2.446-.829.074-1.73.113-2.633.113m0 0" }) }),
|
|
11387
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.264 2.264 0 0 1-2.258-2.258V17.352a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v19.984c0 1.281-1.016 2.297-2.258 2.297m0 0" }),
|
|
11388
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.17 2.17 0 0 1-1.582-.676L16.402 24.805c-.863-.867-.863-2.297 0-3.2.868-.867 2.297-.867 3.2 0l14.152 14.153c.867.863.867 2.293 0 3.199a2.32 2.32 0 0 1-1.617.676m0 0" }),
|
|
11389
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633H12.148a2.264 2.264 0 0 1-2.257-2.258 2.264 2.264 0 0 1 2.257-2.258h19.989a2.264 2.264 0 0 1 2.258 2.258 2.264 2.264 0 0 1-2.258 2.258m0 0" }),
|
|
11390
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M17.984 53.746a2.17 2.17 0 0 1-1.582-.676c-.863-.867-.863-2.297 0-3.199L30.555 35.72c.867-.867 2.297-.867 3.199 0 .867.867.867 2.297 0 3.199L19.602 53.07c-.45.45-1.016.676-1.618.676m0 0" }),
|
|
11391
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.17 2.17 0 0 1-1.582-.676c-.864-.867-.864-2.297 0-3.2l14.152-14.152c.867-.867 2.297-.867 3.2 0 .866.864.866 2.293 0 3.2L33.753 38.957a2.32 2.32 0 0 1-1.617.676m0 0" }),
|
|
11392
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M100.11 169.938H48.167c-4.027 0-7.414-3.125-7.75-7.114L29.878 37.562c-.038-.64.15-1.242.602-1.73.45-.488 1.016-.715 1.657-.715h84.047a2.23 2.23 0 0 1 1.652.715c.414.45.64 1.09.605 1.73l-10.539 125.262c-.34 3.988-3.765 7.113-7.793 7.113M34.581 39.632l10.313 122.812a3.267 3.267 0 0 0 3.238 2.973h51.976c1.696 0 3.125-1.316 3.239-2.973L113.66 39.633Zm0 0" }),
|
|
11393
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M94.465 158.27H53.816c-1.168 0-2.144-.907-2.257-2.07l-4.141-49.532c-.113-1.242.828-2.336 2.07-2.45 1.242-.113 2.332.829 2.446 2.071l3.988 47.461h36.512l3.988-47.46c.113-1.243 1.203-2.185 2.445-2.071s2.184 1.207 2.07 2.449l-4.214 49.531c-.075 1.164-1.055 2.07-2.258 2.07M93.938 74.223c-2.711 0-5.57-.266-8.618-.828-3.351-.602-6.664-1.47-9.863-2.332-3.914-1.02-7.941-2.07-11.969-2.637-4.703-.64-13.511-.977-19.648 4.066a2.26 2.26 0 0 1-3.16-.3c-.79-.981-.64-2.372.3-3.165 5.536-4.515 13.739-6.324 23.11-5.043 4.293.602 8.469 1.696 12.496 2.746 3.125.829 6.324 1.657 9.523 2.262 8.395 1.543 15.207.75 20.211-2.336a2.274 2.274 0 0 1 2.371 3.879c-4.066 2.406-8.996 3.688-14.753 3.688m0 0" }),
|
|
11394
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#c)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M67.668 104.82c-.305 0-.606-.074-.906-.187-1.13-.528-1.657-1.844-1.13-2.973L108.43 5.832c.3-.676.941-1.164 1.656-1.316L134.66.039a2.27 2.27 0 0 1 2.637 1.805 2.27 2.27 0 0 1-1.809 2.636l-23.37 4.25-42.419 94.774a2.21 2.21 0 0 1-2.031 1.316m0 0" }) }),
|
|
11395
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M100.637 96.918a2.264 2.264 0 0 1-2.258-2.258v-8.43a2.267 2.267 0 0 1 2.258-2.261 2.267 2.267 0 0 1 2.258 2.261v8.43a2.264 2.264 0 0 1-2.258 2.258M48.281 92.363a2.264 2.264 0 0 1-2.258-2.258v-5.27a2.264 2.264 0 0 1 2.258-2.257 2.264 2.264 0 0 1 2.258 2.258v5.27a2.264 2.264 0 0 1-2.258 2.257M64.617 122.887a2.264 2.264 0 0 1-2.258-2.258v-2.82a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v2.82a2.264 2.264 0 0 1-2.258 2.258M83.777 111.633a2.267 2.267 0 0 1-2.261-2.258v-3.535a2.27 2.27 0 0 1 2.261-2.262 2.27 2.27 0 0 1 2.258 2.262v3.535c0 1.242-.98 2.258-2.258 2.258M76.285 137.453a2.264 2.264 0 0 1-2.258-2.258v-2.972a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v2.972a2.264 2.264 0 0 1-2.258 2.258M85.207 89.016a2.267 2.267 0 0 1-2.258-2.262v-1.43a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v1.43a2.267 2.267 0 0 1-2.258 2.262m0 0" }),
|
|
11396
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#d)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 69.066C14.672 69.066.445 54.84.445 37.375S14.672 5.684 32.137 5.684 63.828 19.91 63.828 37.375a2.264 2.264 0 0 1-2.258 2.258 2.264 2.264 0 0 1-2.258-2.258c0-14.98-12.195-27.176-27.175-27.176S4.96 22.395 4.96 37.375s12.195 27.176 27.176 27.176q1.185-.002 2.258-.114c1.242-.113 2.332.829 2.445 2.07.113 1.243-.828 2.333-2.07 2.446-.829.074-1.73.113-2.633.113m0 0" }) }),
|
|
11397
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.264 2.264 0 0 1-2.258-2.258V17.352a2.264 2.264 0 0 1 2.258-2.258 2.264 2.264 0 0 1 2.258 2.258v19.984c0 1.281-1.016 2.297-2.258 2.297m0 0" }),
|
|
11398
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.17 2.17 0 0 1-1.582-.676L16.402 24.805c-.863-.867-.863-2.297 0-3.2.868-.867 2.297-.867 3.2 0l14.152 14.153c.867.863.867 2.293 0 3.199a2.32 2.32 0 0 1-1.617.676m0 0" }),
|
|
11399
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633H12.148a2.264 2.264 0 0 1-2.257-2.258 2.264 2.264 0 0 1 2.257-2.258h19.989a2.264 2.264 0 0 1 2.258 2.258 2.264 2.264 0 0 1-2.258 2.258m0 0" }),
|
|
11400
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M17.984 53.746a2.17 2.17 0 0 1-1.582-.676c-.863-.867-.863-2.297 0-3.199L30.555 35.72c.867-.867 2.297-.867 3.199 0 .867.867.867 2.297 0 3.199L19.602 53.07c-.45.45-1.016.676-1.618.676m0 0" }),
|
|
11401
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.137 39.633a2.17 2.17 0 0 1-1.582-.676c-.864-.867-.864-2.297 0-3.2l14.152-14.152c.867-.867 2.297-.867 3.2 0 .866.864.866 2.293 0 3.2L33.753 38.957a2.32 2.32 0 0 1-1.617.676m0 0" })
|
|
11402
|
-
] });
|
|
11403
|
-
const FineDining = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 179.25 129", ...props, children: [
|
|
11404
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
11405
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.316 94h177.872v33.262H.315Zm0 0" }) }),
|
|
11406
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M.316 94h177.872v33.262H.315Zm0 0" }) })
|
|
11407
|
-
] }),
|
|
11408
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M158.074 100.215a2.905 2.905 0 0 1-2.906-2.903c0-36.367-29.574-65.94-65.938-65.94-36.367 0-65.94 29.573-65.94 65.94a2.904 2.904 0 0 1-2.903 2.903 2.883 2.883 0 0 1-2.907-2.903c0-39.535 32.18-71.71 71.711-71.71 39.536 0 71.75 32.136 71.75 71.71 0 1.583-1.285 2.903-2.867 2.903m0 0" }),
|
|
11409
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M162.336 127.527H16.125c-10.375 0-15.809-8.336-15.809-16.562 0-8.223 5.434-16.559 15.809-16.559h146.21c5.888 0 10.638 2.68 13.47 7.543 3.129 5.395 3.129 12.64 0 18.035-2.832 4.864-7.582 7.543-13.47 7.543M16.125 100.215c-6.906 0-10 5.394-10 10.75 0 5.36 3.094 10.754 10 10.754h146.21c4.755 0 7.208-2.528 8.45-4.64 2.074-3.622 2.074-8.641 0-12.263-1.207-2.109-3.695-4.636-8.45-4.636H16.126Zm0 0" }) }),
|
|
11410
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M89.23 31.371c-8.64 0-15.656-7.016-15.656-15.652C73.574 7.079 80.59.063 89.23.063c8.637 0 15.653 7.015 15.653 15.656 0 8.636-7.016 15.652-15.653 15.652m0-25.539c-5.433 0-9.882 4.414-9.882 9.887a9.87 9.87 0 0 0 9.882 9.883c5.43 0 9.883-4.414 9.883-9.883 0-5.473-4.453-9.887-9.883-9.887m0 0" }),
|
|
11411
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M158.074 100.215a2.905 2.905 0 0 1-2.906-2.903c0-36.367-29.574-65.94-65.938-65.94-36.367 0-65.94 29.573-65.94 65.94a2.904 2.904 0 0 1-2.903 2.903 2.883 2.883 0 0 1-2.907-2.903c0-39.535 32.18-71.71 71.711-71.71 39.536 0 71.75 32.136 71.75 71.71 0 1.583-1.285 2.903-2.867 2.903m0 0" }),
|
|
11412
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M162.336 127.527H16.125c-10.375 0-15.809-8.336-15.809-16.562 0-8.223 5.434-16.559 15.809-16.559h146.21c5.888 0 10.638 2.68 13.47 7.543 3.129 5.395 3.129 12.64 0 18.035-2.832 4.864-7.582 7.543-13.47 7.543M16.125 100.215c-6.906 0-10 5.394-10 10.75 0 5.36 3.094 10.754 10 10.754h146.21c4.755 0 7.208-2.528 8.45-4.64 2.074-3.622 2.074-8.641 0-12.263-1.207-2.109-3.695-4.636-8.45-4.636H16.126Zm0 0" }) }),
|
|
11413
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M89.23 31.371c-8.64 0-15.656-7.016-15.656-15.652C73.574 7.079 80.59.063 89.23.063c8.637 0 15.653 7.015 15.653 15.656 0 8.636-7.016 15.652-15.653 15.652m0-25.539c-5.433 0-9.882 4.414-9.882 9.887a9.87 9.87 0 0 0 9.882 9.883c5.43 0 9.883-4.414 9.883-9.883 0-5.473-4.453-9.887-9.883-9.887m0 0" })
|
|
11414
|
-
] });
|
|
11415
|
-
const Fingerfood = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 213.75 171", ...props, children: [
|
|
11416
|
-
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M.496 0h211.762v170H.496Zm0 0" }) }) }),
|
|
11417
|
-
/* @__PURE__ */ jsxs("g", { fill: "#F95524", clipPath: "url(#a)", children: [
|
|
11418
|
-
/* @__PURE__ */ jsx("path", { d: "M210.383 128.094h-16.758c1.46-1.77 2.383-4.008 2.383-6.477V106.32c0-5.308-4.09-9.644-9.285-10.12 15.687-9.86 13.039-34.134-4.325-40.45 10.645-7.04 6.903-24.008-5.746-25.906V9.77c-.402-12.872-19.078-12.872-19.48 0v8.562q-.031.393.101.762c.086.246.215.465.395.656.176.191.387.34.625.441a1.84 1.84 0 0 0 1.5 0c.238-.101.45-.25.625-.441q.268-.287.394-.656.13-.369.102-.762V9.77c.211-7.91 11.797-7.91 12 0v19.949C159.77 31 155.454 48.5 166.383 55.75c-17.371 6.328-20 30.59-4.313 40.45-5.195.476-9.285 4.812-9.285 10.12v15.297c0 2.469.91 4.707 2.371 6.477h-35.558c13.66-8.64 13.617-29.555-.075-38.137 14.032-.883 13.66-21.68-.406-22.039h-10.14v-6.711c9.347-.941 17.093-3.676 22.203-5.988l16.59 2.703q.145.033.296.031.33.004.641-.11.31-.111.566-.323a2 2 0 0 0 .418-.5q.165-.287.22-.614c.753-4.27 1.398-12.761-2.829-21.582a33.95 33.95 0 0 0-8.363-11.031 1.874 1.874 0 0 0-2.629.156c-3.414 3.797-7.262 8.016-10.645 11.801-5.215 1.07-10.734 1.406-16.468 1.059V9.777a9.6 9.6 0 0 0-.73-3.722 9.6 9.6 0 0 0-2.102-3.157c-5.864-6.187-16.82-1.652-16.641 6.88v8.554c.012 2.45 3.73 2.45 3.742 0V9.777c-.16-5.214 6.688-8.054 10.238-4.238q.845.844 1.297 1.945c.305.735.453 1.5.453 2.293V36.5a81.5 81.5 0 0 1-12.73-2.469c-7.336-2.226-15.531 3.106-16.527 10.672-1.047 6.637 3.171 13.137 9.617 14.766 6.441 1.633 13.035 2.386 19.64 1.996v6.453H95.11c-14.074.36-14.437 21.168-.414 22.039-13.691 8.582-13.726 29.496-.062 38.137H61.074c1.465-1.77 2.387-4.008 2.387-6.477V106.32c0-5.308-4.094-9.644-9.285-10.12 13.8-8.567 13.84-29.606.082-38.235 14.035-.867 13.652-21.676-.414-22.035H43.71V9.77c-.402-12.872-19.078-12.872-19.48 0v8.562c.011 2.45 3.73 2.45 3.742 0V9.77c.199-7.91 11.797-7.91 11.996 0v26.16H29.836c-14.074.36-14.438 21.168-.402 22.035-13.77 8.64-13.715 29.668.086 38.234-5.196.477-9.286 4.813-9.286 10.121v15.297c0 2.469.91 4.707 2.375 6.477H2.375a1.832 1.832 0 0 0-1.328.543 1.8 1.8 0 0 0-.406.605q-.146.346-.145.715c.246 16.441 15.266 26.797 32.11 25.336-.872 7.77 4.937 14.605 13.406 14.617h120.742c8.394.02 14.289-6.902 13.379-14.617 8.722.52 17.68-1.324 23.996-7.367 5.246-4.793 8.129-11.172 8.129-17.969a1.9 1.9 0 0 0-.14-.715 1.9 1.9 0 0 0-.411-.605 1.823 1.823 0 0 0-1.324-.543m-46.531-84.172c.441-13.918 20.636-13.918 21.082.008-.414 13.836-20.672 13.824-21.082-.008m-8.504 33.133c-.075-11.278 9.816-19.864 20.754-18.953 23.945 2.918 22.503 37.195-1.707 38-10.504 0-19.047-8.543-19.047-19.047m1.175 29.265a6.598 6.598 0 0 1 .496-2.477c.165-.39.364-.765.602-1.116a6.3 6.3 0 0 1 .805-.98q.452-.452.98-.81a6.7 6.7 0 0 1 1.117-.597 6.3 6.3 0 0 1 1.215-.367q.628-.13 1.262-.13h22.793q.634.007 1.262.13.623.124 1.21.37a6.5 6.5 0 0 1 2.098 1.403q.452.452.805.98a6.57 6.57 0 0 1 .973 2.332q.124.626.125 1.262v15.297c0 .426-.04.844-.125 1.262a6.415 6.415 0 0 1-.969 2.332 6.3 6.3 0 0 1-.805.98q-.452.451-.98.809a6.7 6.7 0 0 1-1.117.598q-.593.244-1.215.37-.628.125-1.262.126H163q-.634-.001-1.262-.125a6.6 6.6 0 0 1-1.215-.371 6.7 6.7 0 0 1-1.117-.598 6.7 6.7 0 0 1-.98-.809q-.452-.449-.805-.98a6.4 6.4 0 0 1-.601-1.117 6.6 6.6 0 0 1-.497-2.477Zm-21.367-75.754 2.438-2.703a30.4 30.4 0 0 1 6.117 8.586c3.242 6.762 3.273 13.332 2.785 17.477l-14.062-2.301-4.106-13.48c2.27-2.54 4.547-5.063 6.828-7.579m-48.62 25.27c-7.759-1.824-9.454-12.879-2.65-17.047a9.4 9.4 0 0 1 3.688-1.387 9.4 9.4 0 0 1 3.934.235 83.8 83.8 0 0 0 15.433 2.808c6.2.54 12.25.297 17.946-.754l3.515 11.555.297.984c-10.3 5.067-29.414 7.536-42.164 3.606m8.573 15.824h24.008a7.045 7.045 0 0 1 7.04 7.047c.253 4.05-2.958 7.559-7.04 7.547H95.11c-9.359-.188-9.359-14.402 0-14.594m-7.046 37.387c0-10.508 8.542-19.05 19.046-19.05 25.258 1.03 25.258 37.07 0 38.097-10.504 0-19.046-8.543-19.046-19.047M29.836 39.672h24.008c9.351.187 9.363 14.402 0 14.594H29.836c-9.348-.192-9.36-14.395 0-14.594M22.8 77.055c0-10.504 8.543-19.047 19.047-19.047 25.257 1.027 25.246 37.078 0 38.094-10.504 0-19.047-8.543-19.047-19.047m1.176 29.265q.001-.636.125-1.261c.082-.418.207-.82.37-1.215.16-.39.36-.766.598-1.117a6.3 6.3 0 0 1 .805-.98q.452-.452.98-.81a6.7 6.7 0 0 1 1.122-.597c.39-.164.796-.285 1.21-.367q.627-.13 1.266-.13H53.23q.639 0 1.266.13a6.4 6.4 0 0 1 2.332.965q.534.358.984.804.452.452.805.985.357.525.602 1.117a6.5 6.5 0 0 1 .5 2.476v15.297q0 .64-.13 1.262a6.6 6.6 0 0 1-.366 1.219 6.501 6.501 0 0 1-1.41 2.098q-.453.45-.981.808a6.7 6.7 0 0 1-1.121.598 6.558 6.558 0 0 1-2.48.492H30.452q-.64-.001-1.265-.125a6.6 6.6 0 0 1-2.333-.969 6.7 6.7 0 0 1-.98-.809q-.451-.449-.805-.98a6 6 0 0 1-.597-1.117 6.3 6.3 0 0 1-.371-1.215 6.5 6.5 0 0 1-.125-1.262Zm152.414 51.188c0 4.781-4.325 8.66-9.637 8.66H46.012c-5.332 0-9.668-3.879-9.668-8.66v-2.215H176.39Zm25.214-12.34c-4.492 4.113-10.484 6.383-16.851 6.383H28.016c-12.414 0-22.633-8.684-23.68-19.715h204.086c-.477 5.023-2.852 9.7-6.817 13.332m0 0" }),
|
|
11419
|
-
/* @__PURE__ */ jsx("path", { d: "M210.383 128.094h-16.758c1.46-1.77 2.383-4.008 2.383-6.477V106.32c0-5.308-4.09-9.644-9.285-10.12 15.687-9.86 13.039-34.134-4.325-40.45 10.645-7.04 6.903-24.008-5.746-25.906V9.77c-.402-12.872-19.078-12.872-19.48 0v8.562q-.031.393.101.762c.086.246.215.465.395.656.176.191.387.34.625.441a1.84 1.84 0 0 0 1.5 0c.238-.101.45-.25.625-.441q.268-.287.394-.656.13-.369.102-.762V9.77c.211-7.91 11.797-7.91 12 0v19.949C159.77 31 155.454 48.5 166.383 55.75c-17.371 6.328-20 30.59-4.313 40.45-5.195.476-9.285 4.812-9.285 10.12v15.297c0 2.469.91 4.707 2.371 6.477h-35.558c13.66-8.64 13.617-29.555-.075-38.137 14.032-.883 13.66-21.68-.406-22.039h-10.14v-6.711c9.347-.941 17.093-3.676 22.203-5.988l16.59 2.703q.145.033.296.031.33.004.641-.11.31-.111.566-.323a2 2 0 0 0 .418-.5q.165-.287.22-.614c.753-4.27 1.398-12.761-2.829-21.582a33.95 33.95 0 0 0-8.363-11.031 1.874 1.874 0 0 0-2.629.156c-3.414 3.797-7.262 8.016-10.645 11.801-5.215 1.07-10.734 1.406-16.468 1.059V9.777a9.6 9.6 0 0 0-.73-3.722 9.6 9.6 0 0 0-2.102-3.157c-5.864-6.187-16.82-1.652-16.641 6.88v8.554c.012 2.45 3.73 2.45 3.742 0V9.777c-.16-5.214 6.688-8.054 10.238-4.238q.845.844 1.297 1.945c.305.735.453 1.5.453 2.293V36.5a81.5 81.5 0 0 1-12.73-2.469c-7.336-2.226-15.531 3.106-16.527 10.672-1.047 6.637 3.171 13.137 9.617 14.766 6.441 1.633 13.035 2.386 19.64 1.996v6.453H95.11c-14.074.36-14.437 21.168-.414 22.039-13.691 8.582-13.726 29.496-.062 38.137H61.074c1.465-1.77 2.387-4.008 2.387-6.477V106.32c0-5.308-4.094-9.644-9.285-10.12 13.8-8.567 13.84-29.606.082-38.235 14.035-.867 13.652-21.676-.414-22.035H43.71V9.77c-.402-12.872-19.078-12.872-19.48 0v8.562c.011 2.45 3.73 2.45 3.742 0V9.77c.199-7.91 11.797-7.91 11.996 0v26.16H29.836c-14.074.36-14.438 21.168-.402 22.035-13.77 8.64-13.715 29.668.086 38.234-5.196.477-9.286 4.813-9.286 10.121v15.297c0 2.469.91 4.707 2.375 6.477H2.375a1.832 1.832 0 0 0-1.328.543 1.8 1.8 0 0 0-.406.605q-.146.346-.145.715c.246 16.441 15.266 26.797 32.11 25.336-.872 7.77 4.937 14.605 13.406 14.617h120.742c8.394.02 14.289-6.902 13.379-14.617 8.722.52 17.68-1.324 23.996-7.367 5.246-4.793 8.129-11.172 8.129-17.969a1.9 1.9 0 0 0-.14-.715 1.9 1.9 0 0 0-.411-.605 1.823 1.823 0 0 0-1.324-.543m-46.531-84.172c.441-13.918 20.636-13.918 21.082.008-.414 13.836-20.672 13.824-21.082-.008m-8.504 33.133c-.075-11.278 9.816-19.864 20.754-18.953 23.945 2.918 22.503 37.195-1.707 38-10.504 0-19.047-8.543-19.047-19.047m1.175 29.265a6.598 6.598 0 0 1 .496-2.477c.165-.39.364-.765.602-1.116a6.3 6.3 0 0 1 .805-.98q.452-.452.98-.81a6.7 6.7 0 0 1 1.117-.597 6.3 6.3 0 0 1 1.215-.367q.628-.13 1.262-.13h22.793q.634.007 1.262.13.623.124 1.21.37a6.5 6.5 0 0 1 2.098 1.403q.452.452.805.98a6.57 6.57 0 0 1 .973 2.332q.124.626.125 1.262v15.297c0 .426-.04.844-.125 1.262a6.415 6.415 0 0 1-.969 2.332 6.3 6.3 0 0 1-.805.98q-.452.451-.98.809a6.7 6.7 0 0 1-1.117.598q-.593.244-1.215.37-.628.125-1.262.126H163q-.634-.001-1.262-.125a6.6 6.6 0 0 1-1.215-.371 6.7 6.7 0 0 1-1.117-.598 6.7 6.7 0 0 1-.98-.809q-.452-.449-.805-.98a6.4 6.4 0 0 1-.601-1.117 6.6 6.6 0 0 1-.497-2.477Zm-21.367-75.754 2.438-2.703a30.4 30.4 0 0 1 6.117 8.586c3.242 6.762 3.273 13.332 2.785 17.477l-14.062-2.301-4.106-13.48c2.27-2.54 4.547-5.063 6.828-7.579m-48.62 25.27c-7.759-1.824-9.454-12.879-2.65-17.047a9.4 9.4 0 0 1 3.688-1.387 9.4 9.4 0 0 1 3.934.235 83.8 83.8 0 0 0 15.433 2.808c6.2.54 12.25.297 17.946-.754l3.515 11.555.297.984c-10.3 5.067-29.414 7.536-42.164 3.606m8.573 15.824h24.008a7.045 7.045 0 0 1 7.04 7.047c.253 4.05-2.958 7.559-7.04 7.547H95.11c-9.359-.188-9.359-14.402 0-14.594m-7.046 37.387c0-10.508 8.542-19.05 19.046-19.05 25.258 1.03 25.258 37.07 0 38.097-10.504 0-19.046-8.543-19.046-19.047M29.836 39.672h24.008c9.351.187 9.363 14.402 0 14.594H29.836c-9.348-.192-9.36-14.395 0-14.594M22.8 77.055c0-10.504 8.543-19.047 19.047-19.047 25.257 1.027 25.246 37.078 0 38.094-10.504 0-19.047-8.543-19.047-19.047m1.176 29.265q.001-.636.125-1.261c.082-.418.207-.82.37-1.215.16-.39.36-.766.598-1.117a6.3 6.3 0 0 1 .805-.98q.452-.452.98-.81a6.7 6.7 0 0 1 1.122-.597c.39-.164.796-.285 1.21-.367q.627-.13 1.266-.13H53.23q.639 0 1.266.13a6.4 6.4 0 0 1 2.332.965q.534.358.984.804.452.452.805.985.357.525.602 1.117a6.5 6.5 0 0 1 .5 2.476v15.297q0 .64-.13 1.262a6.6 6.6 0 0 1-.366 1.219 6.501 6.501 0 0 1-1.41 2.098q-.453.45-.981.808a6.7 6.7 0 0 1-1.121.598 6.558 6.558 0 0 1-2.48.492H30.452q-.64-.001-1.265-.125a6.6 6.6 0 0 1-2.333-.969 6.7 6.7 0 0 1-.98-.809q-.451-.449-.805-.98a6 6 0 0 1-.597-1.117 6.3 6.3 0 0 1-.371-1.215 6.5 6.5 0 0 1-.125-1.262Zm152.414 51.188c0 4.781-4.325 8.66-9.637 8.66H46.012c-5.332 0-9.668-3.879-9.668-8.66v-2.215H176.39Zm25.214-12.34c-4.492 4.113-10.484 6.383-16.851 6.383H28.016c-12.414 0-22.633-8.684-23.68-19.715h204.086c-.477 5.023-2.852 9.7-6.817 13.332m0 0" })
|
|
11420
|
-
] })
|
|
11421
|
-
] });
|
|
11422
|
-
const StreetFood = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 217.5 154.5", ...props, children: [
|
|
11423
|
-
/* @__PURE__ */ jsxs("defs", { children: [
|
|
11424
|
-
/* @__PURE__ */ jsx("clipPath", { id: "a", children: /* @__PURE__ */ jsx("path", { d: "M28 107h46v46.254H28Zm0 0" }) }),
|
|
11425
|
-
/* @__PURE__ */ jsx("clipPath", { id: "b", children: /* @__PURE__ */ jsx("path", { d: "M141 107h47v46.254h-47Zm0 0" }) }),
|
|
11426
|
-
/* @__PURE__ */ jsx("clipPath", { id: "c", children: /* @__PURE__ */ jsx("path", { d: "M192 117h22.656v19H192Zm0 0" }) }),
|
|
11427
|
-
/* @__PURE__ */ jsx("clipPath", { id: "d", children: /* @__PURE__ */ jsx("path", { d: "M.102 117H21v19H.102Zm0 0" }) }),
|
|
11428
|
-
/* @__PURE__ */ jsx("clipPath", { id: "e", children: /* @__PURE__ */ jsx("path", { d: "M.102 148h214.554v5.254H.102Zm0 0" }) }),
|
|
11429
|
-
/* @__PURE__ */ jsx("clipPath", { id: "f", children: /* @__PURE__ */ jsx("path", { d: "M30 107h46v46.254H30Zm0 0" }) }),
|
|
11430
|
-
/* @__PURE__ */ jsx("clipPath", { id: "g", children: /* @__PURE__ */ jsx("path", { d: "M143 107h47v46.254h-47Zm0 0" }) }),
|
|
11431
|
-
/* @__PURE__ */ jsx("clipPath", { id: "h", children: /* @__PURE__ */ jsx("path", { d: "M194 117h22.559v19H194Zm0 0" }) }),
|
|
11432
|
-
/* @__PURE__ */ jsx("clipPath", { id: "i", children: /* @__PURE__ */ jsx("path", { d: "M2.004 117H23v19H2.004Zm0 0" }) }),
|
|
11433
|
-
/* @__PURE__ */ jsx("clipPath", { id: "j", children: /* @__PURE__ */ jsx("path", { d: "M2.004 148h214.555v5.254H2.004Zm0 0" }) })
|
|
11434
|
-
] }),
|
|
11435
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M51.04 141.645c-6.157 0-11.185-5.028-11.185-11.184 0-6.16 5.028-11.188 11.184-11.188s11.184 5.028 11.184 11.188c0 6.156-4.985 11.184-11.184 11.184m0-17.383a6.163 6.163 0 0 0-6.157 6.156 6.163 6.163 0 0 0 6.156 6.156 6.163 6.163 0 0 0 6.156-6.156 6.14 6.14 0 0 0-6.156-6.156m0 0" }),
|
|
11436
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M51.04 153.332c-12.653 0-22.915-10.262-22.915-22.914s10.262-22.914 22.914-22.914 22.914 10.262 22.914 22.914-10.262 22.914-22.914 22.914m0-40.8c-9.845 0-17.888 8.042-17.888 17.886s8.043 17.887 17.887 17.887 17.887-8.043 17.887-17.887-8-17.887-17.887-17.887m0 0" }) }),
|
|
11437
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M164.895 141.645c-6.157 0-11.184-5.028-11.184-11.184 0-6.16 5.027-11.188 11.184-11.188s11.183 5.028 11.183 11.188c0 6.156-4.984 11.184-11.183 11.184m0-17.383a6.163 6.163 0 0 0-6.157 6.156 6.163 6.163 0 0 0 6.157 6.156 6.163 6.163 0 0 0 6.156-6.156 6.163 6.163 0 0 0-6.156-6.156m0 0" }),
|
|
11438
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#b)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M164.895 153.332c-12.653 0-22.915-10.262-22.915-22.914s10.262-22.914 22.915-22.914 22.914 10.262 22.914 22.914-10.262 22.914-22.914 22.914m0-40.8c-9.844 0-17.887 8.042-17.887 17.886s8.043 17.887 17.887 17.887c9.843 0 17.886-8.043 17.886-17.887s-8-17.887-17.886-17.887m0 0" }) }),
|
|
11439
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M144.703 135.95H71.23a2.524 2.524 0 0 1-2.515-2.516 2.52 2.52 0 0 1 2.515-2.512h73.473a2.52 2.52 0 0 1 2.516 2.512 2.524 2.524 0 0 1-2.516 2.515M195.516 135.95h-10.43a2.524 2.524 0 0 1-2.516-2.516 2.52 2.52 0 0 1 2.516-2.512h10.43a2.517 2.517 0 0 1 2.511 2.512 2.52 2.52 0 0 1-2.511 2.515m0 0" }),
|
|
11440
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#c)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M207.746 135.95h-12.273c-1.383 0-2.512-1.09-2.512-2.473l-.125-8.63c-.043-1.843.668-3.562 1.969-4.902 1.297-1.297 3.015-2.05 4.86-2.05h8.042a6.83 6.83 0 0 1 6.828 6.828v4.398c.04 3.77-3.02 6.828-6.789 6.828m-9.758-5.028h9.758c1.008 0 1.8-.797 1.8-1.8v-4.4a1.787 1.787 0 0 0-1.8-1.804h-8.043c-.5 0-.922.21-1.297.547-.336.336-.504.797-.504 1.297Zm0 0" }) }),
|
|
11441
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M30.89 135.95H17.989a2.52 2.52 0 0 1-2.511-2.516 2.517 2.517 0 0 1 2.511-2.512h12.86a2.52 2.52 0 0 1 2.515 2.512c0 1.382-1.09 2.515-2.472 2.515m0 0" }),
|
|
11442
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#d)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M17.988 135.95H6.93a6.83 6.83 0 0 1-6.828-6.829v-5.238a6.83 6.83 0 0 1 6.828-6.828h6.742a6.83 6.83 0 0 1 6.828 6.828v9.55a2.52 2.52 0 0 1-2.512 2.516M6.93 122.081c-1.004 0-1.801.797-1.801 1.8v5.24c0 1.003.797 1.8 1.8 1.8h8.548v-7.04a1.79 1.79 0 0 0-1.805-1.8Zm0 0" }) }),
|
|
11443
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M204.691 122.918a2.52 2.52 0 0 1-2.515-2.512V95.02a5.71 5.71 0 0 0-2.512-4.73l-13.027-8.798a2.55 2.55 0 0 1-1.008-1.383l-15.54-53.828c-.628-2.136-2.64-3.644-4.859-3.644H15.938a5.06 5.06 0 0 0-5.07 5.066v91.906a2.523 2.523 0 0 1-2.513 2.516 2.524 2.524 0 0 1-2.515-2.516V27.621c0-5.57 4.523-10.094 10.098-10.094h149.25c4.484 0 8.46 3.016 9.675 7.29l15.29 52.988 12.273 8.293a10.71 10.71 0 0 1 4.734 8.922v25.386c.043 1.383-1.09 2.512-2.469 2.512m0 0" }),
|
|
11444
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M188.02 81.91h-58.606a2.52 2.52 0 0 1-2.512-2.512 2.52 2.52 0 0 1 2.512-2.515h58.606a2.523 2.523 0 0 1 2.511 2.515 2.52 2.52 0 0 1-2.511 2.512m0 0" }),
|
|
11445
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M167.281 81.91a2.52 2.52 0 0 1-2.511-2.512V37.215a2.52 2.52 0 0 1 2.511-2.516 2.524 2.524 0 0 1 2.516 2.516v42.14c0 1.422-1.133 2.555-2.516 2.555m0 0" }),
|
|
11446
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M129.414 135.95a2.52 2.52 0 0 1-2.512-2.516v-96.22a2.52 2.52 0 0 1 2.512-2.515h46.414a2.52 2.52 0 0 1 2.512 2.516 2.517 2.517 0 0 1-2.512 2.512h-43.902v93.664c0 1.425-1.13 2.558-2.512 2.558M173.566 114.5a2.523 2.523 0 0 1-2.515-2.512v-32.59a2.524 2.524 0 0 1 2.515-2.515 2.52 2.52 0 0 1 2.512 2.515v32.59a2.495 2.495 0 0 1-2.512 2.512M75.543 22.594a2.52 2.52 0 0 1-2.512-2.512v-5.488a6.166 6.166 0 0 0-6.156-6.156H48.148a6.163 6.163 0 0 0-6.156 6.156v5.488a2.52 2.52 0 0 1-2.515 2.512 2.517 2.517 0 0 1-2.512-2.512v-5.488c0-6.156 5.027-11.184 11.183-11.184h18.727c6.156 0 11.184 5.028 11.184 11.184v5.488a2.52 2.52 0 0 1-2.516 2.512M133.227 22.594a2.52 2.52 0 0 1-2.516-2.512v-5.613c0-5.196-4.23-9.426-9.422-9.426h-20.738c-5.192 0-9.422 4.23-9.422 9.426v5.613a2.52 2.52 0 0 1-2.516 2.512 2.517 2.517 0 0 1-2.511-2.512v-5.613c0-7.961 6.492-14.453 14.449-14.453h20.738c7.957 0 14.45 6.492 14.45 14.453v5.613a2.517 2.517 0 0 1-2.512 2.512m0 0" }),
|
|
11447
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#e)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M212.063 153.332H2.613a2.523 2.523 0 0 1-2.511-2.516 2.52 2.52 0 0 1 2.511-2.511h209.45a2.52 2.52 0 0 1 2.511 2.511 2.52 2.52 0 0 1-2.512 2.516m0 0" }) }),
|
|
11448
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M81.828 56.023c-4.61 0-8.46-3.144-9.594-7.375h-5.359c-1.133 4.23-4.988 7.375-9.594 7.375-4.61 0-8.46-3.144-9.593-7.375h-5.153a11.15 11.15 0 0 1-10.055 6.368c-6.113 0-11.097-4.985-11.097-11.098 0-6.117 4.984-11.102 11.097-11.102h74.02c6.117 0 11.102 4.985 11.102 11.102 0 6.113-4.985 11.098-11.102 11.098-4.355 0-8.25-2.555-10.05-6.368h-5.157c-1.004 4.23-4.898 7.375-9.465 7.375M64.695 43.621h9.72a2.52 2.52 0 0 1 2.51 2.516c0 2.68 2.18 4.86 4.86 4.86 2.684 0 4.86-2.18 4.86-4.86a2.524 2.524 0 0 1 2.515-2.516h9.09a2.52 2.52 0 0 1 2.43 1.844c.71 2.64 3.14 4.484 5.863 4.484a6.08 6.08 0 0 0 6.074-6.074 6.08 6.08 0 0 0-6.074-6.074H32.566a6.08 6.08 0 0 0-6.074 6.074 6.08 6.08 0 0 0 6.074 6.074 6.056 6.056 0 0 0 5.864-4.484 2.52 2.52 0 0 1 2.43-1.844h9.09a2.524 2.524 0 0 1 2.515 2.516c0 2.68 2.176 4.86 4.86 4.86 2.679 0 4.859-2.18 4.859-4.86a2.52 2.52 0 0 1 2.511-2.516m0 0" }),
|
|
11449
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M33.234 98.203a2.52 2.52 0 0 1-2.511-2.512v-43.23a2.52 2.52 0 0 1 2.511-2.512 2.52 2.52 0 0 1 2.516 2.512v43.23a2.52 2.52 0 0 1-2.516 2.512M105.914 98.203a2.517 2.517 0 0 1-2.512-2.512v-43.23a2.517 2.517 0 0 1 2.512-2.512 2.517 2.517 0 0 1 2.512 2.512v43.23a2.517 2.517 0 0 1-2.512 2.512m0 0" }),
|
|
11450
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M115.172 98.203H23.938a2.52 2.52 0 0 1-2.516-2.512 2.52 2.52 0 0 1 2.515-2.511h91.235a2.517 2.517 0 0 1 2.512 2.511 2.517 2.517 0 0 1-2.512 2.512M105.914 85.137h-72.68a2.523 2.523 0 0 1-2.511-2.516 2.52 2.52 0 0 1 2.511-2.512h72.68a2.517 2.517 0 0 1 2.512 2.512 2.52 2.52 0 0 1-2.512 2.516M105.914 72.066h-72.68a2.523 2.523 0 0 1-2.511-2.515 2.52 2.52 0 0 1 2.511-2.512h72.68a2.52 2.52 0 0 1 2.512 2.512 2.52 2.52 0 0 1-2.512 2.515M52.941 141.645c-6.16 0-11.187-5.028-11.187-11.184 0-6.16 5.027-11.188 11.187-11.188 6.157 0 11.184 5.028 11.184 11.188 0 6.156-4.984 11.184-11.184 11.184m0-17.383c-3.394 0-6.16 2.761-6.16 6.156s2.766 6.156 6.16 6.156a6.166 6.166 0 0 0 6.157-6.156 6.14 6.14 0 0 0-6.157-6.156m0 0" }),
|
|
11451
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#f)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M52.941 153.332c-12.652 0-22.914-10.262-22.914-22.914s10.262-22.914 22.914-22.914c12.649 0 22.91 10.262 22.91 22.914s-10.261 22.914-22.91 22.914m0-40.8c-9.843 0-17.886 8.042-17.886 17.886s8.043 17.887 17.886 17.887 17.887-8.043 17.887-17.887-8.004-17.887-17.887-17.887m0 0" }) }),
|
|
11452
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M166.797 141.645c-6.16 0-11.188-5.028-11.188-11.184 0-6.16 5.028-11.188 11.188-11.188 6.156 0 11.183 5.028 11.183 11.188 0 6.156-4.984 11.184-11.183 11.184m0-17.383c-3.395 0-6.16 2.761-6.16 6.156s2.765 6.156 6.16 6.156a6.166 6.166 0 0 0 6.156-6.156 6.166 6.166 0 0 0-6.156-6.156m0 0" }),
|
|
11453
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#g)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M166.797 153.332c-12.652 0-22.914-10.262-22.914-22.914s10.262-22.914 22.914-22.914c12.648 0 22.91 10.262 22.91 22.914s-10.262 22.914-22.91 22.914m0-40.8c-9.844 0-17.887 8.042-17.887 17.886s8.043 17.887 17.887 17.887 17.887-8.043 17.887-17.887-8.004-17.887-17.887-17.887m0 0" }) }),
|
|
11454
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M146.605 135.95H73.13a2.523 2.523 0 0 1-2.512-2.516 2.52 2.52 0 0 1 2.512-2.512h73.476a2.517 2.517 0 0 1 2.512 2.512 2.52 2.52 0 0 1-2.512 2.515M197.418 135.95h-10.434a2.523 2.523 0 0 1-2.511-2.516 2.52 2.52 0 0 1 2.511-2.512h10.434a2.517 2.517 0 0 1 2.512 2.512 2.52 2.52 0 0 1-2.512 2.515m0 0" }),
|
|
11455
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#h)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M209.648 135.95h-12.273c-1.383 0-2.516-1.09-2.516-2.473l-.125-8.63c-.039-1.843.672-3.562 1.97-4.902 1.3-1.297 3.015-2.05 4.858-2.05h8.043a6.83 6.83 0 0 1 6.829 6.828v4.398c.043 3.77-3.016 6.828-6.786 6.828m-9.761-5.028h9.761c1.004 0 1.801-.797 1.801-1.8v-4.4a1.79 1.79 0 0 0-1.8-1.804h-8.044c-.503 0-.921.21-1.296.547-.336.336-.504.797-.504 1.297Zm0 0" }) }),
|
|
11456
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M32.793 135.95H19.891a2.524 2.524 0 0 1-2.516-2.516 2.52 2.52 0 0 1 2.516-2.512H32.75a2.517 2.517 0 0 1 2.512 2.512c0 1.382-1.09 2.515-2.469 2.515m0 0" }),
|
|
11457
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#i)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M19.89 135.95H8.833a6.83 6.83 0 0 1-6.828-6.829v-5.238a6.83 6.83 0 0 1 6.828-6.828h6.742a6.83 6.83 0 0 1 6.828 6.828v9.55a2.52 2.52 0 0 1-2.511 2.516M8.833 122.081a1.79 1.79 0 0 0-1.805 1.8v5.24c0 1.003.797 1.8 1.805 1.8h8.543v-7.04c0-1.003-.797-1.8-1.8-1.8Zm0 0" }) }),
|
|
11458
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M206.59 122.918a2.517 2.517 0 0 1-2.512-2.512V95.02a5.7 5.7 0 0 0-2.516-4.73l-13.027-8.798c-.5-.336-.836-.84-1.004-1.383l-15.543-53.828c-.629-2.136-2.636-3.644-4.86-3.644H17.837a5.06 5.06 0 0 0-5.066 5.066v91.906a2.524 2.524 0 0 1-2.516 2.516 2.52 2.52 0 0 1-2.512-2.516V27.621c0-5.57 4.524-10.094 10.094-10.094H167.09c4.48 0 8.46 3.016 9.676 7.29l15.289 52.988 12.273 8.293a10.72 10.72 0 0 1 4.734 8.922v25.386c.043 1.383-1.09 2.512-2.472 2.512m0 0" }),
|
|
11459
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M189.918 81.91h-58.602a2.523 2.523 0 0 1-2.515-2.512 2.524 2.524 0 0 1 2.515-2.515h58.602a2.524 2.524 0 0 1 2.516 2.515 2.523 2.523 0 0 1-2.516 2.512m0 0" }),
|
|
11460
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M169.184 81.91a2.523 2.523 0 0 1-2.516-2.512V37.215a2.524 2.524 0 0 1 2.516-2.516 2.52 2.52 0 0 1 2.511 2.516v42.14c0 1.422-1.129 2.555-2.511 2.555m0 0" }),
|
|
11461
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M131.316 135.95a2.524 2.524 0 0 1-2.515-2.516v-96.22a2.524 2.524 0 0 1 2.515-2.515h46.41a2.524 2.524 0 0 1 2.516 2.516 2.52 2.52 0 0 1-2.515 2.512h-43.899v93.664c0 1.425-1.129 2.558-2.512 2.558M175.465 114.5a2.52 2.52 0 0 1-2.512-2.512v-32.59a2.523 2.523 0 0 1 2.512-2.515 2.524 2.524 0 0 1 2.515 2.515v32.59a2.496 2.496 0 0 1-2.515 2.512M77.445 22.594a2.517 2.517 0 0 1-2.511-2.512v-5.488c0-3.395-2.766-6.156-6.16-6.156H50.05c-3.395 0-6.16 2.761-6.16 6.156v5.488a2.517 2.517 0 0 1-2.512 2.512 2.52 2.52 0 0 1-2.516-2.512v-5.488c0-6.156 5.028-11.184 11.188-11.184h18.722c6.16 0 11.184 5.028 11.184 11.184v5.488a2.517 2.517 0 0 1-2.512 2.512M135.125 22.594a2.52 2.52 0 0 1-2.512-2.512v-5.613c0-5.196-4.23-9.426-9.425-9.426h-20.735c-5.195 0-9.426 4.23-9.426 9.426v5.613a2.517 2.517 0 0 1-2.511 2.512A2.52 2.52 0 0 1 88 20.082v-5.613C88 6.508 94.496.016 102.453.016h20.734c7.961 0 14.454 6.492 14.454 14.453v5.613a2.52 2.52 0 0 1-2.516 2.512m0 0" }),
|
|
11462
|
-
/* @__PURE__ */ jsx("g", { clipPath: "url(#j)", children: /* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M213.96 153.332H4.517a2.52 2.52 0 0 1-2.512-2.516 2.52 2.52 0 0 1 2.512-2.511H213.96a2.523 2.523 0 0 1 2.516 2.511 2.524 2.524 0 0 1-2.516 2.516m0 0" }) }),
|
|
11463
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M83.73 56.023c-4.609 0-8.464-3.144-9.593-7.375h-5.364c-1.128 4.23-4.984 7.375-9.593 7.375-4.606 0-8.461-3.144-9.59-7.375h-5.153a11.15 11.15 0 0 1-10.054 6.368c-6.117 0-11.102-4.985-11.102-11.098 0-6.117 4.985-11.102 11.102-11.102h74.02c6.113 0 11.1 4.985 11.1 11.102 0 6.113-4.987 11.098-11.1 11.098a11.15 11.15 0 0 1-10.055-6.368h-5.153c-1.004 4.23-4.902 7.375-9.465 7.375M66.598 43.621h9.715a2.524 2.524 0 0 1 2.515 2.516c0 2.68 2.176 4.86 4.86 4.86 2.68 0 4.859-2.18 4.859-4.86a2.52 2.52 0 0 1 2.512-2.516h9.09c1.132 0 2.136.758 2.43 1.844.71 2.64 3.14 4.484 5.866 4.484a6.077 6.077 0 0 0 6.07-6.074 6.077 6.077 0 0 0-6.07-6.074h-73.98a6.077 6.077 0 0 0-6.07 6.074 6.077 6.077 0 0 0 6.07 6.074 6.064 6.064 0 0 0 5.867-4.484 2.516 2.516 0 0 1 2.43-1.844h9.09a2.52 2.52 0 0 1 2.511 2.516c0 2.68 2.18 4.86 4.86 4.86s4.859-2.18 4.859-4.86a2.524 2.524 0 0 1 2.516-2.516m0 0" }),
|
|
11464
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M35.137 98.203a2.517 2.517 0 0 1-2.512-2.512v-43.23a2.517 2.517 0 0 1 2.512-2.512 2.517 2.517 0 0 1 2.511 2.512v43.23a2.517 2.517 0 0 1-2.511 2.512M107.816 98.203a2.52 2.52 0 0 1-2.515-2.512v-43.23a2.52 2.52 0 0 1 2.515-2.512 2.517 2.517 0 0 1 2.512 2.512v43.23a2.517 2.517 0 0 1-2.512 2.512m0 0" }),
|
|
11465
|
-
/* @__PURE__ */ jsx("path", { fill: "#F95524", d: "M117.074 98.203H25.836a2.52 2.52 0 0 1-2.512-2.512 2.52 2.52 0 0 1 2.512-2.511h91.238a2.52 2.52 0 0 1 2.512 2.511 2.52 2.52 0 0 1-2.512 2.512M107.816 85.137h-72.68a2.52 2.52 0 0 1-2.511-2.516 2.517 2.517 0 0 1 2.512-2.512h72.68a2.517 2.517 0 0 1 2.511 2.512 2.52 2.52 0 0 1-2.512 2.516M107.816 72.066h-72.68a2.52 2.52 0 0 1-2.511-2.515 2.52 2.52 0 0 1 2.512-2.512h72.68a2.52 2.52 0 0 1 2.511 2.512 2.52 2.52 0 0 1-2.512 2.515m0 0" })
|
|
11466
|
-
] });
|
|
11370
|
+
const ICON_BASE_PATH = "/artifacts/icons/catering_category";
|
|
11371
|
+
const getIconUrl = (name) => getAssetUrl(`${ICON_BASE_PATH}/${name}.svg`);
|
|
11467
11372
|
const DEFAULT_IMAGE_SIZE = {
|
|
11468
11373
|
SM: 40,
|
|
11469
11374
|
MD: 60
|
|
@@ -11481,23 +11386,28 @@ const CateringCategoryTiles = ({
|
|
|
11481
11386
|
const { t: t2 } = useTranslation("common");
|
|
11482
11387
|
const cateringCategories = useCateringCategories(items);
|
|
11483
11388
|
const smUp = useBreakpointUp("sm");
|
|
11389
|
+
const { trackAnswer } = useTracking();
|
|
11484
11390
|
return /* @__PURE__ */ jsxs(TilesWrapper, { children: [
|
|
11485
|
-
cateringCategories.map(({
|
|
11391
|
+
cateringCategories.map(({ src, text, scale, id }) => /* @__PURE__ */ jsxs(
|
|
11486
11392
|
Tile,
|
|
11487
11393
|
{
|
|
11488
11394
|
$variant: variant,
|
|
11489
11395
|
$selected: selected ? selected.includes(id) : false,
|
|
11490
11396
|
id: `tile__catering_category--${id}`,
|
|
11397
|
+
"data-ph-capture-attribute-value": id,
|
|
11491
11398
|
onClick: (e2) => {
|
|
11492
11399
|
e2.currentTarget.blur();
|
|
11400
|
+
trackAnswer("catering_categories", id);
|
|
11493
11401
|
onSelect(id);
|
|
11494
11402
|
},
|
|
11495
11403
|
children: [
|
|
11496
11404
|
/* @__PURE__ */ jsx(ImageWrapper, { $scale: scale, children: /* @__PURE__ */ jsx(
|
|
11497
|
-
|
|
11405
|
+
StyledImg,
|
|
11498
11406
|
{
|
|
11407
|
+
alt: "",
|
|
11499
11408
|
width: smUp ? DEFAULT_IMAGE_SIZE.MD : DEFAULT_IMAGE_SIZE.SM,
|
|
11500
|
-
height: smUp ? DEFAULT_IMAGE_SIZE.MD : DEFAULT_IMAGE_SIZE.SM
|
|
11409
|
+
height: smUp ? DEFAULT_IMAGE_SIZE.MD : DEFAULT_IMAGE_SIZE.SM,
|
|
11410
|
+
src
|
|
11501
11411
|
}
|
|
11502
11412
|
) }),
|
|
11503
11413
|
/* @__PURE__ */ jsx(TileTypography, { children: text })
|
|
@@ -11510,8 +11420,10 @@ const CateringCategoryTiles = ({
|
|
|
11510
11420
|
{
|
|
11511
11421
|
id: "tile__catering_category--other",
|
|
11512
11422
|
$variant: variant,
|
|
11423
|
+
"data-ph-capture-attribute-value": "other",
|
|
11513
11424
|
onClick: (e2) => {
|
|
11514
11425
|
e2.currentTarget.blur();
|
|
11426
|
+
trackAnswer("catering_categories", "other");
|
|
11515
11427
|
onSelect("other");
|
|
11516
11428
|
},
|
|
11517
11429
|
$selected: selected ? selected.includes("other") : false,
|
|
@@ -11532,6 +11444,9 @@ const CateringCategoryTiles = ({
|
|
|
11532
11444
|
)
|
|
11533
11445
|
] });
|
|
11534
11446
|
};
|
|
11447
|
+
const StyledImg = styled.img`
|
|
11448
|
+
object-fit: contain;
|
|
11449
|
+
`;
|
|
11535
11450
|
const ImageWrapper = styled(Box)`
|
|
11536
11451
|
--wrapperSize: ${IMAGE_WRAPPER_SIZE.SM}px;
|
|
11537
11452
|
|
|
@@ -11554,42 +11469,42 @@ function useCateringCategories(items) {
|
|
|
11554
11469
|
const allCategories = [
|
|
11555
11470
|
{
|
|
11556
11471
|
id: "fingerfood",
|
|
11557
|
-
|
|
11472
|
+
src: getIconUrl("fingerfood"),
|
|
11558
11473
|
text: t2("occasion.fingerfood")
|
|
11559
11474
|
},
|
|
11560
11475
|
{
|
|
11561
11476
|
id: "buffet",
|
|
11562
|
-
|
|
11477
|
+
src: getIconUrl("buffet"),
|
|
11563
11478
|
text: t2("occasion.buffet")
|
|
11564
11479
|
},
|
|
11565
11480
|
{
|
|
11566
11481
|
id: "street_food",
|
|
11567
|
-
|
|
11482
|
+
src: getIconUrl("street_food"),
|
|
11568
11483
|
text: t2("occasion.street_food")
|
|
11569
11484
|
},
|
|
11570
11485
|
{
|
|
11571
11486
|
id: "business_lunch",
|
|
11572
|
-
|
|
11487
|
+
src: getIconUrl("business_lunch"),
|
|
11573
11488
|
text: t2("occasion.business_lunch")
|
|
11574
11489
|
},
|
|
11575
11490
|
{
|
|
11576
11491
|
id: "breakfast",
|
|
11577
|
-
|
|
11492
|
+
src: getIconUrl("breakfast"),
|
|
11578
11493
|
text: t2("occasion.breakfast")
|
|
11579
11494
|
},
|
|
11580
11495
|
{
|
|
11581
11496
|
id: "cakes_and_sweets",
|
|
11582
|
-
|
|
11497
|
+
src: getIconUrl("cakes_and_sweets"),
|
|
11583
11498
|
text: t2("occasion.cakes_and_sweets")
|
|
11584
11499
|
},
|
|
11585
11500
|
{
|
|
11586
11501
|
id: "fine_dining",
|
|
11587
|
-
|
|
11502
|
+
src: getIconUrl("fine_dining"),
|
|
11588
11503
|
text: t2("occasion.fine_dining_short")
|
|
11589
11504
|
},
|
|
11590
11505
|
{
|
|
11591
11506
|
id: "drinks",
|
|
11592
|
-
|
|
11507
|
+
src: getIconUrl("drinks"),
|
|
11593
11508
|
text: t2("occasion.drinks_short")
|
|
11594
11509
|
}
|
|
11595
11510
|
];
|
|
@@ -11622,6 +11537,7 @@ const CityTiles = ({
|
|
|
11622
11537
|
size = "md"
|
|
11623
11538
|
}) => {
|
|
11624
11539
|
const { t: t2 } = useTranslation();
|
|
11540
|
+
const { trackAnswer } = useTracking();
|
|
11625
11541
|
return /* @__PURE__ */ jsx(TilesWrapper, { $size: size, children: tileIcons.map(({ id, Icon, translationKey }) => /* @__PURE__ */ jsxs(
|
|
11626
11542
|
Tile,
|
|
11627
11543
|
{
|
|
@@ -11629,8 +11545,10 @@ const CityTiles = ({
|
|
|
11629
11545
|
$selected: selected === id,
|
|
11630
11546
|
$height: size === "sm" ? "110px" : void 0,
|
|
11631
11547
|
id: `tile__city--${id}`,
|
|
11548
|
+
"data-ph-capture-attribute-value": id,
|
|
11632
11549
|
onClick: (e2) => {
|
|
11633
11550
|
e2.currentTarget.blur();
|
|
11551
|
+
trackAnswer("city", id);
|
|
11634
11552
|
onSelect(id);
|
|
11635
11553
|
},
|
|
11636
11554
|
children: [
|
|
@@ -12282,20 +12200,20 @@ var quoteREs = {
|
|
|
12282
12200
|
};
|
|
12283
12201
|
var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
12284
12202
|
var opts = options || {};
|
|
12285
|
-
if (has$
|
|
12203
|
+
if (has$4(opts, "quoteStyle") && !has$4(quotes, opts.quoteStyle)) {
|
|
12286
12204
|
throw new TypeError('option "quoteStyle" must be "single" or "double"');
|
|
12287
12205
|
}
|
|
12288
|
-
if (has$
|
|
12206
|
+
if (has$4(opts, "maxStringLength") && (typeof opts.maxStringLength === "number" ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity : opts.maxStringLength !== null)) {
|
|
12289
12207
|
throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');
|
|
12290
12208
|
}
|
|
12291
|
-
var customInspect = has$
|
|
12209
|
+
var customInspect = has$4(opts, "customInspect") ? opts.customInspect : true;
|
|
12292
12210
|
if (typeof customInspect !== "boolean" && customInspect !== "symbol") {
|
|
12293
12211
|
throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");
|
|
12294
12212
|
}
|
|
12295
|
-
if (has$
|
|
12213
|
+
if (has$4(opts, "indent") && opts.indent !== null && opts.indent !== " " && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)) {
|
|
12296
12214
|
throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');
|
|
12297
12215
|
}
|
|
12298
|
-
if (has$
|
|
12216
|
+
if (has$4(opts, "numericSeparator") && typeof opts.numericSeparator !== "boolean") {
|
|
12299
12217
|
throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');
|
|
12300
12218
|
}
|
|
12301
12219
|
var numericSeparator = opts.numericSeparator;
|
|
@@ -12327,7 +12245,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
12327
12245
|
depth = 0;
|
|
12328
12246
|
}
|
|
12329
12247
|
if (depth >= maxDepth && maxDepth > 0 && typeof obj === "object") {
|
|
12330
|
-
return isArray$
|
|
12248
|
+
return isArray$3(obj) ? "[Array]" : "[Object]";
|
|
12331
12249
|
}
|
|
12332
12250
|
var indent = getIndent(opts, depth);
|
|
12333
12251
|
if (typeof seen === "undefined") {
|
|
@@ -12344,7 +12262,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
12344
12262
|
var newOpts = {
|
|
12345
12263
|
depth: opts.depth
|
|
12346
12264
|
};
|
|
12347
|
-
if (has$
|
|
12265
|
+
if (has$4(opts, "quoteStyle")) {
|
|
12348
12266
|
newOpts.quoteStyle = opts.quoteStyle;
|
|
12349
12267
|
}
|
|
12350
12268
|
return inspect_(value, newOpts, depth + 1, seen);
|
|
@@ -12373,7 +12291,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
12373
12291
|
s3 += "</" + $toLowerCase.call(String(obj.nodeName)) + ">";
|
|
12374
12292
|
return s3;
|
|
12375
12293
|
}
|
|
12376
|
-
if (isArray$
|
|
12294
|
+
if (isArray$3(obj)) {
|
|
12377
12295
|
if (obj.length === 0) {
|
|
12378
12296
|
return "[]";
|
|
12379
12297
|
}
|
|
@@ -12449,7 +12367,7 @@ var objectInspect = function inspect_(obj, options, depth, seen) {
|
|
|
12449
12367
|
var ys = arrObjKeys(obj, inspect2);
|
|
12450
12368
|
var isPlainObject2 = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
12451
12369
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
12452
|
-
var stringTag2 = !isPlainObject2 && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr
|
|
12370
|
+
var stringTag2 = !isPlainObject2 && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
12453
12371
|
var constructorTag = isPlainObject2 || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
12454
12372
|
var tag = constructorTag + (stringTag2 || protoTag ? "[" + $join.call($concat$1.call([], stringTag2 || [], protoTag || []), ": ") + "] " : "");
|
|
12455
12373
|
if (ys.length === 0) {
|
|
@@ -12473,26 +12391,26 @@ function quote(s3) {
|
|
|
12473
12391
|
function canTrustToString(obj) {
|
|
12474
12392
|
return !toStringTag || !(typeof obj === "object" && (toStringTag in obj || typeof obj[toStringTag] !== "undefined"));
|
|
12475
12393
|
}
|
|
12476
|
-
function isArray$
|
|
12477
|
-
return toStr
|
|
12394
|
+
function isArray$3(obj) {
|
|
12395
|
+
return toStr(obj) === "[object Array]" && canTrustToString(obj);
|
|
12478
12396
|
}
|
|
12479
12397
|
function isDate(obj) {
|
|
12480
|
-
return toStr
|
|
12398
|
+
return toStr(obj) === "[object Date]" && canTrustToString(obj);
|
|
12481
12399
|
}
|
|
12482
12400
|
function isRegExp$1(obj) {
|
|
12483
|
-
return toStr
|
|
12401
|
+
return toStr(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
12484
12402
|
}
|
|
12485
12403
|
function isError(obj) {
|
|
12486
|
-
return toStr
|
|
12404
|
+
return toStr(obj) === "[object Error]" && canTrustToString(obj);
|
|
12487
12405
|
}
|
|
12488
12406
|
function isString(obj) {
|
|
12489
|
-
return toStr
|
|
12407
|
+
return toStr(obj) === "[object String]" && canTrustToString(obj);
|
|
12490
12408
|
}
|
|
12491
12409
|
function isNumber(obj) {
|
|
12492
|
-
return toStr
|
|
12410
|
+
return toStr(obj) === "[object Number]" && canTrustToString(obj);
|
|
12493
12411
|
}
|
|
12494
12412
|
function isBoolean(obj) {
|
|
12495
|
-
return toStr
|
|
12413
|
+
return toStr(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
12496
12414
|
}
|
|
12497
12415
|
function isSymbol(obj) {
|
|
12498
12416
|
if (hasShammedSymbols) {
|
|
@@ -12525,10 +12443,10 @@ function isBigInt(obj) {
|
|
|
12525
12443
|
var hasOwn$1 = Object.prototype.hasOwnProperty || function(key) {
|
|
12526
12444
|
return key in this;
|
|
12527
12445
|
};
|
|
12528
|
-
function has$
|
|
12446
|
+
function has$4(obj, key) {
|
|
12529
12447
|
return hasOwn$1.call(obj, key);
|
|
12530
12448
|
}
|
|
12531
|
-
function toStr
|
|
12449
|
+
function toStr(obj) {
|
|
12532
12450
|
return objectToString.call(obj);
|
|
12533
12451
|
}
|
|
12534
12452
|
function nameOf(f) {
|
|
@@ -12701,12 +12619,12 @@ function indentedJoin(xs, indent) {
|
|
|
12701
12619
|
return lineJoiner + $join.call(xs, "," + lineJoiner) + "\n" + indent.prev;
|
|
12702
12620
|
}
|
|
12703
12621
|
function arrObjKeys(obj, inspect2) {
|
|
12704
|
-
var isArr = isArray$
|
|
12622
|
+
var isArr = isArray$3(obj);
|
|
12705
12623
|
var xs = [];
|
|
12706
12624
|
if (isArr) {
|
|
12707
12625
|
xs.length = obj.length;
|
|
12708
12626
|
for (var i2 = 0; i2 < obj.length; i2++) {
|
|
12709
|
-
xs[i2] = has$
|
|
12627
|
+
xs[i2] = has$4(obj, i2) ? inspect2(obj[i2], obj) : "";
|
|
12710
12628
|
}
|
|
12711
12629
|
}
|
|
12712
12630
|
var syms = typeof gOPS === "function" ? gOPS(obj) : [];
|
|
@@ -12718,7 +12636,7 @@ function arrObjKeys(obj, inspect2) {
|
|
|
12718
12636
|
}
|
|
12719
12637
|
}
|
|
12720
12638
|
for (var key in obj) {
|
|
12721
|
-
if (!has$
|
|
12639
|
+
if (!has$4(obj, key)) {
|
|
12722
12640
|
continue;
|
|
12723
12641
|
}
|
|
12724
12642
|
if (isArr && String(Number(key)) === key && key < obj.length) {
|
|
@@ -12837,7 +12755,7 @@ var syntax = SyntaxError;
|
|
|
12837
12755
|
var uri = URIError;
|
|
12838
12756
|
var abs$1 = Math.abs;
|
|
12839
12757
|
var floor$1 = Math.floor;
|
|
12840
|
-
var max$
|
|
12758
|
+
var max$1 = Math.max;
|
|
12841
12759
|
var min$1 = Math.min;
|
|
12842
12760
|
var pow$1 = Math.pow;
|
|
12843
12761
|
var round$2 = Math.round;
|
|
@@ -12966,78 +12884,99 @@ function requireObject_getPrototypeOf() {
|
|
|
12966
12884
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
12967
12885
|
return Object_getPrototypeOf;
|
|
12968
12886
|
}
|
|
12969
|
-
var
|
|
12970
|
-
var
|
|
12971
|
-
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
var
|
|
12975
|
-
|
|
12976
|
-
|
|
12977
|
-
|
|
12978
|
-
|
|
12979
|
-
arr
|
|
12980
|
-
|
|
12981
|
-
|
|
12982
|
-
};
|
|
12983
|
-
var slicy = function slicy2(arrLike, offset2) {
|
|
12984
|
-
var arr = [];
|
|
12985
|
-
for (var i2 = offset2, j = 0; i2 < arrLike.length; i2 += 1, j += 1) {
|
|
12986
|
-
arr[j] = arrLike[i2];
|
|
12987
|
-
}
|
|
12988
|
-
return arr;
|
|
12989
|
-
};
|
|
12990
|
-
var joiny = function(arr, joiner) {
|
|
12991
|
-
var str = "";
|
|
12992
|
-
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
12993
|
-
str += arr[i2];
|
|
12994
|
-
if (i2 + 1 < arr.length) {
|
|
12995
|
-
str += joiner;
|
|
12887
|
+
var implementation;
|
|
12888
|
+
var hasRequiredImplementation;
|
|
12889
|
+
function requireImplementation() {
|
|
12890
|
+
if (hasRequiredImplementation) return implementation;
|
|
12891
|
+
hasRequiredImplementation = 1;
|
|
12892
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
12893
|
+
var toStr2 = Object.prototype.toString;
|
|
12894
|
+
var max2 = Math.max;
|
|
12895
|
+
var funcType = "[object Function]";
|
|
12896
|
+
var concatty = function concatty2(a3, b2) {
|
|
12897
|
+
var arr = [];
|
|
12898
|
+
for (var i2 = 0; i2 < a3.length; i2 += 1) {
|
|
12899
|
+
arr[i2] = a3[i2];
|
|
12996
12900
|
}
|
|
12997
|
-
|
|
12998
|
-
|
|
12999
|
-
}
|
|
13000
|
-
|
|
13001
|
-
|
|
13002
|
-
|
|
13003
|
-
|
|
13004
|
-
|
|
13005
|
-
|
|
13006
|
-
|
|
13007
|
-
|
|
13008
|
-
|
|
13009
|
-
|
|
13010
|
-
|
|
13011
|
-
|
|
13012
|
-
|
|
13013
|
-
if (
|
|
13014
|
-
|
|
12901
|
+
for (var j = 0; j < b2.length; j += 1) {
|
|
12902
|
+
arr[j + a3.length] = b2[j];
|
|
12903
|
+
}
|
|
12904
|
+
return arr;
|
|
12905
|
+
};
|
|
12906
|
+
var slicy = function slicy2(arrLike, offset2) {
|
|
12907
|
+
var arr = [];
|
|
12908
|
+
for (var i2 = offset2, j = 0; i2 < arrLike.length; i2 += 1, j += 1) {
|
|
12909
|
+
arr[j] = arrLike[i2];
|
|
12910
|
+
}
|
|
12911
|
+
return arr;
|
|
12912
|
+
};
|
|
12913
|
+
var joiny = function(arr, joiner) {
|
|
12914
|
+
var str = "";
|
|
12915
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
12916
|
+
str += arr[i2];
|
|
12917
|
+
if (i2 + 1 < arr.length) {
|
|
12918
|
+
str += joiner;
|
|
13015
12919
|
}
|
|
13016
|
-
return this;
|
|
13017
12920
|
}
|
|
13018
|
-
return
|
|
13019
|
-
that,
|
|
13020
|
-
concatty(args, arguments)
|
|
13021
|
-
);
|
|
12921
|
+
return str;
|
|
13022
12922
|
};
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13030
|
-
var
|
|
12923
|
+
implementation = function bind2(that) {
|
|
12924
|
+
var target = this;
|
|
12925
|
+
if (typeof target !== "function" || toStr2.apply(target) !== funcType) {
|
|
12926
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
12927
|
+
}
|
|
12928
|
+
var args = slicy(arguments, 1);
|
|
12929
|
+
var bound;
|
|
12930
|
+
var binder = function() {
|
|
12931
|
+
if (this instanceof bound) {
|
|
12932
|
+
var result = target.apply(
|
|
12933
|
+
this,
|
|
12934
|
+
concatty(args, arguments)
|
|
12935
|
+
);
|
|
12936
|
+
if (Object(result) === result) {
|
|
12937
|
+
return result;
|
|
12938
|
+
}
|
|
12939
|
+
return this;
|
|
12940
|
+
}
|
|
12941
|
+
return target.apply(
|
|
12942
|
+
that,
|
|
12943
|
+
concatty(args, arguments)
|
|
12944
|
+
);
|
|
13031
12945
|
};
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
};
|
|
13038
|
-
|
|
13039
|
-
var
|
|
13040
|
-
|
|
12946
|
+
var boundLength = max2(0, target.length - args.length);
|
|
12947
|
+
var boundArgs = [];
|
|
12948
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
12949
|
+
boundArgs[i2] = "$" + i2;
|
|
12950
|
+
}
|
|
12951
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
12952
|
+
if (target.prototype) {
|
|
12953
|
+
var Empty = function Empty2() {
|
|
12954
|
+
};
|
|
12955
|
+
Empty.prototype = target.prototype;
|
|
12956
|
+
bound.prototype = new Empty();
|
|
12957
|
+
Empty.prototype = null;
|
|
12958
|
+
}
|
|
12959
|
+
return bound;
|
|
12960
|
+
};
|
|
12961
|
+
return implementation;
|
|
12962
|
+
}
|
|
12963
|
+
var functionBind;
|
|
12964
|
+
var hasRequiredFunctionBind;
|
|
12965
|
+
function requireFunctionBind() {
|
|
12966
|
+
if (hasRequiredFunctionBind) return functionBind;
|
|
12967
|
+
hasRequiredFunctionBind = 1;
|
|
12968
|
+
var implementation2 = requireImplementation();
|
|
12969
|
+
functionBind = Function.prototype.bind || implementation2;
|
|
12970
|
+
return functionBind;
|
|
12971
|
+
}
|
|
12972
|
+
var functionCall;
|
|
12973
|
+
var hasRequiredFunctionCall;
|
|
12974
|
+
function requireFunctionCall() {
|
|
12975
|
+
if (hasRequiredFunctionCall) return functionCall;
|
|
12976
|
+
hasRequiredFunctionCall = 1;
|
|
12977
|
+
functionCall = Function.prototype.call;
|
|
12978
|
+
return functionCall;
|
|
12979
|
+
}
|
|
13041
12980
|
var functionApply;
|
|
13042
12981
|
var hasRequiredFunctionApply;
|
|
13043
12982
|
function requireFunctionApply() {
|
|
@@ -13047,14 +12986,14 @@ function requireFunctionApply() {
|
|
|
13047
12986
|
return functionApply;
|
|
13048
12987
|
}
|
|
13049
12988
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
13050
|
-
var bind$2 =
|
|
12989
|
+
var bind$2 = requireFunctionBind();
|
|
13051
12990
|
var $apply$1 = requireFunctionApply();
|
|
13052
|
-
var $call$2 =
|
|
12991
|
+
var $call$2 = requireFunctionCall();
|
|
13053
12992
|
var $reflectApply = reflectApply;
|
|
13054
12993
|
var actualApply = $reflectApply || bind$2.call($call$2, $apply$1);
|
|
13055
|
-
var bind$1 =
|
|
12994
|
+
var bind$1 = requireFunctionBind();
|
|
13056
12995
|
var $TypeError$4 = type;
|
|
13057
|
-
var $call$1 =
|
|
12996
|
+
var $call$1 = requireFunctionCall();
|
|
13058
12997
|
var $actualApply = actualApply;
|
|
13059
12998
|
var callBindApplyHelpers = function callBindBasic(args) {
|
|
13060
12999
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -13120,8 +13059,8 @@ function requireHasown() {
|
|
|
13120
13059
|
hasRequiredHasown = 1;
|
|
13121
13060
|
var call = Function.prototype.call;
|
|
13122
13061
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
13123
|
-
var
|
|
13124
|
-
hasown =
|
|
13062
|
+
var bind2 = requireFunctionBind();
|
|
13063
|
+
hasown = bind2.call(call, $hasOwn);
|
|
13125
13064
|
return hasown;
|
|
13126
13065
|
}
|
|
13127
13066
|
var undefined$1;
|
|
@@ -13135,7 +13074,7 @@ var $TypeError$3 = type;
|
|
|
13135
13074
|
var $URIError = uri;
|
|
13136
13075
|
var abs = abs$1;
|
|
13137
13076
|
var floor = floor$1;
|
|
13138
|
-
var max = max$
|
|
13077
|
+
var max = max$1;
|
|
13139
13078
|
var min = min$1;
|
|
13140
13079
|
var pow = pow$1;
|
|
13141
13080
|
var round$1 = round$2;
|
|
@@ -13169,7 +13108,7 @@ var getProto = requireGetProto();
|
|
|
13169
13108
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
13170
13109
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
13171
13110
|
var $apply = requireFunctionApply();
|
|
13172
|
-
var $call =
|
|
13111
|
+
var $call = requireFunctionCall();
|
|
13173
13112
|
var needsEval = {};
|
|
13174
13113
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
13175
13114
|
var INTRINSICS = {
|
|
@@ -13340,13 +13279,13 @@ var LEGACY_ALIASES = {
|
|
|
13340
13279
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
13341
13280
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
13342
13281
|
};
|
|
13343
|
-
var
|
|
13282
|
+
var bind = requireFunctionBind();
|
|
13344
13283
|
var hasOwn = requireHasown();
|
|
13345
|
-
var $concat =
|
|
13346
|
-
var $spliceApply =
|
|
13347
|
-
var $replace =
|
|
13348
|
-
var $strSlice =
|
|
13349
|
-
var $exec =
|
|
13284
|
+
var $concat = bind.call($call, Array.prototype.concat);
|
|
13285
|
+
var $spliceApply = bind.call($apply, Array.prototype.splice);
|
|
13286
|
+
var $replace = bind.call($call, String.prototype.replace);
|
|
13287
|
+
var $strSlice = bind.call($call, String.prototype.slice);
|
|
13288
|
+
var $exec = bind.call($call, RegExp.prototype.exec);
|
|
13350
13289
|
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
13351
13290
|
var reEscapeChar = /\\(\\)?/g;
|
|
13352
13291
|
var stringToPath = function stringToPath2(string2) {
|
|
@@ -13616,7 +13555,7 @@ var Format = {
|
|
|
13616
13555
|
RFC1738: "RFC1738",
|
|
13617
13556
|
RFC3986: "RFC3986"
|
|
13618
13557
|
};
|
|
13619
|
-
var formats$
|
|
13558
|
+
var formats$3 = {
|
|
13620
13559
|
"default": Format.RFC3986,
|
|
13621
13560
|
formatters: {
|
|
13622
13561
|
RFC1738: function(value) {
|
|
@@ -13626,30 +13565,16 @@ var formats$2 = {
|
|
|
13626
13565
|
return String(value);
|
|
13627
13566
|
}
|
|
13628
13567
|
},
|
|
13629
|
-
RFC1738: Format.RFC1738
|
|
13630
|
-
|
|
13631
|
-
var formats$1 = formats$2;
|
|
13632
|
-
var getSideChannel$1 = sideChannel;
|
|
13633
|
-
var has$2 = Object.prototype.hasOwnProperty;
|
|
13634
|
-
var isArray$1 = Array.isArray;
|
|
13635
|
-
var overflowChannel = getSideChannel$1();
|
|
13636
|
-
var markOverflow = function markOverflow2(obj, maxIndex) {
|
|
13637
|
-
overflowChannel.set(obj, maxIndex);
|
|
13638
|
-
return obj;
|
|
13639
|
-
};
|
|
13640
|
-
var isOverflow = function isOverflow2(obj) {
|
|
13641
|
-
return overflowChannel.has(obj);
|
|
13642
|
-
};
|
|
13643
|
-
var getMaxIndex = function getMaxIndex2(obj) {
|
|
13644
|
-
return overflowChannel.get(obj);
|
|
13645
|
-
};
|
|
13646
|
-
var setMaxIndex = function setMaxIndex2(obj, maxIndex) {
|
|
13647
|
-
overflowChannel.set(obj, maxIndex);
|
|
13568
|
+
RFC1738: Format.RFC1738,
|
|
13569
|
+
RFC3986: Format.RFC3986
|
|
13648
13570
|
};
|
|
13571
|
+
var formats$2 = formats$3;
|
|
13572
|
+
var has$3 = Object.prototype.hasOwnProperty;
|
|
13573
|
+
var isArray$2 = Array.isArray;
|
|
13649
13574
|
var hexTable = function() {
|
|
13650
13575
|
var array2 = [];
|
|
13651
13576
|
for (var i2 = 0; i2 < 256; ++i2) {
|
|
13652
|
-
array2
|
|
13577
|
+
array2.push("%" + ((i2 < 16 ? "0" : "") + i2.toString(16)).toUpperCase());
|
|
13653
13578
|
}
|
|
13654
13579
|
return array2;
|
|
13655
13580
|
}();
|
|
@@ -13657,11 +13582,11 @@ var compactQueue = function compactQueue2(queue) {
|
|
|
13657
13582
|
while (queue.length > 1) {
|
|
13658
13583
|
var item = queue.pop();
|
|
13659
13584
|
var obj = item.obj[item.prop];
|
|
13660
|
-
if (isArray$
|
|
13585
|
+
if (isArray$2(obj)) {
|
|
13661
13586
|
var compacted = [];
|
|
13662
13587
|
for (var j = 0; j < obj.length; ++j) {
|
|
13663
13588
|
if (typeof obj[j] !== "undefined") {
|
|
13664
|
-
compacted
|
|
13589
|
+
compacted.push(obj[j]);
|
|
13665
13590
|
}
|
|
13666
13591
|
}
|
|
13667
13592
|
item.obj[item.prop] = compacted;
|
|
@@ -13682,20 +13607,10 @@ var merge = function merge2(target, source, options) {
|
|
|
13682
13607
|
return target;
|
|
13683
13608
|
}
|
|
13684
13609
|
if (typeof source !== "object" && typeof source !== "function") {
|
|
13685
|
-
if (isArray$
|
|
13686
|
-
|
|
13687
|
-
if (options && typeof options.arrayLimit === "number" && nextIndex > options.arrayLimit) {
|
|
13688
|
-
return markOverflow(arrayToObject(target.concat(source), options), nextIndex);
|
|
13689
|
-
}
|
|
13690
|
-
target[nextIndex] = source;
|
|
13610
|
+
if (isArray$2(target)) {
|
|
13611
|
+
target.push(source);
|
|
13691
13612
|
} else if (target && typeof target === "object") {
|
|
13692
|
-
if (
|
|
13693
|
-
var newIndex = getMaxIndex(target) + 1;
|
|
13694
|
-
target[newIndex] = source;
|
|
13695
|
-
setMaxIndex(target, newIndex);
|
|
13696
|
-
} else if (options && options.strictMerge) {
|
|
13697
|
-
return [target, source];
|
|
13698
|
-
} else if (options && (options.plainObjects || options.allowPrototypes) || !has$2.call(Object.prototype, source)) {
|
|
13613
|
+
if (options && (options.plainObjects || options.allowPrototypes) || !has$3.call(Object.prototype, source)) {
|
|
13699
13614
|
target[source] = true;
|
|
13700
13615
|
}
|
|
13701
13616
|
} else {
|
|
@@ -13704,33 +13619,20 @@ var merge = function merge2(target, source, options) {
|
|
|
13704
13619
|
return target;
|
|
13705
13620
|
}
|
|
13706
13621
|
if (!target || typeof target !== "object") {
|
|
13707
|
-
|
|
13708
|
-
var sourceKeys = Object.keys(source);
|
|
13709
|
-
var result = options && options.plainObjects ? { __proto__: null, 0: target } : { 0: target };
|
|
13710
|
-
for (var m3 = 0; m3 < sourceKeys.length; m3++) {
|
|
13711
|
-
var oldKey = parseInt(sourceKeys[m3], 10);
|
|
13712
|
-
result[oldKey + 1] = source[sourceKeys[m3]];
|
|
13713
|
-
}
|
|
13714
|
-
return markOverflow(result, getMaxIndex(source) + 1);
|
|
13715
|
-
}
|
|
13716
|
-
var combined = [target].concat(source);
|
|
13717
|
-
if (options && typeof options.arrayLimit === "number" && combined.length > options.arrayLimit) {
|
|
13718
|
-
return markOverflow(arrayToObject(combined, options), combined.length - 1);
|
|
13719
|
-
}
|
|
13720
|
-
return combined;
|
|
13622
|
+
return [target].concat(source);
|
|
13721
13623
|
}
|
|
13722
13624
|
var mergeTarget = target;
|
|
13723
|
-
if (isArray$
|
|
13625
|
+
if (isArray$2(target) && !isArray$2(source)) {
|
|
13724
13626
|
mergeTarget = arrayToObject(target, options);
|
|
13725
13627
|
}
|
|
13726
|
-
if (isArray$
|
|
13628
|
+
if (isArray$2(target) && isArray$2(source)) {
|
|
13727
13629
|
source.forEach(function(item, i2) {
|
|
13728
|
-
if (has$
|
|
13630
|
+
if (has$3.call(target, i2)) {
|
|
13729
13631
|
var targetItem = target[i2];
|
|
13730
13632
|
if (targetItem && typeof targetItem === "object" && item && typeof item === "object") {
|
|
13731
13633
|
target[i2] = merge2(targetItem, item, options);
|
|
13732
13634
|
} else {
|
|
13733
|
-
target
|
|
13635
|
+
target.push(item);
|
|
13734
13636
|
}
|
|
13735
13637
|
} else {
|
|
13736
13638
|
target[i2] = item;
|
|
@@ -13740,20 +13642,11 @@ var merge = function merge2(target, source, options) {
|
|
|
13740
13642
|
}
|
|
13741
13643
|
return Object.keys(source).reduce(function(acc, key) {
|
|
13742
13644
|
var value = source[key];
|
|
13743
|
-
if (has$
|
|
13645
|
+
if (has$3.call(acc, key)) {
|
|
13744
13646
|
acc[key] = merge2(acc[key], value, options);
|
|
13745
13647
|
} else {
|
|
13746
13648
|
acc[key] = value;
|
|
13747
13649
|
}
|
|
13748
|
-
if (isOverflow(source) && !isOverflow(acc)) {
|
|
13749
|
-
markOverflow(acc, getMaxIndex(source));
|
|
13750
|
-
}
|
|
13751
|
-
if (isOverflow(acc)) {
|
|
13752
|
-
var keyNum = parseInt(key, 10);
|
|
13753
|
-
if (String(keyNum) === key && keyNum >= 0 && keyNum > getMaxIndex(acc)) {
|
|
13754
|
-
setMaxIndex(acc, keyNum);
|
|
13755
|
-
}
|
|
13756
|
-
}
|
|
13757
13650
|
return acc;
|
|
13758
13651
|
}, mergeTarget);
|
|
13759
13652
|
};
|
|
@@ -13796,7 +13689,7 @@ var encode = function encode2(str, defaultEncoder, charset, kind, format2) {
|
|
|
13796
13689
|
var arr = [];
|
|
13797
13690
|
for (var i2 = 0; i2 < segment.length; ++i2) {
|
|
13798
13691
|
var c2 = segment.charCodeAt(i2);
|
|
13799
|
-
if (c2 === 45 || c2 === 46 || c2 === 95 || c2 === 126 || c2 >= 48 && c2 <= 57 || c2 >= 65 && c2 <= 90 || c2 >= 97 && c2 <= 122 || format2 === formats$
|
|
13692
|
+
if (c2 === 45 || c2 === 46 || c2 === 95 || c2 === 126 || c2 >= 48 && c2 <= 57 || c2 >= 65 && c2 <= 90 || c2 >= 97 && c2 <= 122 || format2 === formats$2.RFC1738 && (c2 === 40 || c2 === 41)) {
|
|
13800
13693
|
arr[arr.length] = segment.charAt(i2);
|
|
13801
13694
|
continue;
|
|
13802
13695
|
}
|
|
@@ -13831,8 +13724,8 @@ var compact = function compact2(value) {
|
|
|
13831
13724
|
var key = keys2[j];
|
|
13832
13725
|
var val = obj[key];
|
|
13833
13726
|
if (typeof val === "object" && val !== null && refs.indexOf(val) === -1) {
|
|
13834
|
-
queue
|
|
13835
|
-
refs
|
|
13727
|
+
queue.push({ obj, prop: key });
|
|
13728
|
+
refs.push(val);
|
|
13836
13729
|
}
|
|
13837
13730
|
}
|
|
13838
13731
|
}
|
|
@@ -13848,30 +13741,20 @@ var isBuffer = function isBuffer2(obj) {
|
|
|
13848
13741
|
}
|
|
13849
13742
|
return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));
|
|
13850
13743
|
};
|
|
13851
|
-
var combine = function combine2(a3, b2
|
|
13852
|
-
|
|
13853
|
-
var newIndex = getMaxIndex(a3) + 1;
|
|
13854
|
-
a3[newIndex] = b2;
|
|
13855
|
-
setMaxIndex(a3, newIndex);
|
|
13856
|
-
return a3;
|
|
13857
|
-
}
|
|
13858
|
-
var result = [].concat(a3, b2);
|
|
13859
|
-
if (result.length > arrayLimit) {
|
|
13860
|
-
return markOverflow(arrayToObject(result, { plainObjects }), result.length - 1);
|
|
13861
|
-
}
|
|
13862
|
-
return result;
|
|
13744
|
+
var combine = function combine2(a3, b2) {
|
|
13745
|
+
return [].concat(a3, b2);
|
|
13863
13746
|
};
|
|
13864
13747
|
var maybeMap = function maybeMap2(val, fn) {
|
|
13865
|
-
if (isArray$
|
|
13748
|
+
if (isArray$2(val)) {
|
|
13866
13749
|
var mapped = [];
|
|
13867
13750
|
for (var i2 = 0; i2 < val.length; i2 += 1) {
|
|
13868
|
-
mapped
|
|
13751
|
+
mapped.push(fn(val[i2]));
|
|
13869
13752
|
}
|
|
13870
13753
|
return mapped;
|
|
13871
13754
|
}
|
|
13872
13755
|
return fn(val);
|
|
13873
13756
|
};
|
|
13874
|
-
var utils$
|
|
13757
|
+
var utils$2 = {
|
|
13875
13758
|
arrayToObject,
|
|
13876
13759
|
assign,
|
|
13877
13760
|
combine,
|
|
@@ -13879,16 +13762,14 @@ var utils$1 = {
|
|
|
13879
13762
|
decode,
|
|
13880
13763
|
encode,
|
|
13881
13764
|
isBuffer,
|
|
13882
|
-
isOverflow,
|
|
13883
13765
|
isRegExp,
|
|
13884
|
-
markOverflow,
|
|
13885
13766
|
maybeMap,
|
|
13886
13767
|
merge
|
|
13887
13768
|
};
|
|
13888
13769
|
var getSideChannel2 = sideChannel;
|
|
13889
|
-
var utils = utils$
|
|
13890
|
-
var formats = formats$
|
|
13891
|
-
var has$
|
|
13770
|
+
var utils$1 = utils$2;
|
|
13771
|
+
var formats$1 = formats$3;
|
|
13772
|
+
var has$2 = Object.prototype.hasOwnProperty;
|
|
13892
13773
|
var arrayPrefixGenerators = {
|
|
13893
13774
|
brackets: function brackets(prefix2) {
|
|
13894
13775
|
return prefix2 + "[]";
|
|
@@ -13901,14 +13782,14 @@ var arrayPrefixGenerators = {
|
|
|
13901
13782
|
return prefix2;
|
|
13902
13783
|
}
|
|
13903
13784
|
};
|
|
13904
|
-
var isArray = Array.isArray;
|
|
13785
|
+
var isArray$1 = Array.isArray;
|
|
13905
13786
|
var push = Array.prototype.push;
|
|
13906
13787
|
var pushToArray = function(arr, valueOrArray) {
|
|
13907
|
-
push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);
|
|
13788
|
+
push.apply(arr, isArray$1(valueOrArray) ? valueOrArray : [valueOrArray]);
|
|
13908
13789
|
};
|
|
13909
13790
|
var toISO = Date.prototype.toISOString;
|
|
13910
|
-
var defaultFormat = formats["default"];
|
|
13911
|
-
var defaults = {
|
|
13791
|
+
var defaultFormat = formats$1["default"];
|
|
13792
|
+
var defaults$1 = {
|
|
13912
13793
|
addQueryPrefix: false,
|
|
13913
13794
|
allowDots: false,
|
|
13914
13795
|
allowEmptyArrays: false,
|
|
@@ -13919,11 +13800,11 @@ var defaults = {
|
|
|
13919
13800
|
delimiter: "&",
|
|
13920
13801
|
encode: true,
|
|
13921
13802
|
encodeDotInKeys: false,
|
|
13922
|
-
encoder: utils.encode,
|
|
13803
|
+
encoder: utils$1.encode,
|
|
13923
13804
|
encodeValuesOnly: false,
|
|
13924
13805
|
filter: void 0,
|
|
13925
13806
|
format: defaultFormat,
|
|
13926
|
-
formatter: formats.formatters[defaultFormat],
|
|
13807
|
+
formatter: formats$1.formatters[defaultFormat],
|
|
13927
13808
|
// deprecated
|
|
13928
13809
|
indices: false,
|
|
13929
13810
|
serializeDate: function serializeDate(date2) {
|
|
@@ -13959,8 +13840,8 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
13959
13840
|
obj = filter(prefix2, obj);
|
|
13960
13841
|
} else if (obj instanceof Date) {
|
|
13961
13842
|
obj = serializeDate2(obj);
|
|
13962
|
-
} else if (generateArrayPrefix === "comma" && isArray(obj)) {
|
|
13963
|
-
obj = utils.maybeMap(obj, function(value2) {
|
|
13843
|
+
} else if (generateArrayPrefix === "comma" && isArray$1(obj)) {
|
|
13844
|
+
obj = utils$1.maybeMap(obj, function(value2) {
|
|
13964
13845
|
if (value2 instanceof Date) {
|
|
13965
13846
|
return serializeDate2(value2);
|
|
13966
13847
|
}
|
|
@@ -13969,14 +13850,14 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
13969
13850
|
}
|
|
13970
13851
|
if (obj === null) {
|
|
13971
13852
|
if (strictNullHandling) {
|
|
13972
|
-
return encoder && !encodeValuesOnly ? encoder(prefix2, defaults.encoder, charset, "key", format2) : prefix2;
|
|
13853
|
+
return encoder && !encodeValuesOnly ? encoder(prefix2, defaults$1.encoder, charset, "key", format2) : prefix2;
|
|
13973
13854
|
}
|
|
13974
13855
|
obj = "";
|
|
13975
13856
|
}
|
|
13976
|
-
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
|
|
13857
|
+
if (isNonNullishPrimitive(obj) || utils$1.isBuffer(obj)) {
|
|
13977
13858
|
if (encoder) {
|
|
13978
|
-
var keyValue = encodeValuesOnly ? prefix2 : encoder(prefix2, defaults.encoder, charset, "key", format2);
|
|
13979
|
-
return [formatter(keyValue) + "=" + formatter(encoder(obj, defaults.encoder, charset, "value", format2))];
|
|
13859
|
+
var keyValue = encodeValuesOnly ? prefix2 : encoder(prefix2, defaults$1.encoder, charset, "key", format2);
|
|
13860
|
+
return [formatter(keyValue) + "=" + formatter(encoder(obj, defaults$1.encoder, charset, "value", format2))];
|
|
13980
13861
|
}
|
|
13981
13862
|
return [formatter(prefix2) + "=" + formatter(String(obj))];
|
|
13982
13863
|
}
|
|
@@ -13985,20 +13866,20 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
13985
13866
|
return values2;
|
|
13986
13867
|
}
|
|
13987
13868
|
var objKeys;
|
|
13988
|
-
if (generateArrayPrefix === "comma" && isArray(obj)) {
|
|
13869
|
+
if (generateArrayPrefix === "comma" && isArray$1(obj)) {
|
|
13989
13870
|
if (encodeValuesOnly && encoder) {
|
|
13990
|
-
obj = utils.maybeMap(obj, encoder);
|
|
13871
|
+
obj = utils$1.maybeMap(obj, encoder);
|
|
13991
13872
|
}
|
|
13992
13873
|
objKeys = [{ value: obj.length > 0 ? obj.join(",") || null : void 0 }];
|
|
13993
|
-
} else if (isArray(filter)) {
|
|
13874
|
+
} else if (isArray$1(filter)) {
|
|
13994
13875
|
objKeys = filter;
|
|
13995
13876
|
} else {
|
|
13996
13877
|
var keys2 = Object.keys(obj);
|
|
13997
13878
|
objKeys = sort ? keys2.sort(sort) : keys2;
|
|
13998
13879
|
}
|
|
13999
13880
|
var encodedPrefix = encodeDotInKeys ? String(prefix2).replace(/\./g, "%2E") : String(prefix2);
|
|
14000
|
-
var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? encodedPrefix + "[]" : encodedPrefix;
|
|
14001
|
-
if (allowEmptyArrays && isArray(obj) && obj.length === 0) {
|
|
13881
|
+
var adjustedPrefix = commaRoundTrip && isArray$1(obj) && obj.length === 1 ? encodedPrefix + "[]" : encodedPrefix;
|
|
13882
|
+
if (allowEmptyArrays && isArray$1(obj) && obj.length === 0) {
|
|
14002
13883
|
return adjustedPrefix + "[]";
|
|
14003
13884
|
}
|
|
14004
13885
|
for (var j = 0; j < objKeys.length; ++j) {
|
|
@@ -14008,7 +13889,7 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
14008
13889
|
continue;
|
|
14009
13890
|
}
|
|
14010
13891
|
var encodedKey = allowDots && encodeDotInKeys ? String(key).replace(/\./g, "%2E") : String(key);
|
|
14011
|
-
var keyPrefix = isArray(obj) ? typeof generateArrayPrefix === "function" ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix : adjustedPrefix + (allowDots ? "." + encodedKey : "[" + encodedKey + "]");
|
|
13892
|
+
var keyPrefix = isArray$1(obj) ? typeof generateArrayPrefix === "function" ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix : adjustedPrefix + (allowDots ? "." + encodedKey : "[" + encodedKey + "]");
|
|
14012
13893
|
sideChannel2.set(object2, step2);
|
|
14013
13894
|
var valueSideChannel = getSideChannel2();
|
|
14014
13895
|
valueSideChannel.set(sentinel, sideChannel2);
|
|
@@ -14021,7 +13902,7 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
14021
13902
|
strictNullHandling,
|
|
14022
13903
|
skipNulls,
|
|
14023
13904
|
encodeDotInKeys,
|
|
14024
|
-
generateArrayPrefix === "comma" && encodeValuesOnly && isArray(obj) ? null : encoder,
|
|
13905
|
+
generateArrayPrefix === "comma" && encodeValuesOnly && isArray$1(obj) ? null : encoder,
|
|
14025
13906
|
filter,
|
|
14026
13907
|
sort,
|
|
14027
13908
|
allowDots,
|
|
@@ -14037,7 +13918,7 @@ var stringify$1 = function stringify(object2, prefix2, generateArrayPrefix, comm
|
|
|
14037
13918
|
};
|
|
14038
13919
|
var normalizeStringifyOptions = function normalizeStringifyOptions2(opts) {
|
|
14039
13920
|
if (!opts) {
|
|
14040
|
-
return defaults;
|
|
13921
|
+
return defaults$1;
|
|
14041
13922
|
}
|
|
14042
13923
|
if (typeof opts.allowEmptyArrays !== "undefined" && typeof opts.allowEmptyArrays !== "boolean") {
|
|
14043
13924
|
throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");
|
|
@@ -14048,20 +13929,20 @@ var normalizeStringifyOptions = function normalizeStringifyOptions2(opts) {
|
|
|
14048
13929
|
if (opts.encoder !== null && typeof opts.encoder !== "undefined" && typeof opts.encoder !== "function") {
|
|
14049
13930
|
throw new TypeError("Encoder has to be a function.");
|
|
14050
13931
|
}
|
|
14051
|
-
var charset = opts.charset || defaults.charset;
|
|
13932
|
+
var charset = opts.charset || defaults$1.charset;
|
|
14052
13933
|
if (typeof opts.charset !== "undefined" && opts.charset !== "utf-8" && opts.charset !== "iso-8859-1") {
|
|
14053
13934
|
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
14054
13935
|
}
|
|
14055
|
-
var format2 = formats["default"];
|
|
13936
|
+
var format2 = formats$1["default"];
|
|
14056
13937
|
if (typeof opts.format !== "undefined") {
|
|
14057
|
-
if (!has$
|
|
13938
|
+
if (!has$2.call(formats$1.formatters, opts.format)) {
|
|
14058
13939
|
throw new TypeError("Unknown format option provided.");
|
|
14059
13940
|
}
|
|
14060
13941
|
format2 = opts.format;
|
|
14061
13942
|
}
|
|
14062
|
-
var formatter = formats.formatters[format2];
|
|
14063
|
-
var filter = defaults.filter;
|
|
14064
|
-
if (typeof opts.filter === "function" || isArray(opts.filter)) {
|
|
13943
|
+
var formatter = formats$1.formatters[format2];
|
|
13944
|
+
var filter = defaults$1.filter;
|
|
13945
|
+
if (typeof opts.filter === "function" || isArray$1(opts.filter)) {
|
|
14065
13946
|
filter = opts.filter;
|
|
14066
13947
|
}
|
|
14067
13948
|
var arrayFormat;
|
|
@@ -14070,32 +13951,32 @@ var normalizeStringifyOptions = function normalizeStringifyOptions2(opts) {
|
|
|
14070
13951
|
} else if ("indices" in opts) {
|
|
14071
13952
|
arrayFormat = opts.indices ? "indices" : "repeat";
|
|
14072
13953
|
} else {
|
|
14073
|
-
arrayFormat = defaults.arrayFormat;
|
|
13954
|
+
arrayFormat = defaults$1.arrayFormat;
|
|
14074
13955
|
}
|
|
14075
13956
|
if ("commaRoundTrip" in opts && typeof opts.commaRoundTrip !== "boolean") {
|
|
14076
13957
|
throw new TypeError("`commaRoundTrip` must be a boolean, or absent");
|
|
14077
13958
|
}
|
|
14078
|
-
var allowDots = typeof opts.allowDots === "undefined" ? opts.encodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
|
|
13959
|
+
var allowDots = typeof opts.allowDots === "undefined" ? opts.encodeDotInKeys === true ? true : defaults$1.allowDots : !!opts.allowDots;
|
|
14079
13960
|
return {
|
|
14080
|
-
addQueryPrefix: typeof opts.addQueryPrefix === "boolean" ? opts.addQueryPrefix : defaults.addQueryPrefix,
|
|
13961
|
+
addQueryPrefix: typeof opts.addQueryPrefix === "boolean" ? opts.addQueryPrefix : defaults$1.addQueryPrefix,
|
|
14081
13962
|
allowDots,
|
|
14082
|
-
allowEmptyArrays: typeof opts.allowEmptyArrays === "boolean" ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
|
|
13963
|
+
allowEmptyArrays: typeof opts.allowEmptyArrays === "boolean" ? !!opts.allowEmptyArrays : defaults$1.allowEmptyArrays,
|
|
14083
13964
|
arrayFormat,
|
|
14084
13965
|
charset,
|
|
14085
|
-
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults.charsetSentinel,
|
|
13966
|
+
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults$1.charsetSentinel,
|
|
14086
13967
|
commaRoundTrip: !!opts.commaRoundTrip,
|
|
14087
|
-
delimiter: typeof opts.delimiter === "undefined" ? defaults.delimiter : opts.delimiter,
|
|
14088
|
-
encode: typeof opts.encode === "boolean" ? opts.encode : defaults.encode,
|
|
14089
|
-
encodeDotInKeys: typeof opts.encodeDotInKeys === "boolean" ? opts.encodeDotInKeys : defaults.encodeDotInKeys,
|
|
14090
|
-
encoder: typeof opts.encoder === "function" ? opts.encoder : defaults.encoder,
|
|
14091
|
-
encodeValuesOnly: typeof opts.encodeValuesOnly === "boolean" ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
|
|
13968
|
+
delimiter: typeof opts.delimiter === "undefined" ? defaults$1.delimiter : opts.delimiter,
|
|
13969
|
+
encode: typeof opts.encode === "boolean" ? opts.encode : defaults$1.encode,
|
|
13970
|
+
encodeDotInKeys: typeof opts.encodeDotInKeys === "boolean" ? opts.encodeDotInKeys : defaults$1.encodeDotInKeys,
|
|
13971
|
+
encoder: typeof opts.encoder === "function" ? opts.encoder : defaults$1.encoder,
|
|
13972
|
+
encodeValuesOnly: typeof opts.encodeValuesOnly === "boolean" ? opts.encodeValuesOnly : defaults$1.encodeValuesOnly,
|
|
14092
13973
|
filter,
|
|
14093
13974
|
format: format2,
|
|
14094
13975
|
formatter,
|
|
14095
|
-
serializeDate: typeof opts.serializeDate === "function" ? opts.serializeDate : defaults.serializeDate,
|
|
14096
|
-
skipNulls: typeof opts.skipNulls === "boolean" ? opts.skipNulls : defaults.skipNulls,
|
|
13976
|
+
serializeDate: typeof opts.serializeDate === "function" ? opts.serializeDate : defaults$1.serializeDate,
|
|
13977
|
+
skipNulls: typeof opts.skipNulls === "boolean" ? opts.skipNulls : defaults$1.skipNulls,
|
|
14097
13978
|
sort: typeof opts.sort === "function" ? opts.sort : null,
|
|
14098
|
-
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults.strictNullHandling
|
|
13979
|
+
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults$1.strictNullHandling
|
|
14099
13980
|
};
|
|
14100
13981
|
};
|
|
14101
13982
|
var stringify_1 = function(object2, opts) {
|
|
@@ -14106,7 +13987,7 @@ var stringify_1 = function(object2, opts) {
|
|
|
14106
13987
|
if (typeof options.filter === "function") {
|
|
14107
13988
|
filter = options.filter;
|
|
14108
13989
|
obj = filter("", obj);
|
|
14109
|
-
} else if (isArray(options.filter)) {
|
|
13990
|
+
} else if (isArray$1(options.filter)) {
|
|
14110
13991
|
filter = options.filter;
|
|
14111
13992
|
objKeys = filter;
|
|
14112
13993
|
}
|
|
@@ -14161,8 +14042,256 @@ var stringify_1 = function(object2, opts) {
|
|
|
14161
14042
|
}
|
|
14162
14043
|
return joined.length > 0 ? prefix2 + joined : "";
|
|
14163
14044
|
};
|
|
14045
|
+
var utils = utils$2;
|
|
14046
|
+
var has$1 = Object.prototype.hasOwnProperty;
|
|
14047
|
+
var isArray = Array.isArray;
|
|
14048
|
+
var defaults = {
|
|
14049
|
+
allowDots: false,
|
|
14050
|
+
allowEmptyArrays: false,
|
|
14051
|
+
allowPrototypes: false,
|
|
14052
|
+
allowSparse: false,
|
|
14053
|
+
arrayLimit: 20,
|
|
14054
|
+
charset: "utf-8",
|
|
14055
|
+
charsetSentinel: false,
|
|
14056
|
+
comma: false,
|
|
14057
|
+
decodeDotInKeys: false,
|
|
14058
|
+
decoder: utils.decode,
|
|
14059
|
+
delimiter: "&",
|
|
14060
|
+
depth: 5,
|
|
14061
|
+
duplicates: "combine",
|
|
14062
|
+
ignoreQueryPrefix: false,
|
|
14063
|
+
interpretNumericEntities: false,
|
|
14064
|
+
parameterLimit: 1e3,
|
|
14065
|
+
parseArrays: true,
|
|
14066
|
+
plainObjects: false,
|
|
14067
|
+
strictDepth: false,
|
|
14068
|
+
strictNullHandling: false,
|
|
14069
|
+
throwOnLimitExceeded: false
|
|
14070
|
+
};
|
|
14071
|
+
var interpretNumericEntities = function(str) {
|
|
14072
|
+
return str.replace(/&#(\d+);/g, function($0, numberStr) {
|
|
14073
|
+
return String.fromCharCode(parseInt(numberStr, 10));
|
|
14074
|
+
});
|
|
14075
|
+
};
|
|
14076
|
+
var parseArrayValue = function(val, options, currentArrayLength) {
|
|
14077
|
+
if (val && typeof val === "string" && options.comma && val.indexOf(",") > -1) {
|
|
14078
|
+
return val.split(",");
|
|
14079
|
+
}
|
|
14080
|
+
if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {
|
|
14081
|
+
throw new RangeError("Array limit exceeded. Only " + options.arrayLimit + " element" + (options.arrayLimit === 1 ? "" : "s") + " allowed in an array.");
|
|
14082
|
+
}
|
|
14083
|
+
return val;
|
|
14084
|
+
};
|
|
14085
|
+
var isoSentinel = "utf8=%26%2310003%3B";
|
|
14086
|
+
var charsetSentinel = "utf8=%E2%9C%93";
|
|
14087
|
+
var parseValues = function parseQueryStringValues(str, options) {
|
|
14088
|
+
var obj = { __proto__: null };
|
|
14089
|
+
var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, "") : str;
|
|
14090
|
+
cleanStr = cleanStr.replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
14091
|
+
var limit2 = options.parameterLimit === Infinity ? void 0 : options.parameterLimit;
|
|
14092
|
+
var parts = cleanStr.split(
|
|
14093
|
+
options.delimiter,
|
|
14094
|
+
options.throwOnLimitExceeded ? limit2 + 1 : limit2
|
|
14095
|
+
);
|
|
14096
|
+
if (options.throwOnLimitExceeded && parts.length > limit2) {
|
|
14097
|
+
throw new RangeError("Parameter limit exceeded. Only " + limit2 + " parameter" + (limit2 === 1 ? "" : "s") + " allowed.");
|
|
14098
|
+
}
|
|
14099
|
+
var skipIndex = -1;
|
|
14100
|
+
var i2;
|
|
14101
|
+
var charset = options.charset;
|
|
14102
|
+
if (options.charsetSentinel) {
|
|
14103
|
+
for (i2 = 0; i2 < parts.length; ++i2) {
|
|
14104
|
+
if (parts[i2].indexOf("utf8=") === 0) {
|
|
14105
|
+
if (parts[i2] === charsetSentinel) {
|
|
14106
|
+
charset = "utf-8";
|
|
14107
|
+
} else if (parts[i2] === isoSentinel) {
|
|
14108
|
+
charset = "iso-8859-1";
|
|
14109
|
+
}
|
|
14110
|
+
skipIndex = i2;
|
|
14111
|
+
i2 = parts.length;
|
|
14112
|
+
}
|
|
14113
|
+
}
|
|
14114
|
+
}
|
|
14115
|
+
for (i2 = 0; i2 < parts.length; ++i2) {
|
|
14116
|
+
if (i2 === skipIndex) {
|
|
14117
|
+
continue;
|
|
14118
|
+
}
|
|
14119
|
+
var part = parts[i2];
|
|
14120
|
+
var bracketEqualsPos = part.indexOf("]=");
|
|
14121
|
+
var pos = bracketEqualsPos === -1 ? part.indexOf("=") : bracketEqualsPos + 1;
|
|
14122
|
+
var key;
|
|
14123
|
+
var val;
|
|
14124
|
+
if (pos === -1) {
|
|
14125
|
+
key = options.decoder(part, defaults.decoder, charset, "key");
|
|
14126
|
+
val = options.strictNullHandling ? null : "";
|
|
14127
|
+
} else {
|
|
14128
|
+
key = options.decoder(part.slice(0, pos), defaults.decoder, charset, "key");
|
|
14129
|
+
val = utils.maybeMap(
|
|
14130
|
+
parseArrayValue(
|
|
14131
|
+
part.slice(pos + 1),
|
|
14132
|
+
options,
|
|
14133
|
+
isArray(obj[key]) ? obj[key].length : 0
|
|
14134
|
+
),
|
|
14135
|
+
function(encodedVal) {
|
|
14136
|
+
return options.decoder(encodedVal, defaults.decoder, charset, "value");
|
|
14137
|
+
}
|
|
14138
|
+
);
|
|
14139
|
+
}
|
|
14140
|
+
if (val && options.interpretNumericEntities && charset === "iso-8859-1") {
|
|
14141
|
+
val = interpretNumericEntities(String(val));
|
|
14142
|
+
}
|
|
14143
|
+
if (part.indexOf("[]=") > -1) {
|
|
14144
|
+
val = isArray(val) ? [val] : val;
|
|
14145
|
+
}
|
|
14146
|
+
var existing = has$1.call(obj, key);
|
|
14147
|
+
if (existing && options.duplicates === "combine") {
|
|
14148
|
+
obj[key] = utils.combine(obj[key], val);
|
|
14149
|
+
} else if (!existing || options.duplicates === "last") {
|
|
14150
|
+
obj[key] = val;
|
|
14151
|
+
}
|
|
14152
|
+
}
|
|
14153
|
+
return obj;
|
|
14154
|
+
};
|
|
14155
|
+
var parseObject = function(chain, val, options, valuesParsed) {
|
|
14156
|
+
var currentArrayLength = 0;
|
|
14157
|
+
if (chain.length > 0 && chain[chain.length - 1] === "[]") {
|
|
14158
|
+
var parentKey = chain.slice(0, -1).join("");
|
|
14159
|
+
currentArrayLength = Array.isArray(val) && val[parentKey] ? val[parentKey].length : 0;
|
|
14160
|
+
}
|
|
14161
|
+
var leaf = valuesParsed ? val : parseArrayValue(val, options, currentArrayLength);
|
|
14162
|
+
for (var i2 = chain.length - 1; i2 >= 0; --i2) {
|
|
14163
|
+
var obj;
|
|
14164
|
+
var root2 = chain[i2];
|
|
14165
|
+
if (root2 === "[]" && options.parseArrays) {
|
|
14166
|
+
obj = options.allowEmptyArrays && (leaf === "" || options.strictNullHandling && leaf === null) ? [] : utils.combine([], leaf);
|
|
14167
|
+
} else {
|
|
14168
|
+
obj = options.plainObjects ? { __proto__: null } : {};
|
|
14169
|
+
var cleanRoot = root2.charAt(0) === "[" && root2.charAt(root2.length - 1) === "]" ? root2.slice(1, -1) : root2;
|
|
14170
|
+
var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, ".") : cleanRoot;
|
|
14171
|
+
var index = parseInt(decodedRoot, 10);
|
|
14172
|
+
if (!options.parseArrays && decodedRoot === "") {
|
|
14173
|
+
obj = { 0: leaf };
|
|
14174
|
+
} else if (!isNaN(index) && root2 !== decodedRoot && String(index) === decodedRoot && index >= 0 && (options.parseArrays && index <= options.arrayLimit)) {
|
|
14175
|
+
obj = [];
|
|
14176
|
+
obj[index] = leaf;
|
|
14177
|
+
} else if (decodedRoot !== "__proto__") {
|
|
14178
|
+
obj[decodedRoot] = leaf;
|
|
14179
|
+
}
|
|
14180
|
+
}
|
|
14181
|
+
leaf = obj;
|
|
14182
|
+
}
|
|
14183
|
+
return leaf;
|
|
14184
|
+
};
|
|
14185
|
+
var parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) {
|
|
14186
|
+
if (!givenKey) {
|
|
14187
|
+
return;
|
|
14188
|
+
}
|
|
14189
|
+
var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, "[$1]") : givenKey;
|
|
14190
|
+
var brackets2 = /(\[[^[\]]*])/;
|
|
14191
|
+
var child = /(\[[^[\]]*])/g;
|
|
14192
|
+
var segment = options.depth > 0 && brackets2.exec(key);
|
|
14193
|
+
var parent = segment ? key.slice(0, segment.index) : key;
|
|
14194
|
+
var keys2 = [];
|
|
14195
|
+
if (parent) {
|
|
14196
|
+
if (!options.plainObjects && has$1.call(Object.prototype, parent)) {
|
|
14197
|
+
if (!options.allowPrototypes) {
|
|
14198
|
+
return;
|
|
14199
|
+
}
|
|
14200
|
+
}
|
|
14201
|
+
keys2.push(parent);
|
|
14202
|
+
}
|
|
14203
|
+
var i2 = 0;
|
|
14204
|
+
while (options.depth > 0 && (segment = child.exec(key)) !== null && i2 < options.depth) {
|
|
14205
|
+
i2 += 1;
|
|
14206
|
+
if (!options.plainObjects && has$1.call(Object.prototype, segment[1].slice(1, -1))) {
|
|
14207
|
+
if (!options.allowPrototypes) {
|
|
14208
|
+
return;
|
|
14209
|
+
}
|
|
14210
|
+
}
|
|
14211
|
+
keys2.push(segment[1]);
|
|
14212
|
+
}
|
|
14213
|
+
if (segment) {
|
|
14214
|
+
if (options.strictDepth === true) {
|
|
14215
|
+
throw new RangeError("Input depth exceeded depth option of " + options.depth + " and strictDepth is true");
|
|
14216
|
+
}
|
|
14217
|
+
keys2.push("[" + key.slice(segment.index) + "]");
|
|
14218
|
+
}
|
|
14219
|
+
return parseObject(keys2, val, options, valuesParsed);
|
|
14220
|
+
};
|
|
14221
|
+
var normalizeParseOptions = function normalizeParseOptions2(opts) {
|
|
14222
|
+
if (!opts) {
|
|
14223
|
+
return defaults;
|
|
14224
|
+
}
|
|
14225
|
+
if (typeof opts.allowEmptyArrays !== "undefined" && typeof opts.allowEmptyArrays !== "boolean") {
|
|
14226
|
+
throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");
|
|
14227
|
+
}
|
|
14228
|
+
if (typeof opts.decodeDotInKeys !== "undefined" && typeof opts.decodeDotInKeys !== "boolean") {
|
|
14229
|
+
throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");
|
|
14230
|
+
}
|
|
14231
|
+
if (opts.decoder !== null && typeof opts.decoder !== "undefined" && typeof opts.decoder !== "function") {
|
|
14232
|
+
throw new TypeError("Decoder has to be a function.");
|
|
14233
|
+
}
|
|
14234
|
+
if (typeof opts.charset !== "undefined" && opts.charset !== "utf-8" && opts.charset !== "iso-8859-1") {
|
|
14235
|
+
throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
|
|
14236
|
+
}
|
|
14237
|
+
if (typeof opts.throwOnLimitExceeded !== "undefined" && typeof opts.throwOnLimitExceeded !== "boolean") {
|
|
14238
|
+
throw new TypeError("`throwOnLimitExceeded` option must be a boolean");
|
|
14239
|
+
}
|
|
14240
|
+
var charset = typeof opts.charset === "undefined" ? defaults.charset : opts.charset;
|
|
14241
|
+
var duplicates = typeof opts.duplicates === "undefined" ? defaults.duplicates : opts.duplicates;
|
|
14242
|
+
if (duplicates !== "combine" && duplicates !== "first" && duplicates !== "last") {
|
|
14243
|
+
throw new TypeError("The duplicates option must be either combine, first, or last");
|
|
14244
|
+
}
|
|
14245
|
+
var allowDots = typeof opts.allowDots === "undefined" ? opts.decodeDotInKeys === true ? true : defaults.allowDots : !!opts.allowDots;
|
|
14246
|
+
return {
|
|
14247
|
+
allowDots,
|
|
14248
|
+
allowEmptyArrays: typeof opts.allowEmptyArrays === "boolean" ? !!opts.allowEmptyArrays : defaults.allowEmptyArrays,
|
|
14249
|
+
allowPrototypes: typeof opts.allowPrototypes === "boolean" ? opts.allowPrototypes : defaults.allowPrototypes,
|
|
14250
|
+
allowSparse: typeof opts.allowSparse === "boolean" ? opts.allowSparse : defaults.allowSparse,
|
|
14251
|
+
arrayLimit: typeof opts.arrayLimit === "number" ? opts.arrayLimit : defaults.arrayLimit,
|
|
14252
|
+
charset,
|
|
14253
|
+
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults.charsetSentinel,
|
|
14254
|
+
comma: typeof opts.comma === "boolean" ? opts.comma : defaults.comma,
|
|
14255
|
+
decodeDotInKeys: typeof opts.decodeDotInKeys === "boolean" ? opts.decodeDotInKeys : defaults.decodeDotInKeys,
|
|
14256
|
+
decoder: typeof opts.decoder === "function" ? opts.decoder : defaults.decoder,
|
|
14257
|
+
delimiter: typeof opts.delimiter === "string" || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter,
|
|
14258
|
+
// eslint-disable-next-line no-implicit-coercion, no-extra-parens
|
|
14259
|
+
depth: typeof opts.depth === "number" || opts.depth === false ? +opts.depth : defaults.depth,
|
|
14260
|
+
duplicates,
|
|
14261
|
+
ignoreQueryPrefix: opts.ignoreQueryPrefix === true,
|
|
14262
|
+
interpretNumericEntities: typeof opts.interpretNumericEntities === "boolean" ? opts.interpretNumericEntities : defaults.interpretNumericEntities,
|
|
14263
|
+
parameterLimit: typeof opts.parameterLimit === "number" ? opts.parameterLimit : defaults.parameterLimit,
|
|
14264
|
+
parseArrays: opts.parseArrays !== false,
|
|
14265
|
+
plainObjects: typeof opts.plainObjects === "boolean" ? opts.plainObjects : defaults.plainObjects,
|
|
14266
|
+
strictDepth: typeof opts.strictDepth === "boolean" ? !!opts.strictDepth : defaults.strictDepth,
|
|
14267
|
+
strictNullHandling: typeof opts.strictNullHandling === "boolean" ? opts.strictNullHandling : defaults.strictNullHandling,
|
|
14268
|
+
throwOnLimitExceeded: typeof opts.throwOnLimitExceeded === "boolean" ? opts.throwOnLimitExceeded : false
|
|
14269
|
+
};
|
|
14270
|
+
};
|
|
14271
|
+
var parse$1 = function(str, opts) {
|
|
14272
|
+
var options = normalizeParseOptions(opts);
|
|
14273
|
+
if (str === "" || str === null || typeof str === "undefined") {
|
|
14274
|
+
return options.plainObjects ? { __proto__: null } : {};
|
|
14275
|
+
}
|
|
14276
|
+
var tempObj = typeof str === "string" ? parseValues(str, options) : str;
|
|
14277
|
+
var obj = options.plainObjects ? { __proto__: null } : {};
|
|
14278
|
+
var keys2 = Object.keys(tempObj);
|
|
14279
|
+
for (var i2 = 0; i2 < keys2.length; ++i2) {
|
|
14280
|
+
var key = keys2[i2];
|
|
14281
|
+
var newObj = parseKeys(key, tempObj[key], options, typeof str === "string");
|
|
14282
|
+
obj = utils.merge(obj, newObj, options);
|
|
14283
|
+
}
|
|
14284
|
+
if (options.allowSparse === true) {
|
|
14285
|
+
return obj;
|
|
14286
|
+
}
|
|
14287
|
+
return utils.compact(obj);
|
|
14288
|
+
};
|
|
14164
14289
|
var stringify2 = stringify_1;
|
|
14290
|
+
var parse = parse$1;
|
|
14291
|
+
var formats = formats$3;
|
|
14165
14292
|
var lib = {
|
|
14293
|
+
formats,
|
|
14294
|
+
parse,
|
|
14166
14295
|
stringify: stringify2
|
|
14167
14296
|
};
|
|
14168
14297
|
const CUSTOMER_APP_HOST = getConfig().customerAppHost;
|
|
@@ -14703,8 +14832,8 @@ function _extends$2() {
|
|
|
14703
14832
|
}, _extends$2.apply(null, arguments);
|
|
14704
14833
|
}
|
|
14705
14834
|
var propTypes = { exports: {} };
|
|
14706
|
-
var reactIs$
|
|
14707
|
-
var reactIs_production_min = {};
|
|
14835
|
+
var reactIs$3 = { exports: {} };
|
|
14836
|
+
var reactIs_production_min$2 = {};
|
|
14708
14837
|
/** @license React v16.13.1
|
|
14709
14838
|
* react-is.production.min.js
|
|
14710
14839
|
*
|
|
@@ -14713,10 +14842,10 @@ var reactIs_production_min = {};
|
|
|
14713
14842
|
* This source code is licensed under the MIT license found in the
|
|
14714
14843
|
* LICENSE file in the root directory of this source tree.
|
|
14715
14844
|
*/
|
|
14716
|
-
var hasRequiredReactIs_production_min;
|
|
14717
|
-
function requireReactIs_production_min() {
|
|
14718
|
-
if (hasRequiredReactIs_production_min) return reactIs_production_min;
|
|
14719
|
-
hasRequiredReactIs_production_min = 1;
|
|
14845
|
+
var hasRequiredReactIs_production_min$2;
|
|
14846
|
+
function requireReactIs_production_min$2() {
|
|
14847
|
+
if (hasRequiredReactIs_production_min$2) return reactIs_production_min$2;
|
|
14848
|
+
hasRequiredReactIs_production_min$2 = 1;
|
|
14720
14849
|
var b2 = "function" === typeof Symbol && Symbol.for, c2 = b2 ? Symbol.for("react.element") : 60103, d3 = b2 ? Symbol.for("react.portal") : 60106, e2 = b2 ? Symbol.for("react.fragment") : 60107, f = b2 ? Symbol.for("react.strict_mode") : 60108, g = b2 ? Symbol.for("react.profiler") : 60114, h3 = b2 ? Symbol.for("react.provider") : 60109, k2 = b2 ? Symbol.for("react.context") : 60110, l = b2 ? Symbol.for("react.async_mode") : 60111, m3 = b2 ? Symbol.for("react.concurrent_mode") : 60111, n = b2 ? Symbol.for("react.forward_ref") : 60112, p = b2 ? Symbol.for("react.suspense") : 60113, q2 = b2 ? Symbol.for("react.suspense_list") : 60120, r2 = b2 ? Symbol.for("react.memo") : 60115, t2 = b2 ? Symbol.for("react.lazy") : 60116, v = b2 ? Symbol.for("react.block") : 60121, w2 = b2 ? Symbol.for("react.fundamental") : 60117, x2 = b2 ? Symbol.for("react.responder") : 60118, y3 = b2 ? Symbol.for("react.scope") : 60119;
|
|
14721
14850
|
function z2(a3) {
|
|
14722
14851
|
if ("object" === typeof a3 && null !== a3) {
|
|
@@ -14751,67 +14880,67 @@ function requireReactIs_production_min() {
|
|
|
14751
14880
|
function A(a3) {
|
|
14752
14881
|
return z2(a3) === m3;
|
|
14753
14882
|
}
|
|
14754
|
-
reactIs_production_min.AsyncMode = l;
|
|
14755
|
-
reactIs_production_min.ConcurrentMode = m3;
|
|
14756
|
-
reactIs_production_min.ContextConsumer = k2;
|
|
14757
|
-
reactIs_production_min.ContextProvider = h3;
|
|
14758
|
-
reactIs_production_min.Element = c2;
|
|
14759
|
-
reactIs_production_min.ForwardRef = n;
|
|
14760
|
-
reactIs_production_min.Fragment = e2;
|
|
14761
|
-
reactIs_production_min.Lazy = t2;
|
|
14762
|
-
reactIs_production_min.Memo = r2;
|
|
14763
|
-
reactIs_production_min.Portal = d3;
|
|
14764
|
-
reactIs_production_min.Profiler = g;
|
|
14765
|
-
reactIs_production_min.StrictMode = f;
|
|
14766
|
-
reactIs_production_min.Suspense = p;
|
|
14767
|
-
reactIs_production_min.isAsyncMode = function(a3) {
|
|
14883
|
+
reactIs_production_min$2.AsyncMode = l;
|
|
14884
|
+
reactIs_production_min$2.ConcurrentMode = m3;
|
|
14885
|
+
reactIs_production_min$2.ContextConsumer = k2;
|
|
14886
|
+
reactIs_production_min$2.ContextProvider = h3;
|
|
14887
|
+
reactIs_production_min$2.Element = c2;
|
|
14888
|
+
reactIs_production_min$2.ForwardRef = n;
|
|
14889
|
+
reactIs_production_min$2.Fragment = e2;
|
|
14890
|
+
reactIs_production_min$2.Lazy = t2;
|
|
14891
|
+
reactIs_production_min$2.Memo = r2;
|
|
14892
|
+
reactIs_production_min$2.Portal = d3;
|
|
14893
|
+
reactIs_production_min$2.Profiler = g;
|
|
14894
|
+
reactIs_production_min$2.StrictMode = f;
|
|
14895
|
+
reactIs_production_min$2.Suspense = p;
|
|
14896
|
+
reactIs_production_min$2.isAsyncMode = function(a3) {
|
|
14768
14897
|
return A(a3) || z2(a3) === l;
|
|
14769
14898
|
};
|
|
14770
|
-
reactIs_production_min.isConcurrentMode = A;
|
|
14771
|
-
reactIs_production_min.isContextConsumer = function(a3) {
|
|
14899
|
+
reactIs_production_min$2.isConcurrentMode = A;
|
|
14900
|
+
reactIs_production_min$2.isContextConsumer = function(a3) {
|
|
14772
14901
|
return z2(a3) === k2;
|
|
14773
14902
|
};
|
|
14774
|
-
reactIs_production_min.isContextProvider = function(a3) {
|
|
14903
|
+
reactIs_production_min$2.isContextProvider = function(a3) {
|
|
14775
14904
|
return z2(a3) === h3;
|
|
14776
14905
|
};
|
|
14777
|
-
reactIs_production_min.isElement = function(a3) {
|
|
14906
|
+
reactIs_production_min$2.isElement = function(a3) {
|
|
14778
14907
|
return "object" === typeof a3 && null !== a3 && a3.$$typeof === c2;
|
|
14779
14908
|
};
|
|
14780
|
-
reactIs_production_min.isForwardRef = function(a3) {
|
|
14909
|
+
reactIs_production_min$2.isForwardRef = function(a3) {
|
|
14781
14910
|
return z2(a3) === n;
|
|
14782
14911
|
};
|
|
14783
|
-
reactIs_production_min.isFragment = function(a3) {
|
|
14912
|
+
reactIs_production_min$2.isFragment = function(a3) {
|
|
14784
14913
|
return z2(a3) === e2;
|
|
14785
14914
|
};
|
|
14786
|
-
reactIs_production_min.isLazy = function(a3) {
|
|
14915
|
+
reactIs_production_min$2.isLazy = function(a3) {
|
|
14787
14916
|
return z2(a3) === t2;
|
|
14788
14917
|
};
|
|
14789
|
-
reactIs_production_min.isMemo = function(a3) {
|
|
14918
|
+
reactIs_production_min$2.isMemo = function(a3) {
|
|
14790
14919
|
return z2(a3) === r2;
|
|
14791
14920
|
};
|
|
14792
|
-
reactIs_production_min.isPortal = function(a3) {
|
|
14921
|
+
reactIs_production_min$2.isPortal = function(a3) {
|
|
14793
14922
|
return z2(a3) === d3;
|
|
14794
14923
|
};
|
|
14795
|
-
reactIs_production_min.isProfiler = function(a3) {
|
|
14924
|
+
reactIs_production_min$2.isProfiler = function(a3) {
|
|
14796
14925
|
return z2(a3) === g;
|
|
14797
14926
|
};
|
|
14798
|
-
reactIs_production_min.isStrictMode = function(a3) {
|
|
14927
|
+
reactIs_production_min$2.isStrictMode = function(a3) {
|
|
14799
14928
|
return z2(a3) === f;
|
|
14800
14929
|
};
|
|
14801
|
-
reactIs_production_min.isSuspense = function(a3) {
|
|
14930
|
+
reactIs_production_min$2.isSuspense = function(a3) {
|
|
14802
14931
|
return z2(a3) === p;
|
|
14803
14932
|
};
|
|
14804
|
-
reactIs_production_min.isValidElementType = function(a3) {
|
|
14933
|
+
reactIs_production_min$2.isValidElementType = function(a3) {
|
|
14805
14934
|
return "string" === typeof a3 || "function" === typeof a3 || a3 === e2 || a3 === m3 || a3 === g || a3 === f || a3 === p || a3 === q2 || "object" === typeof a3 && null !== a3 && (a3.$$typeof === t2 || a3.$$typeof === r2 || a3.$$typeof === h3 || a3.$$typeof === k2 || a3.$$typeof === n || a3.$$typeof === w2 || a3.$$typeof === x2 || a3.$$typeof === y3 || a3.$$typeof === v);
|
|
14806
14935
|
};
|
|
14807
|
-
reactIs_production_min.typeOf = z2;
|
|
14808
|
-
return reactIs_production_min;
|
|
14936
|
+
reactIs_production_min$2.typeOf = z2;
|
|
14937
|
+
return reactIs_production_min$2;
|
|
14809
14938
|
}
|
|
14810
|
-
var reactIs_development = {};
|
|
14811
|
-
var hasRequiredReactIs_development;
|
|
14812
|
-
function requireReactIs_development() {
|
|
14813
|
-
if (hasRequiredReactIs_development) return reactIs_development;
|
|
14814
|
-
hasRequiredReactIs_development = 1;
|
|
14939
|
+
var reactIs_development$2 = {};
|
|
14940
|
+
var hasRequiredReactIs_development$2;
|
|
14941
|
+
function requireReactIs_development$2() {
|
|
14942
|
+
if (hasRequiredReactIs_development$2) return reactIs_development$2;
|
|
14943
|
+
hasRequiredReactIs_development$2 = 1;
|
|
14815
14944
|
/** @license React v16.13.1
|
|
14816
14945
|
* react-is.development.js
|
|
14817
14946
|
*
|
|
@@ -14937,44 +15066,49 @@ function requireReactIs_development() {
|
|
|
14937
15066
|
function isSuspense(object2) {
|
|
14938
15067
|
return typeOf(object2) === REACT_SUSPENSE_TYPE;
|
|
14939
15068
|
}
|
|
14940
|
-
reactIs_development.AsyncMode = AsyncMode;
|
|
14941
|
-
reactIs_development.ConcurrentMode = ConcurrentMode;
|
|
14942
|
-
reactIs_development.ContextConsumer = ContextConsumer;
|
|
14943
|
-
reactIs_development.ContextProvider = ContextProvider;
|
|
14944
|
-
reactIs_development.Element = Element;
|
|
14945
|
-
reactIs_development.ForwardRef = ForwardRef;
|
|
14946
|
-
reactIs_development.Fragment = Fragment2;
|
|
14947
|
-
reactIs_development.Lazy = Lazy2;
|
|
14948
|
-
reactIs_development.Memo = Memo;
|
|
14949
|
-
reactIs_development.Portal = Portal3;
|
|
14950
|
-
reactIs_development.Profiler = Profiler;
|
|
14951
|
-
reactIs_development.StrictMode = StrictMode;
|
|
14952
|
-
reactIs_development.Suspense = Suspense;
|
|
14953
|
-
reactIs_development.isAsyncMode = isAsyncMode;
|
|
14954
|
-
reactIs_development.isConcurrentMode = isConcurrentMode;
|
|
14955
|
-
reactIs_development.isContextConsumer = isContextConsumer;
|
|
14956
|
-
reactIs_development.isContextProvider = isContextProvider;
|
|
14957
|
-
reactIs_development.isElement = isElement2;
|
|
14958
|
-
reactIs_development.isForwardRef = isForwardRef;
|
|
14959
|
-
reactIs_development.isFragment = isFragment;
|
|
14960
|
-
reactIs_development.isLazy = isLazy;
|
|
14961
|
-
reactIs_development.isMemo = isMemo;
|
|
14962
|
-
reactIs_development.isPortal = isPortal;
|
|
14963
|
-
reactIs_development.isProfiler = isProfiler;
|
|
14964
|
-
reactIs_development.isStrictMode = isStrictMode;
|
|
14965
|
-
reactIs_development.isSuspense = isSuspense;
|
|
14966
|
-
reactIs_development.isValidElementType = isValidElementType;
|
|
14967
|
-
reactIs_development.typeOf = typeOf;
|
|
15069
|
+
reactIs_development$2.AsyncMode = AsyncMode;
|
|
15070
|
+
reactIs_development$2.ConcurrentMode = ConcurrentMode;
|
|
15071
|
+
reactIs_development$2.ContextConsumer = ContextConsumer;
|
|
15072
|
+
reactIs_development$2.ContextProvider = ContextProvider;
|
|
15073
|
+
reactIs_development$2.Element = Element;
|
|
15074
|
+
reactIs_development$2.ForwardRef = ForwardRef;
|
|
15075
|
+
reactIs_development$2.Fragment = Fragment2;
|
|
15076
|
+
reactIs_development$2.Lazy = Lazy2;
|
|
15077
|
+
reactIs_development$2.Memo = Memo;
|
|
15078
|
+
reactIs_development$2.Portal = Portal3;
|
|
15079
|
+
reactIs_development$2.Profiler = Profiler;
|
|
15080
|
+
reactIs_development$2.StrictMode = StrictMode;
|
|
15081
|
+
reactIs_development$2.Suspense = Suspense;
|
|
15082
|
+
reactIs_development$2.isAsyncMode = isAsyncMode;
|
|
15083
|
+
reactIs_development$2.isConcurrentMode = isConcurrentMode;
|
|
15084
|
+
reactIs_development$2.isContextConsumer = isContextConsumer;
|
|
15085
|
+
reactIs_development$2.isContextProvider = isContextProvider;
|
|
15086
|
+
reactIs_development$2.isElement = isElement2;
|
|
15087
|
+
reactIs_development$2.isForwardRef = isForwardRef;
|
|
15088
|
+
reactIs_development$2.isFragment = isFragment;
|
|
15089
|
+
reactIs_development$2.isLazy = isLazy;
|
|
15090
|
+
reactIs_development$2.isMemo = isMemo;
|
|
15091
|
+
reactIs_development$2.isPortal = isPortal;
|
|
15092
|
+
reactIs_development$2.isProfiler = isProfiler;
|
|
15093
|
+
reactIs_development$2.isStrictMode = isStrictMode;
|
|
15094
|
+
reactIs_development$2.isSuspense = isSuspense;
|
|
15095
|
+
reactIs_development$2.isValidElementType = isValidElementType;
|
|
15096
|
+
reactIs_development$2.typeOf = typeOf;
|
|
14968
15097
|
})();
|
|
14969
15098
|
}
|
|
14970
|
-
return reactIs_development;
|
|
14971
|
-
}
|
|
14972
|
-
|
|
14973
|
-
|
|
14974
|
-
|
|
14975
|
-
|
|
15099
|
+
return reactIs_development$2;
|
|
15100
|
+
}
|
|
15101
|
+
var hasRequiredReactIs;
|
|
15102
|
+
function requireReactIs() {
|
|
15103
|
+
if (hasRequiredReactIs) return reactIs$3.exports;
|
|
15104
|
+
hasRequiredReactIs = 1;
|
|
15105
|
+
if (process.env.NODE_ENV === "production") {
|
|
15106
|
+
reactIs$3.exports = requireReactIs_production_min$2();
|
|
15107
|
+
} else {
|
|
15108
|
+
reactIs$3.exports = requireReactIs_development$2();
|
|
15109
|
+
}
|
|
15110
|
+
return reactIs$3.exports;
|
|
14976
15111
|
}
|
|
14977
|
-
var reactIsExports = reactIs$1.exports;
|
|
14978
15112
|
/*
|
|
14979
15113
|
object-assign
|
|
14980
15114
|
(c) Sindre Sorhus
|
|
@@ -15135,7 +15269,7 @@ var hasRequiredFactoryWithTypeCheckers;
|
|
|
15135
15269
|
function requireFactoryWithTypeCheckers() {
|
|
15136
15270
|
if (hasRequiredFactoryWithTypeCheckers) return factoryWithTypeCheckers;
|
|
15137
15271
|
hasRequiredFactoryWithTypeCheckers = 1;
|
|
15138
|
-
var ReactIs =
|
|
15272
|
+
var ReactIs = requireReactIs();
|
|
15139
15273
|
var assign2 = requireObjectAssign();
|
|
15140
15274
|
var ReactPropTypesSecret = requireReactPropTypesSecret();
|
|
15141
15275
|
var has2 = requireHas();
|
|
@@ -15628,7 +15762,7 @@ function requireFactoryWithThrowingShims() {
|
|
|
15628
15762
|
return factoryWithThrowingShims;
|
|
15629
15763
|
}
|
|
15630
15764
|
if (process.env.NODE_ENV !== "production") {
|
|
15631
|
-
var ReactIs =
|
|
15765
|
+
var ReactIs = requireReactIs();
|
|
15632
15766
|
var throwOnDirectAccess = true;
|
|
15633
15767
|
propTypes.exports = requireFactoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
|
15634
15768
|
} else {
|
|
@@ -15723,6 +15857,329 @@ function formatMuiErrorMessage(code) {
|
|
|
15723
15857
|
}
|
|
15724
15858
|
return "Minified Material-UI error #" + code + "; visit " + url + " for the full message.";
|
|
15725
15859
|
}
|
|
15860
|
+
var reactIs$2 = { exports: {} };
|
|
15861
|
+
var reactIs_production_min$1 = {};
|
|
15862
|
+
/** @license React v17.0.2
|
|
15863
|
+
* react-is.production.min.js
|
|
15864
|
+
*
|
|
15865
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
15866
|
+
*
|
|
15867
|
+
* This source code is licensed under the MIT license found in the
|
|
15868
|
+
* LICENSE file in the root directory of this source tree.
|
|
15869
|
+
*/
|
|
15870
|
+
var hasRequiredReactIs_production_min$1;
|
|
15871
|
+
function requireReactIs_production_min$1() {
|
|
15872
|
+
if (hasRequiredReactIs_production_min$1) return reactIs_production_min$1;
|
|
15873
|
+
hasRequiredReactIs_production_min$1 = 1;
|
|
15874
|
+
var b2 = 60103, c2 = 60106, d3 = 60107, e2 = 60108, f = 60114, g = 60109, h3 = 60110, k2 = 60112, l = 60113, m3 = 60120, n = 60115, p = 60116, q2 = 60121, r2 = 60122, u2 = 60117, v = 60129, w2 = 60131;
|
|
15875
|
+
if ("function" === typeof Symbol && Symbol.for) {
|
|
15876
|
+
var x2 = Symbol.for;
|
|
15877
|
+
b2 = x2("react.element");
|
|
15878
|
+
c2 = x2("react.portal");
|
|
15879
|
+
d3 = x2("react.fragment");
|
|
15880
|
+
e2 = x2("react.strict_mode");
|
|
15881
|
+
f = x2("react.profiler");
|
|
15882
|
+
g = x2("react.provider");
|
|
15883
|
+
h3 = x2("react.context");
|
|
15884
|
+
k2 = x2("react.forward_ref");
|
|
15885
|
+
l = x2("react.suspense");
|
|
15886
|
+
m3 = x2("react.suspense_list");
|
|
15887
|
+
n = x2("react.memo");
|
|
15888
|
+
p = x2("react.lazy");
|
|
15889
|
+
q2 = x2("react.block");
|
|
15890
|
+
r2 = x2("react.server.block");
|
|
15891
|
+
u2 = x2("react.fundamental");
|
|
15892
|
+
v = x2("react.debug_trace_mode");
|
|
15893
|
+
w2 = x2("react.legacy_hidden");
|
|
15894
|
+
}
|
|
15895
|
+
function y3(a3) {
|
|
15896
|
+
if ("object" === typeof a3 && null !== a3) {
|
|
15897
|
+
var t2 = a3.$$typeof;
|
|
15898
|
+
switch (t2) {
|
|
15899
|
+
case b2:
|
|
15900
|
+
switch (a3 = a3.type, a3) {
|
|
15901
|
+
case d3:
|
|
15902
|
+
case f:
|
|
15903
|
+
case e2:
|
|
15904
|
+
case l:
|
|
15905
|
+
case m3:
|
|
15906
|
+
return a3;
|
|
15907
|
+
default:
|
|
15908
|
+
switch (a3 = a3 && a3.$$typeof, a3) {
|
|
15909
|
+
case h3:
|
|
15910
|
+
case k2:
|
|
15911
|
+
case p:
|
|
15912
|
+
case n:
|
|
15913
|
+
case g:
|
|
15914
|
+
return a3;
|
|
15915
|
+
default:
|
|
15916
|
+
return t2;
|
|
15917
|
+
}
|
|
15918
|
+
}
|
|
15919
|
+
case c2:
|
|
15920
|
+
return t2;
|
|
15921
|
+
}
|
|
15922
|
+
}
|
|
15923
|
+
}
|
|
15924
|
+
var z2 = g, A = b2, B2 = k2, C = d3, D2 = p, E2 = n, F = c2, G2 = f, H3 = e2, I2 = l;
|
|
15925
|
+
reactIs_production_min$1.ContextConsumer = h3;
|
|
15926
|
+
reactIs_production_min$1.ContextProvider = z2;
|
|
15927
|
+
reactIs_production_min$1.Element = A;
|
|
15928
|
+
reactIs_production_min$1.ForwardRef = B2;
|
|
15929
|
+
reactIs_production_min$1.Fragment = C;
|
|
15930
|
+
reactIs_production_min$1.Lazy = D2;
|
|
15931
|
+
reactIs_production_min$1.Memo = E2;
|
|
15932
|
+
reactIs_production_min$1.Portal = F;
|
|
15933
|
+
reactIs_production_min$1.Profiler = G2;
|
|
15934
|
+
reactIs_production_min$1.StrictMode = H3;
|
|
15935
|
+
reactIs_production_min$1.Suspense = I2;
|
|
15936
|
+
reactIs_production_min$1.isAsyncMode = function() {
|
|
15937
|
+
return false;
|
|
15938
|
+
};
|
|
15939
|
+
reactIs_production_min$1.isConcurrentMode = function() {
|
|
15940
|
+
return false;
|
|
15941
|
+
};
|
|
15942
|
+
reactIs_production_min$1.isContextConsumer = function(a3) {
|
|
15943
|
+
return y3(a3) === h3;
|
|
15944
|
+
};
|
|
15945
|
+
reactIs_production_min$1.isContextProvider = function(a3) {
|
|
15946
|
+
return y3(a3) === g;
|
|
15947
|
+
};
|
|
15948
|
+
reactIs_production_min$1.isElement = function(a3) {
|
|
15949
|
+
return "object" === typeof a3 && null !== a3 && a3.$$typeof === b2;
|
|
15950
|
+
};
|
|
15951
|
+
reactIs_production_min$1.isForwardRef = function(a3) {
|
|
15952
|
+
return y3(a3) === k2;
|
|
15953
|
+
};
|
|
15954
|
+
reactIs_production_min$1.isFragment = function(a3) {
|
|
15955
|
+
return y3(a3) === d3;
|
|
15956
|
+
};
|
|
15957
|
+
reactIs_production_min$1.isLazy = function(a3) {
|
|
15958
|
+
return y3(a3) === p;
|
|
15959
|
+
};
|
|
15960
|
+
reactIs_production_min$1.isMemo = function(a3) {
|
|
15961
|
+
return y3(a3) === n;
|
|
15962
|
+
};
|
|
15963
|
+
reactIs_production_min$1.isPortal = function(a3) {
|
|
15964
|
+
return y3(a3) === c2;
|
|
15965
|
+
};
|
|
15966
|
+
reactIs_production_min$1.isProfiler = function(a3) {
|
|
15967
|
+
return y3(a3) === f;
|
|
15968
|
+
};
|
|
15969
|
+
reactIs_production_min$1.isStrictMode = function(a3) {
|
|
15970
|
+
return y3(a3) === e2;
|
|
15971
|
+
};
|
|
15972
|
+
reactIs_production_min$1.isSuspense = function(a3) {
|
|
15973
|
+
return y3(a3) === l;
|
|
15974
|
+
};
|
|
15975
|
+
reactIs_production_min$1.isValidElementType = function(a3) {
|
|
15976
|
+
return "string" === typeof a3 || "function" === typeof a3 || a3 === d3 || a3 === f || a3 === v || a3 === e2 || a3 === l || a3 === m3 || a3 === w2 || "object" === typeof a3 && null !== a3 && (a3.$$typeof === p || a3.$$typeof === n || a3.$$typeof === g || a3.$$typeof === h3 || a3.$$typeof === k2 || a3.$$typeof === u2 || a3.$$typeof === q2 || a3[0] === r2) ? true : false;
|
|
15977
|
+
};
|
|
15978
|
+
reactIs_production_min$1.typeOf = y3;
|
|
15979
|
+
return reactIs_production_min$1;
|
|
15980
|
+
}
|
|
15981
|
+
var reactIs_development$1 = {};
|
|
15982
|
+
var hasRequiredReactIs_development$1;
|
|
15983
|
+
function requireReactIs_development$1() {
|
|
15984
|
+
if (hasRequiredReactIs_development$1) return reactIs_development$1;
|
|
15985
|
+
hasRequiredReactIs_development$1 = 1;
|
|
15986
|
+
/** @license React v17.0.2
|
|
15987
|
+
* react-is.development.js
|
|
15988
|
+
*
|
|
15989
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
15990
|
+
*
|
|
15991
|
+
* This source code is licensed under the MIT license found in the
|
|
15992
|
+
* LICENSE file in the root directory of this source tree.
|
|
15993
|
+
*/
|
|
15994
|
+
if (process.env.NODE_ENV !== "production") {
|
|
15995
|
+
(function() {
|
|
15996
|
+
var REACT_ELEMENT_TYPE = 60103;
|
|
15997
|
+
var REACT_PORTAL_TYPE = 60106;
|
|
15998
|
+
var REACT_FRAGMENT_TYPE = 60107;
|
|
15999
|
+
var REACT_STRICT_MODE_TYPE = 60108;
|
|
16000
|
+
var REACT_PROFILER_TYPE = 60114;
|
|
16001
|
+
var REACT_PROVIDER_TYPE = 60109;
|
|
16002
|
+
var REACT_CONTEXT_TYPE = 60110;
|
|
16003
|
+
var REACT_FORWARD_REF_TYPE = 60112;
|
|
16004
|
+
var REACT_SUSPENSE_TYPE = 60113;
|
|
16005
|
+
var REACT_SUSPENSE_LIST_TYPE = 60120;
|
|
16006
|
+
var REACT_MEMO_TYPE = 60115;
|
|
16007
|
+
var REACT_LAZY_TYPE = 60116;
|
|
16008
|
+
var REACT_BLOCK_TYPE = 60121;
|
|
16009
|
+
var REACT_SERVER_BLOCK_TYPE = 60122;
|
|
16010
|
+
var REACT_FUNDAMENTAL_TYPE = 60117;
|
|
16011
|
+
var REACT_DEBUG_TRACING_MODE_TYPE = 60129;
|
|
16012
|
+
var REACT_LEGACY_HIDDEN_TYPE = 60131;
|
|
16013
|
+
if (typeof Symbol === "function" && Symbol.for) {
|
|
16014
|
+
var symbolFor = Symbol.for;
|
|
16015
|
+
REACT_ELEMENT_TYPE = symbolFor("react.element");
|
|
16016
|
+
REACT_PORTAL_TYPE = symbolFor("react.portal");
|
|
16017
|
+
REACT_FRAGMENT_TYPE = symbolFor("react.fragment");
|
|
16018
|
+
REACT_STRICT_MODE_TYPE = symbolFor("react.strict_mode");
|
|
16019
|
+
REACT_PROFILER_TYPE = symbolFor("react.profiler");
|
|
16020
|
+
REACT_PROVIDER_TYPE = symbolFor("react.provider");
|
|
16021
|
+
REACT_CONTEXT_TYPE = symbolFor("react.context");
|
|
16022
|
+
REACT_FORWARD_REF_TYPE = symbolFor("react.forward_ref");
|
|
16023
|
+
REACT_SUSPENSE_TYPE = symbolFor("react.suspense");
|
|
16024
|
+
REACT_SUSPENSE_LIST_TYPE = symbolFor("react.suspense_list");
|
|
16025
|
+
REACT_MEMO_TYPE = symbolFor("react.memo");
|
|
16026
|
+
REACT_LAZY_TYPE = symbolFor("react.lazy");
|
|
16027
|
+
REACT_BLOCK_TYPE = symbolFor("react.block");
|
|
16028
|
+
REACT_SERVER_BLOCK_TYPE = symbolFor("react.server.block");
|
|
16029
|
+
REACT_FUNDAMENTAL_TYPE = symbolFor("react.fundamental");
|
|
16030
|
+
symbolFor("react.scope");
|
|
16031
|
+
symbolFor("react.opaque.id");
|
|
16032
|
+
REACT_DEBUG_TRACING_MODE_TYPE = symbolFor("react.debug_trace_mode");
|
|
16033
|
+
symbolFor("react.offscreen");
|
|
16034
|
+
REACT_LEGACY_HIDDEN_TYPE = symbolFor("react.legacy_hidden");
|
|
16035
|
+
}
|
|
16036
|
+
var enableScopeAPI = false;
|
|
16037
|
+
function isValidElementType(type2) {
|
|
16038
|
+
if (typeof type2 === "string" || typeof type2 === "function") {
|
|
16039
|
+
return true;
|
|
16040
|
+
}
|
|
16041
|
+
if (type2 === REACT_FRAGMENT_TYPE || type2 === REACT_PROFILER_TYPE || type2 === REACT_DEBUG_TRACING_MODE_TYPE || type2 === REACT_STRICT_MODE_TYPE || type2 === REACT_SUSPENSE_TYPE || type2 === REACT_SUSPENSE_LIST_TYPE || type2 === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI) {
|
|
16042
|
+
return true;
|
|
16043
|
+
}
|
|
16044
|
+
if (typeof type2 === "object" && type2 !== null) {
|
|
16045
|
+
if (type2.$$typeof === REACT_LAZY_TYPE || type2.$$typeof === REACT_MEMO_TYPE || type2.$$typeof === REACT_PROVIDER_TYPE || type2.$$typeof === REACT_CONTEXT_TYPE || type2.$$typeof === REACT_FORWARD_REF_TYPE || type2.$$typeof === REACT_FUNDAMENTAL_TYPE || type2.$$typeof === REACT_BLOCK_TYPE || type2[0] === REACT_SERVER_BLOCK_TYPE) {
|
|
16046
|
+
return true;
|
|
16047
|
+
}
|
|
16048
|
+
}
|
|
16049
|
+
return false;
|
|
16050
|
+
}
|
|
16051
|
+
function typeOf(object2) {
|
|
16052
|
+
if (typeof object2 === "object" && object2 !== null) {
|
|
16053
|
+
var $$typeof = object2.$$typeof;
|
|
16054
|
+
switch ($$typeof) {
|
|
16055
|
+
case REACT_ELEMENT_TYPE:
|
|
16056
|
+
var type2 = object2.type;
|
|
16057
|
+
switch (type2) {
|
|
16058
|
+
case REACT_FRAGMENT_TYPE:
|
|
16059
|
+
case REACT_PROFILER_TYPE:
|
|
16060
|
+
case REACT_STRICT_MODE_TYPE:
|
|
16061
|
+
case REACT_SUSPENSE_TYPE:
|
|
16062
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
16063
|
+
return type2;
|
|
16064
|
+
default:
|
|
16065
|
+
var $$typeofType = type2 && type2.$$typeof;
|
|
16066
|
+
switch ($$typeofType) {
|
|
16067
|
+
case REACT_CONTEXT_TYPE:
|
|
16068
|
+
case REACT_FORWARD_REF_TYPE:
|
|
16069
|
+
case REACT_LAZY_TYPE:
|
|
16070
|
+
case REACT_MEMO_TYPE:
|
|
16071
|
+
case REACT_PROVIDER_TYPE:
|
|
16072
|
+
return $$typeofType;
|
|
16073
|
+
default:
|
|
16074
|
+
return $$typeof;
|
|
16075
|
+
}
|
|
16076
|
+
}
|
|
16077
|
+
case REACT_PORTAL_TYPE:
|
|
16078
|
+
return $$typeof;
|
|
16079
|
+
}
|
|
16080
|
+
}
|
|
16081
|
+
return void 0;
|
|
16082
|
+
}
|
|
16083
|
+
var ContextConsumer = REACT_CONTEXT_TYPE;
|
|
16084
|
+
var ContextProvider = REACT_PROVIDER_TYPE;
|
|
16085
|
+
var Element = REACT_ELEMENT_TYPE;
|
|
16086
|
+
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
|
16087
|
+
var Fragment2 = REACT_FRAGMENT_TYPE;
|
|
16088
|
+
var Lazy2 = REACT_LAZY_TYPE;
|
|
16089
|
+
var Memo = REACT_MEMO_TYPE;
|
|
16090
|
+
var Portal3 = REACT_PORTAL_TYPE;
|
|
16091
|
+
var Profiler = REACT_PROFILER_TYPE;
|
|
16092
|
+
var StrictMode = REACT_STRICT_MODE_TYPE;
|
|
16093
|
+
var Suspense = REACT_SUSPENSE_TYPE;
|
|
16094
|
+
var hasWarnedAboutDeprecatedIsAsyncMode = false;
|
|
16095
|
+
var hasWarnedAboutDeprecatedIsConcurrentMode = false;
|
|
16096
|
+
function isAsyncMode(object2) {
|
|
16097
|
+
{
|
|
16098
|
+
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
|
16099
|
+
hasWarnedAboutDeprecatedIsAsyncMode = true;
|
|
16100
|
+
console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.");
|
|
16101
|
+
}
|
|
16102
|
+
}
|
|
16103
|
+
return false;
|
|
16104
|
+
}
|
|
16105
|
+
function isConcurrentMode(object2) {
|
|
16106
|
+
{
|
|
16107
|
+
if (!hasWarnedAboutDeprecatedIsConcurrentMode) {
|
|
16108
|
+
hasWarnedAboutDeprecatedIsConcurrentMode = true;
|
|
16109
|
+
console["warn"]("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.");
|
|
16110
|
+
}
|
|
16111
|
+
}
|
|
16112
|
+
return false;
|
|
16113
|
+
}
|
|
16114
|
+
function isContextConsumer(object2) {
|
|
16115
|
+
return typeOf(object2) === REACT_CONTEXT_TYPE;
|
|
16116
|
+
}
|
|
16117
|
+
function isContextProvider(object2) {
|
|
16118
|
+
return typeOf(object2) === REACT_PROVIDER_TYPE;
|
|
16119
|
+
}
|
|
16120
|
+
function isElement2(object2) {
|
|
16121
|
+
return typeof object2 === "object" && object2 !== null && object2.$$typeof === REACT_ELEMENT_TYPE;
|
|
16122
|
+
}
|
|
16123
|
+
function isForwardRef(object2) {
|
|
16124
|
+
return typeOf(object2) === REACT_FORWARD_REF_TYPE;
|
|
16125
|
+
}
|
|
16126
|
+
function isFragment(object2) {
|
|
16127
|
+
return typeOf(object2) === REACT_FRAGMENT_TYPE;
|
|
16128
|
+
}
|
|
16129
|
+
function isLazy(object2) {
|
|
16130
|
+
return typeOf(object2) === REACT_LAZY_TYPE;
|
|
16131
|
+
}
|
|
16132
|
+
function isMemo(object2) {
|
|
16133
|
+
return typeOf(object2) === REACT_MEMO_TYPE;
|
|
16134
|
+
}
|
|
16135
|
+
function isPortal(object2) {
|
|
16136
|
+
return typeOf(object2) === REACT_PORTAL_TYPE;
|
|
16137
|
+
}
|
|
16138
|
+
function isProfiler(object2) {
|
|
16139
|
+
return typeOf(object2) === REACT_PROFILER_TYPE;
|
|
16140
|
+
}
|
|
16141
|
+
function isStrictMode(object2) {
|
|
16142
|
+
return typeOf(object2) === REACT_STRICT_MODE_TYPE;
|
|
16143
|
+
}
|
|
16144
|
+
function isSuspense(object2) {
|
|
16145
|
+
return typeOf(object2) === REACT_SUSPENSE_TYPE;
|
|
16146
|
+
}
|
|
16147
|
+
reactIs_development$1.ContextConsumer = ContextConsumer;
|
|
16148
|
+
reactIs_development$1.ContextProvider = ContextProvider;
|
|
16149
|
+
reactIs_development$1.Element = Element;
|
|
16150
|
+
reactIs_development$1.ForwardRef = ForwardRef;
|
|
16151
|
+
reactIs_development$1.Fragment = Fragment2;
|
|
16152
|
+
reactIs_development$1.Lazy = Lazy2;
|
|
16153
|
+
reactIs_development$1.Memo = Memo;
|
|
16154
|
+
reactIs_development$1.Portal = Portal3;
|
|
16155
|
+
reactIs_development$1.Profiler = Profiler;
|
|
16156
|
+
reactIs_development$1.StrictMode = StrictMode;
|
|
16157
|
+
reactIs_development$1.Suspense = Suspense;
|
|
16158
|
+
reactIs_development$1.isAsyncMode = isAsyncMode;
|
|
16159
|
+
reactIs_development$1.isConcurrentMode = isConcurrentMode;
|
|
16160
|
+
reactIs_development$1.isContextConsumer = isContextConsumer;
|
|
16161
|
+
reactIs_development$1.isContextProvider = isContextProvider;
|
|
16162
|
+
reactIs_development$1.isElement = isElement2;
|
|
16163
|
+
reactIs_development$1.isForwardRef = isForwardRef;
|
|
16164
|
+
reactIs_development$1.isFragment = isFragment;
|
|
16165
|
+
reactIs_development$1.isLazy = isLazy;
|
|
16166
|
+
reactIs_development$1.isMemo = isMemo;
|
|
16167
|
+
reactIs_development$1.isPortal = isPortal;
|
|
16168
|
+
reactIs_development$1.isProfiler = isProfiler;
|
|
16169
|
+
reactIs_development$1.isStrictMode = isStrictMode;
|
|
16170
|
+
reactIs_development$1.isSuspense = isSuspense;
|
|
16171
|
+
reactIs_development$1.isValidElementType = isValidElementType;
|
|
16172
|
+
reactIs_development$1.typeOf = typeOf;
|
|
16173
|
+
})();
|
|
16174
|
+
}
|
|
16175
|
+
return reactIs_development$1;
|
|
16176
|
+
}
|
|
16177
|
+
if (process.env.NODE_ENV === "production") {
|
|
16178
|
+
reactIs$2.exports = requireReactIs_production_min$1();
|
|
16179
|
+
} else {
|
|
16180
|
+
reactIs$2.exports = requireReactIs_development$1();
|
|
16181
|
+
}
|
|
16182
|
+
var reactIsExports$1 = reactIs$2.exports;
|
|
15726
16183
|
var fnNameMatchRegex = /^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/;
|
|
15727
16184
|
function getFunctionName(fn) {
|
|
15728
16185
|
var match2 = "".concat(fn).match(fnNameMatchRegex);
|
|
@@ -15749,9 +16206,9 @@ function getDisplayName(Component) {
|
|
|
15749
16206
|
}
|
|
15750
16207
|
if (_typeof$1(Component) === "object") {
|
|
15751
16208
|
switch (Component.$$typeof) {
|
|
15752
|
-
case reactIsExports.ForwardRef:
|
|
16209
|
+
case reactIsExports$1.ForwardRef:
|
|
15753
16210
|
return getWrappedName(Component, Component.render, "ForwardRef");
|
|
15754
|
-
case reactIsExports.Memo:
|
|
16211
|
+
case reactIsExports$1.Memo:
|
|
15755
16212
|
return getWrappedName(Component, Component.type, "memo");
|
|
15756
16213
|
default:
|
|
15757
16214
|
return void 0;
|
|
@@ -19217,6 +19674,278 @@ function makeStyles(stylesOrCreator) {
|
|
|
19217
19674
|
};
|
|
19218
19675
|
return useStyles;
|
|
19219
19676
|
}
|
|
19677
|
+
var reactIs$1 = { exports: {} };
|
|
19678
|
+
var reactIs_production_min = {};
|
|
19679
|
+
/** @license React v16.13.1
|
|
19680
|
+
* react-is.production.min.js
|
|
19681
|
+
*
|
|
19682
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
19683
|
+
*
|
|
19684
|
+
* This source code is licensed under the MIT license found in the
|
|
19685
|
+
* LICENSE file in the root directory of this source tree.
|
|
19686
|
+
*/
|
|
19687
|
+
var hasRequiredReactIs_production_min;
|
|
19688
|
+
function requireReactIs_production_min() {
|
|
19689
|
+
if (hasRequiredReactIs_production_min) return reactIs_production_min;
|
|
19690
|
+
hasRequiredReactIs_production_min = 1;
|
|
19691
|
+
var b2 = "function" === typeof Symbol && Symbol.for, c2 = b2 ? Symbol.for("react.element") : 60103, d3 = b2 ? Symbol.for("react.portal") : 60106, e2 = b2 ? Symbol.for("react.fragment") : 60107, f = b2 ? Symbol.for("react.strict_mode") : 60108, g = b2 ? Symbol.for("react.profiler") : 60114, h3 = b2 ? Symbol.for("react.provider") : 60109, k2 = b2 ? Symbol.for("react.context") : 60110, l = b2 ? Symbol.for("react.async_mode") : 60111, m3 = b2 ? Symbol.for("react.concurrent_mode") : 60111, n = b2 ? Symbol.for("react.forward_ref") : 60112, p = b2 ? Symbol.for("react.suspense") : 60113, q2 = b2 ? Symbol.for("react.suspense_list") : 60120, r2 = b2 ? Symbol.for("react.memo") : 60115, t2 = b2 ? Symbol.for("react.lazy") : 60116, v = b2 ? Symbol.for("react.block") : 60121, w2 = b2 ? Symbol.for("react.fundamental") : 60117, x2 = b2 ? Symbol.for("react.responder") : 60118, y3 = b2 ? Symbol.for("react.scope") : 60119;
|
|
19692
|
+
function z2(a3) {
|
|
19693
|
+
if ("object" === typeof a3 && null !== a3) {
|
|
19694
|
+
var u2 = a3.$$typeof;
|
|
19695
|
+
switch (u2) {
|
|
19696
|
+
case c2:
|
|
19697
|
+
switch (a3 = a3.type, a3) {
|
|
19698
|
+
case l:
|
|
19699
|
+
case m3:
|
|
19700
|
+
case e2:
|
|
19701
|
+
case g:
|
|
19702
|
+
case f:
|
|
19703
|
+
case p:
|
|
19704
|
+
return a3;
|
|
19705
|
+
default:
|
|
19706
|
+
switch (a3 = a3 && a3.$$typeof, a3) {
|
|
19707
|
+
case k2:
|
|
19708
|
+
case n:
|
|
19709
|
+
case t2:
|
|
19710
|
+
case r2:
|
|
19711
|
+
case h3:
|
|
19712
|
+
return a3;
|
|
19713
|
+
default:
|
|
19714
|
+
return u2;
|
|
19715
|
+
}
|
|
19716
|
+
}
|
|
19717
|
+
case d3:
|
|
19718
|
+
return u2;
|
|
19719
|
+
}
|
|
19720
|
+
}
|
|
19721
|
+
}
|
|
19722
|
+
function A(a3) {
|
|
19723
|
+
return z2(a3) === m3;
|
|
19724
|
+
}
|
|
19725
|
+
reactIs_production_min.AsyncMode = l;
|
|
19726
|
+
reactIs_production_min.ConcurrentMode = m3;
|
|
19727
|
+
reactIs_production_min.ContextConsumer = k2;
|
|
19728
|
+
reactIs_production_min.ContextProvider = h3;
|
|
19729
|
+
reactIs_production_min.Element = c2;
|
|
19730
|
+
reactIs_production_min.ForwardRef = n;
|
|
19731
|
+
reactIs_production_min.Fragment = e2;
|
|
19732
|
+
reactIs_production_min.Lazy = t2;
|
|
19733
|
+
reactIs_production_min.Memo = r2;
|
|
19734
|
+
reactIs_production_min.Portal = d3;
|
|
19735
|
+
reactIs_production_min.Profiler = g;
|
|
19736
|
+
reactIs_production_min.StrictMode = f;
|
|
19737
|
+
reactIs_production_min.Suspense = p;
|
|
19738
|
+
reactIs_production_min.isAsyncMode = function(a3) {
|
|
19739
|
+
return A(a3) || z2(a3) === l;
|
|
19740
|
+
};
|
|
19741
|
+
reactIs_production_min.isConcurrentMode = A;
|
|
19742
|
+
reactIs_production_min.isContextConsumer = function(a3) {
|
|
19743
|
+
return z2(a3) === k2;
|
|
19744
|
+
};
|
|
19745
|
+
reactIs_production_min.isContextProvider = function(a3) {
|
|
19746
|
+
return z2(a3) === h3;
|
|
19747
|
+
};
|
|
19748
|
+
reactIs_production_min.isElement = function(a3) {
|
|
19749
|
+
return "object" === typeof a3 && null !== a3 && a3.$$typeof === c2;
|
|
19750
|
+
};
|
|
19751
|
+
reactIs_production_min.isForwardRef = function(a3) {
|
|
19752
|
+
return z2(a3) === n;
|
|
19753
|
+
};
|
|
19754
|
+
reactIs_production_min.isFragment = function(a3) {
|
|
19755
|
+
return z2(a3) === e2;
|
|
19756
|
+
};
|
|
19757
|
+
reactIs_production_min.isLazy = function(a3) {
|
|
19758
|
+
return z2(a3) === t2;
|
|
19759
|
+
};
|
|
19760
|
+
reactIs_production_min.isMemo = function(a3) {
|
|
19761
|
+
return z2(a3) === r2;
|
|
19762
|
+
};
|
|
19763
|
+
reactIs_production_min.isPortal = function(a3) {
|
|
19764
|
+
return z2(a3) === d3;
|
|
19765
|
+
};
|
|
19766
|
+
reactIs_production_min.isProfiler = function(a3) {
|
|
19767
|
+
return z2(a3) === g;
|
|
19768
|
+
};
|
|
19769
|
+
reactIs_production_min.isStrictMode = function(a3) {
|
|
19770
|
+
return z2(a3) === f;
|
|
19771
|
+
};
|
|
19772
|
+
reactIs_production_min.isSuspense = function(a3) {
|
|
19773
|
+
return z2(a3) === p;
|
|
19774
|
+
};
|
|
19775
|
+
reactIs_production_min.isValidElementType = function(a3) {
|
|
19776
|
+
return "string" === typeof a3 || "function" === typeof a3 || a3 === e2 || a3 === m3 || a3 === g || a3 === f || a3 === p || a3 === q2 || "object" === typeof a3 && null !== a3 && (a3.$$typeof === t2 || a3.$$typeof === r2 || a3.$$typeof === h3 || a3.$$typeof === k2 || a3.$$typeof === n || a3.$$typeof === w2 || a3.$$typeof === x2 || a3.$$typeof === y3 || a3.$$typeof === v);
|
|
19777
|
+
};
|
|
19778
|
+
reactIs_production_min.typeOf = z2;
|
|
19779
|
+
return reactIs_production_min;
|
|
19780
|
+
}
|
|
19781
|
+
var reactIs_development = {};
|
|
19782
|
+
var hasRequiredReactIs_development;
|
|
19783
|
+
function requireReactIs_development() {
|
|
19784
|
+
if (hasRequiredReactIs_development) return reactIs_development;
|
|
19785
|
+
hasRequiredReactIs_development = 1;
|
|
19786
|
+
/** @license React v16.13.1
|
|
19787
|
+
* react-is.development.js
|
|
19788
|
+
*
|
|
19789
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
19790
|
+
*
|
|
19791
|
+
* This source code is licensed under the MIT license found in the
|
|
19792
|
+
* LICENSE file in the root directory of this source tree.
|
|
19793
|
+
*/
|
|
19794
|
+
if (process.env.NODE_ENV !== "production") {
|
|
19795
|
+
(function() {
|
|
19796
|
+
var hasSymbol2 = typeof Symbol === "function" && Symbol.for;
|
|
19797
|
+
var REACT_ELEMENT_TYPE = hasSymbol2 ? Symbol.for("react.element") : 60103;
|
|
19798
|
+
var REACT_PORTAL_TYPE = hasSymbol2 ? Symbol.for("react.portal") : 60106;
|
|
19799
|
+
var REACT_FRAGMENT_TYPE = hasSymbol2 ? Symbol.for("react.fragment") : 60107;
|
|
19800
|
+
var REACT_STRICT_MODE_TYPE = hasSymbol2 ? Symbol.for("react.strict_mode") : 60108;
|
|
19801
|
+
var REACT_PROFILER_TYPE = hasSymbol2 ? Symbol.for("react.profiler") : 60114;
|
|
19802
|
+
var REACT_PROVIDER_TYPE = hasSymbol2 ? Symbol.for("react.provider") : 60109;
|
|
19803
|
+
var REACT_CONTEXT_TYPE = hasSymbol2 ? Symbol.for("react.context") : 60110;
|
|
19804
|
+
var REACT_ASYNC_MODE_TYPE = hasSymbol2 ? Symbol.for("react.async_mode") : 60111;
|
|
19805
|
+
var REACT_CONCURRENT_MODE_TYPE = hasSymbol2 ? Symbol.for("react.concurrent_mode") : 60111;
|
|
19806
|
+
var REACT_FORWARD_REF_TYPE = hasSymbol2 ? Symbol.for("react.forward_ref") : 60112;
|
|
19807
|
+
var REACT_SUSPENSE_TYPE = hasSymbol2 ? Symbol.for("react.suspense") : 60113;
|
|
19808
|
+
var REACT_SUSPENSE_LIST_TYPE = hasSymbol2 ? Symbol.for("react.suspense_list") : 60120;
|
|
19809
|
+
var REACT_MEMO_TYPE = hasSymbol2 ? Symbol.for("react.memo") : 60115;
|
|
19810
|
+
var REACT_LAZY_TYPE = hasSymbol2 ? Symbol.for("react.lazy") : 60116;
|
|
19811
|
+
var REACT_BLOCK_TYPE = hasSymbol2 ? Symbol.for("react.block") : 60121;
|
|
19812
|
+
var REACT_FUNDAMENTAL_TYPE = hasSymbol2 ? Symbol.for("react.fundamental") : 60117;
|
|
19813
|
+
var REACT_RESPONDER_TYPE = hasSymbol2 ? Symbol.for("react.responder") : 60118;
|
|
19814
|
+
var REACT_SCOPE_TYPE = hasSymbol2 ? Symbol.for("react.scope") : 60119;
|
|
19815
|
+
function isValidElementType(type2) {
|
|
19816
|
+
return typeof type2 === "string" || typeof type2 === "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
19817
|
+
type2 === REACT_FRAGMENT_TYPE || type2 === REACT_CONCURRENT_MODE_TYPE || type2 === REACT_PROFILER_TYPE || type2 === REACT_STRICT_MODE_TYPE || type2 === REACT_SUSPENSE_TYPE || type2 === REACT_SUSPENSE_LIST_TYPE || typeof type2 === "object" && type2 !== null && (type2.$$typeof === REACT_LAZY_TYPE || type2.$$typeof === REACT_MEMO_TYPE || type2.$$typeof === REACT_PROVIDER_TYPE || type2.$$typeof === REACT_CONTEXT_TYPE || type2.$$typeof === REACT_FORWARD_REF_TYPE || type2.$$typeof === REACT_FUNDAMENTAL_TYPE || type2.$$typeof === REACT_RESPONDER_TYPE || type2.$$typeof === REACT_SCOPE_TYPE || type2.$$typeof === REACT_BLOCK_TYPE);
|
|
19818
|
+
}
|
|
19819
|
+
function typeOf(object2) {
|
|
19820
|
+
if (typeof object2 === "object" && object2 !== null) {
|
|
19821
|
+
var $$typeof = object2.$$typeof;
|
|
19822
|
+
switch ($$typeof) {
|
|
19823
|
+
case REACT_ELEMENT_TYPE:
|
|
19824
|
+
var type2 = object2.type;
|
|
19825
|
+
switch (type2) {
|
|
19826
|
+
case REACT_ASYNC_MODE_TYPE:
|
|
19827
|
+
case REACT_CONCURRENT_MODE_TYPE:
|
|
19828
|
+
case REACT_FRAGMENT_TYPE:
|
|
19829
|
+
case REACT_PROFILER_TYPE:
|
|
19830
|
+
case REACT_STRICT_MODE_TYPE:
|
|
19831
|
+
case REACT_SUSPENSE_TYPE:
|
|
19832
|
+
return type2;
|
|
19833
|
+
default:
|
|
19834
|
+
var $$typeofType = type2 && type2.$$typeof;
|
|
19835
|
+
switch ($$typeofType) {
|
|
19836
|
+
case REACT_CONTEXT_TYPE:
|
|
19837
|
+
case REACT_FORWARD_REF_TYPE:
|
|
19838
|
+
case REACT_LAZY_TYPE:
|
|
19839
|
+
case REACT_MEMO_TYPE:
|
|
19840
|
+
case REACT_PROVIDER_TYPE:
|
|
19841
|
+
return $$typeofType;
|
|
19842
|
+
default:
|
|
19843
|
+
return $$typeof;
|
|
19844
|
+
}
|
|
19845
|
+
}
|
|
19846
|
+
case REACT_PORTAL_TYPE:
|
|
19847
|
+
return $$typeof;
|
|
19848
|
+
}
|
|
19849
|
+
}
|
|
19850
|
+
return void 0;
|
|
19851
|
+
}
|
|
19852
|
+
var AsyncMode = REACT_ASYNC_MODE_TYPE;
|
|
19853
|
+
var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
|
|
19854
|
+
var ContextConsumer = REACT_CONTEXT_TYPE;
|
|
19855
|
+
var ContextProvider = REACT_PROVIDER_TYPE;
|
|
19856
|
+
var Element = REACT_ELEMENT_TYPE;
|
|
19857
|
+
var ForwardRef = REACT_FORWARD_REF_TYPE;
|
|
19858
|
+
var Fragment2 = REACT_FRAGMENT_TYPE;
|
|
19859
|
+
var Lazy2 = REACT_LAZY_TYPE;
|
|
19860
|
+
var Memo = REACT_MEMO_TYPE;
|
|
19861
|
+
var Portal3 = REACT_PORTAL_TYPE;
|
|
19862
|
+
var Profiler = REACT_PROFILER_TYPE;
|
|
19863
|
+
var StrictMode = REACT_STRICT_MODE_TYPE;
|
|
19864
|
+
var Suspense = REACT_SUSPENSE_TYPE;
|
|
19865
|
+
var hasWarnedAboutDeprecatedIsAsyncMode = false;
|
|
19866
|
+
function isAsyncMode(object2) {
|
|
19867
|
+
{
|
|
19868
|
+
if (!hasWarnedAboutDeprecatedIsAsyncMode) {
|
|
19869
|
+
hasWarnedAboutDeprecatedIsAsyncMode = true;
|
|
19870
|
+
console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
|
|
19871
|
+
}
|
|
19872
|
+
}
|
|
19873
|
+
return isConcurrentMode(object2) || typeOf(object2) === REACT_ASYNC_MODE_TYPE;
|
|
19874
|
+
}
|
|
19875
|
+
function isConcurrentMode(object2) {
|
|
19876
|
+
return typeOf(object2) === REACT_CONCURRENT_MODE_TYPE;
|
|
19877
|
+
}
|
|
19878
|
+
function isContextConsumer(object2) {
|
|
19879
|
+
return typeOf(object2) === REACT_CONTEXT_TYPE;
|
|
19880
|
+
}
|
|
19881
|
+
function isContextProvider(object2) {
|
|
19882
|
+
return typeOf(object2) === REACT_PROVIDER_TYPE;
|
|
19883
|
+
}
|
|
19884
|
+
function isElement2(object2) {
|
|
19885
|
+
return typeof object2 === "object" && object2 !== null && object2.$$typeof === REACT_ELEMENT_TYPE;
|
|
19886
|
+
}
|
|
19887
|
+
function isForwardRef(object2) {
|
|
19888
|
+
return typeOf(object2) === REACT_FORWARD_REF_TYPE;
|
|
19889
|
+
}
|
|
19890
|
+
function isFragment(object2) {
|
|
19891
|
+
return typeOf(object2) === REACT_FRAGMENT_TYPE;
|
|
19892
|
+
}
|
|
19893
|
+
function isLazy(object2) {
|
|
19894
|
+
return typeOf(object2) === REACT_LAZY_TYPE;
|
|
19895
|
+
}
|
|
19896
|
+
function isMemo(object2) {
|
|
19897
|
+
return typeOf(object2) === REACT_MEMO_TYPE;
|
|
19898
|
+
}
|
|
19899
|
+
function isPortal(object2) {
|
|
19900
|
+
return typeOf(object2) === REACT_PORTAL_TYPE;
|
|
19901
|
+
}
|
|
19902
|
+
function isProfiler(object2) {
|
|
19903
|
+
return typeOf(object2) === REACT_PROFILER_TYPE;
|
|
19904
|
+
}
|
|
19905
|
+
function isStrictMode(object2) {
|
|
19906
|
+
return typeOf(object2) === REACT_STRICT_MODE_TYPE;
|
|
19907
|
+
}
|
|
19908
|
+
function isSuspense(object2) {
|
|
19909
|
+
return typeOf(object2) === REACT_SUSPENSE_TYPE;
|
|
19910
|
+
}
|
|
19911
|
+
reactIs_development.AsyncMode = AsyncMode;
|
|
19912
|
+
reactIs_development.ConcurrentMode = ConcurrentMode;
|
|
19913
|
+
reactIs_development.ContextConsumer = ContextConsumer;
|
|
19914
|
+
reactIs_development.ContextProvider = ContextProvider;
|
|
19915
|
+
reactIs_development.Element = Element;
|
|
19916
|
+
reactIs_development.ForwardRef = ForwardRef;
|
|
19917
|
+
reactIs_development.Fragment = Fragment2;
|
|
19918
|
+
reactIs_development.Lazy = Lazy2;
|
|
19919
|
+
reactIs_development.Memo = Memo;
|
|
19920
|
+
reactIs_development.Portal = Portal3;
|
|
19921
|
+
reactIs_development.Profiler = Profiler;
|
|
19922
|
+
reactIs_development.StrictMode = StrictMode;
|
|
19923
|
+
reactIs_development.Suspense = Suspense;
|
|
19924
|
+
reactIs_development.isAsyncMode = isAsyncMode;
|
|
19925
|
+
reactIs_development.isConcurrentMode = isConcurrentMode;
|
|
19926
|
+
reactIs_development.isContextConsumer = isContextConsumer;
|
|
19927
|
+
reactIs_development.isContextProvider = isContextProvider;
|
|
19928
|
+
reactIs_development.isElement = isElement2;
|
|
19929
|
+
reactIs_development.isForwardRef = isForwardRef;
|
|
19930
|
+
reactIs_development.isFragment = isFragment;
|
|
19931
|
+
reactIs_development.isLazy = isLazy;
|
|
19932
|
+
reactIs_development.isMemo = isMemo;
|
|
19933
|
+
reactIs_development.isPortal = isPortal;
|
|
19934
|
+
reactIs_development.isProfiler = isProfiler;
|
|
19935
|
+
reactIs_development.isStrictMode = isStrictMode;
|
|
19936
|
+
reactIs_development.isSuspense = isSuspense;
|
|
19937
|
+
reactIs_development.isValidElementType = isValidElementType;
|
|
19938
|
+
reactIs_development.typeOf = typeOf;
|
|
19939
|
+
})();
|
|
19940
|
+
}
|
|
19941
|
+
return reactIs_development;
|
|
19942
|
+
}
|
|
19943
|
+
if (process.env.NODE_ENV === "production") {
|
|
19944
|
+
reactIs$1.exports = requireReactIs_production_min();
|
|
19945
|
+
} else {
|
|
19946
|
+
reactIs$1.exports = requireReactIs_development();
|
|
19947
|
+
}
|
|
19948
|
+
var reactIsExports = reactIs$1.exports;
|
|
19220
19949
|
var reactIs = reactIsExports;
|
|
19221
19950
|
var REACT_STATICS = {
|
|
19222
19951
|
childContextTypes: true,
|
|
@@ -25648,9 +26377,11 @@ const StyledInput = styled(Input)`
|
|
|
25648
26377
|
`;
|
|
25649
26378
|
function Success() {
|
|
25650
26379
|
const { actions } = useQualification();
|
|
26380
|
+
const router = useRouter();
|
|
25651
26381
|
const { t: t2 } = useTranslation("qualification");
|
|
25652
26382
|
const handleClose = () => {
|
|
25653
26383
|
actions.initialize();
|
|
26384
|
+
router.push("/en/catering-london");
|
|
25654
26385
|
};
|
|
25655
26386
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
25656
26387
|
/* @__PURE__ */ jsx(Box, { display: "flex", justifyContent: "end", children: /* @__PURE__ */ jsx(Box, { px: 2, children: /* @__PURE__ */ jsx(IconButton$2, { onClick: handleClose, "aria-label": "back", component: "span", children: /* @__PURE__ */ jsx(CloseIcon$1, {}) }) }) }),
|
|
@@ -25797,7 +26528,6 @@ function useFunnelCheckout() {
|
|
|
25797
26528
|
function useQfLeadCreator() {
|
|
25798
26529
|
const client = useClient();
|
|
25799
26530
|
const createQfLead = async (variables) => {
|
|
25800
|
-
var _a2;
|
|
25801
26531
|
try {
|
|
25802
26532
|
const {
|
|
25803
26533
|
company,
|
|
@@ -25820,53 +26550,47 @@ function useQfLeadCreator() {
|
|
|
25820
26550
|
number_of_vegans,
|
|
25821
26551
|
number_of_vegetarians,
|
|
25822
26552
|
price_per_person,
|
|
25823
|
-
min_order_number,
|
|
25824
|
-
team_size,
|
|
25825
26553
|
service_type,
|
|
26554
|
+
team_size,
|
|
25826
26555
|
delivery_frequency,
|
|
25827
|
-
budget_range
|
|
25828
|
-
city
|
|
26556
|
+
budget_range
|
|
25829
26557
|
} = variables;
|
|
25830
|
-
const
|
|
25831
|
-
const
|
|
25832
|
-
|
|
25833
|
-
|
|
25834
|
-
|
|
25835
|
-
|
|
25836
|
-
|
|
25837
|
-
|
|
25838
|
-
|
|
25839
|
-
|
|
25840
|
-
|
|
25841
|
-
|
|
25842
|
-
|
|
25843
|
-
|
|
25844
|
-
|
|
25845
|
-
|
|
25846
|
-
|
|
25847
|
-
|
|
25848
|
-
|
|
25849
|
-
|
|
25850
|
-
|
|
25851
|
-
|
|
25852
|
-
|
|
25853
|
-
|
|
25854
|
-
|
|
25855
|
-
|
|
25856
|
-
|
|
25857
|
-
|
|
25858
|
-
|
|
25859
|
-
|
|
25860
|
-
const result = await createQfLeadMutation(payload, { client });
|
|
25861
|
-
const response = (_a2 = result == null ? void 0 : result.data) == null ? void 0 : _a2.createQfLead;
|
|
25862
|
-
return response || { success: false };
|
|
26558
|
+
const numberOfPeople = number_of_vegans + number_of_vegetarians + number_of_carnivore;
|
|
26559
|
+
const {
|
|
26560
|
+
data: { createQfLead: response }
|
|
26561
|
+
} = await createQfLeadMutation(
|
|
26562
|
+
{
|
|
26563
|
+
email,
|
|
26564
|
+
firstName: first_name,
|
|
26565
|
+
lastName: last_name,
|
|
26566
|
+
phone,
|
|
26567
|
+
company,
|
|
26568
|
+
comment,
|
|
26569
|
+
address: `${deliveryAddressStreet} ${deliveryAddressStreetNumber}, ${deliveryAddressPostalCode} ${deliveryAddressCity}, ${deliveryAddressCountry}`,
|
|
26570
|
+
cateringCategories: catering_categories,
|
|
26571
|
+
eventDate: new Date(event_date).toDateString(),
|
|
26572
|
+
hasRecurringNeed: has_recurring_need,
|
|
26573
|
+
isMultiDay: is_multi_day,
|
|
26574
|
+
numberOfOmnivores: number_of_carnivore,
|
|
26575
|
+
numberOfVegans: number_of_vegans,
|
|
26576
|
+
numberOfVegetarians: number_of_vegetarians,
|
|
26577
|
+
numberOfPeople,
|
|
26578
|
+
totalBudget: numberOfPeople * price_per_person,
|
|
26579
|
+
leadType: lead_type,
|
|
26580
|
+
serviceType: service_type,
|
|
26581
|
+
teamSize: team_size,
|
|
26582
|
+
deliveryFrequency: delivery_frequency,
|
|
26583
|
+
budgetRange: budget_range
|
|
26584
|
+
},
|
|
26585
|
+
{ client }
|
|
26586
|
+
);
|
|
26587
|
+
return response;
|
|
25863
26588
|
} catch (error) {
|
|
25864
26589
|
if (error) {
|
|
25865
26590
|
BugsnagExport.notify(error, (event) => {
|
|
25866
26591
|
event.addMetadata("createQfLead", variables);
|
|
25867
26592
|
});
|
|
25868
26593
|
}
|
|
25869
|
-
return { success: false };
|
|
25870
26594
|
}
|
|
25871
26595
|
};
|
|
25872
26596
|
return {
|
|
@@ -25931,13 +26655,13 @@ function useRequestForm() {
|
|
|
25931
26655
|
deliveryAddressCountry
|
|
25932
26656
|
);
|
|
25933
26657
|
if (isLeadOnlyFunnel || isUkLead) {
|
|
25934
|
-
const
|
|
26658
|
+
const { success } = await createQfLead({
|
|
25935
26659
|
...values2,
|
|
25936
26660
|
...qualification == null ? void 0 : qualification.answers
|
|
25937
26661
|
});
|
|
25938
26662
|
return {
|
|
25939
|
-
success
|
|
25940
|
-
|
|
26663
|
+
success,
|
|
26664
|
+
isUkLead: true
|
|
25941
26665
|
};
|
|
25942
26666
|
} else {
|
|
25943
26667
|
const {
|
|
@@ -25949,7 +26673,7 @@ function useRequestForm() {
|
|
|
25949
26673
|
signInToken,
|
|
25950
26674
|
customerAccount,
|
|
25951
26675
|
opportunity,
|
|
25952
|
-
|
|
26676
|
+
isUkLead: false
|
|
25953
26677
|
};
|
|
25954
26678
|
}
|
|
25955
26679
|
};
|
|
@@ -26028,22 +26752,9 @@ function RequestForm({ header = null }) {
|
|
|
26028
26752
|
}
|
|
26029
26753
|
handleDeliveryAddressChange();
|
|
26030
26754
|
}, [deliveryAddress]);
|
|
26755
|
+
const { mode } = useTracking();
|
|
26031
26756
|
const handleSubmit = async (values2) => {
|
|
26032
|
-
var _a3, _b2, _c2, _d;
|
|
26033
26757
|
handleDisableCTA(true);
|
|
26034
|
-
const serviceType = (_a3 = qualification == null ? void 0 : qualification.answers) == null ? void 0 : _a3.service_type;
|
|
26035
|
-
const isLeadOnlyFunnel = serviceType === "regular_employee_catering" || serviceType === "full_service_event";
|
|
26036
|
-
if (isLeadOnlyFunnel) {
|
|
26037
|
-
const result = await submitAsNewCustomer(values2);
|
|
26038
|
-
if (result == null ? void 0 : result.success) {
|
|
26039
|
-
setShowLeadSuccess(true);
|
|
26040
|
-
window.gtag && window.gtag("event", "submit_qf_request");
|
|
26041
|
-
(_b2 = window.dataLayer) == null ? void 0 : _b2.push({ event: "funnel_form_submit" });
|
|
26042
|
-
} else {
|
|
26043
|
-
handleDisableCTA(false);
|
|
26044
|
-
}
|
|
26045
|
-
return;
|
|
26046
|
-
}
|
|
26047
26758
|
let redirectRoute = "";
|
|
26048
26759
|
if (currentUserAccount) {
|
|
26049
26760
|
try {
|
|
@@ -26055,16 +26766,19 @@ function RequestForm({ header = null }) {
|
|
|
26055
26766
|
}
|
|
26056
26767
|
}
|
|
26057
26768
|
} else {
|
|
26058
|
-
const
|
|
26059
|
-
|
|
26060
|
-
|
|
26061
|
-
|
|
26062
|
-
|
|
26063
|
-
|
|
26064
|
-
|
|
26065
|
-
|
|
26066
|
-
|
|
26067
|
-
|
|
26769
|
+
const {
|
|
26770
|
+
signInToken,
|
|
26771
|
+
opportunity,
|
|
26772
|
+
isUkLead,
|
|
26773
|
+
success
|
|
26774
|
+
} = await submitAsNewCustomer(values2);
|
|
26775
|
+
if (success && isUkLead) {
|
|
26776
|
+
setShowLeadSuccess(true);
|
|
26777
|
+
trackFormSubmitted(mode, {
|
|
26778
|
+
is_uk_lead: true,
|
|
26779
|
+
has_bestseller: !!(qualification == null ? void 0 : qualification.selectedMenu)
|
|
26780
|
+
});
|
|
26781
|
+
trackFunnelCompleted(mode);
|
|
26068
26782
|
return;
|
|
26069
26783
|
}
|
|
26070
26784
|
if (signInToken) {
|
|
@@ -26073,9 +26787,11 @@ function RequestForm({ header = null }) {
|
|
|
26073
26787
|
redirectRoute = `/${router.locale}/account/external/requests/${opportunity.id}`;
|
|
26074
26788
|
}
|
|
26075
26789
|
}
|
|
26076
|
-
|
|
26077
|
-
|
|
26078
|
-
|
|
26790
|
+
trackFormSubmitted(mode, {
|
|
26791
|
+
is_logged_in: !!currentUserAccount,
|
|
26792
|
+
has_bestseller: !!(qualification == null ? void 0 : qualification.selectedMenu)
|
|
26793
|
+
});
|
|
26794
|
+
trackFunnelCompleted(mode);
|
|
26079
26795
|
actions.setRequest(values2);
|
|
26080
26796
|
redirectToCustomerAccountRequest(redirectRoute);
|
|
26081
26797
|
};
|
|
@@ -29171,24 +29887,42 @@ const EmbeddedFunnel = React__default.forwardRef(
|
|
|
29171
29887
|
}, ref2) => {
|
|
29172
29888
|
var _a2, _b, _c, _d, _e, _f, _g;
|
|
29173
29889
|
const scrollHelperRef = useRef(null);
|
|
29174
|
-
const
|
|
29175
|
-
|
|
29176
|
-
|
|
29177
|
-
|
|
29178
|
-
|
|
29179
|
-
|
|
29180
|
-
|
|
29181
|
-
|
|
29182
|
-
|
|
29183
|
-
|
|
29184
|
-
|
|
29185
|
-
|
|
29186
|
-
|
|
29187
|
-
|
|
29188
|
-
|
|
29890
|
+
const hasTrackedStart = useRef(false);
|
|
29891
|
+
const previousStepRef = useRef(null);
|
|
29892
|
+
const onQuestionChange = useCallback(
|
|
29893
|
+
(step2, stepIndex, totalSteps) => {
|
|
29894
|
+
if (scrollHelperRef && (scrollHelperRef == null ? void 0 : scrollHelperRef.current)) {
|
|
29895
|
+
scrollHelperRef.current.scrollIntoView({
|
|
29896
|
+
inline: "nearest",
|
|
29897
|
+
block: "nearest",
|
|
29898
|
+
behavior: "smooth"
|
|
29899
|
+
});
|
|
29900
|
+
}
|
|
29901
|
+
if (step2 && typeof totalSteps === "number") {
|
|
29902
|
+
if (previousStepRef.current && previousStepRef.current !== step2.id && typeof stepIndex === "number" && stepIndex > 0) {
|
|
29903
|
+
trackStepCompleted(
|
|
29904
|
+
mode,
|
|
29905
|
+
previousStepRef.current,
|
|
29906
|
+
stepIndex - 1,
|
|
29907
|
+
totalSteps
|
|
29908
|
+
);
|
|
29909
|
+
}
|
|
29910
|
+
trackStepViewed(mode, step2.id, stepIndex ?? 0, totalSteps);
|
|
29911
|
+
previousStepRef.current = step2.id;
|
|
29912
|
+
}
|
|
29913
|
+
},
|
|
29914
|
+
[mode]
|
|
29915
|
+
);
|
|
29189
29916
|
const { state, actions, canContinue } = useQualification({
|
|
29190
29917
|
onQuestionChange
|
|
29191
29918
|
});
|
|
29919
|
+
useEffect(() => {
|
|
29920
|
+
if (!hasTrackedStart.current && state.status === QUALIFICATION_STATUS.answering) {
|
|
29921
|
+
const enabledSteps2 = state.qualification.steps.filter((s3) => !s3.disabled);
|
|
29922
|
+
trackFunnelStarted(mode, enabledSteps2.length);
|
|
29923
|
+
hasTrackedStart.current = true;
|
|
29924
|
+
}
|
|
29925
|
+
}, [state.status, mode]);
|
|
29192
29926
|
useEffect(() => {
|
|
29193
29927
|
if (scrollHelperRef && (scrollHelperRef == null ? void 0 : scrollHelperRef.current)) {
|
|
29194
29928
|
scrollHelperRef.current.scrollIntoView({
|
|
@@ -29246,7 +29980,7 @@ const EmbeddedFunnel = React__default.forwardRef(
|
|
|
29246
29980
|
const isFullscreen = mode === "fullscreen";
|
|
29247
29981
|
const enabledSteps = state.qualification.steps.filter((q2) => !q2.disabled);
|
|
29248
29982
|
const handleCancel = onCancel || (() => window.history.back());
|
|
29249
|
-
return /* @__PURE__ */ jsxs(
|
|
29983
|
+
return /* @__PURE__ */ jsx(TrackingProvider, { mode, currentStepId: stepId, children: /* @__PURE__ */ jsxs(
|
|
29250
29984
|
FormWrapper,
|
|
29251
29985
|
{
|
|
29252
29986
|
$textColor: textColor,
|
|
@@ -29255,6 +29989,7 @@ const EmbeddedFunnel = React__default.forwardRef(
|
|
|
29255
29989
|
ref: ref2,
|
|
29256
29990
|
"data-embedded-funnel": true,
|
|
29257
29991
|
"data-ph-capture-attribute-funnel-step": stepId || void 0,
|
|
29992
|
+
"data-ph-capture-attribute-funnel-mode": mode,
|
|
29258
29993
|
name: "step" in state.qualification ? state.qualification.step.id : state.status,
|
|
29259
29994
|
onSubmit: (e2) => {
|
|
29260
29995
|
e2.preventDefault();
|
|
@@ -29297,7 +30032,7 @@ const EmbeddedFunnel = React__default.forwardRef(
|
|
|
29297
30032
|
] })
|
|
29298
30033
|
]
|
|
29299
30034
|
}
|
|
29300
|
-
);
|
|
30035
|
+
) });
|
|
29301
30036
|
}
|
|
29302
30037
|
);
|
|
29303
30038
|
const FormWrapper = styled.form`
|