\", fn.displayName);\n }\n {\n if (typeof fn === \"function\") {\n componentFrameCache.set(fn, _frame);\n }\n }\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n break;\n }\n }\n }\n } finally {\n reentry = false;\n {\n ReactCurrentDispatcher$1.current = previousDispatcher;\n reenableLogs();\n }\n Error.prepareStackTrace = previousPrepareStackTrace;\n }\n var name = fn ? fn.displayName || fn.name : \"\";\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : \"\";\n {\n if (typeof fn === \"function\") {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n return syntheticFrame;\n }\n function describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n }\n function shouldConstruct(Component2) {\n var prototype = Component2.prototype;\n return !!(prototype && prototype.isReactComponent);\n }\n function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n if (type == null) {\n return \"\";\n }\n if (typeof type === \"function\") {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n if (typeof type === \"string\") {\n return describeBuiltInComponentFrame(type);\n }\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame(\"Suspense\");\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame(\"SuspenseList\");\n }\n if (typeof type === \"object\") {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n case REACT_MEMO_TYPE:\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n case REACT_LAZY_TYPE: {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n try {\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {\n }\n }\n }\n }\n return \"\";\n }\n var loggedTypeFailures = {};\n var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n function setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n }\n function checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n var has = Function.call.bind(hasOwnProperty);\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0;\n try {\n if (typeof typeSpecs[typeSpecName] !== \"function\") {\n var err = Error((componentName || \"React class\") + \": \" + location + \" type `\" + typeSpecName + \"` is invalid; it must be a function, usually from the `prop-types` package, but received `\" + typeof typeSpecs[typeSpecName] + \"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");\n err.name = \"Invariant Violation\";\n throw err;\n }\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\");\n } catch (ex) {\n error$1 = ex;\n }\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n error(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\", componentName || \"React class\", location, typeSpecName, typeof error$1);\n setCurrentlyValidatingElement(null);\n }\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n error(\"Failed %s type: %s\", location, error$1.message);\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n }\n function setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n setExtraStackFrame(stack);\n } else {\n setExtraStackFrame(null);\n }\n }\n }\n var propTypesMisspellWarningShown;\n {\n propTypesMisspellWarningShown = false;\n }\n function getDeclarationErrorAddendum() {\n if (ReactCurrentOwner.current) {\n var name = getComponentNameFromType(ReactCurrentOwner.current.type);\n if (name) {\n return \"\\n\\nCheck the render method of `\" + name + \"`.\";\n }\n }\n return \"\";\n }\n function getSourceInfoErrorAddendum(source) {\n if (source !== void 0) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, \"\");\n var lineNumber = source.lineNumber;\n return \"\\n\\nCheck your code at \" + fileName + \":\" + lineNumber + \".\";\n }\n return \"\";\n }\n function getSourceInfoErrorAddendumForProps(elementProps) {\n if (elementProps !== null && elementProps !== void 0) {\n return getSourceInfoErrorAddendum(elementProps.__source);\n }\n return \"\";\n }\n var ownerHasKeyUseWarning = {};\n function getCurrentComponentErrorInfo(parentType) {\n var info = getDeclarationErrorAddendum();\n if (!info) {\n var parentName = typeof parentType === \"string\" ? parentType : parentType.displayName || parentType.name;\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n return info;\n }\n function validateExplicitKey(element, parentType) {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true;\n var childOwner = \"\";\n if (element && element._owner && element._owner !== ReactCurrentOwner.current) {\n childOwner = \" It was passed a child from \" + getComponentNameFromType(element._owner.type) + \".\";\n }\n {\n setCurrentlyValidatingElement$1(element);\n error('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n setCurrentlyValidatingElement$1(null);\n }\n }\n function validateChildKeys(node, parentType) {\n if (typeof node !== \"object\") {\n return;\n }\n if (isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n if (isValidElement2(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement2(node)) {\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n if (typeof iteratorFn === \"function\") {\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n while (!(step = iterator.next()).done) {\n if (isValidElement2(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n }\n function validatePropTypes(element) {\n {\n var type = element.type;\n if (type === null || type === void 0 || typeof type === \"string\") {\n return;\n }\n var propTypes;\n if (typeof type === \"function\") {\n propTypes = type.propTypes;\n } else if (typeof type === \"object\" && (type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n if (propTypes) {\n var name = getComponentNameFromType(type);\n checkPropTypes(propTypes, element.props, \"prop\", name, element);\n } else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true;\n var _name = getComponentNameFromType(type);\n error(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\", _name || \"Unknown\");\n }\n if (typeof type.getDefaultProps === \"function\" && !type.getDefaultProps.isReactClassApproved) {\n error(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\");\n }\n }\n }\n function validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (key !== \"children\" && key !== \"key\") {\n setCurrentlyValidatingElement$1(fragment);\n error(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\", key);\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n error(\"Invalid attribute `ref` supplied to `React.Fragment`.\");\n setCurrentlyValidatingElement$1(null);\n }\n }\n }\n function createElementWithValidation(type, props, children) {\n var validType = isValidElementType(type);\n if (!validType) {\n var info = \"\";\n if (type === void 0 || typeof type === \"object\" && type !== null && Object.keys(type).length === 0) {\n info += \" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\";\n }\n var sourceInfo = getSourceInfoErrorAddendumForProps(props);\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n var typeString;\n if (type === null) {\n typeString = \"null\";\n } else if (isArray(type)) {\n typeString = \"array\";\n } else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentNameFromType(type.type) || \"Unknown\") + \" />\";\n info = \" Did you accidentally export a JSX literal instead of a component?\";\n } else {\n typeString = typeof type;\n }\n {\n error(\"React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\", typeString, info);\n }\n }\n var element = createElement.apply(this, arguments);\n if (element == null) {\n return element;\n }\n if (validType) {\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], type);\n }\n }\n if (type === REACT_FRAGMENT_TYPE) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n return element;\n }\n var didWarnAboutDeprecatedCreateFactory = false;\n function createFactoryWithValidation(type) {\n var validatedFactory = createElementWithValidation.bind(null, type);\n validatedFactory.type = type;\n {\n if (!didWarnAboutDeprecatedCreateFactory) {\n didWarnAboutDeprecatedCreateFactory = true;\n warn(\"React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.\");\n }\n Object.defineProperty(validatedFactory, \"type\", {\n enumerable: false,\n get: function() {\n warn(\"Factory.type is deprecated. Access the class directly before passing it to createFactory.\");\n Object.defineProperty(this, \"type\", {\n value: type\n });\n return type;\n }\n });\n }\n return validatedFactory;\n }\n function cloneElementWithValidation(element, props, children) {\n var newElement = cloneElement.apply(this, arguments);\n for (var i = 2; i < arguments.length; i++) {\n validateChildKeys(arguments[i], newElement.type);\n }\n validatePropTypes(newElement);\n return newElement;\n }\n function startTransition(scope, options) {\n var prevTransition = ReactCurrentBatchConfig.transition;\n ReactCurrentBatchConfig.transition = {};\n var currentTransition = ReactCurrentBatchConfig.transition;\n {\n ReactCurrentBatchConfig.transition._updatedFibers = /* @__PURE__ */ new Set();\n }\n try {\n scope();\n } finally {\n ReactCurrentBatchConfig.transition = prevTransition;\n {\n if (prevTransition === null && currentTransition._updatedFibers) {\n var updatedFibersCount = currentTransition._updatedFibers.size;\n if (updatedFibersCount > 10) {\n warn(\"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\");\n }\n currentTransition._updatedFibers.clear();\n }\n }\n }\n }\n var didWarnAboutMessageChannel = false;\n var enqueueTaskImpl = null;\n function enqueueTask(task) {\n if (enqueueTaskImpl === null) {\n try {\n var requireString = (\"require\" + Math.random()).slice(0, 7);\n var nodeRequire = module && module[requireString];\n enqueueTaskImpl = nodeRequire.call(module, \"timers\").setImmediate;\n } catch (_err) {\n enqueueTaskImpl = function(callback) {\n {\n if (didWarnAboutMessageChannel === false) {\n didWarnAboutMessageChannel = true;\n if (typeof MessageChannel === \"undefined\") {\n error(\"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.\");\n }\n }\n }\n var channel = new MessageChannel();\n channel.port1.onmessage = callback;\n channel.port2.postMessage(void 0);\n };\n }\n }\n return enqueueTaskImpl(task);\n }\n var actScopeDepth = 0;\n var didWarnNoAwaitAct = false;\n function act(callback) {\n {\n var prevActScopeDepth = actScopeDepth;\n actScopeDepth++;\n if (ReactCurrentActQueue.current === null) {\n ReactCurrentActQueue.current = [];\n }\n var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;\n var result;\n try {\n ReactCurrentActQueue.isBatchingLegacy = true;\n result = callback();\n if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {\n var queue = ReactCurrentActQueue.current;\n if (queue !== null) {\n ReactCurrentActQueue.didScheduleLegacyUpdate = false;\n flushActQueue(queue);\n }\n }\n } catch (error2) {\n popActScope(prevActScopeDepth);\n throw error2;\n } finally {\n ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;\n }\n if (result !== null && typeof result === \"object\" && typeof result.then === \"function\") {\n var thenableResult = result;\n var wasAwaited = false;\n var thenable = {\n then: function(resolve, reject) {\n wasAwaited = true;\n thenableResult.then(function(returnValue2) {\n popActScope(prevActScopeDepth);\n if (actScopeDepth === 0) {\n recursivelyFlushAsyncActWork(returnValue2, resolve, reject);\n } else {\n resolve(returnValue2);\n }\n }, function(error2) {\n popActScope(prevActScopeDepth);\n reject(error2);\n });\n }\n };\n {\n if (!didWarnNoAwaitAct && typeof Promise !== \"undefined\") {\n Promise.resolve().then(function() {\n }).then(function() {\n if (!wasAwaited) {\n didWarnNoAwaitAct = true;\n error(\"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);\");\n }\n });\n }\n }\n return thenable;\n } else {\n var returnValue = result;\n popActScope(prevActScopeDepth);\n if (actScopeDepth === 0) {\n var _queue = ReactCurrentActQueue.current;\n if (_queue !== null) {\n flushActQueue(_queue);\n ReactCurrentActQueue.current = null;\n }\n var _thenable = {\n then: function(resolve, reject) {\n if (ReactCurrentActQueue.current === null) {\n ReactCurrentActQueue.current = [];\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n } else {\n resolve(returnValue);\n }\n }\n };\n return _thenable;\n } else {\n var _thenable2 = {\n then: function(resolve, reject) {\n resolve(returnValue);\n }\n };\n return _thenable2;\n }\n }\n }\n }\n function popActScope(prevActScopeDepth) {\n {\n if (prevActScopeDepth !== actScopeDepth - 1) {\n error(\"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. \");\n }\n actScopeDepth = prevActScopeDepth;\n }\n }\n function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {\n {\n var queue = ReactCurrentActQueue.current;\n if (queue !== null) {\n try {\n flushActQueue(queue);\n enqueueTask(function() {\n if (queue.length === 0) {\n ReactCurrentActQueue.current = null;\n resolve(returnValue);\n } else {\n recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n }\n });\n } catch (error2) {\n reject(error2);\n }\n } else {\n resolve(returnValue);\n }\n }\n }\n var isFlushing = false;\n function flushActQueue(queue) {\n {\n if (!isFlushing) {\n isFlushing = true;\n var i = 0;\n try {\n for (; i < queue.length; i++) {\n var callback = queue[i];\n do {\n callback = callback(true);\n } while (callback !== null);\n }\n queue.length = 0;\n } catch (error2) {\n queue = queue.slice(i + 1);\n throw error2;\n } finally {\n isFlushing = false;\n }\n }\n }\n }\n var createElement$1 = createElementWithValidation;\n var cloneElement$1 = cloneElementWithValidation;\n var createFactory = createFactoryWithValidation;\n var Children2 = {\n map: mapChildren,\n forEach: forEachChildren,\n count: countChildren,\n toArray,\n only: onlyChild\n };\n exports.Children = Children2;\n exports.Component = Component;\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.Profiler = REACT_PROFILER_TYPE;\n exports.PureComponent = PureComponent;\n exports.StrictMode = REACT_STRICT_MODE_TYPE;\n exports.Suspense = REACT_SUSPENSE_TYPE;\n exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;\n exports.cloneElement = cloneElement$1;\n exports.createContext = createContext;\n exports.createElement = createElement$1;\n exports.createFactory = createFactory;\n exports.createRef = createRef;\n exports.forwardRef = forwardRef;\n exports.isValidElement = isValidElement2;\n exports.lazy = lazy;\n exports.memo = memo;\n exports.startTransition = startTransition;\n exports.unstable_act = act;\n exports.useCallback = useCallback;\n exports.useContext = useContext;\n exports.useDebugValue = useDebugValue;\n exports.useDeferredValue = useDeferredValue;\n exports.useEffect = useEffect;\n exports.useId = useId;\n exports.useImperativeHandle = useImperativeHandle;\n exports.useInsertionEffect = useInsertionEffect;\n exports.useLayoutEffect = useLayoutEffect;\n exports.useMemo = useMemo;\n exports.useReducer = useReducer;\n exports.useRef = useRef;\n exports.useState = useState;\n exports.useSyncExternalStore = useSyncExternalStore;\n exports.useTransition = useTransition;\n exports.version = ReactVersion;\n if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== \"undefined\" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === \"function\") {\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());\n }\n })();\n }\n }\n});\n\n// ../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js\nvar require_react = __commonJS({\n \"../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js\"(exports, module) {\n \"use strict\";\n if (process.env.NODE_ENV === \"production\") {\n module.exports = require_react_production_min();\n } else {\n module.exports = require_react_development();\n }\n }\n});\n\n// src/index.ts\nvar import_react = __toESM(require_react());\nfunction getValidChildren(children) {\n return import_react.Children.toArray(children).filter((child) => (0, import_react.isValidElement)(child));\n}\nexport {\n getValidChildren\n};\n/**\n * @license React\n * react.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n/**\n * @license React\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n","// ../../../react-shim.js\nimport React from \"react\";\n\n// src/aspect-ratio.tsx\nimport {\n chakra,\n forwardRef\n} from \"@chakra-ui/system\";\nimport { mapResponsive } from \"@chakra-ui/breakpoint-utils\";\nimport { cx } from \"@chakra-ui/shared-utils\";\nimport { Children } from \"react\";\nvar AspectRatio = forwardRef(function(props, ref) {\n const { ratio = 4 / 3, children, className, ...rest } = props;\n const child = Children.only(children);\n const _className = cx(\"chakra-aspect-ratio\", className);\n return /* @__PURE__ */ React.createElement(chakra.div, {\n ref,\n position: \"relative\",\n className: _className,\n _before: {\n height: 0,\n content: `\"\"`,\n display: \"block\",\n paddingBottom: mapResponsive(ratio, (r) => `${1 / r * 100}%`)\n },\n __css: {\n \"& > *:not(style)\": {\n overflow: \"hidden\",\n position: \"absolute\",\n top: \"0\",\n right: \"0\",\n bottom: \"0\",\n left: \"0\",\n display: \"flex\",\n justifyContent: \"center\",\n alignItems: \"center\",\n width: \"100%\",\n height: \"100%\"\n },\n \"& > img, & > video\": {\n objectFit: \"cover\"\n }\n },\n ...rest\n }, child);\n});\nAspectRatio.displayName = \"AspectRatio\";\n\n// src/badge.tsx\nimport {\n chakra as chakra2,\n forwardRef as forwardRef2,\n omitThemingProps,\n useStyleConfig\n} from \"@chakra-ui/system\";\nimport { cx as cx2 } from \"@chakra-ui/shared-utils\";\nvar Badge = forwardRef2(function Badge2(props, ref) {\n const styles = useStyleConfig(\"Badge\", props);\n const { className, ...rest } = omitThemingProps(props);\n return /* @__PURE__ */ React.createElement(chakra2.span, {\n ref,\n className: cx2(\"chakra-badge\", props.className),\n ...rest,\n __css: {\n display: \"inline-block\",\n whiteSpace: \"nowrap\",\n verticalAlign: \"middle\",\n ...styles\n }\n });\n});\nBadge.displayName = \"Badge\";\n\n// src/box.tsx\nimport {\n chakra as chakra3,\n forwardRef as forwardRef3\n} from \"@chakra-ui/system\";\nvar Box = chakra3(\"div\");\nBox.displayName = \"Box\";\nvar Square = forwardRef3(function Square2(props, ref) {\n const { size, centerContent = true, ...rest } = props;\n const styles = centerContent ? { display: \"flex\", alignItems: \"center\", justifyContent: \"center\" } : {};\n return /* @__PURE__ */ React.createElement(Box, {\n ref,\n boxSize: size,\n __css: {\n ...styles,\n flexShrink: 0,\n flexGrow: 0\n },\n ...rest\n });\n});\nSquare.displayName = \"Square\";\nvar Circle = forwardRef3(function Circle2(props, ref) {\n const { size, ...rest } = props;\n return /* @__PURE__ */ React.createElement(Square, {\n size,\n ref,\n borderRadius: \"9999px\",\n ...rest\n });\n});\nCircle.displayName = \"Circle\";\n\n// src/center.tsx\nimport { chakra as chakra4, forwardRef as forwardRef4 } from \"@chakra-ui/system\";\nvar Center = chakra4(\"div\", {\n baseStyle: {\n display: \"flex\",\n alignItems: \"center\",\n justifyContent: \"center\"\n }\n});\nCenter.displayName = \"Center\";\nvar centerStyles = {\n horizontal: {\n insetStart: \"50%\",\n transform: \"translateX(-50%)\"\n },\n vertical: {\n top: \"50%\",\n transform: \"translateY(-50%)\"\n },\n both: {\n insetStart: \"50%\",\n top: \"50%\",\n transform: \"translate(-50%, -50%)\"\n }\n};\nvar AbsoluteCenter = forwardRef4(function AbsoluteCenter2(props, ref) {\n const { axis = \"both\", ...rest } = props;\n return /* @__PURE__ */ React.createElement(chakra4.div, {\n ref,\n __css: centerStyles[axis],\n ...rest,\n position: \"absolute\"\n });\n});\n\n// src/code.tsx\nimport {\n chakra as chakra5,\n forwardRef as forwardRef5,\n omitThemingProps as omitThemingProps2,\n useStyleConfig as useStyleConfig2\n} from \"@chakra-ui/system\";\nimport { cx as cx3 } from \"@chakra-ui/shared-utils\";\nvar Code = forwardRef5(function Code2(props, ref) {\n const styles = useStyleConfig2(\"Code\", props);\n const { className, ...rest } = omitThemingProps2(props);\n return /* @__PURE__ */ React.createElement(chakra5.code, {\n ref,\n className: cx3(\"chakra-code\", props.className),\n ...rest,\n __css: {\n display: \"inline-block\",\n ...styles\n }\n });\n});\nCode.displayName = \"Code\";\n\n// src/container.tsx\nimport {\n chakra as chakra6,\n forwardRef as forwardRef6,\n omitThemingProps as omitThemingProps3,\n useStyleConfig as useStyleConfig3\n} from \"@chakra-ui/system\";\nimport { cx as cx4 } from \"@chakra-ui/shared-utils\";\nvar Container = forwardRef6(function Container2(props, ref) {\n const { className, centerContent, ...rest } = omitThemingProps3(props);\n const styles = useStyleConfig3(\"Container\", props);\n return /* @__PURE__ */ React.createElement(chakra6.div, {\n ref,\n className: cx4(\"chakra-container\", className),\n ...rest,\n __css: {\n ...styles,\n ...centerContent && {\n display: \"flex\",\n flexDirection: \"column\",\n alignItems: \"center\"\n }\n }\n });\n});\nContainer.displayName = \"Container\";\n\n// src/divider.tsx\nimport {\n chakra as chakra7,\n forwardRef as forwardRef7,\n omitThemingProps as omitThemingProps4,\n useStyleConfig as useStyleConfig4\n} from \"@chakra-ui/system\";\nimport { cx as cx5 } from \"@chakra-ui/shared-utils\";\nvar Divider = forwardRef7(function Divider2(props, ref) {\n const {\n borderLeftWidth,\n borderBottomWidth,\n borderTopWidth,\n borderRightWidth,\n borderWidth,\n borderStyle,\n borderColor,\n ...styles\n } = useStyleConfig4(\"Divider\", props);\n const {\n className,\n orientation = \"horizontal\",\n __css,\n ...rest\n } = omitThemingProps4(props);\n const dividerStyles = {\n vertical: {\n borderLeftWidth: borderLeftWidth || borderRightWidth || borderWidth || \"1px\",\n height: \"100%\"\n },\n horizontal: {\n borderBottomWidth: borderBottomWidth || borderTopWidth || borderWidth || \"1px\",\n width: \"100%\"\n }\n };\n return /* @__PURE__ */ React.createElement(chakra7.hr, {\n ref,\n \"aria-orientation\": orientation,\n ...rest,\n __css: {\n ...styles,\n border: \"0\",\n borderColor,\n borderStyle,\n ...dividerStyles[orientation],\n ...__css\n },\n className: cx5(\"chakra-divider\", className)\n });\n});\nDivider.displayName = \"Divider\";\n\n// src/flex.tsx\nimport {\n chakra as chakra8,\n forwardRef as forwardRef8\n} from \"@chakra-ui/system\";\nvar Flex = forwardRef8(function Flex2(props, ref) {\n const { direction, align, justify, wrap, basis, grow, shrink, ...rest } = props;\n const styles = {\n display: \"flex\",\n flexDirection: direction,\n alignItems: align,\n justifyContent: justify,\n flexWrap: wrap,\n flexBasis: basis,\n flexGrow: grow,\n flexShrink: shrink\n };\n return /* @__PURE__ */ React.createElement(chakra8.div, {\n ref,\n __css: styles,\n ...rest\n });\n});\nFlex.displayName = \"Flex\";\n\n// src/grid.tsx\nimport {\n chakra as chakra9,\n forwardRef as forwardRef9\n} from \"@chakra-ui/system\";\nvar Grid = forwardRef9(function Grid2(props, ref) {\n const {\n templateAreas,\n gap,\n rowGap,\n columnGap,\n column,\n row,\n autoFlow,\n autoRows,\n templateRows,\n autoColumns,\n templateColumns,\n ...rest\n } = props;\n const styles = {\n display: \"grid\",\n gridTemplateAreas: templateAreas,\n gridGap: gap,\n gridRowGap: rowGap,\n gridColumnGap: columnGap,\n gridAutoColumns: autoColumns,\n gridColumn: column,\n gridRow: row,\n gridAutoFlow: autoFlow,\n gridAutoRows: autoRows,\n gridTemplateRows: templateRows,\n gridTemplateColumns: templateColumns\n };\n return /* @__PURE__ */ React.createElement(chakra9.div, {\n ref,\n __css: styles,\n ...rest\n });\n});\nGrid.displayName = \"Grid\";\n\n// src/grid-item.tsx\nimport {\n forwardRef as forwardRef10,\n chakra as chakra10\n} from \"@chakra-ui/system\";\nimport { compact } from \"@chakra-ui/object-utils\";\nimport { mapResponsive as mapResponsive2 } from \"@chakra-ui/breakpoint-utils\";\nfunction spanFn(span) {\n return mapResponsive2(span, (value) => value === \"auto\" ? \"auto\" : `span ${value}/span ${value}`);\n}\nvar GridItem = forwardRef10(function GridItem2(props, ref) {\n const {\n area,\n colSpan,\n colStart,\n colEnd,\n rowEnd,\n rowSpan,\n rowStart,\n ...rest\n } = props;\n const styles = compact({\n gridArea: area,\n gridColumn: spanFn(colSpan),\n gridRow: spanFn(rowSpan),\n gridColumnStart: colStart,\n gridColumnEnd: colEnd,\n gridRowStart: rowStart,\n gridRowEnd: rowEnd\n });\n return /* @__PURE__ */ React.createElement(chakra10.div, {\n ref,\n __css: styles,\n ...rest\n });\n});\nGridItem.displayName = \"GridItem\";\n\n// src/heading.tsx\nimport {\n chakra as chakra11,\n forwardRef as forwardRef11,\n omitThemingProps as omitThemingProps5,\n useStyleConfig as useStyleConfig5\n} from \"@chakra-ui/system\";\nimport { cx as cx6 } from \"@chakra-ui/shared-utils\";\nvar Heading = forwardRef11(function Heading2(props, ref) {\n const styles = useStyleConfig5(\"Heading\", props);\n const { className, ...rest } = omitThemingProps5(props);\n return /* @__PURE__ */ React.createElement(chakra11.h2, {\n ref,\n className: cx6(\"chakra-heading\", props.className),\n ...rest,\n __css: styles\n });\n});\nHeading.displayName = \"Heading\";\n\n// src/highlight.tsx\nimport {\n forwardRef as forwardRef12,\n omitThemingProps as omitThemingProps6,\n useStyleConfig as useStyleConfig6\n} from \"@chakra-ui/system\";\nimport { Fragment, useMemo } from \"react\";\nvar escapeRegexp = (term) => term.replace(/[|\\\\{}()[\\]^$+*?.-]/g, (char) => `\\\\${char}`);\nfunction buildRegex(query) {\n const _query = query.filter((text) => text.length !== 0).map((text) => escapeRegexp(text.trim()));\n if (!_query.length) {\n return null;\n }\n return new RegExp(`(${_query.join(\"|\")})`, \"ig\");\n}\nfunction highlightWords({ text, query }) {\n const regex = buildRegex(Array.isArray(query) ? query : [query]);\n if (!regex) {\n return [{ text, match: false }];\n }\n const result = text.split(regex).filter(Boolean);\n return result.map((str) => ({ text: str, match: regex.test(str) }));\n}\nfunction useHighlight(props) {\n const { text, query } = props;\n return useMemo(() => highlightWords({ text, query }), [text, query]);\n}\nvar Mark = forwardRef12(function Mark2(props, ref) {\n const styles = useStyleConfig6(\"Mark\", props);\n const ownProps = omitThemingProps6(props);\n return /* @__PURE__ */ React.createElement(Box, {\n ref,\n ...ownProps,\n as: \"mark\",\n __css: { bg: \"transparent\", whiteSpace: \"nowrap\", ...styles }\n });\n});\nfunction Highlight(props) {\n const { children, query, styles } = props;\n if (typeof children !== \"string\") {\n throw new Error(\"The children prop of Highlight must be a string\");\n }\n const chunks = useHighlight({ query, text: children });\n return /* @__PURE__ */ React.createElement(React.Fragment, null, chunks.map((chunk, index) => {\n return chunk.match ? /* @__PURE__ */ React.createElement(Mark, {\n key: index,\n sx: styles\n }, chunk.text) : /* @__PURE__ */ React.createElement(Fragment, {\n key: index\n }, chunk.text);\n }));\n}\n\n// src/kbd.tsx\nimport {\n chakra as chakra12,\n forwardRef as forwardRef13,\n omitThemingProps as omitThemingProps7,\n useStyleConfig as useStyleConfig7\n} from \"@chakra-ui/system\";\nimport { cx as cx7 } from \"@chakra-ui/shared-utils\";\nvar Kbd = forwardRef13(function Kbd2(props, ref) {\n const styles = useStyleConfig7(\"Kbd\", props);\n const { className, ...rest } = omitThemingProps7(props);\n return /* @__PURE__ */ React.createElement(chakra12.kbd, {\n ref,\n className: cx7(\"chakra-kbd\", className),\n ...rest,\n __css: {\n fontFamily: \"mono\",\n ...styles\n }\n });\n});\nKbd.displayName = \"Kbd\";\n\n// src/link.tsx\nimport {\n chakra as chakra13,\n forwardRef as forwardRef14,\n omitThemingProps as omitThemingProps8,\n useStyleConfig as useStyleConfig8\n} from \"@chakra-ui/system\";\nimport { cx as cx8 } from \"@chakra-ui/shared-utils\";\nvar Link = forwardRef14(function Link2(props, ref) {\n const styles = useStyleConfig8(\"Link\", props);\n const { className, isExternal, ...rest } = omitThemingProps8(props);\n return /* @__PURE__ */ React.createElement(chakra13.a, {\n target: isExternal ? \"_blank\" : void 0,\n rel: isExternal ? \"noopener\" : void 0,\n ref,\n className: cx8(\"chakra-link\", className),\n ...rest,\n __css: styles\n });\n});\nLink.displayName = \"Link\";\n\n// src/link-box.tsx\nimport { chakra as chakra14, forwardRef as forwardRef15 } from \"@chakra-ui/system\";\nimport { cx as cx9 } from \"@chakra-ui/shared-utils\";\nvar LinkOverlay = forwardRef15(function LinkOverlay2(props, ref) {\n const { isExternal, target, rel, className, ...rest } = props;\n return /* @__PURE__ */ React.createElement(chakra14.a, {\n ...rest,\n ref,\n className: cx9(\"chakra-linkbox__overlay\", className),\n rel: isExternal ? \"noopener noreferrer\" : rel,\n target: isExternal ? \"_blank\" : target,\n __css: {\n position: \"static\",\n \"&::before\": {\n content: \"''\",\n cursor: \"inherit\",\n display: \"block\",\n position: \"absolute\",\n top: 0,\n left: 0,\n zIndex: 0,\n width: \"100%\",\n height: \"100%\"\n }\n }\n });\n});\nvar LinkBox = forwardRef15(function LinkBox2(props, ref) {\n const { className, ...rest } = props;\n return /* @__PURE__ */ React.createElement(chakra14.div, {\n ref,\n position: \"relative\",\n ...rest,\n className: cx9(\"chakra-linkbox\", className),\n __css: {\n \"a[href]:not(.chakra-linkbox__overlay), abbr[title]\": {\n position: \"relative\",\n zIndex: 1\n }\n }\n });\n});\n\n// src/list.tsx\nimport { Icon } from \"@chakra-ui/icon\";\nimport { createContext } from \"@chakra-ui/react-context\";\nimport { getValidChildren } from \"@chakra-ui/react-children-utils\";\nimport {\n chakra as chakra15,\n forwardRef as forwardRef16,\n omitThemingProps as omitThemingProps9,\n useMultiStyleConfig\n} from \"@chakra-ui/system\";\nvar [ListStylesProvider, useListStyles] = createContext({\n name: `ListStylesContext`,\n errorMessage: `useListStyles returned is 'undefined'. Seems you forgot to wrap the components in \"
\" `\n});\nvar List = forwardRef16(function List2(props, ref) {\n const styles = useMultiStyleConfig(\"List\", props);\n const {\n children,\n styleType = \"none\",\n stylePosition,\n spacing,\n ...rest\n } = omitThemingProps9(props);\n const validChildren = getValidChildren(children);\n const selector2 = \"& > *:not(style) ~ *:not(style)\";\n const spacingStyle = spacing ? { [selector2]: { mt: spacing } } : {};\n return /* @__PURE__ */ React.createElement(ListStylesProvider, {\n value: styles\n }, /* @__PURE__ */ React.createElement(chakra15.ul, {\n ref,\n listStyleType: styleType,\n listStylePosition: stylePosition,\n role: \"list\",\n __css: { ...styles.container, ...spacingStyle },\n ...rest\n }, validChildren));\n});\nList.displayName = \"List\";\nvar OrderedList = forwardRef16((props, ref) => {\n const { as, ...rest } = props;\n return /* @__PURE__ */ React.createElement(List, {\n ref,\n as: \"ol\",\n styleType: \"decimal\",\n marginStart: \"1em\",\n ...rest\n });\n});\nOrderedList.displayName = \"OrderedList\";\nvar UnorderedList = forwardRef16(function UnorderedList2(props, ref) {\n const { as, ...rest } = props;\n return /* @__PURE__ */ React.createElement(List, {\n ref,\n as: \"ul\",\n styleType: \"initial\",\n marginStart: \"1em\",\n ...rest\n });\n});\nUnorderedList.displayName = \"UnorderedList\";\nvar ListItem = forwardRef16(function ListItem2(props, ref) {\n const styles = useListStyles();\n return /* @__PURE__ */ React.createElement(chakra15.li, {\n ref,\n ...props,\n __css: styles.item\n });\n});\nListItem.displayName = \"ListItem\";\nvar ListIcon = forwardRef16(function ListIcon2(props, ref) {\n const styles = useListStyles();\n return /* @__PURE__ */ React.createElement(Icon, {\n ref,\n role: \"presentation\",\n ...props,\n __css: styles.icon\n });\n});\nListIcon.displayName = \"ListIcon\";\n\n// src/simple-grid.tsx\nimport {\n forwardRef as forwardRef17,\n getToken,\n useTheme\n} from \"@chakra-ui/system\";\nimport { mapResponsive as mapResponsive3 } from \"@chakra-ui/breakpoint-utils\";\nvar SimpleGrid = forwardRef17(function SimpleGrid2(props, ref) {\n const { columns, spacingX, spacingY, spacing, minChildWidth, ...rest } = props;\n const theme = useTheme();\n const templateColumns = minChildWidth ? widthToColumns(minChildWidth, theme) : countToColumns(columns);\n return /* @__PURE__ */ React.createElement(Grid, {\n ref,\n gap: spacing,\n columnGap: spacingX,\n rowGap: spacingY,\n templateColumns,\n ...rest\n });\n});\nSimpleGrid.displayName = \"SimpleGrid\";\nfunction toPx(n) {\n return typeof n === \"number\" ? `${n}px` : n;\n}\nfunction widthToColumns(width, theme) {\n return mapResponsive3(width, (value) => {\n const _value = getToken(\"sizes\", value, toPx(value))(theme);\n return value === null ? null : `repeat(auto-fit, minmax(${_value}, 1fr))`;\n });\n}\nfunction countToColumns(count) {\n return mapResponsive3(count, (value) => value === null ? null : `repeat(${value}, minmax(0, 1fr))`);\n}\n\n// src/spacer.tsx\nimport { chakra as chakra16 } from \"@chakra-ui/system\";\nvar Spacer = chakra16(\"div\", {\n baseStyle: {\n flex: 1,\n justifySelf: \"stretch\",\n alignSelf: \"stretch\"\n }\n});\nSpacer.displayName = \"Spacer\";\n\n// src/stack/h-stack.tsx\nimport { forwardRef as forwardRef19 } from \"@chakra-ui/system\";\n\n// src/stack/stack.tsx\nimport {\n chakra as chakra18,\n forwardRef as forwardRef18\n} from \"@chakra-ui/system\";\nimport { cx as cx10 } from \"@chakra-ui/shared-utils\";\nimport { getValidChildren as getValidChildren2 } from \"@chakra-ui/react-children-utils\";\nimport { cloneElement, Fragment as Fragment2, useMemo as useMemo2 } from \"react\";\n\n// src/stack/stack.utils.tsx\nimport { mapResponsive as mapResponsive4 } from \"@chakra-ui/breakpoint-utils\";\nvar selector = \"& > *:not(style) ~ *:not(style)\";\nfunction getStackStyles(options) {\n const { spacing, direction } = options;\n const directionStyles = {\n column: {\n marginTop: spacing,\n marginEnd: 0,\n marginBottom: 0,\n marginStart: 0\n },\n row: { marginTop: 0, marginEnd: 0, marginBottom: 0, marginStart: spacing },\n \"column-reverse\": {\n marginTop: 0,\n marginEnd: 0,\n marginBottom: spacing,\n marginStart: 0\n },\n \"row-reverse\": {\n marginTop: 0,\n marginEnd: spacing,\n marginBottom: 0,\n marginStart: 0\n }\n };\n return {\n flexDirection: direction,\n [selector]: mapResponsive4(direction, (value) => directionStyles[value])\n };\n}\nfunction getDividerStyles(options) {\n const { spacing, direction } = options;\n const dividerStyles = {\n column: {\n my: spacing,\n mx: 0,\n borderLeftWidth: 0,\n borderBottomWidth: \"1px\"\n },\n \"column-reverse\": {\n my: spacing,\n mx: 0,\n borderLeftWidth: 0,\n borderBottomWidth: \"1px\"\n },\n row: {\n mx: spacing,\n my: 0,\n borderLeftWidth: \"1px\",\n borderBottomWidth: 0\n },\n \"row-reverse\": {\n mx: spacing,\n my: 0,\n borderLeftWidth: \"1px\",\n borderBottomWidth: 0\n }\n };\n return {\n \"&\": mapResponsive4(direction, (value) => dividerStyles[value])\n };\n}\n\n// src/stack/stack-item.tsx\nimport { chakra as chakra17 } from \"@chakra-ui/system\";\nvar StackItem = (props) => /* @__PURE__ */ React.createElement(chakra17.div, {\n className: \"chakra-stack__item\",\n ...props,\n __css: {\n display: \"inline-block\",\n flex: \"0 0 auto\",\n minWidth: 0,\n ...props[\"__css\"]\n }\n});\nStackItem.displayName = \"StackItem\";\n\n// src/stack/stack.tsx\nvar Stack = forwardRef18((props, ref) => {\n const {\n isInline,\n direction: directionProp,\n align,\n justify,\n spacing = \"0.5rem\",\n wrap,\n children,\n divider,\n className,\n shouldWrapChildren,\n ...rest\n } = props;\n const direction = isInline ? \"row\" : directionProp ?? \"column\";\n const styles = useMemo2(() => getStackStyles({ direction, spacing }), [direction, spacing]);\n const dividerStyle = useMemo2(() => getDividerStyles({ spacing, direction }), [spacing, direction]);\n const hasDivider = !!divider;\n const shouldUseChildren = !shouldWrapChildren && !hasDivider;\n const clones = useMemo2(() => {\n const validChildren = getValidChildren2(children);\n return shouldUseChildren ? validChildren : validChildren.map((child, index) => {\n const key = typeof child.key !== \"undefined\" ? child.key : index;\n const isLast = index + 1 === validChildren.length;\n const wrappedChild = /* @__PURE__ */ React.createElement(StackItem, {\n key\n }, child);\n const _child = shouldWrapChildren ? wrappedChild : child;\n if (!hasDivider)\n return _child;\n const clonedDivider = cloneElement(divider, {\n __css: dividerStyle\n });\n const _divider = isLast ? null : clonedDivider;\n return /* @__PURE__ */ React.createElement(Fragment2, {\n key\n }, _child, _divider);\n });\n }, [\n divider,\n dividerStyle,\n hasDivider,\n shouldUseChildren,\n shouldWrapChildren,\n children\n ]);\n const _className = cx10(\"chakra-stack\", className);\n return /* @__PURE__ */ React.createElement(chakra18.div, {\n ref,\n display: \"flex\",\n alignItems: align,\n justifyContent: justify,\n flexDirection: styles.flexDirection,\n flexWrap: wrap,\n className: _className,\n __css: hasDivider ? {} : { [selector]: styles[selector] },\n ...rest\n }, clones);\n});\nStack.displayName = \"Stack\";\n\n// src/stack/h-stack.tsx\nvar HStack = forwardRef19((props, ref) => /* @__PURE__ */ React.createElement(Stack, {\n align: \"center\",\n ...props,\n direction: \"row\",\n ref\n}));\nHStack.displayName = \"HStack\";\n\n// src/stack/stack-divider.tsx\nimport { chakra as chakra19 } from \"@chakra-ui/system\";\nvar StackDivider = (props) => /* @__PURE__ */ React.createElement(chakra19.div, {\n className: \"chakra-stack__divider\",\n ...props,\n __css: {\n ...props[\"__css\"],\n borderWidth: 0,\n alignSelf: \"stretch\",\n borderColor: \"inherit\",\n width: \"auto\",\n height: \"auto\"\n }\n});\nStackDivider.displayName = \"StackDivider\";\n\n// src/stack/v-stack.tsx\nimport { forwardRef as forwardRef20 } from \"@chakra-ui/system\";\nvar VStack = forwardRef20((props, ref) => /* @__PURE__ */ React.createElement(Stack, {\n align: \"center\",\n ...props,\n direction: \"column\",\n ref\n}));\nVStack.displayName = \"VStack\";\n\n// src/text.tsx\nimport {\n chakra as chakra20,\n forwardRef as forwardRef21,\n omitThemingProps as omitThemingProps10,\n useStyleConfig as useStyleConfig9\n} from \"@chakra-ui/system\";\nimport { cx as cx11 } from \"@chakra-ui/shared-utils\";\nimport { compact as compact2 } from \"@chakra-ui/object-utils\";\nvar Text = forwardRef21(function Text2(props, ref) {\n const styles = useStyleConfig9(\"Text\", props);\n const { className, align, decoration, casing, ...rest } = omitThemingProps10(props);\n const aliasedProps = compact2({\n textAlign: props.align,\n textDecoration: props.decoration,\n textTransform: props.casing\n });\n return /* @__PURE__ */ React.createElement(chakra20.p, {\n ref,\n className: cx11(\"chakra-text\", props.className),\n ...aliasedProps,\n ...rest,\n __css: styles\n });\n});\nText.displayName = \"Text\";\n\n// src/wrap.tsx\nimport {\n chakra as chakra21,\n forwardRef as forwardRef22,\n tokenToCSSVar\n} from \"@chakra-ui/system\";\nimport { cx as cx12 } from \"@chakra-ui/shared-utils\";\nimport { mapResponsive as mapResponsive5 } from \"@chakra-ui/breakpoint-utils\";\nimport { Children as Children2, useMemo as useMemo3 } from \"react\";\nfunction px(value) {\n return typeof value === \"number\" ? `${value}px` : value;\n}\nvar Wrap = forwardRef22(function Wrap2(props, ref) {\n const {\n spacing = \"0.5rem\",\n spacingX,\n spacingY,\n children,\n justify,\n direction,\n align,\n className,\n shouldWrapChildren,\n ...rest\n } = props;\n const styles = useMemo3(() => {\n const { spacingX: x = spacing, spacingY: y = spacing } = {\n spacingX,\n spacingY\n };\n return {\n \"--chakra-wrap-x-spacing\": (theme) => mapResponsive5(x, (value) => px(tokenToCSSVar(\"space\", value)(theme))),\n \"--chakra-wrap-y-spacing\": (theme) => mapResponsive5(y, (value) => px(tokenToCSSVar(\"space\", value)(theme))),\n \"--wrap-x-spacing\": \"calc(var(--chakra-wrap-x-spacing) / 2)\",\n \"--wrap-y-spacing\": \"calc(var(--chakra-wrap-y-spacing) / 2)\",\n display: \"flex\",\n flexWrap: \"wrap\",\n justifyContent: justify,\n alignItems: align,\n flexDirection: direction,\n listStyleType: \"none\",\n padding: \"0\",\n margin: \"calc(var(--wrap-y-spacing) * -1) calc(var(--wrap-x-spacing) * -1)\",\n \"& > *:not(style)\": {\n margin: \"var(--wrap-y-spacing) var(--wrap-x-spacing)\"\n }\n };\n }, [spacing, spacingX, spacingY, justify, align, direction]);\n const childrenToRender = useMemo3(() => shouldWrapChildren ? Children2.map(children, (child, index) => /* @__PURE__ */ React.createElement(WrapItem, {\n key: index\n }, child)) : children, [children, shouldWrapChildren]);\n return /* @__PURE__ */ React.createElement(chakra21.div, {\n ref,\n className: cx12(\"chakra-wrap\", className),\n overflow: \"hidden\",\n ...rest\n }, /* @__PURE__ */ React.createElement(chakra21.ul, {\n className: \"chakra-wrap__list\",\n __css: styles\n }, childrenToRender));\n});\nWrap.displayName = \"Wrap\";\nvar WrapItem = forwardRef22(function WrapItem2(props, ref) {\n const { className, ...rest } = props;\n return /* @__PURE__ */ React.createElement(chakra21.li, {\n ref,\n __css: { display: \"flex\", alignItems: \"flex-start\" },\n className: cx12(\"chakra-wrap__listitem\", className),\n ...rest\n });\n});\nWrapItem.displayName = \"WrapItem\";\nexport {\n AbsoluteCenter,\n AspectRatio,\n Badge,\n Box,\n Center,\n Circle,\n Code,\n Container,\n Divider,\n Flex,\n Grid,\n GridItem,\n HStack,\n Heading,\n Highlight,\n Kbd,\n Link,\n LinkBox,\n LinkOverlay,\n List,\n ListIcon,\n ListItem,\n Mark,\n OrderedList,\n SimpleGrid,\n Spacer,\n Square,\n Stack,\n StackDivider,\n StackItem,\n Text,\n UnorderedList,\n VStack,\n Wrap,\n WrapItem,\n getDividerStyles,\n getStackStyles,\n selector,\n useHighlight,\n useListStyles\n};\n","// ../../react-shim.js\nimport React from \"react\";\n\n// src/image.tsx\nimport {\n chakra,\n forwardRef as forwardRef2\n} from \"@chakra-ui/system\";\n\n// ../../utilities/object-utils/dist/index.esm.js\nfunction omit(object, keysToOmit = []) {\n const clone = Object.assign({}, object);\n for (const key of keysToOmit) {\n if (key in clone)\n delete clone[key];\n }\n return clone;\n}\n\n// src/use-image.ts\nimport { useSafeLayoutEffect } from \"@chakra-ui/react-use-safe-layout-effect\";\nimport { useCallback, useEffect, useRef, useState } from \"react\";\nfunction useImage(props) {\n const {\n loading,\n src,\n srcSet,\n onLoad,\n onError,\n crossOrigin,\n sizes,\n ignoreFallback\n } = props;\n const [status, setStatus] = useState(\"pending\");\n useEffect(() => {\n setStatus(src ? \"loading\" : \"pending\");\n }, [src]);\n const imageRef = useRef();\n const load = useCallback(() => {\n if (!src)\n return;\n flush();\n const img = new Image();\n img.src = src;\n if (crossOrigin)\n img.crossOrigin = crossOrigin;\n if (srcSet)\n img.srcset = srcSet;\n if (sizes)\n img.sizes = sizes;\n if (loading)\n img.loading = loading;\n img.onload = (event) => {\n flush();\n setStatus(\"loaded\");\n onLoad == null ? void 0 : onLoad(event);\n };\n img.onerror = (error) => {\n flush();\n setStatus(\"failed\");\n onError == null ? void 0 : onError(error);\n };\n imageRef.current = img;\n }, [src, crossOrigin, srcSet, sizes, onLoad, onError, loading]);\n const flush = () => {\n if (imageRef.current) {\n imageRef.current.onload = null;\n imageRef.current.onerror = null;\n imageRef.current = null;\n }\n };\n useSafeLayoutEffect(() => {\n if (ignoreFallback)\n return void 0;\n if (status === \"loading\") {\n load();\n }\n return () => {\n flush();\n };\n }, [status, load, ignoreFallback]);\n return ignoreFallback ? \"loaded\" : status;\n}\nvar shouldShowFallbackImage = (status, fallbackStrategy) => status !== \"loaded\" && fallbackStrategy === \"beforeLoadOrError\" || status === \"failed\" && fallbackStrategy === \"onError\";\n\n// src/native-image.tsx\nimport { forwardRef } from \"@chakra-ui/system\";\nvar NativeImage = forwardRef(function NativeImage2(props, ref) {\n const { htmlWidth, htmlHeight, alt, ...rest } = props;\n return /* @__PURE__ */ React.createElement(\"img\", {\n width: htmlWidth,\n height: htmlHeight,\n ref,\n alt,\n ...rest\n });\n});\nNativeImage.displayName = \"NativeImage\";\n\n// src/image.tsx\nvar Image2 = forwardRef2(function Image3(props, ref) {\n const {\n fallbackSrc,\n fallback,\n src,\n srcSet,\n align,\n fit,\n loading,\n ignoreFallback,\n crossOrigin,\n fallbackStrategy = \"beforeLoadOrError\",\n referrerPolicy,\n ...rest\n } = props;\n const providedFallback = fallbackSrc !== void 0 || fallback !== void 0;\n const shouldIgnoreFallbackImage = loading != null || ignoreFallback || !providedFallback;\n const status = useImage({\n ...props,\n ignoreFallback: shouldIgnoreFallbackImage\n });\n const showFallbackImage = shouldShowFallbackImage(status, fallbackStrategy);\n const shared = {\n ref,\n objectFit: fit,\n objectPosition: align,\n ...shouldIgnoreFallbackImage ? rest : omit(rest, [\"onError\", \"onLoad\"])\n };\n if (showFallbackImage) {\n if (fallback)\n return fallback;\n return /* @__PURE__ */ React.createElement(chakra.img, {\n as: NativeImage,\n className: \"chakra-image__placeholder\",\n src: fallbackSrc,\n ...shared\n });\n }\n return /* @__PURE__ */ React.createElement(chakra.img, {\n as: NativeImage,\n src,\n srcSet,\n crossOrigin,\n loading,\n referrerPolicy,\n className: \"chakra-image\",\n ...shared\n });\n});\nImage2.displayName = \"Image\";\n\n// src/img.tsx\nimport { chakra as chakra2, forwardRef as forwardRef3 } from \"@chakra-ui/system\";\nvar Img = forwardRef3((props, ref) => /* @__PURE__ */ React.createElement(chakra2.img, {\n ref,\n as: NativeImage,\n className: \"chakra-image\",\n ...props\n}));\nexport {\n Image2 as Image,\n Img,\n shouldShowFallbackImage,\n useImage\n};\n","/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n","import { resolveElements } from '../../utils/resolve-elements.es.js';\n\nconst resizeHandlers = new WeakMap();\nlet observer;\nfunction getElementSize(target, borderBoxSize) {\n if (borderBoxSize) {\n const { inlineSize, blockSize } = borderBoxSize[0];\n return { width: inlineSize, height: blockSize };\n }\n else if (target instanceof SVGElement && \"getBBox\" in target) {\n return target.getBBox();\n }\n else {\n return {\n width: target.offsetWidth,\n height: target.offsetHeight,\n };\n }\n}\nfunction notifyTarget({ target, contentRect, borderBoxSize, }) {\n var _a;\n (_a = resizeHandlers.get(target)) === null || _a === void 0 ? void 0 : _a.forEach((handler) => {\n handler({\n target,\n contentSize: contentRect,\n get size() {\n return getElementSize(target, borderBoxSize);\n },\n });\n });\n}\nfunction notifyAll(entries) {\n entries.forEach(notifyTarget);\n}\nfunction createResizeObserver() {\n if (typeof ResizeObserver === \"undefined\")\n return;\n observer = new ResizeObserver(notifyAll);\n}\nfunction resizeElement(target, handler) {\n if (!observer)\n createResizeObserver();\n const elements = resolveElements(target);\n elements.forEach((element) => {\n let elementHandlers = resizeHandlers.get(element);\n if (!elementHandlers) {\n elementHandlers = new Set();\n resizeHandlers.set(element, elementHandlers);\n }\n elementHandlers.add(handler);\n observer === null || observer === void 0 ? void 0 : observer.observe(element);\n });\n return () => {\n elements.forEach((element) => {\n const elementHandlers = resizeHandlers.get(element);\n elementHandlers === null || elementHandlers === void 0 ? void 0 : elementHandlers.delete(handler);\n if (!(elementHandlers === null || elementHandlers === void 0 ? void 0 : elementHandlers.size)) {\n observer === null || observer === void 0 ? void 0 : observer.unobserve(element);\n }\n });\n };\n}\n\nexport { resizeElement };\n","function resolveElements(elements, selectorCache) {\n var _a;\n if (typeof elements === \"string\") {\n if (selectorCache) {\n (_a = selectorCache[elements]) !== null && _a !== void 0 ? _a : (selectorCache[elements] = document.querySelectorAll(elements));\n elements = selectorCache[elements];\n }\n else {\n elements = document.querySelectorAll(elements);\n }\n }\n else if (elements instanceof Element) {\n elements = [elements];\n }\n /**\n * Return an empty array\n */\n return Array.from(elements || []);\n}\n\nexport { resolveElements };\n","const windowCallbacks = new Set();\nlet windowResizeHandler;\nfunction createWindowResizeHandler() {\n windowResizeHandler = () => {\n const size = {\n width: window.innerWidth,\n height: window.innerHeight,\n };\n const info = {\n target: window,\n size,\n contentSize: size,\n };\n windowCallbacks.forEach((callback) => callback(info));\n };\n window.addEventListener(\"resize\", windowResizeHandler);\n}\nfunction resizeWindow(callback) {\n windowCallbacks.add(callback);\n if (!windowResizeHandler)\n createWindowResizeHandler();\n return () => {\n windowCallbacks.delete(callback);\n if (!windowCallbacks.size && windowResizeHandler) {\n windowResizeHandler = undefined;\n }\n };\n}\n\nexport { resizeWindow };\n","const isFunction = (value) => typeof value === \"function\";\n\nexport { isFunction };\n","import { resizeElement } from './handle-element.es.js';\nimport { resizeWindow } from './handle-window.es.js';\nimport { isFunction } from '@motionone/utils';\n\nfunction resize(a, b) {\n return isFunction(a) ? resizeWindow(a) : resizeElement(a, b);\n}\n\nexport { resize };\n","const progress = (min, max, value) => max - min === 0 ? 1 : (value - min) / (max - min);\n\nexport { progress };\n","import { progress, velocityPerSecond } from '@motionone/utils';\n\n/**\n * A time in milliseconds, beyond which we consider the scroll velocity to be 0.\n */\nconst maxElapsed = 50;\nconst createAxisInfo = () => ({\n current: 0,\n offset: [],\n progress: 0,\n scrollLength: 0,\n targetOffset: 0,\n targetLength: 0,\n containerLength: 0,\n velocity: 0,\n});\nconst createScrollInfo = () => ({\n time: 0,\n x: createAxisInfo(),\n y: createAxisInfo(),\n});\nconst keys = {\n x: {\n length: \"Width\",\n position: \"Left\",\n },\n y: {\n length: \"Height\",\n position: \"Top\",\n },\n};\nfunction updateAxisInfo(element, axisName, info, time) {\n const axis = info[axisName];\n const { length, position } = keys[axisName];\n const prev = axis.current;\n const prevTime = info.time;\n axis.current = element[\"scroll\" + position];\n axis.scrollLength = element[\"scroll\" + length] - element[\"client\" + length];\n axis.offset.length = 0;\n axis.offset[0] = 0;\n axis.offset[1] = axis.scrollLength;\n axis.progress = progress(0, axis.scrollLength, axis.current);\n const elapsed = time - prevTime;\n axis.velocity =\n elapsed > maxElapsed ? 0 : velocityPerSecond(axis.current - prev, elapsed);\n}\nfunction updateScrollInfo(element, info, time) {\n updateAxisInfo(element, \"x\", info, time);\n updateAxisInfo(element, \"y\", info, time);\n info.time = time;\n}\n\nexport { createScrollInfo, updateScrollInfo };\n","/*\n Convert velocity into velocity per second\n\n @param [number]: Unit per frame\n @param [number]: Frame duration in ms\n*/\nfunction velocityPerSecond(velocity, frameDuration) {\n return frameDuration ? velocity * (1000 / frameDuration) : 0;\n}\n\nexport { velocityPerSecond };\n","const noop = () => { };\nconst noopReturn = (v) => v;\n\nexport { noop, noopReturn };\n","const mix = (min, max, progress) => -progress * min + progress * max + min;\n\nexport { mix };\n","import { mix } from './mix.es.js';\nimport { progress } from './progress.es.js';\n\nfunction fillOffset(offset, remaining) {\n const min = offset[offset.length - 1];\n for (let i = 1; i <= remaining; i++) {\n const offsetProgress = progress(0, remaining, i);\n offset.push(mix(min, 1, offsetProgress));\n }\n}\nfunction defaultOffset(length) {\n const offset = [0];\n fillOffset(offset, length - 1);\n return offset;\n}\n\nexport { defaultOffset, fillOffset };\n","const isNumber = (value) => typeof value === \"number\";\n\nexport { isNumber };\n","import { isEasingList } from './is-easing-list.es.js';\nimport { wrap } from './wrap.es.js';\n\nfunction getEasingForSegment(easing, i) {\n return isEasingList(easing)\n ? easing[wrap(0, easing.length, i)]\n : easing;\n}\n\nexport { getEasingForSegment };\n","import { isNumber } from './is-number.es.js';\n\nconst isEasingList = (easing) => Array.isArray(easing) && !isNumber(easing[0]);\n\nexport { isEasingList };\n","const wrap = (min, max, v) => {\n const rangeSize = max - min;\n return ((((v - min) % rangeSize) + rangeSize) % rangeSize) + min;\n};\n\nexport { wrap };\n","const clamp = (min, max, v) => Math.min(Math.max(v, min), max);\n\nexport { clamp };\n","const ScrollOffset = {\n Enter: [\n [0, 1],\n [1, 1],\n ],\n Exit: [\n [0, 0],\n [1, 0],\n ],\n Any: [\n [1, 0],\n [0, 1],\n ],\n All: [\n [0, 0],\n [1, 1],\n ],\n};\n\nexport { ScrollOffset };\n","const isString = (value) => typeof value === \"string\";\n\nexport { isString };\n","import { isString, isNumber } from '@motionone/utils';\n\nconst namedEdges = {\n start: 0,\n center: 0.5,\n end: 1,\n};\nfunction resolveEdge(edge, length, inset = 0) {\n let delta = 0;\n /**\n * If we have this edge defined as a preset, replace the definition\n * with the numerical value.\n */\n if (namedEdges[edge] !== undefined) {\n edge = namedEdges[edge];\n }\n /**\n * Handle unit values\n */\n if (isString(edge)) {\n const asNumber = parseFloat(edge);\n if (edge.endsWith(\"px\")) {\n delta = asNumber;\n }\n else if (edge.endsWith(\"%\")) {\n edge = asNumber / 100;\n }\n else if (edge.endsWith(\"vw\")) {\n delta = (asNumber / 100) * document.documentElement.clientWidth;\n }\n else if (edge.endsWith(\"vh\")) {\n delta = (asNumber / 100) * document.documentElement.clientHeight;\n }\n else {\n edge = asNumber;\n }\n }\n /**\n * If the edge is defined as a number, handle as a progress value.\n */\n if (isNumber(edge)) {\n delta = length * edge;\n }\n return inset + delta;\n}\n\nexport { namedEdges, resolveEdge };\n","import { isNumber, isString } from '@motionone/utils';\nimport { resolveEdge, namedEdges } from './edge.es.js';\n\nconst defaultOffset = [0, 0];\nfunction resolveOffset(offset, containerLength, targetLength, targetInset) {\n let offsetDefinition = Array.isArray(offset) ? offset : defaultOffset;\n let targetPoint = 0;\n let containerPoint = 0;\n if (isNumber(offset)) {\n /**\n * If we're provided offset: [0, 0.5, 1] then each number x should become\n * [x, x], so we default to the behaviour of mapping 0 => 0 of both target\n * and container etc.\n */\n offsetDefinition = [offset, offset];\n }\n else if (isString(offset)) {\n offset = offset.trim();\n if (offset.includes(\" \")) {\n offsetDefinition = offset.split(\" \");\n }\n else {\n /**\n * If we're provided a definition like \"100px\" then we want to apply\n * that only to the top of the target point, leaving the container at 0.\n * Whereas a named offset like \"end\" should be applied to both.\n */\n offsetDefinition = [offset, namedEdges[offset] ? offset : `0`];\n }\n }\n targetPoint = resolveEdge(offsetDefinition[0], targetLength, targetInset);\n containerPoint = resolveEdge(offsetDefinition[1], containerLength);\n return targetPoint - containerPoint;\n}\n\nexport { resolveOffset };\n","import { interpolate, defaultOffset } from '@motionone/utils';\nimport { calcInset } from './inset.es.js';\nimport { ScrollOffset } from './presets.es.js';\nimport { resolveOffset } from './offset.es.js';\n\nconst point = { x: 0, y: 0 };\nfunction resolveOffsets(container, info, options) {\n let { offset: offsetDefinition = ScrollOffset.All } = options;\n const { target = container, axis = \"y\" } = options;\n const lengthLabel = axis === \"y\" ? \"height\" : \"width\";\n const inset = target !== container ? calcInset(target, container) : point;\n /**\n * Measure the target and container. If they're the same thing then we\n * use the container's scrollWidth/Height as the target, from there\n * all other calculations can remain the same.\n */\n const targetSize = target === container\n ? { width: container.scrollWidth, height: container.scrollHeight }\n : { width: target.clientWidth, height: target.clientHeight };\n const containerSize = {\n width: container.clientWidth,\n height: container.clientHeight,\n };\n /**\n * Reset the length of the resolved offset array rather than creating a new one.\n * TODO: More reusable data structures for targetSize/containerSize would also be good.\n */\n info[axis].offset.length = 0;\n /**\n * Populate the offset array by resolving the user's offset definition into\n * a list of pixel scroll offets.\n */\n let hasChanged = !info[axis].interpolate;\n const numOffsets = offsetDefinition.length;\n for (let i = 0; i < numOffsets; i++) {\n const offset = resolveOffset(offsetDefinition[i], containerSize[lengthLabel], targetSize[lengthLabel], inset[axis]);\n if (!hasChanged && offset !== info[axis].interpolatorOffsets[i]) {\n hasChanged = true;\n }\n info[axis].offset[i] = offset;\n }\n /**\n * If the pixel scroll offsets have changed, create a new interpolator function\n * to map scroll value into a progress.\n */\n if (hasChanged) {\n info[axis].interpolate = interpolate(defaultOffset(numOffsets), info[axis].offset);\n info[axis].interpolatorOffsets = [...info[axis].offset];\n }\n info[axis].progress = info[axis].interpolate(info[axis].current);\n}\n\nexport { resolveOffsets };\n","function calcInset(element, container) {\n let inset = { x: 0, y: 0 };\n let current = element;\n while (current && current !== container) {\n if (current instanceof HTMLElement) {\n inset.x += current.offsetLeft;\n inset.y += current.offsetTop;\n current = current.offsetParent;\n }\n else if (current instanceof SVGGraphicsElement && \"getBBox\" in current) {\n const { top, left } = current.getBBox();\n inset.x += left;\n inset.y += top;\n /**\n * Assign the next parent element as the tag.\n */\n while (current && current.tagName !== \"svg\") {\n current = current.parentNode;\n }\n }\n }\n return inset;\n}\n\nexport { calcInset };\n","import { mix } from './mix.es.js';\nimport { noopReturn } from './noop.es.js';\nimport { fillOffset, defaultOffset } from './offset.es.js';\nimport { progress } from './progress.es.js';\nimport { getEasingForSegment } from './easing.es.js';\nimport { clamp } from './clamp.es.js';\n\nfunction interpolate(output, input = defaultOffset(output.length), easing = noopReturn) {\n const length = output.length;\n /**\n * If the input length is lower than the output we\n * fill the input to match. This currently assumes the input\n * is an animation progress value so is a good candidate for\n * moving outside the function.\n */\n const remainder = length - input.length;\n remainder > 0 && fillOffset(input, remainder);\n return (t) => {\n let i = 0;\n for (; i < length - 2; i++) {\n if (t < input[i + 1])\n break;\n }\n let progressInRange = clamp(0, 1, progress(input[i], input[i + 1], t));\n const segmentEasing = getEasingForSegment(easing, i);\n progressInRange = segmentEasing(progressInRange);\n return mix(output[i], output[i + 1], progressInRange);\n };\n}\n\nexport { interpolate };\n","import { isFunction, noopReturn } from '@motionone/utils';\nimport { updateScrollInfo } from './info.es.js';\nimport { resolveOffsets } from './offsets/index.es.js';\n\nfunction measure(container, target = container, info) {\n /**\n * Find inset of target within scrollable container\n */\n info.x.targetOffset = 0;\n info.y.targetOffset = 0;\n if (target !== container) {\n let node = target;\n while (node && node != container) {\n info.x.targetOffset += node.offsetLeft;\n info.y.targetOffset += node.offsetTop;\n node = node.offsetParent;\n }\n }\n info.x.targetLength =\n target === container ? target.scrollWidth : target.clientWidth;\n info.y.targetLength =\n target === container ? target.scrollHeight : target.clientHeight;\n info.x.containerLength = container.clientWidth;\n info.y.containerLength = container.clientHeight;\n}\nfunction createOnScrollHandler(element, onScroll, info, options = {}) {\n const axis = options.axis || \"y\";\n return {\n measure: () => measure(element, options.target, info),\n update: (time) => {\n updateScrollInfo(element, info, time);\n if (options.offset || options.target) {\n resolveOffsets(element, info, options);\n }\n },\n notify: isFunction(onScroll)\n ? () => onScroll(info)\n : scrubAnimation(onScroll, info[axis]),\n };\n}\nfunction scrubAnimation(controls, axisInfo) {\n controls.pause();\n controls.forEachNative((animation, { easing }) => {\n var _a, _b;\n if (animation.updateDuration) {\n if (!easing)\n animation.easing = noopReturn;\n animation.updateDuration(1);\n }\n else {\n const timingOptions = { duration: 1000 };\n if (!easing)\n timingOptions.easing = \"linear\";\n (_b = (_a = animation.effect) === null || _a === void 0 ? void 0 : _a.updateTiming) === null || _b === void 0 ? void 0 : _b.call(_a, timingOptions);\n }\n });\n return () => {\n controls.currentTime = axisInfo.progress;\n };\n}\n\nexport { createOnScrollHandler };\n","import { __rest } from 'tslib';\nimport { resize } from '../resize/index.es.js';\nimport { createScrollInfo } from './info.es.js';\nimport { createOnScrollHandler } from './on-scroll-handler.es.js';\n\nconst scrollListeners = new WeakMap();\nconst resizeListeners = new WeakMap();\nconst onScrollHandlers = new WeakMap();\nconst getEventTarget = (element) => element === document.documentElement ? window : element;\nfunction scroll(onScroll, _a = {}) {\n var { container = document.documentElement } = _a, options = __rest(_a, [\"container\"]);\n let containerHandlers = onScrollHandlers.get(container);\n /**\n * Get the onScroll handlers for this container.\n * If one isn't found, create a new one.\n */\n if (!containerHandlers) {\n containerHandlers = new Set();\n onScrollHandlers.set(container, containerHandlers);\n }\n /**\n * Create a new onScroll handler for the provided callback.\n */\n const info = createScrollInfo();\n const containerHandler = createOnScrollHandler(container, onScroll, info, options);\n containerHandlers.add(containerHandler);\n /**\n * Check if there's a scroll event listener for this container.\n * If not, create one.\n */\n if (!scrollListeners.has(container)) {\n const listener = () => {\n const time = performance.now();\n for (const handler of containerHandlers)\n handler.measure();\n for (const handler of containerHandlers)\n handler.update(time);\n for (const handler of containerHandlers)\n handler.notify();\n };\n scrollListeners.set(container, listener);\n const target = getEventTarget(container);\n window.addEventListener(\"resize\", listener, { passive: true });\n if (container !== document.documentElement) {\n resizeListeners.set(container, resize(container, listener));\n }\n target.addEventListener(\"scroll\", listener, { passive: true });\n }\n const listener = scrollListeners.get(container);\n const onLoadProcesss = requestAnimationFrame(listener);\n return () => {\n var _a;\n if (typeof onScroll !== \"function\")\n onScroll.stop();\n cancelAnimationFrame(onLoadProcesss);\n /**\n * Check if we even have any handlers for this container.\n */\n const containerHandlers = onScrollHandlers.get(container);\n if (!containerHandlers)\n return;\n containerHandlers.delete(containerHandler);\n if (containerHandlers.size)\n return;\n /**\n * If no more handlers, remove the scroll listener too.\n */\n const listener = scrollListeners.get(container);\n scrollListeners.delete(container);\n if (listener) {\n getEventTarget(container).removeEventListener(\"scroll\", listener);\n (_a = resizeListeners.get(container)) === null || _a === void 0 ? void 0 : _a();\n window.removeEventListener(\"resize\", listener);\n }\n };\n}\n\nexport { scroll };\n","export default function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}","function _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nexport default function _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n Object.defineProperty(Constructor, \"prototype\", {\n writable: false\n });\n return Constructor;\n}","const defaultTimestep = (1 / 60) * 1000;\nconst getCurrentTime = typeof performance !== \"undefined\"\n ? () => performance.now()\n : () => Date.now();\nconst onNextFrame = typeof window !== \"undefined\"\n ? (callback) => window.requestAnimationFrame(callback)\n : (callback) => setTimeout(() => callback(getCurrentTime()), defaultTimestep);\n\nexport { defaultTimestep, onNextFrame };\n","import { onNextFrame, defaultTimestep } from './on-next-frame.mjs';\nimport { createRenderStep } from './create-render-step.mjs';\n\nconst maxElapsed = 40;\nlet useDefaultElapsed = true;\nlet runNextFrame = false;\nlet isProcessing = false;\nconst frame = {\n delta: 0,\n timestamp: 0,\n};\nconst stepsOrder = [\n \"read\",\n \"update\",\n \"preRender\",\n \"render\",\n \"postRender\",\n];\nconst steps = stepsOrder.reduce((acc, key) => {\n acc[key] = createRenderStep(() => (runNextFrame = true));\n return acc;\n}, {});\nconst sync = stepsOrder.reduce((acc, key) => {\n const step = steps[key];\n acc[key] = (process, keepAlive = false, immediate = false) => {\n if (!runNextFrame)\n startLoop();\n return step.schedule(process, keepAlive, immediate);\n };\n return acc;\n}, {});\nconst cancelSync = stepsOrder.reduce((acc, key) => {\n acc[key] = steps[key].cancel;\n return acc;\n}, {});\nconst flushSync = stepsOrder.reduce((acc, key) => {\n acc[key] = () => steps[key].process(frame);\n return acc;\n}, {});\nconst processStep = (stepId) => steps[stepId].process(frame);\nconst processFrame = (timestamp) => {\n runNextFrame = false;\n frame.delta = useDefaultElapsed\n ? defaultTimestep\n : Math.max(Math.min(timestamp - frame.timestamp, maxElapsed), 1);\n frame.timestamp = timestamp;\n isProcessing = true;\n stepsOrder.forEach(processStep);\n isProcessing = false;\n if (runNextFrame) {\n useDefaultElapsed = false;\n onNextFrame(processFrame);\n }\n};\nconst startLoop = () => {\n runNextFrame = true;\n useDefaultElapsed = true;\n if (!isProcessing)\n onNextFrame(processFrame);\n};\nconst getFrameData = () => frame;\n\nexport default sync;\nexport { cancelSync, flushSync, getFrameData };\n","function createRenderStep(runNextFrame) {\n let toRun = [];\n let toRunNextFrame = [];\n let numToRun = 0;\n let isProcessing = false;\n let flushNextFrame = false;\n const toKeepAlive = new WeakSet();\n const step = {\n schedule: (callback, keepAlive = false, immediate = false) => {\n const addToCurrentFrame = immediate && isProcessing;\n const buffer = addToCurrentFrame ? toRun : toRunNextFrame;\n if (keepAlive)\n toKeepAlive.add(callback);\n if (buffer.indexOf(callback) === -1) {\n buffer.push(callback);\n if (addToCurrentFrame && isProcessing)\n numToRun = toRun.length;\n }\n return callback;\n },\n cancel: (callback) => {\n const index = toRunNextFrame.indexOf(callback);\n if (index !== -1)\n toRunNextFrame.splice(index, 1);\n toKeepAlive.delete(callback);\n },\n process: (frameData) => {\n if (isProcessing) {\n flushNextFrame = true;\n return;\n }\n isProcessing = true;\n [toRun, toRunNextFrame] = [toRunNextFrame, toRun];\n toRunNextFrame.length = 0;\n numToRun = toRun.length;\n if (numToRun) {\n for (let i = 0; i < numToRun; i++) {\n const callback = toRun[i];\n callback(frameData);\n if (toKeepAlive.has(callback)) {\n step.schedule(callback);\n runNextFrame();\n }\n }\n }\n isProcessing = false;\n if (flushNextFrame) {\n flushNextFrame = false;\n step.process(frameData);\n }\n },\n };\n return step;\n}\n\nexport { createRenderStep };\n","function velocityPerSecond(velocity, frameDuration) {\n return frameDuration ? velocity * (1000 / frameDuration) : 0;\n}\n\nexport { velocityPerSecond };\n","function addUniqueItem(arr, item) {\n if (arr.indexOf(item) === -1)\n arr.push(item);\n}\nfunction removeItem(arr, item) {\n const index = arr.indexOf(item);\n if (index > -1)\n arr.splice(index, 1);\n}\n// Adapted from array-move\nfunction moveItem([...arr], fromIndex, toIndex) {\n const startIndex = fromIndex < 0 ? arr.length + fromIndex : fromIndex;\n if (startIndex >= 0 && startIndex < arr.length) {\n const endIndex = toIndex < 0 ? arr.length + toIndex : toIndex;\n const [item] = arr.splice(fromIndex, 1);\n arr.splice(endIndex, 0, item);\n }\n return arr;\n}\n\nexport { addUniqueItem, moveItem, removeItem };\n","import { addUniqueItem, removeItem } from './array.mjs';\n\nclass SubscriptionManager {\n constructor() {\n this.subscriptions = [];\n }\n add(handler) {\n addUniqueItem(this.subscriptions, handler);\n return () => removeItem(this.subscriptions, handler);\n }\n notify(a, b, c) {\n const numSubscriptions = this.subscriptions.length;\n if (!numSubscriptions)\n return;\n if (numSubscriptions === 1) {\n /**\n * If there's only a single handler we can just call it without invoking a loop.\n */\n this.subscriptions[0](a, b, c);\n }\n else {\n for (let i = 0; i < numSubscriptions; i++) {\n /**\n * Check whether the handler exists before firing as it's possible\n * the subscriptions were modified during this loop running.\n */\n const handler = this.subscriptions[i];\n handler && handler(a, b, c);\n }\n }\n }\n getSize() {\n return this.subscriptions.length;\n }\n clear() {\n this.subscriptions.length = 0;\n }\n}\n\nexport { SubscriptionManager };\n","import sync, { getFrameData } from 'framesync';\nimport { velocityPerSecond } from 'popmotion';\nimport { SubscriptionManager } from '../utils/subscription-manager.mjs';\n\nconst isFloat = (value) => {\n return !isNaN(parseFloat(value));\n};\n/**\n * `MotionValue` is used to track the state and velocity of motion values.\n *\n * @public\n */\nclass MotionValue {\n /**\n * @param init - The initiating value\n * @param config - Optional configuration options\n *\n * - `transformer`: A function to transform incoming values with.\n *\n * @internal\n */\n constructor(init) {\n /**\n * This will be replaced by the build step with the latest version number.\n * When MotionValues are provided to motion components, warn if versions are mixed.\n */\n this.version = \"7.4.0\";\n /**\n * Duration, in milliseconds, since last updating frame.\n *\n * @internal\n */\n this.timeDelta = 0;\n /**\n * Timestamp of the last time this `MotionValue` was updated.\n *\n * @internal\n */\n this.lastUpdated = 0;\n /**\n * Functions to notify when the `MotionValue` updates.\n *\n * @internal\n */\n this.updateSubscribers = new SubscriptionManager();\n /**\n * Functions to notify when the velocity updates.\n *\n * @internal\n */\n this.velocityUpdateSubscribers = new SubscriptionManager();\n /**\n * Functions to notify when the `MotionValue` updates and `render` is set to `true`.\n *\n * @internal\n */\n this.renderSubscribers = new SubscriptionManager();\n /**\n * Tracks whether this value can output a velocity. Currently this is only true\n * if the value is numerical, but we might be able to widen the scope here and support\n * other value types.\n *\n * @internal\n */\n this.canTrackVelocity = false;\n this.updateAndNotify = (v, render = true) => {\n this.prev = this.current;\n this.current = v;\n // Update timestamp\n const { delta, timestamp } = getFrameData();\n if (this.lastUpdated !== timestamp) {\n this.timeDelta = delta;\n this.lastUpdated = timestamp;\n sync.postRender(this.scheduleVelocityCheck);\n }\n // Update update subscribers\n if (this.prev !== this.current) {\n this.updateSubscribers.notify(this.current);\n }\n // Update velocity subscribers\n if (this.velocityUpdateSubscribers.getSize()) {\n this.velocityUpdateSubscribers.notify(this.getVelocity());\n }\n // Update render subscribers\n if (render) {\n this.renderSubscribers.notify(this.current);\n }\n };\n /**\n * Schedule a velocity check for the next frame.\n *\n * This is an instanced and bound function to prevent generating a new\n * function once per frame.\n *\n * @internal\n */\n this.scheduleVelocityCheck = () => sync.postRender(this.velocityCheck);\n /**\n * Updates `prev` with `current` if the value hasn't been updated this frame.\n * This ensures velocity calculations return `0`.\n *\n * This is an instanced and bound function to prevent generating a new\n * function once per frame.\n *\n * @internal\n */\n this.velocityCheck = ({ timestamp }) => {\n if (timestamp !== this.lastUpdated) {\n this.prev = this.current;\n this.velocityUpdateSubscribers.notify(this.getVelocity());\n }\n };\n this.hasAnimated = false;\n this.prev = this.current = init;\n this.canTrackVelocity = isFloat(this.current);\n }\n /**\n * Adds a function that will be notified when the `MotionValue` is updated.\n *\n * It returns a function that, when called, will cancel the subscription.\n *\n * When calling `onChange` inside a React component, it should be wrapped with the\n * `useEffect` hook. As it returns an unsubscribe function, this should be returned\n * from the `useEffect` function to ensure you don't add duplicate subscribers..\n *\n * ```jsx\n * export const MyComponent = () => {\n * const x = useMotionValue(0)\n * const y = useMotionValue(0)\n * const opacity = useMotionValue(1)\n *\n * useEffect(() => {\n * function updateOpacity() {\n * const maxXY = Math.max(x.get(), y.get())\n * const newOpacity = transform(maxXY, [0, 100], [1, 0])\n * opacity.set(newOpacity)\n * }\n *\n * const unsubscribeX = x.onChange(updateOpacity)\n * const unsubscribeY = y.onChange(updateOpacity)\n *\n * return () => {\n * unsubscribeX()\n * unsubscribeY()\n * }\n * }, [])\n *\n * return \n * }\n * ```\n *\n * @privateRemarks\n *\n * We could look into a `useOnChange` hook if the above lifecycle management proves confusing.\n *\n * ```jsx\n * useOnChange(x, () => {})\n * ```\n *\n * @param subscriber - A function that receives the latest value.\n * @returns A function that, when called, will cancel this subscription.\n *\n * @public\n */\n onChange(subscription) {\n return this.updateSubscribers.add(subscription);\n }\n clearListeners() {\n this.updateSubscribers.clear();\n }\n /**\n * Adds a function that will be notified when the `MotionValue` requests a render.\n *\n * @param subscriber - A function that's provided the latest value.\n * @returns A function that, when called, will cancel this subscription.\n *\n * @internal\n */\n onRenderRequest(subscription) {\n // Render immediately\n subscription(this.get());\n return this.renderSubscribers.add(subscription);\n }\n /**\n * Attaches a passive effect to the `MotionValue`.\n *\n * @internal\n */\n attach(passiveEffect) {\n this.passiveEffect = passiveEffect;\n }\n /**\n * Sets the state of the `MotionValue`.\n *\n * @remarks\n *\n * ```jsx\n * const x = useMotionValue(0)\n * x.set(10)\n * ```\n *\n * @param latest - Latest value to set.\n * @param render - Whether to notify render subscribers. Defaults to `true`\n *\n * @public\n */\n set(v, render = true) {\n if (!render || !this.passiveEffect) {\n this.updateAndNotify(v, render);\n }\n else {\n this.passiveEffect(v, this.updateAndNotify);\n }\n }\n /**\n * Returns the latest state of `MotionValue`\n *\n * @returns - The latest state of `MotionValue`\n *\n * @public\n */\n get() {\n return this.current;\n }\n /**\n * @public\n */\n getPrevious() {\n return this.prev;\n }\n /**\n * Returns the latest velocity of `MotionValue`\n *\n * @returns - The latest velocity of `MotionValue`. Returns `0` if the state is non-numerical.\n *\n * @public\n */\n getVelocity() {\n // This could be isFloat(this.prev) && isFloat(this.current), but that would be wasteful\n return this.canTrackVelocity\n ? // These casts could be avoided if parseFloat would be typed better\n velocityPerSecond(parseFloat(this.current) -\n parseFloat(this.prev), this.timeDelta)\n : 0;\n }\n /**\n * Registers a new animation to control this `MotionValue`. Only one\n * animation can drive a `MotionValue` at one time.\n *\n * ```jsx\n * value.start()\n * ```\n *\n * @param animation - A function that starts the provided animation\n *\n * @internal\n */\n start(animation) {\n this.stop();\n return new Promise((resolve) => {\n this.hasAnimated = true;\n this.stopAnimation = animation(resolve);\n }).then(() => this.clearAnimation());\n }\n /**\n * Stop the currently active animation.\n *\n * @public\n */\n stop() {\n if (this.stopAnimation)\n this.stopAnimation();\n this.clearAnimation();\n }\n /**\n * Returns `true` if this value is currently animating.\n *\n * @public\n */\n isAnimating() {\n return !!this.stopAnimation;\n }\n clearAnimation() {\n this.stopAnimation = null;\n }\n /**\n * Destroy and clean up subscribers to this `MotionValue`.\n *\n * The `MotionValue` hooks like `useMotionValue` and `useTransform` automatically\n * handle the lifecycle of the returned `MotionValue`, so this method is only necessary if you've manually\n * created a `MotionValue` via the `motionValue` function.\n *\n * @public\n */\n destroy() {\n this.updateSubscribers.clear();\n this.renderSubscribers.clear();\n this.stop();\n }\n}\nfunction motionValue(init) {\n return new MotionValue(init);\n}\n\nexport { MotionValue, motionValue };\n","import { useRef } from 'react';\n\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */\nfunction useConstant(init) {\n const ref = useRef(null);\n if (ref.current === null) {\n ref.current = init();\n }\n return ref.current;\n}\n\nexport { useConstant };\n","const isBrowser = typeof document !== \"undefined\";\n\nexport { isBrowser };\n","import { useLayoutEffect, useEffect } from 'react';\nimport { isBrowser } from './is-browser.mjs';\n\nconst useIsomorphicLayoutEffect = isBrowser ? useLayoutEffect : useEffect;\n\nexport { useIsomorphicLayoutEffect };\n","import { scroll } from '@motionone/dom';\nimport { motionValue } from './index.mjs';\nimport { useConstant } from '../utils/use-constant.mjs';\nimport { useIsomorphicLayoutEffect } from '../utils/use-isomorphic-effect.mjs';\n\nconst createScrollMotionValues = () => ({\n scrollX: motionValue(0),\n scrollY: motionValue(0),\n scrollXProgress: motionValue(0),\n scrollYProgress: motionValue(0),\n});\nfunction useScroll({ container, target, ...options } = {}) {\n const values = useConstant(createScrollMotionValues);\n useIsomorphicLayoutEffect(() => {\n return scroll(({ x, y }) => {\n values.scrollX.set(x.current);\n values.scrollXProgress.set(x.progress);\n values.scrollY.set(y.current);\n values.scrollYProgress.set(y.progress);\n }, {\n ...options,\n container: (container === null || container === void 0 ? void 0 : container.current) || undefined,\n target: (target === null || target === void 0 ? void 0 : target.current) || undefined,\n });\n }, []);\n return values;\n}\n\nexport { useScroll };\n","export default function _taggedTemplateLiteral(strings, raw) {\n if (!raw) {\n raw = strings.slice(0);\n }\n\n return Object.freeze(Object.defineProperties(strings, {\n raw: {\n value: Object.freeze(raw)\n }\n }));\n}","import { motion } from \"framer-motion\";\nimport styled from \"@emotion/styled\";\n\nconst draw = {\n hidden: { pathLength: 0, opacity: 0 },\n visible: (i) => {\n const delay = 1 + i * 0.02;\n return {\n pathLength: 1,\n opacity: 1,\n transition: {\n pathLength: { delay, type: \"spring\", duration: 0.7, bounce: 0 },\n opacity: { delay, duration: 0.01 },\n },\n };\n },\n};\n\nconst Div = styled.div`\n path,\n line,\n polyline,\n polygon {\n stroke-width: 3px;\n stroke-linecap: round;\n fill: transparent;\n stroke-width: 3;\n stroke: #491ec4;\n }\n`;\n\nexport function Draw() {\n return (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n );\n}\n","var _path, _path2, _path3, _path4, _path5, _path6, _g, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _g2, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _g3, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgTest1(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n \"data-name\": \"Layer 1\",\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 781.92 900.14\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M435.92 259.95l88.27 51.6c25.31 18.02 37.69 35.89 42.18 60.62.37 39.47.74 78.94 1.1 118.4.65 34.53-11.06 60.62-35.96 77.71-31.11 17.53-62.23 35.06-93.34 52.59-10.64 5.99-23.82 8.66-36.98 8.57-13.16.09-26.34-2.58-36.98-8.57-31.11-17.53-62.23-35.06-93.34-52.59-24.9-17.09-36.61-43.19-35.96-77.71.37-39.47.74-78.94 1.1-118.4 4.5-24.74 16.87-42.61 42.18-60.62l88.27-51.6c11.59-6.77 23.23-9.79 34.72-9.73 11.5-.06 23.13 2.96 34.72 9.73z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429.54 624.84c-8.76 3.22-18.56 4.67-28.34 4.61-10.37.07-20.75-1.57-29.89-5.2 5.25-.76 7.6-1.81 12.82-3.99 8.13 1.87 20.06-1.34 24.94-10.17 4.96 8.73 11.32 14.6 20.47 14.75z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M235.3 372.17c4.5-24.74 16.87-42.61 42.18-60.62\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M320.03 385.25L238.9 526.2c-2.99-8.64-4.7-17.62-4.7-26.11v-49.36l49.7-86.34c10.19 5.88 20.38 11.77 30.57 17.65l5.57 3.22zm-40.27-23.74c-2.66-1.37-5.31-2.74-7.97-4.12 5.15-2.44 10.65-4.5 16.89-5.73 3.1 1.63 6.2 3.27 9.3 4.9-6.73 1.06-13.3 2.28-18.22 4.95zm-1.37-15.81c-6.53-3.61-10.57-8.71-11.28-15.81-8.24 5.5-13.63 13.29-17.27 22.49 5.99-1.11 11.19-.35 15.78 1.83 2.89-3.76 6.78-6.85 12.77-8.51zm70.77 56.37l-34.06 59.18c35.34 36.13 11 78.01-18.17 76.07-8.2-.54-13.82-5.2-19.23-11.1l-18.99 32.98c3.6 3.68 7.45 6.77 11.45 9.08l44.31 25.58c14.76 8.52 29.54 17.05 44.32 25.59 1.32.76 2.63 1.42 3.91 1.98l32.09-55.75v-89.74c0-26.12-16.24-56.9-36.04-68.33l-9.6-5.54z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M566.37 372.17c-4.5-24.74-16.87-42.61-42.18-60.62\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M500.86 538.02c15.67-.14 31.16-18.34 33.77-35.12 2.62-16.78-.59-32.86-10.11-38.22l-3.31-10.11 24.98-102.43c12.53.22 21.29 11.83 21.29 31.05v12.99l-42.96 176.14-37.28 21.52 13.61-55.83zm8.33-168.67l-11.02 6.36-22.95 94.1 3.11-3.25 1.25 2.73c2.1-2.81 4.46-5.26 7-7.28l22.6-92.67zm-28.6 16.51l-25.66 105.23c-4.75 6-6.59 15.41-5.92 24.26l-26.23 107.56c-9.57-3.03-15.89-13.82-15.89-30.13v-52.79l31.57-129.43c1.47-1.09 2.96-2.08 4.47-2.95 12.56-7.25 25.12-14.5 37.67-21.75zm-42.43 235.91a36.12 36.12 0 004.73-2.32l6.17-3.56 19.03-78.04c-3.51 1-6.59.49-9.2-1.09l-20.73 85.01zM370.42 398.95l-92.03-53.25c-16.73-9.68-14.63-26.74 4.67-37.9l82.7-47.85c20.84-12.06 49.33-12.06 70.17 0l82.7 47.85c19.3 11.17 21.4 28.22 4.67 37.9l-92.03 53.25c-15.41 8.92-45.42 8.92-60.84 0zm71.31-115.04c-10.77-20.22-64.19-21.74-79.89-3.2l-4.93 12.31-.57-5.18-21.53 1.09c-18.19.92-47.83 25.63-27.63 34.09l55.26 22.88.05-2.15c11.61 4.86 26.38 6.81 35.83 7.13 19.54.66 57.84-6.16 59.04-26.65-5.21-13.44-10.42-26.88-15.62-40.32z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M494.06 535.63l.02-.04c-.37-.2-.73-.42-1.08-.66l-11.69-6.72c-13.65-7.85-13.93-27.9-10.18-41.24 5.37-19.13 19.46-32.67 32.46-31.9 3.31.2 5.48 1.18 8.37 2.76l11.56 6.3c.29.16.66.43 1.03.73-2.74-13.12-10.1-22.86-20.78-25.29-18.23-4.15-39.22 14.57-46.87 41.83-7.65 27.26.93 52.72 19.16 56.88 5.89 1.34 12.07.3 17.99-2.65z\",\n fill: \"#6d6f7a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M494.06 535.63l.02-.04c-.37-.2-.73-.42-1.08-.66l-6.75-3.88-15 5.54c1.52.74 3.13 1.31 4.83 1.7 5.89 1.34 12.07.3 17.99-2.65zm-11.19-70.4c6.16-6.72 13.6-10.59 20.72-10.16 3.31.2 5.48 1.18 8.37 2.76l11.56 6.3c.29.16.66.43 1.03.73-2.74-13.12-10.1-22.86-20.78-25.29-18.23-4.15-39.22 14.57-46.87 41.83-.91 3.24-1.59 6.46-2.05 9.62l27.07-27.15.95 1.35z\",\n fill: \"#babac1\"\n }))), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M482.63 501.71l-1.51 14.87-10.77-6.22-.73-16.16 13.01 7.51z\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M485.4 463.36l9.12-7.83 14.32 8.18-10.64 6.97-12.81-7.33zm-8.93 10.6l13.01 7.36 5.31-6.59-13.97-7.91-4.35 7.14z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M526.39 465.1l9.29 20.48-32.21-2.46-3.69-16.15 15.39-4.39 11.22 2.52z\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M510.45 536.34l-19.98-.43-6.74-14.59-2.21-13.53 9.1-4.2 19.83 32.75zm15.79-13.94l-31.95-28.02-3.04 6.18 24.25 32.59 10.75-10.75z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487.41 529.29c8.7 9.28 22.07 10.23 31.75 1.3 10.65-9.82 20.79-30.05 16.13-47.56-1.55-5.82-5.22-11.63-11.92-18.61l-.91 4.53c7.49 13.88 4.99 29.93-.08 40.3-7.37 15.07-15.86 25.15-34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M528.02 467.83c-2.1-1.38-3.88-2.62-4.64-3.4l-2.59-.59 1.68 5.11c2.79 5.16 4.19 10.62 4.59 15.97l4.38.33 5.15.39c-.88-7.36-4.44-13.69-8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M483.25 520.96c1.67 1.3 3.56 2.23 5.66 2.71 11.47 2.61 24.66-9.16 29.47-26.3 4.15-14.8.7-28.75-7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M482.08 510.2c.98.63 2.05 1.08 3.21 1.35 8.13 1.85 17.5-6.5 20.91-18.66 3-10.7.4-20.77-5.81-24.31-7.06 5.63-13.1 14.84-16.21 25.93-1.52 5.41-2.19 10.73-2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M496.87 492.83l19.85 9.45M503.89 486.44l16.02 2.94M503.31 478.9l16.23-.68M501.37 472.87l13.83-3.82\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M483.23 502.19c.64.41 1.34.71 2.1.88 5.32 1.21 11.43-4.25 13.66-12.2 1.96-6.99.26-13.58-3.8-15.88-4.61 3.68-8.56 9.7-10.6 16.95-.99 3.54-1.43 7.01-1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487.41 529.29c3.21 3.43 7.07 5.72 11.14 6.8l9.92.21c.56-.12 1.13-.27 1.69-.44l-4.29-7.09c-4.86 2.17-10.8 2.56-18.45.52zm38.67-6.73l.13-.18-7.39-6.48c-2.5 4.17-5.25 7.68-8.56 10.23l5.23 7.03 10.59-10.6z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M509.8 514.11l-13.56-12.9M500.9 521.65l-9.9-15.1M491.53 524.02l-5.45-15.69\"\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M519.46 463.01c-13.73-3.13-29.53 10.97-35.29 31.49-5.76 20.52.7 39.69 14.43 42.82 13.73 3.13 29.53-10.97 35.29-31.49 5.76-20.52-.7-39.69-14.43-42.82z\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M503.59 455.07c-13-.78-27.09 12.77-32.46 31.9-3.74 13.34-3.47 33.4 10.18 41.24l11.69 6.72c1.72 1.13 3.58 1.94 5.6 2.4 13.73 3.13 29.53-10.97 35.29-31.49 4.7-16.74 1.26-32.58-7.61-39.55-.82-.64-2-1.74-2.75-2.15l-11.56-6.3c-2.89-1.58-5.06-2.57-8.37-2.76z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M488.14 529.34c1.25.68 2.6 1.19 4.03 1.51 12.88 2.94 27.71-10.3 33.12-29.56 4.61-16.42.88-31.91-8.29-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M494.06 535.63l.02-.04c-.37-.2-.73-.42-1.08-.66l-11.69-6.72c-13.65-7.85-13.93-27.9-10.18-41.24 5.37-19.13 19.46-32.67 32.46-31.9 3.31.2 5.48 1.18 8.37 2.76l11.56 6.3c.29.16.66.43 1.03.73-2.74-13.12-10.1-22.86-20.78-25.29-18.23-4.15-39.22 14.57-46.87 41.83-7.65 27.26.93 52.72 19.16 56.88 5.89 1.34 12.07.3 17.99-2.65z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M406.88 536.39l48-27.71m72.34-41.77l40.26-23.25M438.15 440.1c-3.2-.73-6.88 2.56-8.23 7.34-1.34 4.79.16 9.25 3.36 9.98 3.2.73 6.88-2.56 8.23-7.34 1.34-4.79-.16-9.25-3.36-9.98zM438.15 583.44c-3.2-.73-6.88 2.56-8.23 7.34-1.34 4.78.16 9.25 3.36 9.98 3.2.73 6.88-2.56 8.23-7.34 1.34-4.78-.16-9.25-3.36-9.98zM544.79 379.86c-3.2-.73-6.88 2.56-8.23 7.34-1.34 4.78.16 9.25 3.36 9.98 3.2.73 6.88-2.56 8.23-7.34 1.34-4.78-.16-9.25-3.36-9.98zM544.79 523.21c-3.2-.73-6.88 2.56-8.23 7.34-1.34 4.78.16 9.25 3.36 9.98 3.2.73 6.88-2.56 8.23-7.34 1.34-4.78-.16-9.25-3.36-9.98z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M372.96 347.14l-20.35-9.16 13.22-40.14 16.92 7.03-9.79 42.27zm15 2.77l6.21-43.38-5.6-.59-8.62 42.82 8.01 1.15z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M420.78 304.43l10.01-3.58 16.26 38.58-13.24 6.24-13.02-41.25zm-11.4 2.87l7.19 41.35 8.17-1.3-10.01-40.58-5.36.52z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M456.03 320.84c.21.55 1.32 3.63 1.31 3.75-.42 14.41-25.55 26.03-56.49 26.03s-56.5-11.82-56.5-26.4\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M345.64 320.97c-.21.55-1.32 3.63-1.31 3.75.42 14.41 25.55 26.03 56.49 26.03s56.5-11.82 56.5-26.4\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442.39 287.39c-5.43 16.7-28.94 19.33-42.22 19.42-14.24.09-38.36-4.84-40.17-20.26-2.14 4.69-4.29 9.37-6.43 14.06 11.56 15.96 29.98 18.54 45.95 18.64 15.39.1 39.32-3.51 48.09-17.37l-5.22-14.49z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M394.16 306.58c-1.68-.13-3.41-.33-5.18-.59l-.41-.04-2.51 12.45c2.11.29 4.22.49 6.32.62l1.78-12.44zm-11.97-1.94c-5.04-1.26-9.91-3.13-13.81-5.74l-2.55-1.06-3.77 11.46c5.41 4.07 11.52 6.52 17.82 7.97l2.87-12.4-.55-.23z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M428.32 301.73c-2.14.96-4.4 1.75-6.71 2.4l-.84.3 3.73 11.81c3.88-1.04 7.63-2.38 11.04-4.09l-4.76-11.29-2.46.88zm-16.97 16.91a95.1 95.1 0 006.1-.86l-2.71-10.99-5.36.52 1.97 11.34z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.6 296.23c-.18.42-1.08 2.81-1.08 2.9.34 11.13 20.98 20.11 46.38 20.11s46.38-9.13 46.38-20.39\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M370.25 289.21c-1.8 1.43-3.24 3-4.27 4.66l-1.37 2.23-1.73-1.98c-.94-1.07-1.66-2.18-2.15-3.32-.51-1.18-.77-2.4-.77-3.63 0-2.61 1.17-5.09 3.29-7.36 2.01-2.15 4.92-4.11 8.5-5.78 3.81-1.78 8.36-3.21 13.4-4.18 4.84-.93 10.14-1.44 15.7-1.44s10.86.51 15.7 1.44c5.04.97 9.59 2.4 13.4 4.18 3.58 1.67 6.49 3.64 8.5 5.78 2.12 2.26 3.29 4.75 3.29 7.36 0 1.24-.27 2.45-.77 3.63-.49 1.14-1.21 2.25-2.15 3.32l-1.73 1.98-1.37-2.23c-1.02-1.67-2.47-3.23-4.28-4.67-1.88-1.5-4.15-2.84-6.73-4-3.25-1.46-7.01-2.64-11.1-3.43-3.97-.77-8.27-1.19-12.76-1.19s-8.8.42-12.77 1.2c-4.11.8-7.87 1.98-11.12 3.44-2.57 1.16-4.83 2.5-6.71 4z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M427.61 273.02c.81.32 1.59.66 2.34 1.01 3.58 1.67 6.49 3.64 8.5 5.78 2.12 2.26 3.29 4.75 3.29 7.36 0 1.24-.27 2.45-.77 3.63-.49 1.14-1.21 2.25-2.15 3.32l-1.73 1.98-1.37-2.23c-1.02-1.67-2.47-3.23-4.28-4.67-1.88-1.5-4.15-2.84-6.73-4-.68-.31-1.39-.6-2.11-.88l5.01-11.29z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.84 389.57c5.02 0 9.11-1.91 9.11-4.25s-4.09-4.25-9.11-4.25-9.11 1.91-9.11 4.25 4.09 4.25 9.11 4.25zM392.66 267.41c-.6-.57-.94-1.21-.94-1.88 0-2.35 4.08-4.25 9.11-4.25s9.11 1.9 9.11 4.25c0 .46-.16.9-.44 1.31M509.9 331.47c5.02 0 9.11-1.91 9.11-4.25s-4.09-4.25-9.11-4.25-9.11 1.91-9.11 4.25 4.09 4.25 9.11 4.25zM291.78 331.47c5.02 0 9.11-1.91 9.11-4.25s-4.09-4.25-9.11-4.25-9.11 1.91-9.11 4.25 4.09 4.25 9.11 4.25z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.85 290.01c12.57 0 22.76 4.76 22.76 10.64 0 1.16-.4 2.27-1.13 3.32-6.3 1.8-13.71 2.84-21.63 2.84s-15.33-1.04-21.63-2.84c-.73-1.04-1.13-2.16-1.13-3.32 0-5.87 10.19-10.64 22.76-10.64z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M487.52 366.4l-24.45-14.12M465.87 277.28l-21.83 12.61M334.49 278.04l23.26 13.43\"\n })), _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n fillRule: \"evenodd\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M548.63 421.38l9.26-5.34v21.52l-9.26 5.35v-21.53zM548.63 465.81l9.26-5.35v21.53l-9.26 5.34v-21.52z\"\n })), _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M394.79 536.39l-48-27.71m-72.34-41.77l-40.26-23.25M363.52 440.1c3.2-.73 6.88 2.56 8.23 7.34 1.34 4.79-.16 9.25-3.36 9.98-3.2.73-6.88-2.56-8.23-7.34-1.34-4.79.16-9.25 3.36-9.98zM363.52 583.44c3.2-.73 6.88 2.56 8.23 7.34 1.34 4.78-.16 9.25-3.36 9.98-3.2.73-6.88-2.56-8.23-7.34-1.34-4.78.16-9.25 3.36-9.98zM256.88 523.21c3.2-.73 6.88 2.56 8.23 7.34 1.34 4.78-.16 9.25-3.36 9.98-3.2.73-6.88-2.56-8.23-7.34-1.34-4.78.16-9.25 3.36-9.98z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#fff\",\n fillRule: \"evenodd\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M382.45 496.1l-9.26-5.35v21.53l9.26 5.34V496.1zM382.45 540.53l-9.26-5.35v21.52l9.26 5.35v-21.52z\"\n })), _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M392.8 459.29c-3.02-8.29-4.08-11.76-7.1-20.05 12.46-6.22 18.08-18.1 17.22-33.62 6.59-1 13.17-2.01 19.75-3.01 3.36 26.99-13.95 51.94-29.86 56.68z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M370.42 398.95l-92.03-53.25c-16.73-9.68-14.63-26.74 4.67-37.9l82.7-47.85c20.84-12.06 49.33-12.06 70.17 0l82.7 47.85c19.3 11.17 21.4 28.22 4.67 37.9l-92.03 53.25c-15.41 8.92-45.42 8.92-60.84 0z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M385.37 293.71l-8.62 8.66-5.78-13.71c1.73-1.28 3.74-2.44 6-3.45 1.59-.72 3.3-1.36 5.11-1.93l3.29 10.43zm12.54-2.18l-5.97-.07-2.45-9.95c2.1-.36 4.29-.62 6.55-.78l1.88 10.79z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M370.97 288.66l-4.8-11.39c.94-.68 1.98-1.34 3.1-1.97l5.15-2.41c1.25-.49 2.57-.95 3.94-1.37l3.71 11.75c-1.81.57-3.52 1.21-5.11 1.93-2.25 1.01-4.27 2.17-6 3.45zm15.58-19.06c2.37-.41 4.84-.72 7.39-.92l2.09 12.05c-2.26.16-4.44.42-6.55.78l-2.94-11.91z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.84 372.71c-50.33 0-91.14-20.25-91.14-45.23 0-17.54 20.11-32.74 49.51-40.24l-3.05 7.56c-.28.08-.55.17-.83.25l-3.1 8.32c-2.34 1.34-4.49 2.87-6.6 4.44l-11.54-3.3c-9.91 6.34-15.77 14.14-15.77 22.58 0 5.85 2.81 11.39 7.83 16.35l13.61-3.65c5.07 4 10.71 6.86 16.74 8.97l-2.53 9.95c13.31 4.28 29.45 6.8 46.86 6.8s33.55-2.51 46.86-6.8l-2.53-9.95c6.03-2.1 11.67-4.96 16.74-8.97l13.61 3.65c5.02-4.96 7.83-10.5 7.83-16.35 0-8.44-5.85-16.25-15.77-22.58l-11.54 3.3c-2.11-1.57-4.26-3.1-6.6-4.44l-3.1-8.32c-.27-.08-.55-.17-.83-.25l-3.05-7.56c29.4 7.5 49.51 22.71 49.51 40.24 0 24.98-40.8 45.23-91.14 45.23z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M309.94 324.18c2.34-16.13 21.73-29.91 49.27-36.94l-3.05 7.56c-.28.08-.55.17-.83.25l-3.1 8.32c-2.34 1.34-4.49 2.87-6.6 4.44l-11.54-3.3c-9.91 6.34-15.77 14.14-15.77 22.58v.6l-8.4-3.52z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.15 302.8c-.4-3.47-1.71-6.51-4.82-8.69l4.61-10.38c5.99 2.85 10.96 6.04 15.01 11.99-3.78 3.89-9.41 6.89-14.79 7.08z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.36 296.92c2.71-9.31 18.02-16.45 36.5-16.45s33.75 7.12 36.48 16.41\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\",\n d: \"M509.18 369.35l-41.45 24.37v37.11l41.44-23.49.01-37.99z\"\n })), _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M509.18 369.35l-11.05 6.5-10.68 43.81 10.98-6.23 10.75-44.08zm-28.68 16.86l-12.77 7.51v37.11l2.2-1.25 10.58-43.37z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M509.17 407.34v-37.11M467.73 430.83v-37.11M502.73 410.74l-6.27-5.31-13.47 7.64-6.31 12.43\"\n })), _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\",\n d: \"M467.38 604.43v-32.45l41.44-23.49-.1 32.96-41.34 22.98z\"\n })), _g2 || (_g2 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#45454d\",\n d: \"M292.49 369.35l41.45 24.37v37.11l-41.44-23.49-.01-37.99z\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#6d6f7a\",\n d: \"M319.91 385.47l14.03 8.25v34.77l-1.01 1.77-29.26-16.59 16.24-28.2z\"\n }))), _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#45454d\",\n fillRule: \"evenodd\",\n d: \"M334.29 604.43v-32.45l-41.44-23.49.1 32.96 41.34 22.98z\"\n })), _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#babac1\",\n fillRule: \"evenodd\",\n d: \"M487.37 593.31l9.25-37.9 12.2-6.92-.1 32.96-21.35 11.86z\"\n })), _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M475.14 567.92l6.27 5.3 13.47-7.64 6.31-12.43M467.38 605.79v-33.81M536.4 494.13l1.83-3.6.15-58.45-29.21-24.74-41.44 23.49-29.41 57.96-.14 58.45 29.2 24.74 41.44-23.51 7.85-15.48M508.82 581.08v-32.59\"\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M531.49 356.47c-14.75 8.51-29.52 17.05-44.28 25.57-14.76 8.52-29.52 17.04-44.29 25.57-19.8 11.43-36.04 42.21-36.04 68.33v116.85c0 26.12 16.22 38.09 36.01 26.67 14.79-8.54 29.57-17.06 44.32-25.59l44.31-25.58c19.8-11.43 35.96-42.08 35.96-68.2V383.2c0-26.12-16.17-38.17-35.99-26.73z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M265.27 494.13l-1.82-3.6-.16-58.45 29.21-24.74 41.44 23.49 29.41 57.96.14 58.45-29.2 24.74-41.44-23.51-7.85-15.48M333.94 430.83v-37.11\"\n })), _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M270.18 356.47c14.75 8.51 29.52 17.05 44.28 25.57 14.76 8.52 29.52 17.04 44.29 25.57 19.8 11.43 36.04 42.21 36.04 68.33v116.85c0 26.12-16.22 38.09-36.01 26.67-14.79-8.54-29.57-17.06-44.32-25.59l-44.31-25.58c-19.8-11.43-35.96-42.08-35.96-68.2V383.2c0-26.12 16.17-38.17 35.99-26.73z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M292.5 407.34v-37.11M334.29 605.79v-33.81M292.85 581.08v-32.59M324.99 567.04l-6.26 5.31-13.48-7.64-6.3-12.43M312.84 365.64l24.41-14.1M256.88 379.86c3.2-.73 6.88 2.56 8.23 7.34 1.34 4.78-.16 9.25-3.36 9.98-3.2.73-6.88-2.56-8.23-7.34-1.34-4.78.16-9.25 3.36-9.98zM298.95 410.74l6.26-5.31 13.47 7.64 6.31 12.43M448.21 358.53l-3.05-9.76c5.9-2.12 13.21-5.7 16.74-8.97l13.42 3.77\"\n })), _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M443.38 287.24c28.87 7.61 48.54 22.72 48.54 40.11 0 25.05-40.78 45.35-91.08 45.35s-91.08-20.31-91.08-45.35c0-17.73 20.43-33.08 50.2-40.54\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M445.68 294.6c22.67 6.87 37.67 18.8 37.67 32.36 0 21.29-36.94 38.55-82.51 38.55s-82.51-17.26-82.51-38.55c0-13.44 14.72-25.27 37.03-32.17\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M449.44 303.38c2.65 1.44 5.01 2.97 6.6 4.44l11.85-3.33M352.23 303.38c-2.65 1.44-5.01 2.97-6.6 4.44l-11.85-3.33M353.46 358.53l3.05-9.76c-5.9-2.12-13.21-5.7-16.74-8.97l-13.42 3.77\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M359.57 285.2l-14.61 37.64M442.1 285.07l14.61 37.64M400.85 290.01c12.57 0 22.76 4.76 22.76 10.64 0 1.16-.4 2.27-1.13 3.32-6.3 1.8-13.71 2.84-21.63 2.84s-15.33-1.04-21.63-2.84c-.73-1.04-1.13-2.16-1.13-3.32 0-5.87 10.19-10.64 22.76-10.64z\"\n })), _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.85 306.8c22.88 0 41.54-8.72 41.54-19.41s-18.66-19.41-41.54-19.41-41.54 8.72-41.54 19.41 18.66 19.41 41.54 19.41z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M438.12 621.79c-21.3 9.82-55.63 10.67-75.84-.54\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.46 515.95c1.35-.78 2.58-1.06 3.46-.89.89.17 1.44.79 1.44 1.82v14.08c0 1.03-.55 2.29-1.44 3.49a11.99 11.99 0 01-3.46 3.1c-1.35.78-2.58 1.07-3.47.9-.89-.17-1.44-.79-1.44-1.83v-14.08c0-1.03.55-2.29 1.44-3.49.89-1.19 2.12-2.33 3.47-3.11zM248.85 441.32c-1.35-.78-2.58-1.06-3.46-.89-.89.17-1.44.79-1.44 1.82v14.08c0 1.03.55 2.29 1.44 3.49a11.99 11.99 0 003.46 3.1c1.35.78 2.58 1.07 3.47.9.89-.17 1.44-.79 1.44-1.83v-14.08c0-1.03-.55-2.29-1.44-3.49-.89-1.19-2.12-2.33-3.47-3.1z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _g3 || (_g3 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M307.61 535.63l-.02-.04c.37-.2.73-.42 1.08-.66l11.69-6.72c13.65-7.85 13.92-27.9 10.18-41.24-5.37-19.13-19.46-32.67-32.46-31.9-3.31.2-5.48 1.18-8.37 2.76l-11.56 6.3c-.3.16-.66.43-1.04.73 2.74-13.12 10.1-22.86 20.78-25.29 18.23-4.15 39.22 14.57 46.87 41.83 7.65 27.26-.93 52.72-19.16 56.88-5.89 1.34-12.07.3-17.99-2.65z\",\n fill: \"#6d6f7a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M321.45 527.53c8.5-5.59 11.32-16.24 11.14-26.56.26-7.82-1.61-16.31-6.29-24.85-2.34-4.54-5.18-8.52-8.33-11.77a81.87 81.87 0 00-2.87-3.11l8.19-14.23c9.35 7.49 17.35 19.7 21.48 34.39 7.65 27.26-.93 52.72-19.16 56.88-5.71 1.3-11.7.36-17.46-2.4 4.96-1.63 9.52-4.51 13.32-8.36z\",\n fill: \"#45454d\"\n }))), _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M282.22 461.92c4.97-.03 7.83.27 14.35 3.44l13.01-7.46c-6-3.31-11.38-3.68-15.85-1.96l-11.51 5.98z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.65 515.27l9.77 11.56 29.65-18.89-12.52-8.86-26.9 16.18zm-3.4-11.77l30.66-15.96.94 8.05-29.82 14.47-1.77-6.56z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M291.87 514.11l13.56-12.9\"\n })), _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M328.79 484.31l-4.04-10.74-12.97 7.41 5.02 10.18 11.98-6.86zm3.48 13.68l-12.65 7.16-1.83-8.56 13.61-7.71.87 9.11z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M275.28 465.1l-9.29 20.48 32.21-2.46 3.69-16.15-15.39-4.39-11.22 2.52z\"\n })), _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M314.27 529.29c-8.7 9.28-22.07 10.23-31.75 1.3-10.65-9.82-20.79-30.05-16.13-47.56 1.55-5.82 5.22-11.63 11.92-18.61l.91 4.53c-7.49 13.88-5 29.93.08 40.3 7.37 15.07 15.86 25.15 34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.66 467.83c4.05-2.66 3.54-2.82 8.33-3.67l-2.77 4.79c-2.79 5.16-4.19 10.62-4.59 15.97l-4.38.33-5.15.39c.88-7.36 4.44-13.69 8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M318.43 520.96c-1.67 1.3-3.56 2.23-5.66 2.71-11.47 2.61-24.66-9.16-29.47-26.3-4.15-14.8-.7-28.75 7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M319.6 510.2c-.98.63-2.05 1.08-3.21 1.35-8.13 1.85-17.5-6.5-20.91-18.66-3-10.7-.4-20.77 5.81-24.31 7.06 5.63 13.1 14.84 16.21 25.93 1.52 5.41 2.19 10.73 2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M304.8 492.83l-19.85 9.45M297.79 486.44l-16.03 2.94M298.36 478.9l-16.23-.68M300.3 472.87l-13.83-3.82\"\n })), _path76 || (_path76 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M318.45 502.19c-.64.41-1.34.71-2.1.88-5.32 1.21-11.43-4.25-13.66-12.2-1.96-6.99-.26-13.58 3.8-15.88 4.62 3.68 8.56 9.7 10.6 16.95.99 3.54 1.43 7.01 1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path77 || (_path77 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M300.77 521.65l9.9-15.1M310.15 524.02l5.44-15.69\"\n })), _path78 || (_path78 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M282.21 463.01c13.73-3.13 29.53 10.97 35.29 31.49 5.76 20.52-.7 39.69-14.43 42.82s-29.53-10.97-35.29-31.49c-5.76-20.52.7-39.69 14.43-42.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path79 || (_path79 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.65 515.27l9.77 11.56 7.18-4.57-7.09-9.09-1.25-3.07-8.61 5.18zm4.29-15.77l2.62 6.42-8.54 4.14-1.77-6.56 7.69-4z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path80 || (_path80 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M313.53 529.34c-1.25.68-2.6 1.19-4.03 1.51-12.89 2.94-27.71-10.3-33.12-29.56-4.61-16.42-.88-31.91 8.29-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path81 || (_path81 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M298.08 455.07c13-.78 27.09 12.77 32.46 31.9 3.74 13.34 3.47 33.4-10.18 41.24l-11.69 6.72a16.995 16.995 0 01-5.6 2.4c-13.73 3.13-29.53-10.97-35.29-31.49-4.7-16.74-1.26-32.58 7.61-39.55.82-.64 2-1.74 2.75-2.15l11.56-6.3c2.89-1.58 5.06-2.57 8.37-2.76z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path82 || (_path82 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M307.61 535.63l-.02-.04c.37-.2.73-.42 1.08-.66l11.69-6.72c13.65-7.85 13.92-27.9 10.18-41.24-5.37-19.13-19.46-32.67-32.46-31.9-3.31.2-5.48 1.18-8.37 2.76l-11.56 6.3c-.3.16-.66.43-1.04.73 2.74-13.12 10.1-22.86 20.78-25.29 18.23-4.15 39.22 14.57 46.87 41.83 7.65 27.26-.93 52.72-19.16 56.88-5.89 1.34-12.07.3-17.99-2.65z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgTest1);\nexport default __webpack_public_path__ + \"static/media/test1.287ab65d45d6c58cad34c46755bedb75.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _g, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgTest2(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n \"data-name\": \"Layer 1\",\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 781.92 900.14\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.13 264.38h.26c39.63 7.36 67.65 25.44 67.65 46.58v125.29c.1.02.2.04.31.06 13.73 3.13 20.19 22.3 14.43 42.82-2.89 10.3-8.31 18.98-14.73 24.68v60.53c0 18.46-21.38 34.6-53.2 43.29-34.35 9.38-77.36 9.14-111.37-.93-30-8.88-49.92-24.53-49.92-42.35v-60.53c-6.42-5.7-11.84-14.38-14.73-24.68-5.76-20.52.7-39.69 14.43-42.82.1-.02.2-.04.31-.06V310.97c0-21.19 28.16-39.31 67.95-46.64 5.6-7.62 21.08-13.1 39.3-13.1s33.77 5.51 39.34 13.16z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.31 340.58c6.16 0 11.15 11.38 11.15 25.41s-4.99 25.41-11.15 25.41h-.27v-50.8h.27zM276.28 340.58c-6.16 0-11.15 11.38-11.15 25.41s4.99 25.41 11.15 25.41h.27v-50.8h-.27z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M498.28 438.41l9.29 20.48-32.21-2.47-3.69-16.15 15.39-4.38 11.22 2.52z\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M482.33 509.65l-19.98-.43-6.74-14.59-2.21-13.53 9.1-4.2 19.83 32.75zm15.79-13.94l-31.95-28.02-3.04 6.18 24.25 32.59 10.75-10.75z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M459.29 502.59c8.7 9.28 22.07 10.23 31.75 1.3 10.65-9.82 20.78-30.05 16.13-47.56-1.55-5.82-5.22-11.63-11.92-18.61l-.91 4.53c7.49 13.88 4.99 29.93-.08 40.3-7.37 15.07-15.86 25.15-34.97 20.04zM308.55 502.65c-8.7 9.28-22.07 10.23-31.75 1.3-10.65-9.82-20.78-30.05-16.13-47.56 1.55-5.82 5.22-11.63 11.92-18.61l.91 4.53c-7.49 13.88-4.99 29.92.08 40.3 7.37 15.07 15.86 25.15 34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M499.9 441.14c-2.1-1.38-3.88-2.62-4.64-3.4l-3.85-1.22 2.93 5.74c2.79 5.16 4.19 10.62 4.59 15.97l4.38.33 5.15.39c-.88-7.36-4.45-13.69-8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.79 290.04c22.88 0 41.54-8.72 41.54-19.41s-18.66-19.41-41.54-19.41-41.54 8.72-41.54 19.41 18.66 19.41 41.54 19.41z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.19 263.55c40.76 6.99 69.85 25.28 69.85 46.75 0 27.49-47.7 49.78-106.54 49.78s-106.55-22.29-106.55-49.78c0-2.75.49-5.45 1.4-8.08l67.48 27.53 50.48 3.35 28.45-8.44 10.56-7.46 3.96-9.73-15.85-40.85-3.25-3.06zm-108.53 9.99l27.91-.1 6.34-9.73c-12.76 2.25-24.36 5.61-34.25 9.83z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M425.42 491.72l-3.52-21.75 31.5 11.12 3.3 18.36-31.28-7.73zM318.39 416.94l-12.97-3.72-14.65 2.75-18.44 21.76 18.33 1.04 27.73-21.83z\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M269.31 438.41l-9.29 20.48 32.21-2.47 3.69-16.15-15.39-4.38-11.22 2.52z\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M269.31 438.41l-9.29 20.48 8.84-.68c.72-8.13 3.34-15.18 7.46-21.38l-7.01 1.57z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M445.44 421.19l16.12-7.92 23.34 22.79-12.63 5.82-26.83-20.7zm-11.89 11.79l30.03 20.46 4.32-8.78-27.5-20.28-6.85 8.6zM342.92 448.6l-8.93-14.13-28.38 17.67 5.8 11.4 31.51-14.95zm2.5 16.06l-32.89 12.89-1-9.74 31.53-13.63 2.37 10.48zM265.67 488.57l9.77 11.56 29.65-18.89-12.52-8.86-26.9 16.18zm-3.4-11.77l30.66-15.96.94 8.05-29.82 14.47-1.77-6.56z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M265.67 488.57l9.77 11.56 7.18-4.57-7.09-9.09-1.26-3.07-8.61 5.18zm4.29-15.77l2.62 6.42-8.54 4.14-1.77-6.56 7.69-4z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.91 330.37l-20.35-9.16 13.22-40.14 16.92 7.03-9.79 42.27zm15 2.77l6.21-43.38-5.6-.59-8.62 42.82 8.01 1.15z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M403.72 287.66l10.01-3.58 16.26 38.58-13.24 6.24-13.02-41.25zm-11.4 2.87l7.19 41.35 8.17-1.3L397.67 290l-5.35.52zM431.99 355.74l34.22-12.24v69.89c-8.98-1.19-18.51 3.33-26.43 11.63s0 .01 0 .01c-2.83 2.96-5.46 6.41-7.78 10.25v-79.54zm-28.62 4.49l14.62-2.62v96.47l-14.62 19.51V360.24zm14.62 171.33v79.87c-4.87 1.16-9.75 1.91-14.62 2.19v-94.24c3.79 5.82 8.83 10.3 14.62 12.17zm48.22-20.35v84.95c-11.48 6.05-22.88 10.42-34.22 13.58v-78.92c1.02-.43 2.05-.93 3.09-1.53l31.13-18.07z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M335.44 355.18l-34.22-12.24v69.89c12.19-1.61 25.39 7.29 34.22 21.89v-79.54zm9.06.25l8.72 2.47v254l-8.72-1.18V355.43zm-43.28 153.68v86.42c10.29 6.74 21.73 11.19 34.22 13.58v-109.7c-2.91 2.84-4.42 4.39-10.36 5.74-5.94 1.35-14.46 3.13-23.86 3.96z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.39 264.38c39.63 7.36 67.65 25.44 67.65 46.58 0 27.67-48.02 50.11-107.25 50.11s-107.25-22.43-107.25-50.11c0-21.23 28.26-39.38 68.17-46.68\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M426.84 273.41c28.85 6.92 48.48 20.58 48.48 36.29 0 22.71-40.98 41.11-91.53 41.11s-91.53-18.41-91.53-41.11c0-15.7 19.59-29.34 48.39-36.27\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M438.97 304.08c.21.55 1.32 3.63 1.32 3.75-.42 14.41-25.55 26.03-56.5 26.03s-56.5-11.82-56.5-26.4\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M328.58 304.21c-.21.55-1.32 3.63-1.31 3.75.42 14.41 25.55 26.03 56.49 26.03s56.5-11.82 56.5-26.4\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.79 280.1c11.17 0 20.28-4.26 20.28-9.47s-9.11-9.47-20.28-9.47-20.28 4.26-20.28 9.47 9.11 9.47 20.28 9.47z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.79 267.48c6.02 0 11.25 1.5 13.92 3.71-2.66 2.21-7.9 3.71-13.92 3.71s-11.25-1.5-13.92-3.71c2.66-2.21 7.9-3.71 13.92-3.71z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.04 564.35c0 27.67-48.02 50.11-107.25 50.11s-107.25-22.43-107.25-50.11\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.04 326.15c0 27.67-48.02 50.11-107.25 50.11s-107.25-22.43-107.25-50.11M491.05 351.18c0 13.92-12.14 26.51-31.75 35.59v27.2M276.55 527.14c2.58 15.26 20.57 28.54 34.08 34.78v-53.64\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M478.97 420.03c-3.33-3.63-8.39-5.74-10.8-6.29-16.99-3.87-36.54 13.58-43.67 38.98-6.34 22.59-.72 43.86 12.56 51.01 2.26 1.22 5.09 2.08 7.61 2.42M288.62 420.03c3.33-3.63 8.39-5.74 10.8-6.29 16.99-3.87 36.54 13.58 43.67 38.98 6.34 22.59.72 43.86-12.56 51.01-2.26 1.22-5.09 2.08-7.61 2.42M455.13 494.26c1.67 1.3 3.56 2.23 5.67 2.71 11.47 2.61 24.66-9.16 29.47-26.3 4.15-14.8.7-28.75-7.7-33.97M312.45 494.26c-1.67 1.3-3.56 2.23-5.67 2.71-11.47 2.61-24.66-9.16-29.47-26.3-4.15-14.8-.7-28.75 7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M453.96 483.5c.98.63 2.05 1.08 3.21 1.35 8.13 1.85 17.5-6.5 20.91-18.66 3-10.7.4-20.77-5.81-24.31-7.06 5.63-13.1 14.84-16.21 25.93-1.52 5.41-2.19 10.73-2.1 15.69zM313.62 483.5c-.98.63-2.05 1.08-3.21 1.35-8.13 1.85-17.5-6.5-20.91-18.66-3-10.7-.4-20.77 5.81-24.31 7.06 5.63 13.1 14.84 16.21 25.93 1.52 5.41 2.19 10.73 2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M468.75 466.13l19.86 9.45M298.83 466.13l-19.85 9.45M285.9 487.42l13.56-12.91M294.8 494.95l9.9-15.1M304.17 497.32l5.45-15.69M475.77 459.74l16.03 2.95M291.81 459.74l-16.03 2.95M475.2 452.2l16.23-.68M292.39 452.2l-16.23-.68M473.26 446.18l13.83-3.83M294.33 446.18l-13.83-3.83\"\n })), _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M455.11 475.49c.64.41 1.34.71 2.1.88 5.32 1.21 11.43-4.25 13.67-12.2 1.96-6.99.26-13.58-3.8-15.88-4.61 3.68-8.56 9.7-10.6 16.95-.99 3.54-1.43 7.01-1.37 10.25zM312.47 475.49c-.64.41-1.34.71-2.1.88-5.32 1.21-11.43-4.25-13.67-12.2-1.96-6.99-.26-13.58 3.8-15.88 4.61 3.68 8.56 9.7 10.6 16.95.99 3.54 1.43 7.01 1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M380.74 599.04v-96.83c14.75-7.66 28.49-18.35 41.16-32.24M380.75 376.85v49.59c-12.15 11.78-23.69 19.75-37.54 27.8\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.79 461.14c1.83 0 3.32 1.44 3.32 3.31s-1.49 3.46-3.32 3.45c-1.83 0-3.32-1.59-3.32-3.45s1.48-3.31 3.32-3.3zM394.49 460.4c1.83-.25 3.32.96 3.32 2.79s-1.49 3.62-3.32 3.9c-1.83.28-3.32-1.09-3.32-2.94s1.48-3.5 3.32-3.75zM392.01 471.39c.92 1.46.37 3.57-1.22 4.66-1.59 1.09-3.61.67-4.53-.88-.92-1.55-.37-3.58 1.21-4.58 1.59-1 3.62-.66 4.53.81zM375.57 471.37c-.92 1.46-.37 3.57 1.22 4.65 1.59 1.09 3.61.67 4.53-.87.92-1.55.37-3.58-1.21-4.58-1.59-1-3.62-.66-4.53.8zM373.09 460.39c1.83.25 3.32 1.89 3.32 3.75s-1.48 3.22-3.32 2.94c-1.83-.28-3.32-2.06-3.32-3.89s1.48-3.04 3.32-2.79zM381.32 453.79c.92 1.61.37 3.64-1.21 4.48-1.59.84-3.62.13-4.53-1.54-.92-1.67-.37-3.61 1.22-4.39 1.59-.79 3.61-.16 4.53 1.45zM386.27 453.78c-.92 1.61-.37 3.65 1.21 4.49 1.59.84 3.62.12 4.53-1.55.92-1.67.37-3.6-1.22-4.39-1.59-.79-3.61-.16-4.53 1.45z\"\n }))), _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M451.77 506.48c3.97.29 7.93.59 11.9.88-8.88-6.97-12.31-22.81-7.61-39.55 5.76-20.52 21.56-34.62 35.29-31.49 1.02.23 1.99.55 2.93.96-2.64-3.2-5.28-6.39-7.93-9.58-19.27 1.59-29.68 8.33-38.01 27.24-8.3 18.86-6.18 41.17 3.43 51.55zM316.08 506.54c-3.97.29-7.93.59-11.9.88 8.88-6.97 12.31-22.81 7.61-39.55-5.76-20.52-21.56-34.62-35.29-31.49-1.02.23-1.99.55-2.93.96 2.64-3.2 5.29-6.39 7.93-9.58 19.27 1.58 29.68 8.33 38.01 27.24 8.3 18.86 6.18 41.17-3.43 51.55z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M290.72 438.73c-4.66-2.49-9.56-3.41-14.22-2.35-1.02.23-1.99.55-2.93.96 2.64-3.2 5.29-6.39 7.93-9.58 7.04.58 12.9 1.85 17.9 4.14l-8.68 6.83zM456.11 496.17c-1.25-3.53-1.97-7.54-2.13-11.83l-.58-3.24-10.19-3.6c-.25 7.03.75 13.72 2.84 19.32l10.65 2.63-.59-3.28z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M462.68 452.82c1.16-1.84 2.41-3.56 3.73-5.14l1.49-3.03-8.74-6.44c-2.27 2.22-4.34 4.84-6.27 7.95l9.78 6.66zm9.6-10.94l-9.1-7.02c4.09-2.89 8.81-4.78 14.41-5.95l7.32 7.14c-4.3.59-8.63 2.63-12.62 5.82z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M485.7 428.48c-.26-.06-1.51-.44-1.78-.49-15.25-2.81-32.53 12.9-38.9 35.59-5.16 18.4-1.6 35.83 7.88 43.93\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M496.95 438.71l-18.5-19.23\"\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M459.29 502.59c3.21 3.43 7.07 5.72 11.14 6.8l9.92.22c.56-.12 1.13-.27 1.69-.44l-4.29-7.09c-4.86 2.17-10.8 2.56-18.45.52zm38.67-6.73l.13-.18-7.39-6.48c-2.5 4.16-5.25 7.68-8.56 10.23l5.23 7.03 10.59-10.6z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M481.69 487.42l-13.56-12.91M472.79 494.95l-9.9-15.1M463.41 497.32l-5.44-15.69\"\n })), _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.35 436.32c-13.73-3.13-29.53 10.97-35.29 31.49-5.76 20.52.7 39.69 14.43 42.82 13.73 3.13 29.53-10.97 35.29-31.49 5.76-20.52-.7-39.69-14.43-42.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M460.03 502.64c1.25.68 2.6 1.19 4.03 1.51 12.88 2.94 27.71-10.3 33.12-29.56 4.61-16.42.88-31.91-8.29-37.95M307.82 502.7c-1.25.68-2.6 1.19-4.03 1.51-12.88 2.94-27.71-10.3-33.12-29.56-4.61-16.42-.88-31.91 8.3-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M470.49 510.63l-27.06-4.71\"\n })), _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M425.34 270.63c-5.43 16.7-28.94 19.33-42.22 19.42-14.24.09-38.36-4.84-40.17-20.26-2.14 4.69-4.29 9.37-6.43 14.06 11.56 15.97 29.98 18.54 45.95 18.64 15.4.1 39.32-3.51 48.09-17.37l-5.22-14.49z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M377.11 289.81c-1.68-.13-3.41-.33-5.18-.59l-.41-.04-2.51 12.45c2.11.29 4.22.49 6.32.62l1.78-12.44zm-11.97-1.94c-5.04-1.26-9.91-3.13-13.81-5.74l-2.55-1.06-3.77 11.46c5.41 4.07 11.52 6.52 17.82 7.97l2.87-12.4-.55-.23z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M411.26 284.97c-2.14.96-4.4 1.75-6.71 2.4l-.84.3 3.73 11.81c3.88-1.04 7.63-2.38 11.04-4.09l-4.76-11.29-2.46.88zm-16.97 16.91a95.1 95.1 0 006.1-.86l-2.71-10.99-5.35.52 1.97 11.34z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M338.54 279.46c-.17.42-1.08 2.81-1.08 2.9.34 11.13 20.98 20.11 46.38 20.11s46.38-9.13 46.38-20.39\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.79 290.04c22.88 0 41.54-8.72 41.54-19.41s-18.66-19.41-41.54-19.41-41.54 8.72-41.54 19.41 18.66 19.41 41.54 19.41zM342.51 268.44l-15.25 39.16\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M425.04 268.3l15.25 39.16\"\n })), _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M307.06 345.21l11.5-6.64\"\n })), _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M427.95 275.41l12.81-7.4\"\n })), _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M449 338.55l13.39 7.73M328.6 269.04l8.95 5.17M380.52 360.03v-9.24M278.31 307.58h14.01M475.21 307.58h15.83\"\n })), _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#babac1\",\n fillRule: \"evenodd\",\n d: \"M489.57 378.5l.3-18.84 11.09-6.37 2.17 13.14-13.56 12.07z\"\n })), _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.04 310.96v123.97m0 68.96v60.46M491.23 337.81c4 4.69 7.29 10.79 9.24 17.75 4.54 16.17.29 31.38-9.5 35.96\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#45454d\",\n fillRule: \"evenodd\",\n d: \"M278.02 378.5l-.3-18.84-11.1-6.37-2.16 13.14 13.56 12.07z\"\n })), _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M276.35 337.81c-4 4.69-7.29 10.79-9.24 17.75-4.54 16.17-.29 31.38 9.5 35.96M276.55 310.96V433.7m0 70v60.82\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M313.59 477.13c-.33-3.02-.92-6.12-1.8-9.26l-.05-.15 10.66-4.61c.91 3.26 1.53 6.56 1.9 9.83l-10.71 4.19zm1.42-30.83l-9.39 5.85 5.8 11.4 9.67-4.59c-.48-1.34-1-2.66-1.58-3.97-1.43-3.24-2.92-6.13-4.5-8.69z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M282.26 428.26c.33-.08 1.28-.24 1.61-.3 15.2-2.64 32.36 13.04 38.7 35.62 5.16 18.4 1.6 35.83-7.88 43.93\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M276.24 436.32c13.73-3.13 29.53 10.97 35.29 31.49 5.76 20.52-.7 39.69-14.43 42.82-13.73 3.13-29.53-10.97-35.29-31.49-5.76-20.52.7-39.69 14.43-42.82zM270.63 438.71l18.51-19.23\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M356.87 285.12l17.25-9.96M394.5 274.97l17.31 9.99M391.66 265.04l18-10.4M376.72 264.7l-17.08-9.86\"\n })), _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M335.44 371v22.89c-3.34-.74-6.59-1.56-9.72-2.45v-22.89c3.13.9 6.38 1.72 9.72 2.45zm-15.08 18.79c-3.4-1.12-6.65-2.34-9.72-3.64v-22.89c3.07 1.3 6.32 2.52 9.72 3.64v22.89zm-15.08-6.1c-3.54-1.74-6.78-3.61-9.72-5.59v-22.89c2.94 1.98 6.18 3.85 9.72 5.59v22.89z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M297.1 510.63l27.05-4.71\"\n })), _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M439.11 592.29v-23.03c15.05-3.6 28.56-10.56 40.69-20.53.25 7.44.5 14.88.74 22.32-11.8 11.36-26.22 17.15-41.43 21.25z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M439.11 592.29v-23.03c9.65-2.31 18.67-6 27.1-10.98v23.43c-8.43 4.81-17.61 8.03-27.1 10.58z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M479.81 571.75v-23.03c-9.09 8.57-23.23 15.7-40.69 20.53v23.03M479.81 560.24c-9.09 8.57-23.23 15.7-40.69 20.53\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M491.04 549.12c0 27.67-46.42 49.98-105.65 49.98s-108.84-22.63-108.84-50.3\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgTest2);\nexport default __webpack_public_path__ + \"static/media/test2.f144726d5da2b7e5ad9cf37c3bcc866c.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _g, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgTest3(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n \"data-name\": \"Layer 1\",\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 779.23 900.14\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M430.68 387.77c-3-4.38-6.01-8.76-9.01-13.14 9.17-10.45 17.49-16.09 24.66-15.36 6.15.63 12.4 2.57 15.75 16.93-10.19 5.89-20.72 9.26-31.4 11.57zm-95.97.05c3-4.38 6.01-8.76 9.01-13.14-9.17-10.45-17.49-16.09-24.66-15.36-6.15.63-12.4 2.57-15.75 16.93 10.19 5.89 20.72 9.26 31.4 11.57z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M243.41 369.22l33.95-50.26c1.56 14.86 10.46 24.64 21.63 31.93l4.03 25.26c10.29 5.63 19.81 9.34 31.69 11.67l13.55-20.15c11.32 1.88 22.76 2.84 34.34 2.8v-.11c11.57.04 23.01-.91 34.34-2.8l13.74 20.2c11.88-2.33 21.2-5.99 31.49-11.62l4.03-25.37c11.17-7.29 20.08-17.06 21.63-31.93l33.95 50.26c1.91 2.83 7.12 9.83 9.82 17.8 2.66 7.83 2.83 16.62 2.83 20l-.16 79.31c-.02 10.85.05 14.41-4.91 24.41l-42.11 84.74c-7.43 15.06-21.37 25.58-40.98 32.16-17.05 5.72-38.59 10.17-63.67 10.13v.11c-25.08.04-46.62-4.41-63.67-10.13-19.62-6.58-33.55-17.1-40.98-32.16l-42.1-84.74c-4.97-10-4.89-13.56-4.92-24.41l-.16-79.31c0-3.38.17-12.18 2.83-20 2.71-7.97 7.91-14.97 9.82-17.8zm251.1 75.73c-21.49-4.9-46.23 17.18-55.25 49.31-9.02 32.13 1.09 62.15 22.59 67.04 21.49 4.9 46.23-17.18 55.25-49.31 9.02-32.13-1.09-62.15-22.59-67.04zm-223.83 0c-21.49 4.9-31.61 34.91-22.59 67.04 9.02 32.13 33.75 54.21 55.25 49.31 21.49-4.9 31.61-34.91 22.59-67.04-9.02-32.13-33.75-54.21-55.25-49.31z\",\n fill: \"#e30038\",\n fillRule: \"evenodd\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M475.55 393.12c-6.65 3.43-13.79 6.14-21.16 8.5l15.29 30.01 12.97 12.61 18.65 1.93c1.66-.68 1.86-.76 3.52-1.45 5.38-3.37 10.26-6.97 14.43-10.88v42.14c1.39 9.39 1.59 18.98 0 28.88v18.95l8.25-9.44V424.2c7.57-11.52 9.22-25.66 1.18-44.07-19.93 10.15-30.18 23.01-30.94 38.51l7.08 26.08c-11.3-27.57-22.59-55.13-33.89-82.7 1.54 10.37 3.08 20.73 4.61 31.09-10.53 4.94-21.8 8.57-33.45 11.54 1.12-.23 2.24-.47 3.35-.7 5.43 10.87 10.87 21.74 16.3 32.62-3.55 4.96-6.39 10.86-8.32 17.95-15.74-28.48-31.48-56.97-47.22-85.45l10.72-1.5c8.39 12.36 16.77 24.73 25.16 37.09-3.81-5.63-7.61-11.26-11.42-16.89 9.2-3.14 18.41-6.28 27.61-9.41 1.38-.62 2.77-1.24 4.15-1.87 4.37 5.54 8.74 11.09 13.11 16.63zm-185.9 0l.62-2.82 8.18-36.95 4.32 23.12 14.52 5.92-3.79 19.27-23.86-8.53zm23.79 198.38c-1.97-.03-3.98-.27-6.16-1.35-1.61 2.29-3.23 4.58-4.84 6.86 6.1 3.35 10.02 2.05 11-5.51zm53.21 5.53c-9.01-3.87-16.52-8.39-22.69-15.16 4.88 11.6 13.99 24.99 24.45 29.96 15.32 7.27 20.43-2.82 8.8-11.19-6.44-4.63-9.64-7.84-14.81-13.12 1.12 3.86 1.87 5.94 4.25 9.5zm-63.78-141.42c-2.96-2.86-6.44-5.35-10.62-7.36l12.4-10.21c2.03 3.09 3.78 6.36 4.9 10.04-2.23 2.51-4.45 5.02-6.68 7.53zm168.68 159.21c-10.34 7.48-22.58 12.92-36.26 16.79l16.66-37.96c.37-2.51 3.04-2.33 5-3.02l4.98 6.67c1.64 2.2 3.61-.98 6.08-3.93 4.86-5.8 6.2-13.68 3-17.59-2.53-3.1-7.15-2.78-11.38.36l6.25-14.25c10.73 1.03 21.01-3.13 30.68-14.3l-25 67.23zm-30.81-56.59h.02l-10.55 2v-90.19l21.84-4.29c-4.81 7.63-8.58 15.61-11.28 23.95-4.96 15.37-6.97 33.54-1.44 49.02 2.6 7.27 6.64 13.01 11.9 17.48l.69-.13 3.72 3.57-31.99 74.64c-5.81.95-11.63 1.9-17.45 2.86 4.45-12.45 8.89-24.9 13.34-37.35 8.09-12.31 15.09-26.24 21.18-41.55zm-30.21-85.68l11.58-1.54-.33 90.41-11.24 1.13v-90zm-62.75-20.68c-6.59 1.67-9.33 3.17-15.29 6.03 7.93-23.2 18.92-40.22 34.67-47.99-9.83 9.09-17.33 23.99-19.38 41.96zm14.84-3.22c-.58-12.53.44-24.72 4.22-33.91-8.06 10.39-11.39 21.81-12.57 35.4 2.7-.82 6.3-1.05 8.35-1.49zm107.07-17.04c3.12-.53 5.95-.6 8.69-.17l-8.69.17zm8.7-.17c4.41.69 8.56 2.69 13.24 6.2l-13.24-6.2zm13.24 6.2zm0 0c2.96 2.22 6.12 5.04 9.69 8.51l-9.69-8.51z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.23 467.49c19.66 4.89 39.71 5.97 59.27 6.15 20.44.18 42.9-1.72 61.65-6.15-11.64-16.37-40.39-20.01-60.53-20.21-19.85-.19-49.28 4.68-60.39 20.21z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M325.53 559.23c2.69 6.57 5.39 13.15 8.08 19.72 27.69-8.96 46.62-6.5 59.89 3.61 4.5 3.43 4.92 6.94 3.26 12.15-3.63 11.41-8.87 21.39-17.73 22.73 13.09.95 22.31-6.32 29.39-16.63a86.66 86.66 0 013.77 7.99c11.15-13.47 20.96-29.1 27.58-49.83-33.52 6.37-66.16 6.69-98.18 2.66l7.35.7v-91.19l-8.98-1.13v91.42c-4.83-.63-9.64-1.36-14.43-2.18zm-72.54-119.27v18.11c-10.74 17.53-10.86 39.48 0 66v5.78l-13.09-12.77 39.07 81.08c8.13 14.68 31.51 30.4 48.46 32.73-6.67-10.73-13.33-21.46-19.99-32.18-11.58-2.75-15.72-10.65-14.03-22.59-3.7-5.96-7.4-11.92-11.11-17.88-11.73-6.63-20.93-16.91-29.31-28.4l-15.18-15.74v-90.21c-.85-1.42-.08-.66-.82-2.32 10.19-3.38 16.46-20.96 16.21-30.23 2.82 3.05 7.35 8.79 9.16 11.25 7.44-27.86 7.4-51.56-2.21-50.95 8.23-5.4 12.78-1.02 14.62 10.59 3.8-7.48 7.61-14.97 11.41-22.46l12.83 11.09c-3.12 14.08-6.23 28.15-9.35 42.23 5.92 3.16 13.7 6.04 20.53 8.26l-15.11 30.15-19.78 12.78c-1.77 1.14-8.9 1.96-10.77 2.92-1.38-.84-2.76-1.67-4.13-2.51-2.69-1.65-5.15-3.21-7.39-4.76zm21.77-77.71l.05 5.19c.01-1.74 0-3.47-.05-5.19zm192.75 211.48c-.54 4-1.38 7.62-3.15 10.08 1.8 2.38 3.61 4.75 5.41 7.12 3.93-8.27 4.37-14.65-2.26-17.21zm61.16-193.6c-5.23 2.84-10.13 5.94-14.66 9.32-4.11-20.05-11.61-34.31-22.88-31.34 3.11-13.57 12.32-11.44 27.78 6.75 3.25 5.09 6.51 10.18 9.76 15.27zM312.7 465.66l1.45.29-5.08-19.72 24.01-56.25 15.18-22.31 6.84 1.75-40.91 96.54 20.21 4.01v90.41c-6.82-1.38-13.64-2.76-20.47-4.14 10.6-10.71 15.24-25.31 15.24-39.68 0-15.73-5.82-32.77-16.47-50.89zm149.73-89.18l13.11 16.63-21.41-12.9 8.3-3.73zM299.82 561.85c3.76 0 7.43-1.26 11.04-3.54 15.16 25.93 30.33 51.87 45.5 77.8-4.19-.63-8.38-1.26-12.57-1.9-14.65-24.12-29.31-48.25-43.96-72.37zm94.33-113.89c3.18.28 6.36.57 9.55.85-5.97-21.06-14.03-36.59-26.25-41.14 11.34 10.04 14.58 25.81 16.71 40.29zm56.86 18.05c1.28-9.41 3.86-18.6 9.08-27.36l8.21 12.32c-6.03 4.61-11.76 9.67-17.29 15.04zm-8.36.52c-14.42-46.24-32.8-63.74-48.08-70.87-20.92-9.75-42.84 6.9-59.64 39.46 33.44-50.87 61.22-35.87 74.66 14.78 17.12 2.68 23.68 7.67 33.06 16.63z\",\n fill: \"#7e0530\",\n fillRule: \"evenodd\"\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M270.68 444.95c21.49-4.9 46.23 17.18 55.25 49.31 9.02 32.13-1.09 62.14-22.59 67.04-21.49 4.9-46.23-17.18-55.25-49.31-9.02-32.13 1.09-62.15 22.59-67.04zm223.83 0c-21.49-4.9-46.23 17.18-55.25 49.31-9.02 32.13 1.09 62.15 22.59 67.04 21.49 4.9 46.23-17.18 55.25-49.31 9.02-32.13-1.09-62.15-22.59-67.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.74 461.58c7.44 8.56 13.57 19.81 17.19 32.68 1.1 3.91 1.91 7.78 2.45 11.58l-41.19 54.43c-12.28-4.11-24.11-15.35-32.18-30.78l53.73-67.92z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M494.51 444.95L461.85 561.3c-4.43-1.01-8.37-3.09-11.76-6.03l29.45-109.67c5.01-1.49 10.08-1.78 14.98-.66zm24.78 31.3c-2.4-13.13-8.65-23.58-17.84-28.65l-30.67 114.24c10.3-1 20.74-7.4 29.39-17.46l19.12-68.13z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M277.95 595.59c11.04 31.88 70.97 42.85 106.74 42.85 33.91 0 94.25-13.41 102.29-42.85v27.15c-7.04 34.01-70.57 46.61-106.22 45.97-34.04-.61-92.31-10.42-102.81-45.97v-27.15z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M451.56 511.47c14.78 4.4 28.8-18.91 15.41-36.44 6.65-6.18 13.69-8.46 21.04-7.67 12.38 11.98 8.63 33.63 4.52 44.27-4.88 12.62-16.82 26.33-34.59 23.25-5.6-7.18-7.01-13.12-6.38-23.41zm-137.71 0c-14.78 4.4-28.8-18.91-15.41-36.44-6.65-6.18-13.69-8.46-21.04-7.67-12.39 11.98-8.63 33.63-4.52 44.27 4.88 12.62 16.82 26.33 34.59 23.25 5.6-7.18 7.01-13.12 6.38-23.41z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 339.89c57.64 0 104.65-21.96 104.65-48.89s-47.01-48.89-104.65-48.89S277.95 264.07 277.95 291s47.01 48.89 104.65 48.89z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M342.52 253.42c.64 19.03-16.73 31.31-21.91 44.33-6.99-2.13-14-4.21-20.98-6.4-26.87-8.45 16.29-36.29 42.88-37.94z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.58 256.89c-24.1.75-34.63 8.8-35.53 13.45-1.74 8.97 27.76 13.6 34.69 13.52 7.07-.09 36.37-3.62 35.88-12.65-.4-7.29-19.73-14.33-35.04-14.32z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#7e0530\",\n fillRule: \"evenodd\",\n d: \"M269.45 469.1l-9.29 20.48 32.21-2.46 3.7-16.15-15.4-4.39-11.22 2.52z\"\n })), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M285.4 540.34l19.98-.43 6.74-14.6 2.21-13.52-9.1-4.2-19.83 32.75zm-15.79-13.94l31.95-28.02 3.04 6.18-24.25 32.59-10.75-10.75z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.44 533.29c-8.7 9.28-22.07 10.23-31.75 1.3-10.65-9.82-20.79-30.05-16.13-47.56 1.55-5.82 5.22-11.63 11.92-18.61l.91 4.53c-7.49 13.88-4.99 29.92.08 40.3 7.37 15.07 15.86 25.15 34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M267.83 471.83c2.1-1.38 2.57-1.88 3.32-2.66l4.71-1.51-2.47 5.28c-2.79 5.16-4.19 10.62-4.59 15.97l-4.38.34-5.15.39c.88-7.36 4.44-13.69 8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M312.6 524.96c-1.67 1.3-3.56 2.23-5.66 2.71-11.47 2.61-24.66-9.16-29.47-26.3-4.15-14.8-.7-28.75 7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M313.77 514.2c-.98.63-2.05 1.09-3.21 1.35-8.13 1.85-17.49-6.5-20.91-18.66-3-10.7-.4-20.77 5.81-24.31 7.06 5.63 13.1 14.84 16.21 25.93 1.52 5.41 2.19 10.73 2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M298.98 496.83l-19.86 9.45M291.96 490.44l-16.03 2.94M292.53 482.9l-16.23-.68M294.47 476.87l-13.82-3.82\"\n })), _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M312.62 506.19c-.64.41-1.34.71-2.1.88-5.32 1.21-11.43-4.25-13.67-12.2-1.96-6.99-.26-13.58 3.8-15.88 4.61 3.68 8.56 9.7 10.6 16.95.99 3.54 1.43 7.01 1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.44 533.29c-3.21 3.43-7.07 5.72-11.14 6.8l-9.92.22c-.56-.12-1.13-.27-1.69-.44l4.29-7.09c4.86 2.17 10.8 2.56 18.45.52zm-38.67-6.73l-.13-.18 7.39-6.48c2.5 4.17 5.25 7.68 8.56 10.23l-5.23 7.03-10.59-10.6z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M286.04 518.11l13.56-12.9M294.94 525.65l9.9-15.1M304.32 528.02l5.44-15.69M307.7 533.34c-1.25.68-2.6 1.19-4.03 1.51-12.88 2.94-27.71-10.3-33.12-29.56-4.61-16.42-.88-31.91 8.29-37.95\"\n })), _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M276.38 467.01c13.73-3.13 29.53 10.97 35.29 31.49 5.76 20.52-.7 39.69-14.43 42.82-13.73 3.13-29.53-10.97-35.29-31.49-5.76-20.52.7-39.69 14.43-42.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#7e0530\",\n fillRule: \"evenodd\",\n d: \"M495.75 469.1l9.28 20.48-32.21-2.46-3.69-16.15 15.39-4.39 11.23 2.52z\"\n })), _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M479.8 540.34l-19.98-.43-6.74-14.6-2.21-13.52 9.1-4.2 19.83 32.75zm15.79-13.94l-31.95-28.02-3.04 6.18 24.25 32.59 10.75-10.75z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M456.76 533.29c8.7 9.28 22.07 10.23 31.75 1.3 10.65-9.82 20.79-30.05 16.13-47.56-1.55-5.82-5.22-11.63-11.92-18.61l-.91 4.53c7.49 13.88 5 29.92-.08 40.3-7.37 15.07-15.86 25.15-34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M497.37 471.83c-2.1-1.38-2.44-1.79-3.19-2.58l-4.77-.89 2.4 4.59c2.79 5.16 4.19 10.62 4.59 15.97l4.38.34 5.15.39c-.88-7.36-4.44-13.69-8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M452.6 524.96c1.67 1.3 3.56 2.23 5.67 2.71 11.47 2.61 24.66-9.16 29.47-26.3 4.15-14.8.7-28.75-7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M451.43 514.2c.98.63 2.05 1.09 3.21 1.35 8.13 1.85 17.49-6.5 20.91-18.66 3-10.7.4-20.77-5.81-24.31-7.06 5.63-13.1 14.84-16.21 25.93-1.52 5.41-2.19 10.73-2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M466.22 496.83l19.86 9.45M473.24 490.44l16.03 2.94M472.66 482.9l16.23-.68M470.72 476.87l13.83-3.82\"\n })), _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M452.58 506.19c.64.41 1.34.71 2.1.88 5.32 1.21 11.43-4.25 13.67-12.2 1.96-6.99.26-13.58-3.8-15.88-4.61 3.68-8.56 9.7-10.6 16.95-.99 3.54-1.43 7.01-1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M456.76 533.29c3.21 3.43 7.07 5.72 11.14 6.8l9.92.22c.56-.12 1.13-.27 1.69-.44l-4.29-7.09c-4.86 2.17-10.8 2.56-18.46.52zm38.67-6.73l.13-.18-7.39-6.48c-2.5 4.17-5.25 7.68-8.55 10.23l5.23 7.03 10.59-10.6z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M479.15 518.11l-13.56-12.9M470.26 525.65l-9.91-15.1M460.88 528.02l-5.45-15.69\"\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M488.81 467.01c-13.73-3.13-29.53 10.97-35.29 31.49-5.76 20.52.7 39.69 14.43 42.82 13.73 3.13 29.53-10.97 35.29-31.49 5.76-20.52-.7-39.69-14.43-42.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M457.49 533.34c1.25.68 2.6 1.19 4.03 1.51 12.89 2.94 27.71-10.3 33.12-29.56 4.61-16.42.88-31.91-8.29-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M494.51 444.95c-21.49-4.9-46.23 17.18-55.25 49.31-9.02 32.13 1.09 62.14 22.59 67.04 21.49 4.9 46.23-17.18 55.25-49.31 9.02-32.13-1.09-62.15-22.59-67.04zM270.68 444.95c21.49-4.9 46.23 17.18 55.25 49.31 9.02 32.13-1.09 62.14-22.59 67.04-21.49 4.9-46.23-17.18-55.25-49.31-9.02-32.13 1.09-62.15 22.59-67.04z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M438.9 265.02v17.18c0 14.45-25.08 26.16-56.01 26.16s-56.01-11.71-56.01-26.16V265c0 14.45 25.08 26.17 56.01 26.17s55.98-11.7 56.01-26.15z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 240.07c30.93 0 56.01 11.72 56.01 26.17s-25.08 26.17-56.01 26.17-56.01-11.71-56.01-26.17 25.08-26.17 56.01-26.17zm0 7.98c-21.06 0-38.13 7.98-38.13 17.82s17.07 17.82 38.13 17.82 38.13-7.98 38.13-17.82-17.07-17.82-38.13-17.82z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M397.36 291.49l8.07-1.35v17.19l-8.07 1.35v-17.19zm13.45-2.64c5.92-1.44 11.54-3.7 16.77-7.02v18.01c-5.98 3.46-11.48 5.18-16.77 6.2v-17.19z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M373.63 248.71l-8.34.36 6.61 26.31h7.6l-5.87-26.67zm-12.96 3.45l6.7 27.02-5.49 1.85-7.87-3.37-5.26-20.26 11.92-5.24z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M405.65 252.19c6.08 1.82 9.34 3.16 13.85 9.17l1.21 8.87c-7.09 6.72-16.44 10.63-24.44 11.67l9.38-29.7z\",\n fill: \"#7e0530\",\n fillRule: \"evenodd\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M351.73 275.93c3.36-6.69 15.9-11.66 30.87-11.66s27.78 5.08 30.97 11.88\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 264.27v10.56m26.7-3.97l-6.42 8.8m-46.99-8.8l6.42 8.8m39.97-12.11l-5.43 10.28m-33.95-10.28l5.43 10.28m24.82-12.63l-2.46 10.56m-18.67-10.56l2.46 10.56\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.07 306.23c-7.8-1.86-15.07-5.13-21.64-10.25v-17.2c6.57 5.24 13.89 8.29 21.59 10.24.02 5.74.04 11.47.05 17.21zm7.51 1.47c2.5.41 5 .83 7.5 1.24v-17.19c-2.5-.41-5-.83-7.5-1.24v17.19z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.54 285.98c9.97 0 18.1-2.4 18.1-5.34s-8.13-5.34-18.1-5.34-18.09 2.4-18.09 5.34 8.13 5.34 18.09 5.34z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.3 281.27c2.28-3.72 9.61-6.44 18.3-6.44s16.62 2.95 18.55 6.9\",\n fill: \"none\",\n stroke: \"#1a1a18\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M344.48 265.38c.33 1.53.67 3.06 1 4.58 18.02-18.6 65.46-15.03 74.1.26.38-1.45.77-2.9 1.15-4.36-2.93-23.47-71.44-21.84-76.25-.49z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M350.87 265.57c3.47-2.26 7.48-4.03 11.8-5.33l-1.99-8.04c-.14.05-.28.1-.42.14l-7.34 3.23c-1.46.84-2.78 1.77-3.92 2.76l1.88 7.23zm16.89-6.63c2.56-.54 5.19-.94 7.85-1.2l-1.83-8.31c-2.77.33-5.48.79-8.06 1.39l2.04 8.13z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M403.21 259.92c7.71 2.2 13.79 5.72 16.37 10.3l.74-2.81-.73-5.33c-1.74-3.57-5.2-6.39-9.75-8.5-1.26-.49-2.64-.93-4.2-1.4l-2.44 7.73z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 283.68c21 0 38.13-8 38.13-17.82s-17.13-17.82-38.13-17.82-38.13 8-38.13 17.82 17.13 17.82 38.13 17.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M346.81 270.58c3.34-7.81 18.09-13.69 35.79-13.69s33.23 6.2 36.03 14.32\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M351.73 320.57c.25-5.01.5-10.01.76-15.02-13.31-4-23.54-10.22-25.89-22.12.04-6.26.07-12.51.11-18.77-10.84 4.84-18.04 12.53-19.34 20.74-1.52 9.61 5.7 17.23 12.57 22.66 9.62 7.6 20.18 10.27 31.8 12.52z\",\n fill: \"#d30334\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M438.6 265.02h.59c11.76 6.22 18.9 14.4 18.9 23.35 0 19.48-33.8 35.27-75.5 35.27-37.66 0-68.87-12.88-74.57-29.72l43.67 13.32.8-1.73c8.69 2.59 19.02 4.09 30.09 4.09 30.93 0 56.01-11.71 56.01-26.16v-18.42z\",\n fill: \"#eb6675\"\n }))), _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M438.6 266.26v17.18c0 14.45-25.07 26.16-56.01 26.16s-56.01-11.71-56.01-26.16h0v-17.2c0 14.45 25.08 26.17 56.01 26.17s55.98-11.7 56.01-26.15z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M439.2 265.02c11.76 6.22 18.9 14.39 18.9 23.35 0 19.48-33.8 35.27-75.5 35.27s-75.5-15.79-75.5-35.27c0-9.13 7.42-17.45 19.6-23.71\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 292.41c30.85 0 56.01-11.75 56.01-26.17s-25.16-26.17-56.01-26.17-56.01 11.75-56.01 26.17 25.16 26.17 56.01 26.17zM277.95 318.1l-33.58 49.89c-11.73 15.94-19.18 33.87-8.4 52.93 5.51 9.75 15.37 18.69 28.55 26.31m48.2 18.44c20.91 5.08 44.69 7.96 69.89 7.96s48.64-2.83 69.45-7.85m48.51-18.47c13.24-7.64 23.14-16.6 28.67-26.39 10.78-19.06 3.33-36.99-8.4-52.93l-33.58-49.89\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237.4 469.35c2.13 3.3 4.76 6.49 7.85 9.57m83.85 36.24c4.74.83 9.59 1.56 14.54 2.17m16.88 1.62a325.743 325.743 0 0044.47-.02m16.87-1.63c4.81-.6 9.53-1.31 14.13-2.12m83.76-36.07c2.98-2.94 5.54-6 7.64-9.15\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.94 493.05c0 14.44 9.24 27.87 25.11 39.06m57.5 24.04c20.71 4.96 44.18 7.75 69.05 7.75s48.55-2.82 69.33-7.82m57.17-23.93c15.9-11.21 25.16-24.65 25.16-39.1M230.94 493.05l-.2-92.38M534.25 493.05l.21-92.38\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M443.15 467.49c-5.29-11.4-30.3-20.04-60.37-20.04s-55.71 8.86-60.56 20.47\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M435.56 447.06c-8.48-8.32-28.92-14.18-52.78-14.18s-45.57 6.24-53.54 14.97M435.42 571.17c-3.81-3.58-9.85-6.69-17.42-9.05m-70.87.26c-7.46 2.42-13.36 5.57-17 9.18M267.46 418.65c-1.25-16.21-13.46-29.67-29.39-37.57M497.74 418.65c1.25-16.21 13.46-29.66 29.39-37.57M494.55 404.22c1.16-15.12 11.86-27.84 26.22-35.9M270.65 404.22c-1.16-15.12-11.86-27.84-26.22-35.9M501.78 446.59c-29.47-25.58-44.52-19.37-50.89 20.23M263.41 446.59c29.47-25.58 44.52-19.37 50.89 20.23\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.23 467.49c15.57-49.75 37.92-74.48 60.37-74.22 22.44-.26 44.79 24.47 60.37 74.22M325.53 559.23c15.34 43.15 36.17 64.59 57.07 64.34 20.95.25 41.82-21.29 57.17-64.62M248.89 361.26c31.76-33.75 33.47 9.4 11.48 83.47M516.3 361.26c-31.76-33.75-33.47 9.4-11.48 83.47M492.74 584.95c-3.97-5.9 1.58-23.63 19.47-55.09M272.46 584.95c3.97-5.9-1.58-23.63-19.47-55.09M343.54 499.69c5.47.62 11.09 1.08 16.87 1.4v35.06c-5.68-.16-11.32-.84-16.87-1.68v-34.78zM421.66 499.69c-5.47.62-11.09 1.08-16.87 1.4v35.06c5.68-.16 11.32-.84 16.87-1.68v-34.78zM534.32 444.03c-1.79 3.79-3.92 7.46-6.69 10.82v33.65c2.38-2.8 4.74-6.48 6.73-10.32M230.87 444.03c1.79 3.79 3.92 7.46 6.69 10.82v33.65c-2.38-2.8-4.74-6.48-6.74-10.32\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M475.55 393.12l-13.38-16.97M289.65 393.12l13.37-16.97\"\n })), _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M459.89 598.78l-6.25 26.26M305.25 598.77l6.31 26.27\"\n })), _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.6 339.98c-20.47-.29-41.95-3.52-58.8-8.53-23.59-7.02-38.84-18.02-45.86-35.37v26.13c1.79 14.37 10.08 22.76 21.05 28.67l4.03 25.26c2.39-13.74 11.63-18.03 18.78-16.75 6.76 1.21 12.86 4.92 21.41 15.7l5.05-7.42a211.31 211.31 0 0034.34 2.85v-.09c11.4 0 22.84-.95 34.34-2.85l5.05 7.42c8.55-10.78 14.64-14.49 21.41-15.7 7.15-1.28 16.39 3.01 18.78 16.75 1.34-8.42 2.68-16.84 4.03-25.26 10.97-5.92 19.26-14.3 21.05-28.67v-26.13c-7.01 17.35-22.26 28.35-45.86 35.37-16.85 5.02-38.33 8.24-58.79 8.53v.09z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M406.21 337.35l17.45-2.54v39.8l-1.82 2.18-4.63-7.57-10.99 1.13v-33zm29.07-5.61c12.81-3.12 24.96-8.94 36.26-16.11v32.94l-4.54 2.97-4.68 25.59c-3.71-14.79-12.8-21.54-27.03-14.22v-31.18zM406.21 636.55l17.45-2.54v30.16c-3.47.66-10.57 1.8-17.45 2.66v-30.28zm29.07-5.61c12.81-3.12 24.96-8.94 36.26-16.11v30.12c-12.07 8.95-20.2 12.42-36.26 17.16v-31.18z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M327.54 361.8c-11.44-4.34-20.63-1.8-25.08 15.89-.33 1.32-3.34-25.49-4.76-26.48-3.57-2.51-8.66-6.63-11.53-8.86v-33.67c9.84 9.96 24.62 18.64 41.26 22.85l.11 30.27zm16.25 13.59c2.58-3.43 3.96-4.84 5.85-6.67 1.94.22 3.8.42 6.72.9v-32.7c-5.4-.89-7.16-1-12.57-1.9v40.36zM327.54 661c-15.86-4.2-29.81-11.53-41.37-22.79v-30.33c9.84 9.95 24.62 18.64 41.26 22.85l.11 30.27zm16.25 4.12c2.45.71 9.84 1.56 12.57 2.02v-31.01c-5.4-.89-7.16-1-12.57-1.9v30.89z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487.25 321.47c0 11.04-7.84 21.23-21.05 29.42l9.35 42.23c-10.51 5.37-21.66 9.23-33.45 11.54l-25.16-36.98c-10.76 1.74-22.31 2.69-34.34 2.69s-23.58-.95-34.34-2.69l-25.16 36.98c-11.79-2.31-22.94-6.17-33.45-11.54l9.35-42.23c-13.22-8.18-21.05-18.37-21.05-29.42\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.47 375.86c14.06-21.35 36.4-23.11 40.7.29M343.73 375.86c-14.06-21.35-36.4-23.11-40.7.29\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M299 350.89l4.03 25.26c10.13 5.76 19.9 8.63 31.69 11.67M466.2 350.89l-4.03 25.26c-10.13 5.76-19.9 8.63-31.69 11.67M412.53 244.14c43.21 6.02 74.72 24.72 74.72 46.87 0 27-46.85 48.89-104.65 48.89s-104.65-21.89-104.65-48.89c0-21.96 30.97-40.53 73.62-46.71.38-.05.76-.11 1.14-.16M487.25 619.18c0 27-46.85 48.89-104.65 48.89s-104.65-21.89-104.65-48.89\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487.25 609.17c0 27-46.85 48.89-104.65 48.89s-104.65-21.89-104.65-48.89M487.25 301.12c0 27-46.85 48.89-104.65 48.89s-104.65-21.89-104.65-48.89\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487.25 291v31.6m0 273.93v22.65M277.95 291v31.22m0 273.27v23.7M531.77 505.88l-44.52 89.71c-4.25 8.57-11.52 16.63-22.13 23.32-22.91 14.44-55.98 19.54-82.52 19.54s-59.61-5.1-82.53-19.54c-10.61-6.69-17.87-14.75-22.13-23.32l-44.52-89.71\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M314.67 327.31l20.14-11.63M451.54 327.89l-21.15-12.21M435.46 257.57l9.88-5.7M329.74 257.57l-10.99-6.35M278.66 286.97h28.84m151.12 0h28.13M382.6 323.64v16.25\"\n })), _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M467.51 573.68c-8.93 1.25-14.47 6.82-15.76 17.82 8.92-.86 14.15-6.83 15.76-17.82zM297.69 573.68c8.93 1.25 14.47 6.82 15.76 17.82-8.92-.86-14.15-6.83-15.76-17.82z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M294.19 575.79c-3.2 3.91-1.86 11.79 3 17.59s11.39 7.33 14.59 3.42 1.86-11.79-3-17.59c-4.86-5.8-11.39-7.33-14.59-3.42z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M297.69 573.68c-.11 3.88 1.56 8.55 4.73 12.33 3.43 4.09 7.69 6.06 11.02 5.49M467.51 573.68c.11 3.88-1.56 8.55-4.73 12.33-3.43 4.09-7.69 6.06-11.02 5.49\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M471 575.79c3.2 3.91 1.86 11.79-3 17.59-4.86 5.8-11.39 7.33-14.59 3.42-3.2-3.91-1.86-11.79 3-17.59 4.86-5.8 11.39-7.33 14.59-3.42z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgTest3);\nexport default __webpack_public_path__ + \"static/media/test3.5942704af14559fcb7d55d0b858f647a.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2, _path3, _path4, _ellipse, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _ellipse2, _path32, _path33, _path34, _path35, _path36, _g, _path37, _g2, _g3, _g4, _g5, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _g6, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _g7, _path80, _path81, _path82, _ellipse3, _g8, _path83;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgTest4(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n \"data-name\": \"Layer 1\",\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 779.23 900.14\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M232.28 354.17c0-19.7 34.1-35.67 76.23-35.74v-52.38c0-19.74 34.25-35.75 76.51-35.75s76.51 16 76.51 35.75v71.38l2.05 4.87.94 1.77c.69 1.29.2 2.23 1.64 2.27 40.23 1.05 72.16 16.63 72.16 35.69v79.25c15.77 17.77 14.75 37.74 0 59.5v31.12c0 19.74-34.25 35.75-76.51 35.75h-.28v36.73c0 19.74-34.25 35.74-76.51 35.74-32.57 0-60.39-9.51-71.43-22.91-1.59.05-3.19.07-4.8.07-42.25 0-76.51-16-76.51-35.75V354.17z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M399.74 403.11v169.81c8.53 5.52 18.15 9.09 28.48 11.35V414.22c-11.34-2.56-21.11-6.4-28.48-11.11zm43.28 13.61v169.91c-2.45-.26-4.87-.58-7.26-.95V415.7c2.37.39 4.79.74 7.26 1.02zM322.95 286.59v32.48c10.39.93 20.04 2.84 28.48 5.51V297.7c-11.34-2.57-21.11-6.4-28.48-11.11zm43.28 13.61v30.52a75.223 75.223 0 00-7.26-3.4v-28.14c2.37.4 4.79.74 7.26 1.02zM322.95 636.64v8.72c8.53 5.52 18.15 9.09 28.48 11.35v-25.59c-11.13 2.93-18.86 4.35-28.48 5.52zm43.28-11.25v33.68c-2.45-.26-4.87-.58-7.26-.95v-29.71c2.58-1.11 4.65-2.08 7.26-3.01z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M446.97 433.04v23.39c-3.32-.3-6.57-.7-9.72-1.19v-23.39c3.15.49 6.4.89 9.72 1.19zm-15.08 21.26c-3.37-.66-6.62-1.43-9.72-2.31V428.6c3.1.87 6.35 1.64 9.72 2.31v23.39zm-15.08-3.96c-3.47-1.17-6.72-2.47-9.72-3.89v-23.39c3 1.42 6.25 2.72 9.72 3.89v23.39z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M232 459.19v142.34c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75V354.17c0 19.74-34.25 35.75-76.51 35.75s-76.51-16-76.51-35.75v105.02z\",\n fill: \"#5e8c7c\",\n fillRule: \"evenodd\"\n })), _ellipse || (_ellipse = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 308.51,\n cy: 588.27,\n rx: 76.51,\n ry: 35.75,\n fill: \"#50b58b\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M302.61 552.63c1.95-.07 3.92-.11 5.9-.11 29.59 0 55.25 7.85 67.98 19.33\",\n fill: \"none\",\n stroke: \"#008c63\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeWidth: 2.5\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442.51 289.78v15.88c-8.85 3.86-18.86 7.88-29.18 9.15v-15.39c11.3-2.11 21.28-5.43 29.18-9.63zm0 306.32v51.42c-9.39 4.89-19.14 8.15-29.18 10.14v-40.02c10.92-5.91 21.12-13.37 29.18-21.55zm-41.12-294.98v46.51c-1.71 4.21-3.49 8.34-5.34 12.32-2.62 1.03-5.01 2.17-7.13 3.38v-61.44c4.26-.1 8.42-.37 12.47-.78zm0 322.24v36.07c-4.12.42-8.28.65-12.47.72v-32.37c4.14-1.2 8.32-2.68 12.47-4.42zM489.83 543.07l29.18-16.79v49.21c-7.9 4.2-17.88 7.53-29.18 9.63v-42.05zm-11.94-126.12v35.69l-7.23 8.5-5.24 7.02v-50.43c4.26-.1 8.42-.37 12.47-.78zm41.12-11.34v36.74c-10.26-8.14-19.91-7.51-29.18-1.68v-25.43c11.3-2.1 21.28-5.43 29.18-9.63zm-41.12 181.21c-4.05.41-8.21.68-12.47.78v-33.73c3.49.02 7.21-.96 11.09-3.18l1.38-.79v36.92z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M244.45 373.73v194.99c6.54-4.67 15.35-8.57 25.69-11.38V385.11c-10.35-2.81-19.15-6.71-25.69-11.38zm36.2 13.75v167.49c3.54-.65 7.21-1.17 10.98-1.57V389.05c-3.77-.4-7.44-.92-10.98-1.57z\",\n fill: \"#8ac694\",\n fillRule: \"evenodd\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M539.84 461.57l9.29 20.48-32.21-2.46-3.69-16.15 15.39-4.39 11.22 2.52z\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M523.89 532.81l-19.98-.43-6.74-14.6-2.21-13.52 9.1-4.2 19.83 32.75zm15.79-13.94l-31.95-28.02-3.04 6.18 24.25 32.59 10.75-10.75z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M500.85 525.76c8.7 9.28 22.07 10.23 31.75 1.3 10.65-9.82 20.78-30.05 16.13-47.56-1.55-5.82-5.22-11.63-11.92-18.61l-.91 4.53c7.49 13.88 4.99 29.92-.08 40.3-7.37 15.07-15.86 25.15-34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M541.46 464.3c-2.1-1.38-3.88-2.62-4.64-3.4l-3.48-.29 2.56 4.8c2.79 5.16 4.19 10.62 4.59 15.97l4.38.33 5.15.39c-.88-7.36-4.44-13.69-8.56-17.82z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M466.99 514.89l-3.53-21.75 31.5 11.12 3.31 18.36-31.28-7.73z\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M487 444.35l16.12-7.92 23.34 22.79-12.63 5.82-26.83-20.7zm-11.89 11.79l30.03 20.46 4.32-8.78-27.5-20.28-6.85 8.6z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M520.53 443.19c-3.33-3.63-8.39-5.74-10.8-6.29-16.99-3.87-36.54 13.58-43.67 38.98-6.34 22.59-.72 43.86 12.56 51.01 2.26 1.21 5.09 2.08 7.61 2.42M496.69 517.43c1.67 1.3 3.56 2.23 5.67 2.71 11.47 2.61 24.66-9.16 29.47-26.3 4.15-14.8.7-28.75-7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M495.52 506.66c.98.63 2.05 1.08 3.21 1.35 8.13 1.85 17.5-6.5 20.91-18.66 3-10.7.4-20.77-5.81-24.31-7.06 5.63-13.1 14.84-16.21 25.93-1.52 5.41-2.19 10.73-2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M510.32 489.3l19.85 9.45M517.33 482.91l16.03 2.94M516.76 475.37l16.23-.68M514.82 469.34l13.83-3.82\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M496.68 498.66c.64.41 1.34.71 2.1.88 5.32 1.21 11.43-4.25 13.66-12.2 1.96-6.99.26-13.58-3.8-15.89-4.61 3.68-8.56 9.7-10.6 16.95-.99 3.54-1.43 7.01-1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M493.33 529.64c3.97.29 7.93.59 11.9.88-8.88-6.97-12.31-22.81-7.61-39.55 5.76-20.52 21.56-34.62 35.29-31.49 1.02.23 1.99.55 2.93.95l-7.93-9.58c-19.27 1.59-29.68 8.33-38.01 27.24-8.3 18.86-6.18 41.17 3.43 51.55z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M497.68 519.33c-1.25-3.53-1.97-7.54-2.13-11.83l-.58-3.24-10.19-3.6c-.24 7.03.75 13.72 2.84 19.32l10.65 2.63-.59-3.28z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M504.24 475.98c1.16-1.84 2.41-3.56 3.73-5.14l1.49-3.03-8.74-6.44c-2.27 2.22-4.34 4.84-6.27 7.95l9.78 6.66zm9.6-10.94l-9.1-7.02c4.09-2.89 8.81-4.78 14.41-5.95l7.32 7.14c-4.3.59-8.63 2.63-12.62 5.82z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M527.26 451.65c-.26-.06-1.51-.44-1.78-.49-15.25-2.82-32.53 12.9-38.9 35.59-5.16 18.4-1.6 35.83 7.88 43.93\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M538.51 461.88l-18.5-19.23\"\n })), _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M500.85 525.76c3.21 3.43 7.07 5.72 11.14 6.8l9.92.22c.56-.12 1.13-.27 1.69-.45l-4.29-7.09c-4.86 2.17-10.8 2.56-18.45.52zm38.67-6.73l.13-.18-7.39-6.48c-2.5 4.16-5.25 7.68-8.56 10.23l5.23 7.03 10.59-10.6z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M523.25 510.58l-13.56-12.9M514.35 518.12l-9.9-15.1M504.98 520.49l-5.45-15.69\"\n })), _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M532.91 459.48c-13.73-3.13-29.53 10.97-35.29 31.49-5.76 20.52.7 39.69 14.43 42.82 13.73 3.13 29.53-10.97 35.29-31.49 5.76-20.52-.7-39.69-14.43-42.82z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M501.59 525.81c1.25.68 2.6 1.19 4.03 1.51 12.88 2.94 27.71-10.3 33.12-29.56 4.61-16.42.88-31.91-8.29-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4,\n d: \"M512.05 533.8l-27.06-4.72\"\n })), _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M538.08 405.64c-8.13 15.81-39.32 27.58-76.55 27.58s-68.54-11.82-76.6-27.67M463.66 496.01c-.71 0-1.42.01-2.14.01-37.31 0-68.54-11.82-76.6-27.67M477.9 570.43c-9.65-9.67-17.82-21.66-24.93-35.33-33.41-1.66-60.53-12.84-67.95-27.45\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M537.51 543.68c-8.13 15.8-39.32 27.58-76.55 27.58s-68.54-11.82-76.6-27.67M461 616.16c-8.12 15.8-39.32 27.58-76.55 27.58-19.42 0-37.2-3.2-50.92-8.51\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M436.23 585.74c-8.65 3.42-18.95 5.99-30.29 7.43v49.81\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M538.2 520.67v31.23c0 19.74-34.25 35.75-76.51 35.75s-76.51-16-76.51-35.75V382.03c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75v80.16\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _ellipse2 || (_ellipse2 = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 308.51,\n cy: 354.17,\n rx: 76.51,\n ry: 35.75,\n fill: \"#babac1\"\n })), _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M231.71 585.14v16.02c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75v-16.02c0 19.74-34.25 35.75-76.51 35.75s-76.51-16-76.51-35.75zM232 354.17v16.03c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75v-16.03c0 19.74-34.25 35.75-76.51 35.75s-76.51-16-76.51-35.75z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M312.13 636.87c4.26-.1 8.42-.37 12.47-.78v-16.03c-4.05.41-8.21.68-12.47.78v16.03zm24.41-2.48c11.3-2.11 21.28-5.43 29.18-9.63v-16.03c-7.9 4.2-17.88 7.53-29.18 9.63v16.03zM312.13 406.05c4.26-.1 8.42-.36 12.47-.78v-16.03c-4.05.41-8.21.68-12.47.78v16.03zm24.41-2.48c11.3-2.1 21.28-5.43 29.18-9.63v-16.03c-7.9 4.2-17.88 7.53-29.18 9.63v16.03z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M280.96 387.53v16.03c3.29.59 6.68 1.08 10.17 1.46v-16.03c-3.49-.38-6.88-.87-10.17-1.46zm-36.75 2.05c7.21 5.21 17.23 9.48 29.06 12.36v-16.03c-11.83-2.87-21.86-7.15-29.06-12.36v16.03zM280.96 618.55v16.03c3.29.59 6.68 1.07 10.17 1.44v-16.03c-3.49-.37-6.88-.86-10.17-1.44zm-36.75 2.2c7.24 5.16 17.26 9.39 29.06 12.23v-16.03c-11.8-2.84-21.82-7.07-29.06-12.23v16.03z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 609.45c25.64 0 46.54-9.77 46.54-21.75s-20.91-21.75-46.54-21.75-46.55 9.77-46.55 21.75 20.91 21.75 46.55 21.75z\",\n fill: \"none\",\n stroke: \"#008c63\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M465.73 346.34c40.3 1.02 72.31 16.61 72.31 35.69s-34.25 35.75-76.51 35.75-76.51-16-76.51-35.75c0-5.74 2.9-11.16 8.04-15.97l-.18.43 57.38 20.08 31.11-10.85-15.66-29.38z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 600.04c14.55 0 26.41-5.54 26.41-12.34s-11.87-12.34-26.41-12.34-26.41 5.54-26.41 12.34 11.87 12.34 26.41 12.34z\",\n fill: \"#008c63\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 587.14c10.56 0 19.2 3.85 19.84 8.71-4.84 2.57-11.93 4.19-19.84 4.19s-14.99-1.62-19.83-4.19c.64-4.86 9.27-8.71 19.83-8.71z\",\n fill: \"#006445\"\n }))), _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.09 381.71l-3.64 2.6v19.6c1.51-5.45 2.72-11.15 3.64-17.09v-5.1zm-3.64 217.64v1.52l1.91-2.17c-.64.22-1.27.44-1.91.65zM233.91 381.71l3.63 2.59v216.56l-3.63-4.13V381.71z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _g2 || (_g2 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M270.76 568.98c5.26 0 9.54-4.29 9.54-9.55s-4.29-9.54-9.54-9.54-9.55 4.29-9.55 9.54 4.29 9.55 9.55 9.55z\",\n fill: \"#8ac694\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M264.52 556.44c1.94-1.45 5.13-.44 7.13 2.25 2 2.68 2.04 6.03.1 7.48-1.94 1.44-5.13.44-7.13-2.25-2-2.68-2.04-6.03-.1-7.48z\",\n fill: \"#a6d2ad\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.67 553.29c1.18-.88 3.13-.27 4.34 1.37 1.22 1.63 1.24 3.67.06 4.55-1.18.88-3.13.27-4.34-1.37-1.22-1.63-1.25-3.67-.06-4.55z\",\n fill: \"#fff\"\n }))), _g3 || (_g3 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M326.01 543.74c3.9 0 7.08-3.18 7.08-7.08s-3.18-7.08-7.08-7.08-7.08 3.18-7.08 7.08 3.18 7.08 7.08 7.08z\",\n fill: \"#8ac694\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M321.38 534.44c1.44-1.07 3.81-.33 5.29 1.67 1.48 1.99 1.52 4.48.08 5.55-1.44 1.07-3.81.33-5.29-1.67s-1.52-4.48-.08-5.55z\",\n fill: \"#a6d2ad\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M327.43 532.1c.88-.65 2.32-.2 3.22 1.01.9 1.21.92 2.72.05 3.38-.88.65-2.32.2-3.22-1.01-.9-1.21-.92-2.73-.05-3.38z\",\n fill: \"#fff\"\n }))), _g4 || (_g4 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.74 494.76c6.12 0 11.11-4.99 11.11-11.11s-4.99-11.11-11.11-11.11-11.11 4.99-11.11 11.11 4.99 11.11 11.11 11.11z\",\n fill: \"#8ac694\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M332.47 480.17c2.26-1.68 5.98-.51 8.3 2.61 2.33 3.12 2.38 7.02.12 8.7-2.26 1.68-5.98.51-8.3-2.61-2.33-3.12-2.38-7.02-.12-8.7z\",\n fill: \"#a6d2ad\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M341.96 476.5c1.38-1.02 3.64-.31 5.05 1.59 1.42 1.9 1.45 4.28.07 5.3-1.38 1.02-3.64.31-5.05-1.59-1.42-1.9-1.45-4.27-.07-5.3z\",\n fill: \"#fff\"\n }))), _g5 || (_g5 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M292.12 451.19c6.98 0 12.67-5.69 12.67-12.67s-5.69-12.67-12.67-12.67-12.67 5.69-12.67 12.67 5.69 12.67 12.67 12.67z\",\n fill: \"#8ac694\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M283.84 434.55c2.58-1.92 6.82-.58 9.47 2.98 2.65 3.56 2.71 8.01.14 9.93-2.58 1.92-6.82.58-9.47-2.98-2.65-3.56-2.71-8.01-.14-9.93z\",\n fill: \"#a6d2ad\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M294.66 430.36c1.57-1.17 4.15-.36 5.77 1.82s1.65 4.88.08 6.04c-1.57 1.17-4.15.35-5.77-1.82-1.62-2.17-1.65-4.88-.08-6.05z\",\n fill: \"#fff\"\n }))), _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M232 459.19V354.17c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75v247.36c0 19.74-34.25 35.75-76.51 35.75s-76.51-16-76.51-35.75v-79.15\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M365.71 393.93v38.75c-.55.91-1.12 1.82-1.7 2.72-8.07 12.56-12.5 24.54-12.5 39.54v31.52l-11.98 5.27c4.56 3.04 8.47 6.58 11.98 10.46v3.15l-2.12 1.84c-7.38 6.41-8.57 15.36-8.57 24.91 0 6.58 1.31 24.56 10.69 24.57V585c0 10.14 4.08 21.2 14.2 22.23v2.3c-9.46 4.15-19.18 7.13-29.18 8.98V403.48c11.29-2.08 21.26-5.37 29.18-9.54zm-41.12 11.22v214.96l-12.47.73V405.9c4.26-.09 8.42-.35 12.47-.75z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.58 533.86c-17.78.22-27.64-15.91-31.81-28.15-4.11-12.05-4.23-33.23 6.41-44.45 6.7-6.39 13.39-12.78 20.09-19.18 16.11-12.08 33.95-1.86 43.82 12.88 8.93 13.33 13.62 28.43 12.21 44.57-1.13 12.97-6.58 25.17-18.59 28.58-10.7 1.92-21.41 3.83-32.11 5.75z\",\n fill: \"#d30334\",\n fillRule: \"evenodd\"\n })), _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M267.42 525.51c-8.7 9.28-22.07 10.23-31.75 1.3-10.65-9.82-20.79-30.05-16.13-47.56 1.55-5.82 5.22-11.63 11.92-18.61l.91 4.53c-7.49 13.88-5 29.92.08 40.3 7.37 15.07 15.86 25.15 34.97 20.04z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M277.26 439.8l-12.97-3.72-14.65 2.74-18.44 21.76 18.33 1.05 27.73-21.83z\"\n })), _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#74042b\",\n fillRule: \"evenodd\",\n d: \"M228.17 461.26l-9.28 20.48 32.21-2.46 3.69-16.15-15.39-4.39-11.23 2.52z\"\n })), _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M228.17 461.26l-9.29 20.48 8.84-.68c.72-8.13 3.34-15.18 7.46-21.38l-7.01 1.57z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M301.79 471.46l-8.93-14.13L264.48 475l5.8 11.4 31.51-14.95zm2.5 16.06l-32.89 12.89-1-9.74 31.53-13.63 2.37 10.48zM224.54 511.43l9.77 11.56 29.65-18.89-12.52-8.86-26.9 16.18zm-3.4-11.77l30.66-15.96.94 8.05-29.82 14.46-1.77-6.56z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n })), _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M224.54 511.43l9.77 11.56 7.18-4.57-7.09-9.09-1.25-3.07-8.61 5.18zm4.29-15.77l2.62 6.42-8.54 4.14-1.77-6.56 7.69-4z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M247.48 442.88c3.33-3.63 8.39-5.74 10.8-6.29 16.99-3.87 36.54 13.58 43.67 38.98 6.34 22.59.72 43.86-12.56 51.01-2.26 1.22-5.09 2.08-7.61 2.42M271.32 517.12c-1.67 1.3-3.56 2.23-5.67 2.71-11.47 2.61-24.66-9.16-29.47-26.3-4.15-14.8-.7-28.75 7.7-33.97\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.49 506.36c-.98.63-2.05 1.08-3.21 1.35-8.13 1.85-17.5-6.5-20.91-18.66-3-10.7-.4-20.77 5.81-24.3 7.06 5.63 13.1 14.84 16.21 25.93 1.52 5.41 2.19 10.73 2.1 15.69z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M257.7 488.99l-19.85 9.45M244.77 510.27l13.56-12.9M253.66 517.81l9.9-15.1M263.04 520.18l5.45-15.69M250.68 482.6l-16.03 2.94M251.26 475.06l-16.23-.68M253.2 469.03l-13.83-3.82\"\n })), _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.34 498.35c-.64.41-1.34.71-2.1.88-5.32 1.21-11.43-4.25-13.67-12.2-1.96-6.99-.26-13.58 3.79-15.89 4.62 3.68 8.56 9.7 10.6 16.95.99 3.54 1.43 7.01 1.37 10.25z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M274.94 529.4c-3.97.29-7.94.59-11.9.88 8.88-6.97 12.31-22.81 7.61-39.55-5.76-20.52-21.56-34.62-35.29-31.49-1.02.23-1.99.55-2.93.95l7.93-9.58c19.27 1.59 29.68 8.33 38.01 27.24 8.3 18.86 6.18 41.17-3.43 51.55z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M249.59 461.58c-4.66-2.49-9.56-3.41-14.22-2.35-1.02.23-1.99.55-2.93.95l7.93-9.58c7.04.58 12.9 1.85 17.9 4.15l-8.68 6.83z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n })), _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M266.69 525.56c-1.25.68-2.6 1.19-4.03 1.51-12.89 2.94-27.71-10.3-33.12-29.56-4.61-16.42-.88-31.91 8.29-37.95\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.46 499.99c-.33-3.02-.92-6.12-1.8-9.26l-.05-.15 10.66-4.61c.91 3.26 1.53 6.56 1.9 9.83l-10.71 4.19zm1.42-30.83l-9.39 5.85 5.8 11.4 9.67-4.59c-.48-1.34-1-2.66-1.58-3.97-1.43-3.24-2.92-6.13-4.5-8.69z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M241.13 451.12c.33-.08 1.28-.24 1.61-.3 15.2-2.64 32.36 13.04 38.7 35.62 5.17 18.4 1.6 35.83-7.88 43.93\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M235.11 459.17c13.73-3.13 29.53 10.97 35.29 31.49 5.76 20.52-.7 39.69-14.43 42.82-13.73 3.13-29.53-10.97-35.29-31.49-5.76-20.52.7-39.69 14.43-42.82zM229.5 461.57l18.5-19.23M255.97 533.49l27.05-4.71M465.31 346.32c40.63.85 73.01 16.52 73.01 35.71s-34.25 35.75-76.51 35.75-76.51-16-76.51-35.75c0-11.17 10.96-21.14 28.12-27.69\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M471.18 356.06c26.27 2.09 46.25 12.54 46.25 25.12 0 14.08-25.03 25.5-55.9 25.5s-55.9-11.42-55.9-25.5c0-7.34 6.79-13.95 17.66-18.6\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M474.48 362.25c17.78 2.43 30.69 9.74 30.69 18.37 0 10.62-19.54 19.23-43.64 19.23s-43.64-8.61-43.64-19.23c0-5.07 4.44-9.67 11.71-13.11M385.06 377.79c-8.13 15.8-39.32 27.58-76.55 27.58s-68.54-11.81-76.6-27.67\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.94 450.81c-10.04 12.21-23.86 20.59-42.48 24.14l.92.92 88.88-.27c-19.76-3.57-37.21-9.86-47.32-24.79z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n })), _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.94 450.81c-6.36 7.73-14.24 13.93-23.9 18.34s35.63 6.56 35.63 6.56h.06l35.44-.11-.02-.02c-19.72-3.57-37.13-9.86-47.22-24.77z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M385.02 450.92c-10.34 12.57-24.69 21.08-44.16 24.45l.02.64 91.46-.29v-.28c-19.46-3.5-37.36-9.79-47.32-24.51z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#6d6f7a\",\n d: \"M340.78 475.69h91.48v34.72h-91.48z\"\n })), _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#45454d\",\n fillRule: \"evenodd\",\n d: \"M348.03 510.41h26.3l29.97-34.72h-28.14l-28.13 34.72z\"\n })), _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M340.78 475.69h91.48v34.72h-91.48z\"\n })), _g6 || (_g6 = /*#__PURE__*/React.createElement(\"g\", {\n fill: \"#fff\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.69 487.89h15.78v11.25h-15.78zM378.63 487.89h15.78v11.25h-15.78zM404.57 487.89h15.78v11.25h-15.78z\"\n }))), _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.78 593.31c-8.13 15.8-39.32 27.58-76.55 27.58s-68.54-11.81-76.6-27.66\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.22 318.17v-52.12c0 19.74 34.25 35.75 76.51 35.75s76.51-16 76.51-35.75v75.27m0 246.47v36.57c0 19.74-34.25 35.75-76.51 35.75-32.7 0-60.61-9.58-71.56-23.07\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M425.79 400.56l8.84-5.11M488.98 395.45l8.92 5.14\"\n })), _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#45454d\",\n fillRule: \"evenodd\",\n d: \"M414.21 316.47l-1.21-.18.33 37.87 36.53 30.64-35.65-68.33z\"\n })), _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M444.19 304.89c-10.21 4.6-20.14 7.98-29.69 9.71l37.66 71.31 29.22-10.19-37.2-70.83z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#babac1\",\n fillRule: \"evenodd\",\n d: \"M443.02 368.6l9.14 17.31 8.6-3 4.55-37.81-14.2-27.02-8.09 50.52z\"\n })), _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M413.32 314.81l37.51 70.39 30.55-9.49-37.63-70.6\"\n })), _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M451.01 385.76l-37.68-31.6v-39.35\"\n })), _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M439.29 317.24c2.11 4.15 4.22 8.29 6.33 12.43-1.64.51-3.28 1.02-4.91 1.53-1.64.51-3.27 1.01-4.91 1.52-2.11-4.14-4.22-8.28-6.33-12.43 1.63-.51 3.27-1.01 4.91-1.52 1.63-.51 3.27-1.02 4.91-1.53h0zm20.8 40.85c2.11 4.15 4.22 8.28 6.32 12.42-1.64.51-3.28 1.02-4.91 1.53-1.64.51-3.27 1.01-4.91 1.52-2.11-4.13-4.21-8.27-6.32-12.42 1.63-.51 3.27-1.01 4.91-1.52 1.64-.51 3.27-1.01 4.91-1.53h0zm-10.4-20.42c2.11 4.14 4.22 8.29 6.33 12.43-1.64.51-3.28 1.02-4.91 1.53-1.64.51-3.27 1.01-4.91 1.52-2.11-4.14-4.21-8.28-6.32-12.42 1.63-.51 3.27-1.01 4.91-1.52 1.63-.51 3.27-1.02 4.91-1.53z\",\n fill: \"#fff\",\n fillRule: \"evenodd\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M487.3 365.04l7.39-4.27M461.28 289.67c-8.12 15.8-39.32 27.58-76.55 27.58s-68.54-11.82-76.6-27.67M406.11 379.49l11.84.05m87.45.12l11.55.02M462.5 406.6v-6.75\"\n })), _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M425.11 626.09v11.75c3.41-.91 6.66-1.94 9.72-3.07V622.9c-3.05 1.18-6.3 2.24-9.72 3.19zm36.14-10.13c-1.44 2.53-3.46 4.95-5.98 7.22v-12.51c2.71-2.66 4.74-5.51 5.98-8.48v13.77zm-11.34 11.34c-2.87 1.91-6.13 3.68-9.72 5.28v-11.96c3.62-1.69 6.88-3.54 9.72-5.54v12.21z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path76 || (_path76 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M239.77 369.88l102.39-47.82c9.03 2.07 17.06 4.95 23.66 8.43l-100.16 53.29c-11.02-3.49-19.99-8.28-25.89-13.91zm68.74-51.46c-2.61 0-5.19.06-7.74.18l-67.78 29.81c-.65 1.87-.99 3.79-.99 5.75 0 1.57.22 3.11.64 4.62l87.58-39.95c-3.82-.27-7.72-.42-11.7-.42z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n })), _path77 || (_path77 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 372.5c22.27 0 40.43-8.49 40.43-18.89s-18.16-18.89-40.43-18.89-40.43 8.49-40.43 18.89 18.16 18.89 40.43 18.89z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path78 || (_path78 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.66 333.64c13.17 4.49 21.73 11.76 21.73 19.97 0 7.38-6.92 14-17.89 18.53m-70.13-.06c-10.89-4.53-17.75-11.12-17.75-18.47 0-8.15 8.44-15.38 21.46-19.88M258.61 380.71l22.72-13.12M335.68 367.59L359 381.06M284.89 338.27l-22.1-12.76\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _path79 || (_path79 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M332.53 338.03l7.11-4.1 14.92-8.61\"\n })), _g7 || (_g7 = /*#__PURE__*/React.createElement(\"g\", {\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M317.86 343.25c-16.19-1.93-24.43 1.2-29.2 3.96-5.07 2.93-6.71 9.62.94 13.49 4.96-6.63 14.8-7.8 28.27-4.93v-12.52z\",\n fill: \"#6d6f7a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M327.69 360.23c8.94-7.63 4.45-13.19-10.33-17.18v12.66c3.44 1.51 6.89 3.01 10.33 4.52z\",\n fill: \"#45454d\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M303.02 354.38V342.9c1.38-.13 2.85-.22 4.44-.24v11.68c-1.55-.07-3.03-.05-4.44.05zm-4.25-10.88c-4.57.89-7.76 2.34-10.11 3.7-.09.05-.18.11-.27.16v12.65c.37.24.77.46 1.2.68 2.17-2.89 5.26-4.75 9.18-5.68V343.5z\",\n fill: \"#babac1\"\n }))), _path80 || (_path80 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 352.29c9.96 0 18.2 3.46 19.5 7.95-4.39 2.81-11.49 4.64-19.5 4.64s-15.12-1.83-19.5-4.64c1.31-4.49 9.54-7.95 19.5-7.95z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n })), _path81 || (_path81 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 358.82c5.93 0 10.91 1.91 12.28 4.48-3.6 1-7.8 1.57-12.28 1.57s-8.68-.57-12.28-1.57c1.37-2.57 6.35-4.48 12.28-4.48z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n })), _path82 || (_path82 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M308.51 364.87c13.28 0 24.12-5.06 24.12-11.27s-10.83-11.27-24.12-11.27-24.12 5.06-24.12 11.27 10.83 11.27 24.12 11.27z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n })), _ellipse3 || (_ellipse3 = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 308.51,\n cy: 354.17,\n rx: 76.51,\n ry: 35.75,\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n })), _g8 || (_g8 = /*#__PURE__*/React.createElement(\"g\", null, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M385.02 230.31c42.25 0 76.51 16 76.51 35.75s-34.25 35.75-76.51 35.75-76.51-16-76.51-35.75 34.25-35.75 76.51-35.75zm-51.42 43.76c8.47 2.58 16.93 5.17 25.4 7.75 11.71 1.86 23.16 2.07 34.37.9 9.71-1.01 24.65-3.37 32.28-9.57 5.46-4.43 6.93-10.56 2.68-19.11-1.35-7.21-5.21-11.89-10.76-14.86-12.76-6.83-40.07-8.72-55.07-3.56l-9.09 3.78c-36.3 1.07-35.7 30.13-19.82 34.67z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M426.53 251.49c-5.43 16.7-28.94 19.33-42.22 19.42-14.24.09-38.36-4.84-40.17-20.26-2.14 4.69-4.29 9.37-6.43 14.06 11.56 15.96 29.98 18.54 45.95 18.64 15.39.1 39.32-3.51 48.09-17.37l-5.22-14.49z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M378.3 270.67a83.09 83.09 0 01-5.18-.59l-.42-.04-2.51 12.45c2.11.29 4.22.49 6.32.62l1.78-12.44zm-11.97-1.94c-5.04-1.26-9.91-3.13-13.82-5.74l-2.55-1.06-3.77 11.46c5.41 4.07 11.52 6.52 17.82 7.97l2.87-12.4-.55-.23z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M412.46 265.83c-2.14.96-4.4 1.75-6.71 2.4l-.84.3 3.73 11.81c3.88-1.03 7.63-2.38 11.04-4.09l-4.76-11.29-2.46.88zm-16.98 16.91a95.1 95.1 0 006.1-.86l-2.71-10.99-5.35.52 1.97 11.34z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M354.39 253.3c-1.8 1.43-3.24 3-4.26 4.66l-1.37 2.23-1.73-1.98c-.94-1.07-1.66-2.18-2.15-3.32-.51-1.18-.77-2.4-.77-3.63 0-2.61 1.17-5.1 3.29-7.36 2.01-2.15 4.92-4.11 8.5-5.78 3.81-1.78 8.36-3.21 13.4-4.18 4.84-.93 10.14-1.44 15.7-1.44s10.86.51 15.7 1.44c5.04.97 9.59 2.4 13.4 4.18 3.59 1.67 6.49 3.64 8.5 5.78 2.12 2.26 3.29 4.75 3.29 7.36 0 1.24-.27 2.45-.77 3.63-.49 1.14-1.22 2.25-2.15 3.32l-1.73 1.98-1.37-2.23c-1.02-1.67-2.47-3.23-4.28-4.67-1.88-1.5-4.15-2.84-6.73-4-3.25-1.46-7.01-2.63-11.1-3.43-3.97-.77-8.27-1.2-12.76-1.2s-8.8.42-12.77 1.2c-4.11.8-7.87 1.98-11.12 3.44-2.57 1.16-4.83 2.5-6.71 4z\",\n fill: \"#6d6f7a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M411.75 237.12c.81.32 1.59.66 2.34 1.01 3.59 1.67 6.49 3.64 8.5 5.78 2.12 2.26 3.29 4.75 3.29 7.36 0 1.24-.27 2.45-.77 3.63-.49 1.14-1.22 2.25-2.15 3.32l-1.73 1.98-1.37-2.23c-1.02-1.67-2.47-3.23-4.28-4.67-1.88-1.5-4.15-2.84-6.73-4-.68-.31-1.39-.6-2.11-.88l5.01-11.29z\",\n fill: \"#45454d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.99 254.11c12.57 0 22.77 4.76 22.77 10.63 0 1.16-.4 2.27-1.13 3.32-6.3 1.8-13.71 2.84-21.63 2.84s-15.33-1.04-21.63-2.84c-.73-1.04-1.13-2.16-1.13-3.32 0-5.87 10.19-10.63 22.76-10.63z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M369.5 257.81l-8.62 8.66-5.78-13.71c1.73-1.28 3.74-2.44 6-3.45 1.59-.72 3.3-1.36 5.11-1.93l3.29 10.43zm12.54-2.18l-5.97-.07-2.45-9.95c2.1-.36 4.29-.62 6.55-.78l1.88 10.79z\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.11 252.76l-4.8-11.39c.94-.68 1.98-1.34 3.1-1.97l5.15-2.41c1.25-.49 2.57-.95 3.94-1.37l3.71 11.75c-1.81.57-3.52 1.21-5.11 1.93-2.25 1.02-4.27 2.17-6 3.45zm15.58-19.06c2.37-.41 4.84-.72 7.39-.92l2.09 12.05c-2.25.16-4.44.42-6.55.78l-2.94-11.91z\",\n fill: \"#babac1\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M407.29 266.89c-.4-3.47-1.71-6.51-4.82-8.69l4.61-10.38c5.99 2.85 10.96 6.04 15.01 11.99-3.78 3.89-9.41 6.89-14.79 7.08z\",\n fill: \"#74042b\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M348.5 261.01c2.71-9.31 18.02-16.45 36.49-16.45s33.75 7.12 36.48 16.41\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.99 254.11c12.57 0 22.77 4.76 22.77 10.63 0 1.16-.4 2.27-1.13 3.32-6.3 1.8-13.71 2.84-21.63 2.84s-15.33-1.04-21.63-2.84c-.73-1.04-1.13-2.16-1.13-3.32 0-5.87 10.19-10.63 22.76-10.63z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M384.99 270.9c22.88 0 41.54-8.72 41.54-19.41s-18.66-19.41-41.54-19.41-41.54 8.72-41.54 19.41 18.66 19.41 41.54 19.41z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M425.81 248.02l5.04 12.05c.68 1.63.59 4.2 0 5.92-3.34 9.82-22.61 17.35-45.87 17.35s-42.52-7.53-45.87-17.35c-.59-1.72-.68-4.29 0-5.92l4.93-11.79\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 384.73,\n cy: 266.05,\n rx: 76.51,\n ry: 35.75,\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 4\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.34 243.12c15.5 5.05 25.51 13.06 25.51 22.08 0 15.27-28.71 27.65-64.13 27.65s-64.12-12.38-64.12-27.65c0-9.36 10.78-17.63 27.28-22.64M411.91 279.48l23.32 13.46M347.41 242.24l-8.4-4.85\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5\n }))), _path83 || (_path83 = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"none\",\n stroke: \"#000003\",\n strokeMiterlimit: 22.93,\n strokeWidth: 2.5,\n d: \"M359.6 469.79h51.24M413.09 326.84l26.3 49.36\"\n })));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgTest4);\nexport default __webpack_public_path__ + \"static/media/test4.4bd6dbb335d94c1cf14c669092cf85c3.svg\";\nexport { ForwardRef as ReactComponent };","import { createContext } from 'react';\n\n/**\n * @public\n */\nconst MotionConfigContext = createContext({\n transformPagePoint: (p) => p,\n isStatic: false,\n reducedMotion: \"never\",\n});\n\nexport { MotionConfigContext };\n","import sync, { cancelSync } from 'framesync';\nimport { useRef, useContext, useEffect } from 'react';\nimport { MotionConfigContext } from '../context/MotionConfigContext.mjs';\n\nfunction useAnimationFrame(callback) {\n const initialTimestamp = useRef(0);\n const { isStatic } = useContext(MotionConfigContext);\n useEffect(() => {\n if (isStatic)\n return;\n const provideTimeSinceStart = ({ timestamp }) => {\n if (!initialTimestamp.current)\n initialTimestamp.current = timestamp;\n callback(timestamp - initialTimestamp.current);\n };\n sync.update(provideTimeSinceStart, true);\n return () => cancelSync.update(provideTimeSinceStart);\n }, [callback]);\n}\n\nexport { useAnimationFrame };\n","import { useAnimationFrame } from \"framer-motion\";\nimport { useEffect, useRef, useState } from \"react\";\n\nexport const LogoAnim = () => {\n const ref = useRef(null);\n const cnt = useRef(2);\n const [animationDone, setAnimationDone] = useState(false);\n\n useAnimationFrame((time, delta) => {\n if (animationDone) return;\n\n let fr = Math.floor(cnt.current / 2);\n let cur = ref.current.querySelector(\"#_\" + fr);\n let prev = ref.current.querySelector(\"#_\" + (fr - 1));\n\n cnt.current++;\n\n if (!cur) {\n cnt.current = 2;\n setAnimationDone(true);\n } else {\n if (cur) cur.style.visibility = \"visible\";\n if (prev) prev.style.visibility = \"hidden\";\n }\n });\n\n return (\n \n );\n};\n","var _defs;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgAnvillogo(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n viewBox: \"0 0 125.36 168.64\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"a\",\n x1: 64.33,\n y1: 173.41,\n x2: 107.1,\n y2: 13.79,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#c61682\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.47,\n stopColor: \"#e50051\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#ef7800\"\n })))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M46.25,114.52c-13.61-6.4-17.26-21-16.66-31.63A62.83,62.83,0,0,0,50.1,179.58c9.27,3.66,19.89.17,19.95-8.54V166c0-2.47-1.79-4.11-4.29-4.36C53,160.3,40.12,154.87,32.7,142.92h85.77v6.55c0,3.84-1.63,6.08-5,6.8-7.32,1.57-15.81,3.55-23.14,5.12-2.78.63-4.81,2-4.82,4.56V171c.06,8.71,10.69,12.21,20,8.54a63,63,0,0,0,31.24-34.64c4-10.73,4.93-21.91,1.44-32.94-2.32-7.35-3.9-14.09,1.68-18-5.78-4.72-20.48-5.18-33.25,4L82.75,115.09l8.77,12.22L75.35,138.9,56.2,112.19A21.61,21.61,0,0,0,57.36,94l6.77-4.86,12.65,17.64,29.73-21.31c29.5-21.92,8.11-68-28.72-73.07C88.2,32.07,85.22,47,67.43,57.67a80.91,80.91,0,0,0-11.91,8.46,42.83,42.83,0,0,0-12.85,18.6c-3,9.17-2.26,19.42,3.58,29.79Zm-3-44.72c.9-8.07,4.75-15.91,9.27-21.82,4-5.2,5.69-8.93,5.19-14.65,10.12,3.32,9.9,13.74,2.42,19.6C55,57,48.28,62.33,43.3,69.8Zm20.19,69.1a33.22,33.22,0,0,1-31.43-21.41C42.56,130.83,57.88,127.17,63.49,138.9Z\",\n transform: \"translate(-14.97 -12.38)\",\n style: {\n fillRule: \"evenodd\",\n fill: \"url(#a)\"\n }\n }));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgAnvillogo);\nexport default __webpack_public_path__ + \"static/media/anvillogo.fe03322925f57070bbcdd282ef4ebc32.svg\";\nexport { ForwardRef as ReactComponent };","var _defs, _path, _path2, _path3, _g, _g2, _path4, _g3, _path5, _g4, _path6, _path7, _path8, _g5, _path9, _path10, _path11, _path12, _path13, _g6, _path14, _g7, _path15, _g8, _path16, _g9, _path17, _path18, _path19, _g10, _path20, _path21, _g11, _path22, _g12, _g13, _g14, _g15;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgBaseInside(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 5235.854,\n height: 1855.227,\n xmlns: \"http://www.w3.org/2000/svg\",\n preserveAspectRatio: \"xMidYMid slice\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"matrix(162.99998 206 206 -162.99998 1758.204 400.14)\",\n spreadMethod: \"pad\",\n id: \"a\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopOpacity: 0.1,\n stopColor: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopOpacity: 0.3,\n stopColor: \"#fff\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"matrix(162.99998 206 206 -162.99998 1758.204 400.14)\",\n spreadMethod: \"pad\",\n id: \"f\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#fff\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-4084.8318 4084.8318) rotate(23 -.409 -2.325)\",\n spreadMethod: \"pad\",\n id: \"g\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#b3d9bc\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-4365.5454 4365.5454) rotate(23 -.714 -1.95)\",\n spreadMethod: \"pad\",\n id: \"i\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#b3d9bc\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-2489 2489) rotate(7.484 -3.81 -11.626)\",\n spreadMethod: \"pad\",\n id: \"k\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#b3d9bc\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(272902.21 -272902.21) rotate(28 .273 -1.032)\",\n spreadMethod: \"pad\",\n id: \"l\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-871.78984 871.78984) rotate(-54 -.961 4.622)\",\n spreadMethod: \"pad\",\n id: \"m\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#70b491\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#3a7f63\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(922.29026 -922.29026) rotate(40 1.437 2.155)\",\n spreadMethod: \"pad\",\n id: \"o\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(306.10632 -306.10632) rotate(90 3.078 2.244)\",\n spreadMethod: \"pad\",\n id: \"p\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#df0043\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#e73b5c\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-767.28734 767.28734) rotate(58 -.874 -1.882)\",\n spreadMethod: \"pad\",\n id: \"q\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(879.93656 -879.93656) rotate(19 2.08 7.253)\",\n spreadMethod: \"pad\",\n id: \"r\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(355.40165 -355.40165) rotate(19 4.691 18.235)\",\n spreadMethod: \"pad\",\n id: \"s\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-714.6799 714.6799) rotate(29 -3.896 -2.699)\",\n spreadMethod: \"pad\",\n id: \"u\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#9ed0b1\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#e0eee4\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(820.77752 -820.77752) rotate(40 1.837 2.495)\",\n spreadMethod: \"pad\",\n id: \"w\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(2515.9132 -2515.9132) rotate(43 1.185 -.034)\",\n spreadMethod: \"pad\",\n id: \"y\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-89000.144 89000.144) rotate(8 .265 -4.936)\",\n spreadMethod: \"pad\",\n id: \"A\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#8ac8a4\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#fff\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-171.05332 171.05332) rotate(-70 -6.307 16.826)\",\n spreadMethod: \"pad\",\n id: \"B\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#367b5f\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#003e28\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(-299.49123 299.49123) rotate(-74.778 -3.535 9.163)\",\n spreadMethod: \"pad\",\n id: \"C\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#266b50\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(212.12385 -212.12385) rotate(-67.264 -.17 -4.856)\",\n spreadMethod: \"pad\",\n id: \"E\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#91caa9\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(204.80776 -204.80776) rotate(78 4.72 .844)\",\n spreadMethod: \"pad\",\n id: \"F\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#a1d1b1\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#266b50\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(769.33232 -769.33232) rotate(1 21.073 149.143)\",\n spreadMethod: \"pad\",\n id: \"H\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#d30334\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(1238.4884 -1238.4884) rotate(27.991 2.804 -.367)\",\n spreadMethod: \"pad\",\n id: \"b\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.273,\n stopColor: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.836,\n stopOpacity: 0.105,\n stopColor: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopOpacity: 0,\n stopColor: \"#fff\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n x1: 0,\n y1: 0,\n x2: 1,\n y2: 0,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"scale(1238.4884 -1238.4884) rotate(27.991 2.804 -.367)\",\n spreadMethod: \"pad\",\n id: \"L\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.273,\n stopColor: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.836,\n stopColor: \"#a4cdb1\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#b3d9bc\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"c\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"d\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2035.444 779.631l-175.913-201.068s-12.777-15.226 6.979-14.761c19.756.465 105.714 1.986 105.714 1.986l-108.812-123.692 36.333-23.597 65.654 1.419 155.932 183.779s16.423 17.39-9.842 16.668c-26.265-.722-118.069-3.241-118.069-3.241l131.461 158.215a513.809 513.809 0 01-12.117 2.609c-20.631 1.335-39.65 1.946-57.411 1.946-6.815 0-13.445-.09-19.909-.263m-119.279-14.042a717.644 717.644 0 01-11.077-2.355l-328.614-337.3 64.856-3.625 321.401 342.525c-12.568-1.119-18.269-.075-22.939.969-3.245.725-5.993 1.45-10.202 1.45-3.279 0-7.444-.44-13.425-1.664\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"h\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"j\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"n\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"t\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"v\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"x\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"z\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"D\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"G\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"I\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"J\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1074.92 1390.454c-16.551-71.249 1.76-128.016 40.309-176.38l-304.062-10.179c-86.754 57.362-141.483 120.651-181.919 186.559H389.277c48.125-59.069 105.017-112.852 164.66-159.7 131.749-103.482 301.491-180.172 466.921-232.172l327.177 115.144c-102.872 56.247-145.809 112.315-140.317 173.73 3.003 33.591 23.323 71.41 61.068 102.998z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"M\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"clipPath\", {\n clipPathUnits: \"userSpaceOnUse\",\n id: \"N\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1391.417h3926.889V0H0z\"\n })), /*#__PURE__*/React.createElement(\"mask\", {\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 1,\n height: 1,\n id: \"e\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-32768 32767h65535v-65535h-65535z\",\n fill: \"url(#a)\"\n })), /*#__PURE__*/React.createElement(\"mask\", {\n maskUnits: \"userSpaceOnUse\",\n x: 0,\n y: 0,\n width: 1,\n height: 1,\n id: \"K\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-32768 32767h65535v-65535h-65535z\",\n fill: \"url(#b)\"\n })))), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1855.227h5235.848V1.287H0z\",\n fill: \"#000003\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429.602 702.182l-39.073 1.3 1.101 467.963h39.078zm70.29-2.34l-39.072 1.302 1.1 467.962h39.078zm-50.702 1.688l-14.468.482 1.106 469.433h13.353v-2.339h7.62L455.7 701.313zm191.286-6.365l-39.074 1.3 1.102 467.964h39.077zm70.292-2.339l-39.075 1.3 1.103 467.964h39.077zm-50.704 1.687l-14.467.481 1.105 469.435h13.352v-2.339h7.622l-1.102-467.793zm-89.88 2.99l-39.074 1.3 1.103 467.965h39.077zm19.588-.65l-14.467.48 1.105 469.435h13.354v-2.339h7.62l-1.102-467.793zm-70.291 2.339l-14.467.481 1.106 469.433h13.352v-2.338h7.62l-1.1-467.794zm309.185-10.288l-39.073 1.3 1.101 467.962h39.078zm-50.702 1.686l-14.468.482 1.105 469.433h13.352v-2.339h7.621l-1.101-467.792zm-62.076 2.066l1.105 469.434h13.353l1.11-1.952 28.025.367-1.105-469.263zm132.366-4.404l-14.468.481 1.107 469.433h13.352z\",\n fill: \"#ba0537\",\n fillRule: \"evenodd\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M790.03 876.173l39.067-4.602.676 286.596h-39.079zm-26.09 3.076l20.971-2.472.663 281.39h-7.621v2.338H764.6zm-47.6 5.61l42.48-5.007.66 280.653-28.023-.366-1.111 1.95h-13.352zm-44.185 5.205l39.067-4.603.65 276.628h-39.077zm-26.092 3.076l20.972-2.472.64 271.421h-7.62v2.34h-13.353zm-44.185 5.207l39.067-4.604.637 270.685h-39.079zm-26.092 3.074l20.972-2.472.627 265.48h-7.622v2.34h-13.352zm-44.185 5.207l39.066-4.604.623 264.744h-39.077zm-26.092 3.073l20.972-2.47.612 259.537h-7.62v2.339h-13.354zm-44.186 5.208l39.067-4.602.61 258.8h-39.08zm-26.092 3.074l20.974-2.47.597 253.594h-7.621v2.338h-13.352zm-44.185 5.208l39.067-4.603.594 252.857H391.63zm443.17-52.223l.677 287.199h13.352l.005-288.854z\",\n fill: \"#870928\",\n fillRule: \"evenodd\"\n })), _g || (_g = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#c)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2129.175 565.669c77.99 0 141.6 63.61 141.6 141.6 0 77.992-63.61 141.6-141.6 141.6-77.991 0-141.601-63.608-141.601-141.6 0-77.99 63.61-141.6 141.6-141.6\",\n fill: \"#50b58b\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2129.175 848.87c78.203 0 141.6-63.396 141.6-141.6 0-56.36-32.93-105.025-80.595-127.817a143.657 143.657 0 00-4.605-.082c-78.203 0-141.6 63.396-141.6 141.6 0 56.36 32.929 105.025 80.595 127.816 1.53.05 3.063.083 4.605.083\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1987.574 707.269c10.475-17.553 45.53-66.776 45.53-3.568 0 41.799 49.588 42.33 26.91 65.452-9.489 9.675-29.766 21.32-41.537 26.41-19.337-24.211-30.903-54.9-30.903-88.293zm247.761 93.693a142.093 142.093 0 0013.641-18.187c-3.4-3.226-9.325-5.884-14.77-7.73-7.9-2.673-11.312-9.787-5.795-12.808 18.57-10.171 29.507-16.99 40.431-31.581a142.606 142.606 0 001.932-23.386c0-9.952-1.03-19.663-2.984-29.035-20.874 20.183-52.377 14.302-57.925-3.395-3.125-9.966-8.31-24.103-14.463-35.878-20.42-39.076-77.222-37.37-115.49-34.654-30.737 2.18-13.18 23.982 1.306 36.686 38.59 33.842-1.279 74.012 43.091 82.92 24.648 4.948 6.78 29.608 54.56 8.82 24.13-10.5 40.121 3.442 10.867 20.284-9.794 5.639-28.654 9.938-48.636 15.98-28.002 8.465 37.357 47.014 75.568 37.564 7.63-1.888 13.778-3.76 18.667-5.6\",\n fill: \"#50b58b\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2044.52 733.438c13.08 14.759 30.848 20.062 15.495 35.715-1.613 1.644-3.54 3.347-5.681 5.062a140.753 140.753 0 01-9.813-40.777m190.814 67.524a142.007 142.007 0 0013.641-18.187c-3.4-3.226-9.325-5.884-14.77-7.73-7.9-2.674-11.312-9.788-5.795-12.809 18.57-10.17 29.506-16.988 40.43-31.58a142.496 142.496 0 001.933-23.386c0-9.952-1.03-19.663-2.984-29.035-20.874 20.183-52.377 14.302-57.925-3.395-3.125-9.965-8.31-24.103-14.463-35.878-15.952-30.527-54.109-36.164-88.287-35.875a142.43 142.43 0 00-33.235 30.848 107.23 107.23 0 007.337 7.059c38.591 33.841-1.278 74.011 43.092 82.92 24.648 4.947 6.778 29.607 54.56 8.82 24.13-10.5 40.121 3.441 10.867 20.283-9.794 5.64-28.654 9.938-48.636 15.98-28.002 8.465 37.357 47.014 75.567 37.564 7.63-1.888 13.78-3.76 18.667-5.6\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1987.574 707.269c10.475-17.553 45.53-66.776 45.53-3.568 0 41.799 49.588 42.33 26.91 65.452-9.489 9.675-29.766 21.32-41.537 26.41-19.337-24.211-30.903-54.9-30.903-88.293zm247.761 93.693a142.093 142.093 0 0013.641-18.187c-3.4-3.226-9.325-5.884-14.77-7.73-7.9-2.673-11.312-9.787-5.795-12.808 18.57-10.171 29.507-16.99 40.431-31.581a142.606 142.606 0 001.932-23.386c0-9.952-1.03-19.663-2.984-29.035-20.874 20.183-52.377 14.302-57.925-3.395-3.125-9.966-8.31-24.103-14.463-35.878-20.42-39.076-77.222-37.37-115.49-34.654-30.737 2.18-13.18 23.982 1.306 36.686 38.59 33.842-1.279 74.013 43.091 82.92 24.648 4.948 6.03 21.733 53.81.945 24.13-10.5 40.871 11.317 11.617 28.159-9.794 5.638-28.654 9.938-48.636 15.98-28.002 8.465 37.357 47.014 75.568 37.564 7.63-1.888 13.778-3.76 18.667-5.6\",\n fill: \"#3ea571\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2044.52 733.438c13.08 14.759 30.848 20.062 15.495 35.715-1.613 1.644-3.54 3.347-5.681 5.062a140.753 140.753 0 01-9.813-40.777m190.814 67.524a142.007 142.007 0 0013.641-18.187c-3.4-3.226-9.325-5.884-14.77-7.73-7.9-2.674-11.312-9.788-5.795-12.809 18.57-10.17 29.506-16.988 40.43-31.58a142.496 142.496 0 001.933-23.386c0-9.952-1.03-19.663-2.984-29.035-20.874 20.183-52.377 14.302-57.925-3.395-3.125-9.965-8.31-24.103-14.463-35.878-15.952-30.527-54.109-36.164-88.287-35.875a142.43 142.43 0 00-33.235 30.848 107.23 107.23 0 007.337 7.059c38.591 33.841-1.278 74.012 43.092 82.92 24.648 4.947 6.028 21.732 53.81.944 24.13-10.499 40.871 11.317 11.617 28.16-9.794 5.637-28.654 9.937-48.636 15.98-28.002 8.464 37.357 47.013 75.567 37.563 7.63-1.888 13.78-3.76 18.667-5.6\",\n fill: \"#84c492\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1805.05 629.363c26.245 5.855 52.27-10.674 58.124-36.92 5.856-26.246-10.673-52.269-36.919-58.126-26.246-5.855-52.27 10.674-58.125 36.92-5.856 26.246 10.673 52.27 36.92 58.126\",\n fill: \"#b4b4c2\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1783.466 597.325c-10.869-3.68-.997-4.598-1.369-8.473-.082-.853-1.72-3.28-3.148-5.427-7.652-11.505 9.352-3.04 13.201-.798 4.475 2.61 8.043 4.163 3.855 6.487-2.453 1.361-2.088 3.438-.546 4.658 1.918 1.516 3.938 5.768-2.132 5.456-2.86-.147-6.724-.84-9.86-1.903m44.37-62.624a48.481 48.481 0 00-25.073.178c-.059.647.817 1.877 3.866 4.473 21.422 18.25-6.215 11.784-17.083 1.386a48.65 48.65 0 00-16.65 17.78c9.64 11.45 28.611 20.992 43.458 25.568 18.676 5.757 19.993 4.726 4.77-7.03-2.047-1.582-20.36-15.553-16.249-15.729 9.542-.407 18.096 2.492 25.602 4.13 9.875 2.151 11.218-.22 2.038-8.659-2.79-2.566-4.893-5.813.618-6.409 3.364-.363.185-8.449-5.297-15.688m-.179 94.335a48.874 48.874 0 0017.4-8.39c-11.477 2.753-3.375-2.953-5.892-4.554-1.949-1.24-4.296-1.392-2.325-4.978.773-1.407 2.168-2.965 4.042-4.229 12.746-8.608-8.556-8.864-13.882-8.732-9.847.244 5.048 7.704-10.543 7.704-42.979 0 15.178 15.746 11.2 23.18\",\n fill: \"#9599ab\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1805.05 629.363c26.245 5.855 52.27-10.674 58.124-36.92 5.092-22.819-6.74-45.468-27.167-54.843-23.567 1.475-44.308 18.286-49.708 42.49-3.865 17.322.993 34.556 11.656 47.12a49.207 49.207 0 007.094 2.153\",\n fill: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1786.382 579.735c2.415 1.061 4.648 2.238 5.768 2.892 4.475 2.61 8.043 4.163 3.855 6.487-2.453 1.361-2.088 3.437-.546 4.658 1.918 1.516 3.938 5.768-2.132 5.456-2.32-.119-5.304-.598-8.023-1.343a54.357 54.357 0 01.995-17.796c.026-.119.056-.236.083-.354m43.928-41.47a54.5 54.5 0 00-18.068 6.518c5.54 6.522.246 7.204-7.05 4.837a54.197 54.197 0 00-16.286 22.04c4.693 2.896 9.744 5.486 14.747 7.676 17.076 7.47 27.995 6.821 8.792-9.188-5.029-4.193-9.898-8.722-7.569-8.82 9.542-.408 18.096 2.491 25.602 4.128 9.875 2.152 11.218-.22 2.038-8.658-2.79-2.566-4.893-5.813.618-6.409 2.816-.303 1.045-6.022-2.824-12.125m-2.652 90.772a48.882 48.882 0 0017.4-8.39c-11.476 2.753-3.375-2.953-5.892-4.555-1.949-1.24-4.296-1.39-2.326-4.977.774-1.407 3.537-3.018 5.636-3.855a206.618 206.618 0 003.73-1.519c7.721-3.259 6.268-7.292-.265-7.077-6.584.216-15.602-.324-18.94-.51-9.834-.549 5.048 7.704-10.543 7.704-42.979 0 15.178 15.746 11.2 23.18\",\n fill: \"#e8e8f0\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1661.714 603.925c1.14 0 2.07.93 2.07 2.07 0 1.14-.93 2.07-2.07 2.07-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m82.036 78.488c.864 0 1.569.705 1.569 1.568 0 .864-.705 1.568-1.568 1.568a1.571 1.571 0 01-1.568-1.568c0-.863.705-1.568 1.568-1.568m-59.955-136.059a1.57 1.57 0 011.567 1.567 1.57 1.57 0 01-1.567 1.569 1.57 1.57 0 01-1.568-1.57 1.57 1.57 0 011.568-1.566m-254.052-52.377c.864 0 1.568.705 1.568 1.568a1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.568-1.568c0-.863.704-1.568 1.568-1.568m134.1-24.871a1.57 1.57 0 011.568 1.568 1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.568-1.569 1.57 1.57 0 011.568-1.568m-65.922 210.918c.863 0 1.568.704 1.568 1.567 0 .864-.705 1.57-1.568 1.57a1.571 1.571 0 01-1.568-1.57 1.57 1.57 0 011.568-1.567m514.127-147.253c.863 0 1.568.705 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.567-1.568c0-.863.704-1.568 1.567-1.568m-145.027 182.64c.863 0 1.568.703 1.568 1.567s-.705 1.568-1.568 1.568a1.571 1.571 0 01-1.568-1.568c0-.864.705-1.568 1.568-1.568m76.092 9.101c.863 0 1.567.706 1.567 1.569a1.57 1.57 0 01-1.567 1.568 1.571 1.571 0 01-1.568-1.568c0-.863.705-1.568 1.568-1.568m-107.872-71.393c.863 0 1.567.705 1.567 1.568a1.57 1.57 0 01-1.567 1.57 1.57 1.57 0 01-1.568-1.57c0-.863.704-1.568 1.568-1.568m520.731 69.932c.864 0 1.568.705 1.568 1.568a1.57 1.57 0 01-1.568 1.569 1.57 1.57 0 01-1.567-1.57 1.57 1.57 0 011.567-1.567m-38.199-244.734a1.57 1.57 0 011.567 1.567c0 .864-.704 1.57-1.567 1.57a1.571 1.571 0 01-1.568-1.57 1.57 1.57 0 011.568-1.567m57.723 42.444c.863 0 1.568.704 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.568m63.945-53.282a1.57 1.57 0 011.567 1.567 1.57 1.57 0 01-1.567 1.569 1.57 1.57 0 01-1.567-1.57 1.57 1.57 0 011.567-1.566m-739.225 247.03a1.067 1.067 0 010 2.132 1.067 1.067 0 010-2.132m-82.763-52.201c.586 0 1.065.479 1.065 1.065 0 .587-.479 1.066-1.065 1.066a1.068 1.068 0 01-1.066-1.066c0-.586.48-1.065 1.066-1.065m-168.96 52.305a1.067 1.067 0 010 2.132c-.586 0-1.065-.48-1.065-1.067 0-.586.48-1.065 1.065-1.065m456.096-153.321c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m270.79-50.083c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.065-1.065 1.065a1.067 1.067 0 01-1.065-1.065c0-.586.478-1.065 1.065-1.065m3.179-26.948c.587 0 1.066.48 1.066 1.066a1.07 1.07 0 01-1.066 1.066c-.586 0-1.065-.48-1.065-1.066 0-.586.479-1.065 1.065-1.065m-232.591 62.815a1.067 1.067 0 010 2.132 1.067 1.067 0 010-2.132m-416.996-64.73c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.479-1.065 1.065-1.065m793.047 160.653c.587 0 1.065.479 1.065 1.066 0 .586-.478 1.065-1.065 1.065a1.067 1.067 0 01-1.065-1.065c0-.587.478-1.066 1.065-1.066m146.576-123.074c.587 0 1.065.479 1.065 1.066 0 .586-.478 1.065-1.065 1.065a1.067 1.067 0 01-1.065-1.065c0-.587.478-1.066 1.065-1.066m-165.467 213.688c.587 0 1.066.48 1.066 1.065 0 .587-.48 1.066-1.066 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.479-1.065 1.065-1.065m-25.032-164.681c.587 0 1.066.479 1.066 1.065a1.07 1.07 0 01-1.066 1.067c-.586 0-1.065-.48-1.065-1.067 0-.586.479-1.065 1.065-1.065m-652.381-74.927c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-2.881 216.75c.586 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.064 1.066a1.067 1.067 0 01-1.066-1.066c0-.586.478-1.065 1.065-1.065m-141.774-30.207c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m422.683-27.578c.587 0 1.065.479 1.065 1.066 0 .586-.478 1.065-1.065 1.065a1.067 1.067 0 01-1.065-1.065c0-.587.478-1.066 1.065-1.066m-102.349 81.515c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-173.281-14.879c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.479-1.065 1.065-1.065m-103.576 24.854c.587 0 1.065.48 1.065 1.066 0 .587-.478 1.066-1.065 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.479-1.065 1.065-1.065m368.803-122.683c.586 0 1.064.48 1.064 1.065 0 .587-.478 1.066-1.065 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.48-1.065 1.065-1.065m-52.629 41.595a1.067 1.067 0 010 2.131 1.067 1.067 0 01-1.066-1.066c0-.586.478-1.065 1.065-1.065m-89.132-28.446c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.068 1.068 0 01-1.065-1.066c0-.586.48-1.065 1.065-1.065m-8.493-113.167c1.141 0 2.07.932 2.07 2.072 0 1.14-.929 2.07-2.07 2.07a2.074 2.074 0 01-2.07-2.07c0-1.14.929-2.071 2.07-2.071m206.182 84.687c1.14 0 2.07.931 2.07 2.07a2.074 2.074 0 01-2.07 2.071c-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07M1573.31 735.305c1.14 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m15.278-202.032c1.14 0 2.07.93 2.07 2.07 0 1.14-.93 2.07-2.07 2.07-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m-23.504 80.102c1.14 0 2.07.93 2.07 2.07 0 1.141-.93 2.071-2.07 2.071a2.075 2.075 0 01-2.071-2.071c0-1.14.93-2.07 2.071-2.07m-151.089 40.487c1.14 0 2.07.931 2.07 2.071 0 1.14-.93 2.071-2.07 2.071a2.075 2.075 0 01-2.071-2.07c0-1.14.93-2.072 2.07-2.072m811.726-119.368c1.14 0 2.07.93 2.07 2.07 0 1.141-.93 2.071-2.07 2.071-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m28.158 67.199c1.14 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.071c-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m-97.765-105.399c1.141 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-36.479 40.129c1.14 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m-407.478-31.317c1.14 0 2.07.93 2.07 2.07 0 1.141-.93 2.071-2.07 2.071-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m584.87 191.521c1.141 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m81.805-11.254c1.141 0 2.07.93 2.07 2.07 0 1.14-.929 2.07-2.07 2.07-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-62.04-166.876a3.217 3.217 0 013.211 3.211 3.217 3.217 0 01-3.211 3.211 3.217 3.217 0 01-3.211-3.211 3.217 3.217 0 013.211-3.211m98.974 77.296a3.217 3.217 0 013.21 3.21 3.217 3.217 0 01-3.21 3.212 3.217 3.217 0 01-3.211-3.211 3.217 3.217 0 013.21-3.211m43.561 112.919a3.217 3.217 0 013.211 3.21 3.217 3.217 0 01-3.21 3.212 3.217 3.217 0 01-3.212-3.211 3.217 3.217 0 013.211-3.211m378.09-66.117a3.217 3.217 0 013.211 3.21 3.216 3.216 0 01-3.211 3.21 3.216 3.216 0 01-3.211-3.21 3.217 3.217 0 013.211-3.21M1717.487 700.16a3.216 3.216 0 013.21 3.211 3.216 3.216 0 01-3.21 3.21 3.217 3.217 0 01-3.211-3.21 3.217 3.217 0 013.21-3.21m239.739-27.223c.818 0 1.486.667 1.486 1.485 0 .819-.668 1.486-1.486 1.486a1.488 1.488 0 01-1.485-1.486c0-.818.667-1.485 1.485-1.485m42.233-57.299a1.49 1.49 0 011.485 1.486c0 .819-.668 1.486-1.485 1.486a1.489 1.489 0 01-1.486-1.486 1.49 1.49 0 011.486-1.486m915.852 35.655c1.142 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-354.076-50.846c1.141 0 2.07.93 2.07 2.07 0 1.14-.929 2.071-2.07 2.071a2.074 2.074 0 01-2.07-2.07c0-1.14.93-2.07 2.07-2.07m268.861 7.499c1.14 0 2.07.93 2.07 2.07 0 1.141-.93 2.071-2.07 2.071-1.141 0-2.07-.93-2.07-2.07 0-1.14.929-2.07 2.07-2.07m41.137 167.101c1.141 0 2.07.93 2.07 2.07 0 1.14-.929 2.07-2.07 2.07-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m105.678-77.675c1.141 0 2.07.931 2.07 2.071 0 1.14-.929 2.07-2.07 2.07-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.071 2.07-2.071m89.606-57.357c1.14 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-229.852 146.251c1.141 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.069-.93-2.069-2.07 0-1.14.93-2.07 2.07-2.07m68.38-35.582c.863 0 1.568.704 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.568m185.608 26.445a2.767 2.767 0 012.762 2.762 2.767 2.767 0 01-2.762 2.76 2.767 2.767 0 01-2.762-2.76 2.767 2.767 0 012.762-2.762m-462.119-80.509c.863 0 1.567.705 1.567 1.568a1.57 1.57 0 01-1.567 1.568 1.57 1.57 0 01-1.568-1.568c0-.863.704-1.568 1.568-1.568m83.232 97.896a1.57 1.57 0 011.568 1.567 1.57 1.57 0 01-1.568 1.569 1.57 1.57 0 01-1.567-1.57 1.57 1.57 0 011.567-1.566m-157.409-45.069c.863 0 1.568.704 1.568 1.567 0 .865-.705 1.57-1.568 1.57a1.57 1.57 0 01-1.568-1.57 1.57 1.57 0 011.568-1.567m8.624-29.022a1.57 1.57 0 011.568 1.567c0 .864-.704 1.569-1.568 1.569a1.571 1.571 0 01-1.567-1.57 1.57 1.57 0 011.567-1.566m295.125-46.193a1.57 1.57 0 011.568 1.567 1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.567m-106.658 94.715c.863 0 1.567.705 1.567 1.568a1.57 1.57 0 01-1.567 1.568 1.57 1.57 0 01-1.568-1.568c0-.863.704-1.568 1.568-1.568m263.582-84.578c.863 0 1.568.704 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.568m-138.99-45.319a1.57 1.57 0 011.567 1.567c0 .864-.704 1.569-1.568 1.569a1.571 1.571 0 01-1.567-1.57 1.57 1.57 0 011.567-1.566m86.951 125.897c.864 0 1.568.705 1.568 1.568a1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.567-1.568c0-.863.704-1.568 1.567-1.568m-391.008-35.965a1.57 1.57 0 011.568 1.568 1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.568m26.209-121.475c.863 0 1.568.705 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.568-1.568 1.57 1.57 0 011.568-1.567m145.143 49.689a1.57 1.57 0 011.567 1.568 1.57 1.57 0 01-1.567 1.568 1.57 1.57 0 01-1.568-1.568 1.57 1.57 0 011.568-1.568m-208.102-49.5c.863 0 1.568.705 1.568 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.567-1.568c0-.863.704-1.568 1.567-1.568m-59.569 22.498a1.57 1.57 0 011.568 1.568 1.57 1.57 0 01-1.568 1.568 1.57 1.57 0 01-1.567-1.568 1.57 1.57 0 011.567-1.568M1460.238 740.599a1.57 1.57 0 011.568 1.567 1.57 1.57 0 01-1.568 1.568 1.571 1.571 0 01-1.568-1.568c0-.863.705-1.567 1.568-1.567m57.345-202.561c.863 0 1.568.704 1.568 1.567 0 .865-.705 1.57-1.568 1.57a1.57 1.57 0 01-1.568-1.57 1.57 1.57 0 011.568-1.567M2695.63 704.246c.864 0 1.569.704 1.569 1.567 0 .865-.705 1.57-1.568 1.57a1.57 1.57 0 01-1.568-1.57 1.57 1.57 0 011.568-1.567m148.534 60.887c.863 0 1.567.705 1.567 1.568a1.57 1.57 0 01-1.567 1.568 1.57 1.57 0 01-1.568-1.568c0-.863.704-1.568 1.568-1.568m141.385-16.023c.864 0 1.569.705 1.569 1.568 0 .864-.705 1.568-1.568 1.568a1.57 1.57 0 01-1.568-1.568c0-.863.704-1.568 1.568-1.568m98.215-35.591a1.57 1.57 0 011.568 1.567 1.57 1.57 0 01-1.568 1.569 1.57 1.57 0 01-1.567-1.57 1.57 1.57 0 011.567-1.566m-162.299-129.983c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-284.115 8.389c.588 0 1.066.479 1.066 1.065 0 .587-.479 1.066-1.066 1.066a1.067 1.067 0 01-1.064-1.066c0-.586.477-1.065 1.064-1.065m-100.688 77.778c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m247.102 41.566c.587 0 1.065.479 1.065 1.065s-.478 1.066-1.065 1.066-1.065-.48-1.065-1.066c0-.586.478-1.065 1.065-1.065m-184.616-2.913c.587 0 1.066.479 1.066 1.065 0 .587-.479 1.066-1.066 1.066a1.067 1.067 0 01-1.064-1.066c0-.586.478-1.065 1.064-1.065m288.001 7.89c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m180.549 77.207c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-98.844 7.167c.587 0 1.065.48 1.065 1.066 0 .586-.478 1.066-1.065 1.066s-1.065-.48-1.065-1.066c0-.587.478-1.066 1.065-1.066m24.75-157.44a1.067 1.067 0 010 2.132 1.067 1.067 0 01-1.066-1.066c0-.586.479-1.065 1.066-1.065m51.91-4.543c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-4.935-16.185c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m8.309 111.75c.588 0 1.066.48 1.066 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-94.435-105.423c.587 0 1.065.48 1.065 1.066 0 .586-.478 1.066-1.065 1.066s-1.065-.48-1.065-1.066c0-.587.478-1.066 1.065-1.066m-87.408 100.776c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m1.934 64.184c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m39.545 16.017c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-2.977-180.547a1.067 1.067 0 010 2.133 1.067 1.067 0 010-2.132m-58.82 6.742a1.067 1.067 0 010 2.131 1.067 1.067 0 01-1.066-1.066c0-.586.478-1.065 1.065-1.065m173.236 141.854c.587 0 1.065.479 1.065 1.066 0 .586-.478 1.066-1.065 1.066a1.067 1.067 0 010-2.132m-56.015-103.321c.587 0 1.065.48 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-31.176 36.493a1.067 1.067 0 010 2.132 1.067 1.067 0 010-2.132m112.742 7.909c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-190.349 8.418c.587 0 1.065.479 1.065 1.065 0 .587-.478 1.066-1.065 1.066a1.067 1.067 0 01-1.065-1.066c0-.586.478-1.065 1.065-1.065m-318.937 35.397a1.067 1.067 0 010 2.131 1.067 1.067 0 01-1.066-1.066c0-.586.478-1.065 1.065-1.065m98.127-117.391c1.141 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-38.085 21.013c1.14 0 2.07.931 2.07 2.071 0 1.14-.93 2.07-2.07 2.07-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07M2616.78 770.9c1.14 0 2.07.93 2.07 2.07 0 1.14-.93 2.07-2.07 2.07-1.142 0-2.07-.93-2.07-2.07 0-1.14.928-2.07 2.07-2.07m316.625 20.026c1.141 0 2.07.93 2.07 2.07a2.074 2.074 0 01-2.07 2.07c-1.14 0-2.07-.93-2.07-2.07 0-1.14.93-2.07 2.07-2.07m-291.64-86.742a2.634 2.634 0 012.629 2.629 2.634 2.634 0 01-2.63 2.629 2.634 2.634 0 01-2.627-2.63 2.634 2.634 0 012.628-2.628m132.251 10.456a2.634 2.634 0 012.629 2.629 2.634 2.634 0 01-2.63 2.629 2.635 2.635 0 01-2.628-2.63 2.635 2.635 0 012.629-2.628m-246.726-31.875a2.634 2.634 0 012.628 2.629 2.634 2.634 0 01-2.629 2.628 2.634 2.634 0 01-2.629-2.628 2.634 2.634 0 012.63-2.63m37.945-68.023a2.634 2.634 0 012.63 2.63 2.634 2.634 0 01-2.63 2.628 2.634 2.634 0 01-2.629-2.629 2.634 2.634 0 012.63-2.629m110.714-.004a2.634 2.634 0 012.63 2.63 2.634 2.634 0 01-2.63 2.628 2.635 2.635 0 01-2.629-2.629 2.635 2.635 0 012.63-2.629m97.315-24.219a2.634 2.634 0 012.629 2.629 2.634 2.634 0 01-2.63 2.629 2.635 2.635 0 01-2.628-2.63 2.635 2.635 0 012.629-2.628M2817.55 710.5a2.635 2.635 0 012.63 2.629 2.634 2.634 0 01-2.63 2.629 2.634 2.634 0 01-2.628-2.629 2.635 2.635 0 012.629-2.629M510.894 917.694a2.396 2.396 0 100-4.794 2.397 2.397 0 000 4.794m-31.785 10.328a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m6.297-32.265a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428m-41.701 13.686a2.4 2.4 0 100-4.8 2.4 2.4 0 100 4.8m-35.811 15.668a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m18-37.9a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428M1550.35 625.998a2.397 2.397 0 10.001-4.793 2.397 2.397 0 000 4.793m539.746-138.94a2.397 2.397 0 100-4.794 2.397 2.397 0 000 4.794m297.851 122.143a2.397 2.397 0 100-4.793 2.397 2.397 0 000 4.793M1903.632 474.32a2.397 2.397 0 10-.001-4.796 2.397 2.397 0 000 4.795m100.095 10.309a2.397 2.397 0 100-4.794 2.397 2.397 0 000 4.794m-586.937 4.949a2.397 2.397 0 10-.001-4.795 2.397 2.397 0 000 4.795m-1035.211 460.4a1.414 1.414 0 100-2.827 1.414 1.414 0 000 2.827m210.295-45.827a1.414 1.414 0 100-2.827 1.414 1.414 0 000 2.827m-35.602 29.536a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m-243.114 9.806a1.414 1.414 0 100-2.827 1.414 1.414 0 000 2.827M585.59 892.34a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m-43.446 2.258a1.715 1.715 0 10-.001-3.43 1.715 1.715 0 00.001 3.43M318.785 879.45a1.714 1.714 0 100-3.428 1.714 1.714 0 000 3.428m66.409 22.99a2.4 2.4 0 10.001-4.798 2.4 2.4 0 00-.001 4.798m-47.804 18.766a2.4 2.4 0 100-4.8 2.4 2.4 0 000 4.8m287.457 14.057a2.4 2.4 0 100-4.8 2.4 2.4 0 000 4.8m-296.542-29.337a2.05 2.05 0 100-4.099 2.05 2.05 0 000 4.099m1136.808-297.949a1.414 1.414 0 100-2.827 1.414 1.414 0 000 2.827m354.039-122.132a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m565.894 270.214a1.414 1.414 0 10-.001-2.828 1.414 1.414 0 000 2.828m282.788-11.96a1.414 1.414 0 100-2.828 1.414 1.414 0 000 2.828m75.347 17.333a1.414 1.414 0 10-.002-2.828 1.414 1.414 0 00.002 2.828M1459.488 535.578a1.715 1.715 0 10-.001-3.43 1.715 1.715 0 00.001 3.43m-49.676 167.875a1.714 1.714 0 10-.002-3.428 1.714 1.714 0 00.002 3.428\",\n fill: \"#fff\"\n }))), _g2 || (_g2 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#d)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#e)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2035.444 779.631l-175.913-201.068s-12.777-15.226 6.979-14.761c19.756.465 105.714 1.986 105.714 1.986l-108.812-123.692 36.333-23.597 65.654 1.419 155.932 183.779s16.423 17.39-9.842 16.668c-26.265-.722-118.069-3.241-118.069-3.241l131.461 158.215a513.809 513.809 0 01-12.117 2.609c-20.631 1.335-39.65 1.946-57.411 1.946-6.815 0-13.445-.09-19.909-.263m-119.279-14.042a717.644 717.644 0 01-11.077-2.355l-328.614-337.3 64.856-3.625 321.401 342.525c-12.568-1.119-18.269-.075-22.939.969-3.245.725-5.993 1.45-10.202 1.45-3.279 0-7.444-.44-13.425-1.664\",\n fill: \"url(#f)\"\n })))), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 0h3926.889v1390.454H0zm444.021 555.551l.01 356.611c0 9.425 5.295 18.87 11.1 23.049 3.401 2.447 6.456 2.096 10.113 1.512l17.576-4.956c3.523-.992 9.698-1.582 12.596-5.272 4.785-6.099 7.938-15.488 7.938-24.427l-.008-344.852c0-12.788-6.452-23.235-14.913-25.805l-25.957-2.268c-.33-.029-.657-.043-.983-.043-9.647.001-17.472 12.438-17.472 26.451m2495.143.569l-26.053.745c-7.241 1.706-12.764 7.006-12.764 15.488l-.01 227.16c0 9.635 7.212 20.679 15.811 22.019l23.683 3.694c8.469 1.046 15.116-4.92 15.116-14.835l.01-238.618c0-9.427-6.864-15.66-15.303-15.66-.163 0-.326.002-.49.007m-288.768 8.013l-25.156.657c-6.128 1.321-11.372 5.342-11.372 11.908v193.936c0 7.458 6.062 16.812 13.372 17.628l21.383 2.384c7.169.81 15.142-3.916 15.142-11.592V577.502c0-7.329-5.848-13.373-13.033-13.373-.112 0-.224.001-.336.004m-703.164 122.089c5.669 2.183 11.003 6.055 14.576 10.991 9.973 13.767 19.955 27.542 29.931 41.321l4.109 5.675c127.297.794 253.783 6.276 369.962 16.448 25.464 2.231 46.476-20.913 46.476-46.476v-43.133l-50.296-26.102v-83.084l50.296-26.102v-43.134c0-4.996-1.812-13.646-3.293-18.276-10.651-8.301-21.502-17.484-30.878-27.236-3.228-.713-9.183-1.213-12.305-.963-54.001 4.304-110.949 7.672-169.559 10.1a5297.552 5297.552 0 01-62.546 2.216l-46.49 43.461-49.539-11.857 3.178 14.401-3.982 12.989h-146.857l-3.982-12.989 3.443-15.598-49.803 13.054-45.036-43.418c-81.15-2.382-160.084-6.503-233.559-12.359-25.479-2.032-46.476 20.912-46.476 46.475v43.134l50.295 26.102v83.084l-50.295 26.102v43.133c0 25.563 21.012 48.707 46.476 46.476 107.496-9.412 223.813-14.806 341.425-16.191v-40.362h.001a13.924 13.924 0 01.303-3.873c.973-4.298 4.119-7.774 9.173-9.371 3.074-.973 6.152-1.932 9.215-2.896 3.062-.967 6.136-1.942 9.201-2.913 1.959-.619 4.069-.913 6.25-.913 3.455 0 7.089.737 10.586 2.084\",\n fill: \"url(#g)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g3 || (_g3 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#h)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1688.076 0h-126.979c1.306 19.521 7.334 46.357 11.797 67.244 3.34 15.62 2.43 23.275 2.201 33.45-.129 5.737 2.772 13.81-.14 20.792-8.19 19.63-1.059 49.981-1.92 69.376-.506 11.413-6.94 23.139-1.827 26.018 1.873 4.443 23.222 12.609 27.708 12.609 9.485 0-5.055-25.994-.15-40.277 1.421-4.14 15.186-67.226 16.386-100.657.303-8.447 8.782-71.131 12.943-54.236 2.82 11.452 6.167 31.493 8.241 49.912 1.503 13.345 4.526 12.759 3.576 26.339-1.572 22.489 9.508 55.833 10.165 70.179.603 13.16-1.06 22.578-.739 26.308.795 9.208 6.1-3.609 32.071 11.944 3.71 2.222 4.824 9.599 6.956 8.732 3.2-1.298 2.74-14.947-1.593-19.789-2.867-3.204-11.169-12.556-12.423-16.972-.283-26.432 9.457-47.326 5.11-68.721-3.045-14.98 3.073-34.871 4.745-52.09 2.324-23.934 1.415-44.961 3.08-60.522.37-3.454.641-6.66.792-9.639\",\n fill: \"#5da180\",\n fillRule: \"evenodd\"\n }))), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1598.3 1352.923l28.435-20.021 6.264 4.223c-.017 2.983-.033 5.968-.048 8.95 1.343 5.406 6.151 8.524 15.067 8.929 10.176-.105 14.282-4.697 15.067-8.929l.386-9.364 24.488-.907-3.482 40.333-72.251 8.414c-4.642-10.542-9.285-21.085-13.926-31.628\",\n fill: \"url(#i)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g4 || (_g4 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#j)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 0v285.147l111.613-23.364c22.498-6.144 32.451-22.093 30.205-47.573L142.473 0z\",\n fill: \"#42866a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2165.291 361.752c-31.653-8.407-63.858-12.645-96.27-15.313l8.442 29.889c32.57 2.551 65.211 7.599 97.932 15.553zm-254.295-18.694v-28.559c30.471-.192 53.864-10.512 73.887-38.565 8.121.361 25.974 2.247 31.009 10.006v57.118c-32.885-1.196-72.315-1.409-104.896 0m147.198-69.801c-10.353-3.704-22.987-6.738-33.981-8.149l18.898-51.798v-21.731c4.763 8.526 20.878 9.121 20.348-10.021-4.207-14.422-10.934-18.993-20.348-13.046V148.45c-15.574-6.179-25.749-25.181-28.788-37.157-3.966-15.619-1.932-48.494 20.181-54.164-2.497 8.186-3.032 15.919-1.758 23.234l6.056 4.572c-.645 13.199 1.05 26.045 5.269 38.507l3.891 4.44c2.192 7.142 5.235 14.542 9.531 22.199 12.628-.881 20.447-9.645 24.702-19.6 6.397-14.967 5.249-32.293-1.425-46.914-6.399-14.016-18.475-27.343-37.659-28.875V0h45.713v224.57l-30.63 48.687\",\n fill: \"#266b50\"\n }))), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1413.795 1391.416c-22.851-11.095-42.938-22.912-59.931-35.332l74.466-37.793c-42.59-30.682-65.109-64.736-48.516-105.362l-77.07-1.137c45.326-78.792 206.334-143.234 419.467-171.419l.86-.08v122.37l-72.287 57.097-17.311 29.788-.474 87.577c-22.229 7.845-10.327 29.769 14.861 28.481 21.961-.056 38.262-17.74 15.611-28.895l-.386-76.37 4.951-14.959 55.035-44.925v74.004l-15.107 8.834c-7.503 6.647-11.488 13.556 2.837 21.816 10.136 4.991 20.271 9.982 30.408 14.972 14.084 5.55 27.665 2.349 40.955-5.9l92.043-51.214c14.372-8.636 7.694-15.229-.143-18.968l-17.694-8.439v-145.467l.767-.209 44.828-36.866.683.221v61.258c-20.622 3.459-31.796 9.654-18.552 22.923l82.721 63.107c14.702 7.962 29.491 9.091 44.33 6.384l31.327-7.804c11.454-5.007 14.892-11.461 4.856-20.34l-21.537-16.505-.548-136.243.496-.001c15.432.488 30.716 1.155 45.831 1.997l.837.077-.182 191.572c-11.823 2.18-20.174 4.594-23.778 8.989-2.75 3.354-3.961 9.513 1.019 13.732l87.529 67.344c17.067 10.838 34.189 13.31 51.352 9.55l32.563-8.019c13.918-5.19 18.356-12.428 4.246-23.671l-20.118-15.703-.467-28.111v-74.647l40.548 33.184c5.247 3.253 8.227 8.048 7.252 15.535.054 6.223-.391 11.306-.335 17.529-6.184 4.041-9.596 7.947-9.31 11.128.408 4.54 6.198 12.696 22.858 12.719 15.883-.759 22.74-7.679 22.716-12.291-.026-5.395-3.55-9.353-9.612-11.743l-.181-18.871c1.143-15.904-4.946-27.585-17.634-35.414l-56.302-45.289v-95.25l.206.018c78.853 10.433 150.566 25.831 211.926 45.08l-40.552 20.735c54.693 16.816 106.875 43.484 144.362 78.634l70.108-12.458c29.937 26.276 46.402 54.883 46.402 84.819 0 50.01-45.887 96.325-123.933 134.221zm442.575-363.441l.433-.041a1912.523 1912.523 0 0137.174-1.673l-.539 1.312-37.068 29.331z\",\n fill: \"url(#k)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2634.964 1390.454c41.401-34.714 64.453-73.215 64.453-113.748 0-121.479-206.898-224.732-495.04-262.367l-1.071-.099v-4.547l.737.066c5.379.698 10.76 1.292 16.14 2.021 291.209 39.393 499.366 143.892 499.366 266.613 0 39.804-21.912 77.691-61.444 112.061zm-1366.178 0c-39.532-34.37-61.448-72.256-61.448-112.061 0-122.23 206.5-226.387 495.883-266.138 6.613-.906 13.232-1.809 19.85-2.668v4.709l-.763.07c-288.035 37.656-494.838 140.889-494.838 262.34 0 40.533 23.053 79.034 64.454 113.748zm802.74-388.358c-15.1-.838-30.35-1.503-45.733-1.991v-4.179h.341c15.113.475 31.283 1.207 46.234 2.018l.159.014v4.229zm-215.156-4.251a2111.824 2111.824 0 0145.763-1.918h.515v4.13a1918.66 1918.66 0 00-45.847 1.96l-.431.038z\",\n fill: \"url(#l)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3302.65 1023.876c-75.054-62.967-130.868-188.42-139.861-335.553-13.23-216.468 79.888-397.895 207.989-405.228 20.538-1.175 40.73 2.196 60.211 9.578l.223-.007c82.788 61.201 145.476 196.817 155.138 357.389 10.082 167.578-40.44 314.87-121.154 381.685-18.905 15.649-39.069 26.687-62.281 32.527-.966.027-1.938.04-2.903.04-35.712 0-70.632-18.009-97.362-40.431m-19.132-328.707v212.256c32.898 83.83 138.511 109.065 190.963 42.875V710.348l-51.3-92.203-90.628-3.499z\",\n fill: \"url(#m)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g5 || (_g5 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#n)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3386.335 410.474l-54.214 96.595 32.835-1.248 17.897-31.888 16.006 30.599 35.964-1.367z\",\n fill: \"#d60038\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M953.486 443.498l49.793 66.329-28.976-.823-18.224-24.277-16.3 23.295-30.829-.876z\",\n fill: \"#ea5b6e\"\n }))), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1399.225 195.613l119.409-51.678c-58-3.441-219.206-41.029-246.354-51.568l-178.812 36.66C973.683 92.608 883.505 48.631 833.408 0h669.279c54.528 50.843 172.119 90.395 318.259 106.225v126.81c-151.313-5.051-293.764-18.044-421.721-37.422m706.83-89.434h.322C2252.317 90.317 2369.734 50.792 2424.207 0h436.453c-44.475 35.27-113.405 66.304-202.953 91.463l178.975 36.568c-185.077 56.739-441.691 95.347-730.627 105zm-881.452 113.478c-60.596-.093-109.886-16.539-110.093-36.733-.207-20.194 48.748-36.491 109.344-36.398 60.594.093 109.885 16.539 110.092 36.733.206 20.139-48.469 36.399-108.829 36.398h-.514m-72.187-34.472c.135 11.843 32.396 21.488 72.057 21.542 39.661.055 71.702-9.502 71.567-21.344-.136-11.844-32.397-21.488-72.057-21.544l-.33-.001c-39.507.001-71.372 9.536-71.237 21.347m1873.586-67.887c-77.13-2.002-138.941-25.284-138.06-51.999.881-26.716 64.123-46.751 141.253-44.747 77.13 2.003 138.941 25.284 138.059 52-.84 25.481-58.412 44.884-130.656 44.885-3.499 0-7.032-.046-10.596-.139m-86.742-47.682c-.557 15.369 38.541 28.762 87.328 29.915 48.787 1.152 88.791-10.374 89.348-25.742.557-15.368-38.54-28.761-87.327-29.913a285.497 285.497 0 00-6.706-.079c-45.696-.001-82.111 11.161-82.643 25.819\",\n fill: \"url(#o)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1686.426 226.327c-1.233-2.098-2.553-5.85-5.018-7.326-14.62-8.755-22.691-8.521-27.095-8.285-3.419.182-4.628.365-4.975-3.659-.322-3.73 1.342-13.148.739-26.308-.657-14.346-11.737-47.69-10.165-70.179.95-13.58-2.073-12.994-3.575-26.339a537.883 537.883 0 00-2.02-15.743c15.252 4.912 31.355 9.49 48.224 13.699-2.311 13.953-5.437 28.477-3.082 40.064 4.347 21.394-5.394 42.289-5.11 68.721 1.255 4.416 9.556 13.769 12.423 16.973 3.73 4.167 4.589 14.861 2.715 18.586zm-114.113-9.34c-.91-5.058.215-14.713.723-26.124.86-19.396-6.271-49.746 1.919-69.377 2.912-6.982.01-15.056.14-20.792.228-10.175 1.138-17.83-2.2-33.45-1.655-7.739-3.523-16.296-5.287-24.993 15.387 7.416 32.344 14.387 50.696 20.845-1.765 11.413-3.039 22.279-3.152 25.459-1.199 33.432-14.965 96.518-16.386 100.657-2.976 8.667 1.206 21.644 2.837 30.51a3425.39 3425.39 0 01-29.29-2.735\",\n fill: \"url(#p)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1270.304 201.841c15.794-3.912 25.812-9.826 25.736-16.458-.075-6.58-10.069-12.481-25.736-16.435v-18.923c37.452 5.883 63.492 18.57 63.642 33.234.151 14.755-25.943 27.425-63.642 33.146zm128.921-6.228l52.013-22.509v29.924a3060.146 3060.146 0 01-52.013-7.415m-95.957-94.031l27.04-13.208V67.436c0-6.627 15.331-12 34.242-12 18.911 0 34.241 5.373 34.241 12v27.109l36.236 6.626c10.911 1.997 16.211 4.364 16.211 16.091v17.166c-50.39-9.196-110.766-22.995-147.97-32.846\",\n fill: \"url(#q)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2533.64 123.903c-.036-12.643 3.634-18.928 12.246-27.813 26.929-27.782 39.355-68.309 42.049-96.09h272.725c-44.475 35.27-113.405 66.304-202.953 91.463l178.975 36.568c-86.607 26.551-188.88 49.131-302.798 66.633z\",\n fill: \"url(#r)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2319.285 168.112c-.031-10.048 2.887-15.044 9.732-22.105 29.317-30.245 37.011-74.741 32.813-104.987l.06-.04c25.487-12.516 46.545-26.275 62.317-40.98h4.19l66.351 65.363 4.257 134.448c-57.271 8.113-117.277 14.961-179.528 20.42z\",\n fill: \"url(#s)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g6 || (_g6 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#t)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2054.815 197.076c6.48-1.309 10.175-9.318 8.25-17.892-1.925-8.572-8.738-14.46-15.22-13.152-6.48 1.31-10.175 9.318-8.25 17.892 1.924 8.572 8.74 14.461 15.22 13.152\",\n fill: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M191.557 587.55a5565.32 5565.32 0 0097.75 1.299v411.055c-74.1 27.546-148.021 59.695-219.857 94.963-.26-147.291-.52-323.501-.778-470.822 41.342-3.153 83.003-5.924 122.885-7.743z\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 415.538c62.839 14.19 126.64 24.832 191.557 37.576v163.188C129.378 619.138 62.876 624.286 0 629.593z\",\n fill: \"#599b7c\"\n }))), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M629.248 1390.454c41.992-69.404 111.624-144.472 181.919-186.559l304.062 10.179c-40.997 56.307-57.213 111.43-40.309 176.38z\",\n fill: \"url(#u)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g7 || (_g7 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#v)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1056.286 955.776l-91.508 22.507-20.886-44.807 93.855-19.47zm2149.65 165.521l105.274 65.584 36.997-62.053-116.297-62.053z\",\n fill: \"#96cca9\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1079.652 693.72l-15.465 2.418v-57.512l23.197-1.45v43.013zm2432.732 118.44l-21.748-2.676v-95.466l36.246 2.9v75.168z\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2590.623 1172.376c-38.12-33.456-98.109-63.125-173.918-86.911l-40.552 20.735c26.898 8.052 50.97 18.119 72.844 29.753 26.742 14.224 51.408 28.614 71.519 48.881zm-1287.878 39.416l77.069 1.137c-18.796 40.754 16.026 73.747 56.017 102.362l-81.967 40.793c-41.045-30.001-64.001-63.52-64.001-98.889 0-15.539 4.435-30.72 12.882-45.403\",\n fill: \"#fff\"\n }))), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1963.444 244.23c-39.498 0-115.331 6.972-118.038 27.212l-24.573-31.501c4.238-26.004 97.703-31.854 146.987-31.962 45.788-.099 132.923 6.194 138.234 31.339l-24.573 32.124c-3.286-20.675-78.843-27.212-118.037-27.212\",\n fill: \"url(#w)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g8 || (_g8 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#x)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2067.38 258.565c-9.476-4.13-22.822-7.215-37.334-9.443l13.239-36.29c17.232 2.415 33.234 5.885 44.804 10.733l.648.271.086.038z\",\n fill: \"#a70831\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1852.67 784.863l-44.74-1.434c.448-9.564-1.315-17.216-11.618-17.48 7.318-7.86 16.644-11.359 27.938-10.583l23.681 7.145c11.376 7.523 9.984 14.953 4.738 22.352m114.11 396.003c6.548 3.538 13.125 6.268 19.777 6.717-7.148-6.603-8.445-14.424-8.61-22.48V826.894c.603-12.218-2.978-20.687-8.166-25.782-2.628-2.8-2.064-2.899-4.692-5.7l-61.935-87.6-.506 312.558 28.301-21.836c4.804-3.704 9.492-2.432 11.512 3.592 1.542 4.606 1.645 13.215-2.54 19.55l-37.326 30.848-.122 75.46c.146 3.827 1.731 6.57 4.43 8.472l59.876 44.41m18.065-409.728l-30.899-57.644c1.326-12.992-3.424-21.585-10.516-28.48 5.958 1.197 11.696 4.435 17.116 10.581l63.37 87.996c4.12 7.742 2.42 14.166-5.455 19.193l-33.616-31.646m151.65 516.272c6.55 3.537 13.3 9.061 19.952 9.51-7.148-6.602-8.619-17.217-8.784-25.275V978.918c.603-12.217-2.978-20.688-8.166-25.783-2.628-2.8-2.064-2.899-4.692-5.7l-61.935-87.6c-.426 224.8-.408 206.637-.68 374.694.145 3.828 1.73 6.57 4.428 8.472 19.96 14.803 39.918 29.607 59.876 44.41m-126.715-342.789c-.108-8.674 6.094-14.447 13.775-8.309l48.35 38.633v21.638zM2189 962.332c-21.705-33.866-43.408-67.733-65.11-101.599-.12-9.475-2.984-20.349-10.067-27.504 10.173 1.107 18.242 8.282 25.261 18.495l62.325 86.384c3.702 8.44 4.562 16.243-5.024 21.706zm-201.997-590.767l-32.637-.17 19.8-29.388 27.21.503zm77.536-80.542l-58.73-11.514c-11.644-3.318-30.639-4.689-42.139-4.742-17.783-.08-51.224 2.388-52.673 11.173v17.606c-32.414-3.913-54.299-11.34-54.299-19.859 0-3.1 2.904-6.057 8.157-8.752l-33.483-47.468.16-53.546c-1.096.485-2.186.98-3.27 1.482V58.385a93.927 93.927 0 013.244-1.793V0h56.633v41.168c-7.243.885-14.4 2.021-21.427 3.548 5.365-1.1 10.835-2.004 16.371-2.793V65.75c-11.289 1.698-21.52 3.752-30.398 6.095-10.165 2.682-13.077 17.806.016 14.06 8.613-2.466 18.86-4.636 30.382-6.43v12.067c-11.488 1.728-21.88 3.826-30.865 6.222-9.458 2.521-12.608 17.69.402 13.96 8.63-2.477 18.904-4.656 30.463-6.457v12.068c-11.329 1.704-21.59 3.768-30.489 6.125-10.033 2.654-12.97 17.785.074 14.045 8.62-2.47 18.877-4.647 30.415-6.446v28.356c1.663-.219 3.348-.428 5.057-.628l-.009 53.901c5.554 17.315 13.5 34.31 19.07 51.621a366.118 366.118 0 0119.823-2.056l-13.269-52.332V.001h28.73v208.3l4.144 52.872a496.013 496.013 0 0116.816-.283c58.954 0 106.746 10.206 106.746 22.797 0 2.567-1.989 5.034-5.652 7.336m65.176 169.774c58.531-5.99 96.881-23.078 96.881-38.682 0-27.847-117.817-50.42-263.15-50.42-98.852 0-184.955 10.444-229.933 25.887 43.064-15.615 111.247-23.536 197.768-25.844 7.256-9.91 14.511-19.823 21.766-29.734-109.83 3.573-206.558 11.158-234.28 39.867-5.022 10.154-10.043 20.308-15.063 30.463 2.633-1.84 5.501-3.609 8.585-5.31-7.796 4.765-11.996 9.834-11.996 15.091 0 15.737 37.633 29.788 96.59 39.034l-10.565-10.068 98.322-39.744-13.044-14.754 100.661 16.43 24.848 14.692-22.88 38.7 11.46 8.912 26.408-29.058 43.2-49.676 95.896 44.38zm-78.993-341.36a15.938 15.938 0 002.576-4.222c10.867.61 21.734 1.222 32.6 1.833l-2.079 9.1-33.097-6.71m.245-26.106c2.952 4.431 3.863 9.48 3.9 14.655l31.428-2.75c-.542-10.833-3.918-20.172-9.174-28.52l-26.154 16.615m-777.43 765.927a1039610.6 1039610.6 0 01-71.108-27.564c-2.584-1.268-4.477-3.533-4.459-8.56v-13.843c-.256-5.227 6.11-6.324 10.043-4.883l73.72 26.984c22.566 6.947 34.928 21.768 36.153 45.183l.428 16.935c.002 26.26.006 52.52.01 78.78-.159 4.442-2.395 6.08-5.455 6.602l-20.68-7.979c-2.048-.826-2.65-1.787-2.617-2.807.005-25.445.01-50.89.013-76.337 1.275-16.32-4.482-26.805-16.049-32.51m475.91 442.35l-21.48-9.476c-3.156-1.938-4.63-4.335-4.894-7.063v-84.137c0-4.642 25.87-17.829 25.87-22.47 1.568-3.402 7.473-20.844-5.014-26.867-1.89-.912-4.264-.22-6.787 1.298 4.531 6.45.531 16.877-10.307 25.373l-65.184 51.091c-9.585 7.512-12.499 16.163-12.62 28.047l-1.01 97.598c-6.127.311-12.754-2.64-14.985-7.979l.461-93.207c.054-11.075 3.543-22.196 12.413-29.306l77.163-61.849V870.91l27.037 11.541c6.083 1.425 13.28.484 19.046-1.417-3.715 2.312-6.575 5.552-6.806 11.64v409.088c-4.465 2.002-8.749 1.737-12.904-.152\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2486.823 1012.977l35.418 9.914c4.587 1.284 5.862 1.02 7.341 1.053.003-19.885-.26-35.396-.256-58.257.932-10.85.326-25.133 13.427-37.554-6.498 2.652-11.79 1.813-16.73.692l-25.889-5.874c-2.62-.594-5.16-3.09-3.069-6.717-10.222 9.254-12.892 22.037-13.22 31.805-.016 21.46-.408 37.768-.423 59.228 0 2.675.52 4.904 3.401 5.71m115.478 35.797c15.164 5.986 29.49 11.125 44.654 17.11l.011-72.71c.987-11.504 2.01-24.823 12.208-37.069-6.889 2.811-12.59 2.274-17.737.733l-26.519-7.937c-2.73-.818-5.314-3.229-4.019-7.418-7.492 8.194-11.804 22.625-12.15 32.98-.019 22.752-.036 45.505-.054 68.257 0 2.836.654 4.89 3.606 6.054\",\n fill: \"#7fc39e\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3112.459 649.797c-1.707-85.64 12.583-161.15 34.596-220.778 12.855-34.826 27.152-63.774 45.586-87.371 16.814-21.526 35.265-42.744 58.313-57.846 22.388-14.672 50.621-24.942 78.951-25.958 30.535-1.097 65.852 8.918 101.084 34.829-70.173-25.913-138.255 2.657-182.74 60.912-29.355 38.443-57.134 91.498-72.628 161.945-15.39 69.975-17.574 143.87-8.918 214.966 8.413 69.086 25.87 129.126 49.6 175.772 39.836 78.305 98.778 157.594 186.615 158-49.22 13.312-95.324-1.31-133.02-28.452-22.954-16.53-41.924-37.64-59.093-60.093-19.471-25.464-36.228-55.991-50.768-90.777-26.795-64.1-44.593-143.16-47.578-235.15\",\n fill: \"#1e6249\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1186.037 673.188c-12.113 58.063-37.5 112.106-69.928 147.05-15.786 17.01-32.126 32.883-52.301 46.087-33.08 21.651-74.004 35.181-121.418 27.774 49.187-1.71 99.696-29.728 138.308-72 33.183-36.328 57.217-83.55 68.26-129.449 6.058-25.176 10.309-55.127 10.999-85.93.267-90.118-35.87-162.955-83.115-205.434-39.743-35.735-95.482-57.06-171.345-36.932 50.606-30.15 99.458-31.484 139.32-18.11 53.2 17.847 95.173 62.1 118.85 111.854 11.499 24.164 21.363 52.174 26.427 88.12 5.865 41.635 4.524 85.836-4.057 126.97\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1901.568 248.524c-18.9 2.65-36.35 6.65-46.649 12.326l-23.497-33.31c12.186-7.135 33.42-11.823 56.722-14.813zm43.765-3.88c-7.113.306-14.703.788-22.402 1.47l-9.126-35.994a662.4 662.4 0 019.784-.69l18.868-.94.042-.003z\",\n fill: \"#f1919b\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1322.543 421.317a285431.53 285431.53 0 00-36.745 15.227c-8.094 2.238-13.383-.935-16.06-9.144-.1-41.452.667-81.029.566-122.48-.629-8.787 1.412-18.265 8.427-24.495 13.375-5.648 26.75-11.296 40.123-16.945 10.9-2.336 17.038 4.001 17.565 20.562v111.806c1.155 11.694-4.584 19.567-13.876 25.47\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2087.215 501.928l-101.53-26.61 56.72-63.916 98.165 39.679zm-247.542 0l-53.355-50.847 98.322-39.744 55.27 64.319z\",\n fill: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.38 260.396l70.543 25.005c6.033 2.138 10.635-1.532 10.635-7.547v-13.112l-8.43-3.086c-.977 4.681-5.152 7.241-10.418 5.375l-70.544-25.005a19.136 19.136 0 01-4.041-1.992v3.29c0 7.797 4.915 14.47 12.255 17.071\",\n fill: \"#42866a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1964.081 154.715V45.855h-1.01c-5.346 0-10.625.065-15.818.19V154.91a648.058 648.058 0 0115.951-.194zm-27.864.56V73.68a582 582 0 00-16.827.944v81.598a592.76 592.76 0 0116.827-.947\",\n fill: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1924.958 64.964c4.397 1.5 9.236-1.014 10.808-5.617 1.571-4.604-.721-9.552-5.118-11.053-4.397-1.501-9.237 1.014-10.808 5.617-1.57 4.604.721 9.55 5.118 11.053\",\n fill: \"#e30c48\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1890.016 517.46l-3.983-12.988h154.821l-3.982 12.989z\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2115.693 1186.49c-5.167 2.387-11.71-2.465-14.613-10.838-2.904-8.372-1.069-17.095 4.098-19.48 5.168-2.388 11.711 2.464 14.615 10.836 2.903 8.373 1.068 17.095-4.1 19.482m5.745 16.085c10.815-4.996 14.655-23.25 8.58-40.772-6.078-17.52-19.77-27.675-30.585-22.68-10.814 4.996-14.654 23.25-8.578 40.771 6.076 17.522 19.77 27.677 30.583 22.681\",\n fill: \"#fff\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1048 310.885l-30.064 10.015v-29.963zM946.763 296.24l34.313 18.86v-29.963zm2298.543-73.425l29.357 11.113V187.94zm126.773-43.313l-42.38 40.095v-46.51z\",\n fill: \"#9ccfad\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3431.446 959.648c-25.107 12.317-53.52 9.37-75.515.304-21.866-9.013-42.574-25.778-55.882-55.07V704.19l38.844-66.941 20.911 1.682-38.134 65.72v197.027c10.518 24.414 26.894 37.529 43.658 46.945 19.46 10.929 43.648 15.163 66.118 11.026\",\n fill: \"#1e6249\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M317.86 658.062l53.48-2.971V548.05l-53.48-2.887z\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2884.45 816.56l33.827 5.307-2.143-.293c-8.622-1.176-15.794-10.992-15.794-20.625l.007-228.595c0-6.686 3.431-12.406 8.428-15.364l-24.317.694c-8.67.249-15.794 9.418-15.794 18.919l-.008 219.395c0 9.5 7.201 19.214 15.794 20.562m-280.364-30.88l26.35 2.937-3.198-.343c-7.312-.783-13.37-8.507-13.37-15.965V576.7c0-5.102 2.82-9.476 6.951-11.794l-16.733.437c-7.34.193-13.37 7.29-13.37 14.644v189.777c0 7.354 6.061 15.102 13.37 15.916\",\n fill: \"#74ba98\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M526.407 919.474l-34.74 9.798c1.465-.67 2.787-1.553 3.748-2.777 4.786-6.098 7.94-15.488 7.94-24.427l-.01-344.852c0-11.82-5.512-21.638-13.027-25.088l36.08 2.185c10.12.612 18.454 14.196 18.455 28.518l.01 325.646c0 14.322-8.597 28.218-18.456 30.997\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2825.52 1234.61c-32.78-52.845-77.69-92.204-132.467-125.4l149.61-42.997c107.345 42.013 206.556 88.18 280.053 142.512-102.69 8.936-194.505 16.948-297.196 25.885\",\n fill: \"#74b894\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1723.071 1284.49c-.175 2.68.736 4.9 3.2 6.46l26.83 11.815c5.561 1.214 10.883-.03 16.086-2.485l82.546-44.564c4.01-2.382 5.421-5.761 4.637-9.982v-10.173c5.898 2.814 11.796 5.628 17.694 8.44 11.406 5.933 10.4 11.9 1.844 17.89l-95.168 53.086c-12.552 7.759-26.482 9.739-42.285 3.874l-27.655-13.74c-10.89-6.481-12.497-13.7-2.835-21.816l15.386-9.22-.28 10.415m480.972 1c.465 6.453-6.368 8.15-9.847 8.768l-18.382 3.116c-8.772 1.487-22.113 1.975-37.31-8.825l-61.888-45.547c-4.01-2.383-5.498-8.881-4.714-13.103v-10.172l-13.28 3.245c-14.453.998-14.982 15.846-6.427 21.835l85.785 65.677c8.753 5.41 15.907 7.792 23.421 9.163 8.593 1.568 17.629 1.568 29.534-1.002l29.977-7.383c11.762-4.45 16.608-13.426 6.946-21.542-5.128-3.073-18.686-14.908-23.815-17.981.093 3.47-.094 10.279 0 13.75m-178.25-109.49c.465 6.453-5.709 7.663-9.188 8.279l-13.8 2.338c-8.771 1.487-21.991 4.19-37.188-6.61l-58.716-43.55c-4.009-2.382-5.213-8.145-4.429-12.367v-10.172l-11.139 2.722c-13.47.93-17.607 14.008-6.427 21.835l77.67 59.618c8.753 5.41 15.906 7.792 23.422 9.162 8.593 1.568 17.629 1.569 29.532-1.001l23.171-6.024c12.489-3.075 18.755-12.9 7.699-22.186l-20.607-15.778c.093 3.471-.094 10.262 0 13.734\",\n fill: \"#e62e56\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2052.195 1244.807c-8.326-7.296-7.433-13.09-1.842-18.119-.78 3.88-.139 7.492 3.723 10.5l87.35 66.424c15.254 11.6 46.48 8.438 54.304 13.876-2.43 1.247-8.46 1.261-10.89 2.508-14.646 2.012-35.447-.35-46.86-9.513zm-168.099-107.384c-8.325-7.297-6.549-12.205-.959-17.234-.78 3.88-1.022 6.606 2.841 9.615l80.558 61.224c15.258 11.597 46.48 8.44 54.305 13.877-2.432 1.247-8.46 1.261-10.892 2.508-14.645 2.012-35.445-.35-46.858-9.513zm-176.579 165.781c-8.326-7.297-7.433-13.09-1.842-18.119-.782 3.88-.139 7.491 3.724 10.5l35.254 17.627c12.232 6.116 28.381-3.596 37.511.971l-7.295 3.742c-10.945 5.275-22.139 6.425-33.66 2.158l-33.692-16.879\",\n fill: \"#f1919b\"\n }))), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3548.678 1390.454c-62.1-80.936-139.798-149.735-231.893-210.857 5.668-8.9 25.467-44.781 31.422-54.769l-116.297-62.053c-3.494 7.872-16.661 37.538-23.372 51.81-6.082-3.443-17.115-9.255-25.816-13.823-122.615-64.375-265.587-116.795-426.784-156.588 26.237-9.916 52.473-19.834 78.709-29.749l9.803 2.139c5.808 1.513 9.425-1.716 10.239-11.007v-23.316c-.305-6.856-4.431-11.058-12.353-12.621l-53.402-8.534c-8.598-1.633-11.356 3.375-11.242 11.647l-48.572 18.615c2.044-1.153 3.66-3.115 4.402-5.267.232-3.683-.014-6.878-.014-10.455v-11.637c.34-8.241-4.619-11.929-12.779-12.862l-45.387-5.955c-6.732-.083-8.888 3.804-8.513 9.883l-132.931 44.167c-52.346-8.47-107.603-16.865-162.571-22.849.125-21.113-19.224-34.594-38.336-35.733-17.791-1.059-38.265-2.158-50.923-3.346-16.623-1.56-36.02 8.429-41.029 26.607-31.544-2.21-64.4-4.263-97.619-6.279-2.228-3.5-5.106-7.748-8.89-11.883-12.558-13.712-22.038-14.839-34.402-11.515-3.055.822-15.673 4.737-18.069 5.698-10.339 4.146-9.552 6.81-10.371 15.034-4.229-.468-15.022-.681-22.57-1-7.572.085-14.145-.349-22.55-.534 0 1.53-.183 2.917-.49 4.194-.081-20.092-.285-41.599-.285-60.771.464-6.57-.977-12.649-6.749-20.618l-12.339-17.033.125-.493 8.174 11.127c120.098.564 229.583 5.55 347.134 16.075 32.551 2.916 67.682-15.123 75.973-67.549a6982.92 6982.92 0 0131.447 2.398v63.483l70.456 7.639v-65.23c10.746.953 21.494 1.933 32.243 2.936l1.186.111-.073 44.364c-.029 18.53 12.857 31.234 31.252 33.467l45.078 5.472c18.395 2.233 33.694-15.17 33.689-33.691l-.012-38.642.179.02c54.905 6.021 109.826 12.614 164.76 19.863l-.15 41.945c-.085 23.939 15.409 39.006 36.917 43.235l53.251 10.473c21.508 4.227 39.747-17.375 39.746-41.299v-35.971a6209.272 6209.272 0 01138.567 22.603c30.333 128.419 93.532 229.389 169.562 272.777 57.161 32.618 125.315 27.638 178.665-11.171 45.228-32.898 76.271-82.329 97.404-133.38a491.573 491.573 0 0011.514-30.724c118.533 29.068 235.982 66.162 353.011 103.738l.087 387.684h-378.21zM0 1390.454V991.003c22.865-7.438 45.966-14.99 69.237-22.552.07 43.517.141 86.054.213 126.416 71.836-35.268 145.759-67.417 219.857-94.963v-99.258c19.563-5.486 39.089-10.759 58.538-15.76a2930.709 2930.709 0 0169.16-16.862l-.003 54.037c-.002 36.064 21.938 70.729 46.443 62.256l62.223-21.515c24.504-8.473 43.239-29.09 43.137-65.176l-.173-61.543.169-.033c54.633-10.611 109.589-20.576 165.059-30.735a6171.338 6171.338 0 0156.462-10.041c35.971 68.335 95.507 113.633 165.983 116.762 93.395 4.145 177.046-65.103 220.68-168.091 101.668-11.206 205.374-18.872 311.809-26.409 5.161 56.228 50.216 70.681 78.901 68.317 70.893-5.843 151.61-10.884 224.175-13.655l-66.154 82.534a17.198 17.198 0 00-2.103 4.566c-12.804.693-25.593 1.412-38.372 2.142l-.581.033c-4.869-14.329-20.992-25.616-39.841-24.179-16.101 1.229-32.233 2.304-48.403 3.158-22.017 1.166-39.581 14.697-40.601 32.137h-.001c-67.081 6.062-129.281 15.94-188.477 25.15l-.113-.161-.702-30.12c.877-23.579-8.985-40.501-32.774-48.788l-67.427-25.979c.468-7.386-2.458-11.664-9.832-11.874-19.306 3.188-38.614 6.375-57.921 9.561-5.578.924-8.96 5.463-9.246 15.112l.174 22.495c1.48 6.711 5.048 9.116 10.066 8.537l9.803-2.139 59.144 22.663c12.124 4.069 21.708 11.254 21.248 30.768l-.172 23.602c-109.324 18.495-202.777 43.513-287.593 70.552-90.435 28.83-170.752 60.111-240.01 93.261-138.447 66.268-241.335 136.079-327.292 217.966-32.408 30.874-61.642 63.876-89.594 97.259zm943.892-456.978l20.885 44.807 90.523-24.728-17.553-39.548zm345.693-22.06v22.906l-.01.005zm1347.273 6.318l77.027-27.732 12.919 2.234-74.591 28.59c-4.855-.922-9.939-1.959-15.355-3.092M1856.37 780.161c1.265-3.179 1.197-6.597-.241-9.834 16.217-.302 31.605-.44 45.891-.391l.115-29.52v97.412l-.331 15.018c-15.221.156-30.388.442-45.51.836-.095-24.591.349-48.806.076-73.521m-338.582-429.62l30.343-7.612c-.034-6.985-.067-13.971-.102-20.956 119.71 7.998 240.465 12.406 362.398 12.758.191 2.775.38 5.551.569 8.327-55.47 2.13-106.02 7.404-148.568 17.787-83.546-1.857-164.549-5.721-244.64-10.304m498.104-7.483v-9.9c102.896-.31 203.574-5.35 302.91-13.248l-.296 19.789c-.026 3.616.036 7.253.23 10.919l-163.416 8.649c-45.289-10.227-92.344-13.278-139.428-16.209m-810.072-21.562l-.361-36.165c21.623 3.173 44.769 6.319 65.928 9.022a79.083 79.083 0 00-1.083 10.93v23.947c-21.812-2.513-43.938-5.091-64.484-7.734M769.118 221.56l-.442-27.458c140.657 38.26 282.132 69.801 425.039 89.582l-.275 18.827c-141.401-17.492-282.849-45.983-424.322-80.951m2007.928 40.113l71.298-13.826.035 41.232-71.008 12.385zm200.842-43.065c39.815-9.237 79.668-20.591 119.545-31.924l-.193 48.714c-39.364 9.931-79.041 19.548-119.184 28.702l-.168-45.492m-2564.83-92.403c-.245-22.161-.489-44.32-.732-66.481 107.155 51.872 221.047 96.163 341.265 130.039l-.267 47.913c-116.299-29.809-230.746-66.222-340.266-111.471m2699.4 55.458c66.37-21.156 141.327-45.428 207.179-73.65C3395.073 75.683 3468.14 41.617 3536.323 0h51.226c-.066 7.041-.13 14.081-.194 21.122-96.543 55.022-189.28 93.467-286.991 129.09-61.018 22.245-122.998 42.564-188.023 58.928.04-9.158.079-18.319.117-27.477M3605.479 0h70.546c-23.02 14.503-46.48 28.31-70.446 41.32l-.1-41.32\",\n fill: \"url(#y)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g9 || (_g9 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#z)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1653.04 883.242l12.944-.467v-17.93c0-8.564-12.945-8.09-12.945.465zm684.061 9.032l12.945 1.43V870.96c0-8.559-12.945-9.029-12.945-.466zm-760.259-1.939l12.945.014v-20.818c0-8.562-12.945-8.09-12.945.467zm684.062-5.635l12.945 1.43v-19.858c0-8.558-12.945-9.028-12.945-.466z\",\n fill: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1632.998 1337.125l-.048 8.95c1.343 5.406 6.152 8.525 15.068 8.929 10.175-.105 14.282-4.696 15.066-8.929.13-3.121.258-6.242.386-9.364 22.652 11.155 6.35 28.838-15.61 28.894-25.188 1.289-37.09-20.635-14.861-28.48\",\n fill: \"#e62e56\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1664.889 1361.61c-4.628 2.443-10.584 3.979-17.028 3.996-23.345 1.193-35.271-17.55-19.198-26.545-7.065 14.84 10.593 20.244 22.224 20.11 5.95-.07 12.413-.466 14.002 2.44\",\n fill: \"#f1919b\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2247.722 1253.366c-2.317-1.85-3.391-3.888-3.778-5.758-.695-3.358 1.165-8.92 8.429-10.816l.12 5.847c.827 5.668 9.324 7.506 13.899 7.398 4.1-.096 11.562-1.527 12.135-7.792v-6.033c10.3 2.97 10.128 12.172 5.785 16.032-8.745 7.772-27.366 8.484-36.59 1.122\",\n fill: \"#e62e56\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1330.309 494.804c1.648-3.863 11.704-5.861 23.079-5.991v-55.134c-10.24.873-20.382 1.804-23.08 7.16zm120.927-206.032l.024 52.486 24.716-6.195v-60.198l-25.355 8.448c.378 1.786.559 3.61.615 5.46\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1451.236 288.772l.005 10.64 24.735-6.983v-17.564l-25.355 8.448c.378 1.786.559 3.61.615 5.46\",\n fill: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1475.976 274.865v17.564l31.776 4.101v-5.17c.28-2.07 1.536-3.248 3.862-3.446l5.624.845c1.848.285 3.096 1.338 3.142 3.446v5.954l27.75 3.581v-17.112z\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1392.86 491.587c-7.52-1.867-15.05-2.745-22.587-2.952v-55.271c7.846.245 15.432 1.239 22.586 3.467z\",\n fill: \"#9ed0af\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1308.01 364.698c1.557 1.446 4.227 2.161 6.645-.358 3.683-8.535 4.845-16.207 3.528-24.455-3.591-4.628-7.63-3.06-10.276 2.371-2.582 5.297-4.406 18.256.103 22.442\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1309.313 339.412l-6.784-5.674c-.932.935-1.687 2.14-2.2 3.696l7.242 4.61c.57-.864 1.172-1.769 1.742-2.632m-12.798 13.827c.078-4.01.714-7.814 2.031-11.372l8.198 3.014c-1.139 2.66-1.561 5.596-1.431 8.743l-8.798-.385\",\n fill: \"#6db18d\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1237.531 664.513c-9.222-.412-15.926-10.596-14.974-22.746.953-12.15 9.201-21.667 18.423-21.255 9.222.41 15.926 10.595 14.974 22.745s-9.2 21.667-18.423 21.256\",\n fill: \"#9ed0af\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3661.277 791.03c14.83-.878 25.608-22.598 24.076-48.512-1.53-25.915-14.794-46.21-29.622-45.333-14.829.878-25.608 22.597-24.076 48.512 1.531 25.915 14.794 46.211 29.622 45.333\",\n fill: \"#6cb08c\"\n }))), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3672.502 785.845c8.635-8.062 13.959-24.597 12.852-43.326-.912-15.42-5.976-28.848-13.051-37.012a18794.47 18794.47 0 01254.586 27.158v99a11235.159 11235.159 0 00-254.387-45.82M0 721.665c22.943-2.595 45.884-5.128 68.822-7.624l.16 98.367A10112.918 10112.918 0 000 825.665zm3601.016 52.396c2.463-21.725 3.941-44.098 4.354-66.97.048-2.707.082-5.418.104-8.132 12.89 1.239 25.78 2.493 38.668 3.759-8.419 8.184-13.579 24.516-12.487 42.979.849 14.372 5.308 27.014 11.64 35.277a10875.304 10875.304 0 00-42.279-6.913M289.307 691.545c42.58-4.06 85.149-7.936 127.709-11.663l-.004 73.117c-42.566 6.506-85.133 13.262-127.705 20.331zm1007.681-33.437a9799.427 9799.427 0 00-50.102 3.276c4.894-3.717 8.462-10.387 9.068-18.128.466-5.949-.904-11.427-3.507-15.517 10.76-.403 21.519-.794 32.278-1.176a14.666 14.666 0 01-3.683-6.472 18.7 18.7 0 01-.555-6.233 19.05 19.05 0 011.515-6.099l.492-1.13c.562-1.293 1.129-2.6 2.562-5.824l-.348.264 10.216-22.411a34.9 34.9 0 012.064-3.882V445.22l33.32 2.546v47.038c1.482 2.753 5.96 4.358 11.504 5.299-3.319 6.721-6.468 15.282 3.205 28.591 8.2 11.28 16.57 22.244 24.988 32.902 8.315 10.527 16.782 20.799 25.246 30.884 4.972 5.925 13.838 14.41 22.026 7.217-1.415 9.723-8.915 14.613-20.192 13.597a9361.692 9361.692 0 01-27.965-2.552c-9.864-.919-18.938.486-24.65 7.912.113-7.239 8.72-16.986 20.305-15.499a1863.165 1863.165 0 01-36.959-13.599c-9.187-3.618-26.995-2.365-34.352 14.178-1.043 2.345-2.068 4.714-3.106 7.101-1.182 2.719-1.306 5.76-.643 8.237.69 2.581 2.493 4.595 4.666 5.43 13.564 4.966 27.129 9.822 40.74 14.387 13.581 4.554 27.209 8.886 40.822 13.156-.902-8.308-4.185-15.802-8.899-20.629 13.806 4.432 27.632 8.818 41.45 12.995 13.809 4.175 27.642 8.19 41.48 12.181-2.027-14.085-12.229-21.811-25.487-29.213a985.075 985.075 0 01-9.623-5.43c2.752-.625 4.935-.611 8.802.58l9.027 2.784c6.381 1.971 10.636 2.924 17.071 2.182-7.224-11.788-14.531-23.714-21.754-35.804-7.29-12.205-14.529-24.688-21.754-37.264 4.409 2.924 9.783 4.617 15.882 3.944-8.384-14.641-16.832-29.442-25.005-44.643a1388.405 1388.405 0 01-7.56-14.276c3.842-.938 7.114-2.303 9.218-4.283v-49.797l40.052-14.401v170.457c.892 1.47 1.794 2.954 2.703 4.447a5974.812 5974.812 0 009.536 15.596c29.311-.754 58.617-1.427 87.919-2.031l.916 8.978-33.73 18.679c-17.979.762-35.958 1.554-53.938 2.413a37.842 37.842 0 011.237 5.616l1.37 9.514-9.241-2.666-6.772-1.955v60.907c-46.421 3.416-100.141 7.474-141.857 11.109v-73.927zm89.139-52.702c0-.975-.01-1.927-.016-2.879-.038-3.921-1.947-4.571-6.709-4.129-2.237.207-4.474.417-6.726.603 4.489 2.157 8.963 4.293 13.451 6.405m-22.574-10.86c-7.659-6.59-15.361-13.218-22.961-20.118-10.39-9.435-29.493-9.861-37.361 7.401 6.21-4.71 20.404-7.825 33.291-.997 8.964 4.751 18.004 9.259 27.031 13.714m-795.395 72.786a16695.275 16695.275 0 01185.686-13.499 370.2 370.2 0 00.26 5.349 361.915 361.915 0 005.777 47.467c-63.841 7.513-127.689 15.617-191.544 24.384zm2409.91 24.53V649.43c39.891 2.457 79.773 5.047 119.646 7.769.223 6.939.544 13.877.962 20.817a753.294 753.294 0 002.126 27.116c-40.91-4.663-81.821-9.088-122.734-13.27m-294.738-25.939v-32.222a17854.406 17854.406 0 01165.238 8.221v37.514a10449.494 10449.494 0 00-165.238-13.513m-1479.195-36.31c7.598-.307 15.195-.594 22.791-.89-2.382 3.581-3.981 8.094-4.369 13.043-.713 9.103 2.869 17.099 8.588 20.714-10.518.734-21.036 1.467-31.554 2.235a392.71 392.71 0 004.544-35.102m1346.673 27.388v-17.792l-28.996-1.022v17.087l.01.001a10287.16 10287.16 0 00-94.436-5.046l-40.349-20.425.519-6.973a17642.084 17642.084 0 01185.948 6.257v29.321c-7.563-.477-15.127-.946-22.691-1.408m-1198.99-128.702c-5.426-8.307-8.099-17.467-8.553-27.968 1.886.273 3.871.478 5.883.634.024 1.547.089 3.106.193 4.664.707 10.675 3.281 21.301 6.628 28.934a639.875 639.875 0 01-4.151-6.264\",\n fill: \"url(#A)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3365.328 948.621c-17.981-9.764-32.49-22.828-43.658-46.945V704.649l38.135-65.718 55.487 3.18 40.102 73.288v224.505c-6.027 7.881-14.071 14.422-23.947 19.744-6.944 1.192-13.343 1.738-19.321 1.738-18.483-.001-32.917-5.228-46.798-12.765\",\n fill: \"url(#B)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3405.443 961.15l-64.757-197.566 43.495 6.766-36.594-110.363 12.218-21.056 22.081 1.265 57.391 179.45-49.296-7.733 45.541 145.407a93.821 93.821 0 01-4.075 2.328c-6.939 1.191-13.334 1.737-19.307 1.737a94.13 94.13 0 01-6.697-.235m-40.115-12.529a126.91 126.91 0 01-3.725-2.103l-39.933-115.885v-53.472l62.381 179.443c-9.452-2.23-10.416-3.473-18.723-7.983\",\n fill: \"url(#C)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g10 || (_g10 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#D)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1336.42 344.371l44.03 78.507 19.105 1.104-63.136-106.61zm93.73 81.38c-3.756-.217-7.514-.435-11.27-.65l-82.158-144.917c4.412-16.819 14.86-23.83 31.877-20.16l82.661 130.66-.162 18.344c-.926 11.106-8.413 16.22-20.948 16.723\",\n fill: \"#9ed0af\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1332.35 946.281c5.967 5.497 15.716 3.443 21.775-4.586 6.059-8.03 6.134-18.995.167-24.493-5.966-5.497-15.715-3.443-21.774 4.587-6.06 8.03-6.134 18.995-.167 24.492\",\n fill: \"#4a8e70\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3641.738 617.151l28.437 1.713v-24.37l-28.437.066z\",\n fill: \"#8ac8a4\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1045.965 638.383l-43.493-54.246-82.318 2.587-45.881 60.645v170.389c50.287 45.603 141.42 25.653 171.692-28.876z\",\n fill: \"#69ad8a\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M934.442 824.948c31.274-2.32 60.621-11.418 83.25-44.155l-.262-134.833-35.027-45.128 14.656-1.615 35.678 45.966v137.812c-8.764 15.773-23.003 25.408-36.606 31.983-18.618 9.001-39.573 11.181-61.689 9.97\",\n fill: \"#4a8e70\"\n }))), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M889.796 807.501V653.342l36.833-50.325 55.775-2.185 35.027 45.128v135.293c-17.675 24.208-37.331 35.465-58.181 39.952-8.816 1.897-17.489 3.764-26.502 3.764-13.1.001-26.918-3.942-42.952-17.468\",\n fill: \"url(#E)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M916.208 731.587l36.73-1.934-54.221-88.603 17.878-24.427 80.322 131.879-41.562 2.417 35.53 56.59-22.866 10.872zm10.682-129.03l20.341-.968 70.46 125.648v26.58z\",\n fill: \"url(#F)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g11 || (_g11 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#G)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2598.682 1023.79c.027 1.189 1.465 2.865 3.606 3.708l40.732 16.031c4.694 1.848 8.117 1.472 12.794-.412l17.202-6.932c1.887-.761 2.668-1.766 2.616-2.807m-192.222-46.536c.1 3.536.69 5.058 5.654 6.436l32.187 8.926c5.842 1.62 10.455 1.942 16.36.029l14.872-4.82c1.28-.413 1.45-1.933 1.45-2.676m-501.932-797.32v17.368m0-64.778v16.476\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2369.604 310.498v-36.6c-4.067.201-8.364.541-12.678 1.099v34.057c4.14.164 8.407.682 12.678 1.444m-21.822-1.157V276.54c-7.434 1.585-14.449 3.999-19.896 7.645v34.181c5.07-5.442 12.037-8.138 19.896-9.025m182.208 201.864c-3.105-9.433-11.013-17.726-18.568-20.195-5.286-39.865-13.479-76.337-25.163-108.734 49.242 50.57 69.93 105.904 46.125 127.03a28.017 28.017 0 01-2.394 1.9m117.936-149.519c5.854 41.105 6.231 83.224 2.865 126.035 13.975 8.93 27.79 16.152 40.877 21.456-.565-8.018.236-11.259 3.176-18.177-4.407-45.176-11.863-89.107-24.192-131.042-7.456.972-15.118 1.533-22.726 1.728m69.726 116.416c-6.51-44.52-16.28-84.932-30.02-121.199a126.964 126.964 0 0011.507-3.262 350.841 350.841 0 014.792 4.413c61.02 57.211 89.26 122.983 65.202 149.852-2.646 2.956-6.392 5.518-10.273 7.528-3.74-20.927-16.188-36.872-41.208-37.332m-227.72 9.521c-4.186-40.566-11.303-79.935-23.144-117.37-5.736 1.778-11.71 3.003-17.844 3.861 6.623 41.44 6.617 84.105 2.4 127.55 6.02 3.035 11.927 5.664 17.664 7.861 2.433-14.572 10.655-20.32 20.924-21.902\",\n fill: \"#66aa89\",\n fillRule: \"evenodd\"\n }))), _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2319.244 275.155c2.199-14.001 16.755-19.058 31.707-22.063 32.755-6.582 94.506-3.38 132.879 14.599v22.713c-37.498-16.083-72.611-17.379-107.967-16.716-19.608.365-48.504 3.509-56.619 19.908zm208.129-25.94c3.373-23.952 35.446-24.57 56.964-26.701 34.212-3.39 87.653.103 127.762 14.523-.307 9.626.308 19.532 0 29.158-49.765-19.935-84.238-18.953-126.43-18.274-18.654.3-51.491 4.786-58.296 22.404z\",\n fill: \"url(#H)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n })), _g12 || (_g12 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#I)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\",\n fillRule: \"evenodd\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2356.926 274.997c4.313-.558 8.61-.898 12.679-1.099v-23.265c-4.492.346-8.741.822-12.68 1.417zm-29.04 9.188c5.448-3.646 12.463-6.06 19.895-7.645v-22.775c-7.451 1.672-14.585 3.986-19.894 7.813zm254.341-36.165v-25.305c-4.444.413-9.265.797-14.141 1.355v25.21a147.77 147.77 0 0114.142-1.26m-24.342 3.102v-25.565c-3.261.61-6.445 1.361-9.456 2.32-4.917 1.79-9.197 4.04-12.731 6.833v25.446c5.887-4.266 13.876-7.146 22.187-9.034\",\n fill: \"#eb6675\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2349.114 352.987c-6.07-2.883-11.077-6.212-14.885-10.04-5.954-5.985-8.979-13.194-8.569-21.838 10.513-14.918 32.468-13.717 52.633-8.756 24.685 6.074 53.78 23.696 84.59 48.182-12.719 4.32-28.429 6.208-47.2 5.661-19.923-.58-48.328-4.544-66.569-13.209m212.843-16.343c-6.774-3.123-13.06-6.958-17.286-11.207a33.623 33.623 0 01-9.766-25.373c11.67-16.56 37.615-14.413 60-8.906 27.403 6.742 59.698 26.303 93.902 53.485-14.12 4.795-31.559 6.892-52.396 6.285-22.116-.645-54.204-4.946-74.454-14.284m136.88 205.607c2.617 8.485 19.385 10.29 27.415 10.148 9.319-.164 25.034-2.612 23.875-13.076-2.054-9.832-3.66-18.598-5.712-28.43-5.64-27.259-23.817-32.735-32.738-32.238-8.235.46-22.696 12.633-18.732 35.109l5.892 28.487m-223.267 4.719c2.303 7.466 17.781 10.137 24.845 10.014 8.2-.145 25.795-1.862 24.775-11.07-.188-.897-.383-1.811-.583-2.735-1.728-7.975-4.349-18.996-5.969-26.747-4.962-23.983-23.298-28.575-31.147-28.14-7.245.405-21.407 11.698-17.919 31.473 1.784 8.629 4.213 18.576 5.998 27.205\",\n fill: \"#266b50\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2582.227 289.121v-41.1c-4.306.175-9.15.566-14.141 1.258v38.417c4.485.14 9.217.643 14.142 1.425m-24.342-1.029v-36.97c-8.31 1.89-16.3 4.77-22.187 9.034v38.71c5.477-6.398 13.09-9.672 22.187-10.774\",\n fill: \"#66aa89\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2777.685 478.353c-4.562-54.442-41.21-95.423-74.483-127.185-3.488-33.272-7.287-62.619-13.47-92.889-1.97-9.642-4.05-19.148-6.61-29.2 13.304 2.455 24.58 6.041 36.679 10.656l57.57 21.962.314 216.656\",\n fill: \"#367b5f\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2689.731 258.28c-1.969-9.822-4.155-19.563-6.609-29.202 2.98.551 5.858 1.157 8.668 1.82 7.024 1.774 13.84 3.814 20.31 6.14-.308 9.625.307 19.531 0 29.156-7.804-3.125-15.229-5.736-22.369-7.915\",\n fill: \"#a70831\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2541.809 476.972c-3.715-40.993-30.097-73.547-53.844-98.302-7.768-35.358-16.965-65.173-27.868-96.672-2.861-8.264-5.705-16.495-8.831-25.15 13.82 3.04 27.113 7.532 39.607 14.224l36.25 19.237.25 37.35c1.969 20.114 7.92 34.207 14.89 46.76l-.454 102.553\",\n fill: \"#367b5f\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2460.097 281.998a193.895 193.895 0 0123.733 8.406V267.69c-9.653-4.523-20.787-8.109-32.564-10.841a1430.235 1430.235 0 018.83 25.149\",\n fill: \"#a70831\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2743.86 508.328l9.903 45.821c.227 4.232-1.95 7.964-7.98 12.231 16.55-3.179 22.651-13.337 20.262-18.792-.137-.676-.274-1.343-.409-2l.052-34.135c-2.179 1.646-4.427 3.123-6.889 4.667-1.2-4.636-2.5-9.472-3.972-14.882-7.44-13.343-19.496-20.58-32.78-22.173 11.997 5.823 20.223 16.16 21.813 29.263m-225.674 6.743c3.042 14.082 6.53 29.89 9.573 43.971.21 3.9-1.894 6.88-7.455 10.812 15.257-2.93 21.527-12.795 19.324-17.824l-.377-1.845-2.034-8.83v-36.152c-2.008 1.516-5.65 5.571-7.92 6.995-3.316-12.807-17.525-22.464-31.224-24.106 11.061 5.368 18.646 14.897 20.112 26.98\",\n fill: \"#367b5f\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M180.127 958.08c-3.316 1.267-5.979-1.388-5.935-6.033.043-4.645 2.758-9.33 6.075-10.537 3.317-1.206 5.979 1.508 5.935 6.073-.044 4.564-2.758 9.23-6.075 10.497m24.387-9.29c-2.723 1.045-4.888-1.73-4.853-6.234.035-4.504 2.243-8.909 4.958-9.894 2.714-.985 4.897 1.79 4.87 6.234-.026 4.444-2.252 8.848-4.975 9.894m-49.21 18.821c-2.715 1.046-4.897-1.95-4.836-6.716.061-4.766 2.305-9.35 5.011-10.336 2.706-.985 4.87 1.971 4.817 6.676-.052 4.705-2.278 9.33-4.992 10.376m102.802-165.255c-2.688.604-4.844-2.332-4.835-6.515.008-4.183 2.173-8.023 4.853-8.567 2.679-.543 4.861 2.434 4.853 6.556-.009 4.122-2.183 7.923-4.871 8.526M215.407 681.02c.018-2.574.041-5.188.053-7.762.023-5.469-3.212-9.828-7.228-9.692-5.48.186-10.945.362-16.426.523.052-6.476.107-12.91.157-19.386.037-4.745-2.671-8.606-6.058-8.606h-7.157c-3.369 0-6.17 3.901-6.215 8.767-.06 6.636-.122 13.232-.191 19.868-5.621.201-11.261.335-16.863.523-3.982.134-7.314 5.108-7.385 11.02-.033 2.815-.07 5.67-.087 8.446 1.641-.08 3.299-.16 4.958-.283-.035 4.747 2.059 8.447 4.695 8.286 2.637-.162 4.819-4.103 4.888-8.768 4.504-.28 9.008-.522 13.512-.764-.017 4.625 2.575 8.144 5.796 7.923 3.22-.22 5.882-4.062 5.917-8.566 4.382-.282 8.746-.483 13.11-.725-.017 4.465 2.095 7.903 4.731 7.723 2.636-.182 4.818-3.862 4.853-8.285 1.64-.08 3.282-.12 4.94-.242m-26.01 45.407l-.262 33.983c-5.098.764-10.177 1.528-15.275 2.293l.315-34.025c-1.449-1.488-2.383-3.94-2.357-6.756.061-6.636.122-13.232.174-19.868-5.638.443-11.295.881-16.915 1.328-4.015.317-7.246-4.304-7.175-10.216l.105-8.204v-.24c1.641-.082 3.299-.162 4.958-.284v-.08c.052-4.706 2.225-8.667 4.87-8.767 2.645-.1 4.748 3.58 4.713 8.285v.08c4.504-.28 9.008-.522 13.512-.764v-.08c.052-4.586 2.706-8.446 5.935-8.607 3.23-.16 5.813 3.42 5.778 7.963v.081c4.382-.282 8.746-.483 13.11-.725v-.08c.036-4.464 2.182-8.204 4.836-8.325 2.653-.12 4.765 3.38 4.748 7.803v.04c1.64-.08 3.282-.12 4.94-.242-.017 2.615-.041 5.19-.052 7.802-.024 5.39-3.316 10.152-7.332 10.457-5.498.418-10.998.845-16.497 1.247-.034 6.475-.088 12.95-.139 19.385-.019 2.453-.785 4.786-1.99 6.516m-53.086 105.008c5.395-1.2 10.788-2.415 16.165-3.62 1.082-.242 2.025-.764 2.863-1.488-.07 7.16-.152 14.358-.227 21.557-.047 4.505 2.479 7.563 5.621 6.757 2.025-.52 4.067-1.046 6.092-1.569-.017 2.051-.054 4.183-.07 6.234-.036 4.746 2.677 7.902 6.023 6.958.216-.06.419-.08.611-.162l-.314 34.708c5.15-1.648 10.299-3.216 15.484-4.866l.261-34.064c3.335-.925 6.133-5.39 6.163-9.974.039-5.872.087-11.703.122-17.535 2.339-.563 4.697-1.16 7.052-1.729 3.144-.759 5.723-4.827 5.743-9.089.015-2.897.036-5.752.053-8.608.768.323 1.633.356 2.653.201.066-.009.105.041.175 0h.052c3.44-.763 6.878-1.528 10.335-2.292-.018 1.85-.025 3.701-.035 5.55-.025 4.384 2.689 7.322 5.988 6.516 1.641-.4 3.316-.765 4.975-1.166l-.053 14.196c0 1.247-.013 2.534-.017 3.78-.013 3.661 2.269 6.035 5.08 5.27a3504.339 3504.339 0 0115.536-4.184c2.798-.747 5.097-4.262 5.097-7.8 0-1.248.018-2.495.018-3.702 0-.04 0-.04.017-.04 0-4.585 0-9.13.018-13.674 1.641-.403 3.3-.803 4.958-1.206 3.299-.803 6.022-4.787 6.022-8.929v-29.48c0-4.142-2.703-7.022-5.988-6.434-1.655.296-3.299.603-4.94.884v-13.27l-.017-.042c.017-1.447.017-2.855.017-4.303 0-3.539-2.288-6.119-5.045-5.71-5.133.758-10.263 1.535-15.379 2.291-2.774.41-5.068 3.781-5.08 7.441-.005 1.488-.018 2.935-.018 4.424l-.052 13.794c-1.658.282-3.314.577-4.957.885-3.28.616-6.011 4.665-6.023 9.09a733.96 733.96 0 01-.035 5.35c-3.439.682-6.876 1.38-10.299 2.05-.069.013-.158 0-.227.04-1.013.241-1.886.724-2.654 1.367.018-2.09.018-4.183.035-6.274.035-4.222-2.498-7.249-5.621-6.676-2.359.432-4.695.885-7.017 1.287.035-5.47.084-10.94.122-16.409.032-4.585-2.669-7.95-5.988-7.44-5.305.816-10.596 1.607-15.868 2.373-3.317.481-6.093 4.826-6.127 9.571-.001.12 0 .323-.018.524-2.007.321-4.037.651-6.04.965-3.13.49-5.698 4.666-5.742 9.13-.078 7.68-.176 15.362-.263 23.043-.803-.402-1.747-.53-2.828-.32-5.378 1.037-10.756 2.118-16.13 3.176-.753.148-1.431.443-2.077.845.105-7.802.193-15.605.297-23.367.07-5.228-2.759-9.053-6.267-8.486-.961.156-1.903.281-2.828.443.017-1.488.017-2.936.035-4.384 0-.04.018-.08.018-.12-.018-.04-.018-.08-.018-.12v-.242c-.018-.04-.018-.08-.018-.12v-.122c-.017-.04-.017-.08-.017-.12-.018 0-.018-.04-.018-.08-.017-.04-.017-.08-.017-.12-.017-.042-.017-.082-.017-.082-.018-.04 0-.08 0-.12-.018-.04-.018-.08-.018-.12a8.515 8.515 0 01-.035-.082c-.017-.04-.017-.08-.017-.08a.304.304 0 01-.035-.12c-.018-.04-.018-.082-.018-.122l-.035-.08c-.017 0-.035-.04-.035-.08l-.034-.08c-.018-.04-.036-.08-.036-.12a11.384 11.384 0 00-.034-.082c0-.04-.018-.08-.018-.12-.017-.04-.034-.08-.052-.08-.018-.04-.035-.04-.035-.08a3.4 3.4 0 01-.035-.082c-.017-.04-.017-.08-.035-.08l-.035-.08-.052-.122c-.018 0-.035-.04-.052-.04-.018-.04-.035-.08-.053-.08-.017-.04-.035-.08-.052-.08-.018-.04-.035-.04-.052-.04-.018-.04-.036-.08-.053-.08-.017-.04-.035-.082-.052-.082 0-.04-.017-.08-.035-.08h-.053c-.034-.04-.052-.08-.07-.08-.017-.04-.034-.08-.052-.08-.017-.04-.035-.08-.052-.08-.035-.04-.053-.04-.07 0-.035-.04-.053-.08-.07-.08-.017-.042-.017-.042-.034-.042-.036-.04-.053-.08-.071-.04-.034-.04-.052-.04-.069-.04-.018-.04-.035-.04-.053-.04-.034-.04-.052-.082-.07-.082-.034-.04-.052-.04-.069-.04h-.07c-.035-.04-.053-.04-.07-.04-.035-.04-.052 0-.07 0-.035-.04-.052-.04-.07-.04-.035-.04-.07-.04-.087-.04-.035 0-.035-.04-.052-.04h-.14c-.035-.04-.07-.04-.087-.04h-.228c-.017-.04-.034-.04-.052-.04-.034 0-.07.04-.087.04h-.157c-.035.04-.052.04-.07.04-3.77.563-7.559 1.085-11.346 1.69h-.228c-.035.04-.069.04-.087.04-.035 0-.052 0-.087.08h-.087c-.035 0-.053 0-.053.04h-.07c-.034 0-.07 0-.087.04h-.069c-.036.04-.053.04-.07.081-.035 0-.053 0-.071.04-.034 0-.052 0-.069.04-.035.04-.07.04-.088.08-.035 0-.052 0-.069.04-.035 0-.053 0-.07.041-.035.04-.053.04-.07.08-.017 0-.017-.04-.035 0-.035.04-.052.08-.07.121-.034 0-.052 0-.07.04-.034 0-.052 0-.069.04-.035 0-.053.04-.07.08-.017 0-.035.041-.053.081-.034 0-.052 0-.069.081-.018 0-.036 0-.053.04-.035 0-.052.04-.07.081-.017 0-.035.04-.052.08-.035 0-.052.04-.07.08-.017 0-.035.041-.052.081-.018 0-.035.04-.052.08-.018 0-.036.04-.053.08-.017 0-.035.041-.052.081-.018 0-.035.04-.053.08-.017 0-.034.04-.052.121-.018 0-.035.04-.052.08-.018 0-.035.04-.052.081-.018.04-.036.08-.036.12-.017 0-.035.041-.052.081-.017 0-.035.041-.053.081-.017 0-.034.08-.034.12a.314.314 0 00-.035.121c-.018 0-.036.04-.053.08l-.052.121c-.017 0-.035.04-.035.08s-.018.081-.018.121c-.017 0-.034.04-.034.08-.017.04-.035.081-.035.12-.018 0-.018.041-.018.081-.017.04-.035.08-.035.122l-.052.241c-.018.04-.018.08-.018.12-.017.08-.034.161-.069.241-.018 0-.018.041-.018.081-.017.04-.017.08-.017.12-.018.04-.018.081-.018.121v.12c-.017.04-.017.081-.017.122-.017.04-.017.08-.017.12v.362c0 .04-.018.08-.018.12l-.052 4.465c-.856.161-1.713.266-2.531.402-3.512.587-6.46 5.51-6.547 10.98-.157 9.852-.297 19.666-.454 29.52-.82 1.77-1.344 4.081-1.379 6.515-.034 2.433.419 4.504 1.205 5.952-.175 10.457-.34 20.913-.489 31.37-.078 5.47 2.779 9.142 6.302 8.204.859-.228 1.711-.442 2.566-.683-.035 1.528-.052 3.056-.07 4.544v.242c0 .04 0 .08-.018.12v.121c0 .04 0 .08.018.12 0 .04 0 .081.018.121v.12c0 .041 0 .081.017.121 0 .04 0 .081.018.122 0 0 0 .04.017.04 0 .04 0 .08.018.12 0 .04.017.08.035.121v.12s0 .041.017.081c0 .04.017.08.035.08 0 .04.017.08.035.121 0 0 0 .04.017.08 0 .04.018.08.035.12 0 0 .017 0 .035.041 0 .04.017.08.035.12l.035.081c0 .041.017.081.035.121.017-.04.034 0 .052.04l.035.081c0 .04 0 .08.017.12.018 0 .035.04.053.081.017-.04.035 0 .052.04 0 .04.018.08.035.12.018 0 .035 0 .052.04.018 0 .035.041.053.081.018-.04.035 0 .052.04.017 0 .035.04.052.08.018 0 .035.041.053.081.018 0 .035.04.052.04.017 0 .035.04.053.08.017 0 .035-.04.052 0 .017 0 .035.04.07.081.017 0 .034.041.052.081.018 0 .035.04.053.04.017 0 .034 0 .052.04.018-.04.035 0 .07.041 0 .04.017.04.035.04.017 0 .035.04.07.08h.069c.018 0 .035 0 .07.04.017 0 .035.041.07.041.017 0 .035 0 .052.04.018 0 .036 0 .07.04.017 0 .035-.04.07 0h.069c.018 0 .053 0 .088.04.017-.04.035-.04.07 0 .017 0 .035 0 .07.04.018 0 .035 0 .07-.04.017 0 .034 0 .07.04.017-.04.052-.04.087 0h.069c.018 0 .036-.04.07 0 .018 0 .053 0 .088-.04.017 0 .034 0 .052.04.017 0 .052 0 .087-.04h.157c.018 0 .036-.04.07-.04 3.823-1.046 7.646-2.05 11.469-3.097.018 0 .035 0 .07-.04h.157c.018 0 .052-.04.088-.04.017-.04.035-.08.069-.08h.088c.017-.04.035-.04.07-.08h.069c.018-.04.053-.04.087-.04.018-.082.035-.082.07-.082.018 0 .035 0 .07-.04.018-.04.035-.04.07-.04.017-.04.052-.04.087-.08.018-.04.035-.04.07-.04.018-.04.035-.04.07-.04.017-.04.035-.04.07-.08.017-.042.035-.042.069-.082h.053c.018-.04.035-.08.07-.12.017-.04.035-.04.052-.04.018-.042.035-.042.07-.082.017-.04.035-.08.07-.08.017-.04.035-.04.052-.04.018-.04.035-.08.07-.12.018-.04.035-.04.07-.04.034-.04.052-.122.07-.122.017-.04.035-.08.052-.08.017-.04.035-.08.07-.08.017-.04.035-.04.052-.08.018-.04.035-.08.053-.08.017-.04.034-.08.052-.08.018-.042.035-.082.053-.082.017-.04.034-.12.051-.12.018-.042.036-.082.053-.082.018-.04.035-.08.052-.08l.035-.08a.767.767 0 00.053-.16c0-.04.017-.082.034-.082.018-.04.036-.08.053-.08 0-.04.035-.08.052-.12 0-.04.018-.12.035-.12.018-.04.035-.082.052-.082 0-.04.018-.08.036-.12 0-.04.017-.08.035-.08a.33.33 0 01.034-.122c0-.04.018-.12.036-.12 0-.04.017-.08.034-.12l.035-.08c0-.042 0-.082.018-.122 0-.04.017-.08.035-.12 0-.04 0-.08.017-.08.017-.04.035-.12.052-.12 0-.042 0-.082.018-.122 0-.04 0-.08.018-.12 0-.04 0-.08.017-.08 0-.042 0-.082.017-.122 0-.04 0-.08.017-.16 0-.042 0-.08.018-.122v-.08c0-.04 0-.08.017-.12v-.242c0-.04 0-.08.018-.12v-.12c.017-1.489.035-2.937.07-4.465.942-.242 1.887-.477 2.846-.724 3.562-.919 6.496-5.912 6.563-11.18.107-8.446.21-16.892.314-25.338.628.161 1.311.167 2.06 0m12.482 151.943c5.994 3.957 12.01 7.923 18.05 11.743v.402c0 1.287-.018 2.655-.035 3.982v.563c.017.04.017.08.017.161v.202c0 .04.018.12.018.2 0 0 .017.081.017.121.017.04.017.121.035.161 0 .08.017.12.017.201.018 0 .018.08.036.16.017 0 .017.081.034.121 0 .04.018.081.036.162.017.04.017.12.034.12.018.04.035.121.053.201a.8.8 0 00.035.121c.017.04.034.08.051.161.018.04.036.12.053.12 0 .04.018.08.035.121.017.08.035.12.053.16a.858.858 0 01.052.162c.035 0 .052.04.07.08a.403.403 0 00.069.121c.018.04.036.08.053.161.035 0 .052 0 .07.08.035.04.052.04.069.081.018.04.036.08.071.12.017.04.052.08.087.08.017.041.052.081.069.161.018.04.053.04.087.08.018.041.059.078.088.122.024.037.052 0 .07.04.017.041.052.08.087.08 0 .041.035.081.07.121.035.04.076.036.105.081.023.036.057.022.087.04.046.026.07.04.087.08.035.04.07.04.105.08.035.04.07.04.105.081.017.04.041.014.087.04.03.018.07 0 .104.04.036.04.071.04.105.08.036-.04.07 0 .105.041.035 0 .07.04.105.08.035-.04.07 0 .122-.04.035.04.07 0 .105.04.035 0 .07 0 .104.04.036 0 .07 0 .123.04.035 0 .07.041.105.041h.122c.035.04.087 0 .122 0h.244c.035 0 .07.04.105 0 .053.04.087 0 .122 0h.262c.035 0 .088-.04.123-.04.034 0 .087 0 .122-.04h.139c.035 0 .088-.04.122-.04.053 0 .088 0 .123-.04h.017c.035 0 .07-.04.123-.04.051-.042.087-.042.139-.082h.122c5.237-2.252 10.492-4.544 15.746-6.797.087-.04.174-.082.262-.12 2.844-1.248 5.177-5.389 5.202-9.25.01-1.488.017-3.016.035-4.505a2211.664 2211.664 0 0118.102-25.297c2.726-3.752 4.661-7.159 3.614-10.939-1.449-5.349-1.642-17.053.122-23.487 1.203-4.384-.711-6.693-3.491-8.204-5.948-3.235-11.853-6.556-17.771-9.894.018-1.568.025-3.097.035-4.585.025-3.86-2.256-6.364-5.08-5.43-.091.031-.157.04-.244.081-5.22 1.65-10.422 3.258-15.607 4.867-.035.04-.087.04-.122.04-.052.04-.087.08-.14.08-.052.041-.069.041-.104.041h-.018c-.035 0-.069 0-.122.04-.035.04-.087.08-.122.08-.053 0-.087.04-.14.04-.035.04-.087.04-.122.081-.035.04-.087.08-.122.08-.053.04-.087.04-.123.04-.051.081-.08.09-.122.121-.013.01-.017 0-.017 0-.035 0-.07.04-.122.08-.035.04-.07.08-.105.08h-.017c-.036.041-.07.041-.105.121-.053 0-.087.04-.122.081s-.087.041-.122.081a.354.354 0 00-.123.161c-.034 0-.069.04-.105.08-.034 0-.069.08-.104.12-.035 0-.07.041-.105.081-.035 0-.087.08-.122.121a.732.732 0 00-.122.12c-.035.04-.07.12-.105.12l-.105.121c-.035.04-.07.121-.104.161-.035 0-.079.035-.105.081-.044.076-.07.121-.088.161a.533.533 0 00-.087.12c-.035.041-.07.121-.105.161-.017 0-.052.08-.087.121-.035.08-.07.12-.087.12-.053.081-.087.121-.122.201-.017.04-.053.081-.088.121-.017.081-.058.117-.087.161a.974.974 0 00-.07.121c-.035.04-.069.161-.087.201a.54.54 0 00-.087.161c-.035 0-.053.08-.07.12-.035.081-.067.112-.088.161-.032.075-.034.121-.069.161a.34.34 0 01-.07.162.935.935 0 01-.07.2c-.018.041-.035.041-.052.121a.925.925 0 00-.07.201.314.314 0 00-.07.161c-.017.08-.035.12-.052.16-.018.08-.035.121-.053.201-.017.04-.035.081-.052.162-.018.081-.035.12-.052.161-.018.08-.036.12-.053.241a.304.304 0 00-.035.12c-.017.08-.034.121-.052.201-.018.08-.018.121-.035.161a.43.43 0 00-.052.201c-.017.081-.017.162-.035.162a.778.778 0 00-.035.2c0 .081-.017.121-.017.202-.018 0-.018.08-.035.16 0 .081-.018.161-.018.201 0 .04-.018.08-.018.161s-.017.121-.017.202c0 .08 0 .12-.017.161v.562l-.053 4.505a2139.426 2139.426 0 00-18.329 23.165c-2.835 3.628-4.793 7.56-3.666 11.422 1.666 5.71 1.273 18.576-.297 25.578-1.118 4.984.74 7.136 3.457 8.93m61.936-188.904zm-36.816-37.202c5.08-.724 10.159-1.448 15.257-2.212zm36.693 57.914v-.04zM86.073 1053.188l47.625-20.626v-40.124l-47.625 18.357zm123.937-421.5l67.875-4.126v-27l-67.875.732zm-89.284-52.045c1.036.346 2.071.69 3.107 1.038 1.508.51 2.554 1.362 3.092 2.842.376 1.035.746 2.095 1.127 3.152.381-1.075.78-2.131 1.157-3.188.521-1.457 1.584-2.332 3.107-2.861 1.02-.345 2.041-.71 3.077-1.056a151.852 151.852 0 01-3.077-1.021c-1.507-.51-2.57-1.385-3.09-2.842-.379-1.057-.763-2.131-1.144-3.151-.365 1.038-.758 2.078-1.142 3.15-.529 1.478-1.6 2.35-3.123 2.862-1.02.344-2.07.71-3.09 1.075m-61.82-16.524c-1.904-.602-3.808-1.203-5.68-1.803-3.793-1.221-5.576-3.298-6.688-7.38-.533-1.984-1.096-3.971-1.614-5.94-.518 1.933-1.02 3.9-1.523 5.886-1.036 4.027-2.757 6.104-6.504 7.233-1.903.564-3.776 1.147-5.68 1.73 1.92.62 3.807 1.222 5.726 1.84 3.778 1.222 5.53 3.299 6.641 7.379.548 1.968 1.097 3.935 1.63 5.92a650.975 650.975 0 011.522-5.938c1.021-4.045 2.757-6.086 6.52-7.233a2088.5 2088.5 0 015.65-1.694m25.236-91.217c.807.4 1.604.809 2.421 1.22 1.21.609 2.034 1.456 2.453 2.733.296.908.58 1.822.883 2.75.305-.837.607-1.67.914-2.495.424-1.143 1.233-1.767 2.437-1.986.807-.182 1.614-.328 2.436-.51-.822-.401-1.624-.812-2.42-1.22-1.199-.612-2.042-1.44-2.453-2.715-.305-.93-.609-1.84-.899-2.77-.319.82-.609 1.659-.898 2.479-.442 1.148-1.267 1.736-2.453 1.985-.809.17-1.614.365-2.42.529m-2.194 29.185c1.127-2.57 2.254-5.12 3.397-7.688 1.751-3.953-.172-9.047-4.235-11.404-13.894-8.064-18.15-10.567-25.556-15.031a1118.7 1118.7 0 01-10.509-6.43c-4.095-2.53-8.873-1.218-10.615 2.952-1.136 2.717-2.26 5.427-3.382 8.16-1.74 4.243.161 9.784 4.28 12.188 18.574 10.84 17.423 10.148 36.004 20.532 4.097 2.222 8.864.747 10.616-3.28M69.492 530.09a869.502 869.502 0 013.396-7.978c1.736-4.118-.188-9.182-4.265-11.423-18.586-10.22-17.413-9.566-35.989-20.26-4.116-2.368-8.865-.874-10.616 3.48a930.876 930.876 0 00-3.35 8.436c-1.728 4.424.162 9.967 4.265 12.224 18.544 10.204 17.41 9.592 35.973 19.31 4.053 2.122 8.85.366 10.586-3.79m32.227 48.699c4.356 3.679 8.727 6.776 13.021 9.236 13.51 7.56 26.196 9.219 34.878 3.607a19.154 19.154 0 004.28-3.68c1.663-1.927 2.127-3.808 2.101-5.665-.034-2.46-1.264-4.774-4.614-6.104a1460.906 1460.906 0 01-21.079-8.708c-4.082-1.73-5.97-6.377-4.219-10.275 1.127-2.514 2.276-4.99 3.411-7.47 1.76-3.84 6.532-5.404 10.601-3.57a1247.584 1247.584 0 0018.23 8.034c-.99-4.463-3.822-8.544-8.437-10.603-2.36-1.075-4.707-2.15-7.083-3.224-4.05-1.877-5.954-6.523-4.187-10.257 1.126-2.404 2.27-4.791 3.411-7.178.564-1.202 1.462-2.132 2.528-2.806-1.797-3.242-4.478-4.827-6.274-1.056a1312.952 1312.952 0 01-8.56-4.281 154.978 154.978 0 00-1.523 3.279c-1.188 2.533-3.016 3.352-6.138 2.769-2.573-.474-5.132-.93-7.706-1.403 3.563 1.785 7.143 3.57 10.722 5.338a660.648 660.648 0 005.148 4.464c-1.189 2.55-2.377 5.119-3.564 7.706a1106.3 1106.3 0 00-3.549 7.779c-2.224-.383-4.447-.747-6.64-1.13a124.011 124.011 0 00-1.508 3.316c-1.188 2.678-2.909 3.662-6.153 3.206-2.574-.382-5.148-.73-7.69-1.074 3.578 1.658 7.142 3.296 10.705 4.955 2.85 1.294 5.681 2.568 8.53 3.843-1.036 2.315-2.087 4.628-3.108 6.942-3 6.832-8.787 11.75-15.534 14.01m52.97 20.44c-4.995 3.243-11.103 4.462-17.865 3.844-6.777-.62-14.209-3.17-21.87-7.451-6.702-3.808-13.57-9.018-20.302-15.45-.122 0-.229 0-.335.019-3.35-1.457-6.702-2.933-10.037-4.391-3.35-1.494-6.7-2.987-10.037-4.5-6.427-7.687-8.533-18.948-4.493-28.73 1.017-2.46 2.057-4.9 3.092-7.341 2.848 1.42 5.696 2.879 8.56 4.28a786.19 786.19 0 014.615-10.765c-1.737-1.585-3.458-3.17-5.179-4.755a885.078 885.078 0 013.55-8.161c1.171-2.734 2.36-5.43 3.547-8.108 2.224.492 4.447.984 6.656 1.476 1.538-3.461 3.092-6.923 4.645-10.348-2.863-1.55-5.726-3.134-8.574-4.7a831.6 831.6 0 013.106-6.887c3.127-6.865 9.2-11.094 16.251-12.206-4.036-3.917-8.072-7.396-12.062-10.402-11.347-8.708-20.928-13.51-29.15-14.848-8.227-1.34-15.094.966-20.988 6.413 1.95-5.32 5.026-9.255 9.275-11.477 5.011-2.551 11.178-2.476 18.002-.237 6.838 2.243 14.347 6.577 22.07 12.624 7.66 5.868 15.508 13.354 23.18 21.954 7.604 8.525 15.031 18.108 21.733 28.529 6.716 10.22 12.058 20.32 16.067 29.805 3.972 9.39 6.595 18.345 7.738 26.36 2.345 16.124-1.219 29.132-11.195 35.453\",\n fill: \"#74ba95\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3302.72 1159.743l-76.118-46.668 12.14-26.755 80.063 45.412zm-2265.001-215.79l-64.993 16.07-7.55-16.988 65.297-14.853z\",\n fill: \"#4a9071\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1248.263 572.655l-17.4.883v-8.983l17.4-.45z\",\n fill: \"#b3d9bc\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3926.889 662.297l-.003-384c-54.98 12.559-110.728 24.19-168.207 33.75v339.75c55.695 2.187 111.202 5.875 168.21 10.5\",\n fill: \"#3a7f63\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3872.299 484.603c-1.764.062-3.37-1.127-4.437-3.021-.885-1.567-1.394-3.587-1.385-5.916.01-2.39.644-4.687 1.669-6.355 1.08-1.761 2.617-2.938 4.267-3.02.89-.043 1.726.25 2.465.755-1.023 2.39-1.66 5.443-1.668 8.589-.01 3.147.512 5.915 1.46 8.117a4.163 4.163 0 01-2.371.85m35.125-1.07c-1.992.06-3.734-1.134-4.932-3.052-1.002-1.606-1.611-3.712-1.592-6.103.019-2.58.77-4.93 1.97-6.67 1.21-1.752 2.847-2.9 4.648-2.958.15-.005.285 0 .436 0-1.27 2.58-2.05 6.056-2.067 9.66-.02 3.602.644 6.67 1.764 9.124-.076 0-.171-.002-.227 0m-97.54 5.159c-4.495.14-8.136-4.61-8.1-10.571.039-5.962 3.728-10.95 8.233-11.17 4.504-.22 8.098 4.514 8.06 10.54-.038 6.026-3.698 11.06-8.193 11.2m117.005 38.9v21.798l-.102.151c.036-7.337.066-14.648.102-21.949m0-26.565v12.386c-.32-3.9-1.751-6.698-4.672-8.046-3.014-1.39-6.031-2.737-9.047-4.09 4.572-.073 9.146-.167 13.719-.25m0-61.912v12.365c-6.17-13.591-13.115-26.256-20.755-37.95 7.595 6.754 16.559 18.695 20.755 25.585m0-45.763v10.459c-.918-3.398-2.888-5.256-5.924-6.516-2.22-.944-4.457-1.856-6.676-2.768 3.812-.347 7.623-.724 11.436-1.101.402-.04.789-.063 1.164-.074m-57.777 188.909c2.429.11 2.504.032 3.738 0 15.115 14.536 29.935 24.323 42.937 28.19 3.867 1.15 7.582 1.767 11.102 1.813V597.71c-3.598.858-7.486.923-11.595.249-9.883-1.622-21.108-7.424-32.772-16.706 5.728-1.132 11.265-3.114 16.538-5.915a10.716 10.716 0 01-2.486-1.762c-3.375-3.146-5.952-8.306-5.897-17.021.116-18.31.227-36.622.322-54.901-13.124.252-26.23.47-39.335.692-3.64.06-6.636-3.965-6.6-8.967.02-2.673.039-5.348.057-8.023.153.063.285.063.418.063 1.63-.032 2.988-4.09 3.016-9.061.027-4.971-1.252-8.936-2.902-8.872-.132 0-.266.063-.4.126.02-2.77.02-5.475.039-8.181.037-5.002 3.054-9.29 6.695-9.502 13.105-.763 26.192-1.51 39.316-2.265l.284-50.968c-.91.093-1.782.162-2.674.252-5.973.6-9.498-3.528-13.333-9.062-6.368-9.19-10.3-16.046-17.144-23.942 6.694 3.554 11.455 6.67 17.01 11.86.058-9.406.096-18.782.172-28.158-2.58 8.526-6.518 12.486-12.062 8.464-14.444-10.482-28.561-16.235-40.946-16.802-12.364-.564-23.081 3.856-30.8 13.593-6.05 7.629-9.72 17.808-11.115 29.763-1.393 11.957-.511 25.736 2.41 40.554-.038-24.037 1.673-44.674 14.432-60.66 6.3-7.893 15.059-11.624 25.149-11.671 10.108-.048 21.525 3.712 33.037 10.729-18.662 7.015-35.074 22.412-46.996 42.254-11.766 19.58-19.08 43.763-19.287 69.53-.096 11.736 1.313 22.967 3.925 33.508.459 1.854 1.057 4.43 1.726 6.167.507 1.315 1.066 2.339 1.707 3.145 1.009 1.27 2.503 2.392 3.888 2.706 2.313.598 4.308.2 6.372-1.51 4.65-3.857 7.99-6.873 13.409-8.621 14.57-4.701 29.68 5.38 35.484 24.792-7.7-12.112-18.776-17.476-31.957-10.476-13.181 7-22.133 29.684-16.443 49.49 5.689 19.806 26.676 28.44 37.059 23.439 10.383-5.002 10.734-8.337 13.94-15.196 3.45.755 8.136 1.305 10.562 1.415\",\n fill: \"#519376\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2595.146 408.626c2.49 0 4.52 1.87 4.52 4.162s-2.03 4.161-4.52 4.161c-2.489 0-4.52-1.869-4.52-4.161s2.031-4.162 4.52-4.162m-221.416 6.695c2.09 0 3.795 1.57 3.795 3.494 0 1.924-1.705 3.493-3.795 3.493-2.088 0-3.793-1.569-3.793-3.493 0-1.925 1.705-3.494 3.794-3.494\",\n fill: \"#a4d3b8\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3631.674 627.692c.793 41.121 50.538 47.195 50.538 2.555zm50.538-44.675V451.425c0-44.233-50.557-35.638-50.557 6.736v125.711z\",\n fill: \"#6cb08c\"\n }))), _g13 || (_g13 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#J)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n mask: \"url(#K)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1074.92 1390.454c-16.551-71.249 1.76-128.016 40.309-176.38l-304.062-10.179c-86.754 57.362-141.483 120.651-181.919 186.559H389.277c48.125-59.069 105.017-112.852 164.66-159.7 131.749-103.482 301.491-180.172 466.921-232.172l327.177 115.144c-102.872 56.247-145.809 112.315-140.317 173.73 3.003 33.591 23.323 71.41 61.068 102.998z\",\n fill: \"url(#L)\"\n })))), _g14 || (_g14 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#M)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3475.343 849.241l87.809 17.74m-386.55-78.095l106.917 21.6\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3926.889 662.297c-57.008-4.625-112.515-8.313-168.21-10.5v-339.75c57.479-9.56 113.228-21.191 168.207-33.75M1366.743 947.38c-.028 1.19-1.361 3.227-3.606 3.709l-40.733 8.76c-4.928 1.06-8.121 1.47-12.793-.412l-17.202-6.934c-1.885-.76-2.668-1.765-2.617-2.806m915.109 311.323c-1.05 2.476-4.415 4.489-9.847 5.413-3.28.557-6.564 1.11-9.86 1.668-3.282.554-6.566 1.116-9.86 1.674-5.433.922-11.938.583-18.03-.68-6.097-1.266-11.823-3.48-15.654-6.322a195909.34 195909.34 0 01-32.096-23.801c-10.68-7.924-21.389-15.86-32.079-23.795-3.155-2.342-4.615-5.095-4.772-7.503\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M507.273 533.563c9.303 1.42 15.92 12.248 15.92 24.804l.008 338.589c.001 8.776-3.767 19.613-9.679 26.152\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1722.754 1090.824c-168.607 27.025-284 81.932-284 145.267 0 47.077 63.753 89.496 165.725 119.271m298.434-281.422c-9.197.315-18.323.704-27.37 1.166m196.3 1.605a1596.58 1596.58 0 00-46.318-2.479m76.58 318.875c219.063-19.328 379.617-82.307 379.617-157.016 0-62.519-112.434-116.823-277.5-144.206m-531.815 280.254c41.717 8.653 87.643 15.48 136.613 20.113\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M902.657 900.96v115.268m168.787-138.034v83.325\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1963.444 419.92c10.23 0 18.572 2.268 18.572 5.048 0 2.779-8.343 5.047-18.572 5.047s-18.573-2.268-18.573-5.047c0-2.78 8.344-5.048 18.573-5.048zm-819.151 622.575c-118.208 33.402-243.207 99.531-333.397 161.586m822.061 126.591c-16.67 3.28-28.588 11.997-28.588 22.233 0 13.048 19.362 23.625 43.248 23.625 23.884 0 43.246-10.577 43.246-23.625 0-10.078-11.553-18.684-27.821-22.077m589.21-101.884c-14.361 2.924-24.591 10.484-24.591 19.35 0 11.4 16.919 20.642 37.788 20.642 20.87 0 37.789-9.242 37.789-20.643 0-8.862-10.222-16.42-24.578-19.347\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M496.168 973.56v264.603\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M962.23 1209.262c60.024-53.807 167.438-114.003 244.564-144.916m-186.709-65.276l327.95 114.655m1629.388 107.655c44.569 44.65 85.122 101.064 91.17 169.074\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2911.508 851.43v137.096m-287.448-178.88v58.997m-1257.008 49.213c114.833-19.074 234.533-32.22 356.073-39.434M389.278 1390.455c27.452-34.277 61.417-69.91 96.749-102.47 126.416-116.501 283.557-199.112 444.306-258.363 109.28-40.282 230.279-72.85 358.508-97.705m613.294-59.82a3801.6 3801.6 0 00-45.331.796m214.779 1.016c-14.847-.49-29.712-.894-44.585-1.21m471.99 40.879c-110.14-17.315-224.491-29.243-340.431-35.783m459.978 57.042a2858.947 2858.947 0 00-18.067-3.54m902.514 459.157c-43.844-53.753-92.966-101.836-146.851-145.508-59.37-48.116-125.584-90.497-193.195-126.34-63.41-33.616-130.698-63.164-200.751-88.985-74.588-27.494-154.638-51.394-238.72-71.702\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1288.876 911.307c-138.804 26.203-269.695 61.179-387.37 104.92-126.543 47.04-242.316 106.126-352.74 183.352-73.802 51.622-147.826 120.558-203.67 190.875m1210.18-517.81c-64.042 6.673-126.213 14.916-188.051 24.934m355.838-38.531a3732.009 3732.009 0 00-37.821 2.393m216.563-8.594c-15.002.172-30 .43-44.985.776m214.845.999a3907.58 3907.58 0 00-45.096-1.198m214.47 10.479a3744.237 3744.237 0 00-97.62-6.28m389.14 41.142c-52.852-8.69-106.69-16.154-161.231-22.391m280.156 44.378c-4.407-.908-8.825-1.81-13.251-2.7m570.134 196.27c-70.91-38.336-144.741-71.101-217.354-98.093-73.151-27.192-151.411-50.998-233.504-71.412m791.169 445.638c-37.022-52.278-85.247-98.954-131.09-136.916-30.659-25.386-63.204-49.381-97.088-71.957\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1271.387 294.353c-201.438-26.29-392.921-65.465-559.72-117.183-106.018-32.872-206.707-71.784-299.342-117.446M2016.51 333.878c58.902-1.01 116.988-2.916 172.07-5.707a5100.085 5100.085 0 00130.22-8.26m-770.771 2.063a5168.154 5168.154 0 00165.95 9.039c62.719 2.412 129.27 3.648 196.448 3.718M3536.324 0c-120.701 72.407-259.652 130.796-409.212 177.17-94.434 29.28-196.23 54.488-303.335 75.617a5300.34 5300.34 0 01-46.406 8.91M1193.44 302.51c-149.693-20.37-292.603-47.354-424.322-80.95M3587.354 21.122c-122.844 69.406-263.316 125.685-414.166 170.66a2699.142 2699.142 0 01-60.847 17.359\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M753.324 237.675c-117.34-29.908-231.853-66.6-340.267-111.47m855.82 202.773a4599.627 4599.627 0 01-63.057-7.482m946.008 37.122a5488.773 5488.773 0 0079.244-3.174 5856.9 5856.9 0 0087.664-4.826m-800.949-.077c59.427 3.745 117.72 6.476 174.415 8.384 23.327.786 47.411 1.438 72.038 1.958m1083.97-71.733c-23.532 4.193-47.265 8.464-70.839 12.314m319.868-66.066c-39.01 10.04-78.446 19.348-118.195 27.969M3676.027 0c-22.923 14.304-46.422 28.07-70.448 41.32\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2204.78 1040.386c252.8 33.447 432.245 117.906 432.245 216.809 0 50.01-45.887 96.326-123.933 134.222m-487.351-365.397c15.433.488 30.716 1.156 45.83 1.997m-214.768-.082a1912.485 1912.485 0 0137.174-1.674m-480.182 365.156c-78.046-37.896-123.933-84.212-123.933-134.222 0-98.917 179.496-183.384 432.349-216.822\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1902.648 1000.058c-15.421.476-30.71 1.13-45.847 1.959m214.725.079a1923.967 1923.967 0 00-45.796-1.992m608.084 391.313c42.126-34.964 65.603-73.803 65.603-114.712 0-121.478-206.898-224.731-495.04-262.366m-482.07.027c-288.034 37.657-494.836 140.89-494.836 262.339 0 40.909 23.476 79.748 65.604 114.712\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1902.134 995.929a2088.59 2088.59 0 00-45.958 1.927m216.192.089c-14.951-.812-31.121-1.544-46.233-2.02m626.017 399.57c43.279-35.692 67.398-75.341 67.398-117.102 0-122.72-208.157-227.22-499.366-266.612-5.38-.73-10.762-1.324-16.141-2.021m-480.971-.173c-6.62.86-13.238 1.76-19.851 2.668-289.383 39.752-495.882 143.908-495.882 266.138 0 40.822 23.045 79.624 64.506 114.687\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2289.661 423.93a4154.767 4154.767 0 0059.878-4.103c.616-.046 3.624-.346 4.241-.393a290.159 290.159 0 002.992 3.905c-1.143.089-4.677.429-5.824.516a4122.172 4122.172 0 01-61.377 4.209 4668.33 4668.33 0 01-67.675 3.638l3.44-4.28a4651.542 4651.542 0 0064.325-3.491m-196.199 349.346a5073.155 5073.155 0 00-76.952-1.37l-3.012-4.158c26.093.254 52.155.708 78.101 1.36 26.152.657 52.194 1.517 78.037 2.58a4510.584 4510.584 0 0199.356 5.163c32.225 2.038 63.89 4.41 94.807 7.117 6.02.52 11.957.195 17.912-1.04 12.737-2.638 24.208-9.243 33.3-18.493 10.495-10.68 17.518-24.661 19.833-39.44.561-3.586.844-7.185.844-10.814v-57.29l-12.706-6.595-36.468-18.927-1.12-.581V576.02l1.12-.581 36.468-18.927 12.445-6.458.261-.137v-57.248a278.686 278.686 0 004.127 2.513v57.231l-1.12.582-13.828 7.176-35.085 18.208-.263.136.001 24.89v24.889l.262.136 35.085 18.208 14.948 7.758v59.786c0 4.035-.345 8.162-1.006 12.132-2.556 15.372-9.934 29.885-20.866 41.008-9.67 9.838-21.854 16.844-35.403 19.653a65.8 65.8 0 01-19.096 1.104c-30.947-2.71-62.634-5.085-94.87-7.126a4486.284 4486.284 0 00-99.1-5.154 4839.302 4839.302 0 00-76.012-2.522m-236.668-.54a12.418 12.418 0 00-1.147-4.098c15.456-.325 30.914-.581 46.373-.767V772c-15.076.18-30.15.426-45.226.738m-198.466 8.214a3950.476 3950.476 0 00-94.884 7.127 65.725 65.725 0 01-31.92-5.164c-8.477-3.656-16.116-9.015-22.58-15.593-9.216-9.377-15.918-21.18-19.32-33.877a74.848 74.848 0 01-2.552-19.263v-59.786l50.033-25.966.263-.136v-49.78l-35.347-18.343-14.949-7.758v-59.787c0-15.206 4.857-30.334 13.453-42.852 5.136-7.48 11.605-14.03 19.078-19.183 12.91-8.904 27.961-13.1 43.625-11.863a4032.768 4032.768 0 0067.767 4.815 4613.715 4613.715 0 0070.712 3.886l3.44 4.28c-24.478-1.14-48.62-2.45-72.33-3.924a4035.473 4035.473 0 01-69.91-4.946c-14.723-1.17-28.862 2.798-40.992 11.162-7.06 4.868-13.158 11.049-18.01 18.115-8.137 11.849-12.706 26.12-12.706 40.51v57.291l.262.137 12.445 6.458 37.588 19.508v54.769l-50.295 26.103v57.29c0 6.15.82 12.274 2.413 18.22 3.212 11.995 9.558 23.175 18.266 32.034 6.085 6.19 13.295 11.25 21.273 14.692 9.484 4.09 19.64 5.73 29.938 4.84 30.921-2.706 62.587-5.08 94.814-7.117a4510.21 4510.21 0 0199.348-5.162 4654.156 4654.156 0 0134.704-1.302l-3.367 4.232a5084.673 5084.673 0 00-31.176 1.18 4485.256 4485.256 0 00-99.084 5.153\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1686.165 880.33v-9.93c0-18.206-18.71-34.833-41.345-33.106-16.102 1.228-32.234 2.304-48.403 3.158-22.69 1.201-40.65 15.534-40.65 33.743v16.958m684.957-7.453v-13.3c0-18.205 18.71-34.832 41.345-33.106 16.1 1.228 32.235 2.303 48.403 3.158 22.689 1.2 40.649 15.534 40.649 33.743v23.215m-750.494-59.358v-56.244m685.633 56.244v-56.244m-685.633-356.706v-68.977m685.633 68.977v-73.73\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3388.25 1067.198c-27.306 4.101-54.118 1.343-79.552-9.273-101.976-42.573-183.949-194.822-195.114-380.378-13.483-224.102 81.417-411.927 211.968-419.518 130.552-7.592 247.314 167.925 260.798 392.026 10.083 167.578-40.44 314.87-121.154 381.685-22.778 18.855-47.383 31.017-76.946 35.458z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3097.435 186.684v433.49a748.402 748.402 0 001.24 57.842c11.158 185.432 88.453 339.75 187.53 396.29 57.163 32.619 125.317 27.639 178.667-11.17 45.227-32.897 76.27-82.33 97.404-133.38 26.035-62.885 41.594-139.47 43.095-222.664.23-12.856.109-25.793.109-38.658V0M959.386 896.083c-116.797-5.213-201.701-134.187-189.638-288.071 12.064-153.884 116.526-274.406 233.324-269.193 116.797 5.213 201.7 134.187 189.637 288.071-12.063 153.883-116.525 274.406-233.323 269.193z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1205.458 285.33v303.718a387.742 387.742 0 01-1.129 38.382c-12.823 162.695-123.867 290.117-248.024 284.606-110.733-4.916-194.48-113.919-202.201-252.853a382.814 382.814 0 01-.452-31.153V190.798\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1237.531 664.513c-9.222-.412-15.926-10.596-14.974-22.746.953-12.15 9.201-21.667 18.423-21.255 9.222.41 15.926 10.595 14.974 22.745s-9.2 21.667-18.423 21.256z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1238.65 650.243c-3.241-.145-5.597-3.724-5.262-7.993.335-4.27 3.233-7.614 6.474-7.47 3.24.146 5.597 3.724 5.262 7.994-.335 4.27-3.233 7.614-6.474 7.47\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1238.65 650.243c-3.241-.145-5.597-3.724-5.262-7.993.335-4.27 3.233-7.614 6.474-7.47 3.24.146 5.597 3.724 5.262 7.994-.335 4.27-3.233 7.614-6.474 7.47z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 0.216,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1222.557 578.424v-76.012c0-33.906 33.397-34.031 33.397-3.065v76.023c0 32.04-33.397 35.386-33.397 3.054z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3661.277 791.03c14.83-.878 25.608-22.598 24.076-48.512-1.53-25.915-14.794-46.21-29.622-45.333-14.829.878-25.608 22.597-24.076 48.512 1.531 25.915 14.794 46.211 29.622 45.333z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3659.55 761.808c5.595-.331 9.66-8.524 9.083-18.3-.578-9.775-5.581-17.43-11.174-17.1-5.594.332-9.66 8.525-9.082 18.3.577 9.775 5.58 17.43 11.174 17.1\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3430.988 292.673c-19.48-7.382-39.672-10.753-60.21-9.577-128.1 7.332-221.22 188.759-207.989 405.227 8.993 147.133 64.806 272.586 139.861 335.553 27.451 23.027 63.551 41.404 100.268 40.392M905.497 364.354c19.007-6.462 43.414-9.13 62.277-8.323 117.657 5.034 203.185 129.617 191.033 278.258C1147.3 775.04 1052.334 886.896 942.39 894.1\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3161.537 648.173l117.926 9.342 38.09-69.948 126.353 2.939 41.826 83.349 101.817 8.066M1159.957 606.72l-108.312 6.414-34.984-48.031-116.053 2.018-38.417 57.234-93.515 5.539\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3480.854 341.151c-85.667-52.074-158.217-15.659-210.286 38.56-43.91 45.717-80.98 140.453-84.953 244.043l79.44 2.808 38.828-69.18 157.897-2.686 42.011 80.307 81.722 2.888\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M823.167 445.716c20.693-22.003 41.69-36.638 61.754-46.153 33.102-15.7 69.86-19.243 103.935-12.822 63.976 12.057 99.516 53.307 123.076 95.405 14.99 26.78 27.148 60.542 31.368 107.662l-78.422 2.072-35.662-47.504-145.025-1.845-38.585 55.145-75.061 1.984m2615.79-189.186l-54.214 96.595 32.835-1.248 17.897-31.888 16.006 30.599 35.964-1.367z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M953.486 443.498l49.793 66.329-28.976-.823-18.224-24.277-16.3 23.295-30.829-.876zM3283.519 695.17l49.034-80.524 90.629 3.5 51.3 92.202V950.3c-52.452 66.19-158.066 40.955-190.963-42.875zm-2237.554-56.787l-43.493-54.246-82.318 2.587-45.881 60.645v170.389c50.287 45.603 141.42 25.653 171.692-28.876z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3300.049 704.188l21.62.461m-2288.932-59.465l-15.046.317m-.261 135.752l15.308 1.74M3587.549 681.92V0M768.676 629.894V194.102\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3112.459 649.798V181.663\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1193.716 607.835V283.683m2207.671 1.009l-101.023-22.889V116.165M936.272 357.52l63.43-18.701v-90.64m2161.835 399.994l-49.078 1.625m569.753-18.561V452.415c0-44.234-50.557-35.639-50.557 6.736v168.54c0 42.018 50.557 48.545 50.557 3.546z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3659.773 662.194c16.5 1.087 29.771-7.3 29.771-30.858V452.514c0-21.263-14.564-28.946-27.796-29.409\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2604.622 807.521l45.077 5.472c18.396 2.233 33.695-15.17 33.691-33.69l-.066-201.962c-.005-18.523-14.382-34.496-32.893-33.849l-45.94 1.603c-18.509.647-30.772 15.16-30.802 33.691l-.319 195.268c-.029 18.53 12.856 31.235 31.252 33.467zm280.461 38.205l53.251 10.47c21.508 4.229 39.747-17.373 39.746-41.298l-.018-241.712c0-23.927-16.928-44.1-38.779-42.94l-53.925 2.855c-21.848 1.158-36.302 19.587-36.387 43.525l-.805 225.864c-.085 23.938 15.409 39.006 36.917 43.236zm92.802-627.848l.172 43.723c.094 23.938-18.057 42.59-39.675 46.193l-53.748 8.959c-18.55 3.092-36.236-10.494-36.255-31.674l-.035-38.341M525.668 962.803l-62.223 21.515C438.94 992.79 417 958.125 417.002 922.06l.021-366.52c.002-36.068 19.853-67.337 45.312-64.733l63.011 6.445c25.457 2.604 42.417 29.527 42.518 65.613l.942 334.76c.101 36.086-18.634 56.703-43.138 65.177z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2604.086 785.68l46.31 5.163c7.307.816 13.37-6.024 13.37-13.37v-199.97c0-7.344-6.03-13.561-13.37-13.37l-46.31 1.21c-7.341.193-13.37 7.29-13.37 14.645v189.777c0 7.353 6.06 15.102 13.37 15.916zm280.364 30.88l54.705 8.58c8.593 1.349 15.793-7.784 15.794-17.271l.008-234.476c.001-9.486-7.122-17.52-15.793-17.272l-54.706 1.563c-8.67.249-15.794 9.418-15.794 18.918l-.007 219.397c0 9.498 7.2 19.213 15.793 20.561zM526.407 919.474L462.484 937.5c-9.858 2.78-18.454-11.737-18.454-26.038l-.009-354.981c0-14.301 8.333-26.652 18.454-26.038l63.923 3.869c10.12.612 18.454 14.196 18.455 28.518l.01 325.646c0 14.32-8.597 28.218-18.456 30.997zM2106.23 91.86c127.888-15.174 230.745-50.176 280.49-94.896m-845.978.513c49.983 44.496 152.616 79.3 280.097 94.404\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2106.377 106.179c147.872-16.071 266.466-56.437 319.967-108.2m-927.748-1.92c52.65 52.806 172.766 94.038 322.938 110.23m284.221 126.752c289.06-9.635 545.786-48.251 730.927-105.01l-178.975-36.568c91.815-25.796 161.959-57.769 206.288-94.149M827.44-6.005c48.71 51.019 141.33 97.119 266.029 135.032l178.81-36.66c27.149 10.539 188.355 48.127 246.355 51.57l-119.41 51.676c127.957 19.378 270.408 32.371 421.723 37.422\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1820.833-2.837v242.778h.037c-.018-.208-.036-.415-.036-.624 0-17.315 63.849-31.35 142.61-31.35 78.761 0 142.61 14.035 142.61 31.35 0 .21-.018.416-.036.624h.037V-2.837\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2086.472 107.498c12.444 4.654 19.583 10.077 19.583 15.866m-141.932-31.35c16.734.016 32.787.668 47.688 1.848m-75.33-1.289c3.354-.14 6.753-.257 10.186-.345m-49.983 3.425a510.236 510.236 0 0122.443-2.096\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1820.833 185.416c0-11.992 30.63-22.413 75.629-27.685L1896.265 0m-75.557 78.298c0-12.482 30.629-23.328 75.629-28.815\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1820.686 68.907c0-12.482 30.63-23.328 75.629-28.815\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1885.492 83.602V69.884c-11.811 1.735-22.492 3.857-31.714 6.29-10.165 2.683-13.077 17.807.016 14.06 8.94-2.558 19.639-4.8 31.698-6.632m0 25.792V95.676c-12.012 1.765-22.854 3.93-32.18 6.418-9.458 2.52-12.608 17.69.402 13.959 8.955-2.57 19.682-4.82 31.778-6.66m-31.731 32.442c8.946-2.565 19.656-4.812 31.73-6.65v-13.717c-11.85 1.742-22.562 3.874-31.803 6.32-10.034 2.656-12.971 17.787.073 14.047\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2016.405 303.245c32.134-3.888 53.785-11.205 53.785-19.59 0-12.457-47.792-22.556-106.746-22.556-58.955 0-106.747 10.1-106.747 22.556 0 8.441 21.94 15.798 54.424 19.666\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2081.481 271.441c0-15.029-52.847-27.21-118.037-27.21s-118.038 12.181-118.038 27.21\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1820.87 239.941l37.24 47.394m247.908-47.394l-37.24 47.394\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2015.892 343.058V285.94c0-6.121-23.481-11.083-52.447-11.083-28.967 0-52.45 4.962-52.45 11.083v57.117\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1963.444 341.963v-67.105m19.936 67.282v-67.117m-39.872 67.08v-67.08m55.537 67.396v-64.235m-71.202 64.261v-64.262m81.349 64.548v-61.916m-91.497 61.992v-61.991\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1732.315 876.105c3.193 1.01 6.372 2.003 9.55 3.01 3.178 1.008 6.375 2.007 9.55 3.01 5.259 1.66 11.673 1.1 17.74-1.091 6.08-2.198 11.87-6.062 15.845-11.058 11.092-13.944 22.197-27.891 33.279-41.815 11.089-13.934 22.19-27.87 33.28-41.803 3.975-4.994 5.44-10.243 4.599-14.633-.84-4.377-3.988-7.91-9.244-9.568-3.194-1.007-6.371-2.004-9.55-3.01a4402.5 4402.5 0 00-9.55-3.009c-5.257-1.652-11.658-1.13-17.755 1.063-6.066 2.182-11.84 6.091-15.815 11.086-11.09 13.931-22.181 27.877-33.264 41.801-11.088 13.933-22.187 27.858-33.28 41.802-3.973 4.996-5.475 10.218-4.63 14.592.85 4.392 4.004 7.968 9.245 9.622z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1853.671 783.295c-1.335-1.033-2.954-1.872-4.843-2.468-3.193-1.007-6.37-2.004-9.55-3.01a5879.618 5879.618 0 00-9.549-3.008c-5.258-1.653-11.659-1.13-17.755 1.062-6.066 2.183-11.84 6.092-15.815 11.086-11.09 13.932-22.182 27.877-33.264 41.802-11.089 13.933-22.188 27.858-33.28 41.802a26.827 26.827 0 00-2.123 3.074c1.332 1.036 2.944 1.877 4.823 2.47 3.193 1.008 6.372 2.002 9.55 3.009 3.177 1.008 6.374 2.007 9.55 3.009 5.258 1.662 11.673 1.103 17.74-1.09 6.08-2.197 11.871-6.061 15.845-11.057 11.091-13.945 22.197-27.891 33.28-41.816 11.088-13.933 22.188-27.87 33.278-41.802a26.312 26.312 0 002.113-3.063\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1723.071 1285.071c0 4.506 4.332 7.153 9.244 9.245l17.13 7.293c9.677 4.121 19.116-.544 29.893-6.42l72.395-39.473c4.39-2.394 4.785-6.725 4.637-9.983\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1723.071 1233.228c0 4.506 4.332 7.153 9.244 9.245l17.13 7.293c9.677 4.121 19.116-.544 29.893-6.42l72.395-39.473c4.39-2.394 4.785-6.725 4.637-9.982\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1723.071 1063.821c0 3.983 4.332 6.323 9.244 8.173l17.13 6.448c9.677 3.643 19.105-.505 29.893-5.676l35.106-16.83v168.268\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1723.054 938.724c.85 4.39 4.003 7.967 9.244 9.622 3.193 1.009 6.372 2.002 9.55 3.01 3.178 1.008 6.374 2.006 9.55 3.009 5.26 1.66 11.673 1.1 17.74-1.09 6.081-2.198 11.872-6.063 15.845-11.06 11.092-13.943 22.197-27.89 33.28-41.814 11.088-13.934 22.19-27.87 33.28-41.802 3.974-4.995 5.44-10.244 4.598-14.634m337.706 116.838c-3.281 1.038-6.565 2.069-9.861 3.105-3.284 1.034-6.567 2.08-9.862 3.12-5.431 1.715-11.935 1.086-18.028-1.268-6.098-2.354-11.823-6.477-15.654-11.765a298081.535 298081.535 0 01-32.096-44.302c-10.682-14.75-21.39-29.52-32.08-44.288-3.828-5.29-5.081-10.832-4.038-15.44 1.044-4.605 4.415-8.33 9.83-10.043 3.296-1.042 6.596-2.07 9.878-3.105 3.282-1.035 6.576-2.081 9.86-3.12 5.428-1.716 11.933-1.1 18.045 1.253 6.077 2.34 11.794 6.492 15.624 11.78 10.689 14.756 21.388 29.519 32.079 44.288 10.68 14.752 21.39 29.519 32.08 44.289 3.829 5.289 5.12 10.805 4.069 15.424-1.05 4.608-4.415 8.355-9.846 10.072zm11.193 311.085c7.362 5.744 14.725 11.49 22.08 17.235 5.57 4.35 7.338 9.103 5.652 13.267-1.682 4.156-6.778 7.76-14.898 9.729-4.901 1.19-9.835 2.378-14.763 3.576-4.906 1.193-9.836 2.389-14.762 3.587-8.117 1.974-17.839 1.955-26.948.365-9.134-1.594-17.68-4.77-23.421-9.163-15.985-12.234-31.967-24.47-47.927-36.691l-37.858-28.986c-5.739-4.393-7.482-9.176-5.674-13.304 1.808-4.128 7.2-7.49 15.644-9.515 3.213-.771 6.447-1.54 10.063-2.322m-348.876 54.409l-13.616 8.086c-12.287 7.297-10.747 17.081 1.065 22.95l27.655 13.74c13.803 6.857 28.544 3.77 42.285-3.875l93.466-52.007c15.296-8.51 6.59-15.954-3.494-20.682l-14.342-6.726m170.353-72.878a52882.66 52882.66 0 0120.606 16.086c5.199 4.06 6.848 8.495 5.275 12.38-1.57 3.88-6.326 7.243-13.903 9.08-4.575 1.11-9.18 2.22-13.778 3.338l-13.777 3.347c-7.574 1.842-16.65 1.825-25.15.34-8.524-1.487-16.5-4.451-21.857-8.55a201603.424 201603.424 0 01-44.73-34.242l-35.313-27.04c-5.356-4.1-6.983-8.563-5.295-12.416 1.686-3.851 6.689-7.117 14.599-8.88 3.008-.67 6.025-1.34 9.035-2.007\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2203.692 1019.658c-1.05 4.608-4.415 8.355-9.847 10.073-3.28 1.037-6.564 2.07-9.86 3.106-3.282 1.032-6.566 2.08-9.86 3.12-5.433 1.714-11.937 1.085-18.03-1.269-6.097-2.355-11.823-6.476-15.654-11.764a511481.75 511481.75 0 01-32.096-44.303c-10.682-14.749-21.388-29.519-32.079-44.289-3.829-5.289-5.082-10.83-4.039-15.438m131.815 369.951c-1.05 2.476-4.415 4.489-9.846 5.413-3.281.557-6.565 1.11-9.861 1.668-3.282.555-6.566 1.117-9.861 1.675-5.431.922-11.936.583-18.029-.681-6.097-1.265-11.823-3.48-15.654-6.321-10.703-7.935-21.407-15.874-32.095-23.802-10.682-7.924-21.389-15.86-32.08-23.795-3.155-2.342-4.614-5.095-4.772-7.503m-348.773-73.2V866.483m0 418.007v-84.464m133.3-422.471v468.179m-84.565-53.454v94.676m0-386.434v245.006m380.956-89.118v-70.687m0 272.67v-169.617m-80.86-236.496v382.427m-169.43-181.858v75.136m0-420.172v312.353m301.57-72.393v341.071m-178.249-329.995v219.66m0-384.262v130.689\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2016.28 803.644a5626.18 5626.18 0 01-9.2 2.897c-3.064.964-6.128 1.941-9.202 2.912-5.068 1.6-11.137 1.013-16.822-1.183-5.688-2.197-11.03-6.043-14.605-10.977-9.986-13.782-19.973-27.567-29.945-41.335-9.967-13.76-19.956-27.542-29.93-41.322-3.573-4.935-4.742-10.106-3.769-14.403.973-4.3 4.118-7.774 9.173-9.372 3.073-.972 6.153-1.931 9.215-2.898 3.062-.965 6.136-1.941 9.201-2.91 5.063-1.601 11.132-1.026 16.835 1.17 5.67 2.183 11.003 6.056 14.577 10.99 9.973 13.768 19.955 27.542 29.931 41.322 9.964 13.762 19.957 27.542 29.931 41.32 3.573 4.936 4.777 10.083 3.796 14.393-.98 4.299-4.12 7.794-9.187 9.397z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2016.28 803.644a5626.18 5626.18 0 01-9.2 2.897c-3.064.964-6.128 1.941-9.202 2.911-5.068 1.6-11.136 1.012-16.82-1.183-5.69-2.197-11.032-6.043-14.606-10.977-9.987-13.782-19.974-27.567-29.946-41.335-9.967-13.76-19.956-27.54-29.93-41.322a27.471 27.471 0 01-.367-.52c1.197-.87 2.605-1.58 4.217-2.09 2.945-.932 5.894-1.85 8.828-2.775 2.933-.925 5.878-1.86 8.814-2.79 4.85-1.534 10.662-.983 16.126 1.121 5.431 2.092 10.54 5.8 13.963 10.528 9.553 13.188 19.114 26.382 28.67 39.581 9.544 13.183 19.116 26.382 28.671 39.581 1.322 1.828 2.305 3.686 2.961 5.515-.682.328-1.409.615-2.18.859m177.731 157.106c-3.334 1.055-6.673 2.103-10.024 3.157-3.337 1.05-6.677 2.114-10.027 3.171-5.521 1.743-12.134 1.104-18.328-1.289-6.2-2.393-12.02-6.585-15.914-11.96a217370.492 217370.492 0 01-32.63-45.041c-10.861-14.994-21.745-30.01-32.614-45.026-.137-.189-.27-.377-.4-.567 1.305-.949 2.84-1.722 4.597-2.278 3.209-1.015 6.422-2.016 9.618-3.023 3.197-1.008 6.405-2.027 9.605-3.04 5.283-1.67 11.618-1.071 17.57 1.222 5.918 2.279 11.485 6.32 15.215 11.471 10.41 14.371 20.829 28.747 31.24 43.13 10.4 14.365 20.83 28.746 31.24 43.129 1.443 1.99 2.514 4.014 3.227 6.007a17.88 17.88 0 01-2.374.937\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2025.466 858.558c-.98 4.3-4.12 7.796-9.187 9.398-3.06.968-6.125 1.93-9.2 2.898-3.062.964-6.127 1.94-9.201 2.91-5.067 1.6-11.137 1.013-16.82-1.183-5.69-2.197-11.031-6.043-14.607-10.976-9.985-13.781-19.972-27.568-29.945-41.336-9.967-13.761-19.956-27.541-29.931-41.321-2.673-3.694-4.001-7.52-4.091-11.011m123.309 411.293c-.98 2.31-4.12 4.187-9.188 5.05l-9.2 1.555c-3.062.517-6.127 1.042-9.201 1.564-5.067.86-11.137.545-16.82-.635-5.69-1.18-11.031-3.247-14.606-5.897-9.985-7.405-19.973-14.812-29.945-22.21-9.967-7.392-19.957-14.796-29.932-22.2-3.571-2.653-4.456-5.664-4.429-8.473\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1951.805 1169.763v-46.786c-9.966-7.392-34.93-25.902-44.903-33.306-3.571-2.651-4.457-5.662-4.43-8.472\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1977.946 892.848v-65.951m0 338.205V923.046m82.007-773.249c19.61-3.96 30.786-28.196 24.963-54.134s-26.44-43.756-46.049-39.797c-19.61 3.96-30.786 28.197-24.964 54.135 5.823 25.938 26.441 43.755 46.05 39.796z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2044.071 123.442c8.003-1.616 12.563-11.507 10.188-22.093-2.376-10.585-10.79-17.856-18.793-16.24-8.003 1.615-12.565 11.506-10.188 22.092 2.376 10.586 10.79 17.857 18.793 16.241z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2040.592 113.69c3.968-.802 6.229-5.705 5.05-10.954-1.177-5.248-5.35-8.854-9.317-8.052-3.967.801-6.23 5.705-5.05 10.953 1.177 5.248 5.349 8.854 9.317 8.052\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2054.815 197.076c6.48-1.309 10.175-9.318 8.25-17.892-1.925-8.572-8.738-14.46-15.22-13.152-6.48 1.31-10.175 9.318-8.25 17.892 1.924 8.572 8.74 14.461 15.22 13.152z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2049.403 127.664c10.368-2.093 16.277-14.908 13.198-28.623-3.079-13.714-13.979-23.136-24.348-21.042-10.369 2.094-16.278 14.908-13.2 28.623 3.08 13.715 13.981 23.136 24.35 21.042zm-201.82 39.468v53.283l23.813 34.272m92.685-99.972V45.855h-1.01c-5.346 0-10.625.065-15.818.19V154.91a648.058 648.058 0 0115.951-.194zm-27.864.56V73.68a585.24 585.24 0 00-16.827.943v81.6a588.664 588.664 0 0116.827-.947zm-11.259-90.311c4.397 1.5 9.236-1.014 10.808-5.617 1.571-4.604-.72-9.552-5.118-11.053-4.397-1.501-9.236 1.014-10.808 5.617-1.57 4.603.721 9.55 5.118 11.053zm-56.159-20.497V0m183.202 55.87V0\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2895.972 298.942l-10.471 1.745a31.71 31.71 0 01-2.581.325v-60.636c4.35-.96 8.7-1.927 13.052-2.899zm22.687-3.78l-13.052 2.175v-62.02c4.349-.98 8.7-1.967 13.052-2.958zm22.685-4.258a42.26 42.26 0 01-6.164 1.503l-6.888 1.148v-63.399c4.35-.998 8.7-2.002 13.052-3.01zM2964.03 266c-1.804 8.647-6.467 15.487-13.051 20.125v-61.222a6115.68 6115.68 0 0013.05-3.063zm-90.744 33.951v-57.458a5335.7 5335.7 0 01-12.69 2.76l.013 32.478c.004 11.788 4.786 19.446 12.677 22.22\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2469.557 784.235l70.457 7.64V687.297l-18.201-1.067v-25.937l-52.256-3.389z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2521.813 686.23l28.995 1.7v-48.72l-28.995-1.023z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1857.137 1089.886l81.558-67.003c3.472-2.851 4.77-8.218 4.96-12.81.194-4.663-.56-9.26-4.479-12.326-2.438-1.907-5.362-2.123-7.824-.174l-75.073 59.403m-118.446 93.915c2.53-1.416 4.957-1.432 7.046-.622 6.047 2.343 7.452 9.638 7.615 15.383.15 5.27-1.02 11.25-5.55 14.76l-75.505 62.03c-7.543 6.198-8.354 7.93-8.354 17.9v85.733c0 4.932-6.746 8.93-15.068 8.93-8.32 0-15.067-3.998-15.067-8.93v-84.672c0-18.594 2.365-29.391 17.834-41.643l69.67-55.102zm334.069-154.307l-74.52-62.329c-2.859-2.391-3.998-5.846-3.843-9.365.251-5.748 3.164-10.407 8.86-12.126 3.085-.931 6.498-.706 9.1 1.354l60.403 47.592m132.67 207.292l40.55 33.313c6.547 5.378 7.251 6.883 7.251 15.534v24.395c0 4.28 5.854 7.75 13.076 7.75 7.223 0 13.077-3.47 13.077-7.75v-23.473c0-16.138-2.053-25.508-15.477-36.143l-58.508-46.346\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2278.69 1235.19c5.833 2.395 9.643 6.345 9.643 10.81 0 7.304-10.185 13.225-22.747 13.225-12.563 0-22.747-5.921-22.747-13.224 0-4.352 3.617-8.214 9.2-10.623m-130.6-32.803c10.814-4.996 14.655-23.25 8.579-40.77-6.077-17.523-19.77-27.677-30.584-22.68-10.813 4.994-14.654 23.248-8.578 40.77 6.076 17.521 19.769 27.675 30.583 22.68z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2115.693 1186.49c5.168-2.387 7.003-11.109 4.1-19.48-2.904-8.374-9.447-13.226-14.615-10.839-5.167 2.386-7.002 11.11-4.098 19.481 2.903 8.373 9.446 13.225 14.613 10.838zm-6.308 16.06v36.42m0-260.35v159.303\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1831.717 1227.068l11.67-6.36v39.557l-11.67 6.36zm-22.39 12.2l11.673-6.36v39.557l-11.672 6.36zm-10.716 45.397v-39.557l-11.672 6.36v39.557z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1224.474 206.727c39.66.055 71.702-9.502 71.566-21.345-.135-11.843-32.397-21.488-72.057-21.544-39.661-.053-71.702 9.502-71.567 21.346.136 11.844 32.397 21.488 72.058 21.543zm.129 12.93c60.595.091 109.55-16.203 109.343-36.398-.206-20.193-49.497-36.64-110.092-36.732-60.595-.093-109.55 16.203-109.343 36.397.206 20.193 49.497 36.64 110.092 36.733zM3026.589 99.53c-48.787-1.152-87.886-14.545-87.328-29.914.557-15.368 40.56-26.893 89.348-25.74 48.787 1.152 87.884 14.545 87.327 29.913-.557 15.368-40.56 26.893-89.347 25.741zm-.587 17.77c-77.13-2.004-138.941-25.287-138.06-52 .88-26.717 64.124-46.75 141.253-44.749 77.13 2.003 138.942 25.286 138.06 52.001-.882 26.715-64.123 46.75-141.253 44.747z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1935.522 996.099v-175.83m0 290.632v-85.303m338.327-139.469v-19.856c0-8.56-12.945-9.03-12.945-.466V884.7m-607.864-1.458V865.31c0-8.556 12.944-9.028 12.944-.466v17.931m684.062 10.928V870.96c0-8.559-12.944-9.028-12.944-.466v21.78m-760.26-1.939v-20.337c0-8.557 12.945-9.029 12.945-.467v20.819\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.671 623.81c.26 147.369.518 323.689.778 471.058 71.836-35.268 145.76-67.417 219.858-94.963V588.849a5556.838 5556.838 0 01-97.848-1.301\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-6.324 414.097c64.882 14.92 130.785 25.846 197.88 39.018v163.187c-63.128 2.879-130.713 8.143-194.435 13.535\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2038.877 123.298l-.075-38.363m-14.5 16.453l30.563 6.6m-25.856-19.094l20.834 31.056m.801-27.111l-21.492 23.25m-630.36 329.283l34.807-12.253c11.429-4.022 17.61-13.156 17.593-27.02M1336.42 284.042c0-15.96-9.083-24.029-19.56-19.746l-33.02 13.5c-11.233 4.592-13.193 15.99-13.535 27.123v116.203c0 17.771 9.623 23.731 24.142 24.57l35.862 2.074\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1362.985 421.868l67.166 3.883c13.555.783 21.11-8.527 21.11-21.806V290.196c0-10.817-4.164-21.005-17.292-22.539l-70.893-8.279c-14.613-1.706-26.657 10.594-26.657 24.664v111.806c0 15.858 11.334 25.14 26.566 26.02z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1318.854 263.48c11.418-5.326 29.622-6.563 44.222-4.103\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1285.798 436.544l38.355-16.906c7.555-3.33 12.294-12.975 12.294-20.028m-17.455-53.659l17.428-6.006 72.2 7.02v77.562m-123.713-146.883v80.05l11.59-3.994\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1408.62 389.834l42.64 3.127m-42.64-13.526l42.64 3.127m-42.64-13.526l42.64 3.127m-146.632.15c5.92.814 12.055-8.22 13.7-20.18 1.645-11.959-1.822-22.314-7.743-23.129-5.922-.814-12.056 8.22-13.701 20.18-1.645 11.96 1.823 22.315 7.744 23.13z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1310.5 366.072c1.416.194 2.848-.454 4.155-1.732 1.718-3.358 3.035-7.56 3.674-12.206.577-4.199.524-8.199-.044-11.658-.942-1.879-2.248-3.09-3.81-3.305-3.951-.543-8.044 5.486-9.142 13.466-1.099 7.981 1.215 14.891 5.167 15.435z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1404.135 264.733l.296 28.598-10.16-1.187-.298-28.598zm-18.768-2.192l.296 28.598-10.16-1.186-.297-28.56.305-.003zm37.536 4.383l.296 28.6-10.162-1.187-.296-28.599z\",\n fill: \"#1a1a18\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1314.601 423.849c6.853-3.021 15.332-4.142 23.488-3.518\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1398.791 441.28c.034-4.318-15.269-7.916-34.18-8.038-18.911-.122-34.268 3.28-34.302 7.597m68.483 40.62c.034-4.317-15.27-7.916-34.18-8.038-18.912-.121-34.27 3.28-34.303 7.598m34.179 20.437c18.911.1 34.27-2.715 34.303-6.288.033-3.573-15.269-6.55-34.18-6.65-18.91-.102-34.269 2.712-34.303 6.286-.033 3.573 15.27 6.55 34.18 6.652zm-34.18-6.652v-53.965m68.484 54.329v-53.889m-57.421 34.066V435.46m-34.818-63.145l.347 54.93\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1451.26 341.259l24.715-6.196v-60.198l-24.937 8.278m24.938 51.92l72.156 7.867v-58.302l-72.156-9.762\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1451.26 300.512l24.715-8.083 72.156 9.312\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1548.131 342.93l-63.047 14.294-33.248-2.394\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1511.253 310.991l5.625.847c1.904.286 3.501-1.579 3.501-3.5v-16.133c0-1.92-1.244-3.162-3.142-3.446l-5.625-.845c-1.899-.285-3.86 1.52-3.86 3.446v16.13c0 1.926 1.597 3.214 3.501 3.501z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3631.655 627.691l50.557 2.272m-50.557-46.091l50.557-.854m-50.557-122.092l50.557-6.642m-40.474 162.867l28.437 1.713v-24.37l-28.437.066zm13.257-33.674V457.938m-23.597 102.825l50.813-2.652m-50.122-21.957l50.813-3.615m-51.871-20.296l50.814-5.059m-49.967-20.461l50.814-5.54m-879.227 29.807h25.14v-64.713c0-23.378-25.14-19.097-25.14 1.061zm-237.111.175h21.217v-55.338c0-20.539-21.217-16.31-21.217 1.061z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2808.527 525.51c3.88 0 7.045 4.869 7.045 10.838 0 5.969-3.165 10.837-7.045 10.837-3.879 0-7.043-4.868-7.043-10.837 0-5.97 3.164-10.837 7.043-10.837m-237.236-2.092c3.273 0 5.944 4.107 5.944 9.145 0 5.036-2.671 9.144-5.944 9.144-3.274 0-5.944-4.108-5.944-9.144 0-5.038 2.67-9.145 5.944-9.145\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2803.464 493.91l25.142-.21m-262.252 3.051l21.217-.177m232.618-2.804v-64.005m-239.216 66.895v-53.937\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1159.957 606.72l33.714 2.643m936.044-148.566c59.127-9.238 96.88-23.3 96.88-39.051 0-27.824-117.817-50.38-263.151-50.38s-263.151 22.556-263.151 50.38c0 15.763 37.813 29.835 97.019 39.073\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2225.643 417.429l-13.91-29.694a29.748 29.748 0 00-3.61-5.864c-17.92-22.588-120.643-39.908-244.678-39.908-124.036 0-226.76 17.32-244.68 39.908a29.267 29.267 0 00-3.61 5.864l-14.331 30.785M317.86 658.062l53.48-2.971V548.05l-53.48-2.887zm757.06 732.392c-15.798-65.04.273-124.18 40.308-176.379l-304.06-10.18c-70.4 43.703-140.6 116.987-181.92 186.56\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2834.648 914.425l9.802 2.139c6.542 1.426 10.24-4.314 10.24-11.006V882.24c0-6.691-5.748-11.566-12.355-12.621l-54.812-8.76c-6.607-1.055-9.82 4.215-9.83 10.912v.96m-1568.328-38.348l-9.803 2.139c-6.54 1.426-10.24-4.314-10.24-11.005V802.2c0-6.691 5.75-11.566 12.355-12.622l54.812-8.76c6.607-1.055 9.821 4.215 9.83 10.912l.001.96m1332.08 246.158l-7.726 2.895c-6.267 2.348-6.014 6.29.216 8.743l54.062 21.278c6.23 2.45 10.773 1.952 16.98-.548l22.832-9.201c6.206-2.501 3.395-6.995-2.892-9.272l-6.107-2.213m-1308.949-88.717l7.726 2.894c6.264 2.347 6.3 7.216-.216 8.743l-54.062 12.672c-6.515 1.527-10.865 2.159-16.98-.547l-22.831-10.108c-6.116-2.707-3.395-6.995 2.89-9.272l6.108-2.213\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2598.694 1045.066c.027 1.19 1.465 2.865 3.606 3.708l40.733 16.031c4.693 1.848 8.117 1.472 12.793-.412l17.202-6.932c1.888-.76 2.668-1.766 2.616-2.807m-1309.121-88.863c-.028 1.189-1.361 3.226-3.607 3.708l-40.732 8.761c-4.928 1.059-8.121 1.469-12.793-.413l-17.203-6.933c-1.884-.76-2.667-1.766-2.616-2.807m1193.716 36.523l-10.525 3.426c-6.362 2.07-1.534 5.896 5.053 7.723l46.156 12.8c8.376 2.324 13.656 2.64 22.026-.387l19.894-7.196c6.292-2.275 2.948-6.196-3.512-7.912l-8.332-2.214\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2483.422 1007.268c.1 3.536.69 5.059 5.655 6.436l32.187 8.926c5.842 1.62 10.455 1.942 16.359.029l14.873-4.818c1.28-.414 1.45-1.935 1.45-2.678m287.639-103.426c2.883-1.16 4.458-4.658 4.458-8.563v-17.906c0-5.346-4.592-9.24-9.871-10.084l-43.795-6.999c-1.48-.236-3.453.014-4.512.53m-1585.437-37.02c-2.884-1.16-4.458-4.658-4.458-8.562v-17.906c0-5.347 4.591-9.24 9.87-10.085l43.796-6.999c1.48-.236 3.453.014 4.511.53m1457.795 101.308l10.697 1.822c5.716.974 8.868-3.737 8.868-9.53V862.33c0-5.793-4.956-10.177-10.699-10.93l-47.466-6.228c-5.743-.753-8.504 2.866-8.51 8.664l-.003 1.22\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2720.565 887.413c2.933-.994 4.82-4.304 4.82-7.568v-14.919c0-4.54-3.883-7.975-8.384-8.566l-37.196-4.879c-.69-.09-1.77-.107-3.875.482m-77.236 193.581v-67.77c0-25.47 9.001-39.625 32.774-48.787l157.03-60.516m-1421.975 97.32v-98.333c0-25.472-9.001-39.626-32.775-48.788l-78.233-30.24\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2483.422 1008.413V953.9c0-25.47 9.002-39.626 32.775-48.788l160.565-53.426m-122.816 163.994v-48.527c0-14.855 4.183-20.326 17.842-25.59l149.544-54.428m-45.7 167.853V998.65c0-16.55 5.633-25.335 21.075-31.287l145.399-55.867M1289.584 968.44v-80.108c0-16.55-5.632-25.335-21.075-31.287l-66.602-25.592\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2791.056 901.058l41.216-15.537m-185.368 122.047V997.38c0-25.261 6.278-44.345 32.278-54.147l87.744-33.078m-120.022 144.754v-28.365M1252.957 821.017l-41.216-15.538m106.572 91.77v-10.186c0-25.262-6.279-44.346-32.279-54.148l-20.863-7.38m53.141 142.826v-52.134m1260.498-3.44l-23.296 8.064c-21.094 7.953-26.187 24.342-26.187 44.836v46.676m180.52-144.937l-91.986 31.842\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1229.083 785.198v-35.562m0 92.259v81.573\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1055.3 953.555l-90.522 24.729-20.886-44.807 93.855-19.47zm2150.636 167.742l105.274 65.584 36.997-62.053-116.297-62.053z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M964.778 978.283l-20.886-44.807-.006 44.808z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M964.778 978.283l-20.886-44.807-.006 44.808z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3311.21 1186.88l36.997-62.052.007 55.366z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3311.21 1186.88l36.997-62.052.007 55.366zM1079.652 693.72l-15.465 2.418v-57.512l23.197-1.45v43.013zm2432.732 118.44l-21.748-2.676v-95.466l36.246 2.9v75.168z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 329.028l163.306 41.485c24.516 4.922 35.733 4.914 60.463 1.226l150.2-22.399c32.315-4.818 38.989-21.537 38.989-50.047V0\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M-3.813 285.933l106.475-21.944c38.345-7.904 39.203-24.698 39.3-63.29L142.475 0M3321.67 901.677l-21.621 3.206\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M121.173 266.913c16.655-3.537 33.923-3.527 51.793 2.191l192.508 61.604M141.818 214.21c.742 16.278 6.636 31.325 20.432 41.346\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.628 269.766v-42.5l-7.25 1.495-7.25 10.633v33.36zm-25.131 5.18v-42.5l-7.25 1.495-7.25 10.633v33.36zm-25.131 5.179v-42.5l-7.25 1.495-7.25 10.632v33.362z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.583 269.263a41255.016 41255.016 0 0034.839 10.889c-2.504.46-4.987.92-7.461 1.382-4.957-.306-9.895-.604-14.813-.892-4.494-1.395-8.999-2.783-13.492-4.174l-13.472-4.173c4.79-1.016 9.58-2.025 14.399-3.032m-24.895 5.285a4416.01 4416.01 0 00-14.271 3.1c4.376 1.332 8.761 2.665 13.138 3.994 4.385 1.332 8.781 2.663 13.156 3.994 4.849.249 9.698.5 14.577.763 2.454-.475 4.918-.944 7.381-1.412-5.667-1.744-11.343-3.484-17-5.22-5.667-1.74-11.324-3.48-16.981-5.22M24 279.948c5.528 1.662 11.047 3.329 16.566 4.992l16.578 4.993c-2.444.477-4.889.962-7.332 1.445-4.781-.22-9.571-.432-14.321-.634l-12.812-3.818c-4.276-1.274-8.545-2.543-12.812-3.813 4.691-1.061 9.412-2.116 14.133-3.164\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 198.299l142.044-29.96 270.913 97.62\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1353.86 1356.086l81.97-40.795c-42.398-28.421-74.812-61.608-56.015-102.362l-77.077-1.137m1113.969-126.328l-40.554 20.736c26.898 8.052 50.97 18.119 72.844 29.753 26.742 14.224 51.408 28.615 71.519 48.88l70.132-12.461\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2092.092 392.39c57.306 6.04 101.407 15.29 105.829 26.63 2.007 5.15-.518 12.013-20.823 17.597zm-257.296 0c-57.306 6.04-101.407 15.29-105.83 26.63-2.006 5.15.519 12.013 20.824 17.597z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1834.796 392.39c-57.306 6.04-101.407 15.29-105.83 26.63-2.006 5.15.519 12.013 20.824 17.597z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1728.967 419.02l41.986 6.586m-18.487-19.366l42.023 7.121m-58.867 17.774l61.842-34.05\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2092.092 392.39c57.306 6.04 101.407 15.29 105.829 26.63 2.007 5.15-.518 12.013-20.823 17.597z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2197.92 419.02l-41.985 6.586m18.487-19.366l-42.022 7.121m58.866 17.774l-61.842-34.05\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1889.593 488.349l-3.56 16.123 3.983 12.989h146.856l3.982-12.99-3.593-16.271m-96.762-42.762h46.5m53.855 59.034h-153.72\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2008.604 408.256l46.688-11.673 95.897 44.38-63.974 60.966-101.53-26.611-11.46-8.914zm-22.919 67.061l69.607-78.734\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2140.57 451.082l-98.322-39.745m57.068 68.278c-4.99 2.47-10.512 2.043-12.33-.95-1.819-2.994.752-7.422 5.743-9.89 4.991-2.47 10.512-2.044 12.33.95 1.82 2.994-.752 7.421-5.743 9.89z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2071.186 490.136l-67.217-18.96 9.594-10.85 66.536 21.109zm.329-20.274l-51.082-17.309 28.127-31.307 50.938 20.167zm-34.831-21.961l31.128 10.785m-25.596-17.042l31.093 10.823m24.627 6.423l17.322 6.014m-3.738-8.452l8.983 3.12m-72.809-24.124l16.694 5.797\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1918.284 408.255l-46.688-11.672-95.897 44.38 63.974 60.965 101.53-26.611 11.46-8.914zm22.919 67.061l-69.607-78.733\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1786.317 451.081l98.322-39.744m-49.675 66.953c9.894 4.894 20.837 4.051 24.443-1.884 3.606-5.934-1.492-14.712-11.386-19.605-9.894-4.894-20.837-4.05-24.443 1.884-3.606 5.934 1.492 14.711 11.386 19.605zm19.964-24.754c3.424 1.693 7.212 1.402 8.46-.652 1.248-2.054-.517-5.092-3.94-6.785-3.425-1.694-7.213-1.402-8.46.652-1.249 2.054.516 5.092 3.94 6.785z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1881.612 425.79l-23.343 8.547 19.312 19.523 22.21-7.507z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1871.426 448.608l23.438-7.988\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1866.652 475.613l14.75 2.865 37.04-11.029m-32.682 3.098l28.07-8.314m-80.36 32.5l30.798-8.55m-55.964-36.367l12.954-5.182m-8.438 10.29l12.954-5.182m55.754 15.434l27.645-8.211\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1918.56 434.483l3.842 6.497 16.81 3.055-3.84-6.497zm-6.34-10.723l3.842 6.497 16.812 3.055-3.843-6.497zm10.472-7.668l-16.811-3.054 3.84 6.497 14.389 2.614.503-2.808z\",\n fill: \"#1a1a18\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M925.025 824.33c36.75 2.688 77.338-16.335 92.666-43.537V645.5l-35.026-45.127\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1032.737 645.644l-35.678-45.968-70.17 3.34-36.832 50.326V807.5c37.451 35.564 118.678 18.547 142.68-24.046zm2398.709 314.004c-41.284 8.142-92.238-14.538-109.776-57.971V704.65l38.134-65.72\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3300.049 704.188l38.845-66.94 76.398 4.864 40.1 73.287v224.504c-40.775 51.79-129.211 27.01-155.343-35.02z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1048 310.885l-30.064 10.015v-29.963zM946.763 296.24l34.313 18.86v-29.963zm2296.294-73.05l31.606 12.262v-46.466zm129.022-43.688l-42.38 40.095v-46.51z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M89.347 351.726l108.73-16.365 100.792 25.179\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M760.116 1240.662l333.209 7.068m-389.809 45.788l372.718-4.927m-425.675 69.196l418.38-13.872\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1894.334 519.745a1.289 1.289 0 100 2.578h138.22a1.29 1.29 0 000-2.578z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M76.781 182.105V0\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1222.591 580.192l33.267-1.897m-33.029-80.989l33.11.907\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M390.925 332.17c12.135-1.797 21.377-12.302 21.857-25.464\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.38 260.396l70.543 25.005c6.033 2.138 10.635-1.532 10.635-7.547v-13.112l-93.433-34.194v12.776c0 7.797 4.915 14.47 12.255 17.071z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M912.143 291.882a4.033 4.033 0 01-3.03.65 3427.407 3427.407 0 01-44.345-8.501 3102.726 3102.726 0 01-42.668-8.775 2874.557 2874.557 0 01-26.822-5.85 2620.989 2620.989 0 01-24.86-5.675v-8.322a2856.528 2856.528 0 0053.364 11.911 3158.47 3158.47 0 0042.883 8.83 3362.465 3362.465 0 0043.908 8.417 4.036 4.036 0 012.602 1.682 4.04 4.04 0 01.651 3.03 4.037 4.037 0 01-1.683 2.603M3587.548 75.598a1682.33 1682.33 0 01-78.373 39.142c-31.466 14.712-63.958 28.743-98.094 42.406a5.788 5.788 0 104.308 10.745c34.164-13.675 66.85-27.795 98.681-42.678a1696.1 1696.1 0 0073.478-36.526zm-370.26 161.637a5.78 5.78 0 00-3.355-11.063 2490.817 2490.817 0 01-20.28 6.077 2883.498 2883.498 0 01-20.419 5.936 2876.778 2876.778 0 01-31.217 8.798c-9.27 2.549-19.124 5.2-29.558 7.952v11.926a6.07 6.07 0 00.728-.142c10.11-2.66 20.735-5.523 31.867-8.583a2849.402 2849.402 0 0031.354-8.798 2609.362 2609.362 0 0040.879-12.103M1167.271 323.11c8.276.973 16.518 1.917 24.704 2.834v8.162a4874.838 4874.838 0 01-26.1-2.987 4224.71 4224.71 0 01-26.642-3.205 3901.433 3901.433 0 01-28.46-3.62 3699.952 3699.952 0 01-29.074-3.934 4.04 4.04 0 01-2.673-1.57 4.043 4.043 0 01.782-5.675 4.049 4.049 0 013.002-.786 3435.578 3435.578 0 0027.812 3.755 4106.075 4106.075 0 0029.595 3.769 4493.126 4493.126 0 0027.054 3.257\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2825.52 1234.61c-34.43-51.826-77.527-91.792-131.635-125.64l148.777-42.757c107.347 42.013 207.518 88.765 280.805 143.066-102.692 8.936-195.257 16.394-297.948 25.331zm-25.262-35.024l239.414-43.46m-270.324 11.087l199.75-47.087m-234.796 16.899l167.628-47.332\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1663.47 1336.711c22.653 11.155 6.35 28.838-15.61 28.894-25.188 1.288-37.09-20.636-14.861-28.48M3406.81 277.226c-113.647-21.908-184.22 57.63-221.23 147.42-30.414 73.778-45.5 165.589-39.202 264.135 6.69 104.64 36.36 199.108 80.076 270.766 29.605 48.529 74.71 90.202 127.771 108.98\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M937.469 349.065c11.467-1.493 22.953-2.005 32.935-1.58 121.546 5.172 209.9 133.177 197.348 285.904-10.872 132.26-93.855 239.69-194.836 262.746\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2911.508 312.273v218.828m-1133.406-73.102c-75.332-2.439-148.548-6.391-217.024-11.849-25.48-2.031-46.476 20.913-46.476 46.476v43.134l50.296 26.102v83.083l-50.296 26.103v43.134c0 25.562 21.012 48.706 46.476 46.475 107.496-9.412 223.813-14.806 341.426-16.19m475.61-297.353c-4.913-1.411-9.716-1.17-12.303-.964-54.001 4.305-110.95 7.673-169.56 10.101a5278.466 5278.466 0 01-49.25 1.807M1995.85 744.209c127.296.795 253.783 6.276 369.962 16.448 25.464 2.231 46.476-20.913 46.476-46.475v-43.134l-50.296-26.103v-83.083l50.296-26.102v-43.134c0-4.996-1.9-14.056-3.943-18.778m504.765 83.017c-7.339.21-12.763 7.006-12.763 15.488l-.008 227.16c0 9.634 7.522 20.895 16.143 22.072M2625.24 564.79c-6.057 1.192-11.372 5.342-11.372 11.908v193.936c0 7.458 6.06 16.843 13.372 17.628M487.426 531.953c9.303 1.446 15.92 12.475 15.92 25.263l.008 344.851c.001 8.94-3.767 19.977-9.678 26.638m2.492-434.436V158.554m1519.847 132.131c6.156-2.04 9.724-4.465 9.724-7.064 0-7.27-27.89-13.164-62.294-13.164-34.405 0-62.295 5.893-62.295 13.164 0 2.571 3.49 4.97 9.523 6.998\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2218.305 401.992c-18.656-23.517-125.6-41.548-254.73-41.548-129.132 0-236.075 18.031-254.731 41.548\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1906.315 1154.376c-17.495 2.115-34.094 5.081-49.51 8.779m214.718-2.564c-14.396-3.006-29.698-5.395-45.694-7.077m-222.293 149.058c40.896 18.605 100.272 30.31 166.349 30.31 62.974 0 119.863-10.632 160.468-27.735m-208.555-65.672c0 4.942 4.539 9.45 12.008 12.872 8.69 3.98 21.35 6.487 35.447 6.487 13.495 0 25.675-2.297 34.316-5.986 8.14-3.476 13.14-8.186 13.14-13.373 0-9.018-15.113-16.595-35.57-18.748a114.026 114.026 0 00-11.886-.611c-4.691 0-9.225.277-13.505.795a92.97 92.97 0 00-10.518 1.865c-14.022 3.364-23.432 9.583-23.432 16.699z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1959.365 1220.69c-1.386.112-2.747.249-4.084.41a88.603 88.603 0 00-9.972 1.768c-4.353 1.045-8.239 2.38-11.495 3.94 2.753 1.009 6.392 1.623 10.383 1.623 4.421 0 8.411-.753 11.242-1.962 2.667-1.138 4.305-2.681 4.305-4.381 0-.48-.132-.947-.379-1.397m14.34 38.059c11.71-.444 22.185-2.624 29.864-5.903l.362-.156c-2.245-.97-5.14-1.686-8.406-2.029a42.119 42.119 0 00-4.414-.227c-1.742 0-3.426.103-5.015.294-1.38.167-2.69.401-3.906.693-5.206 1.249-8.7 3.559-8.7 6.202 0 .382.073.759.215 1.126\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1945.796 1222.775l45.633 33.045\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1793.002 1039.077c3.958 2.413 9.371.235 12.088-4.863 2.718-5.098 1.712-11.186-2.247-13.598-3.958-2.413-9.371-.235-12.088 4.862-2.717 5.1-1.712 11.187 2.247 13.6zm0-28.408c3.958 2.412 9.371.234 12.088-4.863 2.718-5.098 1.712-11.187-2.247-13.6-3.958-2.411-9.371-.233-12.088 4.864-2.717 5.099-1.712 11.187 2.247 13.599zm0-28.409c3.958 2.413 9.371.235 12.088-4.862 2.718-5.1 1.712-11.187-2.247-13.6-3.958-2.411-9.371-.234-12.088 4.864-2.717 5.098-1.712 11.187 2.247 13.599zm-460.652-35.979c5.967 5.497 15.716 3.443 21.775-4.586 6.059-8.03 6.134-18.995.167-24.492-5.966-5.497-15.715-3.444-21.774 4.586-6.06 8.03-6.134 18.995-.167 24.492z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1327.959 935.977l30.349-6.97m-27.81-3.357l25.506-5.858m.079 18.62l-25.268 5.803\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1222.557 558.956l33.397-.75m-16.404.369l.129-60.822M2825.52 1234.61c31.838 49.497 38.921 102.972 26.448 155.844m271.499-181.174c59.242 43.827 140.584 110.25 174.174 181.174m-2182.413-176.379c49.53-60.915 102.747-99.511 155.283-127.453\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2109.385 1042.442v9.814l-18.997-14.143v-9.815zm0 20.131l-18.997-14.145v9.815l18.997 14.143zm0 20.13v9.814l-18.997-14.143v-9.815zm0 20.13l-18.997-14.144v9.815l18.997 14.143zm0-80.522l-18.997-14.142v9.814l18.997 14.143z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2527.195 290.462l-36.193-19.21c-39.368-20.893-98.164-24.61-142.356-17.214-17.414 2.915-29.009 10.529-29.009 21.808m222.676 207.614V374.239m235.058 107.371V261.698l-57.795-21.732c-47.624-17.907-109.975-22.539-159.572-14.289-19.545 3.25-32.559 11.746-32.559 24.328\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2483.97 290.558c-39.041-17.495-93.984-20.582-135.323-13.663-17.414 2.913-29.01 10.528-29.01 21.807m392.251-32.318c-43.818-19.516-105.486-22.927-151.884-15.21-19.545 3.25-32.558 11.746-32.558 24.328\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2530.112 510.98a27.756 27.756 0 002.337-1.859c25.275-22.432.316-83.49-55.746-136.375-56.062-52.885-121.998-77.573-147.274-55.14-25.275 22.432-.317 83.49 55.746 136.375 27.543 25.982 57.47 45.157 83.786 55.281\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2759.04 514.998c3.707-1.97 7.257-4.439 9.793-7.274 24.02-26.828-4.177-92.498-65.1-149.621-62.923-58.996-136.929-86.537-165.298-61.513-28.369 25.025-.356 93.139 62.568 152.136 29.856 27.994 62.21 48.903 90.995 60.475\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2514.9 493.599c9.288.09 17.038-2.166 22.528-7.04a22.92 22.92 0 004.5-5.442m-180.224-111.485c8.207 21.516 25.821 46.729 50.562 70.068 24.573 23.18 51.38 39.987 74.525 48.212m262.473 4.709c10.99 1.02 20.402-.519 27.433-4.909m-192.838-130.957c9.54 23.526 28.959 50.766 55.91 76.038 22.058 20.681 45.719 36.813 67.599 47.14m-243.778-118.9c-25.586-21.63-52.364-37.34-75.834-45.452-31.137 1.151-54.241 9.207-54.955 20.427-.876 13.76 32.25 27.07 73.992 29.727 22.352 1.423 42.637-.498 56.798-4.702zm225.426-15.996c-28.72-24.132-58.774-41.656-85.116-50.705-34.947 1.284-60.88 10.27-61.682 22.788-.982 15.351 36.199 30.197 83.048 33.162 25.087 1.587 47.855-.556 63.75-5.245z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2319.638 275.331v70.212m207.807-96.113v78.326\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2320.286 351.063c14.408 12.087 45.101 21.857 81.06 24.398 28.065 1.984 53.454-.853 70.698-6.93m56.129-34.616c16.172 13.483 50.62 24.383 90.979 27.218 31.5 2.213 59.996-.953 79.35-7.733m-360.516-7.436c-10.865-7.807-14.518-20.771-8.557-28.358m218.611 10.62c-12.196-8.71-16.295-23.171-9.605-31.636m-54.465-28.712v56.89l47.619 24.526m180.299-112.021v67.31l65.483 33.52\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2753.764 554.15l-9.903-45.822c-1.95-9.023-6.451-16.883-12.27-22.177-5.788-5.267-12.852-7.983-19.782-6.97-6.931 1.014-12.481 5.503-15.88 11.871-3.38 6.332-4.675 14.56-2.823 23.182l9.039 42.106c3.19 14.857 55.297 14.828 51.619-2.19z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2698.863 542.225c3.078 14.88 55.178 14.854 51.618-2.191\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2727.73 567.196c14.97 2.09 41.82-3.972 38.314-19.608l-8.732-38.962c-4.057-18.472-21.91-30.842-40.924-29.585\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2537.218 541.355v-37.791m228.471 40.535v-33.42\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2624.06 545.547v-76.96\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2585.096 416.628c-12.14-14.148-22.083-29.336-31.541-45.188a263.808 263.808 0 0017.193 3.093c7.6 1.107 11.902 4.988 15.926 11.36 4.789 7.585 10.49 15.92 16.093 23.083 1.12 1.43 1.83 2.77 2.202 4.008 1.869 6.218-4.73 10.059-10.234 9.306-3.344-.458-6.808-2.362-9.64-5.662z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2592.929 416.228c2.124 1.196 4.729.599 5.817-1.334 1.088-1.934.249-4.47-1.875-5.666-2.124-1.196-4.728-.6-5.817 1.334-1.09 1.934-.25 4.47 1.875 5.666z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2562.143 385.36c11.325 1.72 13.22 1.143 17.842 7.626 2.95 4.138 7.296 10.555 12.266 16.296m-226.538 12.459c-9.61-11.538-17.438-23.887-24.87-36.765a212.87 212.87 0 0013.81 2.694c6.11.98 9.528 4.157 12.694 9.337 3.767 6.165 8.262 12.946 12.688 18.78.885 1.165 1.442 2.253 1.727 3.254 1.43 5.03-3.93 8.045-8.353 7.373-2.687-.407-5.455-1.982-7.696-4.673z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2372.026 421.512c1.696.988 3.801.537 4.7-1.007.901-1.544.254-3.597-1.442-4.585s-3.8-.538-4.7 1.006c-.9 1.544-.254 3.597 1.442 4.586z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2347.597 396.288c9.1 1.518 10.633 1.076 14.279 6.353 2.327 3.366 5.75 8.586 9.687 13.268\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2710.88 485.655c-2.292.605-4.594 1.795-6.824 3.651m37.818 54.285l-7.714-38.23c-1.918-9.503-7.72-16.928-14.682-19.35\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2527.76 559.042l-9.585-44.779c-1.737-8.116-6.171-15.135-11.737-19.88-5.537-4.721-12.295-7.156-18.924-6.248-6.63.909-11.94 4.933-15.191 10.641-3.233 5.676-4.34 13.025-2.701 20.781l8.76 41.45c2.824 13.364 52.654 13.342 49.378-1.965z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2475.438 547.252c2.942 13.339 52.781 13.315 49.377-1.964\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2503.102 570.781c14.41.697 39.972-4 36.738-18.042l-8.798-38.209c-3.88-16.559-20.96-27.647-39.146-26.52\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2486.82 494.958c-2.184.496-4.376 1.471-6.5 2.992m36.014 44.493l-7.347-31.334c-1.825-7.788-7.35-13.874-13.98-15.859\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2711.833 248.148l65.317 25.166m-293.18 4.727l43.293 22.45\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M231.828 1390.454c29.007-28.45 58.381-54.014 90.314-79.79 9.052-7.306 16.545-21.243 16.545-31.09v-110.489c0-9.847-7.47-14.128-16.545-9.476-24.686 12.658-49.46 25.485-73.982 39.545-24.79 14.214-49.35 29.73-73.965 45.768-9.128 5.948-16.527 22.234-16.527 36.014v109.518\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M315.612 1181.807c.981-.56 1.962-1.12 2.943-1.677 4.402-2.5 8.374-1.4 8.374 3.857v94.634c0 8.127-3.418 15.455-9.863 20.657l-1.454 1.172zm-26.293 15.412c4.194-2.52 8.393-5.014 12.593-7.478v121.7c-4.195 3.355-8.394 6.705-12.593 10.059zm-26.294 16.174c4.19-2.637 8.388-5.251 12.593-7.84v126.916c-4.207 3.38-8.406 6.77-12.593 10.175zm-26.294 16.918c4.185-2.751 8.384-5.483 12.594-8.195v131.778a1290.302 1290.302 0 00-12.594 10.586zm-26.294 17.655c4.18-2.865 8.38-5.715 12.594-8.548v136.936a845.77 845.77 0 00-12.594 11.34zm-13.7 142.488h-15.824V1284c0-8.227 3.508-17.857 10.38-22.71 1.81-1.28 3.625-2.556 5.444-3.83z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.138 1197.646c22.642-13.562 41.405-24.066 54.03-30.046v166.762M51.52 1392.836c29.493-22.861 66.727-49.74 105.978-76.92m3235.155-222.212v139.243m-184.286-227.709v108.232\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1957.516 849.271l-.022 106.518-21.972-15.608m-711.766-100.332c-3-1.05-5.473-3.56-5.473-7.628v-17.196c0-7.041 3.471-9.488 9.71-10.59l47.181-8.332\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2810.636 884.144l-42.96-7.587m51.419 43.747c3-1.05 5.473-3.56 5.473-7.63V895.48m-119.214-13.943v-7.22c0-5.778-2.848-7.786-7.968-8.69l-40.844-7.213m44.322 36.276c2.461-.86 4.49-2.922 4.49-6.259v-1.924\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M665.635 213.798l32.519 124.533c4.027 16.853 10.258 26.538 27.884 29.394l27.614 4.473\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1205.458 427.82l25.6 2.183c10.961.934 15.27-1.33 18.5-11.62l20.746-66.098M3704.564 8.083l-23.7 177.117c-3.218 24.056-6.956 39.737-32.25 47.966l-43.134 14.035m-570.757 3.585l24.33 105.021c2.605 11.241 4.73 15.49 17.076 13.436l21.306-3.545\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M142.326 57.88c89.873 41.416 180.01 79.072 270.632 118.487\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1539.917 628.419l24.98 16.526m-50.295 26.103l-23.403-14.156m48.028-79.564l25.67-15.466m-50.295-26.102l-23.403 14.157m895.833 79.887l-25.042 15.142m75.386 10.632l-25.09 15.47m-50.296-109.186l27.53 16.652m22.766-42.754l26.41 17.235\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2897.991 557.303c-7.339.21-12.763 7.384-12.763 15.867l-.008 223.97c0 9.636 7.522 20.897 16.144 22.073M2613.53 565.094c-6.057 1.192-11.37 5.34-11.37 11.908v192.326c0 7.458 6.057 16.845 13.371 17.628\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1964.081 180.417v-13.703h-1.01c-5.346 0-10.625.065-15.818.19v13.707a653.046 653.046 0 0115.951-.194zm-27.864.562v-13.721c-5.739.24-11.356.555-16.827.942v13.725a585.085 585.085 0 0116.827-.946z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1601.983 309.435c1.11 8.793 1.762 17.833-.384 28.39l6.535 37.284c2.434 10.89 5.844 41.602 8.279 52.493 5.253-15.118 9.53-50.06 14.783-65.178 1.758-9.155 7.529-22.277 7.51-27.081-.036-9.695-1.015-12.956-.3-27.416-.011-.024-.021-.051-.033-.075 9.614-5.577 26.709-3.222 34.235 4.42 0 8.836-1.995 20.369-2.797 27.05-.828 6.883-1.067 25.276-.976 32.689.228 18.623 1.78 35.399-.031 55.834.124 16.637.009 22.07-2.071 30.132-36.011-6.803-64.933-7.012-96.451-.806.226-7.886-2.031-18.212-2.753-26.65-1.74-20.301-1.074-36.363 1.227-52.48 1.517-10.624 4.087-27.787 1.646-37.552-2.843-7.924-2.85-26.217-1.088-30.664a1.518 1.518 0 01-.187-.182c5.432-6.22 27.97-6.5 32.856-.208\",\n fill: \"#751026\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1570.172 452.483c-.46-7.022-2.058-15.114-2.644-21.963-1.738-20.3-1.074-36.363 1.227-52.479 1.518-10.624 4.088-27.787 1.647-37.553-2.843-7.924-2.85-26.217-1.089-30.664a1.443 1.443 0 01-.186-.182c.504-.578 1.158-1.105 1.931-1.58 4.964-1.746 10.582-3.106 13.951-3.202h.03c1.695 11.551 5.325 25.478-.779 35.718 3.96 21.827.694 66.162 6.058 75.366.854 1.467.63 5.43-1.33 10.222 3.64-1.427 8.488-3.162 13.771-3.205-.042 21.843-15.006 16.425-32.587 29.522m52.85-53.372c2.646-13.817 5.26-28.302 8.174-36.688 1.757-9.155 7.528-22.277 7.51-27.08-.037-9.696-1.015-12.957-.299-27.417l-.002-.002c5.02-2.932 11.171-3.309 14.467-3.068.68 8.243 1.284 14.695 7.796 21.748 2.745 2.974-5.554 5.967-7.779 7.135-3.63 1.907.075 3.528-1.58 8.41-4.475 13.192-17.169 44.296-28.287 56.962\",\n fill: \"#bb0440\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1638.373 307.852c-.47-.24-.836-.388-1.26-.847-1.696-9.84 8.468-39.474 11.38-54.897.803-3.851 1.606-7.7 2.407-11.55 1.86-8.93-1.048-16.716-1.193-25.845-.126-8.03 15.819-5.21 21.368-1.597 5.354 3.485 11.308 6.658 15.345 11.202 3.97 4.47 4.036 9.847-.536 15.167-1.912 2.225-6.828 1.11-12.36 2.085-2.387 12.824 3.68 58.318 1.188 70.06-.84.57-1.338.463-2.104.643-7.526-7.643-24.621-9.998-34.235-4.421m-64.97-88.273c3.036-6.054 1.514-13.827 17.405-11.641 2.23.307 4.02 2.458 5.094 6.637l1.83 7.122c4.039 9.285 5.148 14.152-2.665 17.684.17 19.829 8.617 49.542 7.957 68.394-.501.84-.601.985-1.041 1.66-4.885-6.292-27.423-6.011-32.856.208-.351-.392-.985-.855-1.553-1.57-2.311-11.972 5.42-62.047 6.488-68.785 1.508-9.504-7.03-7.005-.658-19.71\",\n fill: \"#bb0440\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1573.938 218.39c2.376-5.825 2.001-12.497 16.87-10.452 2.23.307 4.02 2.458 5.093 6.637l1.831 7.122c3.99 9.173 5.12 14.033-2.387 17.555a4.963 4.963 0 01-.178-.716c.956-5.257.756-6.75.772-11.702.005-1.35.087-2.667.172-4.537.095-2.076.953-3.58-.486-5.125-4.213-4.52-15.617-4.314-21.687 1.218zm99.588 23.18c.005-.694.104-1.557.343-2.65.444-2.026.297-3.667 1.23-5.292.986-1.713 4.712-7.26 3.283-8.963-1.886-2.247-4.048-4.068-6.47-5.437-6.396-3.613-14.758-3.988-21.424-.895-.234.11-.416.223-.562.336a53.587 53.587 0 01-.218-3.956c-.128-8.03 15.817-5.21 21.366-1.597 5.354 3.485 11.308 6.658 15.345 11.202 3.971 4.469 4.037 9.847-.536 15.167-1.912 2.225-6.826 1.11-12.357 2.085\",\n fill: \"#751026\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1642.021 652.997c.016.525-.045.982-.231 1.328-.639 1.19-3.594 3.124-7.045 4.838l1.179 9.146c3.902.325 6.668 7.481 7.062 13.675.281 4.433-.98 7.668-4.102 5.241 1.53 16.448.973 27.21-9.946 32.278-3.858 4.213-9.177 3.654-14.978 2.8-12.002-1.775-27.501-11.744-18.511-36.232-10.712 4.378-2.864-14.904 3.46-18.066.982-4.552 1.236-5.32 1.357-9.513-3.766-2.22-6.062-2.916-7.041-5.029a3.118 3.118 0 01-.171-.466z\",\n fill: \"#c60342\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1593.37 693.448c.436-2.299 1.116-4.754 2.08-7.377-10.713 4.378-2.864-14.904 3.459-18.066.982-4.552 1.236-5.32 1.357-9.513-1.39-.819-2.58-1.432-3.578-1.983 5.103 2.78 15.6 4.283 23.457 4.687 1.968 4.143-3.23 10.584-6.15 14.638l-19.405 18.375z\",\n fill: \"#e2466a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1639.315 703.041c-.708 7.766-3.468 13.254-10.377 16.462-3.858 4.213-9.177 3.654-14.978 2.799-12.001-1.774-27.501-11.743-18.511-36.231 1.39-5.212 2.888-8.815 4.393-11.656 2.776-5.243 3.688-5.739 9.55-5.304 5.235.389 10.009.653 15.013.408 4.999-.245 7.335 2.214 9.268 6.072 1.59 3.173 2.908 7.293 5.21 11.634z\",\n fill: \"#4a0019\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1677.754 549.698c-3.894-8.847-4.987-15.764-11.624-22.282-2.154 14.504 1.093 29.707 1.482 43.101 3.545-5.637 6.598-15.18 10.142-20.819m-111.378 13.927c1.005-9.62 2.314-22.97 3.32-32.592-3.938 3.721-7.928 11.66-12.222 15.524 3.075 6.81 4.933 10.717 8.902 17.068m102.417-105.266c7.845 3.2 7.13 3.506 6.111 11.67-1.258 10.105-3.314 18.54-4.574 28.645 16.382 9.951 28.851 26.213 34.81 34.304 6.455 8.767.343 22.842-3.039 32.472-5.246 14.936-9.406 30.418-15.007 45.177-2.662 7.63-4.725 14.502-8.837 18.417-7.627 4.351-17.363 7.914-37.26 17.401-.345 1.82 1.698 6.192.793 7.88-5.468 10.18-44.295 8.351-48.566-.862-1.093-2.36 1.266-5.282.688-6.599-8.94-4.119-25.286-9.55-34.226-13.67-5.15-3.78-7.295-11.223-10.469-20.582a815723.54 815723.54 0 00-21.857-64.479c-6.394-18.865 27.451-38.482 41.488-48.863-.786-14.63-2.378-22.62-3.99-36.426-.276-2.376.298-4.402 2.703-5.205 33.744-6.003 67.488-5.277 101.232.72\",\n fill: \"#bb0440\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1672.608 312.272c-5.634-7.006-28.254-10.527-34.201-4.346m-36.424 1.509c-5.635-7.006-31.308-5.979-32.94 1.14m34.015-4.917c-6.125-7.006-34.032-5.979-35.808 1.141\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1673.525 241.57l1.755-7.038m-118.272 310.993l-3.148-7.237m34.426-112.291c5.515-2.087 11.802-3.02 17.915-1.957m-31.134 10.765c1.526-1.778 3.482-3.475 5.746-4.986m72.059-.261c-7.48-4.552-22.542-6.354-28.548-3.634m21.686-85.714c5.561 2.569 12.556 3.034 16.081 8.095\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1644.191 507.951c9.16 7.322 11.762 14.91 20.264 22.42 7.42 8.292 10.035 14.41 12.697 21.07 2.928-3.62 1.173-12.573 6.048-10.643 19.433 7.698 7.577-14.185 3.616-17.587-10.424-8.956-30.11-25.564-40.488-29.025-3.624 3.895-3.108 10.68-2.137 13.765m27.113 88.27c-2.178-7.096-6.379-21.962-2.445-27.87 4.24-6.365 27.42-23.64 22.035-1.604-1.702 6.962-6.538 24.816-12.994 32.88-2.967 3.706-4.956 1.934-6.596-3.406m-52.984-110.566l5.133-1.399 1.177-2.282c-3.41-1.039-4.5-2.79-4.655-4.827-2.797-.228-4.899-1.586-6.695-3.44l-3.29 2.434c-.096 1.551-.5 2.93-1.699 3.864-.143 1.522-.48 3.716-1.69 5.175 4.922-2.03 8.297-1.269 11.72.475m6.131 175.357c-12.26.367-28.807-2.326-31.228-7.549-1.093-2.359 1.266-5.282.688-6.599-5.117-2.357-30.858-12.305-34.226-13.67-5.03-4.492-8.232-13.984-10.469-20.582a815723.54 815723.54 0 00-21.857-64.479c-4.309-12.715 9.306-25.547 23.228-35.89-3.15 6.2-1.445 13.73-.58 18.208.815 4.23 1.701 11.22-4.239 12.212-.995.166-2.406.105-3.644.124-3.733.056-5.29 2.48-2.089 5.978 2.434 2.66 8.054 9.613 8.127 12.644.175 7.173 6.175 8.743 6.517 15.471.295 5.805 3.875-1.406 4.23-.226 1.36 4.54-2.512 22.955 2.365 16.287.704-5.287 4.006-24.886 5.502-33.19.935-9.114 1.515-.912 2.391-9.298-.072.067 14.64-20.169 23.91-35.826 2.498-4.219 15.487-8.552 15.234-13.512.046-.24-3.829.34-7.093 1.734-3.257 1.392-5.904 3.598-5.882 3.371.84-8.894-9.318-14.107-12.465-15.548-.256.114-7.309 3.89-13.503 8.233-.786-14.63-2.899-22.256-4.51-36.06-.277-2.377.297-4.403 2.702-5.206 19.607-3.487 39.213-4.703 58.82-3.933-.102.174-.207.346-.313.526-.979 1.67-2.53 5.003-6.914 8.057-4.48.834-9.6 4.224-10.105 5.833-.204.65 4.104-1.575 7.53 1.853 2.013-1.152 2.42-1.752 4.343-2.38.868-.286 1.975.338 2.85 1.051 1.284 1.05 3.683 1.558 5.187 3.565.618.824 1.603 2.086.862 3.792 3.756 2.057 5.52 6.52 5.473 8.204-3.398 1.712-7.125 4.42-9.604 6.255-.845 2.827 5.643 4.112 2.612 6.35-1.59 1.175-10.504.954-11.265 2.082 1.421 1.032 3.263 3.196 5.217 4.13.643.307 7.521-1.58 11.375-4.275.046-.03 5.03-.406 5.064-.39a20.769 20.769 0 014.481 2.74c-.11 1.534-.4 3.933-.046 4.828-1.845-1.499-10.509-5.612-10.91-5.432-1.893.851-6.889 2.765-6.697 2.911 1.798 1.372 4.231 3.182 8.166 3.308 2.633 9.257 3.69 17.42-.396 22.7-5.637 7.284 2.28 33.853-6.098 41.84-8.55 8.153-43.2 20.403-23.637 37.19 5.705 4.896 17.801 10.858 11.916 15.942-5.536 4.782 9.974 13.003 19.506 16.218 9.1 3.07-16.095 7.655-16.58 9.824-.974 4.346 7.195 5.988 6.054 10.584\",\n fill: \"#e4124a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1549.218 612.612c14.152 8.171 34.964 4.998 53.739 5 2.208-4.408 8.23-18.348 11.477-21.968 2.18 8.603 7.124 17.988 11.034 23.25 23.517 1.478 46.608 1.647 59.882-4.003\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1561.276 592.941c.887-9.835 4.494-19.856 5.1-29.316-2.942 2.358-5.078 5.153-7.163 9.816m28.961-60.783c-2.903-5.544-15.794-8.51-27.51-7.492m33.248 141.698c8.874 2.766 20.581 4.788 32.146 2.795m-33.035 1.455c9.343 4.922 34.927 8.538 47.993.732m35.354-99.179c1.723-2.444 3.66-6.897 3.603-10.186m-30.608-30.485c2.903-5.544 21.934-6.85 33.949-3.619m-15.701 62.141c.384 6.798.038 13.707 2.225 20.363\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1641.79 654.325c-5.467 10.18-44.295 8.351-48.565-.862m-25.664-195.824c33.744-6.002 67.488-5.277 101.232.72 5.827 2.376 6.931 3.156 6.697 6.745m-47.133 3.602c12.217.568 23.033 1.445 35.25 3.478 6.083 1.011 10.714 1.178 9.772 7.865m-107.1-6.535c14.077-3.007 28.114-4.376 42.38-4.62\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1595.066 239.38c.523-4.774 1.822-9.252.764-15.565m5.954 113.065c-4.452 2.886-9.314 4.645-14.767 4.778m66.213 278.088c-10.505-35.433-29.342-50.852-39.847-86.659-16.374 28.923-22.357 56.538-39.106 85.087\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1648.271 253.245c2.151-6.347 6.517-13.239 8.217-21.61 5.273 17.921 14.283 30.44 17.868 48.548M1570.657 264.2c1.667-12.9 8.871-22.985 13.307-34.479 4.485 12.495 12.376 23.853 14.045 37.88\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1625.788 721.837c-3.396 1.58-7.476 1.106-11.828.465-12.001-1.774-27.501-11.743-18.51-36.231 1.39-5.212 2.888-8.815 4.392-11.656 2.776-5.243 3.688-5.74 9.55-5.304 3.526.262 6.843.468 10.162.499-.134.245-.271.5-.413.77-1.505 2.84-1.137.49-2.527 5.7-1.57 4.275.192 9.3 2.337 13.82 4.75 10.01 11.88 21.276 6.837 31.937\",\n fill: \"#7a052a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1639.315 703.041c-.708 7.766-3.468 13.254-10.377 16.462-3.858 4.213-9.177 3.654-14.978 2.799-12.001-1.774-27.501-11.743-18.511-36.231 1.39-5.212 2.888-8.815 4.393-11.656 2.776-5.243 3.688-5.739 9.55-5.304 5.235.389 10.009.653 15.013.408 4.999-.245 7.335 2.214 9.268 6.072 1.59 3.173 2.908 7.293 5.21 11.634z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1676.37 552.667c-3.544 5.638-5.213 12.213-8.757 17.851.43-13.211-2.276-24.58-1.948-39.073 4.375 6.209 11.902 14.043 10.705 21.222zm-109.994 10.958l-4.308-6.894-5.06-11.206c4.294-3.864 8.236-11.62 12.687-14.492-1.005 9.621-2.313 22.971-3.319 32.592zm102.417-105.266c7.846 3.201 7.13 3.506 6.112 11.67-1.259 10.105-3.315 18.54-4.575 28.645 17.957 11.076 28.851 26.214 34.81 34.305 6.456 8.766.343 22.841-3.039 32.471-5.246 14.937-9.405 30.418-15.007 45.177-3.236 8.527-3.632 13.037-8.836 18.417-6.932 4.14-19.566 8.963-37.262 17.401-.344 1.82 1.7 6.193.794 7.88-.639 1.189-2.245 3.451-7.045 4.838l1.18 9.146c3.901.325 6.667 7.481 7.061 13.675.28 4.433-.98 7.668-4.102 5.241 1.53 16.448.973 27.209-9.947 32.278-3.857 4.213-9.176 3.654-14.977 2.799-12.002-1.774-27.5-11.743-18.51-36.231-10.713 4.378-2.865-14.904 3.46-18.066.981-4.552 1.235-5.319 1.356-9.513-3.766-2.22-6.062-2.916-7.042-5.029-1.093-2.359 1.266-5.281.688-6.599-8.94-4.119-25.354-9.979-34.226-13.67-7.34-6.965-7.295-11.222-10.468-20.582l-21.857-64.479c-6.394-18.864 27.45-38.482 41.488-48.862-.787-14.631-2.379-22.622-3.99-36.426-.278-2.377.297-4.403 2.702-5.205\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1675.06 309.277c-3.833-7.905-32.636-11.626-38.132-4.433\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1559.687 633.194c1.826-5.095 1.036-10.563 2.047-16.2m116.524 12.05c.659-4.035.229-7.726-.116-11.52\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1618.32 485.655l5.133-1.399 1.178-2.282c-3.412-1.039-4.5-2.79-4.656-4.827-2.797-.228-4.899-1.586-6.695-3.44l-3.29 2.434c-.096 1.551-.5 2.93-1.699 3.864-.143 1.522-.48 3.715-1.69 5.174 4.922-2.029 8.297-1.268 11.72.476m25.6 13.256a16.362 16.362 0 012.387-4.702c-1.222 1.322-1.97 2.975-2.387 4.702m-35.62 2.18c-.225-.162-3.5.347-6.498 1.52h-.002v.001c-.196.076-.39.155-.582.237-3.256 1.392-5.904 3.598-5.882 3.37.188-1.996-.056-3.752-.58-5.294-1.229-4.429-4.469-7.27-8.73-8.863a31.12 31.12 0 00-.718-.34 3.085 3.085 0 00-.1.054c-.16-.053-.32-.103-.484-.152.798-.87 2.768-1.368 3.566-2.24.632-1.453 1.26-2.909 2.273-4.14-1.849-4.206-.792-6.684 4.587-6.589.604-3.07 2.746-4.236 6.425-3.497 1.028-4.442 3.564-5.788 7.42-4.42l.052-2.55c.16.405 4.251-1.497 7.531 1.787.936-.536 1.525-.952 2.08-1.306.474-.26.942-.51 1.41-.759.252-.107.531-.21.854-.317.867-.284 1.974.34 2.848 1.053 1.285 1.05 3.684 1.558 5.188 3.565.618.824 1.603 2.086.862 3.792 3.756 2.057 5.52 6.52 5.473 8.204-3.398 1.712-7.125 4.42-9.604 6.255-.845 2.827 5.643 4.112 2.612 6.35-1.589 1.175-10.504.954-11.265 2.082 1.421 1.032 3.263 3.196 5.218 4.13.647.31 7.617-1.607 11.454-4.33 1.675-1.19 2.268-1.493 4.278-.645 1.75.737 3.353 1.597 5.187 3.05-.11 1.534-.399 3.933-.046 4.827-.457-.37-1.33-.902-2.394-1.488-2.319-1.386-4.685-2.61-7.159-3.49-.756-.316-1.267-.493-1.358-.453l-.013.007a20.627 20.627 0 00-.425-.122c-7.415 4.23-14.893 3.996-22.416.463z\",\n fill: \"#e2466a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1592.607 509.61c2.695-2.128 6.656-5.165 8.612-6.76 9.028-2.013 17.937-5.006 27.084-6.038 4.436-3.498 8.356-7.38 11.377-11.934-.987-2.582-1.727-5.162-2.164-7.736-2.721-.148-5.432-.489-8.124-1.259-.828.923-1.37 3.232-.04 4.831\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1636.283 476.952c-.397-4.703-2.253-3.557-7.323-4.74-2.361 2.638-5.578 4.267-9.102 5.532.67 1.668 2.322 4.35 5.939 4.321\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1632.277 472.653c-2.793-4.985-2.186-3.738-8.505-4.007-2.171 1.965-4.628 3.63-7.217 5.154.46 1.293 2.226 3.353 4.348 3.554m6.307-8.856c-2.416-5.938-6.325-.216-11.791 2.009m5.469 23.666c2.678-1.156 5.153-4.123 5.498-4.46 3.15-3.078 5.89-4.175 9.096-4.925-1.068-4.196-7.705-6.067-12.029-.532-3.482.507-5.766 2.342-8.949 3.453m3.816-2.054c-6.138-3.22-10.291-.697-15.867 1.092m-17.143 4.975a48.171 48.171 0 003.574-2.85 11.74 11.74 0 011.68-3.63\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1590.564 485.243c4.093 2.263 6.602 1.58 7.562-1.98-2.088-1.414-2.23-2.184-3.062-4.09-3.649-.727-5.125.312-5.245 2.802m5.244-2.803c.51-3.553 2.533-4.633 6.513-4.015 1.423 1.715 1.8 2.865 2.628 6.153-.388 1.512-1.7 2.289-3.993 2.284m1.366-8.436c1.495-5.269 4.3-5.937 7.418-4.42\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1613.695 472.705c-.963 2.862-2.724 3.45-5.043 2.441.49-2.45.267-4.57.397-7.024 2.602-.769 5.672-.427 7.738 1.637m-6.738 5.807c-.216 2.608-.98 4.521-2.9 4.961m41.589 9.856c-2.775-.756-6.19-1.684-10.166-3.92m-29.209 14.38c6.29 3.246 15.163 3.967 22.417-.463 4.2 1.055 9.473 3.934 12.151 6.434\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1665.982 531.89c-8.517-8.731-12.612-17.175-21.791-23.938-2.125-8.5 1.35-16.25 8.476-19.501 8.999 4.77 15.854 8.667 24.854 15.186m-107.826 27.396c8.43-9.015 16.513-16.224 25.442-23.404 1.751-8.5-5.14-13.706-12.265-16.957-8.999 4.77-13.209 7.974-22.208 14.494m89.261-286.516c8.543-5.014 20.885-2.064 27.418 5.01 4.708 5.098 11.18 3.855 11.995 8.31\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1597.125 219.332c-1.264-6.497-18.612-6.714-23.186-.942\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1570.282 457.17c-.174-3.05-.348-6.101-.52-9.151 28.607-.905 66.604-1.66 99.038-7.587l-.248 8.794c-8.529 2.537-21.135 4.23-30.039 5.278-23.406-1.163-44.825-.37-68.23 2.667\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1568.427 285.722l-.423 8.585c2.443-4.996 8.883-5.713 14.64-6.49 4.77-.643 15.16.373 18.77 4.25-.16-2.724-.865-5.642-1.025-8.367-2.72-3.9-11.827-4.712-17.46-4.14-4.715.48-12.169 1.888-14.502 6.162\",\n fill: \"#e4124a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1567.912 292.894l-.445 5.578c2.57-3.246 9.348-3.712 15.408-4.216 5.02-.418 15.953.242 19.752 2.762-.167-1.77-.91-3.667-1.077-5.437-2.864-2.534-12.448-3.062-18.375-2.69-4.963.313-12.807 1.227-15.263 4.003\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1600.992 284.06c-5.634-7.006-31.371-5.17-33.004 1.95m34.13 6.204c-5.634-7.006-33.11-4.652-34.744 2.467\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1641.119 282.45c-.728 3.098-.98 5.73-1.964 8.827 6.82-5.598 28.898-3.513 35.559 3.644l-.477-8.176c-5.014-7.183-29.594-10.75-33.118-4.296\",\n fill: \"#e4124a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1639.236 291.036c-.782 2.012-1.052 3.723-2.108 5.735 7.32-3.637 25.162-3.637 38.162 3.862l-.513-5.312c-7.106-8.417-31.758-8.48-35.541-4.285\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1674.597 295.065c-5.634-7.006-29.496-9.97-35.442-3.788m35.409-4.839c-5.635-7.006-28.999-10.544-33.445-3.988\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1601.983 309.435c1.11 8.793 1.762 17.833-.384 28.39l6.535 37.284c2.434 10.89 5.844 41.602 8.279 52.493 5.253-15.118 9.53-50.06 14.783-65.178 1.758-9.155 7.529-22.277 7.51-27.081-.036-9.695-1.015-12.956-.3-27.416-.011-.024-.021-.051-.033-.075 9.614-5.577 26.709-3.222 34.235 4.42 0 8.836-1.995 20.369-2.797 27.05-.828 6.883-1.067 25.276-.976 32.689.228 18.623 1.78 35.399-.031 55.834.124 16.637.009 22.07-2.071 30.132-36.011-6.803-64.933-7.012-96.451-.806.226-7.886-2.031-18.212-2.753-26.65-1.74-20.301-1.074-36.363 1.227-52.48 1.517-10.624 4.087-27.787 1.646-37.552-2.843-7.924-2.85-26.217-1.088-30.664a1.518 1.518 0 01-.187-.182c5.432-6.22 27.97-6.5 32.856-.208z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1638.354 307.968c-.47-.24-.836-.388-1.26-.848-1.697-9.84 8.468-39.473 11.381-54.896l2.406-11.55c1.86-8.93-1.048-16.716-1.193-25.845-.126-8.031 15.818-5.21 21.367-1.597 5.354 3.485 11.309 6.658 15.346 11.202 3.97 4.47 4.036 9.846-.536 15.167-1.913 2.225-6.828 1.11-12.359 2.085-2.389 12.824 3.679 58.317 1.187 70.06-.84.57-1.338.463-2.104.643-7.527-7.643-24.621-9.998-34.235-4.421zm-64.97-88.273c3.036-6.054 1.513-13.827 17.404-11.641 2.232.307 4.02 2.458 5.094 6.637l1.832 7.12c4.037 9.287 5.147 14.154-2.667 17.686.17 19.829 8.618 49.542 7.957 68.394-.5.84-.6.985-1.04 1.66-4.885-6.292-27.424-6.011-32.856.208-.351-.392-.985-.855-1.553-1.57-2.312-11.972 5.42-62.047 6.488-68.785 1.507-9.504-7.03-7.005-.659-19.71z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1566.608 413.997c10.045-7.73 11.114-17.563 12.363-69.899-4.828-13.663-3.92-26.384-2.69-38.106m93.249 109.826c-12.446-11.78-5.261-18.796-7.71-68.582 4.829-13.66 6.044-27.394 4.814-39.115\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1673.058 246.054c-6.346-1.321-5.384-11.742-7.334-17.506-2.477-7.32-13.07-8.804-14.778-1.445m-76.767 11.2c2.303-6.333.719-18.048 10.4-18.03 10.703.018 6.659 12.325 10.588 18.262\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1046.426 716.099l99.295-11.234M786.064 745.56l87.831-9.94m.378 82.138l-22.443 32.13m194.135-61.006l26.995 41.338m2210.559 77.205l-42.656 43.728m254.107 50.708l-20.488-51.562\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2476.629 1258.98c57.793 30.941-12.021 62.698-74.434 63.738 27.094-12.605 59.926-34.093 74.434-63.738m-891.117-136.334c-37.363-4.88-86.004 12.434-57.617 22.204 12.303-5.491 43.686-17.724 57.617-22.204\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3660.177 772.411c8.945-.529 15.447-13.63 14.523-29.262-.923-15.632-8.923-27.874-17.868-27.344-8.944.53-15.447 13.63-14.523 29.261.924 15.632 8.924 27.874 17.868 27.345z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.957 1033.685a3107.598 3107.598 0 00-71.714 31.188M415.39 911.387c-41.124 11.638-83.123 24.675-125.362 38.837m513.649-132.255c-73.383 14.952-160.822 34.184-234.734 52.593m919.85-147.63c-101.792 8.09-211.817 20.123-317.658 34.115m1297.492-29.94a5385.895 5385.895 0 00-31.067-2.863m135.649 13.808c-11.11-1.27-22.121-2.4-33.195-3.596m307.898 41.923a5586.847 5586.847 0 00-164.356-24.602m440.181 77.204c-45.946-9.97-98.912-20.65-144.823-29.367M3926.8 1078.42c-114.824-48.056-250.402-96.3-370.637-134.572\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3657.028 755.52c1.536-.347 2.286-2.821 1.676-5.528-.61-2.708-2.35-4.622-3.885-4.277-1.536.346-2.286 2.821-1.676 5.528.611 2.708 2.35 4.622 3.885 4.276\",\n fill: \"#8ac8a4\",\n fillRule: \"evenodd\"\n }))), _g15 || (_g15 = /*#__PURE__*/React.createElement(\"g\", {\n clipPath: \"url(#N)\",\n transform: \"matrix(1.33333 0 0 -1.33333 0 1855.227)\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2551.475 207.099c-15.985 1.693-48.077 2.209-70.715-3.166-23.092-5.483-27.207-12.086-33.457-33.016-11.97-40.078-26.465-123.84-28.863-171.2h152.416c1.69 31.998-5.294 65.76-5.294 103.114 0 6.563-6.83 89.39-10.757 94.565-4.568 6.017 4.436 8.88-3.33 9.703\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2454.375 188.836c-2.767-4.477-4.776-10.23-7.072-17.92-11.969-40.077-26.465-123.84-28.864-171.2h32.555c3.826 35.85 14.565 126.008 15.684 151.553.667 15.234-.942 26.567-12.303 37.567\",\n fill: \"#014c35\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2519.073 208.162c-15.194-.768-31.534-2.62-38.313-4.229-23.092-5.483-27.208-12.086-33.458-33.016-11.968-40.078-26.464-123.84-28.863-171.2\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2991.781 210.1L3018.925 0h-527.964c.288 12.637 1.276 27.735 5.06 50.99 5.387 33.105 16.214 55.333 16.081 91.339-.025 6.752-1.954 25.512-1.246 30.663 1.652 11.998 7.371 20.123 8.565 30.635 1.211 10.683-2.108 23.732-.909 33.069 2.945 22.907 2.633 46.762 10.735 63.96 12.873 15.709 31.562 35.739 64.9 53.24 8.153 4.28 54.291 31.014 70.41 43.18 19.245 39.05 41.935 45.759 35.5 105.573-5.085 47.236-9.12 105.534 42.263 143.42 66.471 49.015 128.066 14.377 160.133-10.581 15.122-11.77 39.93-59.19 39.436-102.205-.129-11.265 1.808-21.336-14.913-37.864 20.685-46.851-11.845-58.935-30.26-96.568 34.46-23.754 61.34-31.236 79.612-59.936 17.523-27.521 7.398-66.458 15.453-128.814\",\n fill: \"#9d263d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2991.781 210.1L3018.925 0h-527.964c.288 12.637 1.276 27.735 5.06 50.99 5.387 33.105 16.214 55.333 16.081 91.339-.025 6.752-1.954 25.512-1.246 30.663 1.652 11.998 7.371 20.123 8.565 30.635 1.211 10.683-2.108 23.732-.909 33.069 2.945 22.907 2.633 46.762 10.735 63.96 12.873 15.709 31.562 35.739 64.9 53.24 8.153 4.28 54.291 31.014 70.41 43.18 19.245 39.05 41.935 45.759 35.5 105.573-5.085 47.236-9.12 105.534 42.263 143.42 66.471 49.015 128.066 14.377 160.133-10.581 15.122-11.77 39.93-59.19 39.436-102.205-.129-11.265 1.808-21.336-14.913-37.864 20.685-46.851-11.845-58.935-30.26-96.568 34.46-23.754 61.34-31.236 79.612-59.936 17.523-27.521 7.398-66.458 15.453-128.814z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2787.564 350.82c1.33-23.432-7.277-42.926-4.448-64.67 8.236 18.022 19.378 33.698 27.8 51.813-8.018 3.67-15.794 7.977-23.352 12.857M2621.856 0h-52.529c3.799 10.316 9.545 27.336 9.848 47.092.598 38.9-3.198 68.747 2.673 87.706 6.87 22.182-11.445 21.761 2.899 51.89 6.013 12.63 13.906 23.004 17.582 27.804 3.543 4.628 25.026 32.114 38.647 27.904 15.129 5.541 23.179 12.614 39.84 15.872 4.034.79 8.085-.029 12.403-.802 9.116-1.634 25.717-.003 30.792 8.745 6.935 11.951 14.485 8.591 26.99 4.171 14.271-5.043 29.315-13.818 44.201-17.212 17.699-31.177 38.488-56.828 61.167-79.102-8.064 28.275-13.24 57.012-16.276 86.091 6.304 32.272 28.212 53.914 55.06 51.742 23.934-1.936 9.668 7.89 25.682 7.301 15.468-.57 29.76.086 39.52-5.039 14.118-7.413 22.366-24.237 27.694-47.132.333-16.494.94-35.302 3.734-56.93l14.178-109.754.014-.104L3018.925 0h-86.938c0 39.105-9.073 76.698 0 117.315l27.827 165.041c.944-26.44 11.66-72.093 5.368-102.61-3.881-18.82 7.29-25.193 4.158-39.179-4.437-19.815 7.065-13.835 7.065-43.789 0-15.424 9.793-70.149 16.06-79.079.509-.723-2.072-13.948-2.072-17.585L2931.987 0h-172.891c-56.98 48.41-45.563 106.665-77.535 154.135-10.342 15.354-15.553 5.456-20.996-10.742-5.001-14.882-16.13-28.013-24.823-32.386-2.031-7.738-3.585-23.65-5.272-37.89.599-11.462-3.346-39.35-8.614-73.117\",\n fill: \"#b84150\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2908.593 433.647c-10.708 1.257-12.056 8.122-12.831 9.499-4.065 7.22-4.978 16.489-11.735 16.489-13.054-10.208-11.968-25.957-.113-29.305 4.7-1.328 11.426-1.85 16.145-1.063 3.862.646 9.75 4.237 8.534 4.38m-83.464-60.838c-6.725-3.247-13.7-.772-22.906 1.434-12.52 3.001-21.452 5.881-28.707-13.985 10.033-7.864 24.559-17.06 36.523-21.935-3.531-14.032-24.575-40.76-29.498-59.332 15.939-27.939 33.54-59.675 50.265-77.17-7.828 29.732-13.958 77.423-5.034 107.681 2.914 9.882 5.926 20.017 4.249 28.866-1.497 7.9-5.825 15.475-8.77 19.92 1.042 4.911 3.025 11.94 3.878 14.52m61.597 115.253c.028-1.423-12.683-2.828-17.372-4.3-2.706-.848-32.865-12.758-20.291-17.19 20.334-7.168 38.017 4.247 37.663 21.49m50.443 81.326c2.879-13.549 4.752-33.316 4.72-36.105-.128-11.265 1.808-21.336-14.912-37.864-.752-4.094-3.373-9.503-15.878-8.638.256-3.479.849-11.882 1.365-14.493.038-.195 14.532-5.698 20.959.24 1.925-21.396-10.69-35.002-23.588-52.41-.686-5.255-2.885-7.96-8.121-10.675 5.935-8.786-2.556-11.573-8.91-12.984-.56-2.739-4.521-36.76-40.427-22.873-10.314 6.149-9.288 19.29-11.062 37.97-2.062 21.702-9.567 44.539 4.223 61.852 3.062 3.844 16.965 14.733 21.647 15.057 4.653.323 35.07 18.533 38.399 25.482 4.907 10.242 14.058 46.366 31.585 55.44\",\n fill: \"#e2466a\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2941.516 521.875c-13.71-2.517-22.98-13.045-30.98-25.022.739-16.154 2.084-31.972 6.349-47.26 2.42-8.678 1.433-12.159-2.804-14.351-4.508-2.331-10.87-2.772-19.81 2.443-2.487 1.451-8.126 3.878-12.257 6.257\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2901.581 400.089c3.53 2.52 3.4 5.595-.213 9.189 5.087 2.379 7.98 5.364 8.5 11.175-3.349.463-6.46.833-9.663-.863-5.536 1.973-10.458.798-15.63-1.216-9.206-3.584-16.912-5.154-31.14-5.225 10.908-9.135 25.68-19.23 41.95-15.832 2.086.435 4.122 1.29 6.196 2.772\",\n fill: \"#bd1f55\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2900.205 419.59c-5.536 1.973-10.458.798-15.63-1.216m-20.978-13.045c13.805-9.766 29.311-8.641 31.448-8.168 3.568.79 7.148 2.439 8.613 5.117 1.121 2.05.335 4.387-2.29 7 5.087 2.379 7.98 5.364 8.5 11.175-1.685.234-3.31.443-4.918.377m-136.528-134.34c-49.22 22.886-81.47 61.99-103.646 110.741m-135.529-96.576c34.428 15.712 90.913-9.818 128.96-88.708 24.821-51.468 65.805-107.036 92.361-172.333m-111.392 117.814c2.288-25.325-3.15-40.962-4.896-55.884-.724-6.185-3.6-21.714-3.81-28.428-.988-31.433-4.452-44.803-8.614-73.116m281.169 410.121c-5.64-3.37-13.205-.693-20.549-.98m60.38-38.57c40.755-59.558.484-156.628-10.87-253.257\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2931.398 587.691v.003c-5.517-53.063-22.538-82.572-43.93-102.856-16.625-15.763-25.98-17.476-41.525-39.245-17.037-23.86-29.813-55.895-32.967-80.759-4.449 28.122 2.834 56.693 14.818 79.452-31.436-19.848-59.89-44.89-68.646-108.687-15.22 6.895-27.935 14.968-38.853 23.798.27 6.367 1.285 13.108 3.277 20.338-4.908-3.764-9.2-8.096-12.324-12.485-27.258 25.333-42.516 55.451-60.335 81.685-9.049 13.323-19.006 34.677-9.529 49.716 36.113 57.297 48.576 182.336 150.26 170.11 54.883 30.833 147.622-9.7 172.717-85.725-4.765-60.006 18.504-115.44-5.348-184.578-15.242 14.251-25.54 21.813-43.585 29.187 15.04 20.88 25.636 31.982 11.548 67.774 15.84 15.425 14.784 26.598 14.913 37.863.21 18.373-4.196 37.55-10.49 54.41\",\n fill: \"#8d0a23\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2931.398 587.691v.003c-5.517-53.063-22.538-82.572-43.93-102.856-16.625-15.763-25.98-17.476-41.525-39.245-17.037-23.86-29.813-55.895-32.967-80.759-4.449 28.122 2.834 56.693 14.818 79.452-31.436-19.848-59.89-44.89-68.646-108.687-15.22 6.895-27.935 14.968-38.853 23.798.27 6.367 1.285 13.108 3.277 20.338-4.908-3.764-9.2-8.096-12.324-12.485-27.258 25.333-42.516 55.451-60.335 81.685-9.049 13.323-19.006 34.677-9.529 49.716 36.113 57.297 48.576 182.336 150.26 170.11 54.883 30.833 147.622-9.7 172.717-85.725-4.765-60.006 18.504-115.44-5.348-184.578-15.242 14.251-25.54 21.813-43.585 29.187 15.04 20.88 25.636 31.982 11.548 67.774 15.84 15.425 14.784 26.598 14.913 37.863.21 18.373-4.196 37.55-10.49 54.41zM2653.744 220.8c-78.612-48.288-77.23-99.715-120.55-133.103-5.83 28.344-23.698 46.883-22.338 85.294m22.337-85.295c-10.064-31.584-5.62-56.503-16.077-87.696m118.404 109.755c12.416 8.609 21.722 22.4 27.86 41.467\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2589.136 221.116c-.767-.668-1.547-1.33-2.305-1.998-5.41-4.773-12.98-3.269-16.276-.879a474.622 474.622 0 00-13.336 10.33c4.52-2.396 9.294-.127 10.31 2.5-3.332-1.832-7.244-.948-11.13 1.094-3.683 1.935-7.363 3.975-10.992 6.212-4.437 2.736-7.96 2.59-9.595-.963 4.035.996 6.57-4.267 7.892-7.57 2.212-5.528 4.418-10.964 6.57-16.323 2.122-5.285 4.257-10.51 6.389-15.67 2.8-6.774.009-9.727-1.814-12.202.825 4.547.619 8.67-.831 12.753-.342.963-.677 1.921-1.012 2.876.577-3.306.619-7.672.137-11.888-.486-4.242-1.42-8.369-3.103-11.146-.848-1.399-1.608-2.814-2.383-4.217-.488-.903-1.473-1.349-2.395-1.007-.991.367-1.803 1.25-2.232 2.586-2.424 7.574-4.731 15.18-6.861 22.81-2.132 7.634-4.172 15.43-6.194 23.302 2.362-1.082 4.254-2.916 5.669-4.985-1.651 6.602-3.323 13.305-4.892 20.166-1.605 7.025-3.061 14.447-4.441 22.656 2.503-2.777 3.993-4.806 6.306-7.685 1.055-1.313 2.157-2.512 3.257-3.697 1.369-1.477 2.258-2.02 3.426-2.458-1.055 1.538-2.117 3.056-3.192 4.636-4.347 6.974-7.294 14.357-6.257 21.227 4.762-7.64 9.617-13.497 14.75-18.489 4.988-4.853 10.166-9.227 15.273-13.487-1.33 2.683-1.725 6.15-1.06 9.5 5.073-4.208 10.122-8.306 15.253-12.156 5.06-3.795 10.169-7.358 15.27-10.815.808-.538 1.305-1.433 1.232-2.382-.071-.9-.558-1.869-1.433-2.63m-32.487 4.004c2.278-3.646 4.549-7.216 6.783-10.73 2.988-4.702 10.705-6.803 16.259-1.619-3.218-.986-9.486-.599-13.816 3.435-3.077 2.866-6.127 5.867-9.226 8.914m-3.138 3.182c-1.538 1.6-3.09 3.21-4.648 4.85-.118-.379-.217-.749-.328-1.127-.444-1.515.237-2.139 2.203-2.808.92-.313 1.848-.614 2.773-.915\",\n fill: \"#e5224f\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2960.652 306.743c22.797-19.257 17.353-55.902 28.734-72.449m-208.845 44.697c-9.194 17.935 10.226 39.26 15.281 51.155-11.184 5.444-23.993 13.335-34.057 20.74m-206.72-46c7.803-.634 16.96 3.8 21.996 8.459 30.563 28.262 68.903 34.982 100.179 59.494m-32.314-157.699c-23.15 38.904-53.653 67.058-81.665 77.213-14.817 5.373-33.49 4.26-39.04-7.364m129.543-64.189c87.744-26.62 150.925-87.677 216.058-126.49 38.282 52.354 12.358 156.222 90.85 212.433\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2911.946 486.707c4.463-.279 11.423 1.812 14.804 7.683 1.338 2.324 5.378 2.851 8.11 2.396\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2826.352 375.951c17.733-27.123 17.862-51.735 14.146-75.799 13.658 25.427 38.027 36.392 66.126 42.321-4.542 13.477-10.218 26.688-18.058 39.392-8.904-15.399-27.876-15.559-58.278 1.581l-3.936-7.495\",\n fill: \"#751026\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2765.82 366.255c9.276-8.123 34.304-24.002 45.096-28.292-12.54-27.271-23.887-38.291-30.375-58.972 25.991-48.285 51.007-81.328 75.827-104.923-10.093 38.827-20.05 77.744-15.87 126.084 11.894 22.463 34.246 36.316 66.127 42.322-4.408 13.844-11.046 27.506-18.06 39.39\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2840.85 302.522c4.102 24.014 28.027 39.437 48.242 46.54-2.352 8.439-5.431 16.282-9.998 23.689\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2893.227 396.942c-2.672-14.43-10.678-31.78-34.825-25.223-18.616 5.056-46.348 19.751-64.882 34.988\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2943.436 622.294c8.935-11.64 16.154-24.806 20.925-39.258-4.764-60.006 18.505-115.44-5.347-184.578-5.786 5.41-10.859 9.856-15.915 13.692 27.588 63.516 4.858 133.87 5.433 170.357-4.637 12.677-6.084 27.852-5.096 39.787m-12.038-34.603l.001.003c-.066-.638-.135-1.27-.205-1.901-.446-3.627-.922-6.29-1.083-8.62-6.571-46.517-22.708-73.433-42.642-92.334-16.626-15.764-25.982-17.477-41.526-39.245-17.037-23.861-29.812-55.896-32.967-80.76-4.449 28.122 2.833 56.693 14.818 79.452-31.435-19.847-59.888-44.89-68.645-108.686a190.476 190.476 0 00-11.718 5.792c-8.925 28.518-8.934 63.39.99 90.3 8.9 24.127 22.784 41.154 40.56 55.804-28.43-13.87-69.473-54.794-74.933-99.431-8.852 70.333 53.817 111.486 105.824 136.055 45.325 21.413 72.497 71.92 76.672 120.572 30.183-17.542 42.69-36.682 35.09-57.64z\",\n fill: \"#db003f\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2931.398 587.691v.003c-5.517-53.063-22.538-82.572-43.93-102.856-16.625-15.763-25.98-17.476-41.525-39.245-17.037-23.86-29.813-55.895-32.967-80.759-4.449 28.122 2.834 56.693 14.818 79.452-31.436-19.848-59.89-44.89-68.646-108.687-15.22 6.895-27.935 14.968-38.853 23.798.27 6.367 1.285 13.108 3.277 20.338-4.908-3.764-9.2-8.096-12.324-12.485-27.258 25.333-42.516 55.451-60.335 81.685-9.049 13.323-19.006 34.677-9.529 49.716 36.113 57.297 48.576 182.336 150.26 170.11 54.883 30.833 147.622-9.7 172.717-85.725-4.765-60.006 18.504-115.44-5.348-184.578-15.242 14.251-25.54 21.813-43.585 29.187 15.04 20.88 25.636 31.982 11.548 67.774 15.84 15.425 14.784 26.598 14.913 37.863.21 18.373-4.196 37.55-10.49 54.41zm-82.392-470.857c6.863-4.424 13.78-8.651 20.772-12.607 21.227 34.757 18.563 105.625 43.313 157.875m-266.16-29.16c61.624-11.468 112.938-52.696 164.765-90.288\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2941.517 521.875c.1 1.657.172 2.424.273 4.08-8.642-3.577-15.365-7.388-24.294-19.68 7.74 9.185 15.74 14.478 24.02 15.6\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2941.517 521.875c.1 1.657.172 2.424.273 4.08-8.642-3.577-15.365-7.388-24.294-19.68 7.74 9.185 15.74 14.478 24.02 15.6z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4004.856 0h-401.573c26.33 68.757 83.7 155.243 159.066 210.477 22.12 16.21 42.38 27.184 68.447 35.298 3.63 1.129 3.363 3.007-.581 2.533-6.103-.736-16.32-2.891-23.958-5.492-4.014-1.367-7.656-2.065-9.457 2.182-13.482 31.808-10.728 66.318-.087 108.615l19.24 76.467c7.352.687 10.26 10.489 3.809 15.138l10.573 42.026c7.377 29.318 88.477 58.552 174.52 42.581zM736.69 68.89l4.645-19.674-9.047-1.54c-3.085-.526-1.828-2.294.13-2.524l36.55-4.311-6.607 25.022zM80.21 159.11c16.475 6.752 32.223 14.809 47.891 22.825 2.573 1.316 5.143 2.632 7.714 3.94l-6.719 31.848c-18.57-16.922-34.138-37.598-48.886-58.612m57.405 18.234c-1.895-.966-3.789-1.934-5.684-2.904-19.555-10.006-39.232-20.071-60.314-27.702l-1.564-2.266c-7.683-11.136-15.282-22.147-23.134-32.59l94.086-5.26 19.97-62.81c1.31-4.117 5.833-4.834 4.692.578zm9.574 148.414l518.655-28.987c12.045-.673 19.303-9.625 21.936-20.774l42.562-180.223-8.714-1.692c-2.648-.513-2.241-2.227.48-2.547l9.499-1.121 25.052-2.955-4.904 18.576c-1.597 6.049.94 12.839 4.793 16.565l23.316 22.547c1.282 1.234 3.122 1.98 4.924 1.896l115.668-5.438c3.573-.168 5.633-3.04 6.504-6.504L940.878 0H779.752l-5.082 19.244-27.007 3.184L752.96 0H-65.085v118.978l95.01-6.146c6.786 8.589 13.365 17.743 19.925 27.133-43.047-11.097-89.068-3.671-114.935 5.032v8.948c29.339-9.296 75.173-17.588 122.514-3.047l1.072 1.554c19.998 28.982 40.566 58.784 67.212 81.307l-9.663 45.8c-3.05 14.46 1.04 27.057 5.465 31.54 8.019 8.125 19.015 15.032 25.675 14.66\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M624.958 260.872l-335.061 23.855c-6.839.606-8.335 5.478.261 4.928l341.081-16.214c7.266-.442 15.598.844 22.015 4.493l6.89 3.917c7.565 4.3 9.085-.8 3.694-6.99l-4.79-4.792c-6.003-6.89-3.784-14.946-2.374-23.667l36.895-187.435c1.479-7.515-2.15-8.318-3.633-1.636l-45.045 185.641c-2.887 11.898-7.05 16.704-19.933 17.9M868.49 107.394l-82.163 8.597c-3.702.328-4.512 2.966.14 2.668l85.424-4.46c6.249-.38 9.95.08 14.076 5.009l8.769 10.477c3.023 3.613 4.149.103 2-3.784l-8.266-14.949c-2.394-4.329-3.447-7.42-2.684-12.142l16.353-74.653c.888-4.049-1.164-4.503-1.967-.886l-20.484 72.615c-1.436 6.472-4.221 10.861-11.197 11.508\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1269.967 1390.454H963.551l-15.612-109.83c-.636-3.912-.822-7.705.7-11.447l3.714-9.144c1.576-3.878 6.188-5.627 10.128-5.648l291.54-1.594c4.33-.024 6.164 2.022 6.451 6.001z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1060.402 1274.123c-13.95-57.542-34.06-93.313-56.67-110.366-14.611-11.019-30.247-14.36-45.988-10.81-15.413 3.476-30.767 13.6-45.174 29.605-23.334 25.925-44.434 67.616-59.36 121.653a215.923 215.923 0 00-16.317 3.886c-53.042 14.843-94.17 48.23-122.563 82.364h6.72c27.709-32.3 67.033-63.37 117.212-77.41a210.215 210.215 0 0113.45-3.289c-6.488 24.554-11.715 51.553-15.324 80.698h7.778c3.738-29.868 9.183-57.406 15.939-82.282 38.774-6.51 83.289-2.815 133.272 17.186l1.913-4.773c-49.95-19.986-94.603-23.987-133.675-17.867 14.492-51.067 34.574-90.424 56.695-115.001 13.335-14.814 27.316-24.135 41.125-27.248 13.482-3.04 26.959-.117 39.646 9.452 21.259 16.035 40.337 50.352 53.83 106.015z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M549.62 1097.724a2.395 2.395 0 002.978-1.61 2.396 2.396 0 00-1.61-2.978c-13.156-3.946-26.508-2.763-37.458 2.342-11.043 5.146-19.657 14.276-23.224 26.167-2.463 8.208-2.186 16.654.332 24.523 2.584 8.078 7.54 15.539 14.315 21.49a2.389 2.389 0 103.146-3.596c-6.119-5.374-10.588-12.093-12.91-19.354-2.228-6.963-2.474-14.435-.296-21.696 3.153-10.51 10.818-18.603 20.66-23.19 9.933-4.63 22.075-5.696 34.067-2.098m26.572 19.378a2.386 2.386 0 103.989-2.621 49.622 49.622 0 00-4.614-5.971 2.126 2.126 0 00-.132-.136 51.663 51.663 0 00-5.4-5.137 2.39 2.39 0 00-3.035 3.689 46.97 46.97 0 014.9 4.654c.034.045.071.089.11.132a44.877 44.877 0 014.182 5.39m226.78 170.334l-226.053 2.792 10.226 100.226h-3.874L572.532 1285.2l-10.38-21.484 9.27 126.738h-41.548l-1.275-99.628h-.002l-1.698-132.698a2.388 2.388 0 00-4.776.057l1.698 132.7-140.676 1.737c-13.017.162-23.394-5.586-27.605-18.408l-92.029-273.884c-2.537-7.72-2.67-11.541 1.328-18.62l5.924-10.484c3.645-6.451 10.092-8.957 17.296-9.273l64.567-2.612-2.466-32.754c-1.569-20.844-15.054-36.234-31.93-43.222-7.218-2.99-15.047-4.446-22.823-4.142-7.745.303-15.439 2.352-22.42 6.37-16.72 9.627-29.478 30.66-29.478 66.276h-.013l-.559 248.756h-6.418l.56-248.756h-.015c0-38.284 14.165-61.152 32.726-71.838 7.922-4.561 16.624-6.884 25.365-7.226 8.71-.341 17.461 1.283 25.516 4.619 18.974 7.858 34.138 25.19 35.908 48.685l2.482 32.972 399.576-16.168c11.966-.522 20.317.994 22.89 14.093l57.76 294.084c1.153 5.873.931 10.14-2.06 15.438l-6.299 11.148-48.846-224.121c-.88-4.283-4.154-1.568-3.39 2.186l43.345 213.092c3.313 16.289-5.49 18.435-19.065 18.603\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M149.898 754.185c-5.134 1.496-10.498-.564-13.426-4.717C65.51 777.89-4.648 831.51-65.086 913.144V902.44c60.064-78.867 129.305-131 199.378-159.022-.445-5.647 3.123-11.063 8.764-12.707l29.442-8.581c5.222-1.522 10.683.637 13.575 4.935l.31-.074c42.951-9.966 85.431-11.093 125.52-3.986 21.162 3.752 41.661 9.8 61.215 18.054-15.335-16.655-31.893-32.243-49.58-46.752C223.92 612.597 88.5 564.972-65.086 552.943v-3.746l.277-3.723c155.2 12.11 292.171 60.315 393.077 143.08 22.436 18.403 43.083 38.515 61.753 60.31a281.12 281.12 0 0133.177 19.63c60.764 41.825 107.22 108.884 127.788 197.528l-6.268 1.434c-20.183-86.985-65.684-152.731-125.17-193.675A274.927 274.927 0 00400.871 762c53.97 67.809 89.535 150.963 101.307 249.007l-7.417.876c-12.404-103.314-51.603-189.831-111.109-258.997-22.953-11.126-47.41-19.026-72.857-23.538-39.174-6.945-80.687-5.861-122.67 3.839.3 5.54-3.242 10.8-8.786 12.415zm250.484 375.642c-67.222-58.705-157.248-103.358-250.166-112.677-73.214-7.342-148.207 7.218-215.302 54.016v12.625c66.386-48.58 141.237-63.738 214.296-56.411 90.694 9.095 178.658 52.76 244.406 110.179z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M259.463 1270.984c26.475-5.106 41.803-30.659 34.237-57.073-3.92-13.69-13.225-24.926-24.963-31.86-1.14-.674-.52-2.453.972-1.769 14.14 6.475 25.651 18.916 30.132 34.562a49.262 49.262 0 011.915 12.292c2.994-8.636 3.383-18.432.542-28.35-7.566-26.414-35.162-43.687-61.636-38.579a47.683 47.683 0 00-4.573 1.115l-4.624-16.62c-1.23-4.42.255-6.443 4.748-6.835l93.065-8.132-7.732-28.03-100 15.04c-13.166 1.98-15.915 11.495-11.76 23.58l10.186 29.631a43.186 43.186 0 00-7.84 8.686c-1.464 2.151-2.735 4.527-4.02 6.8l-5.526 9.78a43.525 43.525 0 00-3.934 8.036c-3.25 8.83-3.753 18.923-.825 29.146 7.566 26.414 35.161 43.687 61.636 38.58\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1231.893 1277.833l-202.751-.696c-3.081-.271-3.755-2.466.117-2.218l205.464-2.748c3.278-.044 8.117-.865 10.154-3.49l5.113-6.588c2.402-3.096 4.372-.688 2.585 2.548l-5.388 9.748c-1.052 1.904-1.148 6.616-.903 10.587l5.492 89.217c.212 3.445-.968 3.747-1.637.738l-9.267-89.034c-.571-5.485-3.15-8.042-8.98-8.063m-682.272-180.11c-11.992-3.598-24.134-2.532-34.068 2.098-9.84 4.587-17.506 12.68-20.659 23.19-2.178 7.26-1.932 14.733.295 21.696 2.323 7.26 6.792 13.98 12.911 19.354a2.389 2.389 0 11-3.146 3.596c-6.775-5.951-11.73-13.412-14.315-21.49-2.518-7.87-2.795-16.315-.332-24.523 3.567-11.891 12.181-21.021 23.224-26.167 10.95-5.105 24.302-6.288 37.457-2.342a2.396 2.396 0 011.611 2.978 2.395 2.395 0 01-2.978 1.61m26.572 19.378a2.386 2.386 0 103.989-2.621 49.622 49.622 0 00-4.614-5.971 2.126 2.126 0 00-.132-.136 51.663 51.663 0 00-5.4-5.137 2.39 2.39 0 00-3.035 3.689 46.97 46.97 0 014.9 4.654c.034.045.071.089.11.132a44.877 44.877 0 014.182 5.39m-4.77 273.352h11.85l-10.74-105.254-10.38-21.484zm237.516-103.286c9.312-.488 18.083-1.707 21.99-9.492l-48.846-224.121c-.88-4.283-4.154-1.568-3.39 2.186l43.345 213.092c2.797 13.753-3.042 17.424-13.099 18.335m-532.026-23.45l-.026.02v-.002zm24.845-36.581c-4.124 14.853-10.91 24.215-18.73 31.443 10.94-11.064 15.538-27.688 10.674-44.668-3.922-13.691-13.226-24.926-24.964-31.86-1.14-.675-.52-2.453.972-1.77 14.14 6.476 25.651 18.917 30.132 34.563a49.31 49.31 0 011.916 12.292m221.216-2.602v.023l.848 66.327-.509.006.51 99.563h6.052l-1.275-99.628h-.002l-1.698-132.698a2.388 2.388 0 00-4.776.057z\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3685.451 1390.454h-18.473l16.844-68.165 11.536 3.364zm28.233-68.664c11.59 0 20.986-9.972 20.986-22.273 0-12.3-9.396-22.272-20.986-22.272-11.589 0-20.985 9.971-20.985 22.272 0 12.301 9.396 22.273 20.985 22.273m24.686-252.758l-3.358 10.07c12.097 15.23 24.197 30.458 36.294 45.688-2.685 8.001-3.024 16.216 1.38 24.861-3.626 19.684-7.25 39.367-10.877 59.052l20.782-57.028c-2.82-9.183-2.417-18.366 1.21-27.548-15.145-18.364-30.287-36.73-45.43-55.095m-593.225 215.002l-13.46 106.42h15.27l9.563-99.725z\",\n fill: \"#6db28e\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3456.333 1393.538c-57.353-53.6-119.576-99.277-187.179-136.208l79.329-234.612h38.779c90.633 45.86 181.267 91.719 271.901 137.577l-92.79 230.525-110.04 2.718\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3513.345 1075.838c12.853 3.518 27.598-9.438 32.935-28.937 5.337-19.5-.754-38.16-13.606-41.677-12.852-3.518-27.598 9.438-32.934 28.937-5.338 19.5.753 38.159 13.605 41.677\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3184.398 1308.226l-121.329-76.146c17.33-34.37 29.487-69.386 38.292-104.821l126.772 68.22c-11.876 37.829-26 75.453-43.735 112.747\",\n fill: \"#b3d9bc\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3780.493 1148.506c-1.912-3.89-2.896-8.653-2.59-13.76a29.757 29.757 0 011.561-7.934l-6.43-.304a25.126 25.126 0 00-1.07 3.203 23.123 23.123 0 00-.717 4.429c-.15 2.498.073 4.889.607 7.08.521 2.137 1.341 4.09 2.403 5.773zm-16.888 56.542l16.148-52.757-5.203-1.262zm-51.353 114.542c8.254.812 15.78-6.991 16.806-17.43 1.03-10.438-4.828-19.56-13.082-20.372-8.254-.813-15.779 6.99-16.806 17.428-1.029 10.439 4.828 19.56 13.082 20.374m1.303-8.69c4.477.44 8.558-3.791 9.115-9.452.558-5.661-2.618-10.608-7.094-11.05-4.478-.44-8.558 3.792-9.115 9.453-.558 5.66 2.62 10.608 7.094 11.049m-365.45-290.44l35.54 1.718c3.02.146 4.446.44 7.322 1.378 37.811 12.314 74.114 25.907 110.275 41.247 2.674 5.577 6.815 9.588 12.104 11.035 3.707 1.015 7.572.656 11.324-.833 47.567 21.263 93.663 45.226 138.254 71.946 15.105 9.052 18.375 14.433 12.487 31.545l-12.87 37.409 85.775 2.94c2.627-5.584 6.66-9.836 11.015-12.086l11.683-57.667c-1.283-2.027-2.276-4.385-2.905-6.966a27.71 27.71 0 01-.714-8.213 27.17 27.17 0 01.837-5.17 29.443 29.443 0 011.141-3.47l-37.29-43.664a1.928 1.928 0 112.93-2.507l37.154 43.506 6.628.312-38.8-48.626 1.541-35.887 53.25 74.196a13.151 13.151 0 011.79-.051c9.555.373 16.688 10.914 15.931 23.544-.577 9.644-5.59 17.719-12.182 20.83l-12.614 54.574c5.18 5.177 6.33 15.209 2.273 24.812-4.913 11.633-15.607 18.23-23.886 14.734l-11.8-4.56c-.219-.076-.436-.16-.652-.25-2.13-.9-3.877-2.408-5.2-4.346l-96.01 3.385-10.665 31 36.825-2.204c5.751-8.74 14.632-14.002 24.038-13.075 4.381.43 13.073 3.26 16.46 4.414 2.494.849 4.866 1.828 6.791 3.003 9.684 5.913 15.68 19.077 14.244 33.664-.918 9.32-4.7 17.477-10.09 23.173l-8.729 65.204h-39.55l11.26-61.508-.619-.19c-2.137-.652-4.005-1.392-5.95-2.584a23.413 23.413 0 01-.988-.64l-16.49 64.922h-3.989l17.174-67.608a28.83 28.83 0 01-3.307-3.788l-54.6 8.146-21.762 63.25h-49.964l90.906-231.715c-91.877-57.267-190.04-102.561-295.326-138.28\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3708.207 1123.604l-122.246-62.722c10.708-34.595 18.105-74.384 23.486-108.98l121.848 41.946c-3.931 41.37-10.633 84.125-23.088 129.756\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3609.447 951.901l20.582-1.82 121.848 41.946c-3.93 41.37-10.633 84.124-23.088 129.755l-20.582 1.822c12.455-45.63 19.157-88.387 23.088-129.756z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3609.447 951.901l20.582-1.82 121.848 41.946c-3.93 41.37-10.633 84.124-23.088 129.755l-20.582 1.822c12.455-45.63 19.157-88.387 23.088-129.756zm-96.102 123.937c12.853 3.518 27.598-9.438 32.935-28.937 5.337-19.5-.754-38.16-13.606-41.677-12.852-3.518-27.598 9.438-32.934 28.937-5.338 19.5.753 38.159 13.605 41.677z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3516.58 1062.212c7.822 2.142 16.8-5.745 20.048-17.615 3.25-11.87-.459-23.23-8.282-25.371-7.825-2.142-16.8 5.745-20.05 17.616-3.249 11.87.46 23.228 8.283 25.37z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3521.6 1062.288c4.877-1.1 9.645-5.45 12.747-11.687l-11.885-9.882z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3521.6 1062.288c4.877-1.1 9.645-5.45 12.747-11.687l-11.885-9.882z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3531.447 1082.036c10.21 2.792 27.598-9.438 32.935-28.937 5.337-19.5-.753-38.159-13.606-41.676l-16.21-5.55c11.544 4.755 16.781 22.512 11.713 41.027-5.234 19.126-19.52 31.954-32.193 29.12 7.54 2.617 7.153 3.225 17.361 6.016\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3531.447 1082.036c10.21 2.792 27.598-9.438 32.935-28.937 5.337-19.5-.753-38.159-13.606-41.676l-16.21-5.55c11.544 4.755 16.781 22.512 11.713 41.027-5.234 19.126-19.52 31.954-32.193 29.12 7.54 2.617 7.153 3.225 17.361 6.016z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3556.79 1044.437l-6.792 14.382 18.926 16.916c2.34 2.089 2.683 3.942 2.22 7.043l-3.329 22.303 15.341 7.67 2.03-27.115c.458-6.105-.149-11.211-4.478-15.806zm186.924-3.677c6.968-6.448 14.174-11.574 21.552-15.468 21.995-11.606 45.528-12.135 68.858-4.055 23.65 8.189 47.134 25.186 68.677 48.462 45.692 49.368 94.33 164.785 102.055 226.872v-31.027c-7.518-49.261-57.675-157.336-97.348-200.2-22.246-24.035-46.62-41.63-71.295-50.174-24.996-8.655-50.262-8.063-73.943 4.434-7.832 4.133-15.493 9.585-22.91 16.45z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3746.742 1007.887c13.445-13.485 28.25-24.48 43.761-32.666 24.983-13.185 51.79-19.065 77.68-16.3 25.825 2.758 50.797 14.137 72.198 35.474 40.856 40.737 54.073 89.654 64.474 139.037v-25.526c-3.075-24.615-17.033-76.191-59.49-118.522-22.61-22.544-49.053-34.572-76.434-37.496-27.315-2.918-55.514 3.244-81.723 17.075-16.13 8.512-31.515 19.937-45.478 33.94z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3744.825 1007.23c30.246-9.727 55.374 15.903 75.071 79.038 19.772 63.372 33.858 164.067 41.936 304.186h3.863c-8.096-140.56-22.242-241.637-42.114-305.334-20.477-65.635-47.24-92.073-79.934-81.56zm-81.471 184.73c32.795-7.359 61.33 5.135 85.41 38.389 23.841 32.925 43.333 86.011 58.29 160.105h5.253c-15.132-75.36-34.988-129.449-59.375-163.126-25.411-35.093-55.718-48.233-90.705-40.382z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3648.635 1209.858c42.342-7.359 79.185 5.134 110.275 38.388 28.245 30.212 51.762 77.395 70.366 142.208h6.807c-18.862-66.092-42.856-114.28-71.792-145.228-32.808-35.093-71.938-48.234-117.112-40.382zm44.244-238.782l.465-35.826v-.09c-.322-8.462 3.867-14.109 9.675-16.727 2.566-1.156 5.449-1.738 8.404-1.727 2.968.012 6.015.625 8.897 1.857 7.895 3.377 14.49 11.458 14.793 24.656h-.005v50.63h3.865v-50.63l-.007-.039c-.33-15-7.977-24.249-17.135-28.166a26.808 26.808 0 00-10.408-2.159c-3.503-.013-6.93.681-9.99 2.06-7.155 3.224-12.322 10.104-11.941 20.352l-.465 35.764z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3564.065 1043.179c4.058-1.13 7.684-3.645 10.323-8.73 2.478-4.773 4.06-11.881 4.242-22.4l.675-38.886.007-.03c0-51.35 19.443-83.111 42.992-97.203 8.37-5.01 17.257-7.78 25.961-8.397 8.667-.613 17.15.91 24.747 4.489 16.766 7.895 29.286 25.84 30.112 52.957h-.006v56.056h3.866v-56.056l-.007-.053c-.86-28.785-14.306-47.91-32.318-56.393-8.204-3.864-17.345-5.511-26.666-4.85-9.286.658-18.759 3.608-27.667 8.939-24.582 14.71-44.88 47.598-44.88 100.51h.008l-.675 38.857c-.17 9.859-1.595 16.408-3.818 20.693-2.064 3.975-4.839 5.923-7.923 6.782z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3184.398 1308.226l-121.329-76.146c17.33-34.37 29.487-69.386 38.292-104.821l126.772 68.22c-11.876 37.829-26 75.453-43.735 112.747z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3207.207 1301.661l-22.809 6.564a842.148 842.148 0 0043.736-112.746l-126.773-68.22 18.414-2.17 124.776 65.425z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3207.207 1301.661l-22.809 6.564a842.148 842.148 0 0043.736-112.746l-126.773-68.22 18.414-2.17 124.776 65.425z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3146.514 1283.472l-12.891 106.982h-3.876c0-.075.004-.15.013-.227l12.918-107.208a1.932 1.932 0 013.836.453m-6.271 106.982h19.066l4.645-95.06-12.19-7.65zm112.588-116.25c3.134 4.143 5.097 8.577 5.946 13.193 1.03 5.6.434 11.513-1.687 17.543-3.266 9.28-10.14 18.833-20.27 27.976l-.747.672c3.595-15.752 8.92-34.51 16.758-59.384m-29.906-19.394c10.75 3.783 18.998 8.523 24.902 13.935-10.02 31.583-16.149 53.6-19.856 71.873l-2.02 1.714c-16.264 13.785-30.847 26.148-35.06 48.122h3.94c4.02-19.504 17.128-31.183 31.978-43.79-2.845 15.654-3.9 28.885-4.204 43.79h6.421c.326-15.696 1.52-29.528 4.857-46.566.253-1.292.518-2.603.797-3.935a299.197 299.197 0 004.723-4.167c10.608-9.577 17.842-19.676 21.325-29.578 2.343-6.658 2.993-13.232 1.84-19.505-1.105-6.01-3.854-11.71-8.34-16.91.39-1.233.788-2.48 1.192-3.742 23.056-72.094 11.093-126.99-11.799-156.763-8.018-10.427-17.404-17.833-27.154-21.885-9.955-4.14-20.282-4.801-29.95-1.657-17.254 5.61-32.205 23.329-38.75 55.028l6.292 1.284c6.017-29.134 19.275-45.262 34.447-50.195 8.168-2.657 16.96-2.07 25.494 1.48 8.74 3.633 17.22 10.355 24.536 19.872 21.817 28.375 33.085 81.109 10.767 150.897l-.197.614c-6.162-5.263-14.424-9.864-24.913-13.555z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3347.497 1232.1l5.821-5.478c13.83-13.016 33.641-5.677 42.272 2.54l34.597 32.922c-11.854-7.442-24.89-1.297-27.812 6.443 8.991-5.052 19.248-1.941 29.438 4.137l28.875 17.223c11.622 6.932 21.717 5.114 27.436-5.544-11.879 4.269-17.765-10.003-20.675-19.182l-29.547-93.182c-6.524-20.576 3.26-28.026 10.062-34.427-4.479 12.666-5.358 24.558-2.226 36.72l2.19 8.5c-1.486-19.362 5.143-50.026 19.983-63.992l11.175-10.516c2.371-2.268 6.185-3.221 9.148-2.028 3.183 1.282 5.372 3.81 5.875 7.409l17.406 124.592c-7.012-1.963-12.229-6.34-15.813-11.695l14.997 107.347c-7.157-2.462-11.219-5.866-17.178-11.537l-8.419-8.014c-3.58-3.407-5.929-4.546-9.118-5.244l7.912 11.423c10.913 15.759 18.318 30.55 14.397 48.618l-76.958-74.64c3.058 7.91 3.543 18.046 1.161 27.885l-75.525-74.468c-2.026-1.998-3.207-4.993-3.039-7.976.16-2.808 1.355-5.756 3.565-7.836m84.834 19.887l-17.05-32.812c-7.723-14.863-28.686-23.87-43.584-9.85 8.497-1.88 25.226 1.479 36.66 14.776zm8.043 9.428l11.873 13.917 1.155-3.284c1.56-4.428-.218-6.124-5.516-7.99z\",\n fill: \"#db003e\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3106.273 1166.042c-6.104 19.367-12.955 38.627-20.923 57.729l37.623 23.48c9.042-19.313 16.471-38.325 22.85-58.438l-39.55-22.771\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3106.273 1166.042c-6.104 19.367-12.955 38.627-20.923 57.729l37.623 23.48c9.042-19.313 16.471-38.325 22.85-58.438l-39.55-22.771z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3144.996 1237.64a617.024 617.024 0 01-7.44 18.71l37.622 23.48a488.72 488.72 0 008.117-18.289z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3144.996 1237.64a617.024 617.024 0 01-7.44 18.71l37.622 23.48a488.72 488.72 0 008.117-18.289z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3109.013 1157.643l39.85 22.373\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3542.69 1139.906l66.734 37.465m7.552-137.488l75.302 32.1m-154.987 81.075l66.734 37.465m8.734-136.03l76.156 34.876m-337.54 195.137c-21.437-14.482-36.105-23.886-57.965-36.04l34.725-99.07\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3130.76 1160.47l20.44 11.475\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3580.72 1145.542l34.229 19.216\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3176.05 1195.777l20.44 11.475\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3337.929 1127.385l40.869 19.058m-45.114-9.233l25.418 11.852\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3178.296 1187.835l20.439 11.476\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3341.328 1117.716l41.053 18.535\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3650.064 1032.657l-27.347-11.004c3.63-14.567 6.52-29.354 8.727-44.35 9.34 3.283 18.68 6.564 28.02 9.845-2.802 15.133-5.955 30.305-9.4 45.51\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3650.064 1032.657l-27.347-11.004c3.63-14.567 6.52-29.354 8.727-44.35 9.34 3.283 18.68 6.564 28.02 9.845-2.802 15.133-5.955 30.305-9.4 45.51z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3657.264 998.676l22.745 8.707c3.91 1.498 5.648 3.409 4.758 7.989l-2.314 11.918\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3101.436 1182.193l38.961 22.75\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3857.064 965.785l13.663.55c5.554.222 10.28-4.139 10.504-9.693.223-5.554-4.139-10.28-9.693-10.504l-13.662-.549c-5.555-.224-10.282 4.137-10.505 9.692-.222 5.554 4.139 10.28 9.693 10.504\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3708.207 1123.604l-122.246-62.722c10.708-34.595 18.105-74.384 23.486-108.98l121.848 41.946c-3.931 41.37-10.633 84.125-23.088 129.756z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3456.326 1390.454c-23.444-23.107-50.825-45.357-79.015-65.87-36.182-26.329-73.654-49.773-105.824-68.494l78.214-231.317c51.606 16.758 101.7 36.315 150.242 58.736 48.607 22.45 95.654 47.77 141.105 76.02l-90.32 230.223a1.948 1.948 0 00-.132.702h4.001l90.614-230.97a1.933 1.933 0 00-.762-2.384c-46.003-28.674-93.645-54.35-142.89-77.095-49.2-22.724-100.01-42.522-152.393-59.457l-.063-.023a1.93 1.93 0 00-2.447 1.208l-79.329 234.612h.001a1.93 1.93 0 00.86 2.288c32.417 18.82 70.34 42.488 106.858 69.062 26.91 19.582 53.084 40.76 75.765 62.76z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3347.352 1103.78l39.735 17.645 17.93-51-40.236-16.213z\",\n fill: \"#b3d9bc\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3347.352 1103.78l39.735 17.645 17.93-51-40.236-16.213z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3691.085 1049.162l-27.348-11.004a446.37 446.37 0 003.853-16.849l27.205 10.947a1265.214 1265.214 0 01-3.71 16.906\",\n fill: \"#b3d9bc\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3691.085 1049.162l-27.348-11.004a446.37 446.37 0 003.853-16.849l27.205 10.947a1265.214 1265.214 0 01-3.71 16.906z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3176.34 1241.882c8.037-.394 14.408-8.447 14.23-17.989-.177-9.54-6.837-16.957-14.874-16.564-8.036.394-14.407 8.448-14.23 17.99.179 9.54 6.838 16.956 14.874 16.563\",\n fill: \"#eb6675\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3176.34 1241.882c8.037-.394 14.408-8.447 14.23-17.989-.177-9.54-6.837-16.957-14.874-16.564-8.036.394-14.407 8.448-14.23 17.99.179 9.54 6.838 16.956 14.874 16.563z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3868.401 454.396l-39.964-165.618c-.764-3.092-3.786-2.49-3.095.954l34.08 169.726c2.001 9.994 4.407 17.836 13.454 23.917 13.126 8.822 28.803 14.466 44.62 15.792 3.593.3 6.285-1.533 1.557-2.954-13.014-3.914-26.016-9.71-37.19-17.887-8.809-6.444-10.906-13.75-13.462-23.93\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M773.802 944.953l.074.037c2.522 1.283 4.271 2.947 5.633 5.855.863 1.694 1.541 3.727 2.018 6.161l57.76 294.083a2.575 2.575 0 005.054-.986l-57.31-291.798c-2.072-10.552-4.998-14.945-10.819-17.907-5.596-2.845-12.612-2.829-22.223-2.44l-208.082 8.43c.481 1.682.951 3.376 1.412 5.076l211.318-8.55c6.085-.267 11.234-.005 15.165 2.04m-233.072 6.775c-.468-1.7-.948-3.39-1.436-5.074l-48.248 1.954c.405 1.69.801 3.383 1.191 5.082zM484.64 954a501.844 501.844 0 00-1.209-5.08l-124.754 5.054.384 5.108zm-197.927 2.89a2.569 2.569 0 10.202 5.133h.013c.374-.029.751-.052 1.131-.069l64.567-2.612-.385-5.108z\",\n fill: \"#d6f2db\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M753.104 21.786L758.249 0h-5.29l-5.296 22.428zm-10.972 46.462l5.889-24.937-5.442.643-5.89 24.936zM152.807 325.445a2.571 2.571 0 10.282 5.135l507.1-28.342c20.311-1.135 28.64-8.273 33.306-28.039l43.554-184.427-5.443.643-1.265 5.36-42.561 180.223c-.804 3.407-2.042 6.61-3.716 9.433-1.355 2.417-2.942 4.38-4.856 5.96-3.496 3.1-7.945 5.078-13.363 5.38l-5.898.33-.04.002z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M787.94 146.897a2.571 2.571 0 00.241 5.135l110.273-5.187c7.522-.352 11.776-3.639 13.498-10.495L946.072 0h-5.307l-33.806 135.101c-1.145 4.561-3.687 6.373-8.747 6.61z\",\n fill: \"#b3d9bc\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1054.873 1253.989l199.569-1.091c1.833-.01 3.334.428 4.358 1.317.93.808 1.514 2.066 1.638 3.78l9.685 132.459h3.87l-9.704-132.731c-.201-2.797-1.26-4.94-2.967-6.423-1.75-1.52-4.121-2.268-6.895-2.253l-200.566 1.096zm-90.573-3.356a1.925 1.925 0 10.015 3.85l82.66-.451-1.161-3.845z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M732.066 1044.222c3.854-2.87 4.49-8.535 1.423-12.657-3.07-4.121-8.68-5.137-12.533-2.268-3.854 2.869-4.492 8.535-1.423 12.657 3.068 4.122 8.679 5.137 12.533 2.268\",\n fill: \"#da003e\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M724.723 1013.654c3.854-2.868 4.49-8.535 1.423-12.656-3.07-4.122-8.68-5.138-12.533-2.269-3.854 2.87-4.491 8.535-1.423 12.657 3.068 4.122 8.679 5.137 12.533 2.268\",\n fill: \"#50b58b\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M297.842 0l5.711 82.041c.54 7.745 1.9 13.399 7.124 19.343l24.8 28.209c2.821 3.209-1.933 5.051-5.805 1.189l-27.137-27.052c-4.349-4.334-6.694-11.229-7.348-17.223L285.76 0z\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2664.988 0h579.408l49.308 154.723c2.002 6.282.527 13.299-4.479 17.67l-7.852 6.856c-4.56 3.982-7.795 5.787-14.025 5.632l-537.898-12.355c-6.982-.174-9.328-2.808-11.466-9.386z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3179.358 163.777l-424.494-10.505c-4.832-.12-10.614.166-14.535 3.148l-7.673 5.834c-4.154 3.158-5.168.952-3.502-2.556l4.062-8.557c1.593-3.99 3.455-8.447 2.134-12.513l-38.077-110.31c-1.754-5.399 1.536-4.243 2.75-1.27l43.244 107.85c2.618 6.413 7.017 9.03 13.863 9.341l422.748 17.558c5.045.238 3.805 2.097-.52 1.98M3017.365 40.424c-24.918 5.908-53.692.134-70.449-18.9-5.859-6.656-9.694-14.008-11.592-21.524h-9.088c1.346 9.089 5.463 18.099 12.507 26.1 18.572 21.096 51.333 28.212 77.943 18.38 6.237-2.305 9.701-6.195.68-4.056\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2658.727 0l54.613 166.776c1.176 3.488 2.653 6.213 4.894 8.183 2.325 2.043 5.292 3.138 9.338 3.243l535.138 10.211c3.496.082 3.44-3.559.282-3.633l-535.28-12.554c-2.53-.067-4.283-.663-5.541-1.767-1.34-1.179-2.31-3.062-3.16-5.581L2665.022 0z\",\n fill: \"#fff\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3212.787 100.526c41.191-22.908 68.722-49.557 86.295-75.555 5.696-8.427 10.35-16.8 14.088-24.97h-12.16c-3.087 6.173-6.744 12.472-11.037 18.826-16.723 24.74-43.028 50.157-82.514 72.117z\",\n fill: \"#000003\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3593.288 1209.864l-72.375 175.875\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3108.336 1222.304c4.604.658 8.996-3.44 9.81-9.15.817-5.712-2.254-10.874-6.857-11.532-4.603-.657-8.996 3.44-9.81 9.15-.817 5.712 2.254 10.875 6.857 11.532z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3111.037 1216.99l3.75 14.439 8.063 5.062m-4.456-8.482l6.47 3.844m44.302-39.941l-4.59-2.577m7.241-5.137l-4.996-2.806m-326.324-881.24c6.106 25.48-1.44 58.548-14.145 75.8m3.8 7.236c-8.82-11.868-12.98-44.101-12.277-59.788\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1112.614 1346.8l-22.968 2.105c-4.534.415-3.4 1.796.095 1.843 7.966.108 15.936.22 23.904.329 5.02.069 5.848 1.63 6.498 6.174l4.753 33.204 6-.001c-2.27-12.03-4.54-24.061-6.807-36.09-1.331-7.067-4.488-8.203-11.475-7.563\",\n fill: \"#458a6d\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2579.686 298.452c-5.175 2.076-7.827 10.008-3.34 14.351m377.489 50.2c9.523-18.928 14.066-36.604 12.544-54.073m-58.2 287.401c-6.615-47.892-32.078-81.929-72.558-105.522-21.432-12.494-47.647-27.69-62.742-52.578m53.269 2.829c8.293 17.13 21.466 31.254 30.58 48.77m74.67 97.861c16.63 36.595-50.433 74.508-104.632 77.91m-47.622-163.866c41.912 28.782 78.723 21.565 109.534 67.747\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3709.444 1020.017c3.937-1.078 6.12-6.31 4.875-11.682-1.244-5.373-5.443-8.855-9.38-7.777-3.936 1.078-6.119 6.309-4.875 11.682 1.244 5.373 5.443 8.855 9.38 7.777z\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 3,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2706.667 616.821c8.24 11.21 22.41 16.745 42.896 18.214 13.812.99 28.555 8.392 36.413 11.717 5.351 2.263 8.657 3.97 7.546-2.793-.783-4.774-6.115-12.1 3.333-9.313 10.636 3.14 20.449 7.596 31.151 10.348 8.732 2.245 12.705 3.646 9.654-5.923-1.828-5.733-10.256-16.21 17.951-7.627-7.249-9.19-17.463-12.956-28.471-15.666-9.196-2.264-7.542 1.43 1.12 14.056 4.403 6.418 2.166 7.623-25.182-3.667-17.863-7.374-31.383-15.724-23.987 2.056 1.302 3.13 4.406 8.413 4.863 9.366 1.23 2.564-10.987-6.97-13.689-7.967-11.504-4.243-15.908-3.475-28.152-3.893-12.289-.419-23.373-.437-35.446-8.908\",\n fill: \"#db003f\",\n fillRule: \"evenodd\"\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2548.26 145.115c2.485-9.978.192-15.032-5.773-17.045-11.69-3.944-21.328 16.021-14.778 27.331 4.649 8.026 16.617 5.504 20.55-10.286zm361.575 275.001a105.838 105.838 0 005.594 7.53\",\n fill: \"none\",\n stroke: \"#000003\",\n strokeWidth: 2,\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n strokeMiterlimit: 22.926\n }))));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgBaseInside);\nexport default __webpack_public_path__ + \"static/media/base_inside.b076385cae105e8c423dd8612f6987d8.svg\";\nexport { ForwardRef as ReactComponent };","var _rect, _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _defs;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgPowered(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 314,\n height: 34,\n viewBox: \"0 0 314 34\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _rect || (_rect = /*#__PURE__*/React.createElement(\"rect\", {\n x: 0.5,\n y: 0.5,\n width: 313,\n height: 33,\n rx: 3.5,\n stroke: \"url(#paint0_linear_1731_228)\"\n })), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12.002 15.941V13.026H13.652C14.653 13.026 15.269 13.609 15.269 14.5C15.269 15.358 14.653 15.941 13.652 15.941H12.002ZM13.795 16.766C15.236 16.766 16.193 15.798 16.193 14.489C16.193 13.191 15.236 12.201 13.795 12.201H11.078V20H12.002V16.766H13.795ZM19.301 14.577C17.783 14.577 16.661 15.743 16.661 17.36C16.661 18.988 17.783 20.154 19.301 20.154C20.819 20.154 21.941 18.988 21.941 17.36C21.941 15.743 20.819 14.577 19.301 14.577ZM19.301 15.369C20.247 15.369 21.061 16.084 21.061 17.36C21.061 18.647 20.247 19.362 19.301 19.362C18.355 19.362 17.541 18.647 17.541 17.36C17.541 16.084 18.355 15.369 19.301 15.369ZM26.3143 14.731L24.8623 18.9L23.5753 14.731H22.6293L24.3783 20H25.3133L26.7653 15.798L28.2393 20H29.1633L30.8793 14.731H29.9443L28.6903 18.9L27.2273 14.731H26.3143ZM32.4952 16.854C32.5502 16.073 33.1662 15.358 34.0792 15.358C35.0802 15.358 35.6192 16.018 35.6412 16.854H32.4952ZM35.7622 18.229C35.5532 18.856 35.0692 19.362 34.1782 19.362C33.2322 19.362 32.4732 18.647 32.4732 17.646V17.602H36.5322C36.5432 17.525 36.5542 17.404 36.5542 17.294C36.5542 15.688 35.6632 14.577 34.0682 14.577C32.7372 14.577 31.5712 15.688 31.5712 17.349C31.5712 19.12 32.7702 20.154 34.1782 20.154C35.3992 20.154 36.2242 19.417 36.5212 18.504L35.7622 18.229ZM40.7123 14.698C40.6353 14.676 40.4813 14.654 40.3383 14.654C39.7553 14.654 39.0843 14.907 38.7433 15.677V14.731H37.8853V20H38.7653V17.272C38.7653 16.084 39.3703 15.578 40.2503 15.578C40.4043 15.578 40.5693 15.589 40.7123 15.633V14.698ZM42.1954 16.854C42.2504 16.073 42.8664 15.358 43.7794 15.358C44.7804 15.358 45.3194 16.018 45.3414 16.854H42.1954ZM45.4624 18.229C45.2534 18.856 44.7694 19.362 43.8784 19.362C42.9324 19.362 42.1734 18.647 42.1734 17.646V17.602H46.2324C46.2434 17.525 46.2544 17.404 46.2544 17.294C46.2544 15.688 45.3634 14.577 43.7684 14.577C42.4374 14.577 41.2714 15.688 41.2714 17.349C41.2714 19.12 42.4704 20.154 43.8784 20.154C45.0994 20.154 45.9244 19.417 46.2214 18.504L45.4624 18.229ZM51.4025 19.241C51.4025 19.582 51.4355 19.879 51.4575 20H52.3155C52.2935 19.89 52.2605 19.538 52.2605 19.01V12.047H51.3805V15.578C51.2045 15.138 50.6875 14.577 49.6755 14.577C48.2015 14.577 47.2335 15.831 47.2335 17.36C47.2335 18.922 48.1575 20.154 49.6755 20.154C50.5885 20.154 51.1605 19.615 51.4025 19.098V19.241ZM49.7525 19.362C48.7625 19.362 48.1135 18.526 48.1135 17.36C48.1135 16.194 48.7515 15.369 49.7525 15.369C50.7535 15.369 51.4025 16.194 51.4025 17.36C51.4025 18.526 50.7425 19.362 49.7525 19.362ZM57.6389 20V19.131C57.9469 19.703 58.5629 20.154 59.4429 20.154C60.9719 20.154 61.8629 18.933 61.8629 17.36C61.8629 15.82 61.0269 14.577 59.4649 14.577C58.5189 14.577 57.9029 15.094 57.6609 15.589V12.047H56.7809V20H57.6389ZM59.3109 19.362C58.2989 19.362 57.6389 18.526 57.6389 17.36C57.6389 16.194 58.2879 15.369 59.3109 15.369C60.3339 15.369 60.9829 16.194 60.9829 17.36C60.9829 18.526 60.3229 19.362 59.3109 19.362ZM64.3641 22.09L67.7411 14.731H66.7841L65.1451 18.46L63.4071 14.731H62.3951L64.6611 19.373L63.3851 22.09H64.3641ZM73.5483 15.369C74.4943 15.369 74.9233 16.018 75.0663 16.579L75.8583 16.238C75.6383 15.402 74.9013 14.577 73.5483 14.577C72.0633 14.577 70.9413 15.721 70.9413 17.36C70.9413 18.966 72.0413 20.154 73.5593 20.154C74.9123 20.154 75.6493 19.296 75.9023 18.515L75.1323 18.174C74.9783 18.658 74.5603 19.362 73.5593 19.362C72.6243 19.362 71.8213 18.625 71.8213 17.36C71.8213 16.084 72.6243 15.369 73.5483 15.369ZM79.9858 14.698C79.9088 14.676 79.7548 14.654 79.6118 14.654C79.0288 14.654 78.3578 14.907 78.0168 15.677V14.731H77.1588V20H78.0388V17.272C78.0388 16.084 78.6438 15.578 79.5238 15.578C79.6778 15.578 79.8428 15.589 79.9858 15.633V14.698ZM82.368 22.09L85.745 14.731H84.788L83.149 18.46L81.411 14.731H80.399L82.665 19.373L81.389 22.09H82.368ZM87.6638 22.09V19.186C87.9388 19.681 88.5438 20.154 89.4458 20.154C90.9638 20.154 91.8658 18.933 91.8658 17.36C91.8658 15.787 91.0188 14.577 89.4678 14.577C88.5328 14.577 87.9168 15.072 87.6418 15.611V14.731H86.7838V22.09H87.6638ZM89.3138 19.362C88.3018 19.362 87.6418 18.526 87.6418 17.36C87.6418 16.194 88.2908 15.369 89.3138 15.369C90.3368 15.369 90.9858 16.194 90.9858 17.36C90.9858 18.526 90.3258 19.362 89.3138 19.362ZM94.4192 13.059H93.5942V13.928C93.5942 14.423 93.3632 14.731 92.8242 14.731H92.4832V15.523H93.5392V18.559C93.5392 19.516 94.1002 20.055 94.9692 20.055C95.3102 20.055 95.5632 19.989 95.6622 19.956V19.208C95.5742 19.23 95.3762 19.263 95.2222 19.263C94.6612 19.263 94.4192 18.988 94.4192 18.438V15.523H95.6622V14.731H94.4192V13.059ZM99.1477 14.577C97.6297 14.577 96.5077 15.743 96.5077 17.36C96.5077 18.988 97.6297 20.154 99.1477 20.154C100.666 20.154 101.788 18.988 101.788 17.36C101.788 15.743 100.666 14.577 99.1477 14.577ZM99.1477 15.369C100.094 15.369 100.908 16.084 100.908 17.36C100.908 18.647 100.094 19.362 99.1477 19.362C98.2017 19.362 97.3877 18.647 97.3877 17.36C97.3877 16.084 98.2017 15.369 99.1477 15.369Z\",\n fill: \"white\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M149.945 19.8486C150.195 19.8486 150.399 19.6561 150.399 19.4187V13.5719C150.399 13.3344 150.195 13.1419 149.945 13.1419H149.454C149.203 13.1419 149 13.3344 149 13.5719V19.4187C149 19.6561 149.203 19.8486 149.454 19.8486H149.945Z\",\n fill: \"white\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M160.641 19.8486C160.892 19.8486 161.095 19.6561 161.095 19.4187V13.5719C161.095 13.3344 160.892 13.1419 160.641 13.1419H160.171C159.92 13.1419 159.717 13.3344 159.717 13.5719V17.5784L156.903 13.3429C156.82 13.2178 156.675 13.1419 156.519 13.1419H155.505C155.254 13.1419 155.051 13.3344 155.051 13.5719V19.4187C155.051 19.6561 155.254 19.8486 155.505 19.8486H155.976C156.226 19.8486 156.43 19.6561 156.43 19.4187V15.0905L159.513 19.6505C159.596 19.774 159.74 19.8486 159.895 19.8486H160.641Z\",\n fill: \"white\"\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M170.497 14.3811C170.748 14.3811 170.951 14.1886 170.951 13.9511V13.5719C170.951 13.3344 170.748 13.1419 170.497 13.1419H165.541C165.29 13.1419 165.087 13.3344 165.087 13.5719V13.9511C165.087 14.1886 165.29 14.3811 165.541 14.3811H167.324V19.4187C167.324 19.6561 167.528 19.8486 167.779 19.8486H168.259C168.51 19.8486 168.713 19.6561 168.713 19.4187V14.3811H170.497Z\",\n fill: \"white\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M178.921 19.8486C179.171 19.8486 179.375 19.6561 179.375 19.4187V19.0489C179.375 18.8114 179.171 18.6189 178.921 18.6189H176.317V17.0676H178.631C178.882 17.0676 179.085 16.8751 179.085 16.6376V16.334C179.085 16.0966 178.882 15.9041 178.631 15.9041H176.317V14.3716H178.921C179.171 14.3716 179.375 14.1791 179.375 13.9416V13.5719C179.375 13.3344 179.171 13.1419 178.921 13.1419H175.393C175.142 13.1419 174.939 13.3344 174.939 13.5719V19.4187C174.939 19.6561 175.142 19.8486 175.393 19.8486H178.921Z\",\n fill: \"white\"\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M187.092 19.6138C187.17 19.7579 187.326 19.8486 187.497 19.8486H188.006C188.348 19.8486 188.567 19.5054 188.408 19.2191L187.238 17.1054C188.167 16.85 188.747 16.1405 188.747 15.2041C188.747 14.0405 187.868 13.1419 186.489 13.1419H184.176C183.925 13.1419 183.722 13.3344 183.722 13.5719V19.4187C183.722 19.6561 183.925 19.8486 184.176 19.8486H184.656C184.907 19.8486 185.11 19.6561 185.11 19.4187V17.2662H185.83L187.092 19.6138ZM185.11 16.1405V14.277H186.229C186.929 14.277 187.338 14.6459 187.338 15.2135C187.338 15.7622 186.929 16.1405 186.229 16.1405H185.11Z\",\n fill: \"white\"\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M198.602 19.8486C198.853 19.8486 199.056 19.6561 199.056 19.4187V13.5719C199.056 13.3344 198.853 13.1419 198.602 13.1419H198.132C197.881 13.1419 197.677 13.3344 197.677 13.5719V17.5784L194.864 13.3429C194.781 13.2178 194.635 13.1419 194.479 13.1419H193.466C193.215 13.1419 193.012 13.3344 193.012 13.5719V19.4187C193.012 19.6561 193.215 19.8486 193.466 19.8486H193.936C194.187 19.8486 194.391 19.6561 194.391 19.4187V15.0905L197.474 19.6505C197.557 19.774 197.701 19.8486 197.856 19.8486H198.602Z\",\n fill: \"white\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M207.698 19.8486C207.949 19.8486 208.153 19.6561 208.153 19.4187V19.0489C208.153 18.8114 207.949 18.6189 207.698 18.6189H205.095V17.0676H207.409C207.659 17.0676 207.863 16.8751 207.863 16.6376V16.334C207.863 16.0966 207.659 15.9041 207.409 15.9041H205.095V14.3716H207.698C207.949 14.3716 208.153 14.1791 208.153 13.9416V13.5719C208.153 13.3344 207.949 13.1419 207.698 13.1419H204.171C203.92 13.1419 203.717 13.3344 203.717 13.5719V19.4187C203.717 19.6561 203.92 19.8486 204.171 19.8486H207.698Z\",\n fill: \"white\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M217.241 14.3811C217.491 14.3811 217.695 14.1886 217.695 13.9511V13.5719C217.695 13.3344 217.491 13.1419 217.241 13.1419H212.284C212.033 13.1419 211.83 13.3344 211.83 13.5719V13.9511C211.83 14.1886 212.033 14.3811 212.284 14.3811H214.068V19.4187C214.068 19.6561 214.271 19.8486 214.522 19.8486H215.003C215.253 19.8486 215.457 19.6561 215.457 19.4187V14.3811H217.241Z\",\n fill: \"white\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M229.984 19.9905C231.728 19.9905 232.726 19.0305 233.127 18.0989C233.218 17.8868 233.08 17.6588 232.848 17.5925L232.413 17.468C232.171 17.3986 231.919 17.5336 231.798 17.744C231.507 18.2475 230.939 18.7135 229.984 18.7135C228.845 18.7135 227.786 17.9284 227.786 16.5C227.786 14.977 228.905 14.2581 229.964 14.2581C230.923 14.2581 231.468 14.6896 231.742 15.1846C231.863 15.404 232.123 15.5479 232.373 15.4734L232.806 15.344C233.034 15.2759 233.171 15.0505 233.082 14.8401C232.682 13.8845 231.693 13 229.964 13C228.066 13 226.358 14.3622 226.358 16.5C226.358 18.6378 228.006 19.9905 229.984 19.9905Z\",\n fill: \"white\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M238.335 16.4905C238.335 14.977 239.454 14.2581 240.543 14.2581C241.642 14.2581 242.761 14.977 242.761 16.4905C242.761 18.0041 241.642 18.723 240.543 18.723C239.454 18.723 238.335 18.0041 238.335 16.4905ZM236.906 16.5C236.906 18.6568 238.625 19.9905 240.543 19.9905C242.471 19.9905 244.19 18.6568 244.19 16.5C244.19 14.3338 242.471 13 240.543 13C238.625 13 236.906 14.3338 236.906 16.5Z\",\n fill: \"white\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M255.87 19.8486C256.12 19.8486 256.324 19.6561 256.324 19.4187V13.5719C256.324 13.3344 256.12 13.1419 255.87 13.1419H254.751C254.566 13.1419 254.4 13.2479 254.331 13.41L252.368 17.9851L250.356 13.4067C250.285 13.2464 250.12 13.1419 249.937 13.1419H248.875C248.624 13.1419 248.421 13.3344 248.421 13.5719V19.4187C248.421 19.6561 248.624 19.8486 248.875 19.8486H249.286C249.537 19.8486 249.74 19.6561 249.74 19.4187V15.1851L251.662 19.5831C251.732 19.7438 251.898 19.8486 252.082 19.8486H252.622C252.807 19.8486 252.973 19.7433 253.043 19.5819L254.965 15.1473V19.4187C254.965 19.6561 255.168 19.8486 255.419 19.8486H255.87Z\",\n fill: \"white\"\n })), _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M262.369 16.1973V14.277H263.457C264.147 14.277 264.566 14.6459 264.566 15.2419C264.566 15.8189 264.147 16.1973 263.457 16.1973H262.369ZM263.627 17.323C265.026 17.323 265.955 16.4527 265.955 15.2324C265.955 14.0216 265.026 13.1419 263.627 13.1419H261.434C261.183 13.1419 260.98 13.3344 260.98 13.5719V19.4187C260.98 19.6561 261.183 19.8486 261.434 19.8486H261.904C262.155 19.8486 262.359 19.6561 262.359 19.4187V17.323H263.627Z\",\n fill: \"white\"\n })), _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.684 20C274.202 20 275.411 19.1203 275.411 17.4743V13.5719C275.411 13.3344 275.208 13.1419 274.957 13.1419H274.486C274.236 13.1419 274.032 13.3344 274.032 13.5719V17.3797C274.032 18.2595 273.523 18.723 272.684 18.723C271.864 18.723 271.345 18.2595 271.345 17.3797V13.5719C271.345 13.3344 271.142 13.1419 270.891 13.1419H270.42C270.169 13.1419 269.966 13.3344 269.966 13.5719V17.4743C269.966 19.1203 271.175 20 272.684 20Z\",\n fill: \"white\"\n })), _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M284.75 14.3811C285.001 14.3811 285.204 14.1886 285.204 13.9511V13.5719C285.204 13.3344 285.001 13.1419 284.75 13.1419H279.794C279.543 13.1419 279.34 13.3344 279.34 13.5719V13.9511C279.34 14.1886 279.543 14.3811 279.794 14.3811H281.578V19.4187C281.578 19.6561 281.781 19.8486 282.032 19.8486H282.512C282.763 19.8486 282.966 19.6561 282.966 19.4187V14.3811H284.75Z\",\n fill: \"white\"\n })), _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M293.174 19.8486C293.424 19.8486 293.628 19.6561 293.628 19.4187V19.0489C293.628 18.8114 293.424 18.6189 293.174 18.6189H290.571V17.0676H292.884C293.135 17.0676 293.338 16.8751 293.338 16.6376V16.334C293.338 16.0966 293.135 15.9041 292.884 15.9041H290.571V14.3716H293.174C293.424 14.3716 293.628 14.1791 293.628 13.9416V13.5719C293.628 13.3344 293.424 13.1419 293.174 13.1419H289.646C289.395 13.1419 289.192 13.3344 289.192 13.5719V19.4187C289.192 19.6561 289.395 19.8486 289.646 19.8486H293.174Z\",\n fill: \"white\"\n })), _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M301.345 19.6138C301.423 19.7579 301.579 19.8486 301.75 19.8486H302.259C302.601 19.8486 302.82 19.5054 302.661 19.2191L301.491 17.1054C302.421 16.85 303 16.1405 303 15.2041C303 14.0405 302.121 13.1419 300.742 13.1419H297.975V19.4187C297.975 19.6561 298.178 19.8486 298.429 19.8486H298.909C299.16 19.8486 299.363 19.6561 299.363 19.4187V17.2662H300.083L301.345 19.6138ZM299.363 16.1405V14.277H300.482C301.182 14.277 301.591 14.6459 301.591 15.2135C301.591 15.7622 301.182 16.1405 300.482 16.1405H299.363Z\",\n fill: \"white\"\n })), _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M134.653 9C132.759 9 130.694 9.97059 128.512 11.8824C127.476 12.7882 126.582 13.7588 125.912 14.5353C125.912 14.5353 125.912 14.5353 125.918 14.5412V14.5353C125.918 14.5353 126.976 15.6882 128.147 16.9235C128.776 16.1765 129.682 15.1588 130.723 14.2412C132.665 12.5412 133.929 12.1824 134.653 12.1824C137.376 12.1824 139.588 14.3412 139.588 16.9941C139.588 19.6294 137.37 21.7882 134.653 21.8059C134.529 21.8059 134.37 21.7882 134.17 21.7471C134.965 22.0882 135.817 22.3353 136.629 22.3353C141.617 22.3353 142.594 19.0823 142.659 18.8471C142.806 18.2529 142.882 17.6294 142.882 16.9882C142.882 12.5882 139.188 9 134.653 9Z\",\n fill: \"url(#paint1_linear_1731_228)\"\n })), _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M117.229 24.9999C119.124 24.9999 121.188 24.0293 123.371 22.1175C124.406 21.2116 125.3 20.241 125.971 19.4646C125.971 19.4646 125.971 19.4646 125.965 19.4587V19.4646C125.965 19.4646 124.906 18.3116 123.735 17.0763C123.106 17.8234 122.2 18.841 121.159 19.7587C119.218 21.4587 117.953 21.8175 117.229 21.8175C114.506 21.8116 112.294 19.6528 112.294 16.9999C112.294 14.3646 114.512 12.2057 117.229 12.1881C117.353 12.1881 117.512 12.2057 117.712 12.2469C116.918 11.9058 116.065 11.6587 115.253 11.6587C110.265 11.6587 109.294 14.9116 109.224 15.141C109.076 15.741 109 16.3587 109 16.9999C109 21.4116 112.694 24.9999 117.229 24.9999Z\",\n fill: \"url(#paint2_linear_1731_228)\"\n })), _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M136.618 22.2647C134.065 22.2 131.412 20.1882 130.871 19.6882C129.471 18.3941 126.241 14.8941 125.988 14.6176C123.624 11.9647 120.418 9 117.23 9H117.224H117.218C113.347 9.01765 110.094 11.6412 109.224 15.1412C109.288 14.9118 110.565 11.5941 115.247 11.7118C117.8 11.7765 120.465 13.8176 121.012 14.3176C122.412 15.6118 125.641 19.1118 125.894 19.3882C128.259 22.0353 131.465 25 134.653 25H134.659H134.665C138.535 24.9823 141.794 22.3588 142.659 18.8588C142.588 19.0882 141.306 22.3765 136.618 22.2647Z\",\n fill: \"#29ABE2\"\n })), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_1731_228\",\n x1: 130.369,\n y1: 10.055,\n x2: 141.558,\n y2: 21.6414,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.21,\n stopColor: \"#F15A24\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.6841,\n stopColor: \"#FBB03B\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint2_linear_1731_228\",\n x1: 121.513,\n y1: 23.9449,\n x2: 110.324,\n y2: 12.3585,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.21,\n stopColor: \"#ED1E79\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.8929,\n stopColor: \"#522785\"\n })))));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgPowered);\nexport default __webpack_public_path__ + \"static/media/powered.8722c2fcd4b381922ba83aaa0e9fdbac.svg\";\nexport { ForwardRef as ReactComponent };","var _defs;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgIcblast(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n id: \"b\",\n \"data-name\": \"Layer 2\",\n xmlns: \"http://www.w3.org/2000/svg\",\n xmlnsXlink: \"http://www.w3.org/1999/xlink\",\n viewBox: \"0 0 514.95 222.38\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"d\",\n x1: 149.41,\n y1: -1.07,\n x2: 18.65,\n y2: 192.79,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0,\n stopColor: \"#1fddff\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.16,\n stopColor: \"#3fbdf1\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.57,\n stopColor: \"#8c72d0\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.86,\n stopColor: \"#bc43bc\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#cf32b5\"\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"c\",\n \"data-name\": \"Layer 1\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.31,198.28c-1.8-1.23-3.53-2.43-5.2-3.59,.66-.34,1.32-.71,1.98-1.11,3.86-2.33,5.31-3.25,10.01-2.55l45.89,6.85-38.66-19.5c-1.07-.56-1.79-1.06-1.23-2.39,.06-.14,.12-.29,.18-.43,.49-1.2,1.6-1.63,2.76-1.87l76.21-17.35H77.14c-3.08-.07-4.88-.12-6.2-1.06l82.27-58.85,10.77,15.06c3.99,5.58,6.01,11.58,5.19,18.78-3.5,26.27-10.15,39.46-21.7,50.52h-23.89l17.29,5.73c-4.75,3.78-10.15,7.54-16.31,11.76l-35.13,24.1-35.13-24.1h0ZM172.35,29.04c-31.32,6.74-65.7-1.63-82.9-29.04C72.25,27.41,37.87,35.79,6.55,29.04v45.83c0,19.67,.78,39.92,3.77,59.39,1.17-1.28,1.82-2.67,2.23-4.85l11.98-63.57v57.66c.25,2.46,1.03,3.13,3.51,2.73,.74-.12,1.5-.22,2.26-.29,3.17-.31,4.61-1.62,5.77-4.52L72.8,30.03l-15.36,77.47c-1.32,6.66-4.18,11.48-9.53,15.73l-15.77,12.34c-13.17,10.3-25.28,28.63-32.13,50.88,.37-.84,.77-1.67,1.17-2.51,8.3-17.09,23.09-34.38,30.14-39.41l99.34-70.87c2.98,5.84-.72,9.27-4.26,12.43l-63.14,48.65c-8.06,6.21-16.73,14.26-22.02,22.13l91.27-65.38c8.04-5.77,8.62-11.98,3.04-19.79l-17.48-24.48,1.48-1.06c4.26-3.04,10.26-2.03,13.29,2.22l15.76,22.08,17.97-12.97c4.66-3.36,5.78-6.48,5.78-12.23,0-6.12,0-10.11,0-16.23h0Zm-76.1,18.15l-22.44,50.61,20.69-28.94c5.66-7.92,5.44-13.04,1.75-21.66h0ZM55.75,184.41c-6.79-6.71-15.63-7.9-24.4-5-5.51,1.83-13.01,3.75-18.82,5H55.75Zm120.01-113.65l-17.84,12.76,11.11,15.53,2.67,3.73c.26-5.57,.45-10.86,.55-16.64,.11-6.32,1.1-10.06,3.52-15.38Z\",\n style: {\n fill: \"url(#d)\",\n fillRule: \"evenodd\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M224.06,151.14h28.21c15.76,0,23.39-8.53,23.39-20.29,0-10.2-5.82-16.65-14.15-18.73v-.1c7.33-3.02,10.54-9.89,10.54-16.76,0-12.07-8.54-18.01-23.19-18.01h-24.8v73.9h0Zm12.15-43.3v-19.36l11.34-.1c8.33-.08,12.15,3.85,12.15,9.68,0,6.97-4.92,9.78-11.75,9.78h-11.75Zm0,32.06v-21.23h12.65c9.44,0,14.15,4.27,14.15,10.82,0,6.97-4.72,10.41-12.25,10.41h-14.56Zm50.63,11.24h39.45l4.48-11.24h-31.78v-62.66h-12.15v73.9h0Zm49.29,0h12.65l5.32-15.92h29.11l5.42,15.92h12.65l-26.7-73.9h-11.85l-26.6,73.9h0Zm21.68-26.75l10.74-32.06h.2l10.84,32.06h-21.79Zm73.94,27.58c11.44,0,24.6-6.87,24.6-22.17,0-14.26-9.82-17.74-22.09-22.69-8.62-3.48-13.45-5.31-13.35-10.72,.1-5.52,4.52-8.64,10.04-8.64,4.82,0,12.34,3.08,18.17,8.15l4.53-11.45c-6.88-5.28-14.76-8.05-22.7-8.05-12.35,0-22.59,9.06-22.59,20.61,0,13.53,10.75,18.51,21.58,22.48,9.04,3.31,13.75,5.41,13.75,11.87,0,3.64-1.82,6.44-5.39,7.87-5.17,2.08-10.95,.94-15.83-1.42-4-1.93-7.95-4.88-10.76-8.42l-4.87,12.22c6.99,6.57,15.77,10.35,24.9,10.35h0Zm49.44-.83h12.15v-62.66h17.14l4.48-11.24h-50.6l-4.48,11.24h21.31v62.66Z\",\n style: {\n fill: \"#5da1e5\",\n fillRule: \"evenodd\"\n }\n })));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgIcblast);\nexport default __webpack_public_path__ + \"static/media/icblast.1b8456299bb3193275d6ea0ed03a6397.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2, _path3, _ellipse, _path4, _path5, _path6, _path7, _path8, _path9, _ellipse2, _path10, _path11, _path12, _defs;\n\nvar _excluded = [\"title\", \"titleId\"];\n\nfunction _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport * as React from \"react\";\n\nfunction SvgAzle(_ref, svgRef) {\n var title = _ref.title,\n titleId = _ref.titleId,\n props = _objectWithoutProperties(_ref, _excluded);\n\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n width: 474,\n height: 474,\n viewBox: \"0 0 474 474\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M82 405V103.002C94.0266 126.813 158.844 145 237 145C315.156 145 379.973 126.813 392 103.002V405C392 432.614 322.604 455 237 455C151.396 455 82 432.614 82 405Z\",\n fill: \"url(#paint0_linear_103_70)\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M237 213.5C185.732 248.5 108 246 106 213V392.037V392.544H106.014C107.06 411.068 165.304 426 237 426C308.696 426 366.94 411.068 367.986 392.544H368V392.061C368 392.053 368 392.045 368 392.037C368 392.029 368 392.021 368 392.014V206C335.458 165.93 274 188.241 237 213.5Z\",\n fill: \"url(#paint1_linear_103_70)\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M237 213.5C185.732 248.5 108 246 106 213V392.037V392.544H106.014C107.06 411.068 165.304 426 237 426C308.696 426 366.94 411.068 367.986 392.544H368V392.061C368 392.053 368 392.045 368 392.037C368 392.029 368 392.021 368 392.014V206C335.458 165.93 274 188.241 237 213.5Z\",\n fill: \"url(#paint2_linear_103_70)\",\n fillOpacity: 0.2\n })), _ellipse || (_ellipse = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 237,\n cy: 392.037,\n rx: 131,\n ry: 33.9631,\n fill: \"url(#paint3_radial_103_70)\",\n fillOpacity: 0.1\n })), _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237 213.5C237 213.5 204.5 238.478 158 239C128.002 239.337 105.5 230.5 106 211C106 192.499 134.507 185 153.5 185.5C191.5 186.5 237 213.5 237 213.5Z\",\n fill: \"url(#paint4_linear_103_70)\"\n })), _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237 213.5C237 213.5 269.5 233.478 316 234C345.998 234.337 368.5 225.5 368 206C368 206 353 184 320 184C277.5 184 237 213.5 237 213.5Z\",\n fill: \"url(#paint5_linear_103_70)\"\n })), _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M224.366 381.399C224.142 380.655 217.96 360.083 217.736 359.339C206.598 358.853 195.48 357.941 184.414 356.602C182.193 363.596 179.962 370.573 177.72 377.523C170.787 376.564 163.878 375.436 157 374.137C167.826 345.727 178.52 316.382 189.087 286.982C196.981 287.823 204.897 288.455 212.823 288.877C223.756 320.251 234.433 350.908 245.358 381.491C238.361 381.63 231.361 381.599 224.366 381.399V381.399ZM213.113 342.812C212.429 340.575 207.162 323.329 206.478 321.092C206.061 319.642 205.496 317.785 204.785 315.519C204.115 313.214 203.424 310.886 202.711 308.533C202.041 306.142 201.494 304.072 201.074 302.325C200.661 304.004 200.081 306.089 199.336 308.574C198.631 311.022 197.948 313.345 197.284 315.542C196.621 317.735 196.142 319.306 195.854 320.236C193.675 327.134 191.492 334.019 189.304 340.879C197.221 341.739 205.161 342.384 213.113 342.812ZM316.437 374.165C294.029 378.38 271.289 380.798 248.501 381.417C248.495 377.216 248.49 373.015 248.486 368.814C263.087 347.481 277.759 325.223 292.333 302.489C278.176 304.263 263.934 305.355 249.673 305.764C249.678 300.413 249.684 295.062 249.691 289.711C271.672 289.086 293.607 286.851 315.26 283C315.23 287.172 315.205 291.344 315.184 295.515C300.703 318.996 286.118 342.017 271.612 364.127C286.611 362.924 301.548 360.942 316.343 358.182C316.367 363.511 316.399 368.838 316.437 374.165Z\",\n fill: \"white\",\n fillOpacity: 0.9\n })), _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106 145C122 190.5 361 186.5 368 145V206C337 167.5 274.697 187 237 213.5C186.5 249 105 247 106 211V145Z\",\n fill: \"url(#paint6_linear_103_70)\"\n })), _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M368 144.963V146H367.94C365.826 164.278 308.011 178.926 237 178.926C165.989 178.926 108.174 164.278 106.06 146H106V144.963V116H168.547C188.468 112.829 211.91 111 237 111C262.09 111 285.532 112.829 305.453 116H368V144.963Z\",\n fill: \"url(#paint7_linear_103_70)\"\n })), _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M237 153C322.604 153 392 130.614 392 103V70H353.449C325.043 59.5776 283.402 53 237 53C190.598 53 148.957 59.5776 120.551 70H82V103C82 130.614 151.396 153 237 153Z\",\n fill: \"url(#paint8_linear_103_70)\"\n })), _ellipse2 || (_ellipse2 = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 237,\n cy: 70,\n rx: 155,\n ry: 50,\n fill: \"#212121\"\n })), _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184 23C199.155 21.2373 209.05 20.6037 229 20.06L328 110.5C309.838 114.67 299.383 116.361 280 118L184 23Z\",\n fill: \"#9C711E\"\n })), _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M280 118C299.193 116.23 309.677 114.517 328 110.5V252.5C317 251 313.026 249.824 304 247.5C299.722 250.347 291.5 255 280 260V118Z\",\n fill: \"#CCA725\"\n })), _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n opacity: 0.9,\n d: \"M304.006 173.346C299.665 174.002 296.458 175.443 294.297 177.941C292.147 180.427 291.06 183.936 291.082 188.525C291.157 204.009 291.13 219.501 291 235C292.827 234.883 294.656 234.759 296.48 234.604C296.581 229.609 296.66 224.615 296.718 219.622C298.437 221.256 301.434 221.948 305.341 221.254C305.556 221.215 305.769 221.174 305.978 221.129V221.129C310.185 220.265 313.689 218 316.077 215.001C318.499 211.96 319.907 208.041 319.997 203.374C320.103 197.894 316.862 195.481 311.248 194.938C314.764 192.089 316.692 187.816 316.801 182.284C316.869 178.798 316.011 176.343 314.32 174.853C312.619 173.355 310.062 172.807 306.524 173.059C305.732 173.115 304.892 173.212 304.006 173.346V173.346ZM304.566 177.803C305.238 177.698 305.858 177.641 306.425 177.636C309.778 177.616 311.406 179.356 311.294 183.164C311.163 187.596 309.364 190.947 306.167 192.894C304.73 193.792 302.946 194.394 300.739 194.667C300.736 196.383 300.732 198.099 300.726 199.815C302.817 199.454 304.599 199.24 306.092 199.197C311.105 199.117 313.973 200.701 313.923 205.134C313.855 211.189 310.986 215.322 305.983 216.379C305.84 216.411 305.694 216.441 305.546 216.468C301.955 217.117 298.961 215.633 296.787 212.361C296.846 204.314 296.85 196.271 296.799 188.231C296.758 181.9 299.365 178.62 304.566 177.803V177.803Z\",\n fill: \"white\"\n })), _defs || (_defs = /*#__PURE__*/React.createElement(\"defs\", null, /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint0_linear_103_70\",\n x1: 82,\n y1: 289,\n x2: 392,\n y2: 289,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#A3B5BD\",\n stopOpacity: 0.9\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.059645,\n stopColor: \"#C3D7E0\",\n stopOpacity: 0.9\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.179573,\n stopColor: \"#C3D7E0\",\n stopOpacity: 0.9\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#EDF5F9\",\n stopOpacity: 0.9\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint1_linear_103_70\",\n x1: 106,\n y1: 308.929,\n x2: 367.004,\n y2: 308.929,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0797683,\n stopColor: \"#016FBA\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.117981,\n stopColor: \"#017ACC\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.911119,\n stopColor: \"#017ACC\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#016FBA\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint2_linear_103_70\",\n x1: 237,\n y1: 184,\n x2: 237,\n y2: 275,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"#003355\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopOpacity: 0\n })), /*#__PURE__*/React.createElement(\"radialGradient\", {\n id: \"paint3_radial_103_70\",\n cx: 0,\n cy: 0,\n r: 1,\n gradientUnits: \"userSpaceOnUse\",\n gradientTransform: \"translate(219 394.5) rotate(90) scale(31.5 113)\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.631526,\n stopColor: \"#016FBA\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.885368,\n stopOpacity: 0.4\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopOpacity: 0.5\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint4_linear_103_70\",\n x1: 106,\n y1: 207.244,\n x2: 368,\n y2: 207.244,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0207013,\n stopColor: \"#016FBA\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.123105,\n stopColor: \"#017ACC\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#016FBA\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint5_linear_103_70\",\n x1: 302.504,\n y1: 184,\n x2: 302.504,\n y2: 234.009,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n stopColor: \"white\",\n stopOpacity: 0.11\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"white\",\n stopOpacity: 0\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint6_linear_103_70\",\n x1: 106,\n y1: 192,\n x2: 368,\n y2: 192,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0802511,\n stopOpacity: 0.05\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.114554,\n stopOpacity: 0\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.900788,\n stopOpacity: 0\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.917013,\n stopOpacity: 0.05\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint7_linear_103_70\",\n x1: 106,\n y1: 229.548,\n x2: 367.004,\n y2: 229.548,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0797683,\n stopColor: \"#212121\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.119244,\n stopColor: \"#343434\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.911119,\n stopColor: \"#343434\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#212121\"\n })), /*#__PURE__*/React.createElement(\"linearGradient\", {\n id: \"paint8_linear_103_70\",\n x1: 82,\n y1: 103,\n x2: 392,\n y2: 103,\n gradientUnits: \"userSpaceOnUse\"\n }, /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.0782724,\n stopColor: \"#212121\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.177817,\n stopColor: \"#424242\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 0.909626,\n stopColor: \"#424242\"\n }), /*#__PURE__*/React.createElement(\"stop\", {\n offset: 1,\n stopColor: \"#212121\"\n })))));\n}\n\nvar ForwardRef = /*#__PURE__*/React.forwardRef(SvgAzle);\nexport default __webpack_public_path__ + \"static/media/azle.5b68dfb8a190796cb9d50a7a5854b765.svg\";\nexport { ForwardRef as ReactComponent };","interface IInjectGoogleReCaptchaScriptParams {\n render: string;\n onLoadCallbackName: string;\n useRecaptchaNet: boolean;\n useEnterprise: boolean;\n onLoad: () => void;\n onError: () => void;\n language?: string;\n scriptProps?: {\n nonce?: string;\n defer?: boolean;\n async?: boolean;\n appendTo?: 'head' | 'body';\n id?: string;\n };\n}\n\n/**\n * Function to generate the src for the script tag\n *\n * @param param0\n * @returns\n */\nconst generateGoogleRecaptchaSrc = ({\n useRecaptchaNet,\n useEnterprise\n}: {\n useRecaptchaNet: boolean;\n useEnterprise: boolean;\n}) => {\n const hostName = useRecaptchaNet ? 'recaptcha.net' : 'google.com';\n const script = useEnterprise ? 'enterprise.js' : 'api.js';\n\n return `https://www.${hostName}/recaptcha/${script}`;\n};\n\n/**\n * Function to clean the recaptcha_[language] script injected by the recaptcha.js\n */\nconst cleanGstaticRecaptchaScript = () => {\n const script = document.querySelector(\n 'script[src^=\"https://www.gstatic.com/recaptcha/releases\"]'\n );\n\n if (script) {\n script.remove();\n }\n};\n\n/**\n * Function to check if script has already been injected\n *\n * @param scriptId\n * @returns\n */\nexport const isScriptInjected = (scriptId: string) =>\n !!document.querySelector(`#${scriptId}`);\n\n/**\n * Function to remove default badge\n *\n * @returns\n */\nconst removeDefaultBadge = () => {\n const nodeBadge = document.querySelector('.grecaptcha-badge');\n if (nodeBadge && nodeBadge.parentNode) {\n document.body.removeChild(nodeBadge.parentNode);\n }\n};\n\n/**\n * Function to clear custom badge\n *\n * @returns\n */\nconst cleanCustomBadge = (customBadge: HTMLElement | null) => {\n if (!customBadge) {\n return;\n }\n\n while (customBadge.lastChild) {\n customBadge.lastChild.remove();\n }\n};\n\n/**\n * Function to clean node of badge element\n *\n * @param container\n * @returns\n */\nexport const cleanBadge = (container?: HTMLElement | string) => {\n if (!container) {\n removeDefaultBadge();\n\n return;\n }\n\n const customBadge = typeof container === 'string' ? document.getElementById(container) : container;\n\n cleanCustomBadge(customBadge);\n};\n\n/**\n * Function to clean google recaptcha script\n *\n * @param scriptId\n * @param container\n */\nexport const cleanGoogleRecaptcha = (scriptId: string, container?: HTMLElement | string) => {\n // remove badge\n cleanBadge(container);\n\n // remove old config from window\n /* eslint-disable @typescript-eslint/no-explicit-any */\n (window as any).___grecaptcha_cfg = undefined;\n\n // remove script\n const script = document.querySelector(`#${scriptId}`);\n if (script) {\n script.remove();\n }\n\n cleanGstaticRecaptchaScript();\n};\n\n/**\n * Function to inject the google recaptcha script\n *\n * @param param0\n * @returns\n */\nexport const injectGoogleReCaptchaScript = ({\n render,\n onLoadCallbackName,\n language,\n onLoad,\n useRecaptchaNet,\n useEnterprise,\n scriptProps: {\n nonce = '',\n defer = false,\n async = false,\n id = '',\n appendTo\n } = {}\n}: IInjectGoogleReCaptchaScriptParams) => {\n const scriptId = id || 'google-recaptcha-v3';\n\n // Script has already been injected, just call onLoad and does othing else\n if (isScriptInjected(scriptId)) {\n onLoad();\n\n return;\n }\n\n /**\n * Generate the js script\n */\n const googleRecaptchaSrc = generateGoogleRecaptchaSrc({\n useEnterprise,\n useRecaptchaNet\n });\n const js = document.createElement('script');\n js.id = scriptId;\n js.src = `${googleRecaptchaSrc}?render=${render}${\n render === 'explicit' ? `&onload=${onLoadCallbackName}` : ''\n }${\n language ? `&hl=${language}` : ''\n }`;\n\n if (!!nonce) {\n js.nonce = nonce;\n }\n\n js.defer = !!defer;\n js.async = !!async;\n js.onload = onLoad;\n\n /**\n * Append it to the body // head\n */\n const elementToInjectScript =\n appendTo === 'body'\n ? document.body\n : document.getElementsByTagName('head')[0];\n\n elementToInjectScript.appendChild(js);\n};\n\n/**\n * Function to log warning message if it's not in production mode\n *\n * @param message String\n * @returns\n */\nexport const logWarningMessage = (message: string) => {\n const isDevelopmentMode =\n typeof process !== 'undefined' && !!process.env && process.env.NODE_ENV !== 'production';\n\n if (isDevelopmentMode) {\n return;\n }\n\n console.warn(message);\n};\n","import React, {\n createContext,\n ReactNode,\n useCallback,\n useEffect,\n useMemo,\n useRef,\n useState\n} from 'react';\nimport {\n cleanGoogleRecaptcha,\n injectGoogleReCaptchaScript,\n logWarningMessage\n} from './utils';\n\nenum GoogleRecaptchaError {\n SCRIPT_NOT_AVAILABLE = 'Recaptcha script is not available'\n}\n\ninterface IGoogleReCaptchaProviderProps {\n reCaptchaKey: string;\n language?: string;\n useRecaptchaNet?: boolean;\n useEnterprise?: boolean;\n scriptProps?: {\n nonce?: string;\n defer?: boolean;\n async?: boolean;\n appendTo?: 'head' | 'body';\n id?: string;\n onLoadCallbackName?: string;\n };\n container?: {\n element?: string | HTMLElement;\n parameters: {\n badge?: 'inline' | 'bottomleft' | 'bottomright';\n theme?: 'dark' | 'light';\n tabindex?: number;\n callback?: () => void;\n expiredCallback?: () => void;\n errorCallback?: () => void;\n }\n };\n children: ReactNode;\n}\n\nexport interface IGoogleReCaptchaConsumerProps {\n executeRecaptcha?: (action?: string) => Promise;\n container?: string | HTMLElement;\n}\n\nconst GoogleReCaptchaContext = createContext({\n executeRecaptcha: () => {\n // This default context function is not supposed to be called\n throw Error(\n 'GoogleReCaptcha Context has not yet been implemented, if you are using useGoogleReCaptcha hook, make sure the hook is called inside component wrapped by GoogleRecaptchaProvider'\n );\n }\n});\n\nconst { Consumer: GoogleReCaptchaConsumer } = GoogleReCaptchaContext;\n\nexport function GoogleReCaptchaProvider({\n reCaptchaKey,\n useEnterprise = false,\n useRecaptchaNet = false,\n scriptProps,\n language,\n container,\n children\n}: IGoogleReCaptchaProviderProps) {\n const [greCaptchaInstance, setGreCaptchaInstance] = useState(null);\n const clientId = useRef(reCaptchaKey);\n\n const scriptPropsJson = JSON.stringify(scriptProps);\n const parametersJson = JSON.stringify(container?.parameters);\n\n useEffect(() => {\n if (!reCaptchaKey) {\n logWarningMessage(\n ' recaptcha key not provided'\n );\n\n return;\n }\n\n const scriptId = scriptProps?.id || 'google-recaptcha-v3';\n const onLoadCallbackName = scriptProps?.onLoadCallbackName || 'onRecaptchaLoadCallback';\n\n ((window as unknown) as {[key: string]: () => void})[onLoadCallbackName] = () => {\n /* eslint-disable @typescript-eslint/no-explicit-any */\n const grecaptcha = useEnterprise\n ? (window as any).grecaptcha.enterprise\n : (window as any).grecaptcha;\n\n const params = {\n badge: 'inline',\n size: 'invisible',\n sitekey: reCaptchaKey,\n ...(container?.parameters || {})\n };\n clientId.current = grecaptcha.render(container?.element, params);\n };\n\n const onLoad = () => {\n if (!window || !(window as any).grecaptcha) {\n logWarningMessage(\n ` ${GoogleRecaptchaError.SCRIPT_NOT_AVAILABLE}`\n );\n\n return;\n }\n\n const grecaptcha = useEnterprise\n ? (window as any).grecaptcha.enterprise\n : (window as any).grecaptcha;\n\n grecaptcha.ready(() => {\n setGreCaptchaInstance(grecaptcha);\n });\n };\n\n const onError = () => {\n logWarningMessage('Error loading google recaptcha script');\n };\n\n injectGoogleReCaptchaScript({\n render: container?.element ? 'explicit' : reCaptchaKey,\n onLoadCallbackName,\n useEnterprise,\n useRecaptchaNet,\n scriptProps,\n language,\n onLoad,\n onError\n });\n\n return () => {\n cleanGoogleRecaptcha(scriptId, container?.element);\n };\n }, [\n useEnterprise,\n useRecaptchaNet,\n scriptPropsJson,\n parametersJson,\n language,\n reCaptchaKey,\n container?.element,\n ]);\n\n const executeRecaptcha = useCallback(\n (action?: string) => {\n if (!greCaptchaInstance || !greCaptchaInstance.execute) {\n throw new Error(\n ' Google Recaptcha has not been loaded'\n );\n }\n\n return greCaptchaInstance.execute(clientId.current, { action });\n },\n [greCaptchaInstance, clientId]\n );\n\n const googleReCaptchaContextValue = useMemo(\n () => ({\n executeRecaptcha: greCaptchaInstance ? executeRecaptcha : undefined,\n container: container?.element,\n }),\n [executeRecaptcha, greCaptchaInstance, container?.element]\n );\n\n return (\n \n {children}\n \n );\n}\n\nexport { GoogleReCaptchaConsumer, GoogleReCaptchaContext };\n","import React, { useEffect } from 'react';\nimport { useGoogleReCaptcha } from './use-google-recaptcha';\nimport { logWarningMessage } from './utils';\n\nexport interface IGoogleRecaptchaProps {\n onVerify: (token: string) => void | Promise;\n action?: string;\n refreshReCaptcha?: boolean | string | number | null;\n}\n\nexport function GoogleReCaptcha({\n action,\n onVerify,\n refreshReCaptcha,\n}: IGoogleRecaptchaProps) {\n const googleRecaptchaContextValue = useGoogleReCaptcha();\n\n useEffect(() => {\n const { executeRecaptcha } = googleRecaptchaContextValue;\n\n if (!executeRecaptcha) {\n return;\n }\n\n const handleExecuteRecaptcha = async () => {\n const token = await executeRecaptcha(action);\n\n if (!onVerify) {\n logWarningMessage('Please define an onVerify function');\n\n return;\n }\n\n onVerify(token);\n };\n\n handleExecuteRecaptcha();\n }, [action, onVerify, refreshReCaptcha, googleRecaptchaContextValue]);\n\n const { container } = googleRecaptchaContextValue;\n\n if (typeof container === 'string') {\n return ;\n }\n\n return null;\n}\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","/** @license React v16.13.1\n * react-is.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\n// The Symbol used to tag the ReactElement-like types. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\nvar hasSymbol = typeof Symbol === 'function' && Symbol.for;\nvar REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;\nvar REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;\nvar REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;\nvar REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;\nvar REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;\nvar REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;\nvar REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary\n// (unstable) APIs that have been removed. Can we remove the symbols?\n\nvar REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;\nvar REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;\nvar REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;\nvar REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;\nvar REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;\nvar REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;\nvar REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;\nvar REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;\nvar REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;\nvar REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;\nvar REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;\n\nfunction isValidElementType(type) {\n return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.\n type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);\n}\n\nfunction typeOf(object) {\n if (typeof object === 'object' && object !== null) {\n var $$typeof = object.$$typeof;\n\n switch ($$typeof) {\n case REACT_ELEMENT_TYPE:\n var type = object.type;\n\n switch (type) {\n case REACT_ASYNC_MODE_TYPE:\n case REACT_CONCURRENT_MODE_TYPE:\n case REACT_FRAGMENT_TYPE:\n case REACT_PROFILER_TYPE:\n case REACT_STRICT_MODE_TYPE:\n case REACT_SUSPENSE_TYPE:\n return type;\n\n default:\n var $$typeofType = type && type.$$typeof;\n\n switch ($$typeofType) {\n case REACT_CONTEXT_TYPE:\n case REACT_FORWARD_REF_TYPE:\n case REACT_LAZY_TYPE:\n case REACT_MEMO_TYPE:\n case REACT_PROVIDER_TYPE:\n return $$typeofType;\n\n default:\n return $$typeof;\n }\n\n }\n\n case REACT_PORTAL_TYPE:\n return $$typeof;\n }\n }\n\n return undefined;\n} // AsyncMode is deprecated along with isAsyncMode\n\nvar AsyncMode = REACT_ASYNC_MODE_TYPE;\nvar ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;\nvar ContextConsumer = REACT_CONTEXT_TYPE;\nvar ContextProvider = REACT_PROVIDER_TYPE;\nvar Element = REACT_ELEMENT_TYPE;\nvar ForwardRef = REACT_FORWARD_REF_TYPE;\nvar Fragment = REACT_FRAGMENT_TYPE;\nvar Lazy = REACT_LAZY_TYPE;\nvar Memo = REACT_MEMO_TYPE;\nvar Portal = REACT_PORTAL_TYPE;\nvar Profiler = REACT_PROFILER_TYPE;\nvar StrictMode = REACT_STRICT_MODE_TYPE;\nvar Suspense = REACT_SUSPENSE_TYPE;\nvar hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated\n\nfunction isAsyncMode(object) {\n {\n if (!hasWarnedAboutDeprecatedIsAsyncMode) {\n hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint\n\n 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.');\n }\n }\n\n return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;\n}\nfunction isConcurrentMode(object) {\n return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;\n}\nfunction isContextConsumer(object) {\n return typeOf(object) === REACT_CONTEXT_TYPE;\n}\nfunction isContextProvider(object) {\n return typeOf(object) === REACT_PROVIDER_TYPE;\n}\nfunction isElement(object) {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n}\nfunction isForwardRef(object) {\n return typeOf(object) === REACT_FORWARD_REF_TYPE;\n}\nfunction isFragment(object) {\n return typeOf(object) === REACT_FRAGMENT_TYPE;\n}\nfunction isLazy(object) {\n return typeOf(object) === REACT_LAZY_TYPE;\n}\nfunction isMemo(object) {\n return typeOf(object) === REACT_MEMO_TYPE;\n}\nfunction isPortal(object) {\n return typeOf(object) === REACT_PORTAL_TYPE;\n}\nfunction isProfiler(object) {\n return typeOf(object) === REACT_PROFILER_TYPE;\n}\nfunction isStrictMode(object) {\n return typeOf(object) === REACT_STRICT_MODE_TYPE;\n}\nfunction isSuspense(object) {\n return typeOf(object) === REACT_SUSPENSE_TYPE;\n}\n\nexports.AsyncMode = AsyncMode;\nexports.ConcurrentMode = ConcurrentMode;\nexports.ContextConsumer = ContextConsumer;\nexports.ContextProvider = ContextProvider;\nexports.Element = Element;\nexports.ForwardRef = ForwardRef;\nexports.Fragment = Fragment;\nexports.Lazy = Lazy;\nexports.Memo = Memo;\nexports.Portal = Portal;\nexports.Profiler = Profiler;\nexports.StrictMode = StrictMode;\nexports.Suspense = Suspense;\nexports.isAsyncMode = isAsyncMode;\nexports.isConcurrentMode = isConcurrentMode;\nexports.isContextConsumer = isContextConsumer;\nexports.isContextProvider = isContextProvider;\nexports.isElement = isElement;\nexports.isForwardRef = isForwardRef;\nexports.isFragment = isFragment;\nexports.isLazy = isLazy;\nexports.isMemo = isMemo;\nexports.isPortal = isPortal;\nexports.isProfiler = isProfiler;\nexports.isStrictMode = isStrictMode;\nexports.isSuspense = isSuspense;\nexports.isValidElementType = isValidElementType;\nexports.typeOf = typeOf;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","'use strict';\n\nvar reactIs = require('react-is');\n\n/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\nvar REACT_STATICS = {\n childContextTypes: true,\n contextType: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n getDerivedStateFromError: true,\n getDerivedStateFromProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n callee: true,\n arguments: true,\n arity: true\n};\nvar FORWARD_REF_STATICS = {\n '$$typeof': true,\n render: true,\n defaultProps: true,\n displayName: true,\n propTypes: true\n};\nvar MEMO_STATICS = {\n '$$typeof': true,\n compare: true,\n defaultProps: true,\n displayName: true,\n propTypes: true,\n type: true\n};\nvar TYPE_STATICS = {};\nTYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;\nTYPE_STATICS[reactIs.Memo] = MEMO_STATICS;\n\nfunction getStatics(component) {\n // React v16.11 and below\n if (reactIs.isMemo(component)) {\n return MEMO_STATICS;\n } // React v16.12 and above\n\n\n return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;\n}\n\nvar defineProperty = Object.defineProperty;\nvar getOwnPropertyNames = Object.getOwnPropertyNames;\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar getPrototypeOf = Object.getPrototypeOf;\nvar objectPrototype = Object.prototype;\nfunction hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {\n if (typeof sourceComponent !== 'string') {\n // don't hoist over string (html) components\n if (objectPrototype) {\n var inheritedComponent = getPrototypeOf(sourceComponent);\n\n if (inheritedComponent && inheritedComponent !== objectPrototype) {\n hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);\n }\n }\n\n var keys = getOwnPropertyNames(sourceComponent);\n\n if (getOwnPropertySymbols) {\n keys = keys.concat(getOwnPropertySymbols(sourceComponent));\n }\n\n var targetStatics = getStatics(targetComponent);\n var sourceStatics = getStatics(sourceComponent);\n\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n\n if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {\n var descriptor = getOwnPropertyDescriptor(sourceComponent, key);\n\n try {\n // Avoid failures from read-only properties\n defineProperty(targetComponent, key, descriptor);\n } catch (e) {}\n }\n }\n }\n\n return targetComponent;\n}\n\nmodule.exports = hoistNonReactStatics;\n","const progress = (from, to, value) => {\n const toFromDifference = to - from;\n return toFromDifference === 0 ? 1 : (value - from) / toFromDifference;\n};\n\nexport { progress };\n","const mix = (from, to, progress) => -progress * from + progress * to + from;\n\nexport { mix };\n","const clamp = (min, max) => (v) => Math.max(Math.min(v, max), min);\nconst sanitize = (v) => (v % 1 ? Number(v.toFixed(5)) : v);\nconst floatRegex = /(-)?([\\d]*\\.?[\\d])+/g;\nconst colorRegex = /(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2}(-?[\\d\\.]+%?)\\s*[\\,\\/]?\\s*[\\d\\.]*%?\\))/gi;\nconst singleColorRegex = /^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2}(-?[\\d\\.]+%?)\\s*[\\,\\/]?\\s*[\\d\\.]*%?\\))$/i;\nfunction isString(v) {\n return typeof v === 'string';\n}\n\nexport { clamp, colorRegex, floatRegex, isString, sanitize, singleColorRegex };\n","import { clamp } from '../utils.mjs';\n\nconst number = {\n test: (v) => typeof v === 'number',\n parse: parseFloat,\n transform: (v) => v,\n};\nconst alpha = Object.assign(Object.assign({}, number), { transform: clamp(0, 1) });\nconst scale = Object.assign(Object.assign({}, number), { default: 1 });\n\nexport { alpha, number, scale };\n","import { isString, singleColorRegex, floatRegex } from '../utils.mjs';\n\nconst isColorString = (type, testProp) => (v) => {\n return Boolean((isString(v) && singleColorRegex.test(v) && v.startsWith(type)) ||\n (testProp && Object.prototype.hasOwnProperty.call(v, testProp)));\n};\nconst splitColor = (aName, bName, cName) => (v) => {\n if (!isString(v))\n return v;\n const [a, b, c, alpha] = v.match(floatRegex);\n return {\n [aName]: parseFloat(a),\n [bName]: parseFloat(b),\n [cName]: parseFloat(c),\n alpha: alpha !== undefined ? parseFloat(alpha) : 1,\n };\n};\n\nexport { isColorString, splitColor };\n","import { number, alpha } from '../numbers/index.mjs';\nimport { sanitize, clamp } from '../utils.mjs';\nimport { isColorString, splitColor } from './utils.mjs';\n\nconst clampRgbUnit = clamp(0, 255);\nconst rgbUnit = Object.assign(Object.assign({}, number), { transform: (v) => Math.round(clampRgbUnit(v)) });\nconst rgba = {\n test: isColorString('rgb', 'red'),\n parse: splitColor('red', 'green', 'blue'),\n transform: ({ red, green, blue, alpha: alpha$1 = 1 }) => 'rgba(' +\n rgbUnit.transform(red) +\n ', ' +\n rgbUnit.transform(green) +\n ', ' +\n rgbUnit.transform(blue) +\n ', ' +\n sanitize(alpha.transform(alpha$1)) +\n ')',\n};\n\nexport { rgbUnit, rgba };\n","import { rgba } from './rgba.mjs';\nimport { isColorString } from './utils.mjs';\n\nfunction parseHex(v) {\n let r = '';\n let g = '';\n let b = '';\n let a = '';\n if (v.length > 5) {\n r = v.substr(1, 2);\n g = v.substr(3, 2);\n b = v.substr(5, 2);\n a = v.substr(7, 2);\n }\n else {\n r = v.substr(1, 1);\n g = v.substr(2, 1);\n b = v.substr(3, 1);\n a = v.substr(4, 1);\n r += r;\n g += g;\n b += b;\n a += a;\n }\n return {\n red: parseInt(r, 16),\n green: parseInt(g, 16),\n blue: parseInt(b, 16),\n alpha: a ? parseInt(a, 16) / 255 : 1,\n };\n}\nconst hex = {\n test: isColorString('#'),\n parse: parseHex,\n transform: rgba.transform,\n};\n\nexport { hex };\n","import { isString } from '../utils.mjs';\n\nconst createUnitType = (unit) => ({\n test: (v) => isString(v) && v.endsWith(unit) && v.split(' ').length === 1,\n parse: parseFloat,\n transform: (v) => `${v}${unit}`,\n});\nconst degrees = createUnitType('deg');\nconst percent = createUnitType('%');\nconst px = createUnitType('px');\nconst vh = createUnitType('vh');\nconst vw = createUnitType('vw');\nconst progressPercentage = Object.assign(Object.assign({}, percent), { parse: (v) => percent.parse(v) / 100, transform: (v) => percent.transform(v * 100) });\n\nexport { degrees, percent, progressPercentage, px, vh, vw };\n","import { alpha } from '../numbers/index.mjs';\nimport { percent } from '../numbers/units.mjs';\nimport { sanitize } from '../utils.mjs';\nimport { isColorString, splitColor } from './utils.mjs';\n\nconst hsla = {\n test: isColorString('hsl', 'hue'),\n parse: splitColor('hue', 'saturation', 'lightness'),\n transform: ({ hue, saturation, lightness, alpha: alpha$1 = 1 }) => {\n return ('hsla(' +\n Math.round(hue) +\n ', ' +\n percent.transform(sanitize(saturation)) +\n ', ' +\n percent.transform(sanitize(lightness)) +\n ', ' +\n sanitize(alpha.transform(alpha$1)) +\n ')');\n },\n};\n\nexport { hsla };\n","function hueToRgb(p, q, t) {\n if (t < 0)\n t += 1;\n if (t > 1)\n t -= 1;\n if (t < 1 / 6)\n return p + (q - p) * 6 * t;\n if (t < 1 / 2)\n return q;\n if (t < 2 / 3)\n return p + (q - p) * (2 / 3 - t) * 6;\n return p;\n}\nfunction hslaToRgba({ hue, saturation, lightness, alpha }) {\n hue /= 360;\n saturation /= 100;\n lightness /= 100;\n let red = 0;\n let green = 0;\n let blue = 0;\n if (!saturation) {\n red = green = blue = lightness;\n }\n else {\n const q = lightness < 0.5\n ? lightness * (1 + saturation)\n : lightness + saturation - lightness * saturation;\n const p = 2 * lightness - q;\n red = hueToRgb(p, q, hue + 1 / 3);\n green = hueToRgb(p, q, hue);\n blue = hueToRgb(p, q, hue - 1 / 3);\n }\n return {\n red: Math.round(red * 255),\n green: Math.round(green * 255),\n blue: Math.round(blue * 255),\n alpha,\n };\n}\n\nexport { hslaToRgba };\n","import { mix } from './mix.mjs';\nimport { hsla, rgba, hex } from 'style-value-types';\nimport { invariant } from 'hey-listen';\nimport { hslaToRgba } from './hsla-to-rgba.mjs';\n\nconst mixLinearColor = (from, to, v) => {\n const fromExpo = from * from;\n const toExpo = to * to;\n return Math.sqrt(Math.max(0, v * (toExpo - fromExpo) + fromExpo));\n};\nconst colorTypes = [hex, rgba, hsla];\nconst getColorType = (v) => colorTypes.find((type) => type.test(v));\nconst notAnimatable = (color) => `'${color}' is not an animatable color. Use the equivalent color code instead.`;\nconst mixColor = (from, to) => {\n let fromColorType = getColorType(from);\n let toColorType = getColorType(to);\n invariant(!!fromColorType, notAnimatable(from));\n invariant(!!toColorType, notAnimatable(to));\n let fromColor = fromColorType.parse(from);\n let toColor = toColorType.parse(to);\n if (fromColorType === hsla) {\n fromColor = hslaToRgba(fromColor);\n fromColorType = rgba;\n }\n if (toColorType === hsla) {\n toColor = hslaToRgba(toColor);\n toColorType = rgba;\n }\n const blended = Object.assign({}, fromColor);\n return (v) => {\n for (const key in blended) {\n if (key !== \"alpha\") {\n blended[key] = mixLinearColor(fromColor[key], toColor[key], v);\n }\n }\n blended.alpha = mix(fromColor.alpha, toColor.alpha, v);\n return fromColorType.transform(blended);\n };\n};\n\nexport { mixColor, mixLinearColor };\n","import { isString } from '../utils.mjs';\nimport { hex } from './hex.mjs';\nimport { hsla } from './hsla.mjs';\nimport { rgba } from './rgba.mjs';\n\nconst color = {\n test: (v) => rgba.test(v) || hex.test(v) || hsla.test(v),\n parse: (v) => {\n if (rgba.test(v)) {\n return rgba.parse(v);\n }\n else if (hsla.test(v)) {\n return hsla.parse(v);\n }\n else {\n return hex.parse(v);\n }\n },\n transform: (v) => {\n return isString(v)\n ? v\n : v.hasOwnProperty('red')\n ? rgba.transform(v)\n : hsla.transform(v);\n },\n};\n\nexport { color };\n","import { color } from '../color/index.mjs';\nimport { number } from '../numbers/index.mjs';\nimport { isString, floatRegex, colorRegex, sanitize } from '../utils.mjs';\n\nconst colorToken = '${c}';\nconst numberToken = '${n}';\nfunction test(v) {\n var _a, _b, _c, _d;\n return (isNaN(v) &&\n isString(v) &&\n ((_b = (_a = v.match(floatRegex)) === null || _a === void 0 ? void 0 : _a.length) !== null && _b !== void 0 ? _b : 0) + ((_d = (_c = v.match(colorRegex)) === null || _c === void 0 ? void 0 : _c.length) !== null && _d !== void 0 ? _d : 0) > 0);\n}\nfunction analyse(v) {\n if (typeof v === 'number')\n v = `${v}`;\n const values = [];\n let numColors = 0;\n const colors = v.match(colorRegex);\n if (colors) {\n numColors = colors.length;\n v = v.replace(colorRegex, colorToken);\n values.push(...colors.map(color.parse));\n }\n const numbers = v.match(floatRegex);\n if (numbers) {\n v = v.replace(floatRegex, numberToken);\n values.push(...numbers.map(number.parse));\n }\n return { values, numColors, tokenised: v };\n}\nfunction parse(v) {\n return analyse(v).values;\n}\nfunction createTransformer(v) {\n const { values, numColors, tokenised } = analyse(v);\n const numValues = values.length;\n return (v) => {\n let output = tokenised;\n for (let i = 0; i < numValues; i++) {\n output = output.replace(i < numColors ? colorToken : numberToken, i < numColors ? color.transform(v[i]) : sanitize(v[i]));\n }\n return output;\n };\n}\nconst convertNumbersToZero = (v) => typeof v === 'number' ? 0 : v;\nfunction getAnimatableNone(v) {\n const parsed = parse(v);\n const transformer = createTransformer(v);\n return transformer(parsed.map(convertNumbersToZero));\n}\nconst complex = { test, parse, createTransformer, getAnimatableNone };\n\nexport { complex };\n","const zeroPoint = {\n x: 0,\n y: 0,\n z: 0\n};\nconst isNum = (v) => typeof v === 'number';\n\nexport { isNum, zeroPoint };\n","const combineFunctions = (a, b) => (v) => b(a(v));\nconst pipe = (...transformers) => transformers.reduce(combineFunctions);\n\nexport { pipe };\n","import { complex, color } from 'style-value-types';\nimport { mix } from './mix.mjs';\nimport { mixColor } from './mix-color.mjs';\nimport { isNum } from './inc.mjs';\nimport { pipe } from './pipe.mjs';\nimport { warning } from 'hey-listen';\n\nfunction getMixer(origin, target) {\n if (isNum(origin)) {\n return (v) => mix(origin, target, v);\n }\n else if (color.test(origin)) {\n return mixColor(origin, target);\n }\n else {\n return mixComplex(origin, target);\n }\n}\nconst mixArray = (from, to) => {\n const output = [...from];\n const numValues = output.length;\n const blendValue = from.map((fromThis, i) => getMixer(fromThis, to[i]));\n return (v) => {\n for (let i = 0; i < numValues; i++) {\n output[i] = blendValue[i](v);\n }\n return output;\n };\n};\nconst mixObject = (origin, target) => {\n const output = Object.assign(Object.assign({}, origin), target);\n const blendValue = {};\n for (const key in output) {\n if (origin[key] !== undefined && target[key] !== undefined) {\n blendValue[key] = getMixer(origin[key], target[key]);\n }\n }\n return (v) => {\n for (const key in blendValue) {\n output[key] = blendValue[key](v);\n }\n return output;\n };\n};\nfunction analyse(value) {\n const parsed = complex.parse(value);\n const numValues = parsed.length;\n let numNumbers = 0;\n let numRGB = 0;\n let numHSL = 0;\n for (let i = 0; i < numValues; i++) {\n if (numNumbers || typeof parsed[i] === \"number\") {\n numNumbers++;\n }\n else {\n if (parsed[i].hue !== undefined) {\n numHSL++;\n }\n else {\n numRGB++;\n }\n }\n }\n return { parsed, numNumbers, numRGB, numHSL };\n}\nconst mixComplex = (origin, target) => {\n const template = complex.createTransformer(target);\n const originStats = analyse(origin);\n const targetStats = analyse(target);\n const canInterpolate = originStats.numHSL === targetStats.numHSL &&\n originStats.numRGB === targetStats.numRGB &&\n originStats.numNumbers >= targetStats.numNumbers;\n if (canInterpolate) {\n return pipe(mixArray(originStats.parsed, targetStats.parsed), template);\n }\n else {\n warning(true, `Complex values '${origin}' and '${target}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`);\n return (p) => `${p > 0 ? target : origin}`;\n }\n};\n\nexport { mixArray, mixComplex, mixObject };\n","const clamp = (min, max, v) => Math.min(Math.max(v, min), max);\n\nexport { clamp };\n","import { progress } from './progress.mjs';\nimport { mix } from './mix.mjs';\nimport { mixColor } from './mix-color.mjs';\nimport { mixComplex, mixArray, mixObject } from './mix-complex.mjs';\nimport { color } from 'style-value-types';\nimport { clamp } from './clamp.mjs';\nimport { pipe } from './pipe.mjs';\nimport { invariant } from 'hey-listen';\n\nconst mixNumber = (from, to) => (p) => mix(from, to, p);\nfunction detectMixerFactory(v) {\n if (typeof v === 'number') {\n return mixNumber;\n }\n else if (typeof v === 'string') {\n if (color.test(v)) {\n return mixColor;\n }\n else {\n return mixComplex;\n }\n }\n else if (Array.isArray(v)) {\n return mixArray;\n }\n else if (typeof v === 'object') {\n return mixObject;\n }\n}\nfunction createMixers(output, ease, customMixer) {\n const mixers = [];\n const mixerFactory = customMixer || detectMixerFactory(output[0]);\n const numMixers = output.length - 1;\n for (let i = 0; i < numMixers; i++) {\n let mixer = mixerFactory(output[i], output[i + 1]);\n if (ease) {\n const easingFunction = Array.isArray(ease) ? ease[i] : ease;\n mixer = pipe(easingFunction, mixer);\n }\n mixers.push(mixer);\n }\n return mixers;\n}\nfunction fastInterpolate([from, to], [mixer]) {\n return (v) => mixer(progress(from, to, v));\n}\nfunction slowInterpolate(input, mixers) {\n const inputLength = input.length;\n const lastInputIndex = inputLength - 1;\n return (v) => {\n let mixerIndex = 0;\n let foundMixerIndex = false;\n if (v <= input[0]) {\n foundMixerIndex = true;\n }\n else if (v >= input[lastInputIndex]) {\n mixerIndex = lastInputIndex - 1;\n foundMixerIndex = true;\n }\n if (!foundMixerIndex) {\n let i = 1;\n for (; i < inputLength; i++) {\n if (input[i] > v || i === lastInputIndex) {\n break;\n }\n }\n mixerIndex = i - 1;\n }\n const progressInRange = progress(input[mixerIndex], input[mixerIndex + 1], v);\n return mixers[mixerIndex](progressInRange);\n };\n}\nfunction interpolate(input, output, { clamp: isClamp = true, ease, mixer } = {}) {\n const inputLength = input.length;\n invariant(inputLength === output.length, 'Both input and output ranges must be the same length');\n invariant(!ease || !Array.isArray(ease) || ease.length === inputLength - 1, 'Array of easing functions must be of length `input.length - 1`, as it applies to the transitions **between** the defined values.');\n if (input[0] > input[inputLength - 1]) {\n input = [].concat(input);\n output = [].concat(output);\n input.reverse();\n output.reverse();\n }\n const mixers = createMixers(output, ease, mixer);\n const interpolator = inputLength === 2\n ? fastInterpolate(input, mixers)\n : slowInterpolate(input, mixers);\n return isClamp\n ? (v) => interpolator(clamp(input[0], input[inputLength - 1], v))\n : interpolator;\n}\n\nexport { interpolate };\n","import { interpolate } from 'popmotion';\n\nconst isCustomValueType = (v) => {\n return typeof v === \"object\" && v.mix;\n};\nconst getMixer = (v) => (isCustomValueType(v) ? v.mix : undefined);\nfunction transform(...args) {\n const useImmediate = !Array.isArray(args[0]);\n const argOffset = useImmediate ? 0 : -1;\n const inputValue = args[0 + argOffset];\n const inputRange = args[1 + argOffset];\n const outputRange = args[2 + argOffset];\n const options = args[3 + argOffset];\n const interpolator = interpolate(inputRange, outputRange, {\n mixer: getMixer(outputRange[0]),\n ...options,\n });\n return useImmediate ? interpolator(inputValue) : interpolator;\n}\n\nexport { transform };\n","import { useContext, useState, useEffect } from 'react';\nimport { motionValue } from './index.mjs';\nimport { MotionConfigContext } from '../context/MotionConfigContext.mjs';\nimport { useConstant } from '../utils/use-constant.mjs';\n\n/**\n * Creates a `MotionValue` to track the state and velocity of a value.\n *\n * Usually, these are created automatically. For advanced use-cases, like use with `useTransform`, you can create `MotionValue`s externally and pass them into the animated component via the `style` prop.\n *\n * ```jsx\n * export const MyComponent = () => {\n * const scale = useMotionValue(1)\n *\n * return \n * }\n * ```\n *\n * @param initial - The initial state.\n *\n * @public\n */\nfunction useMotionValue(initial) {\n const value = useConstant(() => motionValue(initial));\n /**\n * If this motion value is being used in static mode, like on\n * the Framer canvas, force components to rerender when the motion\n * value is updated.\n */\n const { isStatic } = useContext(MotionConfigContext);\n if (isStatic) {\n const [, setLatest] = useState(initial);\n useEffect(() => value.onChange(setLatest), []);\n }\n return value;\n}\n\nexport { useMotionValue };\n","import { useMotionValue } from './use-motion-value.mjs';\nimport { useMultiOnChange } from './use-on-change.mjs';\nimport sync from 'framesync';\n\nfunction useCombineMotionValues(values, combineValues) {\n /**\n * Initialise the returned motion value. This remains the same between renders.\n */\n const value = useMotionValue(combineValues());\n /**\n * Create a function that will update the template motion value with the latest values.\n * This is pre-bound so whenever a motion value updates it can schedule its\n * execution in Framesync. If it's already been scheduled it won't be fired twice\n * in a single frame.\n */\n const updateValue = () => value.set(combineValues());\n /**\n * Synchronously update the motion value with the latest values during the render.\n * This ensures that within a React render, the styles applied to the DOM are up-to-date.\n */\n updateValue();\n /**\n * Subscribe to all motion values found within the template. Whenever any of them change,\n * schedule an update.\n */\n useMultiOnChange(values, () => sync.update(updateValue, false, true));\n return value;\n}\n\nexport { useCombineMotionValues };\n","import { isMotionValue } from './utils/is-motion-value.mjs';\nimport { useIsomorphicLayoutEffect } from '../utils/use-isomorphic-effect.mjs';\n\nfunction useOnChange(value, callback) {\n useIsomorphicLayoutEffect(() => {\n if (isMotionValue(value))\n return value.onChange(callback);\n }, [callback]);\n}\nfunction useMultiOnChange(values, handler) {\n useIsomorphicLayoutEffect(() => {\n const subscriptions = values.map((value) => value.onChange(handler));\n return () => subscriptions.forEach((unsubscribe) => unsubscribe());\n });\n}\n\nexport { useMultiOnChange, useOnChange };\n","import { transform } from '../utils/transform.mjs';\nimport { useCombineMotionValues } from './use-combine-values.mjs';\nimport { useConstant } from '../utils/use-constant.mjs';\n\nfunction useTransform(input, inputRangeOrTransformer, outputRange, options) {\n const transformer = typeof inputRangeOrTransformer === \"function\"\n ? inputRangeOrTransformer\n : transform(inputRangeOrTransformer, outputRange, options);\n return Array.isArray(input)\n ? useListTransform(input, transformer)\n : useListTransform([input], ([latest]) => transformer(latest));\n}\nfunction useListTransform(values, transformer) {\n const latest = useConstant(() => []);\n return useCombineMotionValues(values, () => {\n latest.length = 0;\n const numValues = values.length;\n for (let i = 0; i < numValues; i++) {\n latest[i] = values[i].get();\n }\n return transformer(latest);\n });\n}\n\nexport { useTransform };\n","import { useCombineMotionValues } from './use-combine-values.mjs';\n\n/**\n * Combine multiple motion values into a new one using a string template literal.\n *\n * ```jsx\n * import {\n * motion,\n * useSpring,\n * useMotionValue,\n * useMotionTemplate\n * } from \"framer-motion\"\n *\n * function Component() {\n * const shadowX = useSpring(0)\n * const shadowY = useMotionValue(0)\n * const shadow = useMotionTemplate`drop-shadow(${shadowX}px ${shadowY}px 20px rgba(0,0,0,0.3))`\n *\n * return \n * }\n * ```\n *\n * @public\n */\nfunction useMotionTemplate(fragments, ...values) {\n /**\n * Create a function that will build a string from the latest motion values.\n */\n const numFragments = fragments.length;\n function buildValue() {\n let output = ``;\n for (let i = 0; i < numFragments; i++) {\n output += fragments[i];\n const value = values[i];\n if (value)\n output += values[i].get();\n }\n return output;\n }\n return useCombineMotionValues(values, buildValue);\n}\n\nexport { useMotionTemplate };\n","import { createContext, useContext } from 'react';\n\nconst MotionContext = createContext({});\nfunction useVisualElementContext() {\n return useContext(MotionContext).visualElement;\n}\n\nexport { MotionContext, useVisualElementContext };\n","import { createContext } from 'react';\n\n/**\n * @public\n */\nconst PresenceContext = createContext(null);\n\nexport { PresenceContext };\n","import { createContext } from 'react';\n\nconst LazyContext = createContext({ strict: false });\n\nexport { LazyContext };\n","import { useContext, useRef, useEffect } from 'react';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { useVisualElementContext } from '../../context/MotionContext/index.mjs';\nimport { useIsomorphicLayoutEffect } from '../../utils/use-isomorphic-effect.mjs';\nimport { LazyContext } from '../../context/LazyContext.mjs';\nimport { MotionConfigContext } from '../../context/MotionConfigContext.mjs';\n\nfunction useVisualElement(Component, visualState, props, createVisualElement) {\n const parent = useVisualElementContext();\n const lazyContext = useContext(LazyContext);\n const presenceContext = useContext(PresenceContext);\n const reducedMotionConfig = useContext(MotionConfigContext).reducedMotion;\n const visualElementRef = useRef(undefined);\n /**\n * If we haven't preloaded a renderer, check to see if we have one lazy-loaded\n */\n createVisualElement = createVisualElement || lazyContext.renderer;\n if (!visualElementRef.current && createVisualElement) {\n visualElementRef.current = createVisualElement(Component, {\n visualState,\n parent,\n props,\n presenceId: presenceContext ? presenceContext.id : undefined,\n blockInitialAnimation: presenceContext\n ? presenceContext.initial === false\n : false,\n reducedMotionConfig,\n });\n }\n const visualElement = visualElementRef.current;\n useIsomorphicLayoutEffect(() => {\n visualElement && visualElement.syncRender();\n });\n useEffect(() => {\n if (visualElement && visualElement.animationState) {\n visualElement.animationState.animateChanges();\n }\n });\n useIsomorphicLayoutEffect(() => () => visualElement && visualElement.notifyUnmount(), []);\n return visualElement;\n}\n\nexport { useVisualElement };\n","function isRefObject(ref) {\n return (typeof ref === \"object\" &&\n Object.prototype.hasOwnProperty.call(ref, \"current\"));\n}\n\nexport { isRefObject };\n","/**\n * Decides if the supplied variable is variant label\n */\nfunction isVariantLabel(v) {\n return typeof v === \"string\" || Array.isArray(v);\n}\n\nexport { isVariantLabel };\n","function isAnimationControls(v) {\n return typeof v === \"object\" && typeof v.start === \"function\";\n}\n\nexport { isAnimationControls };\n","import { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { isVariantLabel } from './is-variant-label.mjs';\n\nconst variantProps = [\n \"initial\",\n \"animate\",\n \"exit\",\n \"whileHover\",\n \"whileDrag\",\n \"whileTap\",\n \"whileFocus\",\n \"whileInView\",\n];\nfunction isControllingVariants(props) {\n return (isAnimationControls(props.animate) ||\n variantProps.some((name) => isVariantLabel(props[name])));\n}\nfunction isVariantNode(props) {\n return Boolean(isControllingVariants(props) || props.variants);\n}\n\nexport { isControllingVariants, isVariantNode };\n","import { useContext, useMemo } from 'react';\nimport { MotionContext } from './index.mjs';\nimport { getCurrentTreeVariants } from './utils.mjs';\n\nfunction useCreateMotionContext(props) {\n const { initial, animate } = getCurrentTreeVariants(props, useContext(MotionContext));\n return useMemo(() => ({ initial, animate }), [variantLabelsAsDependency(initial), variantLabelsAsDependency(animate)]);\n}\nfunction variantLabelsAsDependency(prop) {\n return Array.isArray(prop) ? prop.join(\" \") : prop;\n}\n\nexport { useCreateMotionContext };\n","import { isVariantLabel } from '../../render/utils/is-variant-label.mjs';\nimport { isControllingVariants } from '../../render/utils/is-controlling-variants.mjs';\n\nfunction getCurrentTreeVariants(props, context) {\n if (isControllingVariants(props)) {\n const { initial, animate } = props;\n return {\n initial: initial === false || isVariantLabel(initial)\n ? initial\n : undefined,\n animate: isVariantLabel(animate) ? animate : undefined,\n };\n }\n return props.inherit !== false ? context : {};\n}\n\nexport { getCurrentTreeVariants };\n","const createDefinition = (propNames) => ({\n isEnabled: (props) => propNames.some((name) => !!props[name]),\n});\nconst featureDefinitions = {\n measureLayout: createDefinition([\"layout\", \"layoutId\", \"drag\"]),\n animation: createDefinition([\n \"animate\",\n \"exit\",\n \"variants\",\n \"whileHover\",\n \"whileTap\",\n \"whileFocus\",\n \"whileDrag\",\n \"whileInView\",\n ]),\n exit: createDefinition([\"exit\"]),\n drag: createDefinition([\"drag\", \"dragControls\"]),\n focus: createDefinition([\"whileFocus\"]),\n hover: createDefinition([\"whileHover\", \"onHoverStart\", \"onHoverEnd\"]),\n tap: createDefinition([\"whileTap\", \"onTap\", \"onTapStart\", \"onTapCancel\"]),\n pan: createDefinition([\n \"onPan\",\n \"onPanStart\",\n \"onPanSessionStart\",\n \"onPanEnd\",\n ]),\n inView: createDefinition([\n \"whileInView\",\n \"onViewportEnter\",\n \"onViewportLeave\",\n ]),\n};\n\nexport { featureDefinitions };\n","/**\n * This should only ever be modified on the client otherwise it'll\n * persist through server requests. If we need instanced states we\n * could lazy-init via root.\n */\nconst globalProjectionState = {\n /**\n * Global flag as to whether the tree has animated since the last time\n * we resized the window\n */\n hasAnimatedSinceResize: true,\n /**\n * We set this to true once, on the first update. Any nodes added to the tree beyond that\n * update will be given a `data-projection-id` attribute.\n */\n hasEverUpdated: false,\n};\n\nexport { globalProjectionState };\n","import { useConstant } from '../../utils/use-constant.mjs';\nimport { globalProjectionState } from './state.mjs';\n\nlet id = 1;\nfunction useProjectionId() {\n return useConstant(() => {\n if (globalProjectionState.hasEverUpdated) {\n return id++;\n }\n });\n}\n\nexport { useProjectionId };\n","import { createContext } from 'react';\n\nconst LayoutGroupContext = createContext({});\n\nexport { LayoutGroupContext };\n","export default function _getPrototypeOf(o) {\n _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {\n return o.__proto__ || Object.getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n}","export default function _isNativeReflectConstruct() {\n if (typeof Reflect === \"undefined\" || !Reflect.construct) return false;\n if (Reflect.construct.sham) return false;\n if (typeof Proxy === \"function\") return true;\n\n try {\n Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));\n return true;\n } catch (e) {\n return false;\n }\n}","import _typeof from \"./typeof.js\";\nimport assertThisInitialized from \"./assertThisInitialized.js\";\nexport default function _possibleConstructorReturn(self, call) {\n if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) {\n return call;\n } else if (call !== void 0) {\n throw new TypeError(\"Derived constructors may only return object or undefined\");\n }\n\n return assertThisInitialized(self);\n}","export default function _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}","import getPrototypeOf from \"./getPrototypeOf.js\";\nimport isNativeReflectConstruct from \"./isNativeReflectConstruct.js\";\nimport possibleConstructorReturn from \"./possibleConstructorReturn.js\";\nexport default function _createSuper(Derived) {\n var hasNativeReflectConstruct = isNativeReflectConstruct();\n return function _createSuperInternal() {\n var Super = getPrototypeOf(Derived),\n result;\n\n if (hasNativeReflectConstruct) {\n var NewTarget = getPrototypeOf(this).constructor;\n result = Reflect.construct(Super, arguments, NewTarget);\n } else {\n result = Super.apply(this, arguments);\n }\n\n return possibleConstructorReturn(this, result);\n };\n}","import React__default from 'react';\n\nclass VisualElementHandler extends React__default.Component {\n /**\n * Update visual element props as soon as we know this update is going to be commited.\n */\n getSnapshotBeforeUpdate() {\n const { visualElement, props } = this.props;\n if (visualElement)\n visualElement.setProps(props);\n return null;\n }\n componentDidUpdate() { }\n render() {\n return this.props.children;\n }\n}\n\nexport { VisualElementHandler };\n","import { createContext } from 'react';\n\n/**\n * Internal, exported only for usage in Framer\n */\nconst SwitchLayoutGroupContext = createContext({});\n\nexport { SwitchLayoutGroupContext };\n","const motionComponentSymbol = Symbol.for(\"motionComponentSymbol\");\n\nexport { motionComponentSymbol };\n","import * as React from 'react';\nimport { forwardRef, useContext } from 'react';\nimport { MotionConfigContext } from '../context/MotionConfigContext.mjs';\nimport { MotionContext } from '../context/MotionContext/index.mjs';\nimport { useVisualElement } from './utils/use-visual-element.mjs';\nimport { useMotionRef } from './utils/use-motion-ref.mjs';\nimport { useCreateMotionContext } from '../context/MotionContext/create.mjs';\nimport { featureDefinitions } from './features/definitions.mjs';\nimport { loadFeatures } from './features/load-features.mjs';\nimport { isBrowser } from '../utils/is-browser.mjs';\nimport { useProjectionId } from '../projection/node/id.mjs';\nimport { LayoutGroupContext } from '../context/LayoutGroupContext.mjs';\nimport { VisualElementHandler } from './utils/VisualElementHandler.mjs';\nimport { LazyContext } from '../context/LazyContext.mjs';\nimport { SwitchLayoutGroupContext } from '../context/SwitchLayoutGroupContext.mjs';\nimport { motionComponentSymbol } from './utils/symbol.mjs';\n\n/**\n * Create a `motion` component.\n *\n * This function accepts a Component argument, which can be either a string (ie \"div\"\n * for `motion.div`), or an actual React component.\n *\n * Alongside this is a config option which provides a way of rendering the provided\n * component \"offline\", or outside the React render cycle.\n */\nfunction createMotionComponent({ preloadedFeatures, createVisualElement, projectionNodeConstructor, useRender, useVisualState, Component, }) {\n preloadedFeatures && loadFeatures(preloadedFeatures);\n function MotionComponent(props, externalRef) {\n const configAndProps = {\n ...useContext(MotionConfigContext),\n ...props,\n layoutId: useLayoutId(props),\n };\n const { isStatic } = configAndProps;\n let features = null;\n const context = useCreateMotionContext(props);\n /**\n * Create a unique projection ID for this component. If a new component is added\n * during a layout animation we'll use this to query the DOM and hydrate its ref early, allowing\n * us to measure it as soon as any layout effect flushes pending layout animations.\n *\n * Performance note: It'd be better not to have to search the DOM for these elements.\n * For newly-entering components it could be enough to only correct treeScale, in which\n * case we could mount in a scale-correction mode. This wouldn't be enough for\n * shared element transitions however. Perhaps for those we could revert to a root node\n * that gets forceRendered and layout animations are triggered on its layout effect.\n */\n const projectionId = isStatic ? undefined : useProjectionId();\n /**\n *\n */\n const visualState = useVisualState(props, isStatic);\n if (!isStatic && isBrowser) {\n /**\n * Create a VisualElement for this component. A VisualElement provides a common\n * interface to renderer-specific APIs (ie DOM/Three.js etc) as well as\n * providing a way of rendering to these APIs outside of the React render loop\n * for more performant animations and interactions\n */\n context.visualElement = useVisualElement(Component, visualState, configAndProps, createVisualElement);\n /**\n * Load Motion gesture and animation features. These are rendered as renderless\n * components so each feature can optionally make use of React lifecycle methods.\n */\n const lazyStrictMode = useContext(LazyContext).strict;\n const initialLayoutGroupConfig = useContext(SwitchLayoutGroupContext);\n if (context.visualElement) {\n features = context.visualElement.loadFeatures(\n // Note: Pass the full new combined props to correctly re-render dynamic feature components.\n configAndProps, lazyStrictMode, preloadedFeatures, projectionId, projectionNodeConstructor ||\n featureDefinitions.projectionNodeConstructor, initialLayoutGroupConfig);\n }\n }\n /**\n * The mount order and hierarchy is specific to ensure our element ref\n * is hydrated by the time features fire their effects.\n */\n return (React.createElement(VisualElementHandler, { visualElement: context.visualElement, props: configAndProps },\n features,\n React.createElement(MotionContext.Provider, { value: context }, useRender(Component, props, projectionId, useMotionRef(visualState, context.visualElement, externalRef), visualState, isStatic, context.visualElement))));\n }\n const ForwardRefComponent = forwardRef(MotionComponent);\n ForwardRefComponent[motionComponentSymbol] = Component;\n return ForwardRefComponent;\n}\nfunction useLayoutId({ layoutId }) {\n const layoutGroupId = useContext(LayoutGroupContext).id;\n return layoutGroupId && layoutId !== undefined\n ? layoutGroupId + \"-\" + layoutId\n : layoutId;\n}\n\nexport { createMotionComponent };\n","import { featureDefinitions } from './definitions.mjs';\n\nfunction loadFeatures(features) {\n for (const key in features) {\n if (key === \"projectionNodeConstructor\") {\n featureDefinitions.projectionNodeConstructor = features[key];\n }\n else {\n featureDefinitions[key].Component = features[key];\n }\n }\n}\n\nexport { loadFeatures };\n","import { useCallback } from 'react';\nimport { isRefObject } from '../../utils/is-ref-object.mjs';\n\n/**\n * Creates a ref function that, when called, hydrates the provided\n * external ref and VisualElement.\n */\nfunction useMotionRef(visualState, visualElement, externalRef) {\n return useCallback((instance) => {\n instance && visualState.mount && visualState.mount(instance);\n if (visualElement) {\n instance\n ? visualElement.mount(instance)\n : visualElement.unmount();\n }\n if (externalRef) {\n if (typeof externalRef === \"function\") {\n externalRef(instance);\n }\n else if (isRefObject(externalRef)) {\n externalRef.current = instance;\n }\n }\n }, \n /**\n * Only pass a new ref callback to React if we've received a visual element\n * factory. Otherwise we'll be mounting/remounting every time externalRef\n * or other dependencies change.\n */\n [visualElement]);\n}\n\nexport { useMotionRef };\n","import { createMotionComponent } from '../../motion/index.mjs';\n\n/**\n * Convert any React component into a `motion` component. The provided component\n * **must** use `React.forwardRef` to the underlying DOM component you want to animate.\n *\n * ```jsx\n * const Component = React.forwardRef((props, ref) => {\n * return \n * })\n *\n * const MotionComponent = motion(Component)\n * ```\n *\n * @public\n */\nfunction createMotionProxy(createConfig) {\n function custom(Component, customMotionComponentConfig = {}) {\n return createMotionComponent(createConfig(Component, customMotionComponentConfig));\n }\n if (typeof Proxy === \"undefined\") {\n return custom;\n }\n /**\n * A cache of generated `motion` components, e.g `motion.div`, `motion.input` etc.\n * Rather than generating them anew every render.\n */\n const componentCache = new Map();\n return new Proxy(custom, {\n /**\n * Called when `motion` is referenced with a prop: `motion.div`, `motion.input` etc.\n * The prop name is passed through as `key` and we can use that to generate a `motion`\n * DOM component with that name.\n */\n get: (_target, key) => {\n /**\n * If this element doesn't exist in the component cache, create it and cache.\n */\n if (!componentCache.has(key)) {\n componentCache.set(key, custom(key));\n }\n return componentCache.get(key);\n },\n });\n}\n\nexport { createMotionProxy };\n","/**\n * We keep these listed seperately as we use the lowercase tag names as part\n * of the runtime bundle to detect SVG components\n */\nconst lowercaseSVGElements = [\n \"animate\",\n \"circle\",\n \"defs\",\n \"desc\",\n \"ellipse\",\n \"g\",\n \"image\",\n \"line\",\n \"filter\",\n \"marker\",\n \"mask\",\n \"metadata\",\n \"path\",\n \"pattern\",\n \"polygon\",\n \"polyline\",\n \"rect\",\n \"stop\",\n \"svg\",\n \"switch\",\n \"symbol\",\n \"text\",\n \"tspan\",\n \"use\",\n \"view\",\n];\n\nexport { lowercaseSVGElements };\n","import { lowercaseSVGElements } from '../../svg/lowercase-elements.mjs';\n\nfunction isSVGComponent(Component) {\n if (\n /**\n * If it's not a string, it's a custom React component. Currently we only support\n * HTML custom React components.\n */\n typeof Component !== \"string\" ||\n /**\n * If it contains a dash, the element is a custom HTML webcomponent.\n */\n Component.includes(\"-\")) {\n return false;\n }\n else if (\n /**\n * If it's in our list of lowercase SVG tags, it's an SVG component\n */\n lowercaseSVGElements.indexOf(Component) > -1 ||\n /**\n * If it contains a capital letter, it's an SVG component\n */\n /[A-Z]/.test(Component)) {\n return true;\n }\n return false;\n}\n\nexport { isSVGComponent };\n","const scaleCorrectors = {};\nfunction addScaleCorrector(correctors) {\n Object.assign(scaleCorrectors, correctors);\n}\n\nexport { addScaleCorrector, scaleCorrectors };\n","/**\n * Generate a list of every possible transform key.\n */\nconst transformPropOrder = [\n \"transformPerspective\",\n \"x\",\n \"y\",\n \"z\",\n \"translateX\",\n \"translateY\",\n \"translateZ\",\n \"scale\",\n \"scaleX\",\n \"scaleY\",\n \"rotate\",\n \"rotateX\",\n \"rotateY\",\n \"rotateZ\",\n \"skew\",\n \"skewX\",\n \"skewY\",\n];\n/**\n * A quick lookup for transform props.\n */\nconst transformProps = new Set(transformPropOrder);\n\nexport { transformPropOrder, transformProps };\n","import { scaleCorrectors } from '../../projection/styles/scale-correction.mjs';\nimport { transformProps } from '../../render/html/utils/transform.mjs';\n\nfunction isForcedMotionValue(key, { layout, layoutId }) {\n return (transformProps.has(key) ||\n key.startsWith(\"origin\") ||\n ((layout || layoutId !== undefined) &&\n (!!scaleCorrectors[key] || key === \"opacity\")));\n}\n\nexport { isForcedMotionValue };\n","const isMotionValue = (value) => !!(value === null || value === void 0 ? void 0 : value.getVelocity);\n\nexport { isMotionValue };\n","import { transformPropOrder } from './transform.mjs';\n\nconst translateAlias = {\n x: \"translateX\",\n y: \"translateY\",\n z: \"translateZ\",\n transformPerspective: \"perspective\",\n};\n/**\n * A function to use with Array.sort to sort transform keys by their default order.\n */\nconst sortTransformProps = (a, b) => transformPropOrder.indexOf(a) - transformPropOrder.indexOf(b);\n/**\n * Build a CSS transform style from individual x/y/scale etc properties.\n *\n * This outputs with a default order of transforms/scales/rotations, this can be customised by\n * providing a transformTemplate function.\n */\nfunction buildTransform({ transform, transformKeys }, { enableHardwareAcceleration = true, allowTransformNone = true, }, transformIsDefault, transformTemplate) {\n // The transform string we're going to build into.\n let transformString = \"\";\n // Transform keys into their default order - this will determine the output order.\n transformKeys.sort(sortTransformProps);\n // Loop over each transform and build them into transformString\n for (const key of transformKeys) {\n transformString += `${translateAlias[key] || key}(${transform[key]}) `;\n }\n if (enableHardwareAcceleration && !transform.z) {\n transformString += \"translateZ(0)\";\n }\n transformString = transformString.trim();\n // If we have a custom `transform` template, pass our transform values and\n // generated transformString to that before returning\n if (transformTemplate) {\n transformString = transformTemplate(transform, transformIsDefault ? \"\" : transformString);\n }\n else if (allowTransformNone && transformIsDefault) {\n transformString = \"none\";\n }\n return transformString;\n}\n\nexport { buildTransform };\n","/**\n * Returns true if the provided key is a CSS variable\n */\nfunction isCSSVariable(key) {\n return key.startsWith(\"--\");\n}\n\nexport { isCSSVariable };\n","/**\n * Provided a value and a ValueType, returns the value as that value type.\n */\nconst getValueAsType = (value, type) => {\n return type && typeof value === \"number\"\n ? type.transform(value)\n : value;\n};\n\nexport { getValueAsType };\n","import { number } from 'style-value-types';\n\nconst int = {\n ...number,\n transform: Math.round,\n};\n\nexport { int };\n","import { px, degrees, scale, alpha, progressPercentage } from 'style-value-types';\nimport { int } from './type-int.mjs';\n\nconst numberValueTypes = {\n // Border props\n borderWidth: px,\n borderTopWidth: px,\n borderRightWidth: px,\n borderBottomWidth: px,\n borderLeftWidth: px,\n borderRadius: px,\n radius: px,\n borderTopLeftRadius: px,\n borderTopRightRadius: px,\n borderBottomRightRadius: px,\n borderBottomLeftRadius: px,\n // Positioning props\n width: px,\n maxWidth: px,\n height: px,\n maxHeight: px,\n size: px,\n top: px,\n right: px,\n bottom: px,\n left: px,\n // Spacing props\n padding: px,\n paddingTop: px,\n paddingRight: px,\n paddingBottom: px,\n paddingLeft: px,\n margin: px,\n marginTop: px,\n marginRight: px,\n marginBottom: px,\n marginLeft: px,\n // Transform props\n rotate: degrees,\n rotateX: degrees,\n rotateY: degrees,\n rotateZ: degrees,\n scale,\n scaleX: scale,\n scaleY: scale,\n scaleZ: scale,\n skew: degrees,\n skewX: degrees,\n skewY: degrees,\n distance: px,\n translateX: px,\n translateY: px,\n translateZ: px,\n x: px,\n y: px,\n z: px,\n perspective: px,\n transformPerspective: px,\n opacity: alpha,\n originX: progressPercentage,\n originY: progressPercentage,\n originZ: px,\n // Misc\n zIndex: int,\n // SVG\n fillOpacity: alpha,\n strokeOpacity: alpha,\n numOctaves: int,\n};\n\nexport { numberValueTypes };\n","import { buildTransform } from './build-transform.mjs';\nimport { isCSSVariable } from '../../dom/utils/is-css-variable.mjs';\nimport { transformProps } from './transform.mjs';\nimport { getValueAsType } from '../../dom/value-types/get-as-type.mjs';\nimport { numberValueTypes } from '../../dom/value-types/number.mjs';\n\nfunction buildHTMLStyles(state, latestValues, options, transformTemplate) {\n const { style, vars, transform, transformKeys, transformOrigin } = state;\n transformKeys.length = 0;\n // Track whether we encounter any transform or transformOrigin values.\n let hasTransform = false;\n let hasTransformOrigin = false;\n // Does the calculated transform essentially equal \"none\"?\n let transformIsNone = true;\n /**\n * Loop over all our latest animated values and decide whether to handle them\n * as a style or CSS variable.\n *\n * Transforms and transform origins are kept seperately for further processing.\n */\n for (const key in latestValues) {\n const value = latestValues[key];\n /**\n * If this is a CSS variable we don't do any further processing.\n */\n if (isCSSVariable(key)) {\n vars[key] = value;\n continue;\n }\n // Convert the value to its default value type, ie 0 -> \"0px\"\n const valueType = numberValueTypes[key];\n const valueAsType = getValueAsType(value, valueType);\n if (transformProps.has(key)) {\n // If this is a transform, flag to enable further transform processing\n hasTransform = true;\n transform[key] = valueAsType;\n transformKeys.push(key);\n // If we already know we have a non-default transform, early return\n if (!transformIsNone)\n continue;\n // Otherwise check to see if this is a default transform\n if (value !== (valueType.default || 0))\n transformIsNone = false;\n }\n else if (key.startsWith(\"origin\")) {\n // If this is a transform origin, flag and enable further transform-origin processing\n hasTransformOrigin = true;\n transformOrigin[key] = valueAsType;\n }\n else {\n style[key] = valueAsType;\n }\n }\n if (!latestValues.transform) {\n if (hasTransform || transformTemplate) {\n style.transform = buildTransform(state, options, transformIsNone, transformTemplate);\n }\n else if (style.transform) {\n /**\n * If we have previously created a transform but currently don't have any,\n * reset transform style to none.\n */\n style.transform = \"none\";\n }\n }\n /**\n * Build a transformOrigin style. Uses the same defaults as the browser for\n * undefined origins.\n */\n if (hasTransformOrigin) {\n const { originX = \"50%\", originY = \"50%\", originZ = 0, } = transformOrigin;\n style.transformOrigin = `${originX} ${originY} ${originZ}`;\n }\n}\n\nexport { buildHTMLStyles };\n","const createHtmlRenderState = () => ({\n style: {},\n transform: {},\n transformKeys: [],\n transformOrigin: {},\n vars: {},\n});\n\nexport { createHtmlRenderState };\n","import { useMemo } from 'react';\nimport { isForcedMotionValue } from '../../motion/utils/is-forced-motion-value.mjs';\nimport { isMotionValue } from '../../value/utils/is-motion-value.mjs';\nimport { buildHTMLStyles } from './utils/build-styles.mjs';\nimport { createHtmlRenderState } from './utils/create-render-state.mjs';\n\nfunction copyRawValuesOnly(target, source, props) {\n for (const key in source) {\n if (!isMotionValue(source[key]) && !isForcedMotionValue(key, props)) {\n target[key] = source[key];\n }\n }\n}\nfunction useInitialMotionValues({ transformTemplate }, visualState, isStatic) {\n return useMemo(() => {\n const state = createHtmlRenderState();\n buildHTMLStyles(state, visualState, { enableHardwareAcceleration: !isStatic }, transformTemplate);\n return Object.assign({}, state.vars, state.style);\n }, [visualState]);\n}\nfunction useStyle(props, visualState, isStatic) {\n const styleProp = props.style || {};\n const style = {};\n /**\n * Copy non-Motion Values straight into style\n */\n copyRawValuesOnly(style, styleProp, props);\n Object.assign(style, useInitialMotionValues(props, visualState, isStatic));\n return props.transformValues ? props.transformValues(style) : style;\n}\nfunction useHTMLProps(props, visualState, isStatic) {\n // The `any` isn't ideal but it is the type of createElement props argument\n const htmlProps = {};\n const style = useStyle(props, visualState, isStatic);\n if (props.drag && props.dragListener !== false) {\n // Disable the ghost element when a user drags\n htmlProps.draggable = false;\n // Disable text selection\n style.userSelect =\n style.WebkitUserSelect =\n style.WebkitTouchCallout =\n \"none\";\n // Disable scrolling on the draggable direction\n style.touchAction =\n props.drag === true\n ? \"none\"\n : `pan-${props.drag === \"x\" ? \"y\" : \"x\"}`;\n }\n htmlProps.style = style;\n return htmlProps;\n}\n\nexport { copyRawValuesOnly, useHTMLProps };\n","const animationProps = [\n \"animate\",\n \"exit\",\n \"variants\",\n \"whileHover\",\n \"whileTap\",\n \"whileFocus\",\n \"whileDrag\",\n \"whileInView\",\n];\nconst tapProps = [\"whileTap\", \"onTap\", \"onTapStart\", \"onTapCancel\"];\nconst panProps = [\"onPan\", \"onPanStart\", \"onPanSessionStart\", \"onPanEnd\"];\nconst inViewProps = [\n \"whileInView\",\n \"onViewportEnter\",\n \"onViewportLeave\",\n \"viewport\",\n];\n/**\n * A list of all valid MotionProps.\n *\n * @privateRemarks\n * This doesn't throw if a `MotionProp` name is missing - it should.\n */\nconst validMotionProps = new Set([\n \"initial\",\n \"style\",\n \"values\",\n \"variants\",\n \"transition\",\n \"transformTemplate\",\n \"transformValues\",\n \"custom\",\n \"inherit\",\n \"layout\",\n \"layoutId\",\n \"layoutDependency\",\n \"onLayoutAnimationStart\",\n \"onLayoutAnimationComplete\",\n \"onLayoutMeasure\",\n \"onBeforeLayoutMeasure\",\n \"onAnimationStart\",\n \"onAnimationComplete\",\n \"onUpdate\",\n \"onDragStart\",\n \"onDrag\",\n \"onDragEnd\",\n \"onMeasureDragConstraints\",\n \"onDirectionLock\",\n \"onDragTransitionEnd\",\n \"drag\",\n \"dragControls\",\n \"dragListener\",\n \"dragConstraints\",\n \"dragDirectionLock\",\n \"dragSnapToOrigin\",\n \"_dragX\",\n \"_dragY\",\n \"dragElastic\",\n \"dragMomentum\",\n \"dragPropagation\",\n \"dragTransition\",\n \"onHoverStart\",\n \"onHoverEnd\",\n \"layoutScroll\",\n ...inViewProps,\n ...tapProps,\n ...animationProps,\n ...panProps,\n]);\n/**\n * Check whether a prop name is a valid `MotionProp` key.\n *\n * @param key - Name of the property to check\n * @returns `true` is key is a valid `MotionProp`.\n *\n * @public\n */\nfunction isValidMotionProp(key) {\n return validMotionProps.has(key);\n}\n\nexport { isValidMotionProp };\n","import { isValidMotionProp } from '../../../motion/utils/valid-prop.mjs';\n\nlet shouldForward = (key) => !isValidMotionProp(key);\nfunction loadExternalIsValidProp(isValidProp) {\n if (!isValidProp)\n return;\n // Explicitly filter our events\n shouldForward = (key) => key.startsWith(\"on\") ? !isValidMotionProp(key) : isValidProp(key);\n}\n/**\n * Emotion and Styled Components both allow users to pass through arbitrary props to their components\n * to dynamically generate CSS. They both use the `@emotion/is-prop-valid` package to determine which\n * of these should be passed to the underlying DOM node.\n *\n * However, when styling a Motion component `styled(motion.div)`, both packages pass through *all* props\n * as it's seen as an arbitrary component rather than a DOM node. Motion only allows arbitrary props\n * passed through the `custom` prop so it doesn't *need* the payload or computational overhead of\n * `@emotion/is-prop-valid`, however to fix this problem we need to use it.\n *\n * By making it an optionalDependency we can offer this functionality only in the situations where it's\n * actually required.\n */\ntry {\n /**\n * We attempt to import this package but require won't be defined in esm environments, in that case\n * isPropValid will have to be provided via `MotionContext`. In a 6.0.0 this should probably be removed\n * in favour of explicit injection.\n */\n loadExternalIsValidProp(require(\"@emotion/is-prop-valid\").default);\n}\ncatch (_a) {\n // We don't need to actually do anything here - the fallback is the existing `isPropValid`.\n}\nfunction filterProps(props, isDom, forwardMotionProps) {\n const filteredProps = {};\n for (const key in props) {\n if (shouldForward(key) ||\n (forwardMotionProps === true && isValidMotionProp(key)) ||\n (!isDom && !isValidMotionProp(key)) ||\n // If trying to use native HTML drag events, forward drag listeners\n (props[\"draggable\"] && key.startsWith(\"onDrag\"))) {\n filteredProps[key] = props[key];\n }\n }\n return filteredProps;\n}\n\nexport { filterProps, loadExternalIsValidProp };\n","import { px } from 'style-value-types';\n\nfunction calcOrigin(origin, offset, size) {\n return typeof origin === \"string\"\n ? origin\n : px.transform(offset + size * origin);\n}\n/**\n * The SVG transform origin defaults are different to CSS and is less intuitive,\n * so we use the measured dimensions of the SVG to reconcile these.\n */\nfunction calcSVGTransformOrigin(dimensions, originX, originY) {\n const pxOriginX = calcOrigin(originX, dimensions.x, dimensions.width);\n const pxOriginY = calcOrigin(originY, dimensions.y, dimensions.height);\n return `${pxOriginX} ${pxOriginY}`;\n}\n\nexport { calcSVGTransformOrigin };\n","import { px } from 'style-value-types';\n\nconst dashKeys = {\n offset: \"stroke-dashoffset\",\n array: \"stroke-dasharray\",\n};\nconst camelKeys = {\n offset: \"strokeDashoffset\",\n array: \"strokeDasharray\",\n};\n/**\n * Build SVG path properties. Uses the path's measured length to convert\n * our custom pathLength, pathSpacing and pathOffset into stroke-dashoffset\n * and stroke-dasharray attributes.\n *\n * This function is mutative to reduce per-frame GC.\n */\nfunction buildSVGPath(attrs, length, spacing = 1, offset = 0, useDashCase = true) {\n // Normalise path length by setting SVG attribute pathLength to 1\n attrs.pathLength = 1;\n // We use dash case when setting attributes directly to the DOM node and camel case\n // when defining props on a React component.\n const keys = useDashCase ? dashKeys : camelKeys;\n // Build the dash offset\n attrs[keys.offset] = px.transform(-offset);\n // Build the dash array\n const pathLength = px.transform(length);\n const pathSpacing = px.transform(spacing);\n attrs[keys.array] = `${pathLength} ${pathSpacing}`;\n}\n\nexport { buildSVGPath };\n","import { buildHTMLStyles } from '../../html/utils/build-styles.mjs';\nimport { calcSVGTransformOrigin } from './transform-origin.mjs';\nimport { buildSVGPath } from './path.mjs';\n\n/**\n * Build SVG visual attrbutes, like cx and style.transform\n */\nfunction buildSVGAttrs(state, { attrX, attrY, originX, originY, pathLength, pathSpacing = 1, pathOffset = 0, \n// This is object creation, which we try to avoid per-frame.\n...latest }, options, transformTemplate) {\n buildHTMLStyles(state, latest, options, transformTemplate);\n state.attrs = state.style;\n state.style = {};\n const { attrs, style, dimensions } = state;\n /**\n * However, we apply transforms as CSS transforms. So if we detect a transform we take it from attrs\n * and copy it into style.\n */\n if (attrs.transform) {\n if (dimensions)\n style.transform = attrs.transform;\n delete attrs.transform;\n }\n // Parse transformOrigin\n if (dimensions &&\n (originX !== undefined || originY !== undefined || style.transform)) {\n style.transformOrigin = calcSVGTransformOrigin(dimensions, originX !== undefined ? originX : 0.5, originY !== undefined ? originY : 0.5);\n }\n // Treat x/y not as shortcuts but as actual attributes\n if (attrX !== undefined)\n attrs.x = attrX;\n if (attrY !== undefined)\n attrs.y = attrY;\n // Build SVG path if one has been defined\n if (pathLength !== undefined) {\n buildSVGPath(attrs, pathLength, pathSpacing, pathOffset, false);\n }\n}\n\nexport { buildSVGAttrs };\n","import { createHtmlRenderState } from '../../html/utils/create-render-state.mjs';\n\nconst createSvgRenderState = () => ({\n ...createHtmlRenderState(),\n attrs: {},\n});\n\nexport { createSvgRenderState };\n","import { useMemo } from 'react';\nimport { copyRawValuesOnly } from '../html/use-props.mjs';\nimport { buildSVGAttrs } from './utils/build-attrs.mjs';\nimport { createSvgRenderState } from './utils/create-render-state.mjs';\n\nfunction useSVGProps(props, visualState) {\n const visualProps = useMemo(() => {\n const state = createSvgRenderState();\n buildSVGAttrs(state, visualState, { enableHardwareAcceleration: false }, props.transformTemplate);\n return {\n ...state.attrs,\n style: { ...state.style },\n };\n }, [visualState]);\n if (props.style) {\n const rawStyles = {};\n copyRawValuesOnly(rawStyles, props.style, props);\n visualProps.style = { ...rawStyles, ...visualProps.style };\n }\n return visualProps;\n}\n\nexport { useSVGProps };\n","import { createElement } from 'react';\nimport { useHTMLProps } from '../html/use-props.mjs';\nimport { filterProps } from './utils/filter-props.mjs';\nimport { isSVGComponent } from './utils/is-svg-component.mjs';\nimport { useSVGProps } from '../svg/use-props.mjs';\n\nfunction createUseRender(forwardMotionProps = false) {\n const useRender = (Component, props, projectionId, ref, { latestValues }, isStatic) => {\n const useVisualProps = isSVGComponent(Component)\n ? useSVGProps\n : useHTMLProps;\n const visualProps = useVisualProps(props, latestValues, isStatic);\n const filteredProps = filterProps(props, typeof Component === \"string\", forwardMotionProps);\n const elementProps = {\n ...filteredProps,\n ...visualProps,\n ref,\n };\n if (projectionId) {\n elementProps[\"data-projection-id\"] = projectionId;\n }\n return createElement(Component, elementProps);\n };\n return useRender;\n}\n\nexport { createUseRender };\n","/**\n * Convert camelCase to dash-case properties.\n */\nconst camelToDash = (str) => str.replace(/([a-z])([A-Z])/g, \"$1-$2\").toLowerCase();\n\nexport { camelToDash };\n","function renderHTML(element, { style, vars }, styleProp, projection) {\n Object.assign(element.style, style, projection && projection.getProjectionStyles(styleProp));\n // Loop over any CSS variables and assign those.\n for (const key in vars) {\n element.style.setProperty(key, vars[key]);\n }\n}\n\nexport { renderHTML };\n","/**\n * A set of attribute names that are always read/written as camel case.\n */\nconst camelCaseAttributes = new Set([\n \"baseFrequency\",\n \"diffuseConstant\",\n \"kernelMatrix\",\n \"kernelUnitLength\",\n \"keySplines\",\n \"keyTimes\",\n \"limitingConeAngle\",\n \"markerHeight\",\n \"markerWidth\",\n \"numOctaves\",\n \"targetX\",\n \"targetY\",\n \"surfaceScale\",\n \"specularConstant\",\n \"specularExponent\",\n \"stdDeviation\",\n \"tableValues\",\n \"viewBox\",\n \"gradientTransform\",\n \"pathLength\",\n]);\n\nexport { camelCaseAttributes };\n","import { camelToDash } from '../../dom/utils/camel-to-dash.mjs';\nimport { renderHTML } from '../../html/utils/render.mjs';\nimport { camelCaseAttributes } from './camel-case-attrs.mjs';\n\nfunction renderSVG(element, renderState, _styleProp, projection) {\n renderHTML(element, renderState, undefined, projection);\n for (const key in renderState.attrs) {\n element.setAttribute(!camelCaseAttributes.has(key) ? camelToDash(key) : key, renderState.attrs[key]);\n }\n}\n\nexport { renderSVG };\n","import { isForcedMotionValue } from '../../../motion/utils/is-forced-motion-value.mjs';\nimport { isMotionValue } from '../../../value/utils/is-motion-value.mjs';\n\nfunction scrapeMotionValuesFromProps(props) {\n const { style } = props;\n const newValues = {};\n for (const key in style) {\n if (isMotionValue(style[key]) || isForcedMotionValue(key, props)) {\n newValues[key] = style[key];\n }\n }\n return newValues;\n}\n\nexport { scrapeMotionValuesFromProps };\n","import { isMotionValue } from '../../../value/utils/is-motion-value.mjs';\nimport { scrapeMotionValuesFromProps as scrapeMotionValuesFromProps$1 } from '../../html/utils/scrape-motion-values.mjs';\n\nfunction scrapeMotionValuesFromProps(props) {\n const newValues = scrapeMotionValuesFromProps$1(props);\n for (const key in props) {\n if (isMotionValue(props[key])) {\n const targetKey = key === \"x\" || key === \"y\" ? \"attr\" + key.toUpperCase() : key;\n newValues[targetKey] = props[key];\n }\n }\n return newValues;\n}\n\nexport { scrapeMotionValuesFromProps };\n","function resolveVariantFromProps(props, definition, custom, currentValues = {}, currentVelocity = {}) {\n /**\n * If the variant definition is a function, resolve.\n */\n if (typeof definition === \"function\") {\n definition = definition(custom !== undefined ? custom : props.custom, currentValues, currentVelocity);\n }\n /**\n * If the variant definition is a variant label, or\n * the function returned a variant label, resolve.\n */\n if (typeof definition === \"string\") {\n definition = props.variants && props.variants[definition];\n }\n /**\n * At this point we've resolved both functions and variant labels,\n * but the resolved variant label might itself have been a function.\n * If so, resolve. This can only have returned a valid target object.\n */\n if (typeof definition === \"function\") {\n definition = definition(custom !== undefined ? custom : props.custom, currentValues, currentVelocity);\n }\n return definition;\n}\n\nexport { resolveVariantFromProps };\n","const isKeyframesTarget = (v) => {\n return Array.isArray(v);\n};\n\nexport { isKeyframesTarget };\n","import { isKeyframesTarget } from '../animation/utils/is-keyframes-target.mjs';\n\nconst isCustomValue = (v) => {\n return Boolean(v && typeof v === \"object\" && v.mix && v.toValue);\n};\nconst resolveFinalValueInKeyframes = (v) => {\n // TODO maybe throw if v.length - 1 is placeholder token?\n return isKeyframesTarget(v) ? v[v.length - 1] || 0 : v;\n};\n\nexport { isCustomValue, resolveFinalValueInKeyframes };\n","import { isCustomValue } from '../../utils/resolve-value.mjs';\nimport { isMotionValue } from './is-motion-value.mjs';\n\n/**\n * If the provided value is a MotionValue, this returns the actual value, otherwise just the value itself\n *\n * TODO: Remove and move to library\n */\nfunction resolveMotionValue(value) {\n const unwrappedValue = isMotionValue(value) ? value.get() : value;\n return isCustomValue(unwrappedValue)\n ? unwrappedValue.toValue()\n : unwrappedValue;\n}\n\nexport { resolveMotionValue };\n","import { useContext } from 'react';\nimport { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { resolveVariantFromProps } from '../../render/utils/resolve-variants.mjs';\nimport { useConstant } from '../../utils/use-constant.mjs';\nimport { resolveMotionValue } from '../../value/utils/resolve-motion-value.mjs';\nimport { MotionContext } from '../../context/MotionContext/index.mjs';\nimport { isControllingVariants, isVariantNode } from '../../render/utils/is-controlling-variants.mjs';\n\nfunction makeState({ scrapeMotionValuesFromProps, createRenderState, onMount, }, props, context, presenceContext) {\n const state = {\n latestValues: makeLatestValues(props, context, presenceContext, scrapeMotionValuesFromProps),\n renderState: createRenderState(),\n };\n if (onMount) {\n state.mount = (instance) => onMount(props, instance, state);\n }\n return state;\n}\nconst makeUseVisualState = (config) => (props, isStatic) => {\n const context = useContext(MotionContext);\n const presenceContext = useContext(PresenceContext);\n const make = () => makeState(config, props, context, presenceContext);\n return isStatic ? make() : useConstant(make);\n};\nfunction makeLatestValues(props, context, presenceContext, scrapeMotionValues) {\n const values = {};\n const motionValues = scrapeMotionValues(props);\n for (const key in motionValues) {\n values[key] = resolveMotionValue(motionValues[key]);\n }\n let { initial, animate } = props;\n const isControllingVariants$1 = isControllingVariants(props);\n const isVariantNode$1 = isVariantNode(props);\n if (context &&\n isVariantNode$1 &&\n !isControllingVariants$1 &&\n props.inherit !== false) {\n if (initial === undefined)\n initial = context.initial;\n if (animate === undefined)\n animate = context.animate;\n }\n let isInitialAnimationBlocked = presenceContext\n ? presenceContext.initial === false\n : false;\n isInitialAnimationBlocked = isInitialAnimationBlocked || initial === false;\n const variantToSet = isInitialAnimationBlocked ? animate : initial;\n if (variantToSet &&\n typeof variantToSet !== \"boolean\" &&\n !isAnimationControls(variantToSet)) {\n const list = Array.isArray(variantToSet) ? variantToSet : [variantToSet];\n list.forEach((definition) => {\n const resolved = resolveVariantFromProps(props, definition);\n if (!resolved)\n return;\n const { transitionEnd, transition, ...target } = resolved;\n for (const key in target) {\n let valueTarget = target[key];\n if (Array.isArray(valueTarget)) {\n /**\n * Take final keyframe if the initial animation is blocked because\n * we want to initialise at the end of that blocked animation.\n */\n const index = isInitialAnimationBlocked\n ? valueTarget.length - 1\n : 0;\n valueTarget = valueTarget[index];\n }\n if (valueTarget !== null) {\n values[key] = valueTarget;\n }\n }\n for (const key in transitionEnd)\n values[key] = transitionEnd[key];\n });\n }\n return values;\n}\n\nexport { makeUseVisualState };\n","import { renderSVG } from './utils/render.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\nimport { makeUseVisualState } from '../../motion/utils/use-visual-state.mjs';\nimport { createSvgRenderState } from './utils/create-render-state.mjs';\nimport { buildSVGAttrs } from './utils/build-attrs.mjs';\n\nconst svgMotionConfig = {\n useVisualState: makeUseVisualState({\n scrapeMotionValuesFromProps: scrapeMotionValuesFromProps,\n createRenderState: createSvgRenderState,\n onMount: (props, instance, { renderState, latestValues }) => {\n try {\n renderState.dimensions =\n typeof instance.getBBox ===\n \"function\"\n ? instance.getBBox()\n : instance.getBoundingClientRect();\n }\n catch (e) {\n // Most likely trying to measure an unrendered element under Firefox\n renderState.dimensions = {\n x: 0,\n y: 0,\n width: 0,\n height: 0,\n };\n }\n buildSVGAttrs(renderState, latestValues, { enableHardwareAcceleration: false }, props.transformTemplate);\n renderSVG(instance, renderState);\n },\n }),\n};\n\nexport { svgMotionConfig };\n","var AnimationType;\n(function (AnimationType) {\n AnimationType[\"Animate\"] = \"animate\";\n AnimationType[\"Hover\"] = \"whileHover\";\n AnimationType[\"Tap\"] = \"whileTap\";\n AnimationType[\"Drag\"] = \"whileDrag\";\n AnimationType[\"Focus\"] = \"whileFocus\";\n AnimationType[\"InView\"] = \"whileInView\";\n AnimationType[\"Exit\"] = \"exit\";\n})(AnimationType || (AnimationType = {}));\n\nexport { AnimationType };\n","import { makeUseVisualState } from '../../motion/utils/use-visual-state.mjs';\nimport { scrapeMotionValuesFromProps } from './utils/scrape-motion-values.mjs';\nimport { createHtmlRenderState } from './utils/create-render-state.mjs';\n\nconst htmlMotionConfig = {\n useVisualState: makeUseVisualState({\n scrapeMotionValuesFromProps,\n createRenderState: createHtmlRenderState,\n }),\n};\n\nexport { htmlMotionConfig };\n","import { useEffect } from 'react';\n\nfunction addDomEvent(target, eventName, handler, options = { passive: true }) {\n target.addEventListener(eventName, handler, options);\n return () => target.removeEventListener(eventName, handler);\n}\n/**\n * Attaches an event listener directly to the provided DOM element.\n *\n * Bypassing React's event system can be desirable, for instance when attaching non-passive\n * event handlers.\n *\n * ```jsx\n * const ref = useRef(null)\n *\n * useDomEvent(ref, 'wheel', onWheel, { passive: false })\n *\n * return \n * ```\n *\n * @param ref - React.RefObject that's been provided to the element you want to bind the listener to.\n * @param eventName - Name of the event you want listen for.\n * @param handler - Function to fire when receiving the event.\n * @param options - Options to pass to `Event.addEventListener`.\n *\n * @public\n */\nfunction useDomEvent(ref, eventName, handler, options) {\n useEffect(() => {\n const element = ref.current;\n if (handler && element) {\n return addDomEvent(element, eventName, handler, options);\n }\n }, [ref, eventName, handler, options]);\n}\n\nexport { addDomEvent, useDomEvent };\n","function isMouseEvent(event) {\n // PointerEvent inherits from MouseEvent so we can't use a straight instanceof check.\n if (typeof PointerEvent !== \"undefined\" && event instanceof PointerEvent) {\n return !!(event.pointerType === \"mouse\");\n }\n return event instanceof MouseEvent;\n}\nfunction isTouchEvent(event) {\n const hasTouches = !!event.touches;\n return hasTouches;\n}\n\nexport { isMouseEvent, isTouchEvent };\n","import { isTouchEvent } from '../gestures/utils/event-type.mjs';\n\n/**\n * Filters out events not attached to the primary pointer (currently left mouse button)\n * @param eventHandler\n */\nfunction filterPrimaryPointer(eventHandler) {\n return (event) => {\n const isMouseEvent = event instanceof MouseEvent;\n const isPrimaryPointer = !isMouseEvent ||\n (isMouseEvent && event.button === 0);\n if (isPrimaryPointer) {\n eventHandler(event);\n }\n };\n}\nconst defaultPagePoint = { pageX: 0, pageY: 0 };\nfunction pointFromTouch(e, pointType = \"page\") {\n const primaryTouch = e.touches[0] || e.changedTouches[0];\n const point = primaryTouch || defaultPagePoint;\n return {\n x: point[pointType + \"X\"],\n y: point[pointType + \"Y\"],\n };\n}\nfunction pointFromMouse(point, pointType = \"page\") {\n return {\n x: point[pointType + \"X\"],\n y: point[pointType + \"Y\"],\n };\n}\nfunction extractEventInfo(event, pointType = \"page\") {\n return {\n point: isTouchEvent(event)\n ? pointFromTouch(event, pointType)\n : pointFromMouse(event, pointType),\n };\n}\nconst wrapHandler = (handler, shouldFilterPrimaryPointer = false) => {\n const listener = (event) => handler(event, extractEventInfo(event));\n return shouldFilterPrimaryPointer\n ? filterPrimaryPointer(listener)\n : listener;\n};\n\nexport { extractEventInfo, wrapHandler };\n","import { addDomEvent, useDomEvent } from './use-dom-event.mjs';\nimport { wrapHandler } from './event-info.mjs';\nimport { supportsPointerEvents, supportsTouchEvents, supportsMouseEvents } from './utils.mjs';\n\nconst mouseEventNames = {\n pointerdown: \"mousedown\",\n pointermove: \"mousemove\",\n pointerup: \"mouseup\",\n pointercancel: \"mousecancel\",\n pointerover: \"mouseover\",\n pointerout: \"mouseout\",\n pointerenter: \"mouseenter\",\n pointerleave: \"mouseleave\",\n};\nconst touchEventNames = {\n pointerdown: \"touchstart\",\n pointermove: \"touchmove\",\n pointerup: \"touchend\",\n pointercancel: \"touchcancel\",\n};\nfunction getPointerEventName(name) {\n if (supportsPointerEvents()) {\n return name;\n }\n else if (supportsTouchEvents()) {\n return touchEventNames[name];\n }\n else if (supportsMouseEvents()) {\n return mouseEventNames[name];\n }\n return name;\n}\nfunction addPointerEvent(target, eventName, handler, options) {\n return addDomEvent(target, getPointerEventName(eventName), wrapHandler(handler, eventName === \"pointerdown\"), options);\n}\nfunction usePointerEvent(ref, eventName, handler, options) {\n return useDomEvent(ref, getPointerEventName(eventName), handler && wrapHandler(handler, eventName === \"pointerdown\"), options);\n}\n\nexport { addPointerEvent, usePointerEvent };\n","import { isBrowser } from '../utils/is-browser.mjs';\n\n// We check for event support via functions in case they've been mocked by a testing suite.\nconst supportsPointerEvents = () => isBrowser && window.onpointerdown === null;\nconst supportsTouchEvents = () => isBrowser && window.ontouchstart === null;\nconst supportsMouseEvents = () => isBrowser && window.onmousedown === null;\n\nexport { supportsMouseEvents, supportsPointerEvents, supportsTouchEvents };\n","function createLock(name) {\n let lock = null;\n return () => {\n const openLock = () => {\n lock = null;\n };\n if (lock === null) {\n lock = name;\n return openLock;\n }\n return false;\n };\n}\nconst globalHorizontalLock = createLock(\"dragHorizontal\");\nconst globalVerticalLock = createLock(\"dragVertical\");\nfunction getGlobalLock(drag) {\n let lock = false;\n if (drag === \"y\") {\n lock = globalVerticalLock();\n }\n else if (drag === \"x\") {\n lock = globalHorizontalLock();\n }\n else {\n const openHorizontal = globalHorizontalLock();\n const openVertical = globalVerticalLock();\n if (openHorizontal && openVertical) {\n lock = () => {\n openHorizontal();\n openVertical();\n };\n }\n else {\n // Release the locks because we don't use them\n if (openHorizontal)\n openHorizontal();\n if (openVertical)\n openVertical();\n }\n }\n return lock;\n}\nfunction isDragActive() {\n // Check the gesture lock - if we get it, it means no drag gesture is active\n // and we can safely fire the tap gesture.\n const openGestureLock = getGlobalLock(true);\n if (!openGestureLock)\n return true;\n openGestureLock();\n return false;\n}\n\nexport { createLock, getGlobalLock, isDragActive };\n","import { isMouseEvent } from './utils/event-type.mjs';\nimport { AnimationType } from '../render/utils/types.mjs';\nimport { usePointerEvent } from '../events/use-pointer-event.mjs';\nimport { isDragActive } from './drag/utils/lock.mjs';\n\nfunction createHoverEvent(visualElement, isActive, callback) {\n return (event, info) => {\n if (!isMouseEvent(event) || isDragActive())\n return;\n /**\n * Ensure we trigger animations before firing event callback\n */\n if (visualElement.animationState) {\n visualElement.animationState.setActive(AnimationType.Hover, isActive);\n }\n callback && callback(event, info);\n };\n}\nfunction useHoverGesture({ onHoverStart, onHoverEnd, whileHover, visualElement, }) {\n usePointerEvent(visualElement, \"pointerenter\", onHoverStart || whileHover\n ? createHoverEvent(visualElement, true, onHoverStart)\n : undefined, { passive: !onHoverStart });\n usePointerEvent(visualElement, \"pointerleave\", onHoverEnd || whileHover\n ? createHoverEvent(visualElement, false, onHoverEnd)\n : undefined, { passive: !onHoverEnd });\n}\n\nexport { useHoverGesture };\n","/**\n * Recursively traverse up the tree to check whether the provided child node\n * is the parent or a descendant of it.\n *\n * @param parent - Element to find\n * @param child - Element to test against parent\n */\nconst isNodeOrChild = (parent, child) => {\n if (!child) {\n return false;\n }\n else if (parent === child) {\n return true;\n }\n else {\n return isNodeOrChild(parent, child.parentElement);\n }\n};\n\nexport { isNodeOrChild };\n","import { useEffect } from 'react';\n\nfunction useUnmountEffect(callback) {\n return useEffect(() => () => callback(), []);\n}\n\nexport { useUnmountEffect };\n","/**\n * Browser-safe usage of process\n */\nconst defaultEnvironment = \"production\";\nconst env = typeof process === \"undefined\" || process.env === undefined\n ? defaultEnvironment\n : process.env.NODE_ENV || defaultEnvironment;\n\nexport { env };\n","const warned = new Set();\nfunction warnOnce(condition, message, element) {\n if (condition || warned.has(message))\n return;\n console.warn(message);\n if (element)\n console.warn(element);\n warned.add(message);\n}\n\nexport { warnOnce };\n","/**\n * Map an IntersectionHandler callback to an element. We only ever make one handler for one\n * element, so even though these handlers might all be triggered by different\n * observers, we can keep them in the same map.\n */\nconst observerCallbacks = new WeakMap();\n/**\n * Multiple observers can be created for multiple element/document roots. Each with\n * different settings. So here we store dictionaries of observers to each root,\n * using serialised settings (threshold/margin) as lookup keys.\n */\nconst observers = new WeakMap();\nconst fireObserverCallback = (entry) => {\n const callback = observerCallbacks.get(entry.target);\n callback && callback(entry);\n};\nconst fireAllObserverCallbacks = (entries) => {\n entries.forEach(fireObserverCallback);\n};\nfunction initIntersectionObserver({ root, ...options }) {\n const lookupRoot = root || document;\n /**\n * If we don't have an observer lookup map for this root, create one.\n */\n if (!observers.has(lookupRoot)) {\n observers.set(lookupRoot, {});\n }\n const rootObservers = observers.get(lookupRoot);\n const key = JSON.stringify(options);\n /**\n * If we don't have an observer for this combination of root and settings,\n * create one.\n */\n if (!rootObservers[key]) {\n rootObservers[key] = new IntersectionObserver(fireAllObserverCallbacks, { root, ...options });\n }\n return rootObservers[key];\n}\nfunction observeIntersection(element, options, callback) {\n const rootInteresectionObserver = initIntersectionObserver(options);\n observerCallbacks.set(element, callback);\n rootInteresectionObserver.observe(element);\n return () => {\n observerCallbacks.delete(element);\n rootInteresectionObserver.unobserve(element);\n };\n}\n\nexport { observeIntersection };\n","import { env } from '../../../utils/process.mjs';\nimport { useRef, useEffect } from 'react';\nimport { AnimationType } from '../../../render/utils/types.mjs';\nimport { warnOnce } from '../../../utils/warn-once.mjs';\nimport { observeIntersection } from './observers.mjs';\n\nfunction useViewport({ visualElement, whileInView, onViewportEnter, onViewportLeave, viewport = {}, }) {\n const state = useRef({\n hasEnteredView: false,\n isInView: false,\n });\n let shouldObserve = Boolean(whileInView || onViewportEnter || onViewportLeave);\n if (viewport.once && state.current.hasEnteredView)\n shouldObserve = false;\n const useObserver = typeof IntersectionObserver === \"undefined\"\n ? useMissingIntersectionObserver\n : useIntersectionObserver;\n useObserver(shouldObserve, state.current, visualElement, viewport);\n}\nconst thresholdNames = {\n some: 0,\n all: 1,\n};\nfunction useIntersectionObserver(shouldObserve, state, visualElement, { root, margin: rootMargin, amount = \"some\", once }) {\n useEffect(() => {\n if (!shouldObserve)\n return;\n const options = {\n root: root === null || root === void 0 ? void 0 : root.current,\n rootMargin,\n threshold: typeof amount === \"number\" ? amount : thresholdNames[amount],\n };\n const intersectionCallback = (entry) => {\n const { isIntersecting } = entry;\n /**\n * If there's been no change in the viewport state, early return.\n */\n if (state.isInView === isIntersecting)\n return;\n state.isInView = isIntersecting;\n /**\n * Handle hasEnteredView. If this is only meant to run once, and\n * element isn't visible, early return. Otherwise set hasEnteredView to true.\n */\n if (once && !isIntersecting && state.hasEnteredView) {\n return;\n }\n else if (isIntersecting) {\n state.hasEnteredView = true;\n }\n if (visualElement.animationState) {\n visualElement.animationState.setActive(AnimationType.InView, isIntersecting);\n }\n /**\n * Use the latest committed props rather than the ones in scope\n * when this observer is created\n */\n const props = visualElement.getProps();\n const callback = isIntersecting\n ? props.onViewportEnter\n : props.onViewportLeave;\n callback && callback(entry);\n };\n return observeIntersection(visualElement.getInstance(), options, intersectionCallback);\n }, [shouldObserve, root, rootMargin, amount]);\n}\n/**\n * If IntersectionObserver is missing, we activate inView and fire onViewportEnter\n * on mount. This way, the page will be in the state the author expects users\n * to see it in for everyone.\n */\nfunction useMissingIntersectionObserver(shouldObserve, state, visualElement, { fallback = true }) {\n useEffect(() => {\n if (!shouldObserve || !fallback)\n return;\n if (env !== \"production\") {\n warnOnce(false, \"IntersectionObserver not available on this device. whileInView animations will trigger on mount.\");\n }\n /**\n * Fire this in an rAF because, at this point, the animation state\n * won't have flushed for the first time and there's certain logic in\n * there that behaves differently on the initial animation.\n *\n * This hook should be quite rarely called so setting this in an rAF\n * is preferred to changing the behaviour of the animation state.\n */\n requestAnimationFrame(() => {\n state.hasEnteredView = true;\n const { onViewportEnter } = visualElement.getProps();\n onViewportEnter && onViewportEnter(null);\n if (visualElement.animationState) {\n visualElement.animationState.setActive(AnimationType.InView, true);\n }\n });\n }, [shouldObserve]);\n}\n\nexport { useViewport };\n","const makeRenderlessComponent = (hook) => (props) => {\n hook(props);\n return null;\n};\n\nexport { makeRenderlessComponent };\n","import { useFocusGesture } from '../../gestures/use-focus-gesture.mjs';\nimport { useHoverGesture } from '../../gestures/use-hover-gesture.mjs';\nimport { useTapGesture } from '../../gestures/use-tap-gesture.mjs';\nimport { useViewport } from './viewport/use-viewport.mjs';\nimport { makeRenderlessComponent } from '../utils/make-renderless-component.mjs';\n\nconst gestureAnimations = {\n inView: makeRenderlessComponent(useViewport),\n tap: makeRenderlessComponent(useTapGesture),\n focus: makeRenderlessComponent(useFocusGesture),\n hover: makeRenderlessComponent(useHoverGesture),\n};\n\nexport { gestureAnimations };\n","import { useRef } from 'react';\nimport { isNodeOrChild } from './utils/is-node-or-child.mjs';\nimport { usePointerEvent, addPointerEvent } from '../events/use-pointer-event.mjs';\nimport { useUnmountEffect } from '../utils/use-unmount-effect.mjs';\nimport { pipe } from 'popmotion';\nimport { AnimationType } from '../render/utils/types.mjs';\nimport { isDragActive } from './drag/utils/lock.mjs';\n\n/**\n * @param handlers -\n * @internal\n */\nfunction useTapGesture({ onTap, onTapStart, onTapCancel, whileTap, visualElement, }) {\n const hasPressListeners = onTap || onTapStart || onTapCancel || whileTap;\n const isPressing = useRef(false);\n const cancelPointerEndListeners = useRef(null);\n /**\n * Only set listener to passive if there are no external listeners.\n */\n const eventOptions = {\n passive: !(onTapStart || onTap || onTapCancel || onPointerDown),\n };\n function removePointerEndListener() {\n cancelPointerEndListeners.current && cancelPointerEndListeners.current();\n cancelPointerEndListeners.current = null;\n }\n function checkPointerEnd() {\n removePointerEndListener();\n isPressing.current = false;\n visualElement.animationState &&\n visualElement.animationState.setActive(AnimationType.Tap, false);\n return !isDragActive();\n }\n function onPointerUp(event, info) {\n if (!checkPointerEnd())\n return;\n /**\n * We only count this as a tap gesture if the event.target is the same\n * as, or a child of, this component's element\n */\n !isNodeOrChild(visualElement.getInstance(), event.target)\n ? onTapCancel && onTapCancel(event, info)\n : onTap && onTap(event, info);\n }\n function onPointerCancel(event, info) {\n if (!checkPointerEnd())\n return;\n onTapCancel && onTapCancel(event, info);\n }\n function onPointerDown(event, info) {\n removePointerEndListener();\n if (isPressing.current)\n return;\n isPressing.current = true;\n cancelPointerEndListeners.current = pipe(addPointerEvent(window, \"pointerup\", onPointerUp, eventOptions), addPointerEvent(window, \"pointercancel\", onPointerCancel, eventOptions));\n /**\n * Ensure we trigger animations before firing event callback\n */\n visualElement.animationState &&\n visualElement.animationState.setActive(AnimationType.Tap, true);\n onTapStart && onTapStart(event, info);\n }\n usePointerEvent(visualElement, \"pointerdown\", hasPressListeners ? onPointerDown : undefined, eventOptions);\n useUnmountEffect(removePointerEndListener);\n}\n\nexport { useTapGesture };\n","import { AnimationType } from '../render/utils/types.mjs';\nimport { useDomEvent } from '../events/use-dom-event.mjs';\n\n/**\n *\n * @param props\n * @param ref\n * @internal\n */\nfunction useFocusGesture({ whileFocus, visualElement }) {\n const { animationState } = visualElement;\n const onFocus = () => {\n animationState && animationState.setActive(AnimationType.Focus, true);\n };\n const onBlur = () => {\n animationState && animationState.setActive(AnimationType.Focus, false);\n };\n useDomEvent(visualElement, \"focus\", whileFocus ? onFocus : undefined);\n useDomEvent(visualElement, \"blur\", whileFocus ? onBlur : undefined);\n}\n\nexport { useFocusGesture };\n","import { useContext, useId, useEffect } from 'react';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\n\n/**\n * When a component is the child of `AnimatePresence`, it can use `usePresence`\n * to access information about whether it's still present in the React tree.\n *\n * ```jsx\n * import { usePresence } from \"framer-motion\"\n *\n * export const Component = () => {\n * const [isPresent, safeToRemove] = usePresence()\n *\n * useEffect(() => {\n * !isPresent && setTimeout(safeToRemove, 1000)\n * }, [isPresent])\n *\n * return \n * }\n * ```\n *\n * If `isPresent` is `false`, it means that a component has been removed the tree, but\n * `AnimatePresence` won't really remove it until `safeToRemove` has been called.\n *\n * @public\n */\nfunction usePresence() {\n const context = useContext(PresenceContext);\n if (context === null)\n return [true, null];\n const { isPresent, onExitComplete, register } = context;\n // It's safe to call the following hooks conditionally (after an early return) because the context will always\n // either be null or non-null for the lifespan of the component.\n // Replace with useId when released in React\n const id = useId();\n useEffect(() => register(id), []);\n const safeToRemove = () => onExitComplete && onExitComplete(id);\n return !isPresent && onExitComplete ? [false, safeToRemove] : [true];\n}\n/**\n * Similar to `usePresence`, except `useIsPresent` simply returns whether or not the component is present.\n * There is no `safeToRemove` function.\n *\n * ```jsx\n * import { useIsPresent } from \"framer-motion\"\n *\n * export const Component = () => {\n * const isPresent = useIsPresent()\n *\n * useEffect(() => {\n * !isPresent && console.log(\"I've been removed!\")\n * }, [isPresent])\n *\n * return \n * }\n * ```\n *\n * @public\n */\nfunction useIsPresent() {\n return isPresent(useContext(PresenceContext));\n}\nfunction isPresent(context) {\n return context === null ? true : context.isPresent;\n}\n\nexport { isPresent, useIsPresent, usePresence };\n","function shallowCompare(next, prev) {\n if (!Array.isArray(prev))\n return false;\n const prevLength = prev.length;\n if (prevLength !== next.length)\n return false;\n for (let i = 0; i < prevLength; i++) {\n if (prev[i] !== next[i])\n return false;\n }\n return true;\n}\n\nexport { shallowCompare };\n","import { warning } from 'hey-listen';\nimport { clamp } from '../../utils/clamp.mjs';\n\nconst safeMin = 0.001;\nconst minDuration = 0.01;\nconst maxDuration = 10.0;\nconst minDamping = 0.05;\nconst maxDamping = 1;\nfunction findSpring({ duration = 800, bounce = 0.25, velocity = 0, mass = 1, }) {\n let envelope;\n let derivative;\n warning(duration <= maxDuration * 1000, \"Spring duration must be 10 seconds or less\");\n let dampingRatio = 1 - bounce;\n dampingRatio = clamp(minDamping, maxDamping, dampingRatio);\n duration = clamp(minDuration, maxDuration, duration / 1000);\n if (dampingRatio < 1) {\n envelope = (undampedFreq) => {\n const exponentialDecay = undampedFreq * dampingRatio;\n const delta = exponentialDecay * duration;\n const a = exponentialDecay - velocity;\n const b = calcAngularFreq(undampedFreq, dampingRatio);\n const c = Math.exp(-delta);\n return safeMin - (a / b) * c;\n };\n derivative = (undampedFreq) => {\n const exponentialDecay = undampedFreq * dampingRatio;\n const delta = exponentialDecay * duration;\n const d = delta * velocity + velocity;\n const e = Math.pow(dampingRatio, 2) * Math.pow(undampedFreq, 2) * duration;\n const f = Math.exp(-delta);\n const g = calcAngularFreq(Math.pow(undampedFreq, 2), dampingRatio);\n const factor = -envelope(undampedFreq) + safeMin > 0 ? -1 : 1;\n return (factor * ((d - e) * f)) / g;\n };\n }\n else {\n envelope = (undampedFreq) => {\n const a = Math.exp(-undampedFreq * duration);\n const b = (undampedFreq - velocity) * duration + 1;\n return -safeMin + a * b;\n };\n derivative = (undampedFreq) => {\n const a = Math.exp(-undampedFreq * duration);\n const b = (velocity - undampedFreq) * (duration * duration);\n return a * b;\n };\n }\n const initialGuess = 5 / duration;\n const undampedFreq = approximateRoot(envelope, derivative, initialGuess);\n duration = duration * 1000;\n if (isNaN(undampedFreq)) {\n return {\n stiffness: 100,\n damping: 10,\n duration,\n };\n }\n else {\n const stiffness = Math.pow(undampedFreq, 2) * mass;\n return {\n stiffness,\n damping: dampingRatio * 2 * Math.sqrt(mass * stiffness),\n duration,\n };\n }\n}\nconst rootIterations = 12;\nfunction approximateRoot(envelope, derivative, initialGuess) {\n let result = initialGuess;\n for (let i = 1; i < rootIterations; i++) {\n result = result - envelope(result) / derivative(result);\n }\n return result;\n}\nfunction calcAngularFreq(undampedFreq, dampingRatio) {\n return undampedFreq * Math.sqrt(1 - dampingRatio * dampingRatio);\n}\n\nexport { calcAngularFreq, findSpring, maxDamping, maxDuration, minDamping, minDuration };\n","import { __rest } from 'tslib';\nimport { findSpring, calcAngularFreq } from '../utils/find-spring.mjs';\n\nconst durationKeys = [\"duration\", \"bounce\"];\nconst physicsKeys = [\"stiffness\", \"damping\", \"mass\"];\nfunction isSpringType(options, keys) {\n return keys.some((key) => options[key] !== undefined);\n}\nfunction getSpringOptions(options) {\n let springOptions = Object.assign({ velocity: 0.0, stiffness: 100, damping: 10, mass: 1.0, isResolvedFromDuration: false }, options);\n if (!isSpringType(options, physicsKeys) &&\n isSpringType(options, durationKeys)) {\n const derived = findSpring(options);\n springOptions = Object.assign(Object.assign(Object.assign({}, springOptions), derived), { velocity: 0.0, mass: 1.0 });\n springOptions.isResolvedFromDuration = true;\n }\n return springOptions;\n}\nfunction spring(_a) {\n var { from = 0.0, to = 1.0, restSpeed = 2, restDelta } = _a, options = __rest(_a, [\"from\", \"to\", \"restSpeed\", \"restDelta\"]);\n const state = { done: false, value: from };\n let { stiffness, damping, mass, velocity, duration, isResolvedFromDuration, } = getSpringOptions(options);\n let resolveSpring = zero;\n let resolveVelocity = zero;\n function createSpring() {\n const initialVelocity = velocity ? -(velocity / 1000) : 0.0;\n const initialDelta = to - from;\n const dampingRatio = damping / (2 * Math.sqrt(stiffness * mass));\n const undampedAngularFreq = Math.sqrt(stiffness / mass) / 1000;\n if (restDelta === undefined) {\n restDelta = Math.min(Math.abs(to - from) / 100, 0.4);\n }\n if (dampingRatio < 1) {\n const angularFreq = calcAngularFreq(undampedAngularFreq, dampingRatio);\n resolveSpring = (t) => {\n const envelope = Math.exp(-dampingRatio * undampedAngularFreq * t);\n return (to -\n envelope *\n (((initialVelocity +\n dampingRatio * undampedAngularFreq * initialDelta) /\n angularFreq) *\n Math.sin(angularFreq * t) +\n initialDelta * Math.cos(angularFreq * t)));\n };\n resolveVelocity = (t) => {\n const envelope = Math.exp(-dampingRatio * undampedAngularFreq * t);\n return (dampingRatio *\n undampedAngularFreq *\n envelope *\n ((Math.sin(angularFreq * t) *\n (initialVelocity +\n dampingRatio *\n undampedAngularFreq *\n initialDelta)) /\n angularFreq +\n initialDelta * Math.cos(angularFreq * t)) -\n envelope *\n (Math.cos(angularFreq * t) *\n (initialVelocity +\n dampingRatio *\n undampedAngularFreq *\n initialDelta) -\n angularFreq *\n initialDelta *\n Math.sin(angularFreq * t)));\n };\n }\n else if (dampingRatio === 1) {\n resolveSpring = (t) => to -\n Math.exp(-undampedAngularFreq * t) *\n (initialDelta +\n (initialVelocity + undampedAngularFreq * initialDelta) *\n t);\n }\n else {\n const dampedAngularFreq = undampedAngularFreq * Math.sqrt(dampingRatio * dampingRatio - 1);\n resolveSpring = (t) => {\n const envelope = Math.exp(-dampingRatio * undampedAngularFreq * t);\n const freqForT = Math.min(dampedAngularFreq * t, 300);\n return (to -\n (envelope *\n ((initialVelocity +\n dampingRatio * undampedAngularFreq * initialDelta) *\n Math.sinh(freqForT) +\n dampedAngularFreq *\n initialDelta *\n Math.cosh(freqForT))) /\n dampedAngularFreq);\n };\n }\n }\n createSpring();\n return {\n next: (t) => {\n const current = resolveSpring(t);\n if (!isResolvedFromDuration) {\n const currentVelocity = resolveVelocity(t) * 1000;\n const isBelowVelocityThreshold = Math.abs(currentVelocity) <= restSpeed;\n const isBelowDisplacementThreshold = Math.abs(to - current) <= restDelta;\n state.done =\n isBelowVelocityThreshold && isBelowDisplacementThreshold;\n }\n else {\n state.done = t >= duration;\n }\n state.value = state.done ? to : current;\n return state;\n },\n flipTarget: () => {\n velocity = -velocity;\n [from, to] = [to, from];\n createSpring();\n },\n };\n}\nspring.needsInterpolation = (a, b) => typeof a === \"string\" || typeof b === \"string\";\nconst zero = (_t) => 0;\n\nexport { spring };\n","const reverseEasing = easing => p => 1 - easing(1 - p);\nconst mirrorEasing = easing => p => p <= 0.5 ? easing(2 * p) / 2 : (2 - easing(2 * (1 - p))) / 2;\nconst createExpoIn = (power) => p => Math.pow(p, power);\nconst createBackIn = (power) => p => p * p * ((power + 1) * p - power);\nconst createAnticipate = (power) => {\n const backEasing = createBackIn(power);\n return p => (p *= 2) < 1\n ? 0.5 * backEasing(p)\n : 0.5 * (2 - Math.pow(2, -10 * (p - 1)));\n};\n\nexport { createAnticipate, createBackIn, createExpoIn, mirrorEasing, reverseEasing };\n","import { createExpoIn, reverseEasing, mirrorEasing, createBackIn, createAnticipate } from './utils.mjs';\n\nconst DEFAULT_OVERSHOOT_STRENGTH = 1.525;\nconst BOUNCE_FIRST_THRESHOLD = 4.0 / 11.0;\nconst BOUNCE_SECOND_THRESHOLD = 8.0 / 11.0;\nconst BOUNCE_THIRD_THRESHOLD = 9.0 / 10.0;\nconst linear = p => p;\nconst easeIn = createExpoIn(2);\nconst easeOut = reverseEasing(easeIn);\nconst easeInOut = mirrorEasing(easeIn);\nconst circIn = p => 1 - Math.sin(Math.acos(p));\nconst circOut = reverseEasing(circIn);\nconst circInOut = mirrorEasing(circOut);\nconst backIn = createBackIn(DEFAULT_OVERSHOOT_STRENGTH);\nconst backOut = reverseEasing(backIn);\nconst backInOut = mirrorEasing(backIn);\nconst anticipate = createAnticipate(DEFAULT_OVERSHOOT_STRENGTH);\nconst ca = 4356.0 / 361.0;\nconst cb = 35442.0 / 1805.0;\nconst cc = 16061.0 / 1805.0;\nconst bounceOut = (p) => {\n if (p === 1 || p === 0)\n return p;\n const p2 = p * p;\n return p < BOUNCE_FIRST_THRESHOLD\n ? 7.5625 * p2\n : p < BOUNCE_SECOND_THRESHOLD\n ? 9.075 * p2 - 9.9 * p + 3.4\n : p < BOUNCE_THIRD_THRESHOLD\n ? ca * p2 - cb * p + cc\n : 10.8 * p * p - 20.52 * p + 10.72;\n};\nconst bounceIn = reverseEasing(bounceOut);\nconst bounceInOut = (p) => p < 0.5\n ? 0.5 * (1.0 - bounceOut(1.0 - p * 2.0))\n : 0.5 * bounceOut(p * 2.0 - 1.0) + 0.5;\n\nexport { anticipate, backIn, backInOut, backOut, bounceIn, bounceInOut, bounceOut, circIn, circInOut, circOut, easeIn, easeInOut, easeOut, linear };\n","import { interpolate } from '../../utils/interpolate.mjs';\nimport { easeInOut } from '../../easing/index.mjs';\n\nfunction defaultEasing(values, easing) {\n return values.map(() => easing || easeInOut).splice(0, values.length - 1);\n}\nfunction defaultOffset(values) {\n const numValues = values.length;\n return values.map((_value, i) => i !== 0 ? i / (numValues - 1) : 0);\n}\nfunction convertOffsetToTimes(offset, duration) {\n return offset.map((o) => o * duration);\n}\nfunction keyframes({ from = 0, to = 1, ease, offset, duration = 300, }) {\n const state = { done: false, value: from };\n const values = Array.isArray(to) ? to : [from, to];\n const times = convertOffsetToTimes(offset && offset.length === values.length\n ? offset\n : defaultOffset(values), duration);\n function createInterpolator() {\n return interpolate(times, values, {\n ease: Array.isArray(ease) ? ease : defaultEasing(values, ease),\n });\n }\n let interpolator = createInterpolator();\n return {\n next: (t) => {\n state.value = interpolator(t);\n state.done = t >= duration;\n return state;\n },\n flipTarget: () => {\n values.reverse();\n interpolator = createInterpolator();\n },\n };\n}\n\nexport { convertOffsetToTimes, defaultEasing, defaultOffset, keyframes };\n","import { spring } from '../generators/spring.mjs';\nimport { keyframes } from '../generators/keyframes.mjs';\nimport { decay } from '../generators/decay.mjs';\n\nconst types = { keyframes, spring, decay };\nfunction detectAnimationFromOptions(config) {\n if (Array.isArray(config.to)) {\n return keyframes;\n }\n else if (types[config.type]) {\n return types[config.type];\n }\n const keys = new Set(Object.keys(config));\n if (keys.has(\"ease\") ||\n (keys.has(\"duration\") && !keys.has(\"dampingRatio\"))) {\n return keyframes;\n }\n else if (keys.has(\"dampingRatio\") ||\n keys.has(\"stiffness\") ||\n keys.has(\"mass\") ||\n keys.has(\"damping\") ||\n keys.has(\"restSpeed\") ||\n keys.has(\"restDelta\")) {\n return spring;\n }\n return keyframes;\n}\n\nexport { detectAnimationFromOptions };\n","function decay({ velocity = 0, from = 0, power = 0.8, timeConstant = 350, restDelta = 0.5, modifyTarget, }) {\n const state = { done: false, value: from };\n let amplitude = power * velocity;\n const ideal = from + amplitude;\n const target = modifyTarget === undefined ? ideal : modifyTarget(ideal);\n if (target !== ideal)\n amplitude = target - from;\n return {\n next: (t) => {\n const delta = -amplitude * Math.exp(-t / timeConstant);\n state.done = !(delta > restDelta || delta < -restDelta);\n state.value = state.done ? target : target + delta;\n return state;\n },\n flipTarget: () => { },\n };\n}\n\nexport { decay };\n","function loopElapsed(elapsed, duration, delay = 0) {\n return elapsed - duration - delay;\n}\nfunction reverseElapsed(elapsed, duration, delay = 0, isForwardPlayback = true) {\n return isForwardPlayback\n ? loopElapsed(duration + -elapsed, duration, delay)\n : duration - (elapsed - duration) + delay;\n}\nfunction hasRepeatDelayElapsed(elapsed, duration, delay, isForwardPlayback) {\n return isForwardPlayback ? elapsed >= duration + delay : elapsed <= -delay;\n}\n\nexport { hasRepeatDelayElapsed, loopElapsed, reverseElapsed };\n","import { __rest } from 'tslib';\nimport { detectAnimationFromOptions } from './utils/detect-animation-from-options.mjs';\nimport sync, { cancelSync } from 'framesync';\nimport { interpolate } from '../utils/interpolate.mjs';\nimport { hasRepeatDelayElapsed, reverseElapsed, loopElapsed } from './utils/elapsed.mjs';\n\nconst framesync = (update) => {\n const passTimestamp = ({ delta }) => update(delta);\n return {\n start: () => sync.update(passTimestamp, true),\n stop: () => cancelSync.update(passTimestamp),\n };\n};\nfunction animate(_a) {\n var _b, _c;\n var { from, autoplay = true, driver = framesync, elapsed = 0, repeat: repeatMax = 0, repeatType = \"loop\", repeatDelay = 0, onPlay, onStop, onComplete, onRepeat, onUpdate } = _a, options = __rest(_a, [\"from\", \"autoplay\", \"driver\", \"elapsed\", \"repeat\", \"repeatType\", \"repeatDelay\", \"onPlay\", \"onStop\", \"onComplete\", \"onRepeat\", \"onUpdate\"]);\n let { to } = options;\n let driverControls;\n let repeatCount = 0;\n let computedDuration = options.duration;\n let latest;\n let isComplete = false;\n let isForwardPlayback = true;\n let interpolateFromNumber;\n const animator = detectAnimationFromOptions(options);\n if ((_c = (_b = animator).needsInterpolation) === null || _c === void 0 ? void 0 : _c.call(_b, from, to)) {\n interpolateFromNumber = interpolate([0, 100], [from, to], {\n clamp: false,\n });\n from = 0;\n to = 100;\n }\n const animation = animator(Object.assign(Object.assign({}, options), { from, to }));\n function repeat() {\n repeatCount++;\n if (repeatType === \"reverse\") {\n isForwardPlayback = repeatCount % 2 === 0;\n elapsed = reverseElapsed(elapsed, computedDuration, repeatDelay, isForwardPlayback);\n }\n else {\n elapsed = loopElapsed(elapsed, computedDuration, repeatDelay);\n if (repeatType === \"mirror\")\n animation.flipTarget();\n }\n isComplete = false;\n onRepeat && onRepeat();\n }\n function complete() {\n driverControls.stop();\n onComplete && onComplete();\n }\n function update(delta) {\n if (!isForwardPlayback)\n delta = -delta;\n elapsed += delta;\n if (!isComplete) {\n const state = animation.next(Math.max(0, elapsed));\n latest = state.value;\n if (interpolateFromNumber)\n latest = interpolateFromNumber(latest);\n isComplete = isForwardPlayback ? state.done : elapsed <= 0;\n }\n onUpdate === null || onUpdate === void 0 ? void 0 : onUpdate(latest);\n if (isComplete) {\n if (repeatCount === 0)\n computedDuration !== null && computedDuration !== void 0 ? computedDuration : (computedDuration = elapsed);\n if (repeatCount < repeatMax) {\n hasRepeatDelayElapsed(elapsed, computedDuration, repeatDelay, isForwardPlayback) && repeat();\n }\n else {\n complete();\n }\n }\n }\n function play() {\n onPlay === null || onPlay === void 0 ? void 0 : onPlay();\n driverControls = driver(update);\n driverControls.start();\n }\n autoplay && play();\n return {\n stop: () => {\n onStop === null || onStop === void 0 ? void 0 : onStop();\n driverControls.stop();\n },\n };\n}\n\nexport { animate };\n","/**\n * Converts seconds to milliseconds\n *\n * @param seconds - Time in seconds.\n * @return milliseconds - Converted time in milliseconds.\n */\nconst secondsToMilliseconds = (seconds) => seconds * 1000;\n\nexport { secondsToMilliseconds };\n","import { linear } from './index.mjs';\n\nconst a = (a1, a2) => 1.0 - 3.0 * a2 + 3.0 * a1;\nconst b = (a1, a2) => 3.0 * a2 - 6.0 * a1;\nconst c = (a1) => 3.0 * a1;\nconst calcBezier = (t, a1, a2) => ((a(a1, a2) * t + b(a1, a2)) * t + c(a1)) * t;\nconst getSlope = (t, a1, a2) => 3.0 * a(a1, a2) * t * t + 2.0 * b(a1, a2) * t + c(a1);\nconst subdivisionPrecision = 0.0000001;\nconst subdivisionMaxIterations = 10;\nfunction binarySubdivide(aX, aA, aB, mX1, mX2) {\n let currentX;\n let currentT;\n let i = 0;\n do {\n currentT = aA + (aB - aA) / 2.0;\n currentX = calcBezier(currentT, mX1, mX2) - aX;\n if (currentX > 0.0) {\n aB = currentT;\n }\n else {\n aA = currentT;\n }\n } while (Math.abs(currentX) > subdivisionPrecision &&\n ++i < subdivisionMaxIterations);\n return currentT;\n}\nconst newtonIterations = 8;\nconst newtonMinSlope = 0.001;\nfunction newtonRaphsonIterate(aX, aGuessT, mX1, mX2) {\n for (let i = 0; i < newtonIterations; ++i) {\n const currentSlope = getSlope(aGuessT, mX1, mX2);\n if (currentSlope === 0.0) {\n return aGuessT;\n }\n const currentX = calcBezier(aGuessT, mX1, mX2) - aX;\n aGuessT -= currentX / currentSlope;\n }\n return aGuessT;\n}\nconst kSplineTableSize = 11;\nconst kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);\nfunction cubicBezier(mX1, mY1, mX2, mY2) {\n if (mX1 === mY1 && mX2 === mY2)\n return linear;\n const sampleValues = new Float32Array(kSplineTableSize);\n for (let i = 0; i < kSplineTableSize; ++i) {\n sampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);\n }\n function getTForX(aX) {\n let intervalStart = 0.0;\n let currentSample = 1;\n const lastSample = kSplineTableSize - 1;\n for (; currentSample !== lastSample && sampleValues[currentSample] <= aX; ++currentSample) {\n intervalStart += kSampleStepSize;\n }\n --currentSample;\n const dist = (aX - sampleValues[currentSample]) /\n (sampleValues[currentSample + 1] - sampleValues[currentSample]);\n const guessForT = intervalStart + dist * kSampleStepSize;\n const initialSlope = getSlope(guessForT, mX1, mX2);\n if (initialSlope >= newtonMinSlope) {\n return newtonRaphsonIterate(aX, guessForT, mX1, mX2);\n }\n else if (initialSlope === 0.0) {\n return guessForT;\n }\n else {\n return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);\n }\n }\n return (t) => t === 0 || t === 1 ? t : calcBezier(getTForX(t), mY1, mY2);\n}\n\nexport { cubicBezier };\n","import { invariant } from 'hey-listen';\nimport { cubicBezier, linear, easeIn, easeInOut, easeOut, circIn, circInOut, circOut, backIn, backInOut, backOut, anticipate, bounceIn, bounceInOut, bounceOut } from 'popmotion';\n\nconst easingLookup = {\n linear,\n easeIn,\n easeInOut,\n easeOut,\n circIn,\n circInOut,\n circOut,\n backIn,\n backInOut,\n backOut,\n anticipate,\n bounceIn,\n bounceInOut,\n bounceOut,\n};\nconst easingDefinitionToFunction = (definition) => {\n if (Array.isArray(definition)) {\n // If cubic bezier definition, create bezier curve\n invariant(definition.length === 4, `Cubic bezier arrays must contain four numerical values.`);\n const [x1, y1, x2, y2] = definition;\n return cubicBezier(x1, y1, x2, y2);\n }\n else if (typeof definition === \"string\") {\n // Else lookup from table\n invariant(easingLookup[definition] !== undefined, `Invalid easing type '${definition}'`);\n return easingLookup[definition];\n }\n return definition;\n};\nconst isEasingArray = (ease) => {\n return Array.isArray(ease) && typeof ease[0] !== \"number\";\n};\n\nexport { easingDefinitionToFunction, isEasingArray };\n","import { complex } from 'style-value-types';\n\n/**\n * Check if a value is animatable. Examples:\n *\n * ✅: 100, \"100px\", \"#fff\"\n * ❌: \"block\", \"url(2.jpg)\"\n * @param value\n *\n * @internal\n */\nconst isAnimatable = (key, value) => {\n // If the list of keys tat might be non-animatable grows, replace with Set\n if (key === \"zIndex\")\n return false;\n // If it's a number or a keyframes array, we can animate it. We might at some point\n // need to do a deep isAnimatable check of keyframes, or let Popmotion handle this,\n // but for now lets leave it like this for performance reasons\n if (typeof value === \"number\" || Array.isArray(value))\n return true;\n if (typeof value === \"string\" && // It's animatable if we have a string\n complex.test(value) && // And it contains numbers and/or colors\n !value.startsWith(\"url(\") // Unless it starts with \"url(\"\n ) {\n return true;\n }\n return false;\n};\n\nexport { isAnimatable };\n","import { isKeyframesTarget } from './is-keyframes-target.mjs';\n\nconst underDampedSpring = () => ({\n type: \"spring\",\n stiffness: 500,\n damping: 25,\n restSpeed: 10,\n});\nconst criticallyDampedSpring = (to) => ({\n type: \"spring\",\n stiffness: 550,\n damping: to === 0 ? 2 * Math.sqrt(550) : 30,\n restSpeed: 10,\n});\nconst linearTween = () => ({\n type: \"keyframes\",\n ease: \"linear\",\n duration: 0.3,\n});\nconst keyframes = (values) => ({\n type: \"keyframes\",\n duration: 0.8,\n values,\n});\nconst defaultTransitions = {\n x: underDampedSpring,\n y: underDampedSpring,\n z: underDampedSpring,\n rotate: underDampedSpring,\n rotateX: underDampedSpring,\n rotateY: underDampedSpring,\n rotateZ: underDampedSpring,\n scaleX: criticallyDampedSpring,\n scaleY: criticallyDampedSpring,\n scale: criticallyDampedSpring,\n opacity: linearTween,\n backgroundColor: linearTween,\n color: linearTween,\n default: criticallyDampedSpring,\n};\nconst getDefaultTransition = (valueKey, to) => {\n let transitionFactory;\n if (isKeyframesTarget(to)) {\n transitionFactory = keyframes;\n }\n else {\n transitionFactory =\n defaultTransitions[valueKey] || defaultTransitions.default;\n }\n return { to, ...transitionFactory(to) };\n};\n\nexport { criticallyDampedSpring, getDefaultTransition, linearTween, underDampedSpring };\n","import { complex } from './index.mjs';\nimport { floatRegex } from '../utils.mjs';\n\nconst maxDefaults = new Set(['brightness', 'contrast', 'saturate', 'opacity']);\nfunction applyDefaultFilter(v) {\n let [name, value] = v.slice(0, -1).split('(');\n if (name === 'drop-shadow')\n return v;\n const [number] = value.match(floatRegex) || [];\n if (!number)\n return v;\n const unit = value.replace(number, '');\n let defaultValue = maxDefaults.has(name) ? 1 : 0;\n if (number !== value)\n defaultValue *= 100;\n return name + '(' + defaultValue + unit + ')';\n}\nconst functionRegex = /([a-z-]*)\\(.*?\\)/g;\nconst filter = Object.assign(Object.assign({}, complex), { getAnimatableNone: (v) => {\n const functions = v.match(functionRegex);\n return functions ? functions.map(applyDefaultFilter).join(' ') : v;\n } });\n\nexport { filter };\n","import { color, filter } from 'style-value-types';\nimport { numberValueTypes } from './number.mjs';\n\n/**\n * A map of default value types for common values\n */\nconst defaultValueTypes = {\n ...numberValueTypes,\n // Color props\n color,\n backgroundColor: color,\n outlineColor: color,\n fill: color,\n stroke: color,\n // Border props\n borderColor: color,\n borderTopColor: color,\n borderRightColor: color,\n borderBottomColor: color,\n borderLeftColor: color,\n filter,\n WebkitFilter: filter,\n};\n/**\n * Gets the default ValueType for the provided value key\n */\nconst getDefaultValueType = (key) => defaultValueTypes[key];\n\nexport { defaultValueTypes, getDefaultValueType };\n","import { filter, complex } from 'style-value-types';\nimport { getDefaultValueType } from './defaults.mjs';\n\nfunction getAnimatableNone(key, value) {\n var _a;\n let defaultValueType = getDefaultValueType(key);\n if (defaultValueType !== filter)\n defaultValueType = complex;\n // If value is not recognised as animatable, ie \"none\", create an animatable version origin based on the target\n return (_a = defaultValueType.getAnimatableNone) === null || _a === void 0 ? void 0 : _a.call(defaultValueType, value);\n}\n\nexport { getAnimatableNone };\n","const instantAnimationState = {\n current: false,\n};\n\nexport { instantAnimationState };\n","import { inertia, animate } from 'popmotion';\nimport { secondsToMilliseconds } from '../../utils/time-conversion.mjs';\nimport { isEasingArray, easingDefinitionToFunction } from './easing.mjs';\nimport { isAnimatable } from './is-animatable.mjs';\nimport { getDefaultTransition } from './default-transitions.mjs';\nimport { warning } from 'hey-listen';\nimport { getAnimatableNone } from '../../render/dom/value-types/animatable-none.mjs';\nimport { instantAnimationState } from '../../utils/use-instant-transition-state.mjs';\nimport { resolveFinalValueInKeyframes } from '../../utils/resolve-value.mjs';\n\n/**\n * Decide whether a transition is defined on a given Transition.\n * This filters out orchestration options and returns true\n * if any options are left.\n */\nfunction isTransitionDefined({ when, delay, delayChildren, staggerChildren, staggerDirection, repeat, repeatType, repeatDelay, from, ...transition }) {\n return !!Object.keys(transition).length;\n}\nlet legacyRepeatWarning = false;\n/**\n * Convert Framer Motion's Transition type into Popmotion-compatible options.\n */\nfunction convertTransitionToAnimationOptions({ ease, times, yoyo, flip, loop, ...transition }) {\n const options = { ...transition };\n if (times)\n options[\"offset\"] = times;\n /**\n * Convert any existing durations from seconds to milliseconds\n */\n if (transition.duration)\n options[\"duration\"] = secondsToMilliseconds(transition.duration);\n if (transition.repeatDelay)\n options.repeatDelay = secondsToMilliseconds(transition.repeatDelay);\n /**\n * Map easing names to Popmotion's easing functions\n */\n if (ease) {\n options[\"ease\"] = isEasingArray(ease)\n ? ease.map(easingDefinitionToFunction)\n : easingDefinitionToFunction(ease);\n }\n /**\n * Support legacy transition API\n */\n if (transition.type === \"tween\")\n options.type = \"keyframes\";\n /**\n * TODO: These options are officially removed from the API.\n */\n if (yoyo || loop || flip) {\n warning(!legacyRepeatWarning, \"yoyo, loop and flip have been removed from the API. Replace with repeat and repeatType options.\");\n legacyRepeatWarning = true;\n if (yoyo) {\n options.repeatType = \"reverse\";\n }\n else if (loop) {\n options.repeatType = \"loop\";\n }\n else if (flip) {\n options.repeatType = \"mirror\";\n }\n options.repeat = loop || yoyo || flip || transition.repeat;\n }\n /**\n * TODO: Popmotion 9 has the ability to automatically detect whether to use\n * a keyframes or spring animation, but does so by detecting velocity and other spring options.\n * It'd be good to introduce a similar thing here.\n */\n if (transition.type !== \"spring\")\n options.type = \"keyframes\";\n return options;\n}\n/**\n * Get the delay for a value by checking Transition with decreasing specificity.\n */\nfunction getDelayFromTransition(transition, key) {\n var _a, _b;\n const valueTransition = getValueTransition(transition, key) || {};\n return (_b = (_a = valueTransition.delay) !== null && _a !== void 0 ? _a : transition.delay) !== null && _b !== void 0 ? _b : 0;\n}\nfunction hydrateKeyframes(options) {\n if (Array.isArray(options.to) && options.to[0] === null) {\n options.to = [...options.to];\n options.to[0] = options.from;\n }\n return options;\n}\nfunction getPopmotionAnimationOptions(transition, options, key) {\n if (Array.isArray(options.to) && transition.duration === undefined) {\n transition.duration = 0.8;\n }\n hydrateKeyframes(options);\n /**\n * Get a default transition if none is determined to be defined.\n */\n if (!isTransitionDefined(transition)) {\n transition = {\n ...transition,\n ...getDefaultTransition(key, options.to),\n };\n }\n return {\n ...options,\n ...convertTransitionToAnimationOptions(transition),\n };\n}\n/**\n *\n */\nfunction getAnimation(key, value, target, transition, onComplete) {\n const valueTransition = getValueTransition(transition, key) || {};\n let origin = valueTransition.from !== undefined ? valueTransition.from : value.get();\n const isTargetAnimatable = isAnimatable(key, target);\n if (origin === \"none\" && isTargetAnimatable && typeof target === \"string\") {\n /**\n * If we're trying to animate from \"none\", try and get an animatable version\n * of the target. This could be improved to work both ways.\n */\n origin = getAnimatableNone(key, target);\n }\n else if (isZero(origin) && typeof target === \"string\") {\n origin = getZeroUnit(target);\n }\n else if (!Array.isArray(target) &&\n isZero(target) &&\n typeof origin === \"string\") {\n target = getZeroUnit(origin);\n }\n const isOriginAnimatable = isAnimatable(key, origin);\n warning(isOriginAnimatable === isTargetAnimatable, `You are trying to animate ${key} from \"${origin}\" to \"${target}\". ${origin} is not an animatable value - to enable this animation set ${origin} to a value animatable to ${target} via the \\`style\\` property.`);\n function start() {\n const options = {\n from: origin,\n to: target,\n velocity: value.getVelocity(),\n onComplete,\n onUpdate: (v) => value.set(v),\n };\n return valueTransition.type === \"inertia\" ||\n valueTransition.type === \"decay\"\n ? inertia({ ...options, ...valueTransition })\n : animate({\n ...getPopmotionAnimationOptions(valueTransition, options, key),\n onUpdate: (v) => {\n options.onUpdate(v);\n valueTransition.onUpdate && valueTransition.onUpdate(v);\n },\n onComplete: () => {\n options.onComplete();\n valueTransition.onComplete && valueTransition.onComplete();\n },\n });\n }\n function set() {\n const finalTarget = resolveFinalValueInKeyframes(target);\n value.set(finalTarget);\n onComplete();\n valueTransition.onUpdate && valueTransition.onUpdate(finalTarget);\n valueTransition.onComplete && valueTransition.onComplete();\n return { stop: () => { } };\n }\n return !isOriginAnimatable ||\n !isTargetAnimatable ||\n valueTransition.type === false\n ? set\n : start;\n}\nfunction isZero(value) {\n return (value === 0 ||\n (typeof value === \"string\" &&\n parseFloat(value) === 0 &&\n value.indexOf(\" \") === -1));\n}\nfunction getZeroUnit(potentialUnitType) {\n return typeof potentialUnitType === \"number\"\n ? 0\n : getAnimatableNone(\"\", potentialUnitType);\n}\nfunction getValueTransition(transition, key) {\n return transition[key] || transition[\"default\"] || transition;\n}\n/**\n * Start animation on a MotionValue. This function is an interface between\n * Framer Motion and Popmotion\n */\nfunction startAnimation(key, value, target, transition = {}) {\n if (instantAnimationState.current) {\n transition = { type: false };\n }\n return value.start((onComplete) => {\n let delayTimer;\n let controls;\n const animation = getAnimation(key, value, target, transition, onComplete);\n const delay = getDelayFromTransition(transition, key);\n const start = () => (controls = animation());\n if (delay) {\n delayTimer = window.setTimeout(start, secondsToMilliseconds(delay));\n }\n else {\n start();\n }\n return () => {\n clearTimeout(delayTimer);\n controls && controls.stop();\n };\n });\n}\n\nexport { convertTransitionToAnimationOptions, getDelayFromTransition, getPopmotionAnimationOptions, getValueTransition, getZeroUnit, hydrateKeyframes, isTransitionDefined, isZero, startAnimation };\n","import { animate } from './index.mjs';\nimport { velocityPerSecond } from '../utils/velocity-per-second.mjs';\nimport { getFrameData } from 'framesync';\n\nfunction inertia({ from = 0, velocity = 0, min, max, power = 0.8, timeConstant = 750, bounceStiffness = 500, bounceDamping = 10, restDelta = 1, modifyTarget, driver, onUpdate, onComplete, onStop, }) {\n let currentAnimation;\n function isOutOfBounds(v) {\n return (min !== undefined && v < min) || (max !== undefined && v > max);\n }\n function boundaryNearest(v) {\n if (min === undefined)\n return max;\n if (max === undefined)\n return min;\n return Math.abs(min - v) < Math.abs(max - v) ? min : max;\n }\n function startAnimation(options) {\n currentAnimation === null || currentAnimation === void 0 ? void 0 : currentAnimation.stop();\n currentAnimation = animate(Object.assign(Object.assign({}, options), { driver, onUpdate: (v) => {\n var _a;\n onUpdate === null || onUpdate === void 0 ? void 0 : onUpdate(v);\n (_a = options.onUpdate) === null || _a === void 0 ? void 0 : _a.call(options, v);\n }, onComplete,\n onStop }));\n }\n function startSpring(options) {\n startAnimation(Object.assign({ type: \"spring\", stiffness: bounceStiffness, damping: bounceDamping, restDelta }, options));\n }\n if (isOutOfBounds(from)) {\n startSpring({ from, velocity, to: boundaryNearest(from) });\n }\n else {\n let target = power * velocity + from;\n if (typeof modifyTarget !== \"undefined\")\n target = modifyTarget(target);\n const boundary = boundaryNearest(target);\n const heading = boundary === min ? -1 : 1;\n let prev;\n let current;\n const checkBoundary = (v) => {\n prev = current;\n current = v;\n velocity = velocityPerSecond(v - prev, getFrameData().delta);\n if ((heading === 1 && v > boundary) ||\n (heading === -1 && v < boundary)) {\n startSpring({ from: v, to: boundary, velocity });\n }\n };\n startAnimation({\n type: \"decay\",\n from,\n velocity,\n timeConstant,\n power,\n restDelta,\n modifyTarget,\n onUpdate: isOutOfBounds(target) ? checkBoundary : undefined,\n });\n }\n return {\n stop: () => currentAnimation === null || currentAnimation === void 0 ? void 0 : currentAnimation.stop(),\n };\n}\n\nexport { inertia };\n","/**\n * Check if value is a numerical string, ie a string that is purely a number eg \"100\" or \"-100.1\"\n */\nconst isNumericalString = (v) => /^\\-?\\d*\\.?\\d+$/.test(v);\n\nexport { isNumericalString };\n","/**\n * Check if the value is a zero value string like \"0px\" or \"0%\"\n */\nconst isZeroValueString = (v) => /^0[^.\\s]+$/.test(v);\n\nexport { isZeroValueString };\n","/**\n * Tests a provided value against a ValueType\n */\nconst testValueType = (v) => (type) => type.test(v);\n\nexport { testValueType };\n","import { number, px, percent, degrees, vw, vh } from 'style-value-types';\nimport { testValueType } from './test.mjs';\nimport { auto } from './type-auto.mjs';\n\n/**\n * A list of value types commonly used for dimensions\n */\nconst dimensionValueTypes = [number, px, percent, degrees, vw, vh, auto];\n/**\n * Tests a dimensional value against the list of dimension ValueTypes\n */\nconst findDimensionValueType = (v) => dimensionValueTypes.find(testValueType(v));\n\nexport { dimensionValueTypes, findDimensionValueType };\n","/**\n * ValueType for \"auto\"\n */\nconst auto = {\n test: (v) => v === \"auto\",\n parse: (v) => v,\n};\n\nexport { auto };\n","import { color, complex } from 'style-value-types';\nimport { dimensionValueTypes } from './dimensions.mjs';\nimport { testValueType } from './test.mjs';\n\n/**\n * A list of all ValueTypes\n */\nconst valueTypes = [...dimensionValueTypes, color, complex];\n/**\n * Tests a value against the list of ValueTypes\n */\nconst findValueType = (v) => valueTypes.find(testValueType(v));\n\nexport { findValueType };\n","import { resolveVariantFromProps } from './resolve-variants.mjs';\n\n/**\n * Creates an object containing the latest state of every MotionValue on a VisualElement\n */\nfunction getCurrent(visualElement) {\n const current = {};\n visualElement.forEachValue((value, key) => (current[key] = value.get()));\n return current;\n}\n/**\n * Creates an object containing the latest velocity of every MotionValue on a VisualElement\n */\nfunction getVelocity(visualElement) {\n const velocity = {};\n visualElement.forEachValue((value, key) => (velocity[key] = value.getVelocity()));\n return velocity;\n}\nfunction resolveVariant(visualElement, definition, custom) {\n const props = visualElement.getProps();\n return resolveVariantFromProps(props, definition, custom !== undefined ? custom : props.custom, getCurrent(visualElement), getVelocity(visualElement));\n}\n\nexport { resolveVariant };\n","import { complex } from 'style-value-types';\nimport { isNumericalString } from '../../utils/is-numerical-string.mjs';\nimport { isZeroValueString } from '../../utils/is-zero-value-string.mjs';\nimport { resolveFinalValueInKeyframes } from '../../utils/resolve-value.mjs';\nimport { motionValue } from '../../value/index.mjs';\nimport { getAnimatableNone } from '../dom/value-types/animatable-none.mjs';\nimport { findValueType } from '../dom/value-types/find.mjs';\nimport { resolveVariant } from './resolve-dynamic-variants.mjs';\n\n/**\n * Set VisualElement's MotionValue, creating a new MotionValue for it if\n * it doesn't exist.\n */\nfunction setMotionValue(visualElement, key, value) {\n if (visualElement.hasValue(key)) {\n visualElement.getValue(key).set(value);\n }\n else {\n visualElement.addValue(key, motionValue(value));\n }\n}\nfunction setTarget(visualElement, definition) {\n const resolved = resolveVariant(visualElement, definition);\n let { transitionEnd = {}, transition = {}, ...target } = resolved ? visualElement.makeTargetAnimatable(resolved, false) : {};\n target = { ...target, ...transitionEnd };\n for (const key in target) {\n const value = resolveFinalValueInKeyframes(target[key]);\n setMotionValue(visualElement, key, value);\n }\n}\nfunction setVariants(visualElement, variantLabels) {\n const reversedLabels = [...variantLabels].reverse();\n reversedLabels.forEach((key) => {\n var _a;\n const variant = visualElement.getVariant(key);\n variant && setTarget(visualElement, variant);\n (_a = visualElement.variantChildren) === null || _a === void 0 ? void 0 : _a.forEach((child) => {\n setVariants(child, variantLabels);\n });\n });\n}\nfunction setValues(visualElement, definition) {\n if (Array.isArray(definition)) {\n return setVariants(visualElement, definition);\n }\n else if (typeof definition === \"string\") {\n return setVariants(visualElement, [definition]);\n }\n else {\n setTarget(visualElement, definition);\n }\n}\nfunction checkTargetForNewValues(visualElement, target, origin) {\n var _a, _b;\n const newValueKeys = Object.keys(target).filter((key) => !visualElement.hasValue(key));\n const numNewValues = newValueKeys.length;\n if (!numNewValues)\n return;\n for (let i = 0; i < numNewValues; i++) {\n const key = newValueKeys[i];\n const targetValue = target[key];\n let value = null;\n /**\n * If the target is a series of keyframes, we can use the first value\n * in the array. If this first value is null, we'll still need to read from the DOM.\n */\n if (Array.isArray(targetValue)) {\n value = targetValue[0];\n }\n /**\n * If the target isn't keyframes, or the first keyframe was null, we need to\n * first check if an origin value was explicitly defined in the transition as \"from\",\n * if not read the value from the DOM. As an absolute fallback, take the defined target value.\n */\n if (value === null) {\n value = (_b = (_a = origin[key]) !== null && _a !== void 0 ? _a : visualElement.readValue(key)) !== null && _b !== void 0 ? _b : target[key];\n }\n /**\n * If value is still undefined or null, ignore it. Preferably this would throw,\n * but this was causing issues in Framer.\n */\n if (value === undefined || value === null)\n continue;\n if (typeof value === \"string\" &&\n (isNumericalString(value) || isZeroValueString(value))) {\n // If this is a number read as a string, ie \"0\" or \"200\", convert it to a number\n value = parseFloat(value);\n }\n else if (!findValueType(value) && complex.test(targetValue)) {\n value = getAnimatableNone(key, targetValue);\n }\n visualElement.addValue(key, motionValue(value));\n if (origin[key] === undefined) {\n origin[key] = value;\n }\n visualElement.setBaseTarget(key, value);\n }\n}\nfunction getOriginFromTransition(key, transition) {\n if (!transition)\n return;\n const valueTransition = transition[key] || transition[\"default\"] || transition;\n return valueTransition.from;\n}\nfunction getOrigin(target, transition, visualElement) {\n var _a;\n const origin = {};\n for (const key in target) {\n const transitionOrigin = getOriginFromTransition(key, transition);\n origin[key] =\n transitionOrigin !== undefined\n ? transitionOrigin\n : (_a = visualElement.getValue(key)) === null || _a === void 0 ? void 0 : _a.get();\n }\n return origin;\n}\n\nexport { checkTargetForNewValues, getOrigin, getOriginFromTransition, setTarget, setValues };\n","import { isMotionValue } from '../utils/is-motion-value.mjs';\n\nfunction isWillChangeMotionValue(value) {\n return Boolean(isMotionValue(value) && value.add);\n}\n\nexport { isWillChangeMotionValue };\n","import { startAnimation } from '../../animation/utils/transitions.mjs';\nimport { setTarget } from './setters.mjs';\nimport { resolveVariant } from './resolve-dynamic-variants.mjs';\nimport { transformProps } from '../html/utils/transform.mjs';\nimport { isWillChangeMotionValue } from '../../value/use-will-change/is.mjs';\n\nfunction animateVisualElement(visualElement, definition, options = {}) {\n visualElement.notifyAnimationStart(definition);\n let animation;\n if (Array.isArray(definition)) {\n const animations = definition.map((variant) => animateVariant(visualElement, variant, options));\n animation = Promise.all(animations);\n }\n else if (typeof definition === \"string\") {\n animation = animateVariant(visualElement, definition, options);\n }\n else {\n const resolvedDefinition = typeof definition === \"function\"\n ? resolveVariant(visualElement, definition, options.custom)\n : definition;\n animation = animateTarget(visualElement, resolvedDefinition, options);\n }\n return animation.then(() => visualElement.notifyAnimationComplete(definition));\n}\nfunction animateVariant(visualElement, variant, options = {}) {\n var _a;\n const resolved = resolveVariant(visualElement, variant, options.custom);\n let { transition = visualElement.getDefaultTransition() || {} } = resolved || {};\n if (options.transitionOverride) {\n transition = options.transitionOverride;\n }\n /**\n * If we have a variant, create a callback that runs it as an animation.\n * Otherwise, we resolve a Promise immediately for a composable no-op.\n */\n const getAnimation = resolved\n ? () => animateTarget(visualElement, resolved, options)\n : () => Promise.resolve();\n /**\n * If we have children, create a callback that runs all their animations.\n * Otherwise, we resolve a Promise immediately for a composable no-op.\n */\n const getChildAnimations = ((_a = visualElement.variantChildren) === null || _a === void 0 ? void 0 : _a.size)\n ? (forwardDelay = 0) => {\n const { delayChildren = 0, staggerChildren, staggerDirection, } = transition;\n return animateChildren(visualElement, variant, delayChildren + forwardDelay, staggerChildren, staggerDirection, options);\n }\n : () => Promise.resolve();\n /**\n * If the transition explicitly defines a \"when\" option, we need to resolve either\n * this animation or all children animations before playing the other.\n */\n const { when } = transition;\n if (when) {\n const [first, last] = when === \"beforeChildren\"\n ? [getAnimation, getChildAnimations]\n : [getChildAnimations, getAnimation];\n return first().then(last);\n }\n else {\n return Promise.all([getAnimation(), getChildAnimations(options.delay)]);\n }\n}\n/**\n * @internal\n */\nfunction animateTarget(visualElement, definition, { delay = 0, transitionOverride, type } = {}) {\n var _a;\n let { transition = visualElement.getDefaultTransition(), transitionEnd, ...target } = visualElement.makeTargetAnimatable(definition);\n const willChange = visualElement.getValue(\"willChange\");\n if (transitionOverride)\n transition = transitionOverride;\n const animations = [];\n const animationTypeState = type && ((_a = visualElement.animationState) === null || _a === void 0 ? void 0 : _a.getState()[type]);\n for (const key in target) {\n const value = visualElement.getValue(key);\n const valueTarget = target[key];\n if (!value ||\n valueTarget === undefined ||\n (animationTypeState &&\n shouldBlockAnimation(animationTypeState, key))) {\n continue;\n }\n let valueTransition = { delay, ...transition };\n /**\n * Make animation instant if this is a transform prop and we should reduce motion.\n */\n if (visualElement.shouldReduceMotion && transformProps.has(key)) {\n valueTransition = {\n ...valueTransition,\n type: false,\n delay: 0,\n };\n }\n let animation = startAnimation(key, value, valueTarget, valueTransition);\n if (isWillChangeMotionValue(willChange)) {\n willChange.add(key);\n animation = animation.then(() => willChange.remove(key));\n }\n animations.push(animation);\n }\n return Promise.all(animations).then(() => {\n transitionEnd && setTarget(visualElement, transitionEnd);\n });\n}\nfunction animateChildren(visualElement, variant, delayChildren = 0, staggerChildren = 0, staggerDirection = 1, options) {\n const animations = [];\n const maxStaggerDuration = (visualElement.variantChildren.size - 1) * staggerChildren;\n const generateStaggerDuration = staggerDirection === 1\n ? (i = 0) => i * staggerChildren\n : (i = 0) => maxStaggerDuration - i * staggerChildren;\n Array.from(visualElement.variantChildren)\n .sort(sortByTreeOrder)\n .forEach((child, i) => {\n animations.push(animateVariant(child, variant, {\n ...options,\n delay: delayChildren + generateStaggerDuration(i),\n }).then(() => child.notifyAnimationComplete(variant)));\n });\n return Promise.all(animations);\n}\nfunction stopAnimation(visualElement) {\n visualElement.forEachValue((value) => value.stop());\n}\nfunction sortByTreeOrder(a, b) {\n return a.sortNodePosition(b);\n}\n/**\n * Decide whether we should block this animation. Previously, we achieved this\n * just by checking whether the key was listed in protectedKeys, but this\n * posed problems if an animation was triggered by afterChildren and protectedKeys\n * had been set to true in the meantime.\n */\nfunction shouldBlockAnimation({ protectedKeys, needsAnimating }, key) {\n const shouldBlock = protectedKeys.hasOwnProperty(key) && needsAnimating[key] !== true;\n needsAnimating[key] = false;\n return shouldBlock;\n}\n\nexport { animateVisualElement, sortByTreeOrder, stopAnimation };\n","import { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { isKeyframesTarget } from '../../animation/utils/is-keyframes-target.mjs';\nimport { shallowCompare } from '../../utils/shallow-compare.mjs';\nimport { animateVisualElement } from './animation.mjs';\nimport { isVariantLabel } from './is-variant-label.mjs';\nimport { AnimationType } from './types.mjs';\nimport { resolveVariant } from './resolve-dynamic-variants.mjs';\n\nconst variantPriorityOrder = [\n AnimationType.Animate,\n AnimationType.InView,\n AnimationType.Focus,\n AnimationType.Hover,\n AnimationType.Tap,\n AnimationType.Drag,\n AnimationType.Exit,\n];\nconst reversePriorityOrder = [...variantPriorityOrder].reverse();\nconst numAnimationTypes = variantPriorityOrder.length;\nfunction animateList(visualElement) {\n return (animations) => Promise.all(animations.map(({ animation, options }) => animateVisualElement(visualElement, animation, options)));\n}\nfunction createAnimationState(visualElement) {\n let animate = animateList(visualElement);\n const state = createState();\n let isInitialRender = true;\n /**\n * This function will be used to reduce the animation definitions for\n * each active animation type into an object of resolved values for it.\n */\n const buildResolvedTypeValues = (acc, definition) => {\n const resolved = resolveVariant(visualElement, definition);\n if (resolved) {\n const { transition, transitionEnd, ...target } = resolved;\n acc = { ...acc, ...target, ...transitionEnd };\n }\n return acc;\n };\n /**\n * This just allows us to inject mocked animation functions\n * @internal\n */\n function setAnimateFunction(makeAnimator) {\n animate = makeAnimator(visualElement);\n }\n /**\n * When we receive new props, we need to:\n * 1. Create a list of protected keys for each type. This is a directory of\n * value keys that are currently being \"handled\" by types of a higher priority\n * so that whenever an animation is played of a given type, these values are\n * protected from being animated.\n * 2. Determine if an animation type needs animating.\n * 3. Determine if any values have been removed from a type and figure out\n * what to animate those to.\n */\n function animateChanges(options, changedActiveType) {\n var _a;\n const props = visualElement.getProps();\n const context = visualElement.getVariantContext(true) || {};\n /**\n * A list of animations that we'll build into as we iterate through the animation\n * types. This will get executed at the end of the function.\n */\n const animations = [];\n /**\n * Keep track of which values have been removed. Then, as we hit lower priority\n * animation types, we can check if they contain removed values and animate to that.\n */\n const removedKeys = new Set();\n /**\n * A dictionary of all encountered keys. This is an object to let us build into and\n * copy it without iteration. Each time we hit an animation type we set its protected\n * keys - the keys its not allowed to animate - to the latest version of this object.\n */\n let encounteredKeys = {};\n /**\n * If a variant has been removed at a given index, and this component is controlling\n * variant animations, we want to ensure lower-priority variants are forced to animate.\n */\n let removedVariantIndex = Infinity;\n /**\n * Iterate through all animation types in reverse priority order. For each, we want to\n * detect which values it's handling and whether or not they've changed (and therefore\n * need to be animated). If any values have been removed, we want to detect those in\n * lower priority props and flag for animation.\n */\n for (let i = 0; i < numAnimationTypes; i++) {\n const type = reversePriorityOrder[i];\n const typeState = state[type];\n const prop = (_a = props[type]) !== null && _a !== void 0 ? _a : context[type];\n const propIsVariant = isVariantLabel(prop);\n /**\n * If this type has *just* changed isActive status, set activeDelta\n * to that status. Otherwise set to null.\n */\n const activeDelta = type === changedActiveType ? typeState.isActive : null;\n if (activeDelta === false)\n removedVariantIndex = i;\n /**\n * If this prop is an inherited variant, rather than been set directly on the\n * component itself, we want to make sure we allow the parent to trigger animations.\n *\n * TODO: Can probably change this to a !isControllingVariants check\n */\n let isInherited = prop === context[type] && prop !== props[type] && propIsVariant;\n /**\n *\n */\n if (isInherited &&\n isInitialRender &&\n visualElement.manuallyAnimateOnMount) {\n isInherited = false;\n }\n /**\n * Set all encountered keys so far as the protected keys for this type. This will\n * be any key that has been animated or otherwise handled by active, higher-priortiy types.\n */\n typeState.protectedKeys = { ...encounteredKeys };\n // Check if we can skip analysing this prop early\n if (\n // If it isn't active and hasn't *just* been set as inactive\n (!typeState.isActive && activeDelta === null) ||\n // If we didn't and don't have any defined prop for this animation type\n (!prop && !typeState.prevProp) ||\n // Or if the prop doesn't define an animation\n isAnimationControls(prop) ||\n typeof prop === \"boolean\") {\n continue;\n }\n /**\n * As we go look through the values defined on this type, if we detect\n * a changed value or a value that was removed in a higher priority, we set\n * this to true and add this prop to the animation list.\n */\n const variantDidChange = checkVariantsDidChange(typeState.prevProp, prop);\n let shouldAnimateType = variantDidChange ||\n // If we're making this variant active, we want to always make it active\n (type === changedActiveType &&\n typeState.isActive &&\n !isInherited &&\n propIsVariant) ||\n // If we removed a higher-priority variant (i is in reverse order)\n (i > removedVariantIndex && propIsVariant);\n /**\n * As animations can be set as variant lists, variants or target objects, we\n * coerce everything to an array if it isn't one already\n */\n const definitionList = Array.isArray(prop) ? prop : [prop];\n /**\n * Build an object of all the resolved values. We'll use this in the subsequent\n * animateChanges calls to determine whether a value has changed.\n */\n let resolvedValues = definitionList.reduce(buildResolvedTypeValues, {});\n if (activeDelta === false)\n resolvedValues = {};\n /**\n * Now we need to loop through all the keys in the prev prop and this prop,\n * and decide:\n * 1. If the value has changed, and needs animating\n * 2. If it has been removed, and needs adding to the removedKeys set\n * 3. If it has been removed in a higher priority type and needs animating\n * 4. If it hasn't been removed in a higher priority but hasn't changed, and\n * needs adding to the type's protectedKeys list.\n */\n const { prevResolvedValues = {} } = typeState;\n const allKeys = {\n ...prevResolvedValues,\n ...resolvedValues,\n };\n const markToAnimate = (key) => {\n shouldAnimateType = true;\n removedKeys.delete(key);\n typeState.needsAnimating[key] = true;\n };\n for (const key in allKeys) {\n const next = resolvedValues[key];\n const prev = prevResolvedValues[key];\n // If we've already handled this we can just skip ahead\n if (encounteredKeys.hasOwnProperty(key))\n continue;\n /**\n * If the value has changed, we probably want to animate it.\n */\n if (next !== prev) {\n /**\n * If both values are keyframes, we need to shallow compare them to\n * detect whether any value has changed. If it has, we animate it.\n */\n if (isKeyframesTarget(next) && isKeyframesTarget(prev)) {\n if (!shallowCompare(next, prev) || variantDidChange) {\n markToAnimate(key);\n }\n else {\n /**\n * If it hasn't changed, we want to ensure it doesn't animate by\n * adding it to the list of protected keys.\n */\n typeState.protectedKeys[key] = true;\n }\n }\n else if (next !== undefined) {\n // If next is defined and doesn't equal prev, it needs animating\n markToAnimate(key);\n }\n else {\n // If it's undefined, it's been removed.\n removedKeys.add(key);\n }\n }\n else if (next !== undefined && removedKeys.has(key)) {\n /**\n * If next hasn't changed and it isn't undefined, we want to check if it's\n * been removed by a higher priority\n */\n markToAnimate(key);\n }\n else {\n /**\n * If it hasn't changed, we add it to the list of protected values\n * to ensure it doesn't get animated.\n */\n typeState.protectedKeys[key] = true;\n }\n }\n /**\n * Update the typeState so next time animateChanges is called we can compare the\n * latest prop and resolvedValues to these.\n */\n typeState.prevProp = prop;\n typeState.prevResolvedValues = resolvedValues;\n /**\n *\n */\n if (typeState.isActive) {\n encounteredKeys = { ...encounteredKeys, ...resolvedValues };\n }\n if (isInitialRender && visualElement.blockInitialAnimation) {\n shouldAnimateType = false;\n }\n /**\n * If this is an inherited prop we want to hard-block animations\n * TODO: Test as this should probably still handle animations triggered\n * by removed values?\n */\n if (shouldAnimateType && !isInherited) {\n animations.push(...definitionList.map((animation) => ({\n animation: animation,\n options: { type, ...options },\n })));\n }\n }\n /**\n * If there are some removed value that haven't been dealt with,\n * we need to create a new animation that falls back either to the value\n * defined in the style prop, or the last read value.\n */\n if (removedKeys.size) {\n const fallbackAnimation = {};\n removedKeys.forEach((key) => {\n const fallbackTarget = visualElement.getBaseTarget(key);\n if (fallbackTarget !== undefined) {\n fallbackAnimation[key] = fallbackTarget;\n }\n });\n animations.push({ animation: fallbackAnimation });\n }\n let shouldAnimate = Boolean(animations.length);\n if (isInitialRender &&\n props.initial === false &&\n !visualElement.manuallyAnimateOnMount) {\n shouldAnimate = false;\n }\n isInitialRender = false;\n return shouldAnimate ? animate(animations) : Promise.resolve();\n }\n /**\n * Change whether a certain animation type is active.\n */\n function setActive(type, isActive, options) {\n var _a;\n // If the active state hasn't changed, we can safely do nothing here\n if (state[type].isActive === isActive)\n return Promise.resolve();\n // Propagate active change to children\n (_a = visualElement.variantChildren) === null || _a === void 0 ? void 0 : _a.forEach((child) => { var _a; return (_a = child.animationState) === null || _a === void 0 ? void 0 : _a.setActive(type, isActive); });\n state[type].isActive = isActive;\n const animations = animateChanges(options, type);\n for (const key in state) {\n state[key].protectedKeys = {};\n }\n return animations;\n }\n return {\n animateChanges,\n setActive,\n setAnimateFunction,\n getState: () => state,\n };\n}\nfunction checkVariantsDidChange(prev, next) {\n if (typeof next === \"string\") {\n return next !== prev;\n }\n else if (Array.isArray(next)) {\n return !shallowCompare(next, prev);\n }\n return false;\n}\nfunction createTypeState(isActive = false) {\n return {\n isActive,\n protectedKeys: {},\n needsAnimating: {},\n prevResolvedValues: {},\n };\n}\nfunction createState() {\n return {\n [AnimationType.Animate]: createTypeState(true),\n [AnimationType.InView]: createTypeState(),\n [AnimationType.Hover]: createTypeState(),\n [AnimationType.Tap]: createTypeState(),\n [AnimationType.Drag]: createTypeState(),\n [AnimationType.Focus]: createTypeState(),\n [AnimationType.Exit]: createTypeState(),\n };\n}\n\nexport { checkVariantsDidChange, createAnimationState, variantPriorityOrder };\n","import { useEffect, useContext } from 'react';\nimport { isAnimationControls } from '../../animation/utils/is-animation-controls.mjs';\nimport { usePresence } from '../../components/AnimatePresence/use-presence.mjs';\nimport { PresenceContext } from '../../context/PresenceContext.mjs';\nimport { createAnimationState } from '../../render/utils/animation-state.mjs';\nimport { AnimationType } from '../../render/utils/types.mjs';\nimport { makeRenderlessComponent } from '../utils/make-renderless-component.mjs';\n\nconst animations = {\n animation: makeRenderlessComponent(({ visualElement, animate }) => {\n /**\n * We dynamically generate the AnimationState manager as it contains a reference\n * to the underlying animation library. We only want to load that if we load this,\n * so people can optionally code split it out using the `m` component.\n */\n visualElement.animationState || (visualElement.animationState = createAnimationState(visualElement));\n /**\n * Subscribe any provided AnimationControls to the component's VisualElement\n */\n if (isAnimationControls(animate)) {\n useEffect(() => animate.subscribe(visualElement), [animate]);\n }\n }),\n exit: makeRenderlessComponent((props) => {\n const { custom, visualElement } = props;\n const [isPresent, safeToRemove] = usePresence();\n const presenceContext = useContext(PresenceContext);\n useEffect(() => {\n visualElement.isPresent = isPresent;\n const animation = visualElement.animationState &&\n visualElement.animationState.setActive(AnimationType.Exit, !isPresent, {\n custom: (presenceContext && presenceContext.custom) ||\n custom,\n });\n if (animation && !isPresent) {\n animation.then(safeToRemove);\n }\n }, [isPresent]);\n }),\n};\n\nexport { animations };\n","const isPoint = (point) => point.hasOwnProperty('x') && point.hasOwnProperty('y');\n\nexport { isPoint };\n","import { isPoint } from './is-point.mjs';\n\nconst isPoint3D = (point) => isPoint(point) && point.hasOwnProperty('z');\n\nexport { isPoint3D };\n","import { isPoint } from './is-point.mjs';\nimport { isPoint3D } from './is-point-3d.mjs';\nimport { isNum } from './inc.mjs';\n\nconst distance1D = (a, b) => Math.abs(a - b);\nfunction distance(a, b) {\n if (isNum(a) && isNum(b)) {\n return distance1D(a, b);\n }\n else if (isPoint(a) && isPoint(b)) {\n const xDelta = distance1D(a.x, b.x);\n const yDelta = distance1D(a.y, b.y);\n const zDelta = isPoint3D(a) && isPoint3D(b) ? distance1D(a.z, b.z) : 0;\n return Math.sqrt(Math.pow(xDelta, 2) + Math.pow(yDelta, 2) + Math.pow(zDelta, 2));\n }\n}\n\nexport { distance };\n","import { isMouseEvent, isTouchEvent } from './utils/event-type.mjs';\nimport { extractEventInfo } from '../events/event-info.mjs';\nimport sync, { getFrameData, cancelSync } from 'framesync';\nimport { secondsToMilliseconds } from '../utils/time-conversion.mjs';\nimport { addPointerEvent } from '../events/use-pointer-event.mjs';\nimport { distance, pipe } from 'popmotion';\n\n/**\n * @internal\n */\nclass PanSession {\n constructor(event, handlers, { transformPagePoint } = {}) {\n /**\n * @internal\n */\n this.startEvent = null;\n /**\n * @internal\n */\n this.lastMoveEvent = null;\n /**\n * @internal\n */\n this.lastMoveEventInfo = null;\n /**\n * @internal\n */\n this.handlers = {};\n this.updatePoint = () => {\n if (!(this.lastMoveEvent && this.lastMoveEventInfo))\n return;\n const info = getPanInfo(this.lastMoveEventInfo, this.history);\n const isPanStarted = this.startEvent !== null;\n // Only start panning if the offset is larger than 3 pixels. If we make it\n // any larger than this we'll want to reset the pointer history\n // on the first update to avoid visual snapping to the cursoe.\n const isDistancePastThreshold = distance(info.offset, { x: 0, y: 0 }) >= 3;\n if (!isPanStarted && !isDistancePastThreshold)\n return;\n const { point } = info;\n const { timestamp } = getFrameData();\n this.history.push({ ...point, timestamp });\n const { onStart, onMove } = this.handlers;\n if (!isPanStarted) {\n onStart && onStart(this.lastMoveEvent, info);\n this.startEvent = this.lastMoveEvent;\n }\n onMove && onMove(this.lastMoveEvent, info);\n };\n this.handlePointerMove = (event, info) => {\n this.lastMoveEvent = event;\n this.lastMoveEventInfo = transformPoint(info, this.transformPagePoint);\n // Because Safari doesn't trigger mouseup events when it's above a `