{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/aMGMD1iMx6RTvJVYOEOg/qXLnVLv5UKGLTKALROy8/Qm0vexgyT.js", "ssg:https://framerusercontent.com/modules/4vYiV0FndRbDXbalDcBj/rTK7z3uhbu5pNpz6RYtY/UhuEgUPNt.js", "ssg:https://framerusercontent.com/modules/vLqe0EyqVUdl30Bv8OA2/vwK2tzeX1esjSmvnilUW/kTwzovQtg.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js", "ssg:https://framerusercontent.com/modules/Xf9MfdXWGkpDtRhYsTCB/dUeDH1n7RFWhvmavGdGJ/UNUk1BKn7.js", "ssg:https://framerusercontent.com/modules/T3sLsU9qsawr2uOCBLVV/njKscvbl1VY32HGxUTBL/O2hC92XGp.js", "ssg:https://framerusercontent.com/modules/sfVlx5PkPkJ9aOgDGvd3/y2aC7eNVpjnEjIJmBTKS/eyyhYVktx.js", "ssg:https://framer.com/m/Shared-8iGD.js@eDj1MxSfupkYrrIeXQ6b", "ssg:https://framerusercontent.com/modules/xLxE3xIB6g0qWxvfEbl3/eULog8G3ReyYAJkLnKQY/ScrollToTopButton.js", "ssg:https://framerusercontent.com/modules/8Mxn8QXQdzDQUeFgy9zD/QEeacztLgNYQOyfWeXbw/W_wdtiY3B.js", "ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/bN72xRz5v0YMq9JsVDda/zHaIpNvBrJSa63fuazsV/pGrz6wcP6.js", "ssg:https://framerusercontent.com/modules/B3qBOfyoM7HsIoGoRvfh/d0CQYJJeOZwjHmk7WMGj/k3ZChwXkc.js", "ssg:https://framerusercontent.com/modules/sQ5Rq1EmsuPusggzDNfM/UgbZbcZTVCCqiu1Q5FLJ/AIPhQitPD.js", "ssg:https://framerusercontent.com/modules/yL2Ot6kKqZL47OAfrmoe/QjzzBd4P5eNMolyi9ZC7/f0mp2Uhdd.js", "ssg:https://framerusercontent.com/modules/s2RdezKz4j7ZjJ4YkzBt/RK8XXJvt1DsOEUgoexYl/Lwfv393CD.js", "ssg:https://framerusercontent.com/modules/B1lIHHYXztErXo5FEp4c/Mm0XGoUk6AchByzTJNwk/Flj6TmpG1.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Sonoma Regular\",\"CUSTOM;BR Sonoma Bold\",\"CUSTOM;BR Sonoma Bold Italic\",\"CUSTOM;BR Sonoma Regular Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Sonoma Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/UEwcmtfcPoiFI5TQFY4y77HQxg.woff2\"},{family:\"BR Sonoma Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Hp2SHpxIqFO3z1naPPKOObNZII.woff2\"},{family:\"BR Sonoma Bold Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/FoKJ7GDh0BSYGayOgXf2W6eU.woff2\"},{family:\"BR Sonoma Regular Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/sqwysLpfJXnnXKOTpoKdRWVeo.woff2\"}]}];export const css=['.framer-b1fyp .framer-styles-preset-68wpyd:not(.rich-text-wrapper), .framer-b1fyp .framer-styles-preset-68wpyd.rich-text-wrapper p { --framer-font-family: \"BR Sonoma Regular\", \"BR Sonoma Regular Placeholder\", sans-serif; --framer-font-family-bold: \"BR Sonoma Bold\", \"BR Sonoma Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"BR Sonoma Bold Italic\", \"BR Sonoma Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"BR Sonoma Regular Italic\", \"BR Sonoma Regular Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-b1fyp .framer-styles-preset-68wpyd:not(.rich-text-wrapper), .framer-b1fyp .framer-styles-preset-68wpyd.rich-text-wrapper p { --framer-font-family: \"BR Sonoma Regular\", \"BR Sonoma Regular Placeholder\", sans-serif; --framer-font-family-bold: \"BR Sonoma Bold\", \"BR Sonoma Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"BR Sonoma Bold Italic\", \"BR Sonoma Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"BR Sonoma Regular Italic\", \"BR Sonoma Regular Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-b1fyp .framer-styles-preset-68wpyd:not(.rich-text-wrapper), .framer-b1fyp .framer-styles-preset-68wpyd.rich-text-wrapper p { --framer-font-family: \"BR Sonoma Regular\", \"BR Sonoma Regular Placeholder\", sans-serif; --framer-font-family-bold: \"BR Sonoma Bold\", \"BR Sonoma Bold Placeholder\", sans-serif; --framer-font-family-bold-italic: \"BR Sonoma Bold Italic\", \"BR Sonoma Bold Italic Placeholder\", sans-serif; --framer-font-family-italic: \"BR Sonoma Regular Italic\", \"BR Sonoma Regular Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-b1fyp\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-oJQHn .framer-styles-preset-1lenhps:not(.rich-text-wrapper), .framer-oJQHn .framer-styles-preset-1lenhps.rich-text-wrapper a { --framer-link-current-text-color: var(--token-9fae58ba-d24a-4176-a8e1-b8e4875196c1, rgba(249, 249, 249, 0.7)); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, #f9f9f9); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-61ab9142-3698-43d4-a5e0-708c697ee2a2, rgba(249, 249, 249, 0.6)); --framer-link-text-decoration: none; transition: color 0.2s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-oJQHn\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Sonoma SemiBold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Sonoma SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/PQEleuVopU2P2f1u8XyesiKFEeQ.woff2\"}]}];export const css=[\".framer-PYL48 .framer-styles-preset-hgipgv:not(.rich-text-wrapper), .framer-PYL48 .framer-styles-preset-hgipgv.rich-text-wrapper h6 { --framer-font-family: \\\"BR Sonoma SemiBold\\\", \\\"BR Sonoma SemiBold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.17em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7325940b-d5d1-40bd-b03a-bdbd17d47294, #8fb6ff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-PYL48\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"C8qx0dp_I\",\"a7w1V2syf\",\"kI_X3d4oy\",\"CmxhQL0iU\",\"CgxxA7v8C\",\"nbSd1sRPM\",\"rFqqOxng1\",\"xzdnmrTzP\",\"rJpUafGPx\",\"Rb_MQJEGQ\",\"A8aZu73Gx\",\"iW0dgcEKM\",\"oModJrobm\",\"pf02o_SYH\",\"z22IDWhtB\",\"s4md3BmG7\",\"hpa6rAjQu\",\"Ap0ieXV9Y\",\"ZU0ulmGW4\",\"P_aSaI0q7\",\"Fbm2C3rnt\",\"yhQcOvcJp\",\"WcgRxTpJm\",\"n6MXPMTt_\",\"vN_LpY1_M\",\"UnrSesXeA\",\"XZ70CM0Gg\",\"RJ3nOAE40\",\"fa_KyHs05\",\"XVdNhsPs6\",\"FGCFXkoXk\",\"yEo8RjWD2\",\"Xa5FaZUpH\",\"XN2rLF8k_\",\"bihN73WTA\",\"VaqLpZO9Q\",\"kOYY0G93O\",\"zKsmuETa_\",\"v4JiMx8LD\",\"NgbJ4fEO9\",\"vgAPSi05W\",\"ckD9DlPFU\",\"wfhLQOQmd\",\"EKcIxqCwM\",\"ro4khTkxK\",\"gg7pMFcSi\",\"wYvIBsVXu\",\"MesFwc7oH\",\"amhiyctBz\",\"ExI14lsZH\",\"Z7kGKbE1p\",\"Aug8aiWtC\",\"YzC0MGfyY\",\"Fh3vPHl13\",\"w2D4f5is3\",\"z5z2SpQyC\",\"gqDwCengR\",\"vvA0mfEuN\",\"ZBNt2ChBE\",\"Iyb7v2YS9\",\"nIUEec1IL\",\"Rl8SKdyZE\",\"psXRJ3lwM\",\"RbgacZv_a\",\"cqQOIJ5lk\",\"BRZMBizuc\",\"YxMlo2Qht\",\"XT8HNTYgw\",\"Ut8Fuz7b5\",\"dfR2opBO7\",\"l5XRSZkyf\",\"yzzCVUVsS\",\"puvoZLScD\",\"kRejliewt\",\"S0tB1WdJ7\",\"MKinesVzO\",\"PiBGPnWxu\",\"HkGsc7YTU\",\"kLZf9xw3x\",\"lUZ0pev5Q\",\"sqGtAGMP8\",\"wnGkvFu0i\",\"ncwN6QtFx\",\"LA7QO5pdL\",\"lIclLPivN\",\"Ib8nbMtS1\",\"z3SPN_1Tc\",\"F8fJHm46v\",\"dIEe7kBQG\",\"jDP5KUGBh\",\"B59ZKH8Kn\",\"ZyXA6G0Ht\"];const serializationHash=\"framer-gKWyH\";const variantClassNames={a7w1V2syf:\"framer-v-br82ts\",A8aZu73Gx:\"framer-v-q4ruyv\",amhiyctBz:\"framer-v-i9atnz\",Ap0ieXV9Y:\"framer-v-1o522r4\",Aug8aiWtC:\"framer-v-sc9lbd\",B59ZKH8Kn:\"framer-v-1lmjhv8\",bihN73WTA:\"framer-v-zt5akw\",BRZMBizuc:\"framer-v-4rf7v3\",C8qx0dp_I:\"framer-v-mmgj09\",CgxxA7v8C:\"framer-v-1xl502r\",ckD9DlPFU:\"framer-v-1nx4l9y\",CmxhQL0iU:\"framer-v-1dbpdpt\",cqQOIJ5lk:\"framer-v-12shfjl\",dfR2opBO7:\"framer-v-1sowhnd\",dIEe7kBQG:\"framer-v-1vn3zzh\",EKcIxqCwM:\"framer-v-1t9zjsd\",ExI14lsZH:\"framer-v-d3cb3j\",F8fJHm46v:\"framer-v-eaof0t\",fa_KyHs05:\"framer-v-4qqdjg\",Fbm2C3rnt:\"framer-v-17px7in\",FGCFXkoXk:\"framer-v-9euwwn\",Fh3vPHl13:\"framer-v-lc8c8c\",gg7pMFcSi:\"framer-v-fwabzc\",gqDwCengR:\"framer-v-16j3edr\",HkGsc7YTU:\"framer-v-1q6jupb\",hpa6rAjQu:\"framer-v-j3vvf0\",Ib8nbMtS1:\"framer-v-2va211\",iW0dgcEKM:\"framer-v-49sd7j\",Iyb7v2YS9:\"framer-v-ssfx2d\",jDP5KUGBh:\"framer-v-1hy6n1j\",kI_X3d4oy:\"framer-v-1fwf52t\",kLZf9xw3x:\"framer-v-1c35192\",kOYY0G93O:\"framer-v-k0m4el\",kRejliewt:\"framer-v-1j21wr\",l5XRSZkyf:\"framer-v-1vo0oy8\",LA7QO5pdL:\"framer-v-117w8kk\",lIclLPivN:\"framer-v-11z9iy5\",lUZ0pev5Q:\"framer-v-17znp5c\",MesFwc7oH:\"framer-v-1k83zsv\",MKinesVzO:\"framer-v-f9lhky\",n6MXPMTt_:\"framer-v-1ulyz2b\",nbSd1sRPM:\"framer-v-1nrc4a3\",ncwN6QtFx:\"framer-v-1qf60vm\",NgbJ4fEO9:\"framer-v-1hsdp92\",nIUEec1IL:\"framer-v-1iri6xv\",oModJrobm:\"framer-v-1cww1r3\",P_aSaI0q7:\"framer-v-180muwf\",pf02o_SYH:\"framer-v-6mp1a2\",PiBGPnWxu:\"framer-v-dhua8b\",psXRJ3lwM:\"framer-v-5d2v4h\",puvoZLScD:\"framer-v-1dvi6lf\",Rb_MQJEGQ:\"framer-v-1y01ogw\",RbgacZv_a:\"framer-v-182p0qr\",rFqqOxng1:\"framer-v-106pveb\",RJ3nOAE40:\"framer-v-1ul7on3\",rJpUafGPx:\"framer-v-ixa1gl\",Rl8SKdyZE:\"framer-v-8gjw37\",ro4khTkxK:\"framer-v-1j0sn4w\",S0tB1WdJ7:\"framer-v-kiogxj\",s4md3BmG7:\"framer-v-pxlxgj\",sqGtAGMP8:\"framer-v-18qen7a\",UnrSesXeA:\"framer-v-has60g\",Ut8Fuz7b5:\"framer-v-dujl0d\",v4JiMx8LD:\"framer-v-1veqmi\",VaqLpZO9Q:\"framer-v-uya567\",vgAPSi05W:\"framer-v-1qua9aa\",vN_LpY1_M:\"framer-v-m2bw6z\",vvA0mfEuN:\"framer-v-stoqmh\",w2D4f5is3:\"framer-v-iifl1n\",WcgRxTpJm:\"framer-v-3quylj\",wfhLQOQmd:\"framer-v-1u7aenf\",wnGkvFu0i:\"framer-v-btmom7\",wYvIBsVXu:\"framer-v-1mum0z9\",Xa5FaZUpH:\"framer-v-p9yjmi\",XN2rLF8k_:\"framer-v-1ga2r6o\",XT8HNTYgw:\"framer-v-yumdb6\",XVdNhsPs6:\"framer-v-1g4vyk4\",XZ70CM0Gg:\"framer-v-1eqzay\",xzdnmrTzP:\"framer-v-1svwnhn\",yEo8RjWD2:\"framer-v-1vtopd8\",yhQcOvcJp:\"framer-v-q9cs40\",YxMlo2Qht:\"framer-v-qmvuts\",YzC0MGfyY:\"framer-v-1hi96eo\",yzzCVUVsS:\"framer-v-1kjaawn\",z22IDWhtB:\"framer-v-fgjs9y\",z3SPN_1Tc:\"framer-v-12f12oa\",z5z2SpQyC:\"framer-v-fezoua\",Z7kGKbE1p:\"framer-v-hkj8y0\",ZBNt2ChBE:\"framer-v-1tuxzwn\",zKsmuETa_:\"framer-v-1wunmim\",ZU0ulmGW4:\"framer-v-ba1bm4\",ZyXA6G0Ht:\"framer-v-g1yo5s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"3D\":\"rFqqOxng1\",\"Art History\":\"YzC0MGfyY\",\"Design Inspiration\":\"F8fJHm46v\",\"Design System\":\"ZyXA6G0Ht\",\"Human Evolution\":\"gqDwCengR\",\"In-house\":\"l5XRSZkyf\",\"Industrial Design\":\"Rb_MQJEGQ\",\"Medieval town\":\"MesFwc7oH\",\"Mental Health\":\"Aug8aiWtC\",\"N. America\":\"v4JiMx8LD\",\"No-Code\":\"S0tB1WdJ7\",\"Portfolio Inspiration\":\"dIEe7kBQG\",\"Product Design\":\"PiBGPnWxu\",\"Project Management\":\"dfR2opBO7\",\"S. America\":\"VaqLpZO9Q\",\"Story Mapping\":\"nIUEec1IL\",\"Web Evaluations\":\"Ib8nbMtS1\",Agency:\"yzzCVUVsS\",Agile:\"Iyb7v2YS9\",All:\"Xa5FaZUpH\",Animation:\"w2D4f5is3\",Arctic:\"bihN73WTA\",Asia:\"NgbJ4fEO9\",Assets:\"ncwN6QtFx\",Base:\"C8qx0dp_I\",Books:\"wnGkvFu0i\",City:\"amhiyctBz\",Coaching:\"iW0dgcEKM\",Conferences:\"kLZf9xw3x\",Courses:\"HkGsc7YTU\",Desktop:\"hpa6rAjQu\",Dev:\"MKinesVzO\",Digital:\"vN_LpY1_M\",Embedded:\"Fbm2C3rnt\",Europe:\"kOYY0G93O\",Facilitation:\"Rl8SKdyZE\",Figma:\"yEo8RjWD2\",Forest:\"wYvIBsVXu\",Framer:\"FGCFXkoXk\",Freelance:\"puvoZLScD\",Glass:\"UnrSesXeA\",Grad:\"BRZMBizuc\",Graph:\"RbgacZv_a\",Guidelines:\"lIclLPivN\",Hubs:\"LA7QO5pdL\",IC:\"XT8HNTYgw\",Iceabreaker:\"wfhLQOQmd\",Illustration:\"psXRJ3lwM\",Island:\"EKcIxqCwM\",Lead:\"Ut8Fuz7b5\",List:\"cqQOIJ5lk\",Liveaboard:\"ckD9DlPFU\",Machinery:\"ZU0ulmGW4\",Management:\"kI_X3d4oy\",Marketing:\"rJpUafGPx\",Medical:\"vvA0mfEuN\",Mentoring:\"kRejliewt\",Metal:\"fa_KyHs05\",Mobile:\"z22IDWhtB\",Mountain:\"vgAPSi05W\",Neuroscience:\"a7w1V2syf\",Oceania:\"zKsmuETa_\",Packaging:\"WcgRxTpJm\",Photography:\"A8aZu73Gx\",Plastic:\"RJ3nOAE40\",Podcasts:\"sqGtAGMP8\",Prarie:\"gg7pMFcSi\",Print:\"n6MXPMTt_\",Productivity:\"z5z2SpQyC\",Psychology:\"Z7kGKbE1p\",QX200:\"B59ZKH8Kn\",QXOne:\"jDP5KUGBh\",Research:\"CgxxA7v8C\",Rive:\"XN2rLF8k_\",Rowing:\"Fh3vPHl13\",Software:\"z3SPN_1Tc\",Solo:\"YxMlo2Qht\",Spline:\"XVdNhsPs6\",Strategy:\"CmxhQL0iU\",Tablet:\"s4md3BmG7\",Teaching:\"oModJrobm\",Tent:\"ro4khTkxK\",Touch:\"Ap0ieXV9Y\",UIUX:\"nbSd1sRPM\",Vehicle:\"P_aSaI0q7\",Village:\"ExI14lsZH\",Visual:\"xzdnmrTzP\",Watercolor:\"ZBNt2ChBE\",Wearable:\"yhQcOvcJp\",Web:\"pf02o_SYH\",Wood:\"XZ70CM0Gg\",YouTube:\"lUZ0pev5Q\"};const getProps=({height,id,logoColor,opacity,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,p8vZTvEYh:(_ref=logoColor!==null&&logoColor!==void 0?logoColor:props.p8vZTvEYh)!==null&&_ref!==void 0?_ref:\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"C8qx0dp_I\",VIlSmxuQ7:(_ref2=opacity!==null&&opacity!==void 0?opacity:props.VIlSmxuQ7)!==null&&_ref2!==void 0?_ref2:1};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,p8vZTvEYh,VIlSmxuQ7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C8qx0dp_I\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mmgj09\",className,classNames),\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"C8qx0dp_I\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{B59ZKH8Kn:{opacity:VIlSmxuQ7},jDP5KUGBh:{opacity:VIlSmxuQ7}},...addPropertyOverrides({a7w1V2syf:{\"data-framer-name\":\"Neuroscience\"},A8aZu73Gx:{\"data-framer-name\":\"Photography\"},amhiyctBz:{\"data-framer-name\":\"City\"},Ap0ieXV9Y:{\"data-framer-name\":\"Touch\"},Aug8aiWtC:{\"data-framer-name\":\"Mental Health\"},B59ZKH8Kn:{\"data-framer-name\":\"QX200\"},bihN73WTA:{\"data-framer-name\":\"Arctic\"},BRZMBizuc:{\"data-framer-name\":\"Grad\"},CgxxA7v8C:{\"data-framer-name\":\"Research\"},ckD9DlPFU:{\"data-framer-name\":\"Liveaboard\"},CmxhQL0iU:{\"data-framer-name\":\"Strategy\"},cqQOIJ5lk:{\"data-framer-name\":\"List\"},dfR2opBO7:{\"data-framer-name\":\"Project Management\"},dIEe7kBQG:{\"data-framer-name\":\"Portfolio Inspiration\"},EKcIxqCwM:{\"data-framer-name\":\"Island\"},ExI14lsZH:{\"data-framer-name\":\"Village\"},F8fJHm46v:{\"data-framer-name\":\"Design Inspiration\"},fa_KyHs05:{\"data-framer-name\":\"Metal\"},Fbm2C3rnt:{\"data-framer-name\":\"Embedded\"},FGCFXkoXk:{\"data-framer-name\":\"Framer\"},Fh3vPHl13:{\"data-framer-name\":\"Rowing\"},gg7pMFcSi:{\"data-framer-name\":\"Prarie\"},gqDwCengR:{\"data-framer-name\":\"Human Evolution\"},HkGsc7YTU:{\"data-framer-name\":\"Courses\"},hpa6rAjQu:{\"data-framer-name\":\"Desktop\"},Ib8nbMtS1:{\"data-framer-name\":\"Web Evaluations\"},iW0dgcEKM:{\"data-framer-name\":\"Coaching\"},Iyb7v2YS9:{\"data-framer-name\":\"Agile\"},jDP5KUGBh:{\"data-framer-name\":\"QXOne\"},kI_X3d4oy:{\"data-framer-name\":\"Management\"},kLZf9xw3x:{\"data-framer-name\":\"Conferences\"},kOYY0G93O:{\"data-framer-name\":\"Europe\"},kRejliewt:{\"data-framer-name\":\"Mentoring\"},l5XRSZkyf:{\"data-framer-name\":\"In-house\"},LA7QO5pdL:{\"data-framer-name\":\"Hubs\"},lIclLPivN:{\"data-framer-name\":\"Guidelines\"},lUZ0pev5Q:{\"data-framer-name\":\"YouTube\"},MesFwc7oH:{\"data-framer-name\":\"Medieval town\"},MKinesVzO:{\"data-framer-name\":\"Dev\"},n6MXPMTt_:{\"data-framer-name\":\"Print\"},nbSd1sRPM:{\"data-framer-name\":\"UIUX\"},ncwN6QtFx:{\"data-framer-name\":\"Assets\"},NgbJ4fEO9:{\"data-framer-name\":\"Asia\"},nIUEec1IL:{\"data-framer-name\":\"Story Mapping\"},oModJrobm:{\"data-framer-name\":\"Teaching\"},P_aSaI0q7:{\"data-framer-name\":\"Vehicle\"},pf02o_SYH:{\"data-framer-name\":\"Web\"},PiBGPnWxu:{\"data-framer-name\":\"Product Design\"},psXRJ3lwM:{\"data-framer-name\":\"Illustration\"},puvoZLScD:{\"data-framer-name\":\"Freelance\"},Rb_MQJEGQ:{\"data-framer-name\":\"Industrial Design\"},RbgacZv_a:{\"data-framer-name\":\"Graph\"},rFqqOxng1:{\"data-framer-name\":\"3D\"},RJ3nOAE40:{\"data-framer-name\":\"Plastic\"},rJpUafGPx:{\"data-framer-name\":\"Marketing\"},Rl8SKdyZE:{\"data-framer-name\":\"Facilitation\"},ro4khTkxK:{\"data-framer-name\":\"Tent\"},S0tB1WdJ7:{\"data-framer-name\":\"No-Code\"},s4md3BmG7:{\"data-framer-name\":\"Tablet\"},sqGtAGMP8:{\"data-framer-name\":\"Podcasts\"},UnrSesXeA:{\"data-framer-name\":\"Glass\"},Ut8Fuz7b5:{\"data-framer-name\":\"Lead\"},v4JiMx8LD:{\"data-framer-name\":\"N. America\"},VaqLpZO9Q:{\"data-framer-name\":\"S. America\"},vgAPSi05W:{\"data-framer-name\":\"Mountain\"},vN_LpY1_M:{\"data-framer-name\":\"Digital\"},vvA0mfEuN:{\"data-framer-name\":\"Medical\"},w2D4f5is3:{\"data-framer-name\":\"Animation\"},WcgRxTpJm:{\"data-framer-name\":\"Packaging\"},wfhLQOQmd:{\"data-framer-name\":\"Iceabreaker\"},wnGkvFu0i:{\"data-framer-name\":\"Books\"},wYvIBsVXu:{\"data-framer-name\":\"Forest\"},Xa5FaZUpH:{\"data-framer-name\":\"All\"},XN2rLF8k_:{\"data-framer-name\":\"Rive\"},XT8HNTYgw:{\"data-framer-name\":\"IC\"},XVdNhsPs6:{\"data-framer-name\":\"Spline\"},XZ70CM0Gg:{\"data-framer-name\":\"Wood\"},xzdnmrTzP:{\"data-framer-name\":\"Visual\"},yEo8RjWD2:{\"data-framer-name\":\"Figma\"},yhQcOvcJp:{\"data-framer-name\":\"Wearable\"},YxMlo2Qht:{\"data-framer-name\":\"Solo\"},YzC0MGfyY:{\"data-framer-name\":\"Art History\"},yzzCVUVsS:{\"data-framer-name\":\"Agency\"},z22IDWhtB:{\"data-framer-name\":\"Mobile\"},z3SPN_1Tc:{\"data-framer-name\":\"Software\"},z5z2SpQyC:{\"data-framer-name\":\"Productivity\"},Z7kGKbE1p:{\"data-framer-name\":\"Psychology\"},ZBNt2ChBE:{\"data-framer-name\":\"Watercolor\"},zKsmuETa_:{\"data-framer-name\":\"Oceania\"},ZU0ulmGW4:{\"data-framer-name\":\"Machinery\"},ZyXA6G0Ht:{\"data-framer-name\":\"Design System\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13agzzw-container\",layoutDependency:layoutDependency,layoutId:\"RiVZAEfny-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:p8vZTvEYh,customPadding:0,customStrokeWidth:2,customSvgCode:\"\",height:\"100%\",id:\"RiVZAEfny\",layoutId:\"RiVZAEfny\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({a7w1V2syf:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.2887 4C15.4242 4 16.3878 4.73601 16.7284 5.757C16.8636 6.16195 17.1844 6.50779 17.5855 6.65403C18.7179 7.06693 19.5264 8.15336 19.5264 9.42863M14.2887 4C12.9007 4 11.7695 5.0997 11.719 6.47534C11.719 6.47584 11.7186 6.47624 11.7181 6.47624C11.7176 6.47624 11.7171 6.47665 11.7171 6.47716V17.3326C11.7171 17.333 11.7175 17.3334 11.718 17.3334C11.7185 17.3334 11.7189 17.3338 11.7188 17.3343C11.7177 17.3656 11.7171 17.397 11.7171 17.4285C11.7171 18.8487 12.8684 20 14.2886 20C15.7087 20 16.86 18.8487 16.86 17.4285C16.86 17.1676 17.043 16.927 17.296 16.8634C18.5776 16.5413 19.5264 15.3814 19.5264 13.9999M14.2887 4C12.8685 4 11.7171 5.15127 11.7171 6.57144M14.2887 4C15.7088 4 16.86 5.15127 16.86 6.57144C16.86 7.41523 16.4536 8.1641 15.8258 8.63297M19.5264 13.9999C19.5264 13.4505 19.3764 12.9361 19.115 12.4956C18.8417 12.035 18.8417 11.3936 19.115 10.933C19.3764 10.4924 19.5264 9.97805 19.5264 9.42863M19.5264 13.9999C19.5264 15.6305 18.2048 16.9524 16.5742 16.9524C16.0384 16.9524 15.5359 16.8096 15.1027 16.5601M19.5264 9.42863C19.5264 11.0592 18.2046 12.381 16.574 12.381M9.23769 4C8.10223 4 7.13865 4.73595 6.79795 5.75687C6.6628 6.16186 6.34191 6.50771 5.94078 6.65392C4.8082 7.06674 3.99951 8.15324 3.99951 9.42863M9.23769 4C10.6257 4 11.7569 5.09975 11.8074 6.47544C11.8074 6.47588 11.8078 6.47624 11.8082 6.47624C11.8087 6.47624 11.809 6.47661 11.809 6.47706V6.54759C11.8091 6.55553 11.8091 6.56348 11.8091 6.57144M9.23769 4C10.6579 4 11.8091 5.15127 11.8091 6.57144M9.23769 4C7.81753 4 6.6665 5.15127 6.6665 6.57144C6.6665 7.41523 7.07292 8.1641 7.70068 8.63297M11.8091 6.57144C11.8091 6.57939 11.8091 6.58734 11.809 6.59528V17.3326C11.809 17.333 11.8086 17.3334 11.8082 17.3334C11.8077 17.3334 11.8073 17.3338 11.8073 17.3343C11.8085 17.3656 11.809 17.397 11.809 17.4285C11.809 18.8487 10.6577 20 9.23759 20C7.81742 20 6.66615 18.8487 6.66615 17.4285C6.66615 17.1676 6.48316 16.927 6.23014 16.8634C4.94847 16.5414 3.99951 15.3815 3.99951 13.9999M3.99951 13.9999C3.99951 13.4505 4.14959 12.9361 4.41099 12.4956C4.68426 12.035 4.68426 11.3936 4.41099 10.933C4.14959 10.4924 3.99951 9.97805 3.99951 9.42863M3.99951 13.9999C3.99951 15.6305 5.32177 16.9524 6.95232 16.9524C7.48816 16.9524 7.99065 16.8096 8.42385 16.5601M3.99951 9.42863C3.99951 11.0592 5.32172 12.381 6.95228 12.381\" stroke=\"#F9F9F9\" stroke-width=\"2\" stroke-linecap=\"round\"/> </svg>'},A8aZu73Gx:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.3562 3.66655C9.74824 3.66655 9.16109 3.88811 8.70467 4.28977L7.51892 5.33322H4.50005C3.11934 5.33322 2.00005 6.45251 2.00005 7.83322V17.8332C2.00005 19.214 3.11934 20.3332 4.50005 20.3332H19.5C20.8808 20.3332 22 19.214 22 17.8332V7.83322C22 6.45251 20.8808 5.33322 19.5 5.33322H16.4811L15.2955 4.28977C14.839 3.88811 14.2519 3.66655 13.6439 3.66655H10.3562ZM9.80571 5.54096C9.95786 5.40707 10.1536 5.33322 10.3562 5.33322H13.6439C13.8465 5.33322 14.0422 5.40707 14.1944 5.54096L15.8523 6.99989H19.5C19.9603 6.99989 20.3334 7.37298 20.3334 7.83322V17.8332C20.3334 18.2935 19.9603 18.6666 19.5 18.6666H4.50005C4.03982 18.6666 3.66672 18.2935 3.66672 17.8332V7.83322C3.66672 7.37299 4.03982 6.99989 4.50005 6.99989H8.14784L9.80571 5.54096ZM18.6667 9.91655C18.6667 10.6069 18.107 11.1666 17.4167 11.1666C16.7264 11.1666 16.1667 10.6069 16.1667 9.91655C16.1667 9.22619 16.7264 8.66655 17.4167 8.66655C18.107 8.66655 18.6667 9.22619 18.6667 9.91655ZM12 10.3332C13.3808 10.3332 14.5 11.4525 14.5 12.8332C14.5 14.214 13.3808 15.3332 12 15.3332C10.6193 15.3332 9.50005 14.214 9.50005 12.8332C9.50005 11.4525 10.6193 10.3332 12 10.3332ZM16.1667 12.8332C16.1667 10.5321 14.3012 8.66655 12 8.66655C9.69887 8.66655 7.83338 10.5321 7.83338 12.8332C7.83338 15.1344 9.69887 16.9999 12 16.9999C14.3012 16.9999 16.1667 15.1344 16.1667 12.8332Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2955 4.28977L16.4811 5.33322H19.5C20.8808 5.33322 22 6.45251 22 7.83322V17.8332C22 19.214 20.8808 20.3332 19.5 20.3332H4.50005C3.11934 20.3332 2.00005 19.214 2.00005 17.8332V7.83322C2.00005 6.45251 3.11934 5.33322 4.50005 5.33322H7.51892L8.70467 4.28977C9.16109 3.88811 9.74824 3.66655 10.3562 3.66655H13.6439C14.2519 3.66655 14.839 3.88811 15.2955 4.28977ZM7.44345 5.13322L8.57254 4.13963C9.06548 3.70584 9.6996 3.46655 10.3562 3.46655H13.6439C14.3005 3.46655 14.9346 3.70584 15.4276 4.13962L16.5566 5.13322H19.5C20.9913 5.13322 22.2001 6.34206 22.2001 7.83322V17.8332C22.2001 19.3244 20.9913 20.5332 19.5 20.5332H4.50005C3.00889 20.5332 1.80005 19.3244 1.80005 17.8332V7.83322C1.80005 6.34205 3.00888 5.13322 4.50005 5.13322H7.44345ZM15.8523 6.99989L14.1944 5.54096C14.0422 5.40707 13.8465 5.33322 13.6439 5.33322H10.3562C10.1536 5.33322 9.95786 5.40707 9.80571 5.54096L8.14784 6.99989H4.50005C4.03982 6.99989 3.66672 7.37299 3.66672 7.83322V17.8332C3.66672 18.2935 4.03982 18.6666 4.50005 18.6666H19.5C19.9603 18.6666 20.3334 18.2935 20.3334 17.8332V7.83322C20.3334 7.37298 19.9603 6.99989 19.5 6.99989H15.8523ZM14.0623 5.69111C14.0623 5.6911 14.0623 5.69111 14.0623 5.69111C13.9466 5.58933 13.7979 5.53322 13.6439 5.53322H10.3562C10.2022 5.53322 10.0535 5.58934 9.93783 5.6911L8.22331 7.19989H4.50005C4.15027 7.19989 3.86672 7.48344 3.86672 7.83322V17.8332C3.86672 18.183 4.15027 18.4666 4.50005 18.4666H19.5C19.8498 18.4666 20.1334 18.183 20.1334 17.8332V7.83322C20.1334 7.48343 19.8498 7.19989 19.5 7.19989H15.7768L14.0623 5.69111ZM18.8667 9.91655C18.8667 10.7173 18.2175 11.3666 17.4167 11.3666C16.6159 11.3666 15.9667 10.7173 15.9667 9.91655C15.9667 9.11573 16.6159 8.46655 17.4167 8.46655C18.2175 8.46655 18.8667 9.11573 18.8667 9.91655ZM14.3 12.8332C14.3 11.5629 13.2703 10.5332 12 10.5332C10.7298 10.5332 9.70005 11.5629 9.70005 12.8332C9.70005 14.1035 10.7298 15.1332 12 15.1332C13.2703 15.1332 14.3 14.1035 14.3 12.8332ZM12 8.46655C14.4117 8.46655 16.3667 10.4216 16.3667 12.8332C16.3667 15.2448 14.4117 17.1999 12 17.1999C9.58841 17.1999 7.63338 15.2448 7.63338 12.8332C7.63338 10.4216 9.58841 8.46655 12 8.46655ZM17.4167 11.1666C18.107 11.1666 18.6667 10.6069 18.6667 9.91655C18.6667 9.22619 18.107 8.66655 17.4167 8.66655C16.7264 8.66655 16.1667 9.22619 16.1667 9.91655C16.1667 10.6069 16.7264 11.1666 17.4167 11.1666ZM14.5 12.8332C14.5 11.4525 13.3808 10.3332 12 10.3332C10.6193 10.3332 9.50005 11.4525 9.50005 12.8332C9.50005 14.214 10.6193 15.3332 12 15.3332C13.3808 15.3332 14.5 14.214 14.5 12.8332ZM12 8.66655C14.3012 8.66655 16.1667 10.5321 16.1667 12.8332C16.1667 15.1344 14.3012 16.9999 12 16.9999C9.69887 16.9999 7.83338 15.1344 7.83338 12.8332C7.83338 10.5321 9.69887 8.66655 12 8.66655Z\" fill=\"#F9F9F9\"/> </svg>'},amhiyctBz:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_672_10776)\"> <path d=\"M22.4762 20.9524H21.9524V19.381C21.9524 19.0877 21.722 18.8572 21.4286 18.8572H20.9048V15.1905C20.9048 14.9496 20.7372 14.74 20.5067 14.6877L17.762 13.9962V4.71433C17.762 4.421 17.5315 4.19052 17.2381 4.19052H14.6191V0.523858C14.6191 0.230525 14.3886 4.88311e-05 14.0953 4.88311e-05H7.80957C7.51624 4.88311e-05 7.28576 0.230525 7.28576 0.523858V7.29148L4.46767 8.41243C4.26862 8.49624 4.14291 8.68481 4.14291 8.89433V14.6562H2.57148C2.27814 14.6562 2.04767 14.8867 2.04767 15.18V20.942H1.52386C1.23053 20.942 1.00005 21.1724 1.00005 21.4658C1.00005 21.7591 1.23053 21.9896 1.52386 21.9896H22.4762C22.7696 21.9896 23.0001 21.7591 23.0001 21.4658C23.0001 21.1724 22.7696 20.942 22.4762 20.942V20.9524ZM19.8572 18.8572H18.2858C17.9924 18.8572 17.762 19.0877 17.762 19.381V20.9524H16.7143V14.8134L19.8572 15.5991V18.8572ZM16.7143 5.23814V6.28576H16.1905C15.8972 6.28576 15.6667 6.51624 15.6667 6.80957C15.6667 7.10291 15.8972 7.33338 16.1905 7.33338H16.7143V8.381H16.1905C15.8972 8.381 15.6667 8.61148 15.6667 8.90481C15.6667 9.19814 15.8972 9.42862 16.1905 9.42862H16.7143V10.4762H16.1905C15.8972 10.4762 15.6667 10.7067 15.6667 11C15.6667 11.2934 15.8972 11.5239 16.1905 11.5239H16.7143V13.7343L16.3162 13.64C16.1591 13.5981 15.9915 13.64 15.8658 13.7343C15.74 13.8286 15.6667 13.9858 15.6667 14.1429V20.9524H14.6191V5.23814H16.7143ZM8.33338 1.04767H13.5715V20.9524H10.4286V6.80957C10.4286 6.63148 10.3448 6.47433 10.1981 6.38005C10.0515 6.28576 9.87338 6.26481 9.70576 6.32767L8.33338 6.88291V1.04767ZM3.09529 15.7143H4.14291V20.9524H3.09529V15.7143ZM5.19053 20.9524V9.261L8.00862 8.12957L9.37053 7.58481V10.4762H7.7991C7.50576 10.4762 7.27529 10.7067 7.27529 11C7.27529 11.2934 7.50576 11.5239 7.7991 11.5239H9.37053V12.5715H7.7991C7.50576 12.5715 7.27529 12.802 7.27529 13.0953C7.27529 13.3886 7.50576 13.6191 7.7991 13.6191H9.37053V14.6667H7.7991C7.50576 14.6667 7.27529 14.8972 7.27529 15.1905C7.27529 15.4839 7.50576 15.7143 7.7991 15.7143H9.37053V16.762H7.7991C7.50576 16.762 7.27529 16.9924 7.27529 17.2858C7.27529 17.5791 7.50576 17.8096 7.7991 17.8096H9.37053V18.8572H7.7991C7.50576 18.8572 7.27529 19.0877 7.27529 19.381C7.27529 19.6743 7.50576 19.9048 7.7991 19.9048H9.37053V20.9524H5.18005H5.19053ZM18.8096 20.9524V19.9048H20.9048V20.9524H18.8096Z\" fill=\"#F9F9F9\"/> <path d=\"M10.4284 3.66678V2.61916C10.4284 2.32582 10.1979 2.09535 9.90455 2.09535C9.61122 2.09535 9.38074 2.32582 9.38074 2.61916V3.66678C9.38074 3.96011 9.61122 4.19059 9.90455 4.19059C10.1979 4.19059 10.4284 3.96011 10.4284 3.66678Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 4.19059C12.2931 4.19059 12.5235 3.96011 12.5235 3.66678V2.61916C12.5235 2.32582 12.2931 2.09535 11.9997 2.09535C11.7064 2.09535 11.4759 2.32582 11.4759 2.61916V3.66678C11.4759 3.96011 11.7064 4.19059 11.9997 4.19059Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 7.33346C12.2931 7.33346 12.5235 7.10298 12.5235 6.80965V5.76203C12.5235 5.4687 12.2931 5.23822 11.9997 5.23822C11.7064 5.23822 11.4759 5.4687 11.4759 5.76203V6.80965C11.4759 7.10298 11.7064 7.33346 11.9997 7.33346Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 10.4762C12.2931 10.4762 12.5235 10.2457 12.5235 9.95241V8.90479C12.5235 8.61146 12.2931 8.38098 11.9997 8.38098C11.7064 8.38098 11.4759 8.61146 11.4759 8.90479V9.95241C11.4759 10.2457 11.7064 10.4762 11.9997 10.4762Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 13.6191C12.2931 13.6191 12.5235 13.3886 12.5235 13.0953V12.0477C12.5235 11.7543 12.2931 11.5239 11.9997 11.5239C11.7064 11.5239 11.4759 11.7543 11.4759 12.0477V13.0953C11.4759 13.3886 11.7064 13.6191 11.9997 13.6191Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 16.762C12.2931 16.762 12.5235 16.5315 12.5235 16.2382V15.1905C12.5235 14.8972 12.2931 14.6667 11.9997 14.6667C11.7064 14.6667 11.4759 14.8972 11.4759 15.1905V16.2382C11.4759 16.5315 11.7064 16.762 11.9997 16.762Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9997 19.9047C12.2931 19.9047 12.5235 19.6743 12.5235 19.3809V18.3333C12.5235 18.04 12.2931 17.8095 11.9997 17.8095C11.7064 17.8095 11.4759 18.04 11.4759 18.3333V19.3809C11.4759 19.6743 11.7064 19.9047 11.9997 19.9047Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.6762 20.9803C22.8678 21.0575 23.0001 21.2436 23.0001 21.4658C23.0001 21.7591 22.7696 21.9896 22.4762 21.9896H1.52386C1.23053 21.9896 1.00005 21.7591 1.00005 21.4658C1.00005 21.1724 1.23053 20.942 1.52386 20.942H2.04767V15.18C2.04767 14.8867 2.27814 14.6562 2.57148 14.6562H4.14291V8.89433C4.14291 8.68481 4.26862 8.49624 4.46767 8.41243L7.28576 7.29148V0.523858C7.28576 0.230525 7.51624 4.88311e-05 7.80957 4.88311e-05H14.0953C14.3886 4.88311e-05 14.6191 0.230525 14.6191 0.523858V4.19052H17.2381C17.5315 4.19052 17.762 4.421 17.762 4.71433V13.9962L20.5067 14.6877C20.7372 14.74 20.9048 14.9496 20.9048 15.1905V18.8572H21.4286C21.722 18.8572 21.9524 19.0877 21.9524 19.381V20.9524H22.4762V20.942C22.5129 20.942 22.5486 20.9456 22.583 20.9524C22.6153 20.9589 22.6465 20.9683 22.6762 20.9803ZM22.2762 20.7524V20.742H22.4762C22.88 20.742 23.2001 21.062 23.2001 21.4658C23.2001 21.8696 22.88 22.1896 22.4762 22.1896H1.52386C1.12007 22.1896 0.800049 21.8696 0.800049 21.4658C0.800049 21.062 1.12007 20.742 1.52386 20.742H1.84767V15.18C1.84767 14.7763 2.16769 14.4562 2.57148 14.4562H3.94291V8.89433C3.94291 8.6026 4.11846 8.34246 4.39006 8.2281L4.39373 8.22655L7.08576 7.15579V0.523858C7.08576 0.120068 7.40578 -0.199951 7.80957 -0.199951H14.0953C14.4991 -0.199951 14.8191 0.120068 14.8191 0.523858V3.99052H17.2381C17.6419 3.99052 17.962 4.31054 17.962 4.71433V13.8404L20.5535 14.4932C20.8746 14.5674 21.1048 14.8579 21.1048 15.1905V18.6572H21.4286C21.8324 18.6572 22.1524 18.9772 22.1524 19.381V20.7524H22.2762ZM9.70576 6.32767C9.87338 6.26481 10.0515 6.28576 10.1981 6.38005C10.3448 6.47433 10.4286 6.63148 10.4286 6.80957V20.9524H13.5715V1.04767H8.33338V6.88291L9.70576 6.32767ZM8.53338 6.58624L9.63552 6.14034C9.863 6.05503 10.1072 6.08381 10.3063 6.21181C10.5122 6.34419 10.6286 6.56585 10.6286 6.80957V20.7524H13.3715V1.24767H8.53338V6.58624ZM18.2858 18.6572H19.6572V15.7552L16.9143 15.0695V20.7524H17.562V19.381C17.562 18.9772 17.882 18.6572 18.2858 18.6572ZM16.7143 14.8134L19.8572 15.5991V18.8572H18.2858C17.9924 18.8572 17.762 19.0877 17.762 19.381V20.9524H16.7143V14.8134ZM16.5143 6.08576V5.43814H14.8191V20.7524H15.4667V14.1429C15.4667 13.9273 15.5662 13.709 15.7458 13.5743C15.9136 13.4485 16.1423 13.3877 16.3648 13.446L16.5143 13.4814V11.7239H16.1905C15.7867 11.7239 15.4667 11.4038 15.4667 11C15.4667 10.5963 15.7867 10.2762 16.1905 10.2762H16.5143V9.62862H16.1905C15.7867 9.62862 15.4667 9.3086 15.4667 8.90481C15.4667 8.50102 15.7867 8.181 16.1905 8.181H16.5143V7.53338H16.1905C15.7867 7.53338 15.4667 7.21336 15.4667 6.80957C15.4667 6.40578 15.7867 6.08576 16.1905 6.08576H16.5143ZM16.7143 13.7343L16.3162 13.64C16.1591 13.5981 15.9915 13.64 15.8658 13.7343C15.74 13.8286 15.6667 13.9858 15.6667 14.1429V20.9524H14.6191V5.23814H16.7143V6.28576H16.1905C15.8972 6.28576 15.6667 6.51624 15.6667 6.80957C15.6667 7.10291 15.8972 7.33338 16.1905 7.33338H16.7143V8.381H16.1905C15.8972 8.381 15.6667 8.61148 15.6667 8.90481C15.6667 9.19814 15.8972 9.42862 16.1905 9.42862H16.7143V10.4762H16.1905C15.8972 10.4762 15.6667 10.7067 15.6667 11C15.6667 11.2934 15.8972 11.5239 16.1905 11.5239H16.7143V13.7343ZM3.94291 15.9143H3.29529V20.7524H3.94291V15.9143ZM5.39052 9.39622V20.7524H9.17053V20.1048H7.7991C7.39531 20.1048 7.07529 19.7848 7.07529 19.381C7.07529 18.9772 7.39531 18.6572 7.7991 18.6572H9.17053V18.0096H7.7991C7.39531 18.0096 7.07529 17.6896 7.07529 17.2858C7.07529 16.882 7.39531 16.562 7.7991 16.562H9.17053V15.9143H7.7991C7.39531 15.9143 7.07529 15.5943 7.07529 15.1905C7.07529 14.7867 7.39531 14.4667 7.7991 14.4667H9.17053V13.8191H7.7991C7.39531 13.8191 7.07529 13.4991 7.07529 13.0953C7.07529 12.6915 7.39531 12.3715 7.7991 12.3715H9.17053V11.7239H7.7991C7.39531 11.7239 7.07529 11.4038 7.07529 11C7.07529 10.5963 7.39531 10.2762 7.7991 10.2762H9.17053V7.88022L8.08314 8.31517L5.39052 9.39622ZM5.19053 9.261V20.9524H9.37053V19.9048H7.7991C7.50576 19.9048 7.27529 19.6743 7.27529 19.381C7.27529 19.0877 7.50576 18.8572 7.7991 18.8572H9.37053V17.8096H7.7991C7.50576 17.8096 7.27529 17.5791 7.27529 17.2858C7.27529 16.9924 7.50576 16.762 7.7991 16.762H9.37053V15.7143H7.7991C7.50576 15.7143 7.27529 15.4839 7.27529 15.1905C7.27529 14.8972 7.50576 14.6667 7.7991 14.6667H9.37053V13.6191H7.7991C7.50576 13.6191 7.27529 13.3886 7.27529 13.0953C7.27529 12.802 7.50576 12.5715 7.7991 12.5715H9.37053V11.5239H7.7991C7.50576 11.5239 7.27529 11.2934 7.27529 11C7.27529 10.7067 7.50576 10.4762 7.7991 10.4762H9.37053V7.58481L8.00862 8.12957L5.19053 9.261ZM19.0096 20.1048V20.7524H20.7048V20.1048H19.0096ZM10.6284 2.61916V3.66678C10.6284 4.07057 10.3083 4.39058 9.90455 4.39058C9.50076 4.39058 9.18075 4.07057 9.18075 3.66678V2.61916C9.18075 2.21537 9.50076 1.89535 9.90455 1.89535C10.3083 1.89535 10.6284 2.21537 10.6284 2.61916ZM12.7235 3.66678C12.7235 4.07057 12.4035 4.39058 11.9997 4.39058C11.5959 4.39058 11.2759 4.07057 11.2759 3.66678V2.61916C11.2759 2.21537 11.5959 1.89535 11.9997 1.89535C12.4035 1.89535 12.7235 2.21537 12.7235 2.61916V3.66678ZM12.7235 6.80965C12.7235 7.21344 12.4035 7.53346 11.9997 7.53346C11.5959 7.53346 11.2759 7.21344 11.2759 6.80965V5.76203C11.2759 5.35824 11.5959 5.03822 11.9997 5.03822C12.4035 5.03822 12.7235 5.35824 12.7235 5.76203V6.80965ZM12.7235 9.95241C12.7235 10.3562 12.4035 10.6762 11.9997 10.6762C11.5959 10.6762 11.2759 10.3562 11.2759 9.95241V8.90479C11.2759 8.501 11.5959 8.18098 11.9997 8.18098C12.4035 8.18098 12.7235 8.501 12.7235 8.90479V9.95241ZM12.7235 13.0953C12.7235 13.4991 12.4035 13.8191 11.9997 13.8191C11.5959 13.8191 11.2759 13.4991 11.2759 13.0953V12.0477C11.2759 11.6439 11.5959 11.3239 11.9997 11.3239C12.4035 11.3239 12.7235 11.6439 12.7235 12.0477V13.0953ZM12.7235 16.2382C12.7235 16.6419 12.4035 16.962 11.9997 16.962C11.5959 16.962 11.2759 16.6419 11.2759 16.2382V15.1905C11.2759 14.7867 11.5959 14.4667 11.9997 14.4667C12.4035 14.4667 12.7235 14.7867 12.7235 15.1905V16.2382ZM12.7235 19.3809C12.7235 19.7847 12.4035 20.1047 11.9997 20.1047C11.5959 20.1047 11.2759 19.7847 11.2759 19.3809V18.3333C11.2759 17.9295 11.5959 17.6095 11.9997 17.6095C12.4035 17.6095 12.7235 17.9295 12.7235 18.3333V19.3809ZM3.09529 15.7143V20.9524H4.14291V15.7143H3.09529ZM18.8096 20.9524H20.9048V19.9048H18.8096V20.9524ZM10.4284 2.61916V3.66678C10.4284 3.96011 10.1979 4.19059 9.90455 4.19059C9.61122 4.19059 9.38074 3.96011 9.38074 3.66678V2.61916C9.38074 2.32582 9.61122 2.09535 9.90455 2.09535C10.1979 2.09535 10.4284 2.32582 10.4284 2.61916ZM11.9997 4.19059C12.2931 4.19059 12.5235 3.96011 12.5235 3.66678V2.61916C12.5235 2.32582 12.2931 2.09535 11.9997 2.09535C11.7064 2.09535 11.4759 2.32582 11.4759 2.61916V3.66678C11.4759 3.96011 11.7064 4.19059 11.9997 4.19059ZM12.5235 6.80965C12.5235 7.10298 12.2931 7.33346 11.9997 7.33346C11.7064 7.33346 11.4759 7.10298 11.4759 6.80965V5.76203C11.4759 5.4687 11.7064 5.23822 11.9997 5.23822C12.2931 5.23822 12.5235 5.4687 12.5235 5.76203V6.80965ZM11.9997 10.4762C12.2931 10.4762 12.5235 10.2457 12.5235 9.95241V8.90479C12.5235 8.61146 12.2931 8.38098 11.9997 8.38098C11.7064 8.38098 11.4759 8.61146 11.4759 8.90479V9.95241C11.4759 10.2457 11.7064 10.4762 11.9997 10.4762ZM12.5235 13.0953C12.5235 13.3886 12.2931 13.6191 11.9997 13.6191C11.7064 13.6191 11.4759 13.3886 11.4759 13.0953V12.0477C11.4759 11.7543 11.7064 11.5239 11.9997 11.5239C12.2931 11.5239 12.5235 11.7543 12.5235 12.0477V13.0953ZM11.9997 16.762C12.2931 16.762 12.5235 16.5315 12.5235 16.2382V15.1905C12.5235 14.8972 12.2931 14.6667 11.9997 14.6667C11.7064 14.6667 11.4759 14.8972 11.4759 15.1905V16.2382C11.4759 16.5315 11.7064 16.762 11.9997 16.762ZM12.5235 19.3809C12.5235 19.6743 12.2931 19.9047 11.9997 19.9047C11.7064 19.9047 11.4759 19.6743 11.4759 19.3809V18.3333C11.4759 18.04 11.7064 17.8095 11.9997 17.8095C12.2931 17.8095 12.5235 18.04 12.5235 18.3333V19.3809Z\" fill=\"#F9F9F9\"/> </g> <defs> <clipPath id=\"clip0_672_10776\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>'},Ap0ieXV9Y:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M2 15V6C2 4.34315 3.34315 3 5 3H19C20.6569 3 22 4.34315 22 6V9.75809C21.4266 9.30084 20.7215 9.04153 20 9.00459V6C20 5.44772 19.5523 5 19 5H5C4.44772 5 4 5.44772 4 6V15C4 15.5523 4.44772 16 5 16H12.6975C12.262 16.5511 11.9959 17.2432 11.9805 18H5C3.34315 18 2 16.6569 2 15Z\" fill=\"#F9F9F9\"/> <path d=\"M12.1106 19H6C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H13.7118C12.945 20.5766 12.3593 19.8617 12.1106 19Z\" fill=\"#F9F9F9\"/> <path d=\"M20.8478 11.7641C20.5062 11.254 19.7865 11.0813 19.2464 11.378L16.9703 12.6368C16.6805 12.7971 16.3198 12.7466 16.0851 12.513L14.1453 10.5821C13.7079 10.1461 12.9984 10.1461 12.5611 10.5821C12.1235 11.0175 12.1235 11.7232 12.5611 12.1585L16.1043 15.6839C16.5748 16.1521 16.243 16.9547 15.5793 16.955L15.333 16.9551C14.7146 16.9551 14.2127 17.4549 14.2127 18.0704C14.2127 18.6868 14.7146 19.1845 15.333 19.1845L19.4514 19.1851C19.6481 19.1851 19.8369 19.1072 19.9763 18.9685L22.9608 15.9993C23.2132 15.7481 23.2523 15.3534 23.0542 15.0575L21.951 13.4108L20.8478 11.7641Z\" fill=\"#F9F9F9\"/> </svg>'},Aug8aiWtC:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.97494 5.69944C5.79679 6.68933 4.95005 8.1375 4.95005 10.047C4.95005 11.9087 5.63078 13.0463 6.47361 14.4549C6.50408 14.5058 6.53475 14.5571 6.56562 14.6087C7.46819 16.1197 8.45005 17.8695 8.45005 20.7682C8.45005 21.2928 8.02472 21.7182 7.50005 21.7182C6.97538 21.7182 6.55005 21.2928 6.55005 20.7682C6.55005 18.3894 5.78191 17.0018 4.93448 15.5831C4.89253 15.5129 4.85022 15.4424 4.80768 15.3715C3.97279 13.9801 3.05005 12.4423 3.05005 10.047C3.05005 7.51011 4.19828 5.55078 5.7527 4.24475C7.28541 2.95697 9.23552 2.28198 10.9404 2.28198C14.2906 2.28198 17.556 4.57831 18.4234 8.05407C18.5285 8.42127 18.5179 8.76877 18.5004 9.01347C18.4908 9.14819 18.4813 9.24201 18.4737 9.31831C18.4679 9.37588 18.4631 9.42349 18.46 9.47118C18.4608 9.4721 18.4616 9.47304 18.4624 9.47399C18.4768 9.49024 18.4898 9.50472 18.5049 9.52154C18.5155 9.53331 18.527 9.54622 18.5408 9.56167C18.5712 9.59566 18.6058 9.63477 18.6429 9.67807C18.7357 9.78628 19.0119 10.121 19.3325 10.5096C19.5633 10.7892 19.817 11.0967 20.0419 11.3676C20.6195 12.0635 20.5178 13.1035 19.8042 13.6701L19.0883 14.2386L19.146 17.2433C19.1652 18.2402 18.3624 19.0587 17.3653 19.0587H15.9212V20.7682C15.9212 21.2928 15.4959 21.7182 14.9712 21.7182C14.4466 21.7182 14.0212 21.2928 14.0212 20.7682V18.9398C14.0212 17.9561 14.8187 17.1587 15.8023 17.1587H17.2441L17.1859 14.1341C17.1762 13.6307 17.4019 13.1515 17.7963 12.8384L18.3975 12.361C18.2075 12.1315 18.0127 11.8953 17.8358 11.681C17.5332 11.3143 17.2833 11.0114 17.2003 10.9146C17.1639 10.8721 17.1346 10.8394 17.1009 10.8019C17.0827 10.7815 17.0632 10.7598 17.0406 10.7343C16.9865 10.6732 16.9116 10.5872 16.8421 10.4879C16.6759 10.2505 16.5561 9.95991 16.5561 9.58989C16.5561 9.40624 16.5786 9.16764 16.5936 9.00847C16.5988 8.95385 16.6031 8.90859 16.6052 8.8781C16.6185 8.69211 16.6079 8.61369 16.5961 8.57467L16.5894 8.55205L16.5837 8.52912C15.9475 5.94915 13.4845 4.18198 10.9404 4.18198C9.69487 4.18198 8.17481 4.69131 6.97494 5.69944ZM11.1468 7.88282C12.2314 7.13481 13.7271 7.24394 14.6918 8.21019L14.6919 8.2102C15.7786 9.29874 15.7743 11.056 14.6942 12.1438L14.6921 12.1459L12.0004 14.8403C12.0004 14.8404 12.0003 14.8404 12.0002 14.8405C11.5293 15.312 10.7653 15.3119 10.2945 14.8403L7.60464 12.1462L7.60463 12.1462C6.51923 11.0591 6.51922 9.29708 7.60464 8.20994C8.56814 7.24491 10.0631 7.13586 11.1468 7.88282ZM12.099 9.55263C11.5718 10.081 10.7182 10.0771 10.1943 9.5524L10.1943 9.55237C9.85033 9.20783 9.29321 9.20782 8.9492 9.55238C8.60437 9.89776 8.60436 10.4584 8.9492 10.8038C8.94921 10.8038 8.94921 10.8038 8.94921 10.8038L11.1476 13.0056L13.3459 10.8051C13.3462 10.8048 13.3465 10.8045 13.3468 10.8042C13.6929 10.4547 13.6907 9.89659 13.3473 9.55263M10.6558 13.4979C10.6559 13.4978 10.656 13.4977 10.656 13.4977ZM12.099 9.55263C12.4443 9.20678 13.002 9.20677 13.3473 9.55262Z\" fill=\"#F9F9F9\"/> </svg>'},B59ZKH8Kn:{customSvgCode:'<svg width=\"134\" height=\"95\" viewBox=\"0 0 134 95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M61.5105 49.3457C60.7058 49.3457 60.0535 49.998 60.0535 50.8027C60.0535 51.6074 60.7058 52.2597 61.5105 52.2597H62.5516C62.8899 52.2597 63.2012 52.1445 63.4484 51.9511C63.6957 52.1445 64.007 52.2597 64.3452 52.2597H65.3863C65.7376 52.2597 66.0598 52.1354 66.3114 51.9284C66.563 52.1354 66.8852 52.2597 67.2365 52.2597H68.2776C68.6291 52.2597 68.9515 52.1352 69.2032 51.928C69.4549 52.1352 69.7773 52.2597 70.1288 52.2597H71.1699C71.9746 52.2597 72.6269 51.6074 72.6269 50.8027C72.6269 49.998 71.9746 49.3457 71.1699 49.3457H70.1288C69.7773 49.3457 69.4549 49.4702 69.2032 49.6774C68.9515 49.4702 68.6291 49.3457 68.2776 49.3457H67.2365C66.8852 49.3457 66.563 49.47 66.3114 49.677C66.0598 49.47 65.7376 49.3457 65.3863 49.3457H64.3452C64.007 49.3457 63.6957 49.4609 63.4484 49.6543C63.2012 49.4609 62.8899 49.3457 62.5516 49.3457H61.5105Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.2281 19.6876C89.263 19.039 83.1358 18.4115 76.3455 18.0568C69.5175 17.7001 61.8224 17.6091 55.6757 18.0819C55.0426 18.1306 54.4203 18.1777 53.8086 18.2239C43.0272 19.0389 35.5006 19.6079 28.8844 24.7204C21.5426 30.3935 21.7725 38.6483 22.5762 43.0382C23.3385 47.201 27.8718 66.2809 29.3619 70.7512C30.354 73.7275 32.75 75.515 35.1138 76.5293C37.4803 77.5447 40.0841 77.9138 42.0776 77.9138H89.1004C92.6651 77.9138 96.2468 77.6888 99.9665 75.3894C101.774 74.272 102.979 72.3691 103.749 70.7469C104.432 69.3066 104.888 67.8401 105.138 66.7489C105.491 66.2221 105.904 65.4556 106.174 64.5572C106.311 64.1 106.429 63.6817 106.542 63.2832L106.543 63.2817C106.748 62.5544 106.935 61.8929 107.185 61.1808C107.545 60.1514 107.649 59.1171 107.657 58.4582L110.828 45.7173C110.855 45.6124 110.873 45.5056 110.883 45.398C111.313 40.9136 111.192 35.7179 107.994 29.4476C104.53 22.655 97.7247 20.89 92.2281 19.6876ZM27.9239 32.5586C26.2447 35.9539 26.3965 39.6334 26.8758 42.2509C27.6174 46.3012 32.1068 65.1634 33.5087 69.3689C33.9625 70.7306 35.1236 71.7771 36.8374 72.5124C38.5486 73.2466 40.5429 73.5427 42.0776 73.5427H89.1004C92.4763 73.5427 95.0255 73.305 97.6681 71.6714C97.9111 71.5212 98.1557 71.313 98.3974 71.053C96.012 71.9324 92.9131 72.5569 89.0766 72.5569C83.3148 72.5569 78.7982 71.0557 76.5675 69.9631C75.4835 69.4322 75.0352 68.123 75.5661 67.039C76.097 65.955 77.4062 65.5067 78.4902 66.0376C80.1677 66.8593 84.03 68.1859 89.0766 68.1859C96.0809 68.1859 99.4925 65.8438 100.319 64.9557C100.561 64.5812 100.932 63.9533 101.288 63.2461C99.9676 64.2374 98.1491 65.117 95.6972 65.6587C87.7386 67.417 79.9651 64.9261 77.0732 63.4608L74.991 49.5796L75.1551 49.6418C71.7092 47.2151 69.7664 44.1789 70.1924 41.2132C71.0012 35.583 80.0414 32.2232 90.3844 33.709C98.0792 34.8143 104.327 38.2902 106.689 42.316C106.736 39.2528 106.261 35.9272 104.412 32.0643C104.4 33.3514 103.627 34.4058 102.777 34.9808C101.698 35.7102 100.088 36.0007 98.643 35.213C95.3994 33.4449 90.228 31.5862 83.6637 31.5862C71.4714 31.5862 68.5227 37.3754 68.5227 39.2911C68.5227 40.2727 68.7747 41.2406 69.1428 42.1049C69.6889 43.3874 69.4908 44.7752 68.945 45.808C68.3953 46.8479 67.2606 47.9199 65.6137 47.9441L37.3515 48.3592L37.3194 48.3594C33.6123 48.3594 30.7636 45.511 29.1918 42.5796C27.6184 39.6454 26.8535 35.8153 27.9239 32.5586ZM51.3429 23.9437C58.0914 23.3719 73.378 23.0689 81.106 23.9378C82.1587 24.0562 83.1319 24.1616 84.035 24.2594C91.7944 25.0996 94.3786 25.3795 97.7303 28.5107C98.3637 29.1024 98.8941 29.8433 99.3352 30.6597C95.5573 28.85 90.1992 27.2152 83.6637 27.2152C70.407 27.2152 64.1517 33.8035 64.1517 39.2911C64.1517 40.8974 64.5336 42.3668 65.0233 43.5813L37.3059 43.9884C35.967 43.9807 34.2902 42.8382 33.044 40.514C31.8246 38.2399 31.4765 35.6231 32.1086 33.8285C32.9837 31.3446 33.8127 29.3311 36.1425 27.676C38.5687 25.9525 42.909 24.4306 51.2841 23.9479C51.3037 23.9468 51.3233 23.9454 51.3429 23.9437ZM94.3104 53.1598C94.2785 53.6057 93.385 54.0766 90.2614 53.8538C86.5019 53.5857 86.2968 53.0853 86.3286 52.6392C86.3604 52.1931 86.9646 51.7717 90.3771 51.9453C93.6742 52.113 94.3423 52.7138 94.3104 53.1598Z\" fill=\"#F9F9F9\"/> </svg>'},bihN73WTA:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M4.06246 10.8711H19.837L17.2175 15.2262C17.1624 15.3179 17.072 15.3829 16.9675 15.4061C16.8829 15.425 16.7951 15.4145 16.7175 15.3782L13.533 13.2371C13.354 13.1168 13.1113 13.1644 12.9909 13.3434C12.8705 13.5224 12.9181 13.7651 13.0971 13.8855L14.9007 15.0981L12.1936 20.5501C12.065 20.7775 11.8437 20.767 11.8437 20.767C11.7028 20.767 11.5725 20.6911 11.5032 20.5678L9.81516 17.5661L10.6595 16.0876C10.7665 15.9002 10.7013 15.6616 10.514 15.5547C10.3267 15.4477 10.088 15.5129 9.98105 15.7002L8.4684 18.3489C8.39801 18.4676 8.27051 18.5405 8.13277 18.5405C7.88215 18.5406 7.78324 18.3244 7.78324 18.3244L4.06246 10.8711ZM21.6094 9.30855H20.2956L16.8907 4.17473C16.8183 4.06562 16.6961 4 16.5652 4H9.45578C9.32211 4 9.1977 4.06836 9.12602 4.18125L7.95211 6.14621H11.7995C12.0153 6.14621 12.1902 6.32109 12.1902 6.53684C12.1902 6.75258 12.0153 6.92746 11.7995 6.92746H5.57492C5.46582 6.94234 5.36699 7.00258 5.3043 7.09512L3.71391 9.30859H2.39062C2.17488 9.30859 2 9.48348 2 9.69922C2 9.91496 2.17488 10.0898 2.39062 10.0898H21.6094C21.8251 10.0898 22 9.91496 22 9.69922C22 9.48344 21.8251 9.30855 21.6094 9.30855Z\" fill=\"#F9F9F9\"/> </svg>'},BRZMBizuc:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2437 7.82984L12.0322 4.11471C11.6943 3.96176 11.3055 3.96176 10.9676 4.11471L2.75554 7.83007C1.74843 8.28575 1.74776 9.71388 2.75588 10.1699L5 11.1852V16.0895C5 19.1108 9.19585 20 11.5 20C13.8042 20 18 19.1108 18 16.0894L17.9999 11.1852L18.9991 10.733V13.8301L18.0625 16.5107C17.7851 17.3047 18.4222 18 19.1259 18H20.8703C21.5741 18 22.2109 17.3044 21.9336 16.5105L20.9972 13.8303V9.08361C20.9991 9.05569 21 9.02777 21 8.99989C21 8.53529 20.7424 8.05517 20.2437 7.82984ZM15.9999 12.09L12.0316 13.8855C11.6939 14.0381 11.3063 14.0382 10.9686 13.8856L7 12.0901V16.0895C7 17.7019 10.4895 18 11.5 18C12.5105 18 16 17.7019 16 16.0895L15.9999 12.09ZM5.02199 8.9999L11.4999 6.06911L17.9778 8.9999L11.4999 11.9308L5.02199 8.9999Z\" fill=\"#F9F9F9\"/> </svg>'},CgxxA7v8C:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8.06474 2.77106C8.06474 2.3578 8.39509 2.02277 8.8026 2.02277H10.2783C10.6858 2.02277 11.0162 2.3578 11.0162 2.77106V3.02049H12.2459C12.6534 3.02049 12.9838 3.35551 12.9838 3.76877V5.54929C12.9921 5.54981 13.0004 5.55046 13.0088 5.55126C15.0861 5.75014 17.008 6.75268 18.3756 8.35073C19.7432 9.94877 20.4514 12.0196 20.3534 14.1332C20.2552 16.2469 19.3581 18.241 17.8484 19.7016C17.5543 19.9861 17.2414 20.2462 16.9126 20.4805H20.1164C20.5239 20.4805 20.8542 20.8155 20.8542 21.2288C20.8542 21.642 20.5239 21.9771 20.1164 21.9771H12.2746C12.265 21.9771 12.2555 21.9772 12.2459 21.9772C12.243 21.9772 12.2401 21.9771 12.2372 21.9771H3.88357C3.47607 21.9771 3.14571 21.642 3.14571 21.2288C3.14571 20.8155 3.47607 20.4805 3.88357 20.4805H12.2724C13.9699 20.4736 15.601 19.8076 16.8298 18.6187C18.065 17.4237 18.7989 15.7921 18.8792 14.0628C18.9596 12.3334 18.38 10.6391 17.2612 9.33168C16.1672 8.05339 14.6397 7.24082 12.9838 7.0531V12.2493C12.9838 12.6626 12.6534 12.9976 12.2459 12.9976H11.5081V13.9953C11.5081 15.0974 10.6272 15.9908 9.54045 15.9908C8.45377 15.9908 7.57284 15.0974 7.57284 13.9953V12.9976H6.83499C6.42748 12.9976 6.09713 12.6626 6.09713 12.2493V3.76877C6.09713 3.35551 6.42748 3.02049 6.83499 3.02049H8.06474V2.77106ZM9.04855 12.9976V13.9953C9.04855 14.2708 9.26878 14.4942 9.54045 14.4942C9.81212 14.4942 10.0324 14.2708 10.0324 13.9953V12.9976H9.04855ZM7.57284 11.5011H11.5081V4.51706H7.57284V11.5011ZM5.85118 17.4873C5.44368 17.4873 5.11333 17.8224 5.11333 18.2356C5.11333 18.6489 5.44368 18.9839 5.85118 18.9839H13.2297C13.6372 18.9839 13.9676 18.6489 13.9676 18.2356C13.9676 17.8224 13.6372 17.4873 13.2297 17.4873H5.85118Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.2612 9.33168C16.1993 8.09098 14.7292 7.28905 13.1296 7.07131C13.0811 7.06472 13.0325 7.05862 12.9838 7.0531V12.2493C12.9838 12.6626 12.6534 12.9976 12.2459 12.9976H11.5081V13.9953C11.5081 15.0974 10.6272 15.9908 9.54045 15.9908C8.45377 15.9908 7.57284 15.0974 7.57284 13.9953V12.9976H6.83499C6.42748 12.9976 6.09713 12.6626 6.09713 12.2493V3.76877C6.09713 3.35551 6.42748 3.02049 6.83499 3.02049H8.06474V2.77106C8.06474 2.3578 8.39509 2.02277 8.8026 2.02277H10.2783C10.6858 2.02277 11.0162 2.3578 11.0162 2.77106V3.02049H12.2459C12.6534 3.02049 12.9838 3.35551 12.9838 3.76877V5.54929C12.9921 5.54981 13.0004 5.55046 13.0088 5.55126C15.0861 5.75014 17.008 6.75268 18.3756 8.35073C19.7432 9.94877 20.4514 12.0196 20.3534 14.1332C20.2552 16.2469 19.3581 18.241 17.8484 19.7016C17.6148 19.9276 17.3693 20.1382 17.1135 20.3327C17.0472 20.3831 16.9802 20.4323 16.9126 20.4805H20.1164C20.5239 20.4805 20.8542 20.8155 20.8542 21.2288C20.8542 21.642 20.5239 21.9771 20.1164 21.9771H12.2746L12.2459 21.9772L12.2372 21.9771H3.88357C3.47607 21.9771 3.14571 21.642 3.14571 21.2288C3.14571 20.8155 3.47607 20.4805 3.88357 20.4805H12.2724C13.9699 20.4736 15.601 19.8076 16.8298 18.6187C18.065 17.4237 18.7989 15.7921 18.8792 14.0628C18.9596 12.3334 18.38 10.6391 17.2612 9.33168ZM12.2722 20.3327C13.9324 20.3259 15.5275 19.6745 16.7292 18.5118C17.9373 17.343 18.6552 15.7473 18.7337 14.0559C18.8123 12.3645 18.2454 10.7074 17.1511 9.4286C16.1169 8.22014 14.6866 7.43726 13.1296 7.22048V12.2494C13.1296 12.7443 12.7339 13.1455 12.246 13.1455H11.6538V13.9954C11.6538 15.1791 10.7077 16.1386 9.54049 16.1386C8.37331 16.1386 7.42712 15.1791 7.42712 13.9954V13.1455H6.83502C6.34702 13.1455 5.95142 12.7443 5.95142 12.2494V3.76881C5.95142 3.27391 6.34702 2.87271 6.83502 2.87271H7.91903V2.7711C7.91903 2.2762 8.31463 1.875 8.80263 1.875H10.2783C10.7663 1.875 11.1619 2.2762 11.1619 2.7711V2.87271H12.246C12.7339 2.87271 13.1296 3.27391 13.1296 3.76881V5.4151C15.2031 5.64126 17.1171 6.65462 18.4857 8.25388C19.8779 9.88062 20.5988 11.9886 20.499 14.1402C20.399 16.2918 19.4859 18.3218 17.949 19.8085C17.7579 19.9935 17.5588 20.1684 17.3528 20.3327H20.1164C20.6044 20.3327 21 20.7339 21 21.2288C21 21.7237 20.6044 22.1249 20.1164 22.1249H12.2747L12.246 22.125L12.2391 22.1249L12.2376 22.1249L3.8836 22.1249C3.39561 22.1249 3 21.7237 3 21.2288C3 20.7339 3.39561 20.3327 3.8836 20.3327H12.2722V20.3327ZM9.19433 13.1455V13.9954C9.19433 14.1892 9.34932 14.3464 9.54049 14.3464C9.73165 14.3464 9.88664 14.1892 9.88664 13.9954V13.1455H9.19433ZM9.04855 13.9953C9.04855 14.2708 9.26878 14.4942 9.54045 14.4942C9.81212 14.4942 10.0324 14.2708 10.0324 13.9953V12.9976H9.04855V13.9953ZM11.5081 11.5011H7.57284V4.51706H11.5081V11.5011ZM11.3623 4.66491H7.71862V11.3533H11.3623V4.66491ZM4.96761 18.2357C4.96761 17.7408 5.36322 17.3396 5.85121 17.3396H13.2298C13.7177 17.3396 14.1134 17.7408 14.1134 18.2357C14.1134 18.7305 13.7177 19.1318 13.2298 19.1318H5.85121C5.36322 19.1318 4.96761 18.7305 4.96761 18.2357ZM5.11333 18.2356C5.11333 17.8224 5.44368 17.4873 5.85118 17.4873H13.2297C13.6372 17.4873 13.9676 17.8224 13.9676 18.2356C13.9676 18.6489 13.6372 18.9839 13.2297 18.9839H5.85118C5.44368 18.9839 5.11333 18.6489 5.11333 18.2356Z\" fill=\"#F9F9F9\"/> </svg>'},ckD9DlPFU:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <mask id=\"path-1-outside-1_668_8633\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"3.95605\" width=\"24\" height=\"19\" fill=\"black\"> <rect fill=\"white\" y=\"3.95605\" width=\"24\" height=\"19\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.75886 16.4545C1.86274 16.4545 1.95782 16.4615 2.05291 16.4694L1.09681 14.1274C0.932169 13.7244 0.979724 13.2679 1.2227 12.907C1.4648 12.546 1.87154 12.3287 2.30821 12.327L2.67006 9.25263C2.77921 8.32305 3.50465 7.58359 4.43609 7.45393L4.64474 6.55239C4.85691 5.6158 5.69417 4.95256 6.65818 4.95607H11.2811C12.0585 4.95344 12.7699 5.38801 13.1211 6.07752L13.8175 7.43379H14.4707C15.2244 7.43291 15.9181 7.84031 16.2817 8.49567L17.0476 9.87997H17.6207C18.2009 9.87997 18.7547 10.1227 19.1464 10.5485L20.7778 12.3279H21.6855C22.1688 12.3279 22.6125 12.5916 22.8423 13.0139C23.072 13.4371 23.0492 13.9514 22.7842 14.3535L21.3412 16.5447C21.5868 16.4852 21.8395 16.4554 22.0931 16.4563C22.4038 16.4563 22.6565 16.7068 22.6565 17.017C22.6565 17.3263 22.4038 17.5777 22.0931 17.5777C21.5895 17.5716 21.1044 17.7643 20.7443 18.113C20.4758 18.3338 20.18 18.5178 19.863 18.6597L19.8498 18.665C19.8349 18.6713 19.8204 18.6779 19.8059 18.6844L19.8059 18.6845L19.8058 18.6845C19.7803 18.696 19.755 18.7075 19.7275 18.7176C19.4 18.8315 19.054 18.8875 18.7071 18.8831C17.9544 18.8893 17.2263 18.6142 16.6681 18.1121C15.9118 17.3981 14.7269 17.3981 13.9706 18.1121C12.8077 19.1398 11.0556 19.1398 9.89172 18.1121C9.1347 17.3981 7.94883 17.3981 7.1917 18.1121C6.63177 18.6124 5.90456 18.8875 5.15273 18.8823C4.39911 18.8875 3.67105 18.6133 3.11112 18.1121C2.74928 17.7626 2.26332 17.5698 1.75886 17.576C1.44808 17.576 1.19541 17.3245 1.19541 17.0152C1.19541 16.7051 1.44808 16.4545 1.75886 16.4545ZM4.88867 8.5553H4.72228C4.24599 8.5553 3.8456 8.91008 3.79013 9.38145L3.44504 12.3262H19.2557L18.3181 11.3055C18.1403 11.1118 17.8885 11.0014 17.6253 11.0014H13.8862C13.5746 11.0014 13.3228 10.75 13.3228 10.4407C13.3228 10.1306 13.5746 9.87998 13.8862 9.87998H15.7641L15.2975 9.03802C15.1311 8.73927 14.815 8.55353 14.4708 8.55528H11.5691C11.2583 8.55528 11.0056 8.30383 11.0056 7.99455C11.0056 7.6844 11.2583 7.43382 11.5691 7.43382H12.5516L12.1175 6.58749C11.9573 6.27384 11.6342 6.07758 11.2812 6.07846H6.65825C6.21982 6.07671 5.83949 6.37811 5.74265 6.80303L5.43803 8.11986C5.37905 8.37482 5.15191 8.5553 4.88867 8.5553ZM2.31441 13.4477C2.25103 13.4469 2.19292 13.4784 2.15771 13.531L2.15729 13.5309C2.12296 13.5818 2.11591 13.6475 2.14056 13.7044L3.47962 16.9934C3.56871 17.0553 3.65292 17.1187 3.7331 17.1792L3.79833 17.2282C4.16017 17.5778 4.64613 17.7705 5.1506 17.7644C5.65506 17.7706 6.14102 17.5778 6.50286 17.2282C7.66761 16.2014 9.41877 16.2014 10.5826 17.2282C11.3399 17.9423 12.5257 17.9423 13.282 17.2282C14.4449 16.2005 16.197 16.2005 17.36 17.2282C17.7209 17.5778 18.2051 17.7697 18.7078 17.7635C18.8875 17.7627 19.0662 17.7381 19.2387 17.6891L21.8421 13.7377C21.879 13.6799 21.8817 13.6063 21.8491 13.5467C21.8156 13.4863 21.7531 13.4486 21.6836 13.4477H2.31441ZM13.2822 20.1064C14.4451 19.0778 16.1972 19.0778 17.3602 20.1064H17.36C17.7209 20.4559 18.2051 20.6487 18.7078 20.6417C19.0195 20.6417 19.2713 20.8931 19.2713 21.2024C19.2713 21.5125 19.0195 21.7631 18.7078 21.7631C17.9551 21.7692 17.227 21.4942 16.668 20.993C15.9117 20.2781 14.7258 20.2781 13.9704 20.993C12.8075 22.0207 11.0554 22.0207 9.89155 20.993C9.13453 20.2781 7.94866 20.2781 7.19152 20.993C6.6316 21.495 5.90351 21.7701 5.1508 21.764C4.84002 21.764 4.58735 21.5134 4.58735 21.2033C4.58735 20.894 4.84002 20.6425 5.1508 20.6425C5.65526 20.6496 6.14122 20.4568 6.50306 20.1064C7.66691 19.0795 9.41898 19.0795 10.5828 20.1064C11.3401 20.8213 12.5259 20.8213 13.2822 20.1064ZM12.0023 10.4408C12.0023 11.1846 10.8807 11.1846 10.8807 10.4408C10.8807 9.69692 12.0023 9.69692 12.0023 10.4408ZM9.66192 10.6538C9.57564 10.8623 9.37138 10.9981 9.14425 10.9981C8.99548 10.999 8.85284 10.9403 8.74808 10.8352C8.64243 10.7309 8.58345 10.589 8.58345 10.4409C8.58345 10.2149 8.71992 10.0116 8.92945 9.92574C9.1381 9.839 9.37931 9.88632 9.53954 10.0458C9.69977 10.2052 9.74819 10.4453 9.66192 10.6538Z\"/> </mask> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.75886 16.4545C1.86274 16.4545 1.95782 16.4615 2.05291 16.4694L1.09681 14.1274C0.932169 13.7244 0.979724 13.2679 1.2227 12.907C1.4648 12.546 1.87154 12.3287 2.30821 12.327L2.67006 9.25263C2.77921 8.32305 3.50465 7.58359 4.43609 7.45393L4.64474 6.55239C4.85691 5.6158 5.69417 4.95256 6.65818 4.95607H11.2811C12.0585 4.95344 12.7699 5.38801 13.1211 6.07752L13.8175 7.43379H14.4707C15.2244 7.43291 15.9181 7.84031 16.2817 8.49567L17.0476 9.87997H17.6207C18.2009 9.87997 18.7547 10.1227 19.1464 10.5485L20.7778 12.3279H21.6855C22.1688 12.3279 22.6125 12.5916 22.8423 13.0139C23.072 13.4371 23.0492 13.9514 22.7842 14.3535L21.3412 16.5447C21.5868 16.4852 21.8395 16.4554 22.0931 16.4563C22.4038 16.4563 22.6565 16.7068 22.6565 17.017C22.6565 17.3263 22.4038 17.5777 22.0931 17.5777C21.5895 17.5716 21.1044 17.7643 20.7443 18.113C20.4758 18.3338 20.18 18.5178 19.863 18.6597L19.8498 18.665C19.8349 18.6713 19.8204 18.6779 19.8059 18.6844L19.8059 18.6845L19.8058 18.6845C19.7803 18.696 19.755 18.7075 19.7275 18.7176C19.4 18.8315 19.054 18.8875 18.7071 18.8831C17.9544 18.8893 17.2263 18.6142 16.6681 18.1121C15.9118 17.3981 14.7269 17.3981 13.9706 18.1121C12.8077 19.1398 11.0556 19.1398 9.89172 18.1121C9.1347 17.3981 7.94883 17.3981 7.1917 18.1121C6.63177 18.6124 5.90456 18.8875 5.15273 18.8823C4.39911 18.8875 3.67105 18.6133 3.11112 18.1121C2.74928 17.7626 2.26332 17.5698 1.75886 17.576C1.44808 17.576 1.19541 17.3245 1.19541 17.0152C1.19541 16.7051 1.44808 16.4545 1.75886 16.4545ZM4.88867 8.5553H4.72228C4.24599 8.5553 3.8456 8.91008 3.79013 9.38145L3.44504 12.3262H19.2557L18.3181 11.3055C18.1403 11.1118 17.8885 11.0014 17.6253 11.0014H13.8862C13.5746 11.0014 13.3228 10.75 13.3228 10.4407C13.3228 10.1306 13.5746 9.87998 13.8862 9.87998H15.7641L15.2975 9.03802C15.1311 8.73927 14.815 8.55353 14.4708 8.55528H11.5691C11.2583 8.55528 11.0056 8.30383 11.0056 7.99455C11.0056 7.6844 11.2583 7.43382 11.5691 7.43382H12.5516L12.1175 6.58749C11.9573 6.27384 11.6342 6.07758 11.2812 6.07846H6.65825C6.21982 6.07671 5.83949 6.37811 5.74265 6.80303L5.43803 8.11986C5.37905 8.37482 5.15191 8.5553 4.88867 8.5553ZM2.31441 13.4477C2.25103 13.4469 2.19292 13.4784 2.15771 13.531L2.15729 13.5309C2.12296 13.5818 2.11591 13.6475 2.14056 13.7044L3.47962 16.9934C3.56871 17.0553 3.65292 17.1187 3.7331 17.1792L3.79833 17.2282C4.16017 17.5778 4.64613 17.7705 5.1506 17.7644C5.65506 17.7706 6.14102 17.5778 6.50286 17.2282C7.66761 16.2014 9.41877 16.2014 10.5826 17.2282C11.3399 17.9423 12.5257 17.9423 13.282 17.2282C14.4449 16.2005 16.197 16.2005 17.36 17.2282C17.7209 17.5778 18.2051 17.7697 18.7078 17.7635C18.8875 17.7627 19.0662 17.7381 19.2387 17.6891L21.8421 13.7377C21.879 13.6799 21.8817 13.6063 21.8491 13.5467C21.8156 13.4863 21.7531 13.4486 21.6836 13.4477H2.31441ZM13.2822 20.1064C14.4451 19.0778 16.1972 19.0778 17.3602 20.1064H17.36C17.7209 20.4559 18.2051 20.6487 18.7078 20.6417C19.0195 20.6417 19.2713 20.8931 19.2713 21.2024C19.2713 21.5125 19.0195 21.7631 18.7078 21.7631C17.9551 21.7692 17.227 21.4942 16.668 20.993C15.9117 20.2781 14.7258 20.2781 13.9704 20.993C12.8075 22.0207 11.0554 22.0207 9.89155 20.993C9.13453 20.2781 7.94866 20.2781 7.19152 20.993C6.6316 21.495 5.90351 21.7701 5.1508 21.764C4.84002 21.764 4.58735 21.5134 4.58735 21.2033C4.58735 20.894 4.84002 20.6425 5.1508 20.6425C5.65526 20.6496 6.14122 20.4568 6.50306 20.1064C7.66691 19.0795 9.41898 19.0795 10.5828 20.1064C11.3401 20.8213 12.5259 20.8213 13.2822 20.1064ZM12.0023 10.4408C12.0023 11.1846 10.8807 11.1846 10.8807 10.4408C10.8807 9.69692 12.0023 9.69692 12.0023 10.4408ZM9.66192 10.6538C9.57564 10.8623 9.37138 10.9981 9.14425 10.9981C8.99548 10.999 8.85284 10.9403 8.74808 10.8352C8.64243 10.7309 8.58345 10.589 8.58345 10.4409C8.58345 10.2149 8.71992 10.0116 8.92945 9.92574C9.1381 9.839 9.37931 9.88632 9.53954 10.0458C9.69977 10.2052 9.74819 10.4453 9.66192 10.6538Z\" fill=\"#F9F9F9\"/> <path d=\"M2.05291 16.4694L2.03018 16.7435L2.47695 16.7805L2.30751 16.3655L2.05291 16.4694ZM1.09681 14.1274L1.35141 14.0235L1.35139 14.0234L1.09681 14.1274ZM1.2227 12.907L1.45084 13.0605L1.45109 13.0602L1.2227 12.907ZM2.30821 12.327L2.30932 12.602L2.55286 12.601L2.58133 12.3591L2.30821 12.327ZM2.67006 9.25263L2.94317 9.28477L2.94318 9.2847L2.67006 9.25263ZM4.43609 7.45393L4.47401 7.7263L4.66136 7.70022L4.70401 7.51593L4.43609 7.45393ZM4.64474 6.55239L4.91266 6.6144L4.91295 6.61315L4.64474 6.55239ZM6.65818 4.95607L6.65718 5.23107H6.65818V4.95607ZM11.2811 4.95607L11.2811 5.23107L11.2821 5.23107L11.2811 4.95607ZM13.1211 6.07752L12.8761 6.20236L12.8765 6.20313L13.1211 6.07752ZM13.8175 7.43379L13.5729 7.55939L13.6496 7.70879H13.8175V7.43379ZM14.4707 7.43379L14.4707 7.70879L14.4711 7.70879L14.4707 7.43379ZM16.2817 8.49567L16.5223 8.36253L16.5222 8.36225L16.2817 8.49567ZM17.0476 9.87997L16.807 10.0131L16.8855 10.155H17.0476V9.87997ZM19.1464 10.5485L19.3491 10.3626L19.3488 10.3623L19.1464 10.5485ZM20.7778 12.3279L20.5751 12.5137L20.6568 12.6029H20.7778V12.3279ZM22.8423 13.0139L23.0839 12.8827L23.0838 12.8825L22.8423 13.0139ZM22.7842 14.3535L22.5545 14.2022L22.5545 14.2023L22.7842 14.3535ZM21.3412 16.5447L21.1116 16.3935L20.7276 16.9766L21.4061 16.812L21.3412 16.5447ZM22.0931 16.4563L22.0921 16.7313H22.0931V16.4563ZM22.0931 17.5777L22.0897 17.8527H22.0931V17.5777ZM20.7443 18.113L20.919 18.3254L20.9276 18.3183L20.9356 18.3106L20.7443 18.113ZM19.863 18.6597L19.9648 18.9155L19.9754 18.9107L19.863 18.6597ZM19.8498 18.665L19.7481 18.4094L19.7426 18.4118L19.8498 18.665ZM19.8059 18.6844L19.6924 18.4337L19.6829 18.4385L19.8059 18.6844ZM19.8058 18.6845L19.9193 18.9352L19.9288 18.9304L19.8058 18.6845ZM19.7275 18.7176L19.8178 18.9773L19.8219 18.9758L19.7275 18.7176ZM18.7071 18.8831L18.7106 18.6081L18.7049 18.6082L18.7071 18.8831ZM16.6681 18.1121L16.4793 18.3122L16.4842 18.3166L16.6681 18.1121ZM13.9706 18.1121L14.1528 18.3183L14.1594 18.3121L13.9706 18.1121ZM9.89172 18.1121L9.70292 18.3123L9.7097 18.3183L9.89172 18.1121ZM7.1917 18.1121L7.37499 18.3173L7.38037 18.3122L7.1917 18.1121ZM5.15273 18.8823L5.15465 18.6072L5.15081 18.6073L5.15273 18.8823ZM3.11112 18.1121L2.91991 18.3101L2.92772 18.3171L3.11112 18.1121ZM1.75886 17.576L1.75886 17.851L1.7622 17.8509L1.75886 17.576ZM3.79013 9.38145L3.51702 9.34932L3.517 9.34944L3.79013 9.38145ZM3.44504 12.3262L3.17191 12.2942L3.13593 12.6012H3.44504V12.3262ZM19.2557 12.3262V12.6012H19.8818L19.4582 12.1401L19.2557 12.3262ZM18.3181 11.3055L18.1156 11.4915L18.1156 11.4915L18.3181 11.3055ZM15.7641 9.87998V10.155H16.2309L16.0046 9.74668L15.7641 9.87998ZM15.2975 9.03802L15.538 8.90472L15.5377 8.90421L15.2975 9.03802ZM14.4708 8.55528V8.83028L14.4722 8.83027L14.4708 8.55528ZM12.5516 7.43382V7.70882H13.0017L12.7963 7.30833L12.5516 7.43382ZM12.1175 6.58749L11.8726 6.71259L11.8728 6.71298L12.1175 6.58749ZM11.2812 6.07846L11.2812 6.35346L11.2819 6.35346L11.2812 6.07846ZM6.65825 6.07846L6.65715 6.35346H6.65825V6.07846ZM5.74265 6.80303L6.01057 6.86501L6.01077 6.86414L5.74265 6.80303ZM5.43803 8.11986L5.70595 8.18184L5.70595 8.18184L5.43803 8.11986ZM2.15771 13.531L2.13879 13.8053L2.29759 13.8163L2.38618 13.684L2.15771 13.531ZM2.31441 13.4477L2.31061 13.7227H2.31441V13.4477ZM2.15729 13.5309L2.17621 13.2566L2.01814 13.2457L1.92943 13.377L2.15729 13.5309ZM2.14056 13.7044L2.39532 13.6007L2.39294 13.5952L2.14056 13.7044ZM3.47962 16.9934L3.22492 17.0971L3.25571 17.1727L3.32278 17.2193L3.47962 16.9934ZM3.7331 17.1792L3.56758 17.3988L3.56782 17.399L3.7331 17.1792ZM3.79833 17.2282L3.9894 17.0304L3.97719 17.0186L3.96361 17.0084L3.79833 17.2282ZM5.1506 17.7644L5.15395 17.4893L5.14725 17.4894L5.1506 17.7644ZM6.50286 17.2282L6.32082 17.0217L6.31179 17.0304L6.50286 17.2282ZM10.5826 17.2282L10.7714 17.028L10.7646 17.022L10.5826 17.2282ZM13.282 17.2282L13.0998 17.022L13.0932 17.0283L13.282 17.2282ZM17.36 17.2282L17.5515 17.0305L17.5421 17.0221L17.36 17.2282ZM18.7078 17.7635L18.7065 17.4885L18.7045 17.4886L18.7078 17.7635ZM19.2387 17.6891L19.3139 17.9536L19.4122 17.9256L19.4684 17.8404L19.2387 17.6891ZM21.8421 13.7377L22.0717 13.889L22.0737 13.8859L21.8421 13.7377ZM21.8491 13.5467L22.0904 13.4148L22.0897 13.4136L21.8491 13.5467ZM21.6836 13.4477L21.6871 13.1727H21.6836V13.4477ZM17.3602 20.1064V20.3814H18.0862L17.5424 19.9004L17.3602 20.1064ZM13.2822 20.1064L13.0999 19.9003L13.0933 19.9065L13.2822 20.1064ZM17.36 20.1064V19.8314H16.6807L17.1686 20.3039L17.36 20.1064ZM18.7078 20.6417L18.7078 20.3666L18.704 20.3667L18.7078 20.6417ZM18.7078 21.7631L18.7078 21.4881L18.7056 21.4881L18.7078 21.7631ZM16.668 20.993L16.479 21.1929L16.4844 21.1978L16.668 20.993ZM13.9704 20.993L14.1526 21.1992L14.1595 21.1927L13.9704 20.993ZM9.89155 20.993L9.70263 21.193L9.70953 21.1991L9.89155 20.993ZM7.19152 20.993L7.37517 21.1978L7.38033 21.1929L7.19152 20.993ZM5.1508 21.764L5.15304 21.489H5.1508V21.764ZM5.1508 20.6425L5.15462 20.3675H5.1508V20.6425ZM6.50306 20.1064L6.32093 19.8999L6.31174 19.9088L6.50306 20.1064ZM10.5828 20.1064L10.7717 19.9063L10.7648 19.9001L10.5828 20.1064ZM9.14425 10.9981L9.14425 10.7231L9.14263 10.7231L9.14425 10.9981ZM9.66192 10.6538L9.40781 10.5487L9.40781 10.5487L9.66192 10.6538ZM8.74808 10.8352L8.94288 10.6411L8.94124 10.6394L8.74808 10.8352ZM8.92945 9.92574L9.03372 10.1802L9.03501 10.1797L8.92945 9.92574ZM9.53954 10.0458L9.34556 10.2407L9.34557 10.2407L9.53954 10.0458ZM2.07563 16.1953C1.9794 16.1874 1.8748 16.1795 1.75886 16.1795V16.7295C1.85068 16.7295 1.93625 16.7357 2.03018 16.7435L2.07563 16.1953ZM0.842209 14.2314L1.7983 16.5733L2.30751 16.3655L1.35141 14.0235L0.842209 14.2314ZM0.994572 12.7534C0.700559 13.1902 0.642796 13.7432 0.842233 14.2314L1.35139 14.0234C1.22154 13.7056 1.25889 13.3457 1.45084 13.0605L0.994572 12.7534ZM2.30711 12.052C1.7797 12.0541 1.28757 12.3166 0.994317 12.7538L1.45109 13.0602C1.64204 12.7755 1.96338 12.6034 2.30932 12.602L2.30711 12.052ZM2.39694 9.22048L2.0351 12.2948L2.58133 12.3591L2.94317 9.28477L2.39694 9.22048ZM4.39818 7.18155C3.34345 7.32838 2.52075 8.16603 2.39693 9.22056L2.94318 9.2847C3.03766 8.48007 3.66585 7.8388 4.47401 7.7263L4.39818 7.18155ZM4.37682 6.49038L4.16817 7.39192L4.70401 7.51593L4.91266 6.6144L4.37682 6.49038ZM6.65918 4.68107C5.56725 4.6771 4.61738 5.42848 4.37654 6.49163L4.91295 6.61315C5.09645 5.80311 5.82109 5.22803 6.65718 5.23107L6.65918 4.68107ZM11.2811 4.68107H6.65818V5.23107H11.2811V4.68107ZM13.3662 5.95269C12.9677 5.17055 12.1611 4.6781 11.2802 4.68107L11.2821 5.23107C11.9559 5.22879 12.572 5.60546 12.8761 6.20235L13.3662 5.95269ZM14.0621 7.30818L13.3658 5.95191L12.8765 6.20313L13.5729 7.55939L14.0621 7.30818ZM14.4707 7.15879H13.8175V7.70879H14.4707V7.15879ZM16.5222 8.36225C16.1098 7.61903 15.3236 7.1578 14.4704 7.15879L14.4711 7.70879C15.1251 7.70803 15.7264 8.06159 16.0412 8.62908L16.5222 8.36225ZM17.2882 9.74683L16.5223 8.36253L16.0411 8.6288L16.807 10.0131L17.2882 9.74683ZM17.6207 9.60497H17.0476V10.155H17.6207V9.60497ZM19.3488 10.3623C18.9048 9.87973 18.2776 9.60497 17.6207 9.60497V10.155C18.1242 10.155 18.6045 10.3656 18.9441 10.7347L19.3488 10.3623ZM20.9805 12.1421L19.3491 10.3626L18.9437 10.7343L20.5751 12.5137L20.9805 12.1421ZM21.6855 12.0529H20.7778V12.6029H21.6855V12.0529ZM23.0838 12.8825C22.8058 12.3714 22.2692 12.0529 21.6855 12.0529V12.6029C22.0683 12.6029 22.4192 12.8118 22.6007 13.1453L23.0838 12.8825ZM23.0138 14.5048C23.3344 14.0183 23.3624 13.3955 23.0839 12.8827L22.6006 13.1451C22.7817 13.4787 22.7639 13.8844 22.5545 14.2022L23.0138 14.5048ZM21.5709 16.696L23.0138 14.5048L22.5545 14.2023L21.1116 16.3935L21.5709 16.696ZM22.094 16.1813C21.8183 16.1803 21.5436 16.2127 21.2764 16.2775L21.4061 16.812C21.6301 16.7576 21.8607 16.7305 22.0921 16.7313L22.094 16.1813ZM22.9315 17.017C22.9315 16.5534 22.5542 16.1813 22.0931 16.1813V16.7313C22.2535 16.7313 22.3815 16.8602 22.3815 17.017H22.9315ZM22.0931 17.8527C22.5545 17.8527 22.9315 17.4794 22.9315 17.017H22.3815C22.3815 17.1731 22.2532 17.3027 22.0931 17.3027V17.8527ZM20.9356 18.3106C21.2434 18.0125 21.6584 17.8474 22.0897 17.8527L22.0964 17.3027C21.5205 17.2957 20.9654 17.5161 20.553 17.9155L20.9356 18.3106ZM19.9754 18.9107C20.3151 18.7586 20.6318 18.5616 20.919 18.3254L20.5697 17.9006C20.3198 18.106 20.0449 18.277 19.7506 18.4087L19.9754 18.9107ZM19.9515 18.9205L19.9647 18.9152L19.7613 18.4042L19.7481 18.4095L19.9515 18.9205ZM19.9193 18.935C19.9342 18.9282 19.9457 18.923 19.9571 18.9182L19.7426 18.4118C19.724 18.4196 19.7065 18.4276 19.6925 18.4339L19.9193 18.935ZM19.9289 18.9304L19.9289 18.9304L19.6829 18.4385L19.6829 18.4385L19.9289 18.9304ZM19.9288 18.9304L19.9289 18.9304L19.6829 18.4385L19.6829 18.4385L19.9288 18.9304ZM19.8219 18.9758C19.8605 18.9617 19.895 18.946 19.9193 18.935L19.6924 18.4339C19.6657 18.446 19.6494 18.4533 19.633 18.4593L19.8219 18.9758ZM18.7036 19.1581C19.0824 19.1629 19.4601 19.1017 19.8178 18.9773L19.6371 18.4578C19.3399 18.5612 19.0256 18.6121 18.7106 18.6082L18.7036 19.1581ZM16.4842 18.3166C17.0937 18.8648 17.8882 19.1648 18.7094 19.1581L18.7049 18.6082C18.0205 18.6137 17.3589 18.3636 16.852 17.9077L16.4842 18.3166ZM14.1594 18.3121C14.8097 17.6981 15.829 17.6981 16.4794 18.3121L16.8569 17.9122C15.9947 17.0981 14.644 17.0981 13.7818 17.9122L14.1594 18.3121ZM9.7097 18.3183C10.9775 19.4378 12.8857 19.4379 14.1527 18.3182L13.7885 17.9061C12.7296 18.8418 11.1337 18.8419 10.0737 17.906L9.7097 18.3183ZM7.38037 18.3122C8.03157 17.6981 9.05196 17.6981 9.70303 18.3122L10.0804 17.9121C9.21744 17.0981 7.86609 17.0981 7.00302 17.9121L7.38037 18.3122ZM5.1508 19.1573C5.97096 19.163 6.76414 18.8629 7.37492 18.3172L7.00847 17.9071C6.49939 18.3619 5.83816 18.6121 5.15465 18.6073L5.1508 19.1573ZM2.92772 18.3171C3.53885 18.864 4.33307 19.163 5.15464 19.1573L5.15081 18.6073C4.46515 18.6121 3.80325 18.3626 3.29452 17.9072L2.92772 18.3171ZM1.7622 17.8509C2.1944 17.8457 2.61045 18.0108 2.92005 18.3099L3.30219 17.9144C2.88811 17.5143 2.33223 17.294 1.75551 17.301L1.7622 17.8509ZM0.920412 17.0152C0.920412 17.4776 1.29746 17.851 1.75886 17.851V17.301C1.59871 17.301 1.47041 17.1714 1.47041 17.0152H0.920412ZM1.75886 16.1795C1.29774 16.1795 0.920412 16.5517 0.920412 17.0152H1.47041C1.47041 16.8585 1.59843 16.7295 1.75886 16.7295V16.1795ZM4.72228 8.8303H4.88867V8.2803H4.72228V8.8303ZM4.06325 9.41359C4.10232 9.08153 4.38461 8.8303 4.72228 8.8303V8.2803C4.10737 8.2803 3.58887 8.73864 3.51702 9.34932L4.06325 9.41359ZM3.71817 12.3582L4.06327 9.41346L3.517 9.34944L3.17191 12.2942L3.71817 12.3582ZM19.2557 12.0512H3.44504V12.6012H19.2557V12.0512ZM18.1156 11.4915L19.0532 12.5122L19.4582 12.1401L18.5206 11.1194L18.1156 11.4915ZM17.6253 11.2764C17.8117 11.2764 17.99 11.3547 18.1156 11.4915L18.5207 11.1195C18.2906 10.8689 17.9653 10.7264 17.6253 10.7264V11.2764ZM13.8862 11.2764H17.6253V10.7264H13.8862V11.2764ZM13.0478 10.4407C13.0478 10.9028 13.4237 11.2764 13.8862 11.2764V10.7264C13.7255 10.7264 13.5978 10.5971 13.5978 10.4407H13.0478ZM13.8862 9.60498C13.424 9.60498 13.0478 9.97743 13.0478 10.4407H13.5978C13.5978 10.2837 13.7252 10.155 13.8862 10.155V9.60498ZM15.7641 9.60498H13.8862V10.155H15.7641V9.60498ZM15.057 9.17132L15.5236 10.0133L16.0046 9.74668L15.538 8.90472L15.057 9.17132ZM14.4722 8.83027C14.7159 8.82903 14.9395 8.96047 15.0572 9.17183L15.5377 8.90421C15.3227 8.51806 14.9141 8.27802 14.4694 8.28028L14.4722 8.83027ZM11.5691 8.83028H14.4708V8.28028H11.5691V8.83028ZM10.7306 7.99455C10.7306 8.45696 11.1077 8.83028 11.5691 8.83028V8.28028C11.4089 8.28028 11.2806 8.15069 11.2806 7.99455H10.7306ZM11.5691 7.15882C11.108 7.15882 10.7306 7.53099 10.7306 7.99455H11.2806C11.2806 7.83781 11.4086 7.70882 11.5691 7.70882V7.15882ZM12.5516 7.15882H11.5691V7.70882H12.5516V7.15882ZM11.8728 6.71298L12.3069 7.55931L12.7963 7.30833L12.3622 6.462L11.8728 6.71298ZM11.2819 6.35346C11.532 6.35284 11.7598 6.49174 11.8726 6.71259L12.3624 6.46239C12.1548 6.05593 11.7364 5.80233 11.2805 5.80346L11.2819 6.35346ZM6.65825 6.35346H11.2812V5.80346H6.65825V6.35346ZM6.01077 6.86414C6.07883 6.56553 6.34666 6.35222 6.65715 6.35346L6.65934 5.80346C6.09297 5.8012 5.60015 6.19069 5.47452 6.74192L6.01077 6.86414ZM5.70595 8.18184L6.01057 6.86501L5.47472 6.74105L5.1701 8.05788L5.70595 8.18184ZM4.88867 8.8303C5.27938 8.8303 5.618 8.56202 5.70595 8.18184L5.1701 8.05788C5.14009 8.18761 5.02445 8.2803 4.88867 8.2803V8.8303ZM2.38618 13.684C2.37131 13.7062 2.34333 13.7232 2.31061 13.7227L2.31822 13.1728C2.15872 13.1706 2.01454 13.2506 1.92923 13.3779L2.38618 13.684ZM2.13837 13.8053L2.13879 13.8053L2.17663 13.2566L2.17621 13.2566L2.13837 13.8053ZM2.39294 13.5952C2.40661 13.6267 2.40193 13.6601 2.38515 13.6849L1.92943 13.377C1.84399 13.5034 1.82522 13.6682 1.88819 13.8136L2.39294 13.5952ZM3.73432 16.8897L2.39526 13.6007L1.88586 13.8081L3.22492 17.0971L3.73432 16.8897ZM3.89862 16.9596C3.81901 16.8996 3.73064 16.8329 3.63646 16.7675L3.32278 17.2193C3.40679 17.2776 3.48683 17.3379 3.56758 17.3988L3.89862 16.9596ZM3.96361 17.0084L3.89839 16.9594L3.56782 17.399L3.63305 17.448L3.96361 17.0084ZM5.14725 17.4894C4.71505 17.4947 4.299 17.3295 3.9894 17.0304L3.60726 17.426C4.02134 17.826 4.57722 18.0464 5.15394 18.0394L5.14725 17.4894ZM6.31179 17.0304C6.00218 17.3296 5.58614 17.4947 5.15395 17.4894L5.14725 18.0394C5.72397 18.0464 6.27985 17.826 6.69393 17.426L6.31179 17.0304ZM10.7646 17.022C9.49672 15.9034 7.58964 15.9035 6.321 17.0219L6.68472 17.4345C7.74558 16.4993 9.34083 16.4994 10.4007 17.4344L10.7646 17.022ZM13.0932 17.0283C12.443 17.6422 11.4227 17.6424 10.7713 17.0281L10.394 17.4283C11.2571 18.2422 12.6085 18.2423 13.4708 17.4282L13.0932 17.0283ZM17.5421 17.0221C16.2751 15.9025 14.3668 15.9025 13.0999 17.0222L13.4641 17.4343C14.523 16.4985 16.1189 16.4985 17.1779 17.4343L17.5421 17.0221ZM18.7045 17.4886C18.2741 17.4938 17.8599 17.3296 17.5513 17.0307L17.1687 17.4258C17.582 17.826 18.1362 18.0455 18.7112 18.0385L18.7045 17.4886ZM19.1635 17.4245C19.0158 17.4665 18.862 17.4878 18.7065 17.4885L18.7092 18.0385C18.9129 18.0375 19.1165 18.0097 19.3139 17.9536L19.1635 17.4245ZM21.6124 13.5864L19.0091 17.5378L19.4684 17.8404L22.0717 13.889L21.6124 13.5864ZM21.6078 13.6787C21.5917 13.6493 21.5938 13.6155 21.6104 13.5896L22.0737 13.8859C22.1643 13.7443 22.1716 13.5633 22.0904 13.4148L21.6078 13.6787ZM21.6801 13.7227C21.6505 13.7223 21.6227 13.7055 21.6085 13.6799L22.0897 13.4136C22.0086 13.2671 21.8558 13.1749 21.6871 13.1728L21.6801 13.7227ZM2.31441 13.7227H21.6836V13.1727H2.31441V13.7227ZM17.5424 19.9004C16.2753 18.7798 14.367 18.7798 13.1 19.9004L13.4644 20.3123C14.5233 19.3758 16.119 19.3758 17.178 20.3124L17.5424 19.9004ZM17.36 20.3814H17.3602V19.8314H17.36V20.3814ZM18.704 20.3667C18.2742 20.3727 17.8601 20.2079 17.5513 19.9088L17.1686 20.3039C17.5817 20.7039 18.136 20.9247 18.7117 20.9166L18.704 20.3667ZM19.5463 21.2024C19.5463 20.7403 19.1704 20.3667 18.7078 20.3667V20.9167C18.8686 20.9167 18.9963 21.046 18.9963 21.2024H19.5463ZM18.7078 22.0381C19.1701 22.0381 19.5463 21.6657 19.5463 21.2024H18.9963C18.9963 21.3594 18.8689 21.4881 18.7078 21.4881V22.0381ZM16.4844 21.1978C17.0946 21.7447 17.8889 22.0448 18.7101 22.0381L18.7056 21.4881C18.0213 21.4937 17.3595 21.2436 16.8515 20.7882L16.4844 21.1978ZM14.1595 21.1927C14.8087 20.5782 15.8287 20.5781 16.4791 21.1928L16.8569 20.7932C15.9946 19.9781 14.6429 19.9779 13.7814 20.7933L14.1595 21.1927ZM9.70953 21.1991C10.9773 22.3186 12.8855 22.3187 14.1525 21.1991L13.7883 20.7869C12.7294 21.7227 11.1335 21.7228 10.0736 20.7869L9.70953 21.1991ZM7.38033 21.1929C8.03149 20.5781 9.0517 20.5781 9.70273 21.1929L10.0804 20.7931C9.21735 19.978 7.86583 19.9781 7.00272 20.7931L7.38033 21.1929ZM5.14856 22.039C5.96974 22.0457 6.76411 21.7456 7.3751 21.1977L7.00794 20.7882C6.49909 21.2445 5.83729 21.4946 5.15304 21.489L5.14856 22.039ZM4.31235 21.2033C4.31235 21.6668 4.68968 22.039 5.1508 22.039V21.489C4.99037 21.489 4.86235 21.36 4.86235 21.2033H4.31235ZM5.1508 20.3675C4.6894 20.3675 4.31235 20.7409 4.31235 21.2033H4.86235C4.86235 21.0471 4.99065 20.9175 5.1508 20.9175V20.3675ZM6.31174 19.9088C6.00221 20.2086 5.58645 20.3736 5.15462 20.3676L5.14697 20.9175C5.72408 20.9255 6.28023 20.705 6.69438 20.3039L6.31174 19.9088ZM10.7648 19.9001C9.49696 18.7816 7.58893 18.7816 6.32113 19.9001L6.685 20.3126C7.7449 19.3775 9.34099 19.3775 10.4009 20.3126L10.7648 19.9001ZM13.0933 19.9065C12.4431 20.5212 11.423 20.5213 10.7716 19.9064L10.3941 20.3063C11.2572 21.1212 12.6088 21.1214 13.4711 20.3062L13.0933 19.9065ZM11.7273 10.4408C11.7273 10.5516 11.6883 10.6148 11.6449 10.6531C11.5963 10.6961 11.5235 10.7236 11.4415 10.7236C11.3595 10.7236 11.2867 10.6961 11.2381 10.6531C11.1947 10.6148 11.1557 10.5516 11.1557 10.4408H10.6057C10.6057 10.7018 10.7069 10.9176 10.8738 11.0652C11.0355 11.2082 11.2431 11.2736 11.4415 11.2736C11.6399 11.2736 11.8475 11.2082 12.0092 11.0652C12.1761 10.9176 12.2773 10.7018 12.2773 10.4408H11.7273ZM11.1557 10.4408C11.1557 10.3299 11.1947 10.2668 11.2381 10.2284C11.2867 10.1854 11.3595 10.1579 11.4415 10.1579C11.5235 10.1579 11.5963 10.1854 11.6449 10.2284C11.6883 10.2668 11.7273 10.3299 11.7273 10.4408H12.2773C12.2773 10.1797 12.1761 9.96389 12.0092 9.81633C11.8475 9.67334 11.6399 9.60787 11.4415 9.60787C11.2431 9.60787 11.0355 9.67334 10.8738 9.81633C10.7069 9.96389 10.6057 10.1797 10.6057 10.4408H11.1557ZM9.14425 11.2731C9.48161 11.2731 9.78682 11.0712 9.91603 10.7589L9.40781 10.5487C9.36447 10.6534 9.26116 10.7231 9.14425 10.7231V11.2731ZM8.55328 11.0293C8.71014 11.1867 8.92357 11.2744 9.14587 11.2731L9.14263 10.7231C9.06738 10.7236 8.99555 10.6939 8.94288 10.6411L8.55328 11.0293ZM8.30845 10.4409C8.30845 10.6622 8.39665 10.8747 8.55492 11.0309L8.94124 10.6394C8.88821 10.5871 8.85845 10.5158 8.85845 10.4409H8.30845ZM8.82517 9.67128C8.51254 9.79938 8.30845 10.1031 8.30845 10.4409H8.85845C8.85845 10.3267 8.92729 10.2238 9.03372 10.1802L8.82517 9.67128ZM9.73353 9.85085C9.49441 9.61289 9.13497 9.54249 8.82389 9.67181L9.03501 10.1797C9.14123 10.1355 9.26422 10.1597 9.34556 10.2407L9.73353 9.85085ZM9.91602 10.7589C10.0451 10.4471 9.97244 10.0886 9.73352 9.85084L9.34557 10.2407C9.42711 10.3218 9.45132 10.4435 9.40781 10.5487L9.91602 10.7589Z\" fill=\"#F9F9F9\" mask=\"url(#path-1-outside-1_668_8633)\"/> </svg>'},CmxhQL0iU:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5965 3.581C11.3717 2.80633 12.6283 2.80633 13.4035 3.581L13.4035 3.58101C13.5858 3.76311 13.8811 4.05857 14.2657 4.4433C14.3999 4.5776 14.545 4.72277 14.7 4.8778C15.2711 4.24049 16.0995 3.83794 17.0271 3.83794C18.7587 3.83794 20.1621 5.2419 20.1621 6.97362C20.1621 7.90102 19.7598 8.72936 19.1223 9.30042C19.662 9.84041 20.1978 10.3766 20.4175 10.5956C21.1942 11.3701 21.1942 12.6299 20.4175 13.4044C20.1669 13.6542 19.5147 14.3066 18.8791 14.9424C18.5804 15.2413 18.2853 15.5364 18.0374 15.7844C17.7427 16.0791 17.3005 16.1695 16.9137 16.0141C16.5269 15.8587 16.2703 15.4874 16.2614 15.0707C16.2479 14.4334 15.73 13.9249 15.0954 13.9249C14.4488 13.9249 13.9249 14.4488 13.9249 15.0953C13.9249 15.7294 14.4332 16.2479 15.0714 16.2617C15.4881 16.2707 15.8591 16.5275 16.0145 16.9142C16.1698 17.3009 16.0793 17.743 15.7847 18.0377C15.6209 18.2015 15.3378 18.4845 15.0207 18.8018C14.3997 19.4228 13.6479 20.1748 13.4035 20.419C12.6283 21.1937 11.3717 21.1937 10.5965 20.419C10.3906 20.2132 9.82908 19.6515 9.29996 19.1222C8.72882 19.7595 7.90051 20.162 6.97293 20.162C5.24117 20.162 3.83787 18.7581 3.83787 17.0264C3.83787 16.099 4.24026 15.2706 4.87767 14.6996C4.34279 14.1643 3.79769 13.6189 3.58253 13.4044C2.80582 12.6299 2.80582 11.3701 3.58253 10.5956C3.85393 10.325 4.79597 9.38259 5.43637 8.74197C5.66496 8.51331 5.85511 8.32308 5.96262 8.21558C6.25736 7.92085 6.69954 7.83046 7.0863 7.98588C7.47305 8.1413 7.72973 8.51254 7.73856 8.92926C7.75206 9.56664 8.26999 10.0751 8.90464 10.0751C9.55116 10.0751 10.0752 9.55115 10.0752 8.9047C10.0752 8.27005 9.567 7.75206 8.92849 7.73827C8.51185 7.72926 8.14077 7.47253 7.98546 7.08581C7.83015 6.69909 7.92057 6.25701 8.21525 5.96233C8.63253 5.54505 9.03866 5.13886 9.3993 4.77817C9.9381 4.23929 10.3753 3.80199 10.5965 3.58101L10.5965 3.581ZM12 5.12032C11.7643 5.35593 11.3601 5.76015 10.8724 6.24798C10.8588 6.26154 10.8452 6.27516 10.8315 6.28884C11.6341 6.87898 12.1561 7.82869 12.1561 8.9047C12.1561 10.7006 10.7003 12.1561 8.90464 12.1561C7.82938 12.1561 6.87958 11.6345 6.28929 10.8321C5.82397 11.2975 5.35201 11.7695 5.12114 12C5.39866 12.2771 5.98029 12.8591 6.51467 13.3938C6.83707 13.7164 7.14226 14.0218 7.35312 14.2327C7.62808 14.5076 7.72678 14.913 7.60899 15.2835C7.4912 15.6541 7.1766 15.9281 6.79335 15.9939C6.29307 16.0797 5.9188 16.5116 5.9188 17.0264C5.9188 17.6093 6.39095 18.0811 6.97293 18.0811C7.48786 18.0811 7.92029 17.7063 8.00629 17.206C8.07215 16.8228 8.34616 16.5083 8.71671 16.3906C9.08726 16.2729 9.49253 16.3716 9.76745 16.6465C9.92186 16.801 10.2232 17.1024 10.5611 17.4404C11.0949 17.9745 11.7199 18.5996 12 18.8797C12.2315 18.6483 12.701 18.1787 13.1686 17.711C12.3659 17.1207 11.8439 16.1708 11.8439 15.0953C11.8439 13.2994 13.2997 11.8439 15.0954 11.8439C16.1706 11.8439 17.1204 12.3655 17.7107 13.1679C18.1897 12.6888 18.6403 12.2381 18.8789 12C18.6102 11.7318 18.0701 11.1913 17.5463 10.6672C17.2159 10.3366 16.892 10.0125 16.6469 9.76732C16.3719 9.49236 16.2732 9.08702 16.391 8.71644C16.5088 8.34586 16.8234 8.07188 17.2067 8.00613C17.7069 7.9203 18.0812 7.48836 18.0812 6.97362C18.0812 6.3907 17.609 5.91886 17.0271 5.91886C16.5122 5.91886 16.0797 6.29362 15.9937 6.79401C15.9278 7.17719 15.6538 7.49167 15.2833 7.60938C14.9127 7.72709 14.5075 7.62838 14.2326 7.35345C13.6755 6.79641 13.1874 6.30805 12.7933 5.91381C12.4536 5.57394 12.1838 5.30402 12 5.12032Z\" fill=\"#F9F9F9\"/> </svg>'},cqQOIJ5lk:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M4.5 6.00352C3.89277 6.00352 3.4 6.49629 3.4 7.10352C3.4 7.71074 3.89277 8.20352 4.5 8.20352C5.10723 8.20352 5.6 7.71074 5.6 7.10352C5.6 6.49629 5.10723 6.00352 4.5 6.00352ZM9.5 6.00352C8.89277 6.00352 8.4 6.49629 8.4 7.10352C8.4 7.71074 8.89277 8.20352 9.5 8.20352H19.5C20.1072 8.20352 20.6 7.71074 20.6 7.10352C20.6 6.49629 20.1072 6.00352 19.5 6.00352H9.5ZM4.5 11.0035C3.89277 11.0035 3.4 11.4963 3.4 12.1035C3.4 12.7107 3.89277 13.2035 4.5 13.2035C5.10723 13.2035 5.6 12.7107 5.6 12.1035C5.6 11.4963 5.10723 11.0035 4.5 11.0035ZM9.5 11.0035C8.89277 11.0035 8.4 11.4963 8.4 12.1035C8.4 12.7107 8.89277 13.2035 9.5 13.2035H19.5C20.1072 13.2035 20.6 12.7107 20.6 12.1035C20.6 11.4963 20.1072 11.0035 19.5 11.0035H9.5ZM4.5 16.0035C3.89277 16.0035 3.4 16.4963 3.4 17.1035C3.4 17.7107 3.89277 18.2035 4.5 18.2035C5.10723 18.2035 5.6 17.7107 5.6 17.1035C5.6 16.4963 5.10723 16.0035 4.5 16.0035ZM9.5 16.0035C8.89277 16.0035 8.4 16.4963 8.4 17.1035C8.4 17.7107 8.89277 18.2035 9.5 18.2035H19.5C20.1072 18.2035 20.6 17.7107 20.6 17.1035C20.6 16.4963 20.1072 16.0035 19.5 16.0035H9.5Z\" fill=\"#F9F9F9\" stroke=\"#F9F9F9\" stroke-width=\"0.2\"/> </svg>'},dfR2opBO7:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.62505 9.14291C5.04209 9.14291 4.56949 9.60662 4.56949 10.1786C4.56949 10.7506 5.04209 11.2143 5.62505 11.2143H9.84727C10.4303 11.2143 10.9028 10.7506 10.9028 10.1786C10.9028 9.60662 10.4303 9.14291 9.84727 9.14291H5.62505ZM10.9028 13.2858C10.9028 12.7137 11.3754 12.25 11.9584 12.25H16.1806C16.7636 12.25 17.2362 12.7137 17.2362 13.2858C17.2362 13.8578 16.7636 14.3215 16.1806 14.3215H11.9584C11.3754 14.3215 10.9028 13.8578 10.9028 13.2858ZM15.125 15.3572C14.5421 15.3572 14.0695 15.8209 14.0695 16.3929C14.0695 16.9649 14.5421 17.4286 15.125 17.4286H18.2917C18.8747 17.4286 19.3473 16.9649 19.3473 16.3929C19.3473 15.8209 18.8747 15.3572 18.2917 15.3572H15.125Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.6667 5.37148H5.33338C4.22881 5.37148 3.33338 6.29249 3.33338 7.42862V16.5715C3.33338 17.7076 4.22881 18.6286 5.33338 18.6286H18.6667C19.7713 18.6286 20.6667 17.7076 20.6667 16.5715V7.42862C20.6667 6.29249 19.7713 5.37148 18.6667 5.37148ZM5.33338 4.00005C3.49243 4.00005 2.00005 5.53507 2.00005 7.42862V16.5715C2.00005 18.465 3.49243 20 5.33338 20H18.6667C20.5077 20 22 18.465 22 16.5715V7.42862C22 5.53507 20.5077 4.00005 18.6667 4.00005H5.33338Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.36949 10.1786C4.36949 9.4926 4.93522 8.94291 5.62505 8.94291H9.84727C10.5371 8.94291 11.1028 9.4926 11.1028 10.1786C11.1028 10.8646 10.5371 11.4143 9.84727 11.4143H5.62505C4.93522 11.4143 4.36949 10.8646 4.36949 10.1786ZM10.7028 13.2858C10.7028 12.5997 11.2685 12.05 11.9584 12.05H16.1806C16.8705 12.05 17.4362 12.5997 17.4362 13.2858C17.4362 13.9718 16.8705 14.5215 16.1806 14.5215H11.9584C11.2685 14.5215 10.7028 13.9718 10.7028 13.2858ZM13.8695 16.3929C13.8695 15.7069 14.4352 15.1572 15.125 15.1572H18.2917C18.9816 15.1572 19.5473 15.7069 19.5473 16.3929C19.5473 17.0789 18.9816 17.6286 18.2917 17.6286H15.125C14.4352 17.6286 13.8695 17.0789 13.8695 16.3929ZM18.6667 5.57148H5.33338C4.34454 5.57148 3.53338 6.3976 3.53338 7.42862V16.5715C3.53338 17.6025 4.34454 18.4286 5.33338 18.4286H18.6667C19.6556 18.4286 20.4667 17.6025 20.4667 16.5715V7.42862C20.4667 6.3976 19.6556 5.57148 18.6667 5.57148ZM1.80005 7.42862C1.80005 5.42996 3.3767 3.80005 5.33338 3.80005H18.6667C20.6234 3.80005 22.2001 5.42996 22.2001 7.42862V16.5715C22.2001 18.5701 20.6234 20.2001 18.6667 20.2001H5.33338C3.3767 20.2001 1.80005 18.5701 1.80005 16.5715V7.42862ZM5.33338 5.37148H18.6667C19.7713 5.37148 20.6667 6.29249 20.6667 7.42862V16.5715C20.6667 17.7076 19.7713 18.6286 18.6667 18.6286H5.33338C4.22881 18.6286 3.33338 17.7076 3.33338 16.5715V7.42862C3.33338 6.29249 4.22881 5.37148 5.33338 5.37148ZM2.00005 7.42862C2.00005 5.53507 3.49243 4.00005 5.33338 4.00005H18.6667C20.5077 4.00005 22 5.53507 22 7.42862V16.5715C22 18.465 20.5077 20 18.6667 20H5.33338C3.49243 20 2.00005 18.465 2.00005 16.5715V7.42862ZM4.56949 10.1786C4.56949 9.60662 5.04209 9.14291 5.62505 9.14291H9.84727C10.4303 9.14291 10.9028 9.60662 10.9028 10.1786C10.9028 10.7506 10.4303 11.2143 9.84727 11.2143H5.62505C5.04209 11.2143 4.56949 10.7506 4.56949 10.1786ZM11.9584 12.25C11.3754 12.25 10.9028 12.7137 10.9028 13.2858C10.9028 13.8578 11.3754 14.3215 11.9584 14.3215H16.1806C16.7636 14.3215 17.2362 13.8578 17.2362 13.2858C17.2362 12.7137 16.7636 12.25 16.1806 12.25H11.9584ZM14.0695 16.3929C14.0695 15.8209 14.5421 15.3572 15.125 15.3572H18.2917C18.8747 15.3572 19.3473 15.8209 19.3473 16.3929C19.3473 16.9649 18.8747 17.4286 18.2917 17.4286H15.125C14.5421 17.4286 14.0695 16.9649 14.0695 16.3929Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5556 6.74297H21.4445V8.1144H2.5556V6.74297Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.6445 6.54297V8.3144H2.3556V6.54297H21.6445ZM2.5556 6.74297H21.4445V8.1144H2.5556V6.74297Z\" fill=\"#F9F9F9\"/> </svg>'},dIEe7kBQG:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.99348 2.30763C10.5145 1.96029 11.1777 1.75271 12 1.75271C12.8223 1.75271 13.4855 1.96029 14.0065 2.30763C14.5232 2.65205 14.8588 3.10627 15.0753 3.5392C15.2578 3.90429 15.3604 4.26327 15.4187 4.55199H21.7975C22.184 4.55199 22.4973 4.86531 22.4973 5.25181V10.8504C22.4973 11.0843 22.3803 11.3029 22.1857 11.4326L21.7975 10.8504C22.1857 11.4326 22.1859 11.4325 22.1857 11.4326L22.1835 11.4341L22.1798 11.4366L22.1677 11.4444C22.1577 11.451 22.1436 11.4601 22.1255 11.4717C22.0893 11.4948 22.0372 11.5275 21.97 11.5684C21.9206 11.5985 21.863 11.633 21.7975 11.6714V19.2482C21.7975 19.6347 21.4841 19.948 21.0976 19.948H2.90235C2.51585 19.948 2.20253 19.6347 2.20253 19.2482V11.6714C2.13699 11.633 2.0794 11.5985 2.03002 11.5684C1.96275 11.5275 1.91069 11.4948 1.87453 11.4717C1.85644 11.4601 1.84233 11.451 1.83227 11.4444L1.82023 11.4366L1.81652 11.4341L1.81524 11.4332C1.81503 11.4331 1.81434 11.4326 2.20253 10.8504L1.81434 11.4326C1.61965 11.3029 1.50271 11.0843 1.50271 10.8504V5.25181C1.50271 4.86531 1.81603 4.55199 2.20253 4.55199H8.58131C8.63958 4.26327 8.74215 3.90429 8.9247 3.5392C9.14116 3.10627 9.47685 2.65205 9.99348 2.30763ZM21.0976 5.95163V10.4592C20.9951 10.5195 20.8683 10.5918 20.7188 10.6734C20.2582 10.9246 19.5836 11.2621 18.7383 11.6002C17.1933 12.2182 15.0946 12.8317 12.6998 12.9347V12.25C12.6998 11.8635 12.3865 11.5502 12 11.5502C11.6135 11.5502 11.3002 11.8635 11.3002 12.25V12.9347C8.90543 12.8317 6.80674 12.2182 5.26171 11.6002C4.41644 11.2621 3.74181 10.9246 3.2812 10.6734C3.13169 10.5918 3.00491 10.5195 2.90235 10.4592V5.95163H21.0976ZM3.60217 12.4042V18.5484H20.3978V12.4042C20.0596 12.5636 19.6782 12.7317 19.2581 12.8998C17.5989 13.5634 15.3196 14.2317 12.6998 14.3355V15.0493C12.6998 15.4358 12.3865 15.7491 12 15.7491C11.6135 15.7491 11.3002 15.4358 11.3002 15.0493V14.3355C8.68043 14.2317 6.40109 13.5634 4.7419 12.8998C4.32183 12.7317 3.94045 12.5636 3.60217 12.4042ZM13.9767 4.55199H10.0233C10.0618 4.42626 10.1118 4.29472 10.1766 4.16514C10.31 3.89825 10.4992 3.65265 10.7699 3.4722C11.0361 3.29468 11.4226 3.15235 12 3.15235C12.5774 3.15235 12.9639 3.29468 13.2301 3.4722C13.5008 3.65265 13.69 3.89825 13.8234 4.16514C13.8882 4.29472 13.9382 4.42626 13.9767 4.55199ZM14.0995 5.25272C14.0995 5.2524 14.0995 5.25181 14.7993 5.25181L14.0995 5.25272C14.0995 5.2525 14.0995 5.25293 14.0995 5.25272Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.63026 11.2532C1.54842 11.1369 1.50271 10.9967 1.50271 10.8504V5.25181C1.50271 4.86531 1.81603 4.55199 2.20253 4.55199H8.58131C8.63958 4.26327 8.74215 3.90429 8.9247 3.5392C9.14116 3.10627 9.47685 2.65205 9.99348 2.30763C10.5145 1.96029 11.1777 1.75271 12 1.75271C12.8223 1.75271 13.4855 1.96029 14.0065 2.30763C14.5232 2.65205 14.8588 3.10627 15.0753 3.5392C15.2578 3.90429 15.3604 4.26327 15.4187 4.55199H21.7975C22.184 4.55199 22.4973 4.86531 22.4973 5.25181V10.8504C22.4973 10.9966 22.4516 11.1368 22.3698 11.2531C22.3698 11.2531 22.3698 11.2531 22.3698 11.2531C22.3209 11.3226 22.2583 11.3841 22.1857 11.4326C22.1859 11.4325 22.1854 11.4328 22.1857 11.4326C22.1858 11.4326 22.1858 11.4326 22.1439 11.3699C22.1232 11.3388 22.0921 11.2921 22.0455 11.2224C22.0455 11.2223 22.0455 11.2224 22.0455 11.2224C21.9888 11.1374 21.9092 11.018 21.7975 10.8504L22.0455 11.2224L22.1857 11.4326L22.1835 11.4341L22.1798 11.4366L22.1677 11.4444L22.1255 11.4717C22.0896 11.4946 22.0382 11.5269 21.9719 11.5673C21.9713 11.5676 21.9706 11.5681 21.97 11.5684C21.9206 11.5985 21.863 11.633 21.7975 11.6714V19.2482C21.7975 19.6347 21.4841 19.948 21.0976 19.948H2.90235C2.51585 19.948 2.20253 19.6347 2.20253 19.2482V11.6714C2.13699 11.633 2.0794 11.5985 2.03002 11.5684C2.02943 11.5681 2.02884 11.5677 2.02826 11.5674C1.96184 11.5269 1.91038 11.4946 1.87453 11.4717L1.83227 11.4444L1.82023 11.4366L1.81652 11.4341L1.81524 11.4332C1.81503 11.4331 1.81434 11.4326 2.20253 10.8504L1.81434 11.4326C1.81437 11.4327 1.81431 11.4326 1.81434 11.4326C1.7416 11.3841 1.67924 11.3226 1.63026 11.2532C1.63039 11.2534 1.63013 11.253 1.63026 11.2532ZM1.66587 11.6373C1.40585 11.46 1.25 11.1655 1.25 10.8504V5.25181C1.25 4.72574 1.67646 4.29928 2.20253 4.29928H8.37925C8.44483 4.03589 8.54491 3.73369 8.69866 3.42619C8.93009 2.96332 9.29222 2.47141 9.8533 2.09736C10.4203 1.71934 11.1335 1.5 12 1.5C12.8665 1.5 13.5797 1.71934 14.1467 2.09736C14.7078 2.47141 15.0699 2.96332 15.3013 3.42618C15.4551 3.73369 15.5552 4.03589 15.6207 4.29928H21.7975C22.3235 4.29928 22.75 4.72574 22.75 5.25181V10.8504C22.75 11.1643 22.5953 11.4578 22.337 11.6354M22.3258 11.6429C22.3258 11.643 22.3259 11.6429 22.3258 11.6429L22.3234 11.6445L22.3192 11.6473L22.3063 11.6558C22.2956 11.6628 22.2803 11.6727 22.2614 11.6847C22.2238 11.7087 22.1702 11.7424 22.1014 11.7843C22.0852 11.7942 22.0681 11.8045 22.0502 11.8153V19.2482C22.0502 19.7743 21.6237 20.2007 21.0976 20.2007H2.90235C2.37628 20.2007 1.94982 19.7743 1.94982 19.2482V11.8153C1.93191 11.8045 1.91484 11.7942 1.89862 11.7843C1.82977 11.7424 1.77618 11.7087 1.73856 11.6847C1.71974 11.6727 1.70491 11.6631 1.69415 11.6561L1.68165 11.6479L1.67712 11.6449L1.67533 11.6437M20.8449 10.3136V6.20434H3.15506V10.3136C3.22852 10.3556 3.31102 10.4018 3.40221 10.4515C3.85541 10.6987 4.52095 11.0317 5.35557 11.3656C6.82489 11.9533 8.79799 12.5355 11.0475 12.6688V12.25C11.0475 11.7239 11.4739 11.2975 12 11.2975C12.5261 11.2975 12.9525 11.7239 12.9525 12.25V12.6688C15.202 12.5355 17.1751 11.9533 18.6444 11.3656C19.4791 11.0317 20.1446 10.6987 20.5978 10.4515C20.689 10.4018 20.7715 10.3556 20.8449 10.3136ZM21.0976 10.4592C20.9951 10.5195 20.8683 10.5918 20.7188 10.6734C20.2582 10.9246 19.5836 11.2621 18.7383 11.6002C17.2479 12.1964 15.2422 12.7884 12.9525 12.9219C12.8687 12.9268 12.7844 12.9311 12.6998 12.9347V12.25C12.6998 11.8635 12.3865 11.5502 12 11.5502C11.6135 11.5502 11.3002 11.8635 11.3002 12.25V12.9347C11.2156 12.9311 11.1313 12.9268 11.0475 12.9219C8.75782 12.7884 6.75215 12.1964 5.26171 11.6002C4.41644 11.2621 3.74181 10.9246 3.2812 10.6734C3.13169 10.5918 3.00491 10.5195 2.90235 10.4592V5.95163H21.0976V10.4592ZM3.85488 12.7984V18.2957H20.1451V12.7984C19.8988 12.9087 19.634 13.0216 19.352 13.1344C17.7254 13.785 15.5065 14.4414 12.9525 14.5768V15.0493C12.9525 15.5753 12.5261 16.0018 12 16.0018C11.4739 16.0018 11.0475 15.5753 11.0475 15.0493V14.5768C8.49354 14.4414 6.27461 13.785 4.64805 13.1344C4.36603 13.0216 4.10121 12.9087 3.85488 12.7984ZM3.60217 18.5484H20.3978V12.4042C20.3161 12.4427 20.2318 12.4818 20.1451 12.5212C19.873 12.6448 19.5767 12.7723 19.2581 12.8998C17.5989 13.5634 15.3196 14.2317 12.6998 14.3355V15.0493C12.6998 15.4358 12.3865 15.7491 12 15.7491C11.6135 15.7491 11.3002 15.4358 11.3002 15.0493V14.3355C8.68043 14.2317 6.40109 13.5634 4.7419 12.8998C4.42334 12.7723 4.12702 12.6448 3.85488 12.5212C3.76817 12.4818 3.68391 12.4427 3.60217 12.4042V18.5484ZM13.9767 4.55199C13.9515 4.46952 13.9213 4.38455 13.8852 4.29928C13.8663 4.25454 13.8457 4.20972 13.8234 4.16514C13.69 3.89825 13.5008 3.65265 13.2301 3.4722C12.9639 3.29468 12.5774 3.15235 12 3.15235C11.4226 3.15235 11.0361 3.29468 10.7699 3.4722C10.4992 3.65265 10.31 3.89825 10.1766 4.16514C10.1543 4.20972 10.1337 4.25454 10.1148 4.29928C10.0787 4.38455 10.0485 4.46952 10.0233 4.55199H13.9767ZM13.6078 4.29928C13.6044 4.29223 13.6009 4.28518 13.5974 4.27816C13.479 4.04132 13.3163 3.83335 13.09 3.68247C12.8696 3.53558 12.5331 3.40506 12 3.40506C11.4669 3.40506 11.1304 3.53558 10.91 3.68247C10.6837 3.83335 10.521 4.04132 10.4026 4.27815C10.3991 4.28518 10.3956 4.29223 10.3922 4.29928H13.6078ZM14.3522 5.25194C14.0995 5.25213 14.0995 5.25249 14.0995 5.25272L14.7993 5.25181C14.5978 5.25181 14.4543 5.25186 14.3522 5.25194Z\" fill=\"#F9F9F9\"/> </svg>'},EKcIxqCwM:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.8367 10.0428C22.0943 9.70467 22.0395 9.23294 21.7275 8.95794L21.7188 8.94924L21.7057 8.93861C19.5316 7.17761 17.5908 7.00641 16.1329 7.34547C16.7249 5.5467 16.4038 4.06248 15.8899 2.99762C15.3542 1.8876 14.6111 1.23487 14.4903 1.13811C14.2016 0.907091 13.7992 0.910601 13.5102 1.13537L13.5086 1.13665C11.3647 2.82621 11.6052 4.96076 11.633 5.13967C11.6599 5.3235 11.7491 5.49159 11.8851 5.61538C11.8302 5.71686 11.7964 5.83115 11.7901 5.95065C10.3179 5.28664 8.90566 5.37418 7.83109 5.65034C6.69132 5.94325 5.91322 6.45204 5.80393 6.5283C5.50895 6.73058 5.40412 7.09772 5.49763 7.4172L5.50046 7.42595C6.43354 10.3068 8.7706 10.687 8.96185 10.7094C9.17823 10.7367 9.3825 10.6739 9.54187 10.551C9.64157 10.6647 9.77138 10.7475 9.9127 10.7931L9.92317 10.7961C10.2591 10.8921 10.5987 10.9343 10.9262 10.9343C11.0465 10.9343 11.165 10.9284 11.2814 10.9179C10.7249 12.0174 10.1856 13.5474 10.0408 15.4682C8.19843 15.7619 6.65415 16.5805 5.59435 17.8405L5.58613 17.8503L5.57872 17.8606C5.56273 17.883 5.54982 17.8978 5.54054 17.9071L5.44606 18.0016V18.0285C4.68576 18.9516 4.55761 19.8645 4.53601 20.4604H2.79312C2.35853 20.4604 2.00122 20.8177 2.00122 21.2522C2.00122 21.6868 2.35853 22.0441 2.79312 22.0441H20.4528C20.8873 22.0441 21.2446 21.6868 21.2446 21.2522C21.2446 20.8177 20.8873 20.4604 20.4528 20.4604H18.6509C18.5898 19.3077 17.9152 18.2315 17.0143 17.3889C16.0845 16.5193 14.8718 15.857 13.7035 15.5771C13.6264 14.4384 13.9219 13.3639 14.2582 12.5464C14.4367 12.1122 14.6246 11.7558 14.7684 11.5077C14.8226 11.4141 14.8704 11.3362 14.9089 11.2757C15.9184 11.9237 16.8521 11.9745 17.1095 11.9745H17.1728L17.1829 11.9739C17.3643 11.9626 17.5344 11.8931 17.6677 11.7732C17.7716 11.8416 17.8926 11.8866 18.019 11.9002C19.1352 12.0182 20.0803 11.5594 20.7365 11.0855C21.3944 10.6105 21.7954 10.0968 21.8367 10.0428ZM15.6 7.83941C15.6572 7.70694 15.7092 7.57614 15.7563 7.44706C17.1161 3.71494 14.3216 1.41339 14.2888 1.39001C14.183 1.30534 14.0507 1.27359 13.9238 1.29476C14.0507 1.2736 14.1829 1.30536 14.2888 1.39002C14.3226 1.41421 17.3127 3.87689 15.5999 7.83942C15.6 7.83941 15.6 7.83941 15.6 7.83941ZM12.1551 6.49918C12.038 6.43204 11.9211 6.37029 11.8045 6.31363C10.5857 5.7213 9.40315 5.68497 8.42599 5.85251C9.49663 5.66895 10.8139 5.73014 12.1551 6.49922C12.1551 6.49921 12.1551 6.4992 12.1551 6.49918ZM9.25436 10.3506C9.30096 10.329 9.34396 10.2998 9.38195 10.2639L9.38312 10.2628C9.34485 10.2991 9.30145 10.3288 9.25436 10.3506ZM9.39125 10.2549L9.3925 10.2537L9.63921 10.0021L9.63921 10.0021L9.39246 10.2537C9.39206 10.2541 9.39166 10.2545 9.39125 10.2549ZM4.85417 20.7829L2.79312 20.7829C2.76106 20.7829 2.72969 20.7863 2.69933 20.7926C2.72968 20.7863 2.76103 20.7829 2.79307 20.7829H4.85417ZM20.707 21.6453C20.8358 21.561 20.9221 21.4154 20.9221 21.2522C20.9221 21.0118 20.735 20.8097 20.5003 20.7854C20.7349 20.8097 20.922 21.0119 20.922 21.2523C20.922 21.4154 20.8358 21.561 20.707 21.6453ZM20.4528 20.7829H18.3288C18.3342 20.6813 18.3341 20.5798 18.3288 20.4787C18.2133 18.2984 15.6506 16.2811 13.4034 15.8419C13.1568 13.6385 14.2863 11.6516 14.6434 11.0921C14.7065 10.9931 14.7455 10.9388 14.7485 10.9359C14.7775 10.8972 14.8017 10.8537 14.8113 10.815C14.8113 10.815 14.8113 10.815 14.8113 10.8149C14.8016 10.8537 14.7774 10.8972 14.7484 10.9359C14.7291 10.9553 13.1131 13.2486 13.4034 15.8419C15.7548 16.3015 18.4516 18.4889 18.3287 20.7829H20.4527C20.4527 20.7829 20.4527 20.7829 20.4528 20.7829ZM17.3337 11.6103C17.3718 11.5931 17.4073 11.571 17.4394 11.5442C17.4762 11.5135 17.5086 11.4767 17.5353 11.4342L17.6369 11.2649L17.6368 11.2649L17.5352 11.4342C17.4852 11.5137 17.4155 11.5735 17.3337 11.6103ZM20.4553 10.8892C21.1324 10.423 21.547 9.89042 21.58 9.8473C21.7348 9.64409 21.701 9.35863 21.5075 9.19413L21.5026 9.18929C19.5793 7.63139 17.87 7.37633 16.5451 7.59252C17.87 7.37631 19.5793 7.63137 21.5027 9.18928L21.5075 9.19412C21.701 9.35862 21.7349 9.64408 21.5801 9.84728C21.5471 9.89041 21.1324 10.423 20.4553 10.8892ZM12.4454 15.7016C12.3384 15.6922 12.23 15.6843 12.1204 15.6781C11.9535 15.6686 11.7838 15.6633 11.6125 15.6629L11.5939 15.6629H11.2891C11.2966 15.554 11.3056 15.4464 11.3158 15.3403C11.4778 13.6688 11.9729 12.3418 12.4551 11.3955C12.8774 10.5865 13.2875 10.0633 13.4751 9.83735L13.5043 9.80247L13.5195 9.78439C13.5609 9.75682 13.6038 9.73082 13.6456 9.70549L13.6457 9.70548C13.6772 9.68638 13.7081 9.66766 13.7372 9.64894C13.7372 9.64894 13.7372 9.64893 13.7372 9.64893C13.7081 9.66765 13.6772 9.68637 13.6456 9.70548C13.6038 9.73081 13.5609 9.75682 13.5195 9.7844C13.3598 9.97309 12.9147 10.515 12.4551 11.3955C11.9422 12.4019 11.4148 13.8389 11.2891 15.6629H11.5939C11.8842 15.6629 12.1696 15.6774 12.4454 15.7016C12.4454 15.7016 12.4454 15.7016 12.4454 15.7016ZM13.6693 10.1094C13.6888 10.1349 13.7084 10.1601 13.728 10.1848L13.7262 10.1874C13.6495 10.2948 12.0449 12.5412 12.106 15.3542C11.9528 15.3461 11.7973 15.3412 11.64 15.3404C11.8004 13.7314 12.2777 12.4545 12.7418 11.5434C13.1128 10.8329 13.4729 10.3523 13.6693 10.1094ZM10.5101 9.62645L10.5066 9.62583L10.5005 9.62474H10.5004C10.7346 9.66697 10.9709 9.67128 11.2033 9.64806C11.0894 9.65944 10.9747 9.6642 10.8597 9.66114C10.7432 9.65803 10.6264 9.64689 10.5101 9.62645ZM12.9507 9.02031C12.9516 9.02008 12.9525 9.01995 12.9534 9.01995C12.9534 9.01995 12.9534 9.01995 12.9534 9.01994C12.9525 9.01994 12.9516 9.02007 12.9507 9.02031ZM7.83244 6.93506C7.39824 7.07345 7.04923 7.24297 6.8185 7.37011C7.40877 8.82159 8.45383 9.27154 8.90379 9.40218L8.90381 9.40216C8.45384 9.27151 7.4088 8.82155 6.81855 7.3701C7.04926 7.24297 7.39826 7.07345 7.83244 6.93506ZM9.73353 8.64884C9.80681 8.63026 9.88565 8.6291 9.96341 8.6474C10.1231 8.6861 10.2489 8.80706 10.3021 8.96188L10.5101 9.62472H10.5101L10.302 8.9619C10.2488 8.80707 10.123 8.68611 9.96337 8.64741C9.88563 8.62911 9.8068 8.63027 9.73353 8.64884ZM10.6099 8.86528L10.7566 9.33281C11.4581 9.38797 12.1893 9.09043 12.7419 8.77225C12.7516 8.76452 12.7653 8.75456 12.7815 8.74491C12.7885 8.74077 12.7974 8.7358 12.8081 8.73066L10.7566 9.33281L12.8577 8.69941L12.8705 8.69123C11.6823 7.40777 10.4683 7.02598 9.44727 7.00984C8.52557 6.99527 7.73607 7.27876 7.2379 7.51717C7.7126 8.47883 8.402 8.87354 8.8146 9.03189L9.28662 8.54872C9.4808 8.34703 9.76787 8.26999 10.0373 8.33339L10.0394 8.33389C10.3128 8.40017 10.5205 8.60489 10.6072 8.85702L10.6099 8.86528ZM7.59478 17.7157C7.49787 17.7818 7.40358 17.8507 7.31201 17.9223H9.84725C10.1037 17.9223 10.3166 18.1304 10.3166 18.3917C10.3166 18.5566 10.2317 18.7004 10.1046 18.7839C10.2317 18.7004 10.3166 18.5566 10.3166 18.3916C10.3166 18.1304 10.1037 17.9223 9.84729 17.9223H7.31205C7.40362 17.8507 7.49789 17.7818 7.59478 17.7157ZM6.38794 18.861L6.3879 18.861C6.04484 19.327 5.99285 19.8834 5.95458 20.2931C5.9351 20.5016 5.91917 20.6721 5.8702 20.7733H17.303L5.87025 20.7733C5.90619 20.699 5.92434 20.5873 5.93915 20.4507C5.94451 20.4012 5.94944 20.3485 5.95462 20.2931L5.95462 20.293C5.99289 19.8834 6.04488 19.327 6.38794 18.861ZM15.2308 18.1763C16.1479 18.8393 16.7733 19.6593 16.9386 20.4507H6.26353C6.26831 20.4042 6.27253 20.3588 6.27677 20.3132L6.27678 20.3131C6.28569 20.2173 6.29469 20.1204 6.3092 20.0106C6.34659 19.7274 6.41269 19.4397 6.56164 19.1835H9.84729C10.2797 19.1835 10.6392 18.8332 10.6392 18.3916C10.6392 17.9501 10.2797 17.5998 9.84729 17.5998H8.43429C9.31833 17.1651 10.3831 16.9289 11.5842 16.9289C12.8488 16.9289 14.1931 17.4262 15.2308 18.1763ZM13.0551 6.17505L13.5728 5.66219C13.684 5.55091 13.7373 5.39125 13.7034 5.23159C13.6647 5.07676 13.5582 4.94613 13.4083 4.88807L12.8712 4.6897C12.8845 4.27407 13.019 3.43817 13.7585 2.6178C13.8281 2.54051 13.9032 2.46336 13.984 2.38672C13.984 2.38671 13.984 2.38671 13.984 2.3867C13.0453 3.27694 12.8857 4.23492 12.8712 4.68971L13.4082 4.88808C13.5582 4.94614 13.6646 5.07677 13.7033 5.2316C13.7372 5.39126 13.684 5.55092 13.5727 5.6622L13.055 6.17506C13.1324 7.13787 13.8582 7.90232 14.3178 8.29422C14.3178 8.2942 14.3178 8.29419 14.3178 8.29418C14.2424 8.22988 14.1598 8.15555 14.0741 8.07195C13.6375 7.64608 13.1198 6.97987 13.0551 6.17505ZM13.5247 4.5872L13.2124 4.47184C13.2636 4.07713 13.4365 3.47102 13.9708 2.86448C14.2622 3.23079 14.608 3.78822 14.7745 4.51444C14.9674 5.35564 14.9264 6.45101 14.2358 7.77779C13.8721 7.40846 13.4904 6.89056 13.394 6.29331L13.7998 5.89136L13.8009 5.89029C13.9845 5.70663 14.0771 5.43758 14.0192 5.16461L14.0163 5.15335C13.9547 4.90663 13.7816 4.68663 13.5247 4.5872ZM18.2588 9.95196L18.515 10.3121C19.0899 10.2654 19.6136 9.9548 19.9953 9.64411C18.7107 8.81149 17.4678 8.58453 16.2888 8.91878C15.8267 9.05294 15.4448 9.25093 15.1663 9.43099C15.7404 10.0363 16.348 10.2524 16.7296 10.3315L16.9461 9.99263C17.0896 9.75271 17.3388 9.62473 17.5929 9.61679C17.8581 9.6085 18.1103 9.7389 18.2588 9.95196ZM18.3675 10.6408H18.353L17.9949 10.1376C17.9078 10.0118 17.7578 9.93437 17.603 9.93921C17.5933 9.93951 17.5837 9.9401 17.5741 9.94097C17.5837 9.9401 17.5933 9.93952 17.603 9.93922C17.7578 9.93438 17.9078 10.0118 17.9949 10.1376L18.3529 10.6408H18.3674C18.3674 10.6408 18.3675 10.6408 18.3675 10.6408ZM16.8869 10.6843C16.4929 10.6356 15.6613 10.441 14.9001 9.61871C14.8419 9.55582 14.7841 9.48925 14.7269 9.4188C14.7147 9.40376 14.7025 9.38854 14.6904 9.37313L14.6959 9.36878C14.7065 9.36055 14.7178 9.35233 14.7291 9.34411C14.7424 9.33443 14.7557 9.32475 14.7678 9.31508C14.8234 9.27364 14.8852 9.22995 14.953 9.18509C15.1811 9.03413 15.4769 8.86995 15.8292 8.73388C15.3722 8.91039 15.0103 9.13417 14.7678 9.31509C14.7557 9.32477 14.7424 9.33444 14.729 9.34412C14.7157 9.3538 14.7024 9.36347 14.6903 9.37315C15.5032 10.4037 16.4563 10.6311 16.8869 10.6843L16.8869 10.6843Z\" fill=\"#F9F9F9\"/> </svg>'},ExI14lsZH:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M23 8.58727C23 8.28295 22.7996 8.01501 22.5077 7.92907C20.4614 6.80398 17.3827 6.51927 15.2564 6.80398C13.1687 7.08363 11.3824 8.24959 10.3078 9.52409L9.37874 6.96377L9.37733 6.96055C9.35708 6.9057 9.32998 6.853 9.29563 6.80398C9.16719 6.62078 8.95748 6.51168 8.73375 6.51168H3.04776C2.75906 6.51168 2.50123 6.69239 2.40273 6.96377L1.04113 10.7162C1.01377 10.7916 1.00047 10.87 1.00021 10.9481L1 10.9503V21.4956C1 21.8746 1.30723 22.1818 1.68616 22.1818H22.304C22.683 22.1818 22.9901 21.8746 22.9901 21.4956L23 8.58727ZM14.581 17.0571V14.9342H15.9319V17.0571H14.581ZM17.0989 13.5619L16.2353 11.1818H20.4614L21.3251 13.5619H17.0989ZM15.2564 12.5073L15.6391 13.5619H14.8737L15.2564 12.5073ZM17.3042 14.9342H21.6178V17.0571H17.3042V14.9342ZM6.68595 13.7593H2.37232V11.6365H6.68595V13.7593ZM9.11637 10.2642H8.351L8.73371 9.20953L9.11637 10.2642ZM8.05827 11.6365H9.40915V13.7593H8.05827V11.6365ZM3.52871 7.88404H7.75477L6.89111 10.2642H2.6651L3.52871 7.88404ZM21.6178 20.8095H2.37232V15.1316H10.0953C10.4742 15.1316 10.7815 14.8244 10.7815 14.4454V11.2809C10.7852 11.2741 10.7894 11.2678 10.7929 11.2609C11.5658 9.73821 13.2315 8.45977 15.4386 8.16421C17.249 7.92186 20 8.16421 21.6277 9.10656V10.3727L21.5874 10.2616C21.4889 9.99021 21.2311 9.80949 20.9424 9.80949H15.2564C15.0327 9.80949 14.823 9.91859 14.6945 10.1018C14.6602 10.1508 14.633 10.2036 14.6128 10.2585L14.6114 10.2616L13.2498 14.014C13.2226 14.0891 13.2093 14.1672 13.2089 14.2449L13.2087 14.2481V17.0571H13.4932C13.1142 17.0571 12.807 17.3642 12.807 17.7432C12.807 18.1222 13.1142 18.4294 13.4932 18.4294H21.6178V20.8095Z\" fill=\"#F9F9F9\"/> <path d=\"M18.4308 5.30312C18.0519 5.30312 17.7446 4.99594 17.7446 4.61696C17.7446 3.93869 17.1928 3.38685 16.5145 3.38685C16.2563 3.38685 16.009 3.46627 15.7995 3.6165C15.6189 3.74601 15.3869 3.77989 15.1768 3.7078C14.9667 3.63563 14.8046 3.46623 14.7417 3.25322C14.5884 2.73453 14.1034 2.37232 13.5621 2.37232C12.8838 2.37232 12.332 2.92412 12.332 3.60243C12.332 3.98141 12.0248 4.28859 11.6458 4.28859H10.6862C10.3072 4.28859 10 3.98141 10 3.60243C10 3.22346 10.3072 2.91627 10.6862 2.91627H11.0515C11.3533 1.81319 12.3645 1 13.5621 1C14.4337 1 15.2363 1.44407 15.7131 2.14027C15.9695 2.05716 16.2391 2.01449 16.5145 2.01449C17.9495 2.01449 19.117 3.18195 19.117 4.61692C19.117 4.99594 18.8097 5.30312 18.4308 5.30312Z\" fill=\"#F9F9F9\"/> <path d=\"M13.2087 17.2261C13.9262 17.2261 13.6076 17.1557 13.7503 17.1558C14.0071 17.1558 13.6354 17.6208 13.7503 17.8505C13.865 18.08 13.7494 18.4163 13.4932 18.4294C12.1297 18.4294 10.8722 18.5661 9.52664 19.1068C9.23136 19.2255 8.88272 19.1154 8.74041 18.8307C8.60566 18.5612 8.7049 18.2312 8.97837 18.1047C10.3508 17.4701 12.6751 17.2261 13.2087 17.2261Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2564 6.80398C13.2863 7.06789 11.5845 8.12108 10.496 9.30994C10.431 9.38089 10.3683 9.45232 10.3078 9.52409L9.37874 6.96377L9.37733 6.96055C9.35708 6.9057 9.32998 6.853 9.29563 6.80398C9.16719 6.62078 8.95748 6.51168 8.73375 6.51168H3.04776C2.75906 6.51168 2.50123 6.69239 2.40273 6.96377L1.04113 10.7162C1.01377 10.7916 1.00047 10.87 1.00021 10.9481L1 10.9503V21.4956C1 21.8746 1.30723 22.1818 1.68616 22.1818H22.304C22.683 22.1818 22.9901 21.8746 22.9901 21.4956L23 8.58727C23 8.28295 22.7996 8.01501 22.5077 7.92907C20.4614 6.80398 17.3827 6.51927 15.2564 6.80398ZM23.2401 8.59384C23.2401 8.22779 23.0424 7.88744 22.7086 7.73723C20.5466 6.76441 17.2055 6.29076 15.2232 6.55619C13.2411 6.8217 11.5262 7.85839 10.4002 9.04602L9.61092 6.8707L9.609 6.86634C9.58197 6.79496 9.54599 6.72562 9.50036 6.66051C9.32513 6.41057 9.03901 6.26168 8.73375 6.26168H3.04776C2.65387 6.26168 2.30212 6.50824 2.16773 6.87847L0.806124 10.6309C0.770148 10.7301 0.752069 10.8326 0.750347 10.9343L0.75 10.9378V21.4956C0.75 22.0127 1.16917 22.4318 1.68616 22.4318H22.304C22.821 22.4318 23.24 22.0126 23.2401 21.4956M21.6277 10.3727L21.5874 10.2616C21.5443 10.143 21.4709 10.0417 21.3777 9.96524C21.2576 9.86676 21.1049 9.80949 20.9424 9.80949H15.2564C15.0327 9.80949 14.823 9.91859 14.6945 10.1018C14.6602 10.1508 14.633 10.2036 14.6128 10.2585L14.6114 10.2616L13.2498 14.014C13.2226 14.0891 13.2093 14.1672 13.2089 14.2449L13.2087 14.2481V17.0571H13.4932H13.4874C13.4854 17.0571 13.4834 17.057 13.4814 17.0571C13.3842 17.0587 13.292 17.0806 13.2087 17.1186C13.1454 17.1475 13.0872 17.1857 13.036 17.2315C13.0116 17.2328 12.9858 17.2343 12.9587 17.236C12.8805 17.241 12.7914 17.2479 12.6931 17.2568C11.7804 17.3398 10.0754 17.5975 8.97837 18.1047C8.7049 18.2312 8.60566 18.5612 8.74041 18.8307C8.88272 19.1154 9.23136 19.2255 9.52664 19.1068C10.6643 18.6496 11.739 18.4813 12.8681 18.4401C13.0744 18.4326 13.2825 18.4294 13.4932 18.4294H21.6178V20.8095H2.37232V15.1316H10.0953C10.4742 15.1316 10.7815 14.8244 10.7815 14.4454V11.2809L10.7863 11.2725C10.7886 11.2687 10.7909 11.2649 10.7929 11.2609C11.5658 9.73821 13.2315 8.45977 15.4386 8.16421C17.249 7.92186 20 8.16421 21.6277 9.10656V10.3727ZM21.3777 9.66683C21.2463 9.59778 21.0976 9.55949 20.9424 9.55949H15.2564C14.9511 9.55949 14.6651 9.70834 14.4898 9.95828C14.4444 10.0232 14.4083 10.0925 14.3813 10.1639L14.3794 10.1681L13.0148 13.9287C12.9787 14.0282 12.9606 14.1313 12.959 14.2335L12.9587 14.238V16.9745C12.953 16.9785 12.9474 16.9825 12.9418 16.9866C12.578 17.0098 12.0004 17.0724 11.3659 17.181C10.5402 17.3225 9.59001 17.5465 8.87345 17.8778C8.45995 18.069 8.32504 18.559 8.5168 18.9425C8.7242 19.3573 9.21859 19.5 9.61985 19.3388C10.9254 18.8141 12.1481 18.6794 13.4932 18.6794H21.3678V20.5595H2.62232V15.3816H10.0953C10.6123 15.3816 11.0315 14.9625 11.0315 14.4454V11.3435C11.7721 9.91109 13.3571 8.69518 15.4717 8.412C16.3528 8.29406 17.4709 8.29346 18.5688 8.43896C19.6115 8.57713 20.6164 8.8445 21.3777 9.25337V9.66683ZM15.1768 3.7078C14.9667 3.63563 14.8046 3.46623 14.7417 3.25322C14.5884 2.73453 14.1034 2.37232 13.5621 2.37232C12.8838 2.37232 12.332 2.92412 12.332 3.60243C12.332 3.98141 12.0248 4.28859 11.6458 4.28859H10.6862C10.3072 4.28859 10 3.98141 10 3.60243C10 3.22346 10.3072 2.91627 10.6862 2.91627H11.0515C11.3533 1.81319 12.3645 1 13.5621 1C14.4337 1 15.2363 1.44407 15.7131 2.14027C15.9695 2.05716 16.2391 2.01449 16.5145 2.01449C17.9495 2.01449 19.117 3.18195 19.117 4.61692C19.117 4.99594 18.8097 5.30312 18.4308 5.30312C18.0519 5.30312 17.7446 4.99594 17.7446 4.61696C17.7446 3.93869 17.1928 3.38685 16.5145 3.38685C16.2563 3.38685 16.009 3.46627 15.7995 3.6165C15.6189 3.74601 15.3869 3.77989 15.1768 3.7078ZM15.9451 3.81969C15.6987 3.99643 15.3821 4.04257 15.0957 3.94426C14.809 3.8458 14.5877 3.61467 14.5019 3.32405C14.3801 2.91174 13.9928 2.62232 13.5621 2.62232C13.0219 2.62232 12.582 3.0622 12.582 3.60243C12.582 4.11949 12.1628 4.53859 11.6458 4.53859H10.6862C10.1692 4.53859 9.75 4.11949 9.75 3.60243C9.75 3.08538 10.1692 2.66627 10.6862 2.66627H10.8675C11.2556 1.55217 12.3164 0.75 13.5621 0.75C14.4557 0.75 15.2812 1.17485 15.8114 1.85182C16.0394 1.79396 16.2752 1.76449 16.5145 1.76449C18.0876 1.76449 19.367 3.04387 19.367 4.61692C19.367 5.13401 18.9478 5.55312 18.4308 5.55312C17.9138 5.55312 17.4946 5.13402 17.4946 4.61696C17.4946 4.07677 17.0547 3.63685 16.5145 3.63685C16.3085 3.63685 16.1122 3.69998 15.9451 3.81969ZM14.831 15.1842V16.8071H15.6819V15.1842H14.831ZM16.2353 11.1818L17.0989 13.5619H21.3251L20.4614 11.1818H16.2353ZM16.592 11.4318H20.2862L20.9684 13.3119H17.2742L16.592 11.4318ZM15.6391 13.5619L15.2564 12.5073L14.8737 13.5619H15.6391ZM15.2825 13.3119L15.2564 13.2401L15.2304 13.3119H15.2825ZM21.3678 15.1842H17.5542V16.8071H21.3678V15.1842ZM2.62232 13.5093H6.43595V11.8865H2.62232V13.5093ZM9.11637 10.2642L8.73371 9.20953L8.351 10.2642H9.11637ZM8.75971 10.0142L8.73369 9.94245L8.70767 10.0142H8.75971ZM9.15915 13.5093V11.8865H8.30827V13.5093H9.15915ZM3.70395 8.13404H7.39811L6.71588 10.0142H3.02176L3.70395 8.13404ZM6.89111 10.2642L7.75477 7.88404H3.52871L2.6651 10.2642H6.89111ZM14.581 14.9342H15.9319V17.0571H14.581V14.9342ZM21.6178 14.9342V17.0571H17.3042V14.9342H21.6178ZM2.37232 13.7593V11.6365H6.68595V13.7593H2.37232ZM8.05827 11.6365H9.40915V13.7593H8.05827V11.6365Z\" fill=\"#F9F9F9\"/> </svg>'},F8fJHm46v:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.75 3.5C19.5449 3.5 21 4.95507 21 6.75V17.25C21 19.0449 19.5449 20.5 17.75 20.5H6.25C4.45507 20.5 3 19.0449 3 17.25V6.75C3 4.95507 4.45507 3.5 6.25 3.5H17.75ZM18.3305 18.9014L12.5247 14.2148C12.2596 13.9553 11.8501 13.9316 11.5588 14.144L11.4752 14.2148L5.66845 18.9011C5.8504 18.9651 6.04613 19 6.25 19H17.75C17.9535 19 18.1489 18.9653 18.3305 18.9014ZM17.75 5H6.25C5.2835 5 4.5 5.7835 4.5 6.75V17.25C4.5 17.4584 4.53643 17.6583 4.60326 17.8437L10.4258 13.143C11.2589 12.3273 12.5675 12.2885 13.4458 13.0266L13.5742 13.1431L19.3964 17.8447C19.4634 17.659 19.5 17.4588 19.5 17.25V6.75C19.5 5.7835 18.7165 5 17.75 5ZM15.2521 7C16.4959 7 17.5042 8.00831 17.5042 9.25212C17.5042 10.4959 16.4959 11.5042 15.2521 11.5042C14.0083 11.5042 13 10.4959 13 9.25212C13 8.00831 14.0083 7 15.2521 7ZM15.2521 8.5C14.8367 8.5 14.5 8.83673 14.5 9.25212C14.5 9.6675 14.8367 10.0042 15.2521 10.0042C15.6675 10.0042 16.0042 9.6675 16.0042 9.25212C16.0042 8.83673 15.6675 8.5 15.2521 8.5Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.3584 14.4018L12.3498 14.3935C12.1752 14.2225 11.9062 14.205 11.7127 14.3412L11.6323 14.4094L6.25375 18.75H17.7449L12.3584 14.4018ZM18.3305 18.9014C18.2332 18.9356 18.1319 18.9615 18.0275 18.9781C17.9371 18.9925 17.8444 19 17.75 19H6.25C6.15516 19 6.06208 18.9924 5.97133 18.9779C5.867 18.9612 5.76575 18.9353 5.66845 18.9011L11.4752 14.2148L11.5588 14.144C11.8501 13.9316 12.2596 13.9553 12.5247 14.2148L18.3305 18.9014ZM13.6138 12.8415L13.7369 12.9531L19.2427 17.3992C19.2475 17.3502 19.25 17.3004 19.25 17.25V6.75C19.25 5.92157 18.5784 5.25 17.75 5.25H6.25C5.42157 5.25 4.75 5.92157 4.75 6.75V17.25C4.75 17.3 4.75244 17.3494 4.7572 17.3981L10.2597 12.9558C11.1858 12.0577 12.6336 12.0175 13.6066 12.8352L13.6138 12.8415ZM10.4258 13.143L4.60326 17.8437C4.57267 17.7588 4.54845 17.6709 4.53118 17.5806C4.51071 17.4735 4.5 17.363 4.5 17.25V6.75C4.5 5.7835 5.2835 5 6.25 5H17.75C18.7165 5 19.5 5.7835 19.5 6.75V17.25C19.5 17.3634 19.4892 17.4743 19.4686 17.5817C19.4513 17.672 19.427 17.7599 19.3964 17.8447L13.5742 13.1431L13.4458 13.0266C12.5675 12.2885 11.2589 12.3273 10.4258 13.143ZM17.75 3.25C19.683 3.25 21.25 4.817 21.25 6.75V17.25C21.25 19.183 19.683 20.75 17.75 20.75H6.25C4.317 20.75 2.75 19.183 2.75 17.25V6.75C2.75 4.817 4.317 3.25 6.25 3.25H17.75ZM15.2521 6.75C16.634 6.75 17.7542 7.87024 17.7542 9.25212C17.7542 10.634 16.634 11.7542 15.2521 11.7542C13.8702 11.7542 12.75 10.634 12.75 9.25212C12.75 7.87024 13.8702 6.75 15.2521 6.75ZM15.2521 8.75C14.9748 8.75 14.75 8.97479 14.75 9.25212C14.75 9.52944 14.9748 9.75423 15.2521 9.75423C15.5294 9.75423 15.7542 9.52944 15.7542 9.25212C15.7542 8.97479 15.5294 8.75 15.2521 8.75ZM21 6.75C21 4.95507 19.5449 3.5 17.75 3.5H6.25C4.45507 3.5 3 4.95507 3 6.75V17.25C3 19.0449 4.45507 20.5 6.25 20.5H17.75C19.5449 20.5 21 19.0449 21 17.25V6.75ZM17.5042 9.25212C17.5042 8.00831 16.4959 7 15.2521 7C14.0083 7 13 8.00831 13 9.25212C13 10.4959 14.0083 11.5042 15.2521 11.5042C16.4959 11.5042 17.5042 10.4959 17.5042 9.25212ZM14.5 9.25212C14.5 8.83673 14.8367 8.5 15.2521 8.5C15.6675 8.5 16.0042 8.83673 16.0042 9.25212C16.0042 9.6675 15.6675 10.0042 15.2521 10.0042C14.8367 10.0042 14.5 9.6675 14.5 9.25212Z\" fill=\"#F9F9F9\"/> </svg>'},fa_KyHs05:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0057 2.6691C10.2967 2.60339 10.6018 2.67104 10.8378 2.85358L16.4302 7.1798C16.5763 7.29282 16.6883 7.4441 16.7537 7.61686L18.2309 11.521C18.3355 11.7976 18.3124 12.1063 18.1677 12.3642C18.023 12.6221 17.7716 12.8027 17.481 12.8576L11.8886 13.9127C11.598 13.9676 11.2981 13.891 11.0694 13.7036L4.77225 8.54358C4.42095 8.25572 4.30776 7.76726 4.49664 7.35422L6.03531 3.98951C6.06948 3.90979 6.11462 3.83335 6.17089 3.76239C6.18848 3.74018 6.20698 3.71876 6.22632 3.69819C6.36016 3.55564 6.52709 3.46063 6.70495 3.4149C6.71479 3.41236 6.72469 3.40997 6.73464 3.40772L10.0057 2.6691ZM6.636 7.48508L7.31309 6.00444L10.9836 9.13967L10.8455 10.9345L6.636 7.48508ZM15.9383 11.1134L12.792 11.707L12.9586 9.54152L15.1757 9.09809L15.9383 11.1134ZM12.2998 7.63367L13.4507 7.40349L9.98668 4.72374L9.12175 4.91905L12.2998 7.63367Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.81185 10.8108C3.45903 10.5704 2.99442 10.5838 2.65728 10.8321C2.56999 10.8962 2.49213 10.9753 2.42794 11.0681C2.40207 11.1053 2.37905 11.1438 2.35887 11.1833L0.786573 14.1031C0.566529 14.5118 0.656564 15.0181 1.00399 15.3258L7.33504 20.9335C7.56647 21.1384 7.87969 21.2249 8.18349 21.1675L13.7759 20.1124C14.0665 20.0575 14.3179 19.8769 14.4626 19.619C14.6073 19.3611 14.6304 19.0524 14.5258 18.7758L13.0486 14.8717C12.8906 14.4543 12.4834 14.2042 12.0604 14.2267C11.9788 14.2224 11.8954 14.2282 11.8117 14.245L8.59477 14.8883L3.91592 10.8918C3.8834 10.8628 3.84869 10.8357 3.81185 10.8108ZM9.25357 16.7962L9.08699 18.9618L12.2332 18.3682L11.4706 16.3528L9.25357 16.7962ZM2.92307 14.3539L3.54267 13.2033L7.27857 16.3944L7.14769 18.0958L2.92307 14.3539Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.4953 12.7853C20.7325 12.8895 20.9293 13.0854 21.0282 13.3468L22.5054 17.251C22.6101 17.5275 22.587 17.8363 22.4423 18.0942C22.2976 18.3521 22.0461 18.5327 21.7556 18.5875L16.1631 19.6427C15.6204 19.7451 15.0975 19.3881 14.9951 18.8454C14.9798 18.7648 14.9748 18.6846 14.9789 18.6062C14.9768 18.564 14.9773 18.5212 14.9807 18.4779L15.2949 14.393C15.3137 13.9799 15.5889 13.6136 15.9909 13.4863C16.0319 13.4732 16.074 13.4628 16.1169 13.455L19.8881 12.7218C19.9828 12.7018 20.0781 12.6962 20.1714 12.7036C20.2846 12.7124 20.394 12.7406 20.4953 12.7853ZM17.2329 15.2755L17.0667 17.4369L20.2128 16.8433L19.456 14.8432L17.2329 15.2755Z\" fill=\"#F9F9F9\"/> </svg>'},Fbm2C3rnt:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3H7C5.34315 3 4 4.34315 4 6V18C4 19.6569 5.34314 21 7 21H17C18.6569 21 20 19.6569 20 18V6C20 4.34315 18.6569 3 17 3ZM6 6C6 5.44772 6.44772 5 7 5H17C17.5523 5 18 5.44772 18 6V15H6V6ZM6 17V18C6 18.5523 6.44772 19 7 19H17C17.5523 19 18 18.5523 18 18V17H6Z\" fill=\"#F9F9F9\"/> </svg>'},FGCFXkoXk:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.07615 3.61732C6.23093 3.24364 6.59557 3 7.00003 3H17.6667C18.219 3 18.6667 3.44772 18.6667 4V9.33333C18.6667 9.88562 18.219 10.3333 17.6667 10.3333H14.7476L18.3738 13.9596C18.6598 14.2456 18.7454 14.6757 18.5906 15.0494C18.4358 15.423 18.0712 15.6667 17.6667 15.6667H13.3334V20C13.3334 20.4045 13.0897 20.7691 12.716 20.9239C12.3424 21.0787 11.9123 20.9931 11.6263 20.7071L6.29306 15.3739C6.29301 15.3739 6.2931 15.374 6.29306 15.3739C6.12213 15.203 6.01267 14.9703 6.00106 14.7124M6.00003 14.6588V9.33333C6.00003 8.78105 6.44774 8.33333 7.00003 8.33333H9.91915L6.29292 4.70711C6.00692 4.42111 5.92137 3.99099 6.07615 3.61732M12.7476 8.33333H16.6667V5H9.41424L12.7476 8.33333ZM11.9191 10.3333H8.00003V13.6667H15.2525L11.9191 10.3333ZM11.3334 15.6667H9.41424L11.3334 17.5858V15.6667Z\" fill=\"#F9F9F9\"/> </svg>'},Fh3vPHl13:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.7358 2.90288C19.2612 2.42829 18.4925 2.42115 18.0099 2.89088C16.446 4.41325 14.2548 6.54737 12.2499 8.50234C10.2462 6.54864 8.0555 4.415 6.49003 2.89111C6.00797 2.42185 5.23899 2.42782 4.76393 2.90288C4.28802 3.37879 4.28343 4.14897 4.75364 4.63052L10.347 10.3587C8.78409 11.8843 7.56798 13.0742 7.23835 13.4038C6.87084 13.7713 6.60157 13.8774 6.17194 14.0466C6.12306 14.0659 6.07211 14.0859 6.0187 14.1073C5.44334 14.3374 4.78276 14.6555 3.89418 15.5441C3.36381 16.0745 2.91605 16.4991 2.5724 16.816C1.83482 17.4961 1.78168 18.6391 2.51061 19.368L3.86925 20.7266C4.53685 21.3942 5.60406 21.4405 6.32698 20.8333L8.44261 19.0561C8.91484 18.6595 9.18751 18.0743 9.18751 17.4576V15.7918C9.18751 15.5685 9.27484 15.3541 9.43084 15.1943L12.2499 12.3074L15.0689 15.1943C15.2249 15.3541 15.3122 15.5685 15.3122 15.7918V17.4576C15.3122 18.0743 15.5849 18.6595 16.0571 19.0561L18.1728 20.8333C18.8957 21.4405 19.9629 21.3942 20.6305 20.7266L21.9891 19.368C22.718 18.6391 22.6649 17.4961 21.9273 16.816C21.5837 16.4991 21.1359 16.0745 20.6056 15.5441C19.717 14.6555 19.0564 14.3374 18.481 14.1073C18.4276 14.0859 18.3767 14.0659 18.3278 14.0466C17.8982 13.8774 17.6289 13.7713 17.2614 13.4038C16.9299 13.0724 15.7123 11.881 14.1527 10.3587L19.7461 4.63052C20.2163 4.14898 20.2117 3.37879 19.7358 2.90288ZM6.72158 15.4427C7.0685 15.3075 7.4632 15.1536 7.89807 14.8184C7.76057 15.1214 7.68751 15.4529 7.68751 15.7918V17.4576C7.68751 17.6312 7.61075 17.7959 7.47783 17.9076L5.36219 19.6847C5.23504 19.7915 5.04733 19.7834 4.92991 19.666L3.57127 18.3073C3.50983 18.2459 3.48909 18.179 3.4909 18.1184C3.49275 18.0563 3.5191 17.9834 3.58926 17.9187C3.94655 17.5892 4.40901 17.1506 4.95484 16.6048C5.67145 15.8882 6.14789 15.6712 6.57578 15.5C6.62339 15.481 6.672 15.462 6.72158 15.4427ZM17.7782 15.4427C17.4312 15.3075 17.0365 15.1536 16.6017 14.8184C16.7392 15.1214 16.8122 15.4529 16.8122 15.7918V17.4576C16.8122 17.6312 16.889 17.7959 17.0219 17.9076L19.1375 19.6847C19.2647 19.7915 19.4524 19.7834 19.5698 19.666L20.9285 18.3073C20.9899 18.2459 21.0106 18.179 21.0088 18.1184C21.007 18.0563 20.9806 17.9834 20.9105 17.9187C20.5532 17.5892 20.0907 17.1506 19.5449 16.6048C18.8283 15.8882 18.3518 15.6712 17.9239 15.5C17.8763 15.481 17.8277 15.462 17.7782 15.4427Z\" fill=\"#F9F9F9\"/> </svg>'},gg7pMFcSi:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M4.78882 12.7554C3.72761 12.6941 2.77939 12.6973 1.96696 12.7299C1.59799 12.7447 1.31836 13.0633 1.3418 13.4318C1.36525 13.8004 1.68193 14.0794 2.05098 14.0646C5.73198 13.9176 12.2874 14.3883 19.5788 19.1512C19.8876 19.353 20.3044 19.2756 20.5121 18.9707C20.7199 18.6655 20.6409 18.2489 20.3319 18.0468C14.337 14.1259 8.76651 12.9854 4.78882 12.7554Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.95476 12.4261C2.7759 12.3931 3.73412 12.3899 4.80637 12.4519C8.82718 12.6843 14.4513 13.8374 20.4984 17.7923C20.9527 18.0895 21.065 18.6988 20.7634 19.1418C20.4599 19.5876 19.856 19.6955 19.4125 19.4058C12.1882 14.6867 5.70027 14.2232 2.06311 14.3685C1.53309 14.3896 1.07254 13.9885 1.03836 13.4511C1.00439 12.917 1.41048 12.448 1.95476 12.4261ZM1.96696 12.7299C2.77939 12.6973 3.72761 12.6941 4.78882 12.7554C8.76651 12.9854 14.337 14.1259 20.3319 18.0468C20.6409 18.2489 20.7199 18.6655 20.5121 18.9707C20.3044 19.2756 19.8876 19.353 19.5788 19.1512C12.2874 14.3883 5.73198 13.9176 2.05098 14.0646C1.68193 14.0794 1.36525 13.8004 1.3418 13.4318C1.31836 13.0633 1.59799 12.7447 1.96696 12.7299Z\" fill=\"#F9F9F9\"/> <path d=\"M22.6689 10.4571C22.6592 10.0878 22.3517 9.79523 21.9828 9.8152C21.3928 9.84712 20.8302 9.89963 20.294 9.96983C16.1204 10.516 13.5552 12.1511 12.1216 13.4864C11.8516 13.7378 11.8669 14.1615 12.136 14.414C12.405 14.6664 12.8261 14.6513 13.0978 14.4018C14.3589 13.2439 16.6291 11.7977 20.4677 11.2954C20.9585 11.2311 21.4749 11.1828 22.0184 11.1528C22.3871 11.1324 22.6786 10.8263 22.6689 10.4571Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5072 11.5968C16.7326 12.0908 14.5199 13.5088 13.3035 14.6258C12.9249 14.9733 12.323 15.0064 11.9279 14.6357C11.5409 14.2726 11.5054 13.6448 11.9144 13.2639C13.392 11.8876 16.0151 10.2231 20.2546 9.66834C20.7986 9.59712 21.3688 9.54392 21.9663 9.51158C22.5117 9.48207 22.9587 9.91414 22.9728 10.4491C22.9871 10.9884 22.5625 11.4273 22.0351 11.4564C21.499 11.486 20.9902 11.5336 20.5072 11.5968ZM21.9828 9.8152C22.3517 9.79523 22.6592 10.0878 22.6689 10.4571C22.6786 10.8263 22.3871 11.1324 22.0184 11.1528C21.4749 11.1828 20.9585 11.2311 20.4677 11.2954C16.6291 11.7977 14.3589 13.2439 13.0978 14.4018C12.8261 14.6513 12.405 14.6664 12.136 14.414C11.8669 14.1615 11.8516 13.7378 12.1216 13.4864C13.5552 12.1511 16.1204 10.516 20.294 9.96983C20.8302 9.89963 21.3928 9.84712 21.9828 9.8152Z\" fill=\"#F9F9F9\"/> <path d=\"M22.6959 15.3255C22.6959 14.9562 22.3957 14.6545 22.0271 14.6764C20.0303 14.795 18.5811 15.433 17.6146 16.0839C17.3086 16.29 17.2689 16.7134 17.5031 16.9985C17.7377 17.2839 18.1577 17.3217 18.4675 17.1204C19.2417 16.6177 20.3902 16.1233 22.0278 16.0157C22.3962 15.9914 22.6959 15.6947 22.6959 15.3255Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4447 15.8317C18.4529 15.1527 19.954 14.4949 22.0091 14.3729C22.5641 14.34 23 14.7931 23 15.3255C23 15.8676 22.5631 16.2852 22.0477 16.3191C20.4647 16.4231 19.366 16.8995 18.6331 17.3754C18.2114 17.6493 17.6141 17.6125 17.2682 17.1915C16.9328 16.7833 16.9739 16.1488 17.4447 15.8317ZM22.0271 14.6764C22.3957 14.6545 22.6959 14.9562 22.6959 15.3255C22.6959 15.6947 22.3962 15.9914 22.0278 16.0157C20.3902 16.1233 19.2417 16.6177 18.4675 17.1204C18.1577 17.3217 17.7377 17.2839 17.5031 16.9985C17.2689 16.7134 17.3086 16.29 17.6146 16.0839C18.5811 15.433 20.0303 14.795 22.0271 14.6764Z\" fill=\"#F9F9F9\"/> <path d=\"M15.3118 5.01119C14.3348 5.01119 13.6448 5.43966 13.2902 5.89139C13.1378 6.08545 12.9632 6.25967 12.7165 6.25967H11.8954C11.5262 6.25967 11.2268 6.55903 11.2268 6.9283C11.2268 7.29758 11.5262 7.59694 11.8954 7.59694H13.5298C13.862 7.59694 14.1434 7.35231 14.1896 7.02339C14.1898 7.02181 14.19 7.02033 14.1903 7.01876C14.1933 7.00064 14.2179 6.87581 14.3428 6.71674C14.4779 6.54454 14.6807 6.34847 15.3118 6.34847C15.9428 6.34847 16.1456 6.54454 16.2808 6.71674C16.4056 6.8758 16.4302 7.00061 16.4332 7.01876C16.4335 7.02033 16.4337 7.02182 16.4339 7.02339C16.4801 7.35231 16.7616 7.59694 17.0937 7.59694H18.3833C18.7526 7.59694 19.052 7.29758 19.052 6.9283C19.052 6.55903 18.7526 6.25967 18.3833 6.25967H17.9057C17.659 6.25967 17.4844 6.08545 17.332 5.89139C16.9774 5.43966 16.2887 5.01119 15.3118 5.01119Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.051 5.70364C13.4641 5.17743 14.2428 4.70714 15.3118 4.70714C16.3809 4.70714 17.1582 5.17757 17.5712 5.70364L17.332 5.89139C16.9774 5.43966 16.2887 5.01119 15.3118 5.01119C14.3348 5.01119 13.6448 5.43966 13.2902 5.89139C13.1378 6.08545 12.9632 6.25967 12.7165 6.25967H11.8954C11.5262 6.25967 11.2268 6.55903 11.2268 6.9283C11.2268 7.29758 11.5262 7.59694 11.8954 7.59694H13.5298C13.862 7.59694 14.1434 7.35231 14.1896 7.02339L14.1903 7.01876C14.1933 7.00064 14.2179 6.87581 14.3428 6.71674C14.4779 6.54454 14.6807 6.34847 15.3118 6.34847C15.9428 6.34847 16.1456 6.54454 16.2808 6.71674C16.4056 6.8758 16.4302 7.00061 16.4332 7.01876L16.4339 7.02339C16.4801 7.35231 16.7616 7.59694 17.0937 7.59694H18.3833C18.7526 7.59694 19.052 7.29758 19.052 6.9283C19.052 6.55903 18.7526 6.25967 18.3833 6.25967H17.9057C17.659 6.25967 17.4844 6.08545 17.332 5.89139L17.5712 5.70364C17.723 5.89702 17.8165 5.95561 17.9057 5.95561H18.3833C18.9205 5.95561 19.356 6.3911 19.356 6.9283C19.356 7.46551 18.9205 7.901 18.3833 7.901H17.0937C16.6116 7.901 16.2028 7.54707 16.1335 7.07044C16.1332 7.06887 16.133 7.0673 16.1328 7.06572C16.1325 7.06397 16.1328 7.06566 16.1328 7.06572L16.1333 7.06873C16.1337 7.07145 16.134 7.07275 16.134 7.07275C16.134 7.07275 16.1339 7.07196 16.1335 7.07044C16.1301 7.05761 16.1107 6.99251 16.0416 6.9045C15.9885 6.8368 15.9381 6.78429 15.8503 6.74197C15.757 6.69706 15.5972 6.65252 15.3118 6.65252C15.0263 6.65252 14.8665 6.69706 14.7732 6.74197C14.6854 6.7843 14.6351 6.8368 14.5819 6.90449C14.5128 6.99251 14.4934 7.05761 14.49 7.07044C14.4207 7.54708 14.0119 7.901 13.5298 7.901H11.8954C11.3582 7.901 10.9227 7.46551 10.9227 6.9283C10.9227 6.3911 11.3582 5.95561 11.8954 5.95561H12.7165C12.8057 5.95561 12.8992 5.89702 13.051 5.70364ZM14.4907 7.06572C14.4909 7.06427 14.4909 7.06444 14.4909 7.06458L14.4907 7.06572Z\" fill=\"#F9F9F9\"/> <path d=\"M2.65072 17.5612C2.39013 17.5614 2.16157 17.5654 1.97018 17.571C1.59956 17.5817 1.32296 17.9009 1.34938 18.2707C1.37578 18.6403 1.69085 18.9225 2.0613 18.9182C3.95052 18.896 9.45973 19.0657 13.2187 21.5839C13.5255 21.7894 13.9444 21.7368 14.1698 21.4443C14.3952 21.1519 14.3416 20.7305 14.0371 20.5218C10.2076 17.8971 5.05965 17.5599 2.65072 17.5612Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.96138 17.267C2.15546 17.2614 2.38692 17.2573 2.65056 17.2572C5.06985 17.2559 10.2987 17.591 14.209 20.271C14.6666 20.5846 14.7357 21.2081 14.4107 21.6299C14.0799 22.0591 13.4787 22.124 13.0494 21.8365C11.2203 20.6111 8.95071 19.9491 6.88784 19.5982C4.82855 19.2478 2.99851 19.2113 2.06487 19.2222C1.5381 19.2284 1.08428 18.8269 1.0461 18.2924C1.00791 17.7578 1.41016 17.283 1.96138 17.267ZM1.97018 17.571C2.16157 17.5654 2.39013 17.5614 2.65072 17.5612C5.05965 17.5599 10.2076 17.8971 14.0371 20.5218C14.3416 20.7305 14.3952 21.1519 14.1698 21.4443C13.9444 21.7368 13.5255 21.7894 13.2187 21.5839C9.45973 19.0657 3.95052 18.896 2.0613 18.9182C1.69085 18.9225 1.37578 18.6403 1.34938 18.2707C1.32296 17.9009 1.59956 17.5817 1.97018 17.571Z\" fill=\"#F9F9F9\"/> <path d=\"M5.62578 8.54766C5.2565 8.54766 4.95714 8.84702 4.95714 9.2163V12.8155C4.95714 13.1847 5.2565 13.4841 5.62578 13.4841C5.99506 13.4841 6.29442 13.1847 6.29442 12.8155V9.2163C6.29442 8.84702 5.99506 8.54766 5.62578 8.54766Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.65309 12.8155V9.2163C4.65309 8.6791 5.08858 8.24361 5.62578 8.24361C6.16299 8.24361 6.59848 8.6791 6.59848 9.2163V12.8155C6.59848 13.3527 6.16299 13.7882 5.62578 13.7882C5.08858 13.7882 4.65309 13.3527 4.65309 12.8155ZM4.95714 9.2163C4.95714 8.84702 5.2565 8.54766 5.62578 8.54766C5.99506 8.54766 6.29442 8.84702 6.29442 9.2163V12.8155C6.29442 13.1847 5.99506 13.4841 5.62578 13.4841C5.2565 13.4841 4.95714 13.1847 4.95714 12.8155V9.2163Z\" fill=\"#F9F9F9\"/> <path d=\"M5.62607 4.69907C3.65471 4.69907 2.05042 6.32777 2.05042 8.30998C2.05042 10.2922 3.65471 11.9222 5.62607 11.9222C7.59744 11.9222 9.20172 10.2922 9.20172 8.30998C9.20172 6.32777 7.59744 4.69907 5.62607 4.69907ZM5.62607 6.03635C6.86588 6.03635 7.86445 7.04175 7.86445 8.30998C7.86445 9.57821 6.86588 10.5849 5.62607 10.5849C4.38626 10.5849 3.3877 9.57821 3.3877 8.30998C3.3877 7.04175 4.38626 6.03635 5.62607 6.03635Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.74637 8.30998C1.74637 6.16314 3.48351 4.39502 5.62607 4.39502C7.76864 4.39502 9.50578 6.16314 9.50578 8.30998C9.50578 10.4567 7.76878 12.2263 5.62607 12.2263C3.48337 12.2263 1.74637 10.4567 1.74637 8.30998ZM7.56039 8.30998C7.56039 7.20596 6.69427 6.34041 5.62607 6.34041C4.55788 6.34041 3.69176 7.20596 3.69176 8.30998C3.69176 9.41423 4.55811 10.2809 5.62607 10.2809C6.69404 10.2809 7.56039 9.41423 7.56039 8.30998ZM2.05042 8.30998C2.05042 6.32777 3.65471 4.69907 5.62607 4.69907C7.59744 4.69907 9.20172 6.32777 9.20172 8.30998C9.20172 10.2922 7.59744 11.9222 5.62607 11.9222C3.65471 11.9222 2.05042 10.2922 2.05042 8.30998ZM7.86445 8.30998C7.86445 7.04175 6.86588 6.03635 5.62607 6.03635C4.38626 6.03635 3.3877 7.04175 3.3877 8.30998C3.3877 9.57821 4.38626 10.5849 5.62607 10.5849C6.86588 10.5849 7.86445 9.57821 7.86445 8.30998Z\" fill=\"#F9F9F9\"/> </svg>'},gqDwCengR:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3.5 3.4C3.5 2.6268 4.1268 2 4.9 2H21.9C22.3971 2 22.8 2.40294 22.8 2.9C22.8 3.39706 22.3971 3.8 21.9 3.8H5.3V10H8V8.4C8 7.6268 8.6268 7 9.4 7H16V6.4C16 5.6268 16.6268 5 17.4 5H21.9C22.3971 5 22.8 5.40294 22.8 5.9C22.8 6.39706 22.3971 6.8 21.9 6.8H17.8V9H21.9C22.3971 9 22.8 9.40294 22.8 9.9C22.8 10.3971 22.3971 10.8 21.9 10.8H17.4C16.6268 10.8 16 10.1732 16 9.4V8.8H9.8V15H13.9C13.9338 15 13.9672 15.0019 14 15.0055V13.4C14 12.6268 14.6268 12 15.4 12H21.9C22.3349 12 22.6978 12.3085 22.7817 12.7186C22.7937 12.7772 22.8 12.8379 22.8 12.9C22.8 12.931 22.7984 12.9618 22.7954 12.992C22.7889 13.0554 22.7759 13.1168 22.757 13.1755C22.6407 13.5378 22.301 13.8 21.9 13.8H18.8V15H21.9C22.3971 15 22.8 15.403 22.8 15.9C22.8 16.3971 22.3971 16.8 21.9 16.8H18.4C17.6268 16.8 17 16.1732 17 15.4V13.8H15.8V18H21.9C22.3971 18 22.8 18.4029 22.8 18.9C22.8 19.3971 22.3971 19.8 21.9 19.8H18.8V21H21.9C22.3971 21 22.8 21.4029 22.8 21.9C22.8 22.3971 22.3971 22.8 21.9 22.8H18.4C17.6268 22.8 17 22.1732 17 21.4V19.8H15.4C14.6268 19.8 14 19.1732 14 18.4V16.7945C13.9672 16.7981 13.9338 16.8 13.9 16.8H9.4C8.6268 16.8 8 16.1732 8 15.4V11.8H4.9C4.1268 11.8 3.5 11.1732 3.5 10.4V7.8H1.9C1.40294 7.8 1 7.39706 1 6.9C1 6.40294 1.40294 6 1.9 6H3.5V3.4Z\" fill=\"#F9F9F9\"/> </svg>'},HkGsc7YTU:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M9.3379 15.5702C9.86295 15.5702 10.2886 15.1445 10.2886 14.6195C10.2886 14.0944 9.86295 13.6688 9.3379 13.6688V15.5702ZM20.0067 8.59848C20.0067 9.12353 20.4323 9.54916 20.9574 9.54916C21.4824 9.54916 21.9081 9.12353 21.9081 8.59848H20.0067ZM7.22527 6.27458C6.70022 6.27458 6.27458 6.70022 6.27458 7.22527C6.27458 7.75031 6.70022 8.17595 7.22527 8.17595V6.27458ZM10.3942 8.17595C10.9193 8.17595 11.3449 7.75031 11.3449 7.22527C11.3449 6.70022 10.9193 6.27458 10.3942 6.27458V8.17595ZM7.22527 9.44353C6.70022 9.44353 6.27458 9.86917 6.27458 10.3942C6.27458 10.9193 6.70022 11.3449 7.22527 11.3449V9.44353ZM8.28158 11.3449C8.80663 11.3449 9.23227 10.9193 9.23227 10.3942C9.23227 9.86917 8.80663 9.44353 8.28158 9.44353V11.3449ZM12.6175 19.8675L12.9423 20.761L12.9423 20.7609L12.6175 19.8675ZM9.3379 13.6688H4.26758V15.5702H9.3379V13.6688ZM4.26758 13.6688C4.0926 13.6688 3.95068 13.5269 3.95068 13.3519H2.04932C2.04932 14.577 3.04248 15.5702 4.26758 15.5702V13.6688ZM3.95068 13.3519V4.26758H2.04932V13.3519H3.95068ZM3.95068 4.26758C3.95068 4.0926 4.0926 3.95068 4.26758 3.95068V2.04932C3.04248 2.04932 2.04932 3.04252 2.04932 4.26758H3.95068ZM4.26758 3.95068H19.6898V2.04932H4.26758V3.95068ZM19.6898 3.95068C19.8648 3.95068 20.0067 4.09261 20.0067 4.26758H21.9081C21.9081 3.04251 20.9149 2.04932 19.6898 2.04932V3.95068ZM20.0067 4.26758V8.59848H21.9081V4.26758H20.0067ZM7.22527 8.17595H10.3942V6.27458H7.22527V8.17595ZM7.22527 11.3449H8.28158V9.44353H7.22527V11.3449ZM11.4436 15.3534C11.2551 15.7578 9.76958 18.9432 9.58102 19.3476L11.3042 20.1511C11.4928 19.7468 12.9783 16.5614 13.1668 16.157L11.4436 15.3534ZM9.58102 19.3476C9.03448 20.5197 10.178 21.7671 11.3929 21.325L10.7427 19.5383C11.1193 19.4012 11.4737 19.7878 11.3042 20.1511L9.58102 19.3476ZM11.3929 21.325C11.8128 21.1722 12.7105 20.8452 12.9423 20.761L12.2927 18.974C12.0607 19.0583 11.161 19.386 10.7427 19.5383L11.3929 21.325ZM12.9423 20.7609C12.681 20.8559 12.3921 20.7213 12.2968 20.4598L14.0834 19.8092C13.8194 19.0842 13.0177 18.7104 12.2927 18.974L12.9423 20.7609ZM12.2968 20.4598C12.3806 20.6899 12.7084 21.5912 12.8609 22.0097L14.6474 21.3588C14.4943 20.9387 14.1685 20.0427 14.0834 19.8092L12.2968 20.4598ZM12.8609 22.0097C13.3032 23.2239 14.9936 23.299 15.5402 22.1262L13.8168 21.323C13.9865 20.9589 14.5105 20.9831 14.6474 21.3588L12.8609 22.0097ZM15.5402 22.1262C15.7286 21.7218 17.1914 18.5843 17.38 18.1803L15.657 17.3762C15.4682 17.7807 14.0052 20.9186 13.8168 21.323L15.5402 22.1262ZM19.2383 16.1509C19.4959 16.7137 20.8996 19.7455 21.0887 20.1511L22.8119 19.3476C22.624 18.9445 21.2223 15.917 20.9672 15.3596L19.2383 16.1509ZM21.0887 20.1511C20.9401 19.8325 21.2426 19.3845 21.6653 19.5383L21.0151 21.325C22.2761 21.7839 23.3376 20.475 22.8119 19.3476L21.0887 20.1511ZM21.6653 19.5383C21.2469 19.386 20.3472 19.0583 20.1153 18.974L19.4656 20.7609C19.6974 20.8452 20.5952 21.1722 21.0151 21.325L21.6653 19.5383ZM20.1153 18.974C19.3902 18.7104 18.5886 19.0842 18.3245 19.8092L20.1111 20.4598C20.0159 20.7213 19.727 20.8559 19.4656 20.7609L20.1153 18.974ZM18.3245 19.8092C18.2395 20.0426 17.9137 20.9387 17.7606 21.3588L19.5471 22.0097C19.6996 21.5912 20.0273 20.6899 20.1111 20.4598L18.3245 19.8092ZM17.7606 21.3588C17.8975 20.9831 18.4215 20.9589 18.5912 21.323L16.8678 22.1262C17.4144 23.299 19.1048 23.2239 19.5471 22.0097L17.7606 21.3588ZM18.5912 21.323C18.4027 20.9185 17.2541 18.4551 17.0655 18.0508L15.3424 18.8545C15.5309 19.2587 16.6794 21.7219 16.8678 22.1262L18.5912 21.323ZM16.204 18.7391C19.3543 18.7391 21.9081 16.1853 21.9081 13.035H20.0067C20.0067 15.1352 18.3042 16.8377 16.204 16.8377V18.7391ZM21.9081 13.035C21.9081 9.88472 19.3543 7.3309 16.204 7.3309V9.23227C18.3042 9.23227 20.0067 10.9348 20.0067 13.035H21.9081ZM16.204 7.3309C13.0536 7.3309 10.4998 9.88472 10.4998 13.035H12.4012C12.4012 10.9348 14.1037 9.23227 16.204 9.23227V7.3309ZM10.4998 13.035C10.4998 16.1853 13.0536 18.7391 16.204 18.7391V16.8377C14.1037 16.8377 12.4012 15.1352 12.4012 13.035H10.4998Z\" fill=\"#F9F9F9\"/> </svg>'},hpa6rAjQu:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19 4H5C3.34315 4 2 5.34315 2 7V15C2 16.6569 3.34315 18 5 18H9C8.44772 18 8 18.4477 8 19C8 19.5523 8.44772 20 9 20H15C15.5523 20 16 19.5523 16 19C16 18.4477 15.5523 18 15 18H19C20.6569 18 22 16.6569 22 15V7C22 5.34315 20.6569 4 19 4ZM4 7C4 6.44772 4.44772 6 5 6H19C19.5523 6 20 6.44772 20 7V15C20 15.5523 19.5523 16 19 16H5C4.44772 16 4 15.5523 4 15V7Z\" fill=\"#F9F9F9\"/> </svg>'},Ib8nbMtS1:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.7997 11.1667V12.8934C13.7997 13.3898 14.2036 13.7998 14.7004 13.7998C15.1971 13.7998 15.5987 13.3898 15.5987 12.8934V11.1667C16.5253 10.843 18.1602 10.1091 19.3135 8.68457C20.5831 7.12253 20.9125 5.15777 20.9917 4.30382C21.0681 3.48053 20.2936 2.8077 19.484 3.05084C18.6612 3.30985 16.7888 4.02262 15.5059 5.61983C15.1776 6.00834 14.9141 6.44019 14.7004 6.87186C14.4865 6.44019 14.2209 6.00834 13.8948 5.61983C12.6119 4.02262 10.7373 3.30985 9.91228 3.05084C9.11967 2.81342 8.33355 3.43969 8.40482 4.25987C8.40482 5.77969 9.14478 7.52774 10.0851 8.68457C11.2383 10.1091 12.8754 10.843 13.7997 11.1667ZM10.3615 5.14515C11.0418 5.46891 11.8646 5.96501 12.4952 6.74202C13.1303 7.51904 13.4542 8.44698 13.6226 9.15925C12.9445 8.85707 12.1195 8.3394 11.4845 7.56237C10.8539 6.78536 10.5299 5.879 10.3615 5.14515ZM19.037 5.14515C18.8707 5.879 18.5468 6.78536 17.9161 7.56237C17.2811 8.3394 16.4561 8.85707 15.7758 9.15925C15.9443 8.44698 16.2704 7.51904 16.9032 6.74202C17.536 5.96501 18.3567 5.46891 19.037 5.14515Z\" fill=\"#F9F9F9\"/> <path d=\"M20.9177 14.8644C20.6725 14.1271 19.9391 13.6946 19.1533 13.8397L14.0087 14.9734L14.3964 16.7312L17.7265 15.9973L12.6689 18.7035C11.4705 19.2975 10.5763 19.353 9.43682 18.9346C9.30317 18.8722 6.14482 17.4009 3.90017 17.4009V19.2009C5.42851 19.2009 7.8626 20.1853 8.74155 20.5931C9.47021 20.8629 10.1495 20.9999 10.8219 20.9999C11.6937 20.9999 12.5542 20.7697 13.4937 20.303L20.1408 16.7462C20.8382 16.399 21.1651 15.608 20.9177 14.8644Z\" fill=\"#F9F9F9\"/> <path d=\"M14.0309 14.1755C12.7592 13.5937 10.906 12.9003 9.29943 12.9003C8.28557 12.9003 7.5043 13.1227 6.7484 13.3379C5.94949 13.5647 5.1234 13.8003 3.89998 13.8003C3.40302 13.8003 3 14.2028 3 14.7002C3 15.1977 3.40302 15.6002 3.89998 15.6002C5.37431 15.6002 6.36608 15.3181 7.24107 15.0694C7.93627 14.8708 8.53694 14.7002 9.29943 14.7002C10.1867 14.7002 11.3991 15.0105 12.7864 15.6002H10.1999C9.70289 15.6002 9.29987 16.0028 9.29987 16.5002C9.29987 16.9976 9.70289 17.4002 10.1999 17.4002H13.3063C14.1931 17.4002 14.9023 16.8808 15.0706 16.1074C15.2407 15.3278 14.8132 14.5333 14.0309 14.1755Z\" fill=\"#F9F9F9\"/> <path d=\"M3.89998 12.9003C3.40302 12.9003 3 13.3028 3 13.8003V19.2001C3 19.6976 3.40302 20.1001 3.89998 20.1001C4.39694 20.1001 4.79996 19.6976 4.79996 19.2001V13.8003C4.79996 13.3028 4.39694 12.9003 3.89998 12.9003Z\" fill=\"#F9F9F9\"/> </svg>'},iW0dgcEKM:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19.9254 6.94875C19.9749 7.11518 20 7.28787 20 7.46149V16.6418C20 17.6359 19.1941 18.4418 18.2 18.4418C18.0263 18.4418 17.8536 18.4167 17.6871 18.3672L13.276 17.0555C12.7502 18.1315 11.6467 18.8504 10.4 18.8504C8.68624 18.8504 7.28714 17.5032 7.20392 15.8101L7.2 15.6504L7.1992 15.2499L5.28713 14.6813C4.52357 14.4543 4 13.7525 4 12.9559V11.1463C4 10.3497 4.52364 9.64783 5.28726 9.42091L17.6873 5.73607C18.6402 5.45289 19.6422 5.99583 19.9254 6.94875ZM8.3992 15.6067L8.4 15.6504C8.4 16.755 9.29543 17.6504 10.4 17.6504C11.1082 17.6504 11.7426 17.2791 12.099 16.7068L8.3992 15.6067ZM18.0291 6.88635L5.62909 10.5712C5.37454 10.6468 5.2 10.8808 5.2 11.1463V12.9559C5.2 13.2214 5.37452 13.4554 5.62904 13.531L18.029 17.217C18.0846 17.2335 18.1421 17.2418 18.2 17.2418C18.5314 17.2418 18.8 16.9732 18.8 16.6418V7.46149C18.8 7.40362 18.7916 7.34605 18.7751 7.29058C18.6807 6.97294 18.3467 6.79195 18.0291 6.88635Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.5446 18.8465L13.5152 17.6482C12.8511 18.6825 11.6923 19.3504 10.4 19.3504C8.41831 19.3504 6.80076 17.7927 6.70452 15.8346L6.70392 15.8224L6.69987 15.6514L6.69994 15.623L5.14467 15.1606C5.14465 15.1606 5.14469 15.1606 5.14467 15.1606C4.16902 14.8706 3.5 13.9737 3.5 12.9559V11.1463C3.5 10.1284 4.1691 9.23158 5.14484 8.94163L17.5449 5.25678C18.7624 4.89494 20.0429 5.5887 20.4047 6.80632C20.4679 7.01894 20.5 7.23964 20.5 7.46149V16.6418C20.5 17.9121 19.4702 18.9418 18.2 18.9418C17.9781 18.9418 17.7573 18.9096 17.5446 18.8465ZM5.28713 14.6813L7.1992 15.2499L7.2 15.6504L7.20392 15.8101C7.28714 17.5032 8.68624 18.8504 10.4 18.8504C11.6467 18.8504 12.7502 18.1315 13.276 17.0555L17.6871 18.3672C17.8536 18.4167 18.0263 18.4418 18.2 18.4418C19.1941 18.4418 20 17.6359 20 16.6418V7.46149C20 7.28787 19.9749 7.11518 19.9254 6.94875C19.6422 5.99583 18.6402 5.45289 17.6873 5.73607L5.28726 9.42091C4.52364 9.64783 4 10.3497 4 11.1463V12.9559C4 13.7525 4.52357 14.4543 5.28713 14.6813ZM8.46213 16.147C8.68297 17.0113 9.46686 17.6504 10.4 17.6504C10.9159 17.6504 11.3927 17.4533 11.7514 17.1251C11.885 17.0027 12.0023 16.8622 12.099 16.7068L8.3992 15.6067L8.4 15.6504C8.4 15.8218 8.42157 15.9882 8.46213 16.147ZM9.05974 16.3247C9.30663 16.8145 9.81408 17.1504 10.4 17.1504C10.6726 17.1504 10.9308 17.077 11.1538 16.9474L9.05974 16.3247ZM18.1715 7.36563L5.77152 11.0505C5.7292 11.0631 5.7 11.1021 5.7 11.1463V12.9559C5.7 13.0002 5.72914 13.0391 5.77141 13.0517L18.1713 16.7376C18.1804 16.7404 18.19 16.7418 18.2 16.7418C18.2553 16.7418 18.3 16.697 18.3 16.6418V7.46149C18.3 7.45201 18.2986 7.44241 18.2958 7.43302C18.2801 7.38002 18.2244 7.34993 18.1715 7.36563ZM18.7751 7.29058C18.7916 7.34605 18.8 7.40362 18.8 7.46149V16.6418C18.8 16.9732 18.5314 17.2418 18.2 17.2418C18.1421 17.2418 18.0846 17.2335 18.029 17.217L5.62904 13.531C5.37452 13.4554 5.2 13.2214 5.2 12.9559V11.1463C5.2 10.8808 5.37454 10.6468 5.62909 10.5712L18.0291 6.88635C18.3467 6.79195 18.6807 6.97294 18.7751 7.29058Z\" fill=\"#F9F9F9\"/> </svg>'},Iyb7v2YS9:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.0657 8.94001L12.3514 6.58287C12.1304 6.47238 11.8696 6.47238 11.6486 6.58287L6.93429 8.94001C6.66804 9.07314 6.5 9.34514 6.5 9.64286V14.3571C6.5 14.6549 6.66804 14.9269 6.93429 15.06L11.6486 17.4171C11.7591 17.4724 11.8795 17.5 12 17.5C12.1205 17.5 12.2409 17.4724 12.3514 17.4171L17.0657 15.06C17.332 14.9269 17.5 14.6549 17.5 14.3571V9.64286C17.5 9.34514 17.332 9.07314 17.0657 8.94001ZM12 8.16427L14.9572 9.64286L12 11.1214L9.04283 9.64286L12 8.16427ZM8.07143 10.9143L11.2143 12.4857V15.4429L8.07143 13.8714V10.9143ZM12.7857 15.4429V12.4857L15.9286 10.9143V13.8714L12.7857 15.4429Z\" fill=\"#F9F9F9\"/> <path d=\"M22.9395 20.3428C22.8996 20.2464 22.842 20.1594 22.7693 20.0868L21.1984 18.5159C20.8915 18.209 20.3943 18.209 20.0873 18.5159C19.7804 18.8228 19.7804 19.32 20.0873 19.627L20.3175 19.8571H17.2006C19.6646 18.2208 21.3099 15.458 21.4129 12.3097L21.6588 12.5555C21.8122 12.709 22.0133 12.7857 22.2143 12.7857C22.4153 12.7857 22.6163 12.709 22.7698 12.5555C23.0767 12.2486 23.0767 11.7514 22.7698 11.4445L21.1984 9.87305C21.191 9.86566 21.181 9.86346 21.1733 9.85641C20.2219 5.78612 16.6322 2.72844 12.3097 2.58711L12.5555 2.34124C12.8624 2.03432 12.8624 1.53711 12.5555 1.23019C12.2486 0.92327 11.7514 0.92327 11.4445 1.23019L9.87305 2.80162C9.86566 2.809 9.86346 2.81903 9.85641 2.82665C5.78593 3.7781 2.72844 7.36805 2.58711 11.6903L2.34124 11.4445C2.03432 11.1376 1.53711 11.1376 1.23019 11.4445C0.92327 11.7514 0.92327 12.2486 1.23019 12.5555L2.80162 14.127C2.809 14.1343 2.81903 14.1365 2.82665 14.1436C3.38126 16.5162 4.82762 18.5477 6.79944 19.8571H1.78571C1.35142 19.8571 1 20.2089 1 20.6429C1 21.0768 1.35142 21.4286 1.78571 21.4286H20.3175L20.0873 21.6588C19.7804 21.9657 19.7804 22.4629 20.0873 22.7698C20.2408 22.9233 20.4418 23 20.6429 23C20.8439 23 21.0449 22.9233 21.1984 22.7698L22.7693 21.1989C22.842 21.1264 22.8996 21.0394 22.9395 20.9429C23.0188 20.751 23.0188 20.5347 22.9395 20.3428ZM4.33463 13.705L5.4841 12.5555C5.79102 12.2486 5.79102 11.7514 5.4841 11.4445C5.17718 11.1376 4.67997 11.1376 4.37305 11.4445L4.16022 11.6573C4.31636 8.06428 6.88916 5.09205 10.295 4.33459L11.4445 5.4841C11.5979 5.63756 11.799 5.71429 12 5.71429C12.201 5.71429 12.4021 5.63756 12.5555 5.4841C12.8624 5.17718 12.8624 4.67997 12.5555 4.37305L12.3427 4.16022C15.9355 4.31631 18.9079 6.88897 19.6654 10.295L18.5159 11.4445C18.209 11.7514 18.209 12.2486 18.5159 12.5555C18.8228 12.8624 19.32 12.8624 19.627 12.5555L19.8398 12.3427C19.6584 16.5157 16.2165 19.8571 12 19.8571C8.25376 19.8571 5.11622 17.2196 4.33463 13.705Z\" fill=\"#F9F9F9\"/> </svg>'},jDP5KUGBh:{customSvgCode:'<svg width=\"134\" height=\"95\" viewBox=\"0 0 134 95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.468 53.6399C120.497 53.4201 120.496 53.2032 120.467 52.9937C120.513 52.1424 120.418 50.9858 120.145 49.4222C119.684 46.7756 118.354 41.365 117.436 37.7703C117.556 37.4823 117.623 37.1661 117.623 36.8344V31.0957C117.623 30.4372 117.361 29.8399 116.935 29.4025C116.692 29.0338 116.266 28.6924 115.709 28.4073V25.3467C115.709 24.6691 115.432 24.0563 114.984 23.6158C114.358 22.7405 112.706 22.0296 110.723 21.8792C108.131 21.6827 105.957 22.5179 105.866 23.7446C105.861 23.8188 105.863 23.8928 105.873 23.9663L99.215 23.42C98.8111 22.8055 98.135 22.3953 97.3687 22.346C92.3382 22.022 79.4175 21.375 67.8871 21.375C56.357 21.375 43.3549 22.022 38.2843 22.3459C37.5173 22.3949 36.8407 22.8053 36.4366 23.4202L29.7713 23.9671C29.8972 23.7676 29.9582 23.5588 29.9425 23.3472C29.8679 22.34 28.0824 21.6542 25.9546 21.8156C24.3254 21.9391 22.9678 22.5234 22.4546 23.2426C22.0874 23.6043 21.8598 24.1072 21.8598 24.6633V27.1792C21.4063 27.4116 21.0588 27.6893 20.858 27.9893C20.5058 28.349 20.2887 28.8414 20.2887 29.3845L20.2887 34.0967L20.2887 34.1041C19.5352 34.3568 18.9422 34.9745 18.7348 35.7673C18.288 37.4753 17.5489 40.3735 16.8746 43.1857C16.8342 43.3088 16.8036 43.4359 16.7836 43.5662C16.2417 45.84 15.7531 48.0194 15.5086 49.4222C15.2261 51.0432 15.1341 52.2268 15.1923 53.0862C15.2139 53.4052 15.2618 53.7801 15.3802 54.1573L17.6376 71.0287C17.6632 71.2201 17.7119 71.4077 17.7826 71.5874C18.2386 72.7466 19.8251 74.972 22.8258 74.972C23.49 74.972 25.1011 74.9932 27.0321 75.0187L28.3634 75.0362C30.4634 75.0634 32.7403 75.0909 34.4532 75.0987C34.6709 75.1758 34.9029 75.2224 35.1441 75.2334C39.8926 75.4496 53.0561 75.8799 67.8871 75.8799C82.7181 75.8799 95.8003 75.4496 100.509 75.2333C100.749 75.2223 100.98 75.1759 101.197 75.0992C102.923 75.0923 105.262 75.0641 107.416 75.0362L108.747 75.0187C110.678 74.9932 112.289 74.972 112.953 74.972C115.954 74.972 117.54 72.7466 117.996 71.5874C118.067 71.4077 118.116 71.2201 118.141 71.0287L120.468 53.6399ZM37.6158 41.3421L37.6281 41.2654C38.2682 41.2229 39.0216 41.1921 39.8469 41.1921C40.8581 41.1921 41.5395 41.3989 42.1882 41.7631C42.9222 42.1753 43.6805 42.8221 44.8222 43.8933C45.0343 44.0922 45.2629 44.3176 45.5065 44.5576C46.304 45.3437 47.2614 46.2872 48.3208 46.9781C49.9024 48.0096 51.7765 48.5984 54.3577 48.5984H81.36C83.9413 48.5984 85.8154 48.0096 87.397 46.9781C88.4564 46.2872 89.4138 45.3437 90.2113 44.5576C90.4548 44.3176 90.6835 44.0922 90.8956 43.8933C92.0373 42.8221 92.7955 42.1753 93.5296 41.7631C94.1783 41.3989 94.8597 41.1921 95.8709 41.1921C96.6683 41.1921 97.3985 41.2208 98.0243 41.2611L98.0276 41.2855C98.3832 43.904 98.9116 47.8853 99.3069 50.8781C94.1071 50.6104 83.7249 50.2812 68.0096 50.2812C52.1597 50.2812 41.5784 50.616 36.3008 50.8846C36.5527 48.8092 36.8974 46.134 37.2761 43.5591C37.5085 43.147 37.6214 42.6622 37.5726 42.1556C37.5636 42.0625 37.5494 41.9711 37.5303 41.8818C37.5587 41.7004 37.5872 41.5205 37.6158 41.3421ZM108.543 28.0807C108.543 28.0893 108.542 28.0978 108.541 28.1064C108.548 28.1111 108.555 28.1158 108.561 28.1205V28.0883L108.543 28.0807ZM102.718 40.2716C102.309 37.4708 101.283 32.3696 100.432 28.3217L103.286 28.556C103.245 29.0413 103.312 29.5967 103.586 30.1514C103.912 30.8097 104.424 31.2515 104.928 31.5382C104.587 32.0084 104.384 32.5845 104.373 33.2152C104.36 33.9317 104.597 34.5485 104.854 35.015C106.094 37.2684 108.437 38.1432 111.17 38.4306C111.77 38.4937 112.279 38.5466 112.706 38.5901C112.912 39.3932 113.14 40.2963 113.376 41.2427L102.718 40.2716ZM35.2345 28.3207L32.3675 28.556C32.4086 29.0413 32.3419 29.5967 32.0674 30.1514C31.7415 30.8097 31.2295 31.2515 30.7253 31.5382C31.0663 32.0084 31.2699 32.5845 31.281 33.2152C31.2935 33.9317 31.0563 34.5485 30.7995 35.015C29.5593 37.2684 27.2166 38.1432 24.4839 38.4306C23.884 38.4937 23.3742 38.5466 22.9479 38.5901C22.7434 39.3882 22.5163 40.285 22.2819 41.2249L32.9533 40.1967C33.4944 36.9081 34.4544 32.0885 35.2345 28.3207ZM68.0096 55.0671C84.1464 55.0671 94.5607 55.4156 99.4562 55.6782L98.1929 70.5404C92.4011 70.7652 80.8139 71.0941 67.8871 71.0941C54.9483 71.0941 43.2887 70.7646 37.4588 70.5398L37.384 69.6604C37.3927 69.5912 37.3985 69.5209 37.4012 69.4498C37.4117 69.1744 37.3752 68.9081 37.2989 68.6587L36.1959 55.6822C41.1936 55.4187 51.7993 55.0671 68.0096 55.0671ZM97.188 36.4289C96.5929 33.3182 95.8341 29.6809 95.2607 27.0124C89.4344 26.6751 78.0919 26.1608 67.8871 26.1608C57.6782 26.1608 46.2653 26.6755 40.3974 27.0128C39.8565 29.5727 39.1177 33.1645 38.4944 36.4301C38.9239 36.415 39.3765 36.4062 39.8469 36.4062C41.6521 36.4062 43.1443 36.8113 44.5314 37.5902C45.8331 38.3211 46.9729 39.3488 48.0966 40.403C48.5219 40.802 48.8696 41.1443 49.1746 41.4446C49.8437 42.1034 50.308 42.5605 50.9351 42.9694C51.6495 43.4354 52.5918 43.8126 54.3577 43.8126H81.36C83.126 43.8126 84.0683 43.4354 84.7827 42.9694C85.4098 42.5605 85.8735 42.104 86.5426 41.4451C86.8477 41.1447 87.1956 40.8022 87.6211 40.403C88.7448 39.3488 89.8846 38.3211 91.1864 37.5902C92.5735 36.8113 94.0656 36.4062 95.8709 36.4062C96.3284 36.4062 96.7691 36.4146 97.188 36.4289Z\" fill=\"#F9F9F9\"/> </svg>'},kI_X3d4oy:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.6792 10.0545C15.6194 10.0545 16.3815 10.8167 16.3815 11.7569V16.3765C16.3815 18.7947 14.4212 20.755 12.0031 20.755C9.5849 20.755 7.62459 18.7947 7.62459 16.3765V11.7569C7.62459 10.8167 8.38675 10.0545 9.32693 10.0545H14.6792ZM14.6792 11.5137H9.32693C9.19262 11.5137 9.08374 11.6225 9.08374 11.7569V16.3765C9.08374 17.9888 10.3907 19.2958 12.0031 19.2958C13.6154 19.2958 14.9224 17.9888 14.9224 16.3765V11.7569C14.9224 11.6225 14.8135 11.5137 14.6792 11.5137ZM3.97483 10.0545L7.26403 10.0536C6.93001 10.4577 6.71243 10.9616 6.6627 11.5139L3.97483 11.5137C3.84052 11.5137 3.73163 11.6225 3.73163 11.7569V14.9172C3.73163 16.261 4.82098 17.3503 6.16476 17.3503C6.35931 17.3503 6.54852 17.3274 6.72986 17.2843C6.81227 17.7745 6.96274 18.242 7.17025 18.6771C6.85011 18.7637 6.51277 18.8094 6.16476 18.8094C4.01512 18.8094 2.27248 17.0668 2.27248 14.9172V11.7569C2.27248 10.8167 3.03465 10.0545 3.97483 10.0545ZM16.7421 10.0536L20.0255 10.0545C20.9657 10.0545 21.7279 10.8167 21.7279 11.7569V14.9184C21.7279 17.0673 19.9857 18.8094 17.8368 18.8094C17.4901 18.8094 17.1539 18.7641 16.834 18.679C17.043 18.243 17.1936 17.7755 17.2774 17.2852C17.4566 17.3279 17.6441 17.3503 17.8368 17.3503C19.1799 17.3503 20.2687 16.2615 20.2687 14.9184V11.7569C20.2687 11.6225 20.1599 11.5137 20.0255 11.5137L17.3434 11.5139C17.2937 10.9616 17.0761 10.4577 16.7421 10.0536ZM12.0002 3.24514C13.6119 3.24514 14.9185 4.55171 14.9185 6.16344C14.9185 7.77518 13.6119 9.08175 12.0002 9.08175C10.3884 9.08175 9.08186 7.77518 9.08186 6.16344C9.08186 4.55171 10.3884 3.24514 12.0002 3.24514ZM18.3232 4.21791C19.6663 4.21791 20.7551 5.30672 20.7551 6.64983C20.7551 7.99294 19.6663 9.08175 18.3232 9.08175C16.9801 9.08175 15.8912 7.99294 15.8912 6.64983C15.8912 5.30672 16.9801 4.21791 18.3232 4.21791ZM5.67717 4.21791C7.02028 4.21791 8.10909 5.30672 8.10909 6.64983C8.10909 7.99294 7.02028 9.08175 5.67717 9.08175C4.33406 9.08175 3.24525 7.99294 3.24525 6.64983C3.24525 5.30672 4.33406 4.21791 5.67717 4.21791ZM12.0002 4.70429C11.1943 4.70429 10.541 5.35757 10.541 6.16344C10.541 6.96931 11.1943 7.6226 12.0002 7.6226C12.806 7.6226 13.4593 6.96931 13.4593 6.16344C13.4593 5.35757 12.806 4.70429 12.0002 4.70429ZM18.3232 5.67706C17.7859 5.67706 17.3504 6.11259 17.3504 6.64983C17.3504 7.18707 17.7859 7.6226 18.3232 7.6226C18.8604 7.6226 19.2959 7.18707 19.2959 6.64983C19.2959 6.11259 18.8604 5.67706 18.3232 5.67706ZM5.67717 5.67706C5.13993 5.67706 4.7044 6.11259 4.7044 6.64983C4.7044 7.18707 5.13993 7.6226 5.67717 7.6226C6.21441 7.6226 6.64994 7.18707 6.64994 6.64983C6.64994 6.11259 6.21441 5.67706 5.67717 5.67706Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.92629 18.7345C6.68027 18.7838 6.42551 18.8094 6.16476 18.8094C4.01512 18.8094 2.27248 17.0668 2.27248 14.9172V11.7569C2.27248 10.8167 3.03465 10.0545 3.97483 10.0545L7.26403 10.0536C7.19946 10.1317 7.13924 10.2136 7.08374 10.2988C6.85216 10.6544 6.70282 11.0684 6.6627 11.5139L3.97483 11.5137C3.84052 11.5137 3.73163 11.6225 3.73163 11.7569V14.9172C3.73163 16.261 4.82098 17.3503 6.16476 17.3503C6.27462 17.3503 6.38278 17.343 6.48878 17.3289C6.57049 17.318 6.65092 17.3031 6.72986 17.2843C6.74347 17.3653 6.75894 17.4456 6.77621 17.5253C6.84558 17.8453 6.94412 18.1546 7.06858 18.4505C7.10075 18.5269 7.13466 18.6025 7.17025 18.6771C7.08997 18.6989 7.00862 18.718 6.92629 18.7345ZM3.97483 9.80938L7.78479 9.80832L7.45298 10.2098C7.14944 10.577 6.952 11.0345 6.90685 11.5359L6.88676 11.759L3.97677 11.7588V14.9172C3.97677 16.1256 4.95636 17.1051 6.16476 17.1051C6.34004 17.1051 6.51024 17.0846 6.67319 17.0458L6.92816 16.9852L6.97161 17.2437C7.05014 17.7108 7.19357 18.1565 7.39151 18.5716L7.51807 18.837L7.23424 18.9138C6.89316 19.006 6.5343 19.0546 6.16476 19.0546C3.87974 19.0546 2.02734 17.2022 2.02734 14.9172V11.7569C2.02734 10.6813 2.89929 9.80942 3.97483 9.80938C3.97485 9.80938 3.9748 9.80938 3.97483 9.80938ZM16.2214 9.80832L20.0255 9.80938C20.0255 9.80938 20.0255 9.80938 20.0255 9.80938C21.101 9.80942 21.973 10.6813 21.973 11.7569V14.9184C21.973 17.2027 20.1211 19.0546 17.8368 19.0546C17.4686 19.0546 17.1113 19.0064 16.7709 18.9159L16.485 18.8398L16.6129 18.573C16.8122 18.1573 16.9558 17.7115 17.0358 17.2439L17.0799 16.9861L17.3343 17.0467C17.4947 17.085 17.6631 17.1051 17.8368 17.1051C19.0445 17.1051 20.0236 16.1261 20.0236 14.9184V11.7588L17.1193 11.759L17.0992 11.5358C17.0541 11.0345 16.8567 10.577 16.5532 10.2098L16.2214 9.80832ZM20.0255 11.5137C20.1599 11.5137 20.2687 11.6225 20.2687 11.7569V14.9184C20.2687 16.2615 19.1799 17.3503 17.8368 17.3503C17.7289 17.3503 17.6226 17.3433 17.5185 17.3296C17.4367 17.3189 17.3563 17.304 17.2774 17.2852C17.2636 17.3661 17.2479 17.4464 17.2305 17.526C17.1604 17.8463 17.0615 18.1559 16.9362 18.4523C16.9038 18.5287 16.8698 18.6043 16.834 18.679C16.9144 18.7004 16.9959 18.7193 17.0784 18.7356C17.3237 18.784 17.5773 18.8094 17.8368 18.8094C19.9857 18.8094 21.7279 17.0673 21.7279 14.9184V11.7569C21.7279 10.8167 20.9657 10.0545 20.0255 10.0545L16.7421 10.0536C16.8067 10.1317 16.8669 10.2136 16.9224 10.2988C17.1539 10.6544 17.3033 11.0684 17.3434 11.5139L20.0255 11.5137ZM14.6792 9.80938C15.7547 9.80938 16.6267 10.6813 16.6267 11.7569V16.3765C16.6267 18.93 14.5566 21.0001 12.0031 21.0001C9.44952 21.0001 7.37945 18.93 7.37945 16.3765V11.7569C7.37945 10.6813 8.25137 9.80938 9.32693 9.80938H14.6792ZM9.32888 11.7588V16.3765C9.32888 17.8534 10.5261 19.0507 12.0031 19.0507C13.48 19.0507 14.6772 17.8534 14.6772 16.3765V11.7588H9.32888ZM12.0002 3C13.7473 3 15.1636 4.41633 15.1636 6.16344C15.1636 7.91056 13.7473 9.32689 12.0002 9.32689C10.253 9.32689 8.83672 7.91056 8.83672 6.16344C8.83672 4.41633 10.253 3 12.0002 3ZM18.3232 3.97277C19.8017 3.97277 21.0002 5.17133 21.0002 6.64983C21.0002 8.12833 19.8017 9.32689 18.3232 9.32689C16.8447 9.32689 15.6461 8.12833 15.6461 6.64983C15.6461 5.17133 16.8447 3.97277 18.3232 3.97277ZM5.67717 3.97277C7.15567 3.97277 8.35423 5.17133 8.35423 6.64983C8.35423 8.12833 7.15567 9.32689 5.67717 9.32689C4.19867 9.32689 3.00011 8.12833 3.00011 6.64983C3.00011 5.17133 4.19867 3.97277 5.67717 3.97277ZM12.0002 4.94943C11.3297 4.94943 10.7862 5.49296 10.7862 6.16344C10.7862 6.83393 11.3297 7.37746 12.0002 7.37746C12.6706 7.37746 13.2142 6.83393 13.2142 6.16344C13.2142 5.49296 12.6706 4.94943 12.0002 4.94943ZM18.3232 5.9222C17.9213 5.9222 17.5955 6.24797 17.5955 6.64983C17.5955 7.05169 17.9213 7.37746 18.3232 7.37746C18.725 7.37746 19.0508 7.05169 19.0508 6.64983C19.0508 6.24797 18.725 5.9222 18.3232 5.9222ZM5.67717 5.9222C5.27532 5.9222 4.94954 6.24797 4.94954 6.64983C4.94954 7.05168 5.27532 7.37746 5.67717 7.37746C6.07903 7.37746 6.4048 7.05168 6.4048 6.64983C6.4048 6.24797 6.07903 5.9222 5.67717 5.9222ZM16.3815 11.7569C16.3815 10.8167 15.6194 10.0545 14.6792 10.0545H9.32693C8.38675 10.0545 7.62459 10.8167 7.62459 11.7569V16.3765C7.62459 18.7947 9.5849 20.755 12.0031 20.755C14.4212 20.755 16.3815 18.7947 16.3815 16.3765V11.7569ZM9.32693 11.5137H14.6792C14.8135 11.5137 14.9224 11.6225 14.9224 11.7569V16.3765C14.9224 17.9888 13.6154 19.2958 12.0031 19.2958C10.3907 19.2958 9.08374 17.9888 9.08374 16.3765V11.7569C9.08374 11.6225 9.19262 11.5137 9.32693 11.5137ZM14.9185 6.16344C14.9185 4.55171 13.6119 3.24514 12.0002 3.24514C10.3884 3.24514 9.08186 4.55171 9.08186 6.16344C9.08186 7.77518 10.3884 9.08175 12.0002 9.08175C13.6119 9.08175 14.9185 7.77518 14.9185 6.16344ZM20.7551 6.64983C20.7551 5.30672 19.6663 4.21791 18.3232 4.21791C16.9801 4.21791 15.8912 5.30672 15.8912 6.64983C15.8912 7.99294 16.9801 9.08175 18.3232 9.08175C19.6663 9.08175 20.7551 7.99294 20.7551 6.64983ZM8.10909 6.64983C8.10909 5.30672 7.02028 4.21791 5.67717 4.21791C4.33406 4.21791 3.24525 5.30672 3.24525 6.64983C3.24525 7.99294 4.33406 9.08175 5.67717 9.08175C7.02028 9.08175 8.10909 7.99294 8.10909 6.64983ZM10.541 6.16344C10.541 5.35757 11.1943 4.70429 12.0002 4.70429C12.806 4.70429 13.4593 5.35757 13.4593 6.16344C13.4593 6.96931 12.806 7.6226 12.0002 7.6226C11.1943 7.6226 10.541 6.96931 10.541 6.16344ZM17.3504 6.64983C17.3504 6.11259 17.7859 5.67706 18.3232 5.67706C18.8604 5.67706 19.2959 6.11259 19.2959 6.64983C19.2959 7.18707 18.8604 7.6226 18.3232 7.6226C17.7859 7.6226 17.3504 7.18707 17.3504 6.64983ZM4.7044 6.64983C4.7044 6.11259 5.13993 5.67706 5.67717 5.67706C6.21441 5.67706 6.64994 6.11259 6.64994 6.64983C6.64994 7.18707 6.21441 7.6226 5.67717 7.6226C5.13993 7.6226 4.7044 7.18707 4.7044 6.64983Z\" fill=\"#F9F9F9\"/> </svg>'},kLZf9xw3x:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <mask id=\"path-1-outside-1_788_210\" maskUnits=\"userSpaceOnUse\" x=\"0.25\" y=\"0\" width=\"20\" height=\"24\" fill=\"black\"> <rect fill=\"white\" x=\"0.25\" width=\"20\" height=\"24\"/> <path d=\"M6.13117 14.0146C9.44416 14.0146 11.9884 14.0146 18.1689 14.0146C18.418 14.0146 18.6456 14.1199 18.8103 14.289C18.9766 14.4581 19.0784 14.6918 19.0784 14.9492V16.0173C19.0784 16.2748 18.9758 16.5084 18.8111 16.6775L18.7805 16.7056C18.6183 16.8577 18.4023 16.952 18.1681 16.952H18.0837L16.3011 22.2929C16.2241 22.5716 16.095 22.8444 15.9014 23.0432C15.7102 23.2395 15.4661 23.3635 15.1591 23.3635H9.13855C8.83152 23.3635 8.58738 23.2403 8.39622 23.044C8.2034 22.8461 8.07513 22.5741 7.99651 22.2929L6.21476 16.952H6.13035C5.88125 16.952 5.65367 16.8466 5.48817 16.6767C5.32266 16.5084 5.22004 16.2739 5.22004 16.0173V14.9493C5.22004 14.6918 5.32266 14.4582 5.48734 14.2891L5.51713 14.261C5.67934 14.1081 5.89615 14.0146 6.13117 14.0146ZM17.2039 16.9527H7.096L8.81155 22.0557C8.85376 22.2078 8.915 22.3463 8.9961 22.4296C9.03499 22.4695 9.08216 22.4942 9.13927 22.4942H15.1598C15.2161 22.4942 15.2641 22.4687 15.303 22.4296C15.3849 22.3455 15.4461 22.207 15.4875 22.0566L17.2039 16.9527ZM18.1688 14.8863H6.13115C6.11708 14.8863 6.10466 14.8905 6.09473 14.8973L6.08728 14.905C6.07653 14.916 6.06908 14.933 6.06908 14.95V16.0181C6.06908 16.0359 6.07653 16.0521 6.08728 16.0631C6.09721 16.075 6.11377 16.0818 6.13114 16.0818H18.1688C18.1829 16.0818 18.1961 16.0776 18.2061 16.0699L18.2127 16.0631C18.2234 16.0521 18.2309 16.0351 18.2309 16.0181V14.95C18.2309 14.9322 18.2234 14.916 18.2127 14.905C18.2019 14.8931 18.1862 14.8863 18.1688 14.8863Z\"/> <path d=\"M6.58783 1.87008H2.33503C2.26965 1.87008 2.21007 1.89812 2.16703 1.9423C2.124 1.98649 2.09669 2.04766 2.09669 2.11479V5.22119C2.09669 5.28831 2.124 5.34949 2.16703 5.39368L2.17862 5.40642C2.22 5.44296 2.27544 5.4659 2.33503 5.4659H4.29718C4.3849 5.4659 4.46683 5.49309 4.53469 5.54067L6.16829 6.51016C6.19726 6.13885 6.38761 5.92473 6.58622 5.70212C6.70373 5.57041 6.82704 5.43191 6.82704 5.24667V2.11395C6.82704 2.04598 6.80055 1.9848 6.75835 1.94147C6.71366 1.89728 6.65408 1.86924 6.5887 1.86924L6.58783 1.87008ZM2.29871 1H6.58783C6.88659 1 7.15802 1.12575 7.35498 1.32798C7.55112 1.53105 7.67442 1.80974 7.67442 2.11564V5.24836C7.67442 5.76497 7.43608 6.03263 7.20851 6.28836C7.10837 6.40052 7.01237 6.50928 7.01237 6.6121V7.26211C7.01155 7.33604 6.99334 7.41081 6.95444 7.47963C6.83776 7.68696 6.57874 7.75747 6.3768 7.63767L4.1862 6.3368H2.33577C2.05107 6.3368 1.79041 6.22209 1.59675 6.03601L1.56861 6.00967C1.37165 5.80744 1.25 5.52876 1.25 5.22201V2.11561C1.25 1.80886 1.37248 1.52933 1.56861 1.32795C1.76557 1.12572 2.037 1.00082 2.33576 1.00082L2.29871 1Z\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0317 3.00301C13.2852 3.00301 14.3013 4.01914 14.3013 5.27259C14.3013 6.52604 13.2852 7.54217 12.0317 7.54217C10.7782 7.54217 9.76212 6.52604 9.76212 5.27259C9.76212 4.01914 10.7782 3.00301 12.0317 3.00301ZM12.0324 4.13798C11.4057 4.13798 10.8976 4.64604 10.8976 5.27277C10.8976 5.8995 11.4057 6.40756 12.0324 6.40756C12.6591 6.40756 13.1672 5.8995 13.1672 5.27277C13.1672 4.64604 12.6591 4.13798 12.0324 4.13798Z\"/> <path d=\"M14.1152 8.2987C14.8464 8.2987 15.4391 8.89144 15.4391 9.62262V11.7279H15.4361V11.917C15.4361 12.2304 15.182 12.4844 14.8687 12.4844C14.5553 12.4844 14.3013 12.2304 14.3013 11.917V10.5683H14.3043V9.62262C14.3043 9.51814 14.2196 9.43349 14.1152 9.43349H9.95271C9.84825 9.43349 9.76358 9.51814 9.76358 9.62262V11.7279H9.76212V11.917C9.76212 12.2304 9.50808 12.4844 9.19472 12.4844C8.88136 12.4844 8.62733 12.2304 8.62733 11.917V10.5683H8.62879V9.62262C8.62879 8.89144 9.22152 8.2987 9.95271 8.2987H14.1152Z\"/> </mask> <path d=\"M6.13117 14.0146C9.44416 14.0146 11.9884 14.0146 18.1689 14.0146C18.418 14.0146 18.6456 14.1199 18.8103 14.289C18.9766 14.4581 19.0784 14.6918 19.0784 14.9492V16.0173C19.0784 16.2748 18.9758 16.5084 18.8111 16.6775L18.7805 16.7056C18.6183 16.8577 18.4023 16.952 18.1681 16.952H18.0837L16.3011 22.2929C16.2241 22.5716 16.095 22.8444 15.9014 23.0432C15.7102 23.2395 15.4661 23.3635 15.1591 23.3635H9.13855C8.83152 23.3635 8.58738 23.2403 8.39622 23.044C8.2034 22.8461 8.07513 22.5741 7.99651 22.2929L6.21476 16.952H6.13035C5.88125 16.952 5.65367 16.8466 5.48817 16.6767C5.32266 16.5084 5.22004 16.2739 5.22004 16.0173V14.9493C5.22004 14.6918 5.32266 14.4582 5.48734 14.2891L5.51713 14.261C5.67934 14.1081 5.89615 14.0146 6.13117 14.0146ZM17.2039 16.9527H7.096L8.81155 22.0557C8.85376 22.2078 8.915 22.3463 8.9961 22.4296C9.03499 22.4695 9.08216 22.4942 9.13927 22.4942H15.1598C15.2161 22.4942 15.2641 22.4687 15.303 22.4296C15.3849 22.3455 15.4461 22.207 15.4875 22.0566L17.2039 16.9527ZM18.1688 14.8863H6.13115C6.11708 14.8863 6.10466 14.8905 6.09473 14.8973L6.08728 14.905C6.07653 14.916 6.06908 14.933 6.06908 14.95V16.0181C6.06908 16.0359 6.07653 16.0521 6.08728 16.0631C6.09721 16.075 6.11377 16.0818 6.13114 16.0818H18.1688C18.1829 16.0818 18.1961 16.0776 18.2061 16.0699L18.2127 16.0631C18.2234 16.0521 18.2309 16.0351 18.2309 16.0181V14.95C18.2309 14.9322 18.2234 14.916 18.2127 14.905C18.2019 14.8931 18.1862 14.8863 18.1688 14.8863Z\" fill=\"#F9F9F9\"/> <path d=\"M6.58783 1.87008H2.33503C2.26965 1.87008 2.21007 1.89812 2.16703 1.9423C2.124 1.98649 2.09669 2.04766 2.09669 2.11479V5.22119C2.09669 5.28831 2.124 5.34949 2.16703 5.39368L2.17862 5.40642C2.22 5.44296 2.27544 5.4659 2.33503 5.4659H4.29718C4.3849 5.4659 4.46683 5.49309 4.53469 5.54067L6.16829 6.51016C6.19726 6.13885 6.38761 5.92473 6.58622 5.70212C6.70373 5.57041 6.82704 5.43191 6.82704 5.24667V2.11395C6.82704 2.04598 6.80055 1.9848 6.75835 1.94147C6.71366 1.89728 6.65408 1.86924 6.5887 1.86924L6.58783 1.87008ZM2.29871 1H6.58783C6.88659 1 7.15802 1.12575 7.35498 1.32798C7.55112 1.53105 7.67442 1.80974 7.67442 2.11564V5.24836C7.67442 5.76497 7.43608 6.03263 7.20851 6.28836C7.10837 6.40052 7.01237 6.50928 7.01237 6.6121V7.26211C7.01155 7.33604 6.99334 7.41081 6.95444 7.47963C6.83776 7.68696 6.57874 7.75747 6.3768 7.63767L4.1862 6.3368H2.33577C2.05107 6.3368 1.79041 6.22209 1.59675 6.03601L1.56861 6.00967C1.37165 5.80744 1.25 5.52876 1.25 5.22201V2.11561C1.25 1.80886 1.37248 1.52933 1.56861 1.32795C1.76557 1.12572 2.037 1.00082 2.33576 1.00082L2.29871 1Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0317 3.00301C13.2852 3.00301 14.3013 4.01914 14.3013 5.27259C14.3013 6.52604 13.2852 7.54217 12.0317 7.54217C10.7782 7.54217 9.76212 6.52604 9.76212 5.27259C9.76212 4.01914 10.7782 3.00301 12.0317 3.00301ZM12.0324 4.13798C11.4057 4.13798 10.8976 4.64604 10.8976 5.27277C10.8976 5.8995 11.4057 6.40756 12.0324 6.40756C12.6591 6.40756 13.1672 5.8995 13.1672 5.27277C13.1672 4.64604 12.6591 4.13798 12.0324 4.13798Z\" fill=\"#F9F9F9\"/> <path d=\"M14.1152 8.2987C14.8464 8.2987 15.4391 8.89144 15.4391 9.62262V11.7279H15.4361V11.917C15.4361 12.2304 15.182 12.4844 14.8687 12.4844C14.5553 12.4844 14.3013 12.2304 14.3013 11.917V10.5683H14.3043V9.62262C14.3043 9.51814 14.2196 9.43349 14.1152 9.43349H9.95271C9.84825 9.43349 9.76358 9.51814 9.76358 9.62262V11.7279H9.76212V11.917C9.76212 12.2304 9.50808 12.4844 9.19472 12.4844C8.88136 12.4844 8.62733 12.2304 8.62733 11.917V10.5683H8.62879V9.62262C8.62879 8.89144 9.22152 8.2987 9.95271 8.2987H14.1152Z\" fill=\"#F9F9F9\"/> <path d=\"M7.9035 14.1719C8.10058 14.1719 8.28413 14.1719 8.45482 14.1719C8.46549 14.1719 8.4761 14.1719 8.48667 14.1719C8.49724 14.1719 8.50776 14.1719 8.51823 14.1719C8.52869 14.1719 8.53911 14.1719 8.54948 14.1719C8.55985 14.1719 8.57016 14.1719 8.58043 14.1719C8.5907 14.1719 8.60092 14.1719 8.61109 14.1719C8.62126 14.1719 8.63138 14.1719 8.64145 14.1719C8.66818 14.1719 8.67496 14.1719 8.70129 14.1719C8.78028 14.1719 8.85615 14.1719 8.92896 14.1719C9.07459 14.1719 9.20802 14.1719 9.32991 14.1719C9.37055 14.1719 9.37998 14.1719 9.41918 14.1719C9.42645 14.1719 9.43366 14.1719 9.44083 14.1719C9.44801 14.1719 9.45513 14.1719 9.46222 14.1719C9.4693 14.1719 9.47634 14.1719 9.48334 14.1719C9.49033 14.1719 9.49728 14.1719 9.50419 14.1719C9.5111 14.1719 9.51797 14.1719 9.52479 14.1719C9.53161 14.1719 9.53838 14.1719 9.54512 14.1719C9.55185 14.1719 9.55854 14.1719 9.56519 14.1719C9.57184 14.1719 9.57844 14.1719 9.585 14.1719C9.59156 14.1719 9.59808 14.1719 9.60455 14.1719C9.61103 14.1719 9.61746 14.1719 9.62385 14.1719C9.63024 14.1719 9.63658 14.1719 9.64289 14.1719C9.64919 14.1719 9.65545 14.1719 9.66167 14.1719C10.0597 14.1719 10.2838 14.1719 10.3765 14.1719C10.4074 14.1719 10.407 14.1719 10.4221 14.1719C10.4226 14.1719 10.423 14.1719 10.4234 14.1719C10.4239 14.1719 10.4242 14.1719 10.4246 14.1719C10.4249 14.1719 10.4252 14.1719 10.4255 14.1719C10.4258 14.1719 10.4261 14.1719 10.4263 14.1719C10.4266 14.1719 10.4268 14.1719 10.4269 14.1719C10.4271 14.1719 10.4272 14.1719 10.4274 14.1719C10.4275 14.1719 10.4276 14.1719 10.4276 14.1719C10.4277 14.1719 10.4277 14.1719 10.4277 14.1719C10.4277 14.0146 10.4277 13.8573 10.4277 13.8573C10.4276 13.8573 10.4275 13.8573 10.4274 13.8573C10.4273 13.8573 10.4272 13.8573 10.427 13.8573C10.4268 13.8573 10.4267 13.8573 10.4264 13.8573C10.4262 13.8573 10.426 13.8573 10.4257 13.8573C10.4254 13.8573 10.4251 13.8573 10.4248 13.8573C10.4245 13.8573 10.4241 13.8573 10.4237 13.8573C10.4233 13.8573 10.4229 13.8573 10.4225 13.8573C10.4221 13.8573 10.4216 13.8573 10.4211 13.8573C10.4206 13.8573 10.4201 13.8573 10.4196 13.8573C10.419 13.8573 10.4184 13.8573 10.4179 13.8573C10.4173 13.8573 10.4166 13.8573 10.416 13.8573C10.4153 13.8573 10.4147 13.8573 10.414 13.8573C10.4133 13.8573 10.4125 13.8573 10.4118 13.8573C10.411 13.8573 10.4102 13.8573 10.4094 13.8573C10.4086 13.8573 10.4078 13.8573 10.407 13.8573C10.4061 13.8573 10.4052 13.8573 10.4043 13.8573C10.4034 13.8573 10.4025 13.8573 10.4015 13.8573C10.4006 13.8573 10.3996 13.8573 10.3986 13.8573C10.3976 13.8573 10.3965 13.8573 10.3955 13.8573C10.3944 13.8573 10.3933 13.8573 10.3922 13.8573C10.3911 13.8573 10.39 13.8573 10.3888 13.8573C10.3877 13.8573 10.3865 13.8573 10.3853 13.8573C10.3841 13.8573 10.3828 13.8573 10.3816 13.8573C10.3803 13.8573 10.3791 13.8573 10.3778 13.8573C10.3765 13.8573 10.3751 13.8573 10.3738 13.8573C10.3724 13.8573 10.371 13.8573 10.3696 13.8573C10.3683 13.8573 10.3668 13.8573 10.3654 13.8573C10.3639 13.8573 10.3625 13.8573 10.361 13.8573C10.3595 13.8573 10.358 13.8573 10.3564 13.8573C10.3549 13.8573 10.3533 13.8573 10.3517 13.8573C10.3501 13.8573 10.3485 13.8573 10.3469 13.8573C10.3453 13.8573 10.3436 13.8573 10.3419 13.8573C10.3403 13.8573 10.3386 13.8573 10.3368 13.8573C10.3351 13.8573 10.3334 13.8573 10.3316 13.8573C10.3298 13.8573 10.328 13.8573 10.3262 13.8573C10.3244 13.8573 10.3226 13.8573 10.3207 13.8573C10.3189 13.8573 10.317 13.8573 10.3151 13.8573C10.3132 13.8573 10.3113 13.8573 10.3093 13.8573C10.3074 13.8573 10.3054 13.8573 10.3034 13.8573C10.3014 13.8573 10.2994 13.8573 10.2974 13.8573C10.2953 13.8573 10.2933 13.8573 10.2912 13.8573C10.2891 13.8573 10.287 13.8573 10.2849 13.8573C10.2828 13.8573 10.2807 13.8573 10.2785 13.8573C10.2763 13.8573 10.2742 13.8573 10.272 13.8573C10.2698 13.8573 10.2675 13.8573 10.2653 13.8573C10.263 13.8573 10.2608 13.8573 10.2585 13.8573C10.2562 13.8573 10.2539 13.8573 10.2516 13.8573C10.2492 13.8573 10.2469 13.8573 10.2445 13.8573C10.2422 13.8573 10.2398 13.8573 10.2374 13.8573C10.235 13.8573 10.2325 13.8573 10.2301 13.8573C10.2276 13.8573 10.2252 13.8573 10.2227 13.8573C10.2202 13.8573 10.2177 13.8573 10.2152 13.8573C10.2127 13.8573 10.2101 13.8573 10.2075 13.8573C10.205 13.8573 10.2024 13.8573 10.1998 13.8573C10.1972 13.8573 10.1946 13.8573 10.1919 13.8573C10.1893 13.8573 10.1866 13.8573 10.1839 13.8573C10.1813 13.8573 10.1786 13.8573 10.1758 13.8573C10.1731 13.8573 10.1704 13.8573 10.1676 13.8573C10.1649 13.8573 10.1621 13.8573 10.1593 13.8573C10.1565 13.8573 10.1537 13.8573 10.1509 13.8573C10.1481 13.8573 10.1452 13.8573 10.1424 13.8573C10.1395 13.8573 10.1366 13.8573 10.1337 13.8573C10.1308 13.8573 10.1279 13.8573 10.1249 13.8573C10.122 13.8573 10.1191 13.8573 10.1161 13.8573C10.1131 13.8573 10.1101 13.8573 10.1071 13.8573C10.1041 13.8573 10.1011 13.8573 10.098 13.8573C10.095 13.8573 10.0919 13.8573 10.0889 13.8573C10.0858 13.8573 10.0827 13.8573 10.0796 13.8573C10.0765 13.8573 10.0734 13.8573 10.0702 13.8573C10.0671 13.8573 10.0639 13.8573 10.0607 13.8573C10.0576 13.8573 10.0544 13.8573 10.0511 13.8573C10.0479 13.8573 10.0447 13.8573 10.0415 13.8573C10.0382 13.8573 10.035 13.8573 10.0317 13.8573C10.0284 13.8573 10.0251 13.8573 10.0218 13.8573C10.0185 13.8573 10.0152 13.8573 10.0118 13.8573C10.0085 13.8573 10.0051 13.8573 10.0018 13.8573C9.99841 13.8573 9.99502 13.8573 9.99162 13.8573C9.98821 13.8573 9.9848 13.8573 9.98136 13.8573C9.97793 13.8573 9.97448 13.8573 9.97102 13.8573C9.96755 13.8573 9.96408 13.8573 9.96058 13.8573C9.95709 13.8573 9.95358 13.8573 9.95006 13.8573C9.94653 13.8573 9.94299 13.8573 9.93944 13.8573C9.93589 13.8573 9.93232 13.8573 9.92874 13.8573C9.92515 13.8573 9.92156 13.8573 9.91795 13.8573C9.91433 13.8573 9.91071 13.8573 9.90707 13.8573C9.90343 13.8573 9.89978 13.8573 9.89611 13.8573C9.89244 13.8573 9.88876 13.8573 9.88506 13.8573C9.88136 13.8573 9.87765 13.8573 9.87393 13.8573C9.87021 13.8573 9.86647 13.8573 9.86272 13.8573C9.85897 13.8573 9.8552 13.8573 9.85143 13.8573C9.84765 13.8573 9.84386 13.8573 9.84005 13.8573C9.83625 13.8573 9.83243 13.8573 9.8286 13.8573C9.82477 13.8573 9.82092 13.8573 9.81707 13.8573C9.81321 13.8573 9.80934 13.8573 9.80546 13.8573C9.80158 13.8573 9.79768 13.8573 9.79377 13.8573C9.78986 13.8573 9.78594 13.8573 9.78201 13.8573C9.77808 13.8573 9.77413 13.8573 9.77018 13.8573C9.76622 13.8573 9.76225 13.8573 9.75827 13.8573C9.75429 13.8573 9.75029 13.8573 9.74629 13.8573C9.74228 13.8573 9.73826 13.8573 9.73423 13.8573C9.7302 13.8573 9.72616 13.8573 9.72211 13.8573C9.71806 13.8573 9.71399 13.8573 9.70992 13.8573C9.70584 13.8573 9.70175 13.8573 9.69765 13.8573C9.69355 13.8573 9.68944 13.8573 9.68532 13.8573C9.6812 13.8573 9.67707 13.8573 9.67293 13.8573C9.66878 13.8573 9.66463 13.8573 9.66047 13.8573C9.6563 13.8573 9.65212 13.8573 9.64794 13.8573C9.64375 13.8573 9.63955 13.8573 9.63535 13.8573C9.63114 13.8573 9.62692 13.8573 9.62269 13.8573C9.61847 13.8573 9.61423 13.8573 9.60998 13.8573C9.60573 13.8573 9.60147 13.8573 9.5972 13.8573C9.59293 13.8573 9.58865 13.8573 9.58437 13.8573C9.58008 13.8573 9.57578 13.8573 9.57147 13.8573C9.56716 13.8573 9.56284 13.8573 9.55852 13.8573C9.55419 13.8573 9.54985 13.8573 9.54551 13.8573C9.54116 13.8573 9.53681 13.8573 9.53244 13.8573C9.52808 13.8573 9.5237 13.8573 9.51932 13.8573C9.51494 13.8573 9.51055 13.8573 9.50614 13.8573C9.50174 13.8573 9.49733 13.8573 9.49292 13.8573C9.4885 13.8573 9.48407 13.8573 9.47964 13.8573C9.4752 13.8573 9.47076 13.8573 9.4663 13.8573C9.46185 13.8573 9.45739 13.8573 9.45292 13.8573C9.44845 13.8573 9.44398 13.8573 9.43949 13.8573C9.43501 13.8573 9.43051 13.8573 9.42601 13.8573C9.42151 13.8573 9.417 13.8573 9.41249 13.8573C9.40797 13.8573 9.40345 13.8573 9.39891 13.8573C9.39438 13.8573 9.38984 13.8573 9.3853 13.8573C9.38075 13.8573 9.37619 13.8573 9.37163 13.8573C9.36707 13.8573 9.3625 13.8573 9.35793 13.8573C9.35335 13.8573 9.34877 13.8573 9.34418 13.8573C9.33959 13.8573 9.33499 13.8573 9.33039 13.8573C9.30577 13.8573 9.29966 13.8573 9.27484 13.8573C9.12589 13.8573 8.97071 13.8573 8.81462 13.8573C8.50243 13.8573 8.18659 13.8573 7.90965 13.8573C7.77118 13.8573 7.64243 13.8573 7.52873 13.8573C7.49083 13.8573 7.4823 13.8573 7.44636 13.8573C7.44305 13.8573 7.43976 13.8573 7.43649 13.8573C7.43321 13.8573 7.42995 13.8573 7.42671 13.8573C7.42347 13.8573 7.42024 13.8573 7.41703 13.8573C7.41382 13.8573 7.41062 13.8573 7.40745 13.8573C7.40427 13.8573 7.40111 13.8573 7.39797 13.8573C7.39482 13.8573 7.3917 13.8573 7.38859 13.8573C7.38548 13.8573 7.38238 13.8573 7.37931 13.8573C7.37623 13.8573 7.37317 13.8573 7.37013 13.8573C7.36709 13.8573 7.36407 13.8573 7.36106 13.8573C7.35805 13.8573 7.35506 13.8573 7.35209 13.8573C7.34912 13.8573 7.34617 13.8573 7.34323 13.8573C7.34029 13.8573 7.33737 13.8573 7.33447 13.8573C7.33157 13.8573 7.32869 13.8573 7.32583 13.8573C7.32296 13.8573 7.32012 13.8573 7.31729 13.8573C7.31446 13.8573 7.31165 13.8573 7.30886 13.8573C7.30607 13.8573 7.30329 13.8573 7.30054 13.8573C7.29778 13.8573 7.29505 13.8573 7.29233 13.8573C7.28961 13.8573 7.28692 13.8573 7.28424 13.8573C7.28156 13.8573 7.2789 13.8573 7.27626 13.8573C7.27361 13.8573 7.27099 13.8573 7.26839 13.8573C7.26579 13.8573 7.2632 13.8573 7.26064 13.8573C7.25807 13.8573 7.25553 13.8573 7.253 13.8573C7.25048 13.8573 7.24797 13.8573 7.24548 13.8573C7.243 13.8573 7.24053 13.8573 7.23809 13.8573C7.23564 13.8573 7.23321 13.8573 7.23081 13.8573C7.2284 13.8573 7.22601 13.8573 7.22365 13.8573C7.22128 13.8573 7.21893 13.8573 7.21661 13.8573C7.21428 13.8573 7.21198 13.8573 7.20969 13.8573C7.20741 13.8573 7.20514 13.8573 7.2029 13.8573C7.20065 13.8573 7.19843 13.8573 7.19623 13.8573C7.19403 13.8573 7.19185 13.8573 7.18969 13.8573C7.18753 13.8573 7.18539 13.8573 7.18327 13.8573C7.18115 13.8573 7.17905 13.8573 7.17698 13.8573C7.1749 13.8573 7.17285 13.8573 7.17082 13.8573C7.16878 13.8573 7.16677 13.8573 7.16478 13.8573C7.16279 13.8573 7.16083 13.8573 7.15888 13.8573C7.15693 13.8573 7.15501 13.8573 7.15311 13.8573C7.15121 13.8573 7.14933 13.8573 7.14747 13.8573C7.14561 13.8573 7.14377 13.8573 7.14196 13.8573C7.14015 13.8573 7.13836 13.8573 7.13659 13.8573C7.13482 13.8573 7.13307 13.8573 7.13135 13.8573C7.12963 13.8573 7.12792 13.8573 7.12625 13.8573C7.12457 13.8573 7.12291 13.8573 7.12128 13.8573C7.11965 13.8573 7.11804 13.8573 7.11645 13.8573C7.1083 13.8573 7.11518 13.8573 7.10722 13.8573C7.10572 13.8573 7.10425 13.8573 7.10281 13.8573C7.10136 13.8573 7.09994 13.8573 7.09854 13.8573C7.09714 13.8573 7.09577 13.8573 7.09442 13.8573C7.09307 13.8573 7.09174 13.8573 7.09044 13.8573C7.08913 13.8573 7.08785 13.8573 7.0866 13.8573C7.08535 13.8573 7.08412 13.8573 7.08291 13.8573C7.0817 13.8573 7.08052 13.8573 7.07937 13.8573C7.07821 13.8573 7.07708 13.8573 7.07597 13.8573C7.07486 13.8573 7.07378 13.8573 7.07272 13.8573C7.07167 13.8573 7.07063 13.8573 7.06963 13.8573C7.06862 13.8573 7.06764 13.8573 7.06668 13.8573C7.06572 13.8573 7.06479 13.8573 7.06388 13.8573C7.06298 13.8573 7.06209 13.8573 7.06124 13.8573C7.06038 13.8573 7.05955 13.8573 7.05875 13.8573C7.05794 13.8573 7.05717 13.8573 7.05641 13.8573C7.05566 13.8573 7.05493 13.8573 7.05423 13.8573C7.05353 13.8573 7.05286 13.8573 7.05221 13.8573C7.05156 13.8573 7.05094 13.8573 7.05034 13.8573C7.04975 13.8573 7.04918 13.8573 7.04863 13.8573C7.04809 13.8573 7.04758 13.8573 7.04709 13.8573C7.0466 13.8573 7.04613 13.8573 7.0457 13.8573C7.04526 13.8573 7.04485 13.8573 7.04447 13.8573C7.04409 13.8573 7.04373 13.8573 7.0434 13.8573C7.04308 13.8573 7.04278 13.8573 7.0425 13.8573C7.04223 13.8573 7.04198 13.8573 7.04176 13.8573C7.04154 13.8573 7.04135 13.8573 7.04119 13.8573C7.04103 13.8573 7.04089 13.8573 7.04078 13.8573C7.04068 13.8573 7.0406 13.8573 7.04054 13.8573C7.04049 13.8573 7.04047 14.0146 7.04047 14.1719C7.04048 14.1719 7.04051 14.1719 7.04057 14.1719C7.04063 14.1719 7.04072 14.1719 7.04084 14.1719C7.04095 14.1719 7.0411 14.1719 7.04127 14.1719C7.04145 14.1719 7.04165 14.1719 7.04188 14.1719C7.04212 14.1719 7.04238 14.1719 7.04267 14.1719C7.04296 14.1719 7.04328 14.1719 7.04362 14.1719C7.04397 14.1719 7.04435 14.1719 7.04476 14.1719C7.04516 14.1719 7.0456 14.1719 7.04606 14.1719C7.04653 14.1719 7.04702 14.1719 7.04755 14.1719C7.04807 14.1719 7.04863 14.1719 7.04921 14.1719C7.04979 14.1719 7.05041 14.1719 7.05105 14.1719C7.05169 14.1719 7.05237 14.1719 7.05307 14.1719C7.05377 14.1719 7.05451 14.1719 7.05527 14.1719V13.8573C7.05451 13.8573 7.05377 13.8573 7.05307 13.8573C7.05237 13.8573 7.05169 13.8573 7.05105 13.8573C7.05041 13.8573 7.04979 13.8573 7.04921 13.8573C7.04863 13.8573 7.04807 13.8573 7.04755 13.8573C7.04702 13.8573 7.04653 13.8573 7.04606 13.8573C7.0456 13.8573 7.04516 13.8573 7.04476 13.8573C7.04435 13.8573 7.04397 13.8573 7.04362 13.8573C7.04328 13.8573 7.04296 13.8573 7.04267 13.8573C7.04238 13.8573 7.04212 13.8573 7.04188 13.8573C7.04165 13.8573 7.04145 13.8573 7.04127 13.8573C7.0411 13.8573 7.04095 13.8573 7.04084 13.8573C7.04072 13.8573 7.04063 13.8573 7.04057 13.8573C7.04051 13.8573 7.04048 13.8573 7.04047 13.8573C7.04047 14.0146 7.04049 14.1719 7.04054 14.1719C7.0406 14.1719 7.04068 14.1719 7.04078 14.1719C7.04089 14.1719 7.04103 14.1719 7.04119 14.1719C7.04135 14.1719 7.04154 14.1719 7.04176 14.1719C7.04198 14.1719 7.04223 14.1719 7.0425 14.1719C7.04278 14.1719 7.04308 14.1719 7.0434 14.1719C7.04373 14.1719 7.04409 14.1719 7.04447 14.1719C7.04485 14.1719 7.04526 14.1719 7.0457 14.1719C7.04613 14.1719 7.0466 14.1719 7.04709 14.1719C7.04758 14.1719 7.04809 14.1719 7.04863 14.1719C7.04918 14.1719 7.04975 14.1719 7.05034 14.1719C7.05094 14.1719 7.05156 14.1719 7.05221 14.1719C7.05286 14.1719 7.05353 14.1719 7.05423 14.1719C7.05493 14.1719 7.05566 14.1719 7.05641 14.1719C7.05717 14.1719 7.05794 14.1719 7.05875 14.1719C7.05955 14.1719 7.06038 14.1719 7.06124 14.1719C7.06209 14.1719 7.06298 14.1719 7.06388 14.1719C7.06479 14.1719 7.06572 14.1719 7.06668 14.1719C7.06764 14.1719 7.06862 14.1719 7.06963 14.1719C7.07063 14.1719 7.07167 14.1719 7.07272 14.1719C7.07378 14.1719 7.07486 14.1719 7.07597 14.1719C7.07708 14.1719 7.07821 14.1719 7.07937 14.1719C7.08052 14.1719 7.0817 14.1719 7.08291 14.1719C7.08412 14.1719 7.08535 14.1719 7.0866 14.1719C7.08785 14.1719 7.08913 14.1719 7.09044 14.1719C7.09174 14.1719 7.09307 14.1719 7.09442 14.1719C7.09577 14.1719 7.09714 14.1719 7.09854 14.1719C7.11471 14.1719 7.09953 14.1719 7.11645 14.1719C7.11804 14.1719 7.11965 14.1719 7.12128 14.1719C7.12291 14.1719 7.12457 14.1719 7.12625 14.1719C7.12792 14.1719 7.12963 14.1719 7.13135 14.1719C7.13307 14.1719 7.13482 14.1719 7.13659 14.1719C7.13836 14.1719 7.14015 14.1719 7.14196 14.1719C7.14377 14.1719 7.14561 14.1719 7.14747 14.1719C7.14933 14.1719 7.15121 14.1719 7.15311 14.1719C7.15501 14.1719 7.15693 14.1719 7.15888 14.1719C7.16083 14.1719 7.16279 14.1719 7.16478 14.1719C7.16677 14.1719 7.16878 14.1719 7.17082 14.1719C7.17285 14.1719 7.1749 14.1719 7.17698 14.1719C7.17905 14.1719 7.18115 14.1719 7.18327 14.1719C7.18539 14.1719 7.18753 14.1719 7.18969 14.1719C7.19185 14.1719 7.19403 14.1719 7.19623 14.1719C7.19843 14.1719 7.20065 14.1719 7.2029 14.1719C7.20514 14.1719 7.20741 14.1719 7.20969 14.1719C7.21198 14.1719 7.21428 14.1719 7.21661 14.1719C7.21893 14.1719 7.22128 14.1719 7.22365 14.1719C7.22601 14.1719 7.2284 14.1719 7.23081 14.1719C7.23321 14.1719 7.23564 14.1719 7.23809 14.1719C7.24053 14.1719 7.243 14.1719 7.24548 14.1719C7.24797 14.1719 7.25048 14.1719 7.253 14.1719C7.25553 14.1719 7.25807 14.1719 7.26064 14.1719C7.2632 14.1719 7.26579 14.1719 7.26839 14.1719C7.27099 14.1719 7.27361 14.1719 7.27626 14.1719C7.2789 14.1719 7.28156 14.1719 7.28424 14.1719C7.28692 14.1719 7.28961 14.1719 7.29233 14.1719C7.29505 14.1719 7.29778 14.1719 7.30054 14.1719C7.30329 14.1719 7.30607 14.1719 7.30886 14.1719C7.31165 14.1719 7.31446 14.1719 7.31729 14.1719C7.32012 14.1719 7.32296 14.1719 7.32583 14.1719C7.32869 14.1719 7.33157 14.1719 7.33447 14.1719C7.33737 14.1719 7.34029 14.1719 7.34323 14.1719C7.34617 14.1719 7.34912 14.1719 7.35209 14.1719C7.35506 14.1719 7.35805 14.1719 7.36106 14.1719C7.36407 14.1719 7.36709 14.1719 7.37013 14.1719C7.37317 14.1719 7.37623 14.1719 7.37931 14.1719C7.38238 14.1719 7.38548 14.1719 7.38859 14.1719C7.3917 14.1719 7.39482 14.1719 7.39797 14.1719C7.40111 14.1719 7.40427 14.1719 7.40745 14.1719C7.41062 14.1719 7.41382 14.1719 7.41703 14.1719C7.42024 14.1719 7.42347 14.1719 7.42671 14.1719C7.42995 14.1719 7.43321 14.1719 7.43649 14.1719C7.43976 14.1719 7.44305 14.1719 7.44636 14.1719C7.44967 14.1719 7.45299 14.1719 7.45633 14.1719C7.45967 14.1719 7.46303 14.1719 7.4664 14.1719C7.46977 14.1719 7.47316 14.1719 7.47656 14.1719C7.47996 14.1719 7.48338 14.1719 7.48681 14.1719C7.49024 14.1719 7.49369 14.1719 7.49716 14.1719C7.50062 14.1719 7.5041 14.1719 7.50759 14.1719C7.51109 14.1719 7.51459 14.1719 7.51812 14.1719C7.52164 14.1719 7.52518 14.1719 7.52873 14.1719C7.64243 14.1719 7.77118 14.1719 7.90965 14.1719C7.97889 14.1719 8.05055 14.1719 8.12399 14.1719C8.19742 14.1719 8.27262 14.1719 8.34892 14.1719C8.42522 14.1719 8.50262 14.1719 8.58046 14.1719C8.6583 14.1719 8.73657 14.1719 8.81462 14.1719C8.97071 14.1719 9.12589 14.1719 9.27484 14.1719C9.27949 14.1719 9.28414 14.1719 9.28878 14.1719C9.29343 14.1719 9.29806 14.1719 9.30269 14.1719C9.30732 14.1719 9.31194 14.1719 9.31656 14.1719C9.32118 14.1719 9.32579 14.1719 9.33039 14.1719C9.33499 14.1719 9.33959 14.1719 9.34418 14.1719C9.34877 14.1719 9.35335 14.1719 9.35793 14.1719C9.3625 14.1719 9.36707 14.1719 9.37163 14.1719C9.37619 14.1719 9.38075 14.1719 9.3853 14.1719C9.38984 14.1719 9.39438 14.1719 9.39891 14.1719C9.40345 14.1719 9.40797 14.1719 9.41249 14.1719C9.417 14.1719 9.42151 14.1719 9.42601 14.1719C9.43051 14.1719 9.43501 14.1719 9.43949 14.1719C9.44398 14.1719 9.44845 14.1719 9.45292 14.1719C9.45739 14.1719 9.46185 14.1719 9.4663 14.1719C9.47076 14.1719 9.4752 14.1719 9.47964 14.1719C9.48407 14.1719 9.4885 14.1719 9.49292 14.1719C9.49733 14.1719 9.50174 14.1719 9.50614 14.1719C9.51055 14.1719 9.51494 14.1719 9.51932 14.1719C9.5237 14.1719 9.52808 14.1719 9.53244 14.1719C9.53681 14.1719 9.54116 14.1719 9.54551 14.1719C9.54985 14.1719 9.55419 14.1719 9.55852 14.1719C9.56284 14.1719 9.56716 14.1719 9.57147 14.1719C9.57578 14.1719 9.58008 14.1719 9.58437 14.1719C9.58865 14.1719 9.59293 14.1719 9.5972 14.1719C9.60147 14.1719 9.60573 14.1719 9.60998 14.1719C9.61423 14.1719 9.61847 14.1719 9.62269 14.1719C9.62692 14.1719 9.63114 14.1719 9.63535 14.1719C9.63955 14.1719 9.64375 14.1719 9.64794 14.1719C9.65212 14.1719 9.6563 14.1719 9.66047 14.1719C9.66463 14.1719 9.66878 14.1719 9.67293 14.1719C9.67707 14.1719 9.6812 14.1719 9.68532 14.1719C9.68944 14.1719 9.69355 14.1719 9.69765 14.1719C9.70175 14.1719 9.70584 14.1719 9.70992 14.1719C9.71399 14.1719 9.71806 14.1719 9.72211 14.1719C9.72616 14.1719 9.7302 14.1719 9.73423 14.1719C9.73826 14.1719 9.74228 14.1719 9.74629 14.1719C9.75029 14.1719 9.75429 14.1719 9.75827 14.1719C9.76225 14.1719 9.76622 14.1719 9.77018 14.1719C9.77413 14.1719 9.77808 14.1719 9.78201 14.1719C9.78594 14.1719 9.78986 14.1719 9.79377 14.1719C9.79768 14.1719 9.80158 14.1719 9.80546 14.1719C9.80934 14.1719 9.81321 14.1719 9.81707 14.1719C9.82092 14.1719 9.82477 14.1719 9.8286 14.1719C9.83243 14.1719 9.83625 14.1719 9.84005 14.1719C9.84386 14.1719 9.84765 14.1719 9.85143 14.1719C9.8552 14.1719 9.85897 14.1719 9.86272 14.1719C9.86647 14.1719 9.87021 14.1719 9.87393 14.1719C9.87765 14.1719 9.88136 14.1719 9.88506 14.1719C9.88876 14.1719 9.89244 14.1719 9.89611 14.1719C9.89978 14.1719 9.90343 14.1719 9.90707 14.1719C9.91071 14.1719 9.91433 14.1719 9.91795 14.1719C9.92156 14.1719 9.92515 14.1719 9.92874 14.1719C9.93232 14.1719 9.93589 14.1719 9.93944 14.1719C9.94299 14.1719 9.94653 14.1719 9.95006 14.1719C9.95358 14.1719 9.95709 14.1719 9.96058 14.1719C9.96408 14.1719 9.96755 14.1719 9.97102 14.1719C10.0073 14.1719 10.0169 14.1719 10.0511 14.1719C10.0854 14.1719 10.0929 14.1719 10.1249 14.1719C10.1279 14.1719 10.1308 14.1719 10.1337 14.1719C10.1366 14.1719 10.1395 14.1719 10.1424 14.1719C10.1452 14.1719 10.1481 14.1719 10.1509 14.1719C10.1537 14.1719 10.1565 14.1719 10.1593 14.1719C10.1621 14.1719 10.1649 14.1719 10.1676 14.1719C10.1704 14.1719 10.1731 14.1719 10.1758 14.1719C10.1786 14.1719 10.1813 14.1719 10.1839 14.1719C10.1866 14.1719 10.1893 14.1719 10.1919 14.1719C10.1946 14.1719 10.1972 14.1719 10.1998 14.1719C10.2024 14.1719 10.205 14.1719 10.2075 14.1719C10.2101 14.1719 10.2127 14.1719 10.2152 14.1719C10.2177 14.1719 10.2202 14.1719 10.2227 14.1719C10.2252 14.1719 10.2276 14.1719 10.2301 14.1719C10.2325 14.1719 10.235 14.1719 10.2374 14.1719C10.2398 14.1719 10.2422 14.1719 10.2445 14.1719C10.2469 14.1719 10.2492 14.1719 10.2516 14.1719C10.2539 14.1719 10.2562 14.1719 10.2585 14.1719C10.2608 14.1719 10.263 14.1719 10.2653 14.1719C10.2675 14.1719 10.2698 14.1719 10.272 14.1719C10.2742 14.1719 10.2763 14.1719 10.2785 14.1719C10.2807 14.1719 10.2828 14.1719 10.2849 14.1719C10.287 14.1719 10.2891 14.1719 10.2912 14.1719C10.2933 14.1719 10.2953 14.1719 10.2974 14.1719C10.2994 14.1719 10.3014 14.1719 10.3034 14.1719C10.3054 14.1719 10.3074 14.1719 10.3093 14.1719C10.3113 14.1719 10.3132 14.1719 10.3151 14.1719C10.317 14.1719 10.3189 14.1719 10.3207 14.1719C10.3226 14.1719 10.3244 14.1719 10.3262 14.1719C10.328 14.1719 10.3298 14.1719 10.3316 14.1719C10.3334 14.1719 10.3351 14.1719 10.3368 14.1719C10.3386 14.1719 10.3403 14.1719 10.3419 14.1719C10.3436 14.1719 10.3453 14.1719 10.3469 14.1719C10.3485 14.1719 10.3501 14.1719 10.3517 14.1719C10.3533 14.1719 10.3549 14.1719 10.3564 14.1719C10.358 14.1719 10.3595 14.1719 10.361 14.1719C10.3625 14.1719 10.3639 14.1719 10.3654 14.1719C10.3668 14.1719 10.3683 14.1719 10.3696 14.1719C10.371 14.1719 10.3724 14.1719 10.3738 14.1719C10.3751 14.1719 10.3765 14.1719 10.3778 14.1719C10.3791 14.1719 10.3803 14.1719 10.3816 14.1719C10.3828 14.1719 10.3841 14.1719 10.3853 14.1719C10.3865 14.1719 10.3877 14.1719 10.3888 14.1719C10.39 14.1719 10.3911 14.1719 10.3922 14.1719C10.3933 14.1719 10.3944 14.1719 10.3955 14.1719C10.3965 14.1719 10.3976 14.1719 10.3986 14.1719C10.3996 14.1719 10.4006 14.1719 10.4015 14.1719C10.4025 14.1719 10.4034 14.1719 10.4043 14.1719C10.4052 14.1719 10.4061 14.1719 10.407 14.1719C10.4078 14.1719 10.4086 14.1719 10.4094 14.1719C10.4102 14.1719 10.411 14.1719 10.4118 14.1719C10.4125 14.1719 10.4133 14.1719 10.414 14.1719C10.4147 14.1719 10.4153 14.1719 10.416 14.1719C10.4166 14.1719 10.4173 14.1719 10.4179 14.1719C10.4184 14.1719 10.419 14.1719 10.4196 14.1719C10.4201 14.1719 10.4206 14.1719 10.4211 14.1719C10.4216 14.1719 10.4221 14.1719 10.4225 14.1719C10.4229 14.1719 10.4233 14.1719 10.4237 14.1719C10.4241 14.1719 10.4245 14.1719 10.4248 14.1719C10.4251 14.1719 10.4254 14.1719 10.4257 14.1719C10.426 14.1719 10.4262 14.1719 10.4264 14.1719C10.4267 14.1719 10.4268 14.1719 10.427 14.1719C10.4272 14.1719 10.4273 14.1719 10.4274 14.1719C10.4275 14.1719 10.4276 14.1719 10.4277 14.1719C10.4277 14.1719 10.4277 14.0146 10.4277 13.8573C10.4277 13.8573 10.4277 13.8573 10.4276 13.8573C10.4276 13.8573 10.4275 13.8573 10.4274 13.8573C10.4272 13.8573 10.4271 13.8573 10.4269 13.8573C10.4268 13.8573 10.4266 13.8573 10.4263 13.8573C10.4261 13.8573 10.4258 13.8573 10.4255 13.8573C10.4252 13.8573 10.4249 13.8573 10.4246 13.8573C10.4242 13.8573 10.4239 13.8573 10.4234 13.8573C10.423 13.8573 10.4226 13.8573 10.4221 13.8573C10.4217 13.8573 10.4212 13.8573 10.4207 13.8573C10.4201 13.8573 10.4196 13.8573 10.419 13.8573C10.4184 13.8573 10.4178 13.8573 10.4172 13.8573C10.4165 13.8573 10.4158 13.8573 10.4151 13.8573C10.4144 13.8573 10.4137 13.8573 10.4129 13.8573C10.4122 13.8573 10.4114 13.8573 10.4106 13.8573C10.4097 13.8573 10.4089 13.8573 10.408 13.8573C10.4071 13.8573 10.4062 13.8573 10.4052 13.8573C10.4043 13.8573 10.4033 13.8573 10.4023 13.8573C10.4013 13.8573 10.4003 13.8573 10.3992 13.8573C10.3981 13.8573 10.397 13.8573 10.3959 13.8573C10.3947 13.8573 10.3936 13.8573 10.3924 13.8573C10.3912 13.8573 10.39 13.8573 10.3887 13.8573C10.3874 13.8573 10.3862 13.8573 10.3848 13.8573C10.3835 13.8573 10.3822 13.8573 10.3808 13.8573C10.3794 13.8573 10.378 13.8573 10.3765 13.8573C10.2838 13.8573 10.0597 13.8573 9.66167 13.8573C9.65545 13.8573 9.64919 13.8573 9.64289 13.8573C9.63658 13.8573 9.63024 13.8573 9.62385 13.8573C9.61746 13.8573 9.61103 13.8573 9.60455 13.8573C9.59808 13.8573 9.59156 13.8573 9.585 13.8573C9.57844 13.8573 9.57184 13.8573 9.56519 13.8573C9.55854 13.8573 9.55185 13.8573 9.54512 13.8573C9.53838 13.8573 9.53161 13.8573 9.52479 13.8573C9.51797 13.8573 9.5111 13.8573 9.50419 13.8573C9.49728 13.8573 9.49033 13.8573 9.48334 13.8573C9.47634 13.8573 9.4693 13.8573 9.46222 13.8573C9.45513 13.8573 9.44801 13.8573 9.44083 13.8573C9.43366 13.8573 9.42645 13.8573 9.41918 13.8573C9.37998 13.8573 9.37055 13.8573 9.32991 13.8573C9.20802 13.8573 9.07459 13.8573 8.92896 13.8573C8.91986 13.8573 8.91071 13.8573 8.90151 13.8573C8.89231 13.8573 8.88307 13.8573 8.87378 13.8573C8.86448 13.8573 8.85514 13.8573 8.84575 13.8573C8.83636 13.8573 8.82693 13.8573 8.81744 13.8573C8.80796 13.8573 8.79842 13.8573 8.78884 13.8573C8.77926 13.8573 8.76963 13.8573 8.75995 13.8573C8.73401 13.8573 8.72762 13.8573 8.70129 13.8573C8.67496 13.8573 8.66818 13.8573 8.64145 13.8573C8.63138 13.8573 8.62126 13.8573 8.61109 13.8573C8.60092 13.8573 8.5907 13.8573 8.58043 13.8573C8.57016 13.8573 8.55985 13.8573 8.54948 13.8573C8.53911 13.8573 8.52869 13.8573 8.51823 13.8573C8.50776 13.8573 8.49724 13.8573 8.48667 13.8573C8.4761 13.8573 8.46549 13.8573 8.45482 13.8573C8.28413 13.8573 8.10058 13.8573 7.9035 13.8573L7.9035 14.1719ZM18.8103 14.289L18.5849 14.5085L18.586 14.5097L18.8103 14.289ZM18.8111 16.6775L19.0236 16.9095L19.0302 16.9035L19.0365 16.897L18.8111 16.6775ZM18.7805 16.7056L18.568 16.4735L18.5653 16.4761L18.7805 16.7056ZM18.0837 16.952V16.6374H17.857L17.7853 16.8524L18.0837 16.952ZM16.3011 22.2929L16.0027 22.1933L16.0001 22.2012L15.9978 22.2092L16.3011 22.2929ZM15.9014 23.0432L15.676 22.8237L15.676 22.8237L15.9014 23.0432ZM8.39622 23.044L8.62161 22.8245L8.6216 22.8245L8.39622 23.044ZM7.99651 22.2929L8.29951 22.2082L8.29742 22.2007L8.29496 22.1934L7.99651 22.2929ZM6.21476 16.952L6.5132 16.8524L6.44146 16.6374H6.21476V16.952ZM5.48817 16.6767L5.71355 16.4572L5.71244 16.456L5.48817 16.6767ZM5.48734 14.2891L5.27151 14.0597L5.26195 14.0696L5.48734 14.2891ZM5.51713 14.261L5.73276 14.4901L5.73297 14.4899L5.51713 14.261ZM17.2039 16.9527L17.5021 17.053L17.6416 16.6381H17.2039V16.9527ZM7.096 16.9527V16.6381H6.65832L6.79779 17.053L7.096 16.9527ZM8.81155 22.0557L9.11471 21.9716L9.11245 21.9634L9.10976 21.9555L8.81155 22.0557ZM8.9961 22.4296L8.77069 22.6491L8.77072 22.6491L8.9961 22.4296ZM15.303 22.4296L15.526 22.6515L15.5283 22.6491L15.303 22.4296ZM15.4875 22.0566L15.1893 21.9563L15.1865 21.9646L15.1842 21.9731L15.4875 22.0566ZM6.09473 14.8973L5.91704 14.6377L5.89118 14.6554L5.86932 14.6779L6.09473 14.8973ZM6.08728 14.905L6.31266 15.1245L6.31269 15.1245L6.08728 14.905ZM6.08728 16.0631L6.3288 15.8615L6.32107 15.8522L6.31266 15.8436L6.08728 16.0631ZM18.2061 16.0699L18.398 16.3192L18.4158 16.3055L18.4314 16.2894L18.2061 16.0699ZM18.2127 16.0631L17.9873 15.8436L17.9873 15.8436L18.2127 16.0631ZM18.2127 14.905L17.9792 15.1162L17.9873 15.1245L18.2127 14.905ZM6.58783 1.87008V2.18469H6.71477L6.80617 2.0966L6.58783 1.87008ZM2.16703 1.9423L1.94166 1.72279L1.94165 1.72279L2.16703 1.9423ZM2.16703 5.39368L2.39998 5.18193L2.39242 5.17417L2.16703 5.39368ZM2.17862 5.40642L1.94581 5.61804L1.95743 5.63082L1.97038 5.64225L2.17862 5.40642ZM4.53469 5.54067L4.35407 5.79827L4.36385 5.80513L4.37412 5.81123L4.53469 5.54067ZM6.16829 6.51016L6.00773 6.78071L6.44262 7.03881L6.48195 6.53463L6.16829 6.51016ZM6.58622 5.70212L6.35147 5.49265L6.35146 5.49266L6.58622 5.70212ZM6.75835 1.94147L6.98377 1.72192L6.97954 1.71774L6.75835 1.94147ZM6.5887 1.86924V1.55463H6.46176L6.37036 1.64272L6.5887 1.86924ZM2.29871 1V0.685387L2.29175 1.31454L2.29871 1ZM7.35498 1.32798L7.58129 1.10941L7.58036 1.10846L7.35498 1.32798ZM7.20851 6.28836L7.44319 6.4979L7.44354 6.49751L7.20851 6.28836ZM7.01237 7.26211L7.32699 7.26564V7.26211H7.01237ZM6.95444 7.47963L6.68054 7.32484L6.68027 7.32532L6.95444 7.47963ZM6.3768 7.63767L6.21616 7.90818L6.21628 7.90826L6.3768 7.63767ZM4.1862 6.3368L4.34684 6.06629L4.27258 6.02218H4.1862V6.3368ZM1.59675 6.03601L1.81475 5.80913L1.81176 5.80633L1.59675 6.03601ZM1.56861 6.00967L1.34323 6.22918L1.3483 6.23438L1.3536 6.23935L1.56861 6.00967ZM1.56861 1.32795L1.34323 1.10844L1.34323 1.10844L1.56861 1.32795ZM2.33576 1.00082V1.31543L2.34272 0.686284L2.33576 1.00082ZM15.4391 11.7279V12.0425H15.7537V11.7279H15.4391ZM15.4361 11.7279V11.4133H15.1215V11.7279H15.4361ZM14.3013 10.5683V10.2537H13.9867V10.5683H14.3013ZM14.3043 10.5683V10.8829H14.6189V10.5683H14.3043ZM9.76358 11.7279V12.0425H10.0782V11.7279H9.76358ZM9.76212 11.7279V11.4133H9.4475V11.7279H9.76212ZM8.62733 10.5683V10.2537H8.31271V10.5683H8.62733ZM8.62879 10.5683V10.8829H8.9434V10.5683H8.62879ZM18.1689 14.3292C18.3274 14.3292 18.4753 14.396 18.5849 14.5085L19.0357 14.0695C18.8159 13.8439 18.5086 13.7 18.1689 13.7V14.3292ZM18.586 14.5097C18.6957 14.6211 18.7638 14.776 18.7638 14.9492H19.393C19.393 14.6075 19.2576 14.2951 19.0346 14.0684L18.586 14.5097ZM18.7638 14.9492V16.0173H19.393V14.9492H18.7638ZM18.7638 16.0173C18.7638 16.1899 18.6952 16.3456 18.5857 16.458L19.0365 16.897C19.2564 16.6712 19.393 16.3596 19.393 16.0173H18.7638ZM18.5986 16.4455L18.568 16.4736L18.993 16.9376L19.0236 16.9095L18.5986 16.4455ZM18.5653 16.4761C18.4569 16.5777 18.3163 16.6374 18.1681 16.6374V17.2666C18.4883 17.2666 18.7797 17.1376 18.9957 16.9351L18.5653 16.4761ZM18.1681 16.6374H18.0837V17.2666H18.1681V16.6374ZM17.7853 16.8524L16.0027 22.1933L16.5995 22.3925L18.3821 17.0516L17.7853 16.8524ZM15.9978 22.2092C15.9295 22.4566 15.8206 22.6752 15.676 22.8237L16.1268 23.2627C16.3695 23.0135 16.5188 22.6866 16.6044 22.3767L15.9978 22.2092ZM15.676 22.8237C15.5362 22.9672 15.3706 23.0489 15.1591 23.0489V23.6781C15.5616 23.6781 15.8842 23.5117 16.1268 23.2627L15.676 22.8237ZM15.1591 23.0489H9.13855V23.6781H15.1591V23.0489ZM9.13855 23.0489C8.92638 23.0489 8.76089 22.9675 8.62161 22.8245L8.17083 23.2635C8.41387 23.5131 8.73666 23.6781 9.13855 23.6781V23.0489ZM8.6216 22.8245C8.47816 22.6772 8.36979 22.4596 8.29951 22.2082L7.69352 22.3776C7.78048 22.6887 7.92864 23.0149 8.17084 23.2635L8.6216 22.8245ZM8.29496 22.1934L6.5132 16.8524L5.91631 17.0515L7.69807 22.3925L8.29496 22.1934ZM6.21476 16.6374H6.13035V17.2666H6.21476V16.6374ZM6.13035 16.6374C5.97206 16.6374 5.8241 16.5707 5.71355 16.4572L5.26279 16.8962C5.48324 17.1225 5.79043 17.2666 6.13035 17.2666V16.6374ZM5.71244 16.456C5.60337 16.3452 5.53466 16.1893 5.53466 16.0173H4.90543C4.90543 16.3585 5.04194 16.6717 5.26389 16.8973L5.71244 16.456ZM5.53466 16.0173V14.9493H4.90543V16.0173H5.53466ZM5.53466 14.9493C5.53466 14.7766 5.60326 14.621 5.71273 14.5086L5.26195 14.0696C5.04207 14.2953 4.90543 14.607 4.90543 14.9493H5.53466ZM5.70297 14.5182L5.73276 14.4901L5.30151 14.0319L5.27172 14.06L5.70297 14.5182ZM5.73297 14.4899C5.84022 14.3888 5.981 14.3292 6.13117 14.3292V13.7C5.81131 13.7 5.51845 13.8274 5.3013 14.0321L5.73297 14.4899ZM17.2039 16.6381H7.096V17.2674H17.2039V16.6381ZM6.79779 17.053L8.51334 22.156L9.10976 21.9555L7.39421 16.8525L6.79779 17.053ZM8.50839 22.1398C8.55492 22.3075 8.63358 22.5083 8.77069 22.6491L9.2215 22.2101C9.19641 22.1843 9.15259 22.1081 9.11471 21.9716L8.50839 22.1398ZM8.77072 22.6491C8.85586 22.7365 8.98034 22.8088 9.13927 22.8088V22.1795C9.15765 22.1795 9.1771 22.1839 9.19438 22.192C9.21057 22.1996 9.21925 22.2078 9.22148 22.2101L8.77072 22.6491ZM9.13927 22.8088H15.1598V22.1795H9.13927V22.8088ZM15.1598 22.8088C15.3197 22.8088 15.4437 22.7342 15.526 22.6515L15.08 22.2077C15.0818 22.2059 15.0893 22.1988 15.1038 22.1919C15.1194 22.1846 15.1389 22.1795 15.1598 22.1795V22.8088ZM15.5283 22.6491C15.6661 22.5076 15.7449 22.3072 15.7909 22.14L15.1842 21.9731C15.1474 22.1068 15.1037 22.1833 15.0776 22.2101L15.5283 22.6491ZM15.7857 22.1569L17.5021 17.053L16.9057 16.8525L15.1893 21.9563L15.7857 22.1569ZM18.1688 14.5717H6.13115V15.2009H18.1688V14.5717ZM6.13115 14.5717C6.05216 14.5717 5.97805 14.596 5.91704 14.6377L6.27242 15.157C6.23127 15.1851 6.182 15.2009 6.13115 15.2009V14.5717ZM5.86932 14.6779L5.86187 14.6855L6.31269 15.1245L6.32014 15.1168L5.86932 14.6779ZM5.86191 14.6855C5.79587 14.7533 5.75446 14.8483 5.75446 14.95H6.38369C6.38369 14.9867 6.37585 15.019 6.36487 15.0455C6.35399 15.0718 6.33727 15.0992 6.31266 15.1245L5.86191 14.6855ZM5.75446 14.95V16.0181H6.38369V14.95H5.75446ZM5.75446 16.0181C5.75446 16.1228 5.79745 16.2165 5.86191 16.2826L6.31266 15.8436C6.3556 15.8877 6.38369 15.949 6.38369 16.0181H5.75446ZM5.84577 16.2647C5.92637 16.3613 6.03894 16.3964 6.13114 16.3964V15.7672C6.18859 15.7672 6.26806 15.7887 6.3288 15.8615L5.84577 16.2647ZM6.13114 16.3964H18.1688V15.7672H6.13114V16.3964ZM18.1688 16.3964C18.2439 16.3964 18.3267 16.3741 18.398 16.3192L18.0141 15.8207C18.0655 15.781 18.1219 15.7672 18.1688 15.7672V16.3964ZM18.4314 16.2894L18.4381 16.2826L17.9873 15.8436L17.9807 15.8504L18.4314 16.2894ZM18.4381 16.2826C18.5041 16.2148 18.5455 16.1198 18.5455 16.0181H17.9163C17.9163 15.9814 17.9241 15.9491 17.9351 15.9226C17.946 15.8963 17.9627 15.8689 17.9873 15.8436L18.4381 16.2826ZM18.5455 16.0181V14.95H17.9163V16.0181H18.5455ZM18.5455 14.95C18.5455 14.8453 18.5025 14.7517 18.4381 14.6855L17.9873 15.1245C17.9444 15.0804 17.9163 15.0191 17.9163 14.95H18.5455ZM18.446 14.694C18.3715 14.6116 18.2688 14.5717 18.1688 14.5717V15.2009C18.1036 15.2009 18.0323 15.1746 17.9793 15.116L18.446 14.694ZM6.13117 14.3292C6.13764 14.3292 6.1441 14.3292 6.15057 14.3292C6.15703 14.3292 6.1635 14.3292 6.16996 14.3292C6.17641 14.3292 6.18287 14.3292 6.18932 14.3292C6.19578 14.3292 6.20223 14.3292 6.20868 14.3292C6.21512 14.3292 6.22157 14.3292 6.22801 14.3292C6.23445 14.3292 6.24089 14.3292 6.24733 14.3292C6.25377 14.3292 6.2602 14.3292 6.26663 14.3292C6.27306 14.3292 6.27949 14.3292 6.28592 14.3292C6.29234 14.3292 6.29877 14.3292 6.30519 14.3292C6.31161 14.3292 6.31803 14.3292 6.32444 14.3292C6.33086 14.3292 6.33727 14.3292 6.34368 14.3292C6.35009 14.3292 6.3565 14.3292 6.3629 14.3292C6.36931 14.3292 6.37571 14.3292 6.38211 14.3292C6.38851 14.3292 6.39491 14.3292 6.4013 14.3292C6.4077 14.3292 6.41409 14.3292 6.42048 14.3292C6.42687 14.3292 6.43326 14.3292 6.43964 14.3292C6.44603 14.3292 6.45241 14.3292 6.45879 14.3292C6.46517 14.3292 6.47155 14.3292 6.47792 14.3292C6.4843 14.3292 6.49067 14.3292 6.49705 14.3292C6.50342 14.3292 6.50979 14.3292 6.51615 14.3292C6.52252 14.3292 6.52888 14.3292 6.53524 14.3292C6.54161 14.3292 6.54797 14.3292 6.55432 14.3292C6.56068 14.3292 6.56704 14.3292 6.57339 14.3292C6.57974 14.3292 6.58609 14.3292 6.59244 14.3292C6.59879 14.3292 6.60514 14.3292 6.61148 14.3292C6.61783 14.3292 6.62417 14.3292 6.63051 14.3292C6.63685 14.3292 6.64319 14.3292 6.64953 14.3292C6.65586 14.3292 6.6622 14.3292 6.66853 14.3292C6.67486 14.3292 6.68119 14.3292 6.68752 14.3292C6.69385 14.3292 6.70017 14.3292 6.7065 14.3292C6.71282 14.3292 6.71914 14.3292 6.72546 14.3292C6.73178 14.3292 6.7381 14.3292 6.74442 14.3292C6.75074 14.3292 6.75705 14.3292 6.76336 14.3292C6.76968 14.3292 6.77599 14.3292 6.7823 14.3292C6.78861 14.3292 6.79491 14.3292 6.80122 14.3292C6.80752 14.3292 6.81383 14.3292 6.82013 14.3292C6.82643 14.3292 6.83273 14.3292 6.83903 14.3292C6.84533 14.3292 6.85163 14.3292 6.85792 14.3292C6.86422 14.3292 6.87051 14.3292 6.8768 14.3292C6.8831 14.3292 6.88939 14.3292 6.89567 14.3292C6.90196 14.3292 6.90825 14.3292 6.91453 14.3292C6.92082 14.3292 6.9271 14.3292 6.93339 14.3292C6.93967 14.3292 6.94595 14.3292 6.95223 14.3292C6.95851 14.3292 6.96479 14.3292 6.97106 14.3292C6.97734 14.3292 6.98361 14.3292 6.98989 14.3292C6.99616 14.3292 7.00243 14.3292 7.0087 14.3292C7.01497 14.3292 7.02124 14.3292 7.02751 14.3292C7.03378 14.3292 7.04004 14.3292 7.04631 14.3292C7.05257 14.3292 7.05883 14.3292 7.0651 14.3292C7.07136 14.3292 7.07762 14.3292 7.08388 14.3292C7.09014 14.3292 7.0964 14.3292 7.10265 14.3292C7.10891 14.3292 7.11517 14.3292 7.12142 14.3292C7.12767 14.3292 7.13393 14.3292 7.14018 14.3292C7.14643 14.3292 7.15268 14.3292 7.15893 14.3292C7.16518 14.3292 7.17143 14.3292 7.17768 14.3292C7.18393 14.3292 7.19017 14.3292 7.19642 14.3292C7.20266 14.3292 7.20891 14.3292 7.21515 14.3292C7.22139 14.3292 7.22763 14.3292 7.23388 14.3292C7.24012 14.3292 7.24636 14.3292 7.25259 14.3292C7.25883 14.3292 7.26507 14.3292 7.27131 14.3292C7.27755 14.3292 7.28378 14.3292 7.29002 14.3292C7.29625 14.3292 7.30249 14.3292 7.30872 14.3292C7.31495 14.3292 7.32118 14.3292 7.32742 14.3292C7.33365 14.3292 7.33988 14.3292 7.34611 14.3292C7.35234 14.3292 7.35857 14.3292 7.36479 14.3292C7.37102 14.3292 7.37725 14.3292 7.38348 14.3292C7.3897 14.3292 7.39593 14.3292 7.40215 14.3292C7.40838 14.3292 7.4146 14.3292 7.42083 14.3292C7.42705 14.3292 7.43327 14.3292 7.4395 14.3292C7.44572 14.3292 7.45194 14.3292 7.45816 14.3292C7.46438 14.3292 7.4706 14.3292 7.47682 14.3292C7.48304 14.3292 7.48926 14.3292 7.49548 14.3292C7.5017 14.3292 7.50792 14.3292 7.51413 14.3292C7.52035 14.3292 7.52657 14.3292 7.53278 14.3292C7.539 14.3292 7.54522 14.3292 7.55143 14.3292C7.55765 14.3292 7.56386 14.3292 7.57008 14.3292C7.57629 14.3292 7.5825 14.3292 7.58872 14.3292C7.59493 14.3292 7.60114 14.3292 7.60736 14.3292C7.61357 14.3292 7.61978 14.3292 7.626 14.3292C7.63221 14.3292 7.63842 14.3292 7.64463 14.3292C7.65084 14.3292 7.65705 14.3292 7.66326 14.3292C7.66948 14.3292 7.67569 14.3292 7.6819 14.3292C7.68811 14.3292 7.69432 14.3292 7.70053 14.3292C7.70674 14.3292 7.71295 14.3292 7.71916 14.3292C7.72537 14.3292 7.73158 14.3292 7.73778 14.3292C7.74399 14.3292 7.7502 14.3292 7.75641 14.3292C7.76262 14.3292 7.76883 14.3292 7.77504 14.3292C7.78125 14.3292 7.78746 14.3292 7.79367 14.3292C7.79987 14.3292 7.80608 14.3292 7.81229 14.3292C7.8185 14.3292 7.82471 14.3292 7.83092 14.3292C7.83713 14.3292 7.84333 14.3292 7.84954 14.3292C7.85575 14.3292 7.86196 14.3292 7.86817 14.3292C7.87438 14.3292 7.88059 14.3292 7.8868 14.3292C7.89301 14.3292 7.89922 14.3292 7.90542 14.3292C7.91163 14.3292 7.91784 14.3292 7.92405 14.3292C7.93026 14.3292 7.93647 14.3292 7.94268 14.3292C7.94889 14.3292 7.9551 14.3292 7.96131 14.3292C7.96752 14.3292 7.97374 14.3292 7.97995 14.3292C7.98616 14.3292 7.99237 14.3292 7.99858 14.3292C8.00479 14.3292 8.011 14.3292 8.01722 14.3292C8.02343 14.3292 8.02964 14.3292 8.03585 14.3292C8.04207 14.3292 8.04828 14.3292 8.0545 14.3292C8.06071 14.3292 8.06692 14.3292 8.07314 14.3292C8.07935 14.3292 8.08557 14.3292 8.09178 14.3292C8.098 14.3292 8.10422 14.3292 8.11043 14.3292C8.11665 14.3292 8.12287 14.3292 8.12908 14.3292C8.1353 14.3292 8.14152 14.3292 8.14774 14.3292C8.15396 14.3292 8.16018 14.3292 8.1664 14.3292C8.17262 14.3292 8.17884 14.3292 8.18506 14.3292C8.19128 14.3292 8.1975 14.3292 8.20373 14.3292C8.20995 14.3292 8.21617 14.3292 8.2224 14.3292C8.22862 14.3292 8.23484 14.3292 8.24107 14.3292C8.2473 14.3292 8.25352 14.3292 8.25975 14.3292C8.26598 14.3292 8.2722 14.3292 8.27843 14.3292C8.28466 14.3292 8.29089 14.3292 8.29712 14.3292C8.30335 14.3292 8.30958 14.3292 8.31581 14.3292C8.32205 14.3292 8.32828 14.3292 8.33451 14.3292C8.34075 14.3292 8.34698 14.3292 8.35322 14.3292C8.35945 14.3292 8.36569 14.3292 8.37193 14.3292C8.37816 14.3292 8.3844 14.3292 8.39064 14.3292C8.39688 14.3292 8.40312 14.3292 8.40936 14.3292C8.4156 14.3292 8.42185 14.3292 8.42809 14.3292C8.43433 14.3292 8.44058 14.3292 8.44682 14.3292C8.45307 14.3292 8.45932 14.3292 8.46556 14.3292C8.47181 14.3292 8.47806 14.3292 8.48431 14.3292C8.49056 14.3292 8.49681 14.3292 8.50307 14.3292C8.50932 14.3292 8.51557 14.3292 8.52183 14.3292C8.52808 14.3292 8.53434 14.3292 8.5406 14.3292C8.54686 14.3292 8.55311 14.3292 8.55937 14.3292C8.56564 14.3292 8.5719 14.3292 8.57816 14.3292C8.58442 14.3292 8.59069 14.3292 8.59695 14.3292C8.60322 14.3292 8.60948 14.3292 8.61575 14.3292C8.62202 14.3292 8.62829 14.3292 8.63456 14.3292C8.64083 14.3292 8.64711 14.3292 8.65338 14.3292C8.65965 14.3292 8.66593 14.3292 8.67221 14.3292C8.67848 14.3292 8.68476 14.3292 8.69104 14.3292C8.69732 14.3292 8.7036 14.3292 8.70989 14.3292C8.71617 14.3292 8.72246 14.3292 8.72874 14.3292C8.73503 14.3292 8.74132 14.3292 8.74761 14.3292C8.75389 14.3292 8.76019 14.3292 8.76648 14.3292C8.77277 14.3292 8.77907 14.3292 8.78536 14.3292C8.79166 14.3292 8.79796 14.3292 8.80426 14.3292C8.81056 14.3292 8.81686 14.3292 8.82316 14.3292C8.82946 14.3292 8.83577 14.3292 8.84207 14.3292C8.84838 14.3292 8.85469 14.3292 8.861 14.3292C8.86731 14.3292 8.87362 14.3292 8.87994 14.3292C8.88625 14.3292 8.89257 14.3292 8.89888 14.3292C8.9052 14.3292 8.91152 14.3292 8.91784 14.3292C8.92416 14.3292 8.93049 14.3292 8.93681 14.3292C8.94314 14.3292 8.94947 14.3292 8.9558 14.3292C8.96212 14.3292 8.96846 14.3292 8.97479 14.3292C8.98112 14.3292 8.98746 14.3292 8.9938 14.3292C9.00013 14.3292 9.00647 14.3292 9.01281 14.3292C9.01916 14.3292 9.0255 14.3292 9.03185 14.3292C9.03819 14.3292 9.04454 14.3292 9.05089 14.3292C9.05724 14.3292 9.06359 14.3292 9.06995 14.3292C9.0763 14.3292 9.08266 14.3292 9.08902 14.3292C9.09537 14.3292 9.10174 14.3292 9.1081 14.3292C9.11446 14.3292 9.12083 14.3292 9.1272 14.3292C9.13356 14.3292 9.13993 14.3292 9.14631 14.3292C9.15268 14.3292 9.15905 14.3292 9.16543 14.3292C9.17181 14.3292 9.17819 14.3292 9.18457 14.3292C9.19095 14.3292 9.19734 14.3292 9.20372 14.3292C9.21011 14.3292 9.2165 14.3292 9.22289 14.3292C9.22928 14.3292 9.23567 14.3292 9.24207 14.3292C9.24847 14.3292 9.25487 14.3292 9.26127 14.3292C9.26767 14.3292 9.27407 14.3292 9.28048 14.3292C9.28689 14.3292 9.2933 14.3292 9.29971 14.3292C9.30612 14.3292 9.31253 14.3292 9.31895 14.3292C9.32537 14.3292 9.33179 14.3292 9.33821 14.3292C9.34463 14.3292 9.35106 14.3292 9.35748 14.3292C9.36391 14.3292 9.37034 14.3292 9.37677 14.3292C9.38321 14.3292 9.38964 14.3292 9.39608 14.3292C9.40252 14.3292 9.40896 14.3292 9.4154 14.3292C9.42185 14.3292 9.42829 14.3292 9.43474 14.3292C9.44119 14.3292 9.44764 14.3292 9.4541 14.3292C9.46055 14.3292 9.46701 14.3292 9.47347 14.3292C9.47993 14.3292 9.4864 14.3292 9.49286 14.3292C9.49933 14.3292 9.5058 14.3292 9.51227 14.3292C9.51875 14.3292 9.52522 14.3292 9.5317 14.3292C9.53818 14.3292 9.54466 14.3292 9.55114 14.3292C9.55763 14.3292 9.56411 14.3292 9.5706 14.3292C9.5771 14.3292 9.58359 14.3292 9.59008 14.3292C9.59658 14.3292 9.60308 14.3292 9.60958 14.3292C9.61609 14.3292 9.62259 14.3292 9.6291 14.3292C9.63561 14.3292 9.64212 14.3292 9.64864 14.3292C9.65515 14.3292 9.66167 14.3292 9.66819 14.3292C9.67471 14.3292 9.68124 14.3292 9.68777 14.3292C9.69429 14.3292 9.70083 14.3292 9.70736 14.3292C9.7139 14.3292 9.72043 14.3292 9.72697 14.3292C9.73352 14.3292 9.74006 14.3292 9.74661 14.3292C9.75315 14.3292 9.75971 14.3292 9.76626 14.3292C9.77281 14.3292 9.77937 14.3292 9.78593 14.3292C9.7925 14.3292 9.79906 14.3292 9.80563 14.3292C9.8122 14.3292 9.81877 14.3292 9.82534 14.3292C9.83192 14.3292 9.8385 14.3292 9.84508 14.3292C9.85166 14.3292 9.85825 14.3292 9.86483 14.3292C9.87142 14.3292 9.87802 14.3292 9.88461 14.3292C9.89121 14.3292 9.89781 14.3292 9.90441 14.3292C9.91101 14.3292 9.91762 14.3292 9.92423 14.3292C9.93084 14.3292 9.93746 14.3292 9.94407 14.3292C9.95069 14.3292 9.95731 14.3292 9.96394 14.3292C9.97056 14.3292 9.97719 14.3292 9.98382 14.3292C9.99046 14.3292 9.99709 14.3292 10.0037 14.3292C10.0104 14.3292 10.017 14.3292 10.0237 14.3292C10.0303 14.3292 10.037 14.3292 10.0436 14.3292C10.0503 14.3292 10.0569 14.3292 10.0636 14.3292C10.0703 14.3292 10.0769 14.3292 10.0836 14.3292C10.0903 14.3292 10.0969 14.3292 10.1036 14.3292C10.1103 14.3292 10.117 14.3292 10.1237 14.3292C10.1304 14.3292 10.137 14.3292 10.1437 14.3292C10.1504 14.3292 10.1571 14.3292 10.1638 14.3292C10.1705 14.3292 10.1772 14.3292 10.184 14.3292C10.1907 14.3292 10.1974 14.3292 10.2041 14.3292C10.2108 14.3292 10.2175 14.3292 10.2243 14.3292C10.231 14.3292 10.2377 14.3292 10.2445 14.3292C10.2512 14.3292 10.2579 14.3292 10.2647 14.3292C10.2714 14.3292 10.2782 14.3292 10.2849 14.3292C10.2917 14.3292 10.2984 14.3292 10.3052 14.3292C10.3119 14.3292 10.3187 14.3292 10.3255 14.3292C10.3322 14.3292 10.339 14.3292 10.3458 14.3292C10.3526 14.3292 10.3594 14.3292 10.3661 14.3292C10.3729 14.3292 10.3797 14.3292 10.3865 14.3292C10.3933 14.3292 10.4001 14.3292 10.4069 14.3292C10.4137 14.3292 10.4205 14.3292 10.4273 14.3292C10.4342 14.3292 10.441 14.3292 10.4478 14.3292C10.4546 14.3292 10.4614 14.3292 10.4683 14.3292C10.4751 14.3292 10.4819 14.3292 10.4888 14.3292C10.4956 14.3292 10.5025 14.3292 10.5093 14.3292C10.5162 14.3292 10.523 14.3292 10.5299 14.3292C10.5367 14.3292 10.5436 14.3292 10.5505 14.3292C10.5573 14.3292 10.5642 14.3292 10.5711 14.3292C10.5779 14.3292 10.5848 14.3292 10.5917 14.3292C10.5986 14.3292 10.6055 14.3292 10.6124 14.3292C10.6193 14.3292 10.6262 14.3292 10.6331 14.3292C10.64 14.3292 10.6469 14.3292 10.6538 14.3292C10.6607 14.3292 10.6676 14.3292 10.6746 14.3292C10.6815 14.3292 10.6884 14.3292 10.6954 14.3292C10.7023 14.3292 10.7092 14.3292 10.7162 14.3292C10.7231 14.3292 10.7301 14.3292 10.737 14.3292C10.744 14.3292 10.7509 14.3292 10.7579 14.3292C10.7649 14.3292 10.7718 14.3292 10.7788 14.3292C10.7858 14.3292 10.7928 14.3292 10.7997 14.3292C10.8067 14.3292 10.8137 14.3292 10.8207 14.3292C10.8277 14.3292 10.8347 14.3292 10.8417 14.3292C10.8487 14.3292 10.8557 14.3292 10.8627 14.3292C10.8697 14.3292 10.8768 14.3292 10.8838 14.3292C10.8908 14.3292 10.8978 14.3292 10.9049 14.3292C10.9119 14.3292 10.9189 14.3292 10.926 14.3292C10.933 14.3292 10.9401 14.3292 10.9471 14.3292C10.9542 14.3292 10.9613 14.3292 10.9683 14.3292C10.9754 14.3292 10.9825 14.3292 10.9895 14.3292C10.9966 14.3292 11.0037 14.3292 11.0108 14.3292C11.0179 14.3292 11.025 14.3292 11.0321 14.3292C11.0392 14.3292 11.0463 14.3292 11.0534 14.3292C11.0605 14.3292 11.0676 14.3292 11.0747 14.3292C11.0818 14.3292 11.089 14.3292 11.0961 14.3292C11.1032 14.3292 11.1104 14.3292 11.1175 14.3292C11.1246 14.3292 11.1318 14.3292 11.1389 14.3292C11.1461 14.3292 11.1533 14.3292 11.1604 14.3292C11.1676 14.3292 11.1748 14.3292 11.1819 14.3292C11.1891 14.3292 11.1963 14.3292 11.2035 14.3292C11.2107 14.3292 11.2179 14.3292 11.2251 14.3292C11.2323 14.3292 11.2395 14.3292 11.2467 14.3292C11.2539 14.3292 11.2611 14.3292 11.2683 14.3292C11.2755 14.3292 11.2828 14.3292 11.29 14.3292C11.2972 14.3292 11.3045 14.3292 11.3117 14.3292C11.319 14.3292 11.3262 14.3292 11.3335 14.3292C11.3407 14.3292 11.348 14.3292 11.3552 14.3292C11.3625 14.3292 11.3698 14.3292 11.3771 14.3292C11.3843 14.3292 11.3916 14.3292 11.3989 14.3292C11.4062 14.3292 11.4135 14.3292 11.4208 14.3292C11.4281 14.3292 11.4354 14.3292 11.4427 14.3292C11.4501 14.3292 11.4574 14.3292 11.4647 14.3292C11.472 14.3292 11.4794 14.3292 11.4867 14.3292C11.4941 14.3292 11.5014 14.3292 11.5087 14.3292C11.5161 14.3292 11.5235 14.3292 11.5308 14.3292C11.5382 14.3292 11.5456 14.3292 11.5529 14.3292C11.5603 14.3292 11.5677 14.3292 11.5751 14.3292C11.5825 14.3292 11.5899 14.3292 11.5973 14.3292C11.6047 14.3292 11.6121 14.3292 11.6195 14.3292C11.6269 14.3292 11.6343 14.3292 11.6418 14.3292C11.6492 14.3292 11.6566 14.3292 11.6641 14.3292C11.6715 14.3292 11.6789 14.3292 11.6864 14.3292C11.6938 14.3292 11.7013 14.3292 11.7088 14.3292C11.7162 14.3292 11.7237 14.3292 11.7312 14.3292C11.7387 14.3292 11.7461 14.3292 11.7536 14.3292C11.7611 14.3292 11.7686 14.3292 11.7761 14.3292C11.7836 14.3292 11.7911 14.3292 11.7987 14.3292C11.8062 14.3292 11.8137 14.3292 11.8212 14.3292C11.8288 14.3292 11.8363 14.3292 11.8438 14.3292C11.8514 14.3292 11.8589 14.3292 11.8665 14.3292C11.874 14.3292 11.8816 14.3292 11.8892 14.3292C11.8967 14.3292 11.9043 14.3292 11.9119 14.3292C11.9195 14.3292 11.9271 14.3292 11.9347 14.3292C11.9423 14.3292 11.9499 14.3292 11.9575 14.3292C11.9651 14.3292 11.9727 14.3292 11.9803 14.3292C11.988 14.3292 11.9956 14.3292 12.0032 14.3292C12.0109 14.3292 12.0185 14.3292 12.0262 14.3292C12.0338 14.3292 12.0415 14.3292 12.0491 14.3292C12.0568 14.3292 12.0645 14.3292 12.0721 14.3292C12.0798 14.3292 12.0875 14.3292 12.0952 14.3292C12.1029 14.3292 12.1106 14.3292 12.1183 14.3292C12.126 14.3292 12.1337 14.3292 12.1414 14.3292C12.1492 14.3292 12.1569 14.3292 12.1646 14.3292C12.1724 14.3292 12.1801 14.3292 12.1879 14.3292C12.1956 14.3292 12.2034 14.3292 12.2111 14.3292C12.2189 14.3292 12.2267 14.3292 12.2344 14.3292C12.2422 14.3292 12.25 14.3292 12.2578 14.3292C12.2656 14.3292 12.2734 14.3292 12.2812 14.3292C12.289 14.3292 12.2968 14.3292 12.3046 14.3292C12.3125 14.3292 12.3203 14.3292 12.3281 14.3292C12.336 14.3292 12.3438 14.3292 12.3516 14.3292C12.3595 14.3292 12.3674 14.3292 12.3752 14.3292C12.3831 14.3292 12.391 14.3292 12.3988 14.3292C12.4067 14.3292 12.4146 14.3292 12.4225 14.3292C12.4304 14.3292 12.4383 14.3292 12.4462 14.3292C12.4541 14.3292 12.462 14.3292 12.47 14.3292C12.4779 14.3292 12.4858 14.3292 12.4937 14.3292C12.5017 14.3292 12.5096 14.3292 12.5176 14.3292C12.5255 14.3292 12.5335 14.3292 12.5415 14.3292C12.5494 14.3292 12.5574 14.3292 12.5654 14.3292C12.5734 14.3292 12.5814 14.3292 12.5894 14.3292C12.5974 14.3292 12.6054 14.3292 12.6134 14.3292C12.6214 14.3292 12.6295 14.3292 12.6375 14.3292C12.6455 14.3292 12.6536 14.3292 12.6616 14.3292C12.6696 14.3292 12.6777 14.3292 12.6858 14.3292C12.6938 14.3292 12.7019 14.3292 12.71 14.3292C12.718 14.3292 12.7261 14.3292 12.7342 14.3292C12.7423 14.3292 12.7504 14.3292 12.7585 14.3292C12.7666 14.3292 12.7748 14.3292 12.7829 14.3292C12.791 14.3292 12.7991 14.3292 12.8073 14.3292C12.8154 14.3292 12.8236 14.3292 12.8317 14.3292C12.8399 14.3292 12.8481 14.3292 12.8562 14.3292C12.8644 14.3292 12.8726 14.3292 12.8808 14.3292C12.889 14.3292 12.8972 14.3292 12.9054 14.3292C12.9136 14.3292 12.9218 14.3292 12.93 14.3292C12.9382 14.3292 12.9465 14.3292 12.9547 14.3292C12.9629 14.3292 12.9712 14.3292 12.9794 14.3292C12.9877 14.3292 12.9959 14.3292 13.0042 14.3292C13.0125 14.3292 13.0208 14.3292 13.0291 14.3292C13.0373 14.3292 13.0456 14.3292 13.0539 14.3292C13.0622 14.3292 13.0706 14.3292 13.0789 14.3292C13.0872 14.3292 13.0955 14.3292 13.1039 14.3292C13.1122 14.3292 13.1205 14.3292 13.1289 14.3292C13.1372 14.3292 13.1456 14.3292 13.154 14.3292C13.1624 14.3292 13.1707 14.3292 13.1791 14.3292C13.1875 14.3292 13.1959 14.3292 13.2043 14.3292C13.2127 14.3292 13.2211 14.3292 13.2295 14.3292C13.238 14.3292 13.2464 14.3292 13.2548 14.3292C13.2633 14.3292 13.2717 14.3292 13.2802 14.3292C13.2886 14.3292 13.2971 14.3292 13.3056 14.3292C13.314 14.3292 13.3225 14.3292 13.331 14.3292C13.3395 14.3292 13.348 14.3292 13.3565 14.3292C13.365 14.3292 13.3735 14.3292 13.3821 14.3292C13.3906 14.3292 13.3991 14.3292 13.4077 14.3292C13.4162 14.3292 13.4247 14.3292 13.4333 14.3292C13.4419 14.3292 13.4504 14.3292 13.459 14.3292C13.4676 14.3292 13.4762 14.3292 13.4848 14.3292C13.4934 14.3292 13.502 14.3292 13.5106 14.3292C13.5192 14.3292 13.5278 14.3292 13.5364 14.3292C13.5451 14.3292 13.5537 14.3292 13.5624 14.3292C13.571 14.3292 13.5797 14.3292 13.5883 14.3292C13.597 14.3292 13.6057 14.3292 13.6144 14.3292C13.623 14.3292 13.6317 14.3292 13.6404 14.3292C13.6491 14.3292 13.6579 14.3292 13.6666 14.3292C13.6753 14.3292 13.684 14.3292 13.6928 14.3292C13.7015 14.3292 13.7103 14.3292 13.719 14.3292C13.7278 14.3292 13.7365 14.3292 13.7453 14.3292C13.7541 14.3292 13.7629 14.3292 13.7717 14.3292C13.7805 14.3292 13.7893 14.3292 13.7981 14.3292C13.8069 14.3292 13.8157 14.3292 13.8245 14.3292C13.8334 14.3292 13.8422 14.3292 13.8511 14.3292C13.8599 14.3292 13.8688 14.3292 13.8776 14.3292C13.8865 14.3292 13.8954 14.3292 13.9043 14.3292C13.9131 14.3292 13.922 14.3292 13.931 14.3292C13.9399 14.3292 13.9488 14.3292 13.9577 14.3292C13.9666 14.3292 13.9756 14.3292 13.9845 14.3292C13.9934 14.3292 14.0024 14.3292 14.0114 14.3292C14.0203 14.3292 14.0293 14.3292 14.0383 14.3292C14.0472 14.3292 14.0562 14.3292 14.0652 14.3292C14.0742 14.3292 14.0833 14.3292 14.0923 14.3292C14.1013 14.3292 14.1103 14.3292 14.1194 14.3292C14.1284 14.3292 14.1374 14.3292 14.1465 14.3292C14.1556 14.3292 14.1646 14.3292 14.1737 14.3292C14.1828 14.3292 14.1919 14.3292 14.201 14.3292C14.2101 14.3292 14.2192 14.3292 14.2283 14.3292C14.2374 14.3292 14.2465 14.3292 14.2557 14.3292C14.2648 14.3292 14.2739 14.3292 14.2831 14.3292C14.2923 14.3292 14.3014 14.3292 14.3106 14.3292C14.3198 14.3292 14.329 14.3292 14.3382 14.3292C14.3473 14.3292 14.3566 14.3292 14.3658 14.3292C14.375 14.3292 14.3842 14.3292 14.3934 14.3292C14.4027 14.3292 14.4119 14.3292 14.4212 14.3292C14.4304 14.3292 14.4397 14.3292 14.449 14.3292C14.4582 14.3292 14.4675 14.3292 14.4768 14.3292C14.4861 14.3292 14.4954 14.3292 14.5047 14.3292C14.5141 14.3292 14.5234 14.3292 14.5327 14.3292C14.5421 14.3292 14.5514 14.3292 14.5608 14.3292C14.5701 14.3292 14.5795 14.3292 14.5888 14.3292C14.5982 14.3292 14.6076 14.3292 14.617 14.3292C14.6264 14.3292 14.6358 14.3292 14.6452 14.3292C14.6546 14.3292 14.6641 14.3292 14.6735 14.3292C14.6829 14.3292 14.6924 14.3292 14.7019 14.3292C14.7113 14.3292 14.7208 14.3292 14.7303 14.3292C14.7397 14.3292 14.7492 14.3292 14.7587 14.3292C14.7682 14.3292 14.7777 14.3292 14.7873 14.3292C14.7968 14.3292 14.8063 14.3292 14.8158 14.3292C14.8254 14.3292 14.8349 14.3292 14.8445 14.3292C14.8541 14.3292 14.8636 14.3292 14.8732 14.3292C14.8828 14.3292 14.8924 14.3292 14.902 14.3292C14.9116 14.3292 14.9212 14.3292 14.9308 14.3292C14.9405 14.3292 14.9501 14.3292 14.9597 14.3292C14.9694 14.3292 14.9791 14.3292 14.9887 14.3292C14.9984 14.3292 15.0081 14.3292 15.0178 14.3292C15.0274 14.3292 15.0371 14.3292 15.0469 14.3292C15.0566 14.3292 15.0663 14.3292 15.076 14.3292C15.0858 14.3292 15.0955 14.3292 15.1052 14.3292C15.115 14.3292 15.1248 14.3292 15.1345 14.3292C15.1443 14.3292 15.1541 14.3292 15.1639 14.3292C15.1737 14.3292 15.1835 14.3292 15.1933 14.3292C15.2031 14.3292 15.213 14.3292 15.2228 14.3292C15.2327 14.3292 15.2425 14.3292 15.2524 14.3292C15.2622 14.3292 15.2721 14.3292 15.282 14.3292C15.2919 14.3292 15.3018 14.3292 15.3117 14.3292C15.3216 14.3292 15.3315 14.3292 15.3414 14.3292C15.3513 14.3292 15.3613 14.3292 15.3712 14.3292C15.3812 14.3292 15.3912 14.3292 15.4011 14.3292C15.4111 14.3292 15.4211 14.3292 15.4311 14.3292C15.4411 14.3292 15.4511 14.3292 15.4611 14.3292C15.4711 14.3292 15.4811 14.3292 15.4912 14.3292C15.5012 14.3292 15.5113 14.3292 15.5213 14.3292C15.5314 14.3292 15.5415 14.3292 15.5515 14.3292C15.5616 14.3292 15.5717 14.3292 15.5818 14.3292C15.5919 14.3292 15.6021 14.3292 15.6122 14.3292C15.6223 14.3292 15.6325 14.3292 15.6426 14.3292C15.6528 14.3292 15.6629 14.3292 15.6731 14.3292C15.6833 14.3292 15.6935 14.3292 15.7037 14.3292C15.7139 14.3292 15.7241 14.3292 15.7343 14.3292C15.7445 14.3292 15.7547 14.3292 15.765 14.3292C15.7752 14.3292 15.7855 14.3292 15.7958 14.3292C15.806 14.3292 15.8163 14.3292 15.8266 14.3292C15.8369 14.3292 15.8472 14.3292 15.8575 14.3292C15.8678 14.3292 15.8781 14.3292 15.8885 14.3292C15.8988 14.3292 15.9092 14.3292 15.9195 14.3292C15.9299 14.3292 15.9403 14.3292 15.9506 14.3292C15.961 14.3292 15.9714 14.3292 15.9818 14.3292C15.9922 14.3292 16.0026 14.3292 16.0131 14.3292C16.0235 14.3292 16.0339 14.3292 16.0444 14.3292C16.0549 14.3292 16.0653 14.3292 16.0758 14.3292C16.0863 14.3292 16.0968 14.3292 16.1073 14.3292C16.1178 14.3292 16.1283 14.3292 16.1388 14.3292C16.1493 14.3292 16.1599 14.3292 16.1704 14.3292C16.181 14.3292 16.1915 14.3292 16.2021 14.3292C16.2127 14.3292 16.2233 14.3292 16.2339 14.3292C16.2445 14.3292 16.2551 14.3292 16.2657 14.3292C16.2763 14.3292 16.2869 14.3292 16.2976 14.3292C16.3082 14.3292 16.3189 14.3292 16.3295 14.3292C16.3402 14.3292 16.3509 14.3292 16.3616 14.3292C16.3723 14.3292 16.383 14.3292 16.3937 14.3292C16.4044 14.3292 16.4152 14.3292 16.4259 14.3292C16.4366 14.3292 16.4474 14.3292 16.4582 14.3292C16.4689 14.3292 16.4797 14.3292 16.4905 14.3292C16.5013 14.3292 16.5121 14.3292 16.5229 14.3292C16.5337 14.3292 16.5445 14.3292 16.5554 14.3292C16.5662 14.3292 16.5771 14.3292 16.5879 14.3292C16.5988 14.3292 16.6097 14.3292 16.6206 14.3292C16.6315 14.3292 16.6424 14.3292 16.6533 14.3292C16.6642 14.3292 16.6751 14.3292 16.6861 14.3292C16.697 14.3292 16.708 14.3292 16.7189 14.3292C16.7299 14.3292 16.7409 14.3292 16.7518 14.3292C16.7628 14.3292 16.7738 14.3292 16.7848 14.3292C16.7959 14.3292 16.8069 14.3292 16.8179 14.3292C16.829 14.3292 16.84 14.3292 16.8511 14.3292C16.8622 14.3292 16.8732 14.3292 16.8843 14.3292C16.8954 14.3292 16.9065 14.3292 16.9176 14.3292C16.9287 14.3292 16.9399 14.3292 16.951 14.3292C16.9621 14.3292 16.9733 14.3292 16.9845 14.3292C16.9956 14.3292 17.0068 14.3292 17.018 14.3292C17.0292 14.3292 17.0404 14.3292 17.0516 14.3292C17.0628 14.3292 17.0741 14.3292 17.0853 14.3292C17.0966 14.3292 17.1078 14.3292 17.1191 14.3292C17.1303 14.3292 17.1416 14.3292 17.1529 14.3292C17.1642 14.3292 17.1755 14.3292 17.1868 14.3292C17.1982 14.3292 17.2095 14.3292 17.2208 14.3292C17.2322 14.3292 17.2435 14.3292 17.2549 14.3292C17.2663 14.3292 17.2777 14.3292 17.2891 14.3292C17.3005 14.3292 17.3119 14.3292 17.3233 14.3292C17.3347 14.3292 17.3462 14.3292 17.3576 14.3292C17.3691 14.3292 17.3805 14.3292 17.392 14.3292C17.4035 14.3292 17.415 14.3292 17.4265 14.3292C17.438 14.3292 17.4495 14.3292 17.461 14.3292C17.4726 14.3292 17.4841 14.3292 17.4957 14.3292C17.5072 14.3292 17.5188 14.3292 17.5304 14.3292C17.542 14.3292 17.5535 14.3292 17.5652 14.3292C17.5768 14.3292 17.5884 14.3292 17.6 14.3292C17.6117 14.3292 17.6233 14.3292 17.635 14.3292C17.6466 14.3292 17.6583 14.3292 17.67 14.3292C17.6817 14.3292 17.6934 14.3292 17.7051 14.3292C17.7168 14.3292 17.7286 14.3292 17.7403 14.3292C17.752 14.3292 17.7638 14.3292 17.7756 14.3292C17.7873 14.3292 17.7991 14.3292 17.8109 14.3292C17.8227 14.3292 17.8345 14.3292 17.8464 14.3292C17.8582 14.3292 17.87 14.3292 17.8819 14.3292C17.8937 14.3292 17.9056 14.3292 17.9175 14.3292C17.9293 14.3292 17.9412 14.3292 17.9531 14.3292C17.965 14.3292 17.977 14.3292 17.9889 14.3292C18.0008 14.3292 18.0128 14.3292 18.0247 14.3292C18.0367 14.3292 18.0487 14.3292 18.0607 14.3292C18.0727 14.3292 18.0847 14.3292 18.0967 14.3292C18.1087 14.3292 18.1207 14.3292 18.1328 14.3292C18.1448 14.3292 18.1569 14.3292 18.1689 14.3292V13.7C18.1569 13.7 18.1448 13.7 18.1328 13.7C18.1207 13.7 18.1087 13.7 18.0967 13.7C18.0847 13.7 18.0727 13.7 18.0607 13.7C18.0487 13.7 18.0367 13.7 18.0247 13.7C18.0128 13.7 18.0008 13.7 17.9889 13.7C17.977 13.7 17.965 13.7 17.9531 13.7C17.9412 13.7 17.9293 13.7 17.9175 13.7C17.9056 13.7 17.8937 13.7 17.8819 13.7C17.87 13.7 17.8582 13.7 17.8464 13.7C17.8345 13.7 17.8227 13.7 17.8109 13.7C17.7991 13.7 17.7873 13.7 17.7756 13.7C17.7638 13.7 17.752 13.7 17.7403 13.7C17.7286 13.7 17.7168 13.7 17.7051 13.7C17.6934 13.7 17.6817 13.7 17.67 13.7C17.6583 13.7 17.6466 13.7 17.635 13.7C17.6233 13.7 17.6117 13.7 17.6 13.7C17.5884 13.7 17.5768 13.7 17.5652 13.7C17.5535 13.7 17.542 13.7 17.5304 13.7C17.5188 13.7 17.5072 13.7 17.4957 13.7C17.4841 13.7 17.4726 13.7 17.461 13.7C17.4495 13.7 17.438 13.7 17.4265 13.7C17.415 13.7 17.4035 13.7 17.392 13.7C17.3805 13.7 17.3691 13.7 17.3576 13.7C17.3462 13.7 17.3347 13.7 17.3233 13.7C17.3119 13.7 17.3005 13.7 17.2891 13.7C17.2777 13.7 17.2663 13.7 17.2549 13.7C17.2435 13.7 17.2322 13.7 17.2208 13.7C17.2095 13.7 17.1982 13.7 17.1868 13.7C17.1755 13.7 17.1642 13.7 17.1529 13.7C17.1416 13.7 17.1303 13.7 17.1191 13.7C17.1078 13.7 17.0966 13.7 17.0853 13.7C17.0741 13.7 17.0628 13.7 17.0516 13.7C17.0404 13.7 17.0292 13.7 17.018 13.7C17.0068 13.7 16.9956 13.7 16.9845 13.7C16.9733 13.7 16.9621 13.7 16.951 13.7C16.9399 13.7 16.9287 13.7 16.9176 13.7C16.9065 13.7 16.8954 13.7 16.8843 13.7C16.8732 13.7 16.8622 13.7 16.8511 13.7C16.84 13.7 16.829 13.7 16.8179 13.7C16.8069 13.7 16.7959 13.7 16.7848 13.7C16.7738 13.7 16.7628 13.7 16.7518 13.7C16.7409 13.7 16.7299 13.7 16.7189 13.7C16.708 13.7 16.697 13.7 16.6861 13.7C16.6751 13.7 16.6642 13.7 16.6533 13.7C16.6424 13.7 16.6315 13.7 16.6206 13.7C16.6097 13.7 16.5988 13.7 16.5879 13.7C16.5771 13.7 16.5662 13.7 16.5554 13.7C16.5445 13.7 16.5337 13.7 16.5229 13.7C16.5121 13.7 16.5013 13.7 16.4905 13.7C16.4797 13.7 16.4689 13.7 16.4582 13.7C16.4474 13.7 16.4366 13.7 16.4259 13.7C16.4152 13.7 16.4044 13.7 16.3937 13.7C16.383 13.7 16.3723 13.7 16.3616 13.7C16.3509 13.7 16.3402 13.7 16.3295 13.7C16.3189 13.7 16.3082 13.7 16.2976 13.7C16.2869 13.7 16.2763 13.7 16.2657 13.7C16.2551 13.7 16.2445 13.7 16.2339 13.7C16.2233 13.7 16.2127 13.7 16.2021 13.7C16.1915 13.7 16.181 13.7 16.1704 13.7C16.1599 13.7 16.1493 13.7 16.1388 13.7C16.1283 13.7 16.1178 13.7 16.1073 13.7C16.0968 13.7 16.0863 13.7 16.0758 13.7C16.0653 13.7 16.0549 13.7 16.0444 13.7C16.0339 13.7 16.0235 13.7 16.0131 13.7C16.0026 13.7 15.9922 13.7 15.9818 13.7C15.9714 13.7 15.961 13.7 15.9506 13.7C15.9403 13.7 15.9299 13.7 15.9195 13.7C15.9092 13.7 15.8988 13.7 15.8885 13.7C15.8781 13.7 15.8678 13.7 15.8575 13.7C15.8472 13.7 15.8369 13.7 15.8266 13.7C15.8163 13.7 15.806 13.7 15.7958 13.7C15.7855 13.7 15.7752 13.7 15.765 13.7C15.7547 13.7 15.7445 13.7 15.7343 13.7C15.7241 13.7 15.7139 13.7 15.7037 13.7C15.6935 13.7 15.6833 13.7 15.6731 13.7C15.6629 13.7 15.6528 13.7 15.6426 13.7C15.6325 13.7 15.6223 13.7 15.6122 13.7C15.6021 13.7 15.5919 13.7 15.5818 13.7C15.5717 13.7 15.5616 13.7 15.5515 13.7C15.5415 13.7 15.5314 13.7 15.5213 13.7C15.5113 13.7 15.5012 13.7 15.4912 13.7C15.4811 13.7 15.4711 13.7 15.4611 13.7C15.4511 13.7 15.4411 13.7 15.4311 13.7C15.4211 13.7 15.4111 13.7 15.4011 13.7C15.3912 13.7 15.3812 13.7 15.3712 13.7C15.3613 13.7 15.3513 13.7 15.3414 13.7C15.3315 13.7 15.3216 13.7 15.3117 13.7C15.3018 13.7 15.2919 13.7 15.282 13.7C15.2721 13.7 15.2622 13.7 15.2524 13.7C15.2425 13.7 15.2327 13.7 15.2228 13.7C15.213 13.7 15.2031 13.7 15.1933 13.7C15.1835 13.7 15.1737 13.7 15.1639 13.7C15.1541 13.7 15.1443 13.7 15.1345 13.7C15.1248 13.7 15.115 13.7 15.1052 13.7C15.0955 13.7 15.0858 13.7 15.076 13.7C15.0663 13.7 15.0566 13.7 15.0469 13.7C15.0371 13.7 15.0274 13.7 15.0178 13.7C15.0081 13.7 14.9984 13.7 14.9887 13.7C14.9791 13.7 14.9694 13.7 14.9597 13.7C14.9501 13.7 14.9405 13.7 14.9308 13.7C14.9212 13.7 14.9116 13.7 14.902 13.7C14.8924 13.7 14.8828 13.7 14.8732 13.7C14.8636 13.7 14.8541 13.7 14.8445 13.7C14.8349 13.7 14.8254 13.7 14.8158 13.7C14.8063 13.7 14.7968 13.7 14.7873 13.7C14.7777 13.7 14.7682 13.7 14.7587 13.7C14.7492 13.7 14.7397 13.7 14.7303 13.7C14.7208 13.7 14.7113 13.7 14.7019 13.7C14.6924 13.7 14.6829 13.7 14.6735 13.7C14.6641 13.7 14.6546 13.7 14.6452 13.7C14.6358 13.7 14.6264 13.7 14.617 13.7C14.6076 13.7 14.5982 13.7 14.5888 13.7C14.5795 13.7 14.5701 13.7 14.5608 13.7C14.5514 13.7 14.5421 13.7 14.5327 13.7C14.5234 13.7 14.5141 13.7 14.5047 13.7C14.4954 13.7 14.4861 13.7 14.4768 13.7C14.4675 13.7 14.4582 13.7 14.449 13.7C14.4397 13.7 14.4304 13.7 14.4212 13.7C14.4119 13.7 14.4027 13.7 14.3934 13.7C14.3842 13.7 14.375 13.7 14.3658 13.7C14.3566 13.7 14.3473 13.7 14.3382 13.7C14.329 13.7 14.3198 13.7 14.3106 13.7C14.3014 13.7 14.2923 13.7 14.2831 13.7C14.2739 13.7 14.2648 13.7 14.2557 13.7C14.2465 13.7 14.2374 13.7 14.2283 13.7C14.2192 13.7 14.2101 13.7 14.201 13.7C14.1919 13.7 14.1828 13.7 14.1737 13.7C14.1646 13.7 14.1556 13.7 14.1465 13.7C14.1374 13.7 14.1284 13.7 14.1194 13.7C14.1103 13.7 14.1013 13.7 14.0923 13.7C14.0833 13.7 14.0742 13.7 14.0652 13.7C14.0562 13.7 14.0472 13.7 14.0383 13.7C14.0293 13.7 14.0203 13.7 14.0114 13.7C14.0024 13.7 13.9934 13.7 13.9845 13.7C13.9756 13.7 13.9666 13.7 13.9577 13.7C13.9488 13.7 13.9399 13.7 13.931 13.7C13.922 13.7 13.9131 13.7 13.9043 13.7C13.8954 13.7 13.8865 13.7 13.8776 13.7C13.8688 13.7 13.8599 13.7 13.8511 13.7C13.8422 13.7 13.8334 13.7 13.8245 13.7C13.8157 13.7 13.8069 13.7 13.7981 13.7C13.7893 13.7 13.7805 13.7 13.7717 13.7C13.7629 13.7 13.7541 13.7 13.7453 13.7C13.7365 13.7 13.7278 13.7 13.719 13.7C13.7103 13.7 13.7015 13.7 13.6928 13.7C13.684 13.7 13.6753 13.7 13.6666 13.7C13.6579 13.7 13.6491 13.7 13.6404 13.7C13.6317 13.7 13.623 13.7 13.6144 13.7C13.6057 13.7 13.597 13.7 13.5883 13.7C13.5797 13.7 13.571 13.7 13.5624 13.7C13.5537 13.7 13.5451 13.7 13.5364 13.7C13.5278 13.7 13.5192 13.7 13.5106 13.7C13.502 13.7 13.4934 13.7 13.4848 13.7C13.4762 13.7 13.4676 13.7 13.459 13.7C13.4504 13.7 13.4419 13.7 13.4333 13.7C13.4247 13.7 13.4162 13.7 13.4077 13.7C13.3991 13.7 13.3906 13.7 13.3821 13.7C13.3735 13.7 13.365 13.7 13.3565 13.7C13.348 13.7 13.3395 13.7 13.331 13.7C13.3225 13.7 13.314 13.7 13.3056 13.7C13.2971 13.7 13.2886 13.7 13.2802 13.7C13.2717 13.7 13.2633 13.7 13.2548 13.7C13.2464 13.7 13.238 13.7 13.2295 13.7C13.2211 13.7 13.2127 13.7 13.2043 13.7C13.1959 13.7 13.1875 13.7 13.1791 13.7C13.1707 13.7 13.1624 13.7 13.154 13.7C13.1456 13.7 13.1372 13.7 13.1289 13.7C13.1205 13.7 13.1122 13.7 13.1039 13.7C13.0955 13.7 13.0872 13.7 13.0789 13.7C13.0706 13.7 13.0622 13.7 13.0539 13.7C13.0456 13.7 13.0373 13.7 13.0291 13.7C13.0208 13.7 13.0125 13.7 13.0042 13.7C12.9959 13.7 12.9877 13.7 12.9794 13.7C12.9712 13.7 12.9629 13.7 12.9547 13.7C12.9465 13.7 12.9382 13.7 12.93 13.7C12.9218 13.7 12.9136 13.7 12.9054 13.7C12.8972 13.7 12.889 13.7 12.8808 13.7C12.8726 13.7 12.8644 13.7 12.8562 13.7C12.8481 13.7 12.8399 13.7 12.8317 13.7C12.8236 13.7 12.8154 13.7 12.8073 13.7C12.7991 13.7 12.791 13.7 12.7829 13.7C12.7748 13.7 12.7666 13.7 12.7585 13.7C12.7504 13.7 12.7423 13.7 12.7342 13.7C12.7261 13.7 12.718 13.7 12.71 13.7C12.7019 13.7 12.6938 13.7 12.6858 13.7C12.6777 13.7 12.6696 13.7 12.6616 13.7C12.6536 13.7 12.6455 13.7 12.6375 13.7C12.6295 13.7 12.6214 13.7 12.6134 13.7C12.6054 13.7 12.5974 13.7 12.5894 13.7C12.5814 13.7 12.5734 13.7 12.5654 13.7C12.5574 13.7 12.5494 13.7 12.5415 13.7C12.5335 13.7 12.5255 13.7 12.5176 13.7C12.5096 13.7 12.5017 13.7 12.4937 13.7C12.4858 13.7 12.4779 13.7 12.47 13.7C12.462 13.7 12.4541 13.7 12.4462 13.7C12.4383 13.7 12.4304 13.7 12.4225 13.7C12.4146 13.7 12.4067 13.7 12.3988 13.7C12.391 13.7 12.3831 13.7 12.3752 13.7C12.3674 13.7 12.3595 13.7 12.3516 13.7C12.3438 13.7 12.336 13.7 12.3281 13.7C12.3203 13.7 12.3125 13.7 12.3046 13.7C12.2968 13.7 12.289 13.7 12.2812 13.7C12.2734 13.7 12.2656 13.7 12.2578 13.7C12.25 13.7 12.2422 13.7 12.2344 13.7C12.2267 13.7 12.2189 13.7 12.2111 13.7C12.2034 13.7 12.1956 13.7 12.1879 13.7C12.1801 13.7 12.1724 13.7 12.1646 13.7C12.1569 13.7 12.1492 13.7 12.1414 13.7C12.1337 13.7 12.126 13.7 12.1183 13.7C12.1106 13.7 12.1029 13.7 12.0952 13.7C12.0875 13.7 12.0798 13.7 12.0721 13.7C12.0645 13.7 12.0568 13.7 12.0491 13.7C12.0415 13.7 12.0338 13.7 12.0262 13.7C12.0185 13.7 12.0109 13.7 12.0032 13.7C11.9956 13.7 11.988 13.7 11.9803 13.7C11.9727 13.7 11.9651 13.7 11.9575 13.7C11.9499 13.7 11.9423 13.7 11.9347 13.7C11.9271 13.7 11.9195 13.7 11.9119 13.7C11.9043 13.7 11.8967 13.7 11.8892 13.7C11.8816 13.7 11.874 13.7 11.8665 13.7C11.8589 13.7 11.8514 13.7 11.8438 13.7C11.8363 13.7 11.8288 13.7 11.8212 13.7C11.8137 13.7 11.8062 13.7 11.7987 13.7C11.7911 13.7 11.7836 13.7 11.7761 13.7C11.7686 13.7 11.7611 13.7 11.7536 13.7C11.7461 13.7 11.7387 13.7 11.7312 13.7C11.7237 13.7 11.7162 13.7 11.7088 13.7C11.7013 13.7 11.6938 13.7 11.6864 13.7C11.6789 13.7 11.6715 13.7 11.6641 13.7C11.6566 13.7 11.6492 13.7 11.6418 13.7C11.6343 13.7 11.6269 13.7 11.6195 13.7C11.6121 13.7 11.6047 13.7 11.5973 13.7C11.5899 13.7 11.5825 13.7 11.5751 13.7C11.5677 13.7 11.5603 13.7 11.5529 13.7C11.5456 13.7 11.5382 13.7 11.5308 13.7C11.5235 13.7 11.5161 13.7 11.5087 13.7C11.5014 13.7 11.4941 13.7 11.4867 13.7C11.4794 13.7 11.472 13.7 11.4647 13.7C11.4574 13.7 11.4501 13.7 11.4427 13.7C11.4354 13.7 11.4281 13.7 11.4208 13.7C11.4135 13.7 11.4062 13.7 11.3989 13.7C11.3916 13.7 11.3843 13.7 11.3771 13.7C11.3698 13.7 11.3625 13.7 11.3552 13.7C11.348 13.7 11.3407 13.7 11.3335 13.7C11.3262 13.7 11.319 13.7 11.3117 13.7C11.3045 13.7 11.2972 13.7 11.29 13.7C11.2828 13.7 11.2755 13.7 11.2683 13.7C11.2611 13.7 11.2539 13.7 11.2467 13.7C11.2395 13.7 11.2323 13.7 11.2251 13.7C11.2179 13.7 11.2107 13.7 11.2035 13.7C11.1963 13.7 11.1891 13.7 11.1819 13.7C11.1748 13.7 11.1676 13.7 11.1604 13.7C11.1533 13.7 11.1461 13.7 11.1389 13.7C11.1318 13.7 11.1246 13.7 11.1175 13.7C11.1104 13.7 11.1032 13.7 11.0961 13.7C11.089 13.7 11.0818 13.7 11.0747 13.7C11.0676 13.7 11.0605 13.7 11.0534 13.7C11.0463 13.7 11.0392 13.7 11.0321 13.7C11.025 13.7 11.0179 13.7 11.0108 13.7C11.0037 13.7 10.9966 13.7 10.9895 13.7C10.9825 13.7 10.9754 13.7 10.9683 13.7C10.9613 13.7 10.9542 13.7 10.9471 13.7C10.9401 13.7 10.933 13.7 10.926 13.7C10.9189 13.7 10.9119 13.7 10.9049 13.7C10.8978 13.7 10.8908 13.7 10.8838 13.7C10.8768 13.7 10.8697 13.7 10.8627 13.7C10.8557 13.7 10.8487 13.7 10.8417 13.7C10.8347 13.7 10.8277 13.7 10.8207 13.7C10.8137 13.7 10.8067 13.7 10.7997 13.7C10.7928 13.7 10.7858 13.7 10.7788 13.7C10.7718 13.7 10.7649 13.7 10.7579 13.7C10.7509 13.7 10.744 13.7 10.737 13.7C10.7301 13.7 10.7231 13.7 10.7162 13.7C10.7092 13.7 10.7023 13.7 10.6954 13.7C10.6884 13.7 10.6815 13.7 10.6746 13.7C10.6676 13.7 10.6607 13.7 10.6538 13.7C10.6469 13.7 10.64 13.7 10.6331 13.7C10.6262 13.7 10.6193 13.7 10.6124 13.7C10.6055 13.7 10.5986 13.7 10.5917 13.7C10.5848 13.7 10.5779 13.7 10.5711 13.7C10.5642 13.7 10.5573 13.7 10.5505 13.7C10.5436 13.7 10.5367 13.7 10.5299 13.7C10.523 13.7 10.5162 13.7 10.5093 13.7C10.5025 13.7 10.4956 13.7 10.4888 13.7C10.4819 13.7 10.4751 13.7 10.4683 13.7C10.4614 13.7 10.4546 13.7 10.4478 13.7C10.441 13.7 10.4342 13.7 10.4273 13.7C10.4205 13.7 10.4137 13.7 10.4069 13.7C10.4001 13.7 10.3933 13.7 10.3865 13.7C10.3797 13.7 10.3729 13.7 10.3661 13.7C10.3594 13.7 10.3526 13.7 10.3458 13.7C10.339 13.7 10.3322 13.7 10.3255 13.7C10.3187 13.7 10.3119 13.7 10.3052 13.7C10.2984 13.7 10.2917 13.7 10.2849 13.7C10.2782 13.7 10.2714 13.7 10.2647 13.7C10.2579 13.7 10.2512 13.7 10.2445 13.7C10.2377 13.7 10.231 13.7 10.2243 13.7C10.2175 13.7 10.2108 13.7 10.2041 13.7C10.1974 13.7 10.1907 13.7 10.184 13.7C10.1772 13.7 10.1705 13.7 10.1638 13.7C10.1571 13.7 10.1504 13.7 10.1437 13.7C10.137 13.7 10.1304 13.7 10.1237 13.7C10.117 13.7 10.1103 13.7 10.1036 13.7C10.0969 13.7 10.0903 13.7 10.0836 13.7C10.0769 13.7 10.0703 13.7 10.0636 13.7C10.0569 13.7 10.0503 13.7 10.0436 13.7C10.037 13.7 10.0303 13.7 10.0237 13.7C10.017 13.7 10.0104 13.7 10.0037 13.7C9.99709 13.7 9.99046 13.7 9.98382 13.7C9.97719 13.7 9.97056 13.7 9.96394 13.7C9.95731 13.7 9.95069 13.7 9.94407 13.7C9.93746 13.7 9.93084 13.7 9.92423 13.7C9.91762 13.7 9.91101 13.7 9.90441 13.7C9.89781 13.7 9.89121 13.7 9.88461 13.7C9.87802 13.7 9.87142 13.7 9.86483 13.7C9.85825 13.7 9.85166 13.7 9.84508 13.7C9.8385 13.7 9.83192 13.7 9.82534 13.7C9.81877 13.7 9.8122 13.7 9.80563 13.7C9.79906 13.7 9.7925 13.7 9.78593 13.7C9.77937 13.7 9.77281 13.7 9.76626 13.7C9.75971 13.7 9.75315 13.7 9.74661 13.7C9.74006 13.7 9.73352 13.7 9.72697 13.7C9.72043 13.7 9.7139 13.7 9.70736 13.7C9.70083 13.7 9.69429 13.7 9.68777 13.7C9.68124 13.7 9.67471 13.7 9.66819 13.7C9.66167 13.7 9.65515 13.7 9.64864 13.7C9.64212 13.7 9.63561 13.7 9.6291 13.7C9.62259 13.7 9.61609 13.7 9.60958 13.7C9.60308 13.7 9.59658 13.7 9.59008 13.7C9.58359 13.7 9.5771 13.7 9.5706 13.7C9.56411 13.7 9.55763 13.7 9.55114 13.7C9.54466 13.7 9.53818 13.7 9.5317 13.7C9.52522 13.7 9.51875 13.7 9.51227 13.7C9.5058 13.7 9.49933 13.7 9.49286 13.7C9.4864 13.7 9.47993 13.7 9.47347 13.7C9.46701 13.7 9.46055 13.7 9.4541 13.7C9.44764 13.7 9.44119 13.7 9.43474 13.7C9.42829 13.7 9.42185 13.7 9.4154 13.7C9.40896 13.7 9.40252 13.7 9.39608 13.7C9.38964 13.7 9.38321 13.7 9.37677 13.7C9.37034 13.7 9.36391 13.7 9.35748 13.7C9.35106 13.7 9.34463 13.7 9.33821 13.7C9.33179 13.7 9.32537 13.7 9.31895 13.7C9.31253 13.7 9.30612 13.7 9.29971 13.7C9.2933 13.7 9.28689 13.7 9.28048 13.7C9.27407 13.7 9.26767 13.7 9.26127 13.7C9.25487 13.7 9.24847 13.7 9.24207 13.7C9.23567 13.7 9.22928 13.7 9.22289 13.7C9.2165 13.7 9.21011 13.7 9.20372 13.7C9.19734 13.7 9.19095 13.7 9.18457 13.7C9.17819 13.7 9.17181 13.7 9.16543 13.7C9.15905 13.7 9.15268 13.7 9.14631 13.7C9.13993 13.7 9.13356 13.7 9.1272 13.7C9.12083 13.7 9.11446 13.7 9.1081 13.7C9.10174 13.7 9.09537 13.7 9.08902 13.7C9.08266 13.7 9.0763 13.7 9.06995 13.7C9.06359 13.7 9.05724 13.7 9.05089 13.7C9.04454 13.7 9.03819 13.7 9.03185 13.7C9.0255 13.7 9.01916 13.7 9.01281 13.7C9.00647 13.7 9.00013 13.7 8.9938 13.7C8.98746 13.7 8.98112 13.7 8.97479 13.7C8.96846 13.7 8.96212 13.7 8.9558 13.7C8.94947 13.7 8.94314 13.7 8.93681 13.7C8.93049 13.7 8.92416 13.7 8.91784 13.7C8.91152 13.7 8.9052 13.7 8.89888 13.7C8.89257 13.7 8.88625 13.7 8.87994 13.7C8.87362 13.7 8.86731 13.7 8.861 13.7C8.85469 13.7 8.84838 13.7 8.84207 13.7C8.83577 13.7 8.82946 13.7 8.82316 13.7C8.81686 13.7 8.81056 13.7 8.80426 13.7C8.79796 13.7 8.79166 13.7 8.78536 13.7C8.77907 13.7 8.77277 13.7 8.76648 13.7C8.76019 13.7 8.75389 13.7 8.74761 13.7C8.74132 13.7 8.73503 13.7 8.72874 13.7C8.72246 13.7 8.71617 13.7 8.70989 13.7C8.7036 13.7 8.69732 13.7 8.69104 13.7C8.68476 13.7 8.67848 13.7 8.67221 13.7C8.66593 13.7 8.65965 13.7 8.65338 13.7C8.64711 13.7 8.64083 13.7 8.63456 13.7C8.62829 13.7 8.62202 13.7 8.61575 13.7C8.60948 13.7 8.60322 13.7 8.59695 13.7C8.59069 13.7 8.58442 13.7 8.57816 13.7C8.5719 13.7 8.56564 13.7 8.55937 13.7C8.55311 13.7 8.54686 13.7 8.5406 13.7C8.53434 13.7 8.52808 13.7 8.52183 13.7C8.51557 13.7 8.50932 13.7 8.50307 13.7C8.49681 13.7 8.49056 13.7 8.48431 13.7C8.47806 13.7 8.47181 13.7 8.46556 13.7C8.45932 13.7 8.45307 13.7 8.44682 13.7C8.44058 13.7 8.43433 13.7 8.42809 13.7C8.42185 13.7 8.4156 13.7 8.40936 13.7C8.40312 13.7 8.39688 13.7 8.39064 13.7C8.3844 13.7 8.37816 13.7 8.37193 13.7C8.36569 13.7 8.35945 13.7 8.35322 13.7C8.34698 13.7 8.34075 13.7 8.33451 13.7C8.32828 13.7 8.32205 13.7 8.31581 13.7C8.30958 13.7 8.30335 13.7 8.29712 13.7C8.29089 13.7 8.28466 13.7 8.27843 13.7C8.2722 13.7 8.26598 13.7 8.25975 13.7C8.25352 13.7 8.2473 13.7 8.24107 13.7C8.23484 13.7 8.22862 13.7 8.2224 13.7C8.21617 13.7 8.20995 13.7 8.20373 13.7C8.1975 13.7 8.19128 13.7 8.18506 13.7C8.17884 13.7 8.17262 13.7 8.1664 13.7C8.16018 13.7 8.15396 13.7 8.14774 13.7C8.14152 13.7 8.1353 13.7 8.12908 13.7C8.12287 13.7 8.11665 13.7 8.11043 13.7C8.10422 13.7 8.098 13.7 8.09178 13.7C8.08557 13.7 8.07935 13.7 8.07314 13.7C8.06692 13.7 8.06071 13.7 8.0545 13.7C8.04828 13.7 8.04207 13.7 8.03585 13.7C8.02964 13.7 8.02343 13.7 8.01722 13.7C8.011 13.7 8.00479 13.7 7.99858 13.7C7.99237 13.7 7.98616 13.7 7.97995 13.7C7.97374 13.7 7.96752 13.7 7.96131 13.7C7.9551 13.7 7.94889 13.7 7.94268 13.7C7.93647 13.7 7.93026 13.7 7.92405 13.7C7.91784 13.7 7.91163 13.7 7.90542 13.7C7.89922 13.7 7.89301 13.7 7.8868 13.7C7.88059 13.7 7.87438 13.7 7.86817 13.7C7.86196 13.7 7.85575 13.7 7.84954 13.7C7.84333 13.7 7.83713 13.7 7.83092 13.7C7.82471 13.7 7.8185 13.7 7.81229 13.7C7.80608 13.7 7.79987 13.7 7.79367 13.7C7.78746 13.7 7.78125 13.7 7.77504 13.7C7.76883 13.7 7.76262 13.7 7.75641 13.7C7.7502 13.7 7.74399 13.7 7.73778 13.7C7.73158 13.7 7.72537 13.7 7.71916 13.7C7.71295 13.7 7.70674 13.7 7.70053 13.7C7.69432 13.7 7.68811 13.7 7.6819 13.7C7.67569 13.7 7.66948 13.7 7.66326 13.7C7.65705 13.7 7.65084 13.7 7.64463 13.7C7.63842 13.7 7.63221 13.7 7.626 13.7C7.61978 13.7 7.61357 13.7 7.60736 13.7C7.60114 13.7 7.59493 13.7 7.58872 13.7C7.5825 13.7 7.57629 13.7 7.57008 13.7C7.56386 13.7 7.55765 13.7 7.55143 13.7C7.54522 13.7 7.539 13.7 7.53278 13.7C7.52657 13.7 7.52035 13.7 7.51413 13.7C7.50792 13.7 7.5017 13.7 7.49548 13.7C7.48926 13.7 7.48304 13.7 7.47682 13.7C7.4706 13.7 7.46438 13.7 7.45816 13.7C7.45194 13.7 7.44572 13.7 7.4395 13.7C7.43327 13.7 7.42705 13.7 7.42083 13.7C7.4146 13.7 7.40838 13.7 7.40215 13.7C7.39593 13.7 7.3897 13.7 7.38348 13.7C7.37725 13.7 7.37102 13.7 7.36479 13.7C7.35857 13.7 7.35234 13.7 7.34611 13.7C7.33988 13.7 7.33365 13.7 7.32742 13.7C7.32118 13.7 7.31495 13.7 7.30872 13.7C7.30249 13.7 7.29625 13.7 7.29002 13.7C7.28378 13.7 7.27755 13.7 7.27131 13.7C7.26507 13.7 7.25883 13.7 7.25259 13.7C7.24636 13.7 7.24012 13.7 7.23388 13.7C7.22763 13.7 7.22139 13.7 7.21515 13.7C7.20891 13.7 7.20266 13.7 7.19642 13.7C7.19017 13.7 7.18393 13.7 7.17768 13.7C7.17143 13.7 7.16518 13.7 7.15893 13.7C7.15268 13.7 7.14643 13.7 7.14018 13.7C7.13393 13.7 7.12767 13.7 7.12142 13.7C7.11517 13.7 7.10891 13.7 7.10265 13.7C7.0964 13.7 7.09014 13.7 7.08388 13.7C7.07762 13.7 7.07136 13.7 7.0651 13.7C7.05883 13.7 7.05257 13.7 7.04631 13.7C7.04004 13.7 7.03378 13.7 7.02751 13.7C7.02124 13.7 7.01497 13.7 7.0087 13.7C7.00243 13.7 6.99616 13.7 6.98989 13.7C6.98361 13.7 6.97734 13.7 6.97106 13.7C6.96479 13.7 6.95851 13.7 6.95223 13.7C6.94595 13.7 6.93967 13.7 6.93339 13.7C6.9271 13.7 6.92082 13.7 6.91453 13.7C6.90825 13.7 6.90196 13.7 6.89567 13.7C6.88939 13.7 6.8831 13.7 6.8768 13.7C6.87051 13.7 6.86422 13.7 6.85792 13.7C6.85163 13.7 6.84533 13.7 6.83903 13.7C6.83273 13.7 6.82643 13.7 6.82013 13.7C6.81383 13.7 6.80752 13.7 6.80122 13.7C6.79491 13.7 6.78861 13.7 6.7823 13.7C6.77599 13.7 6.76968 13.7 6.76336 13.7C6.75705 13.7 6.75074 13.7 6.74442 13.7C6.7381 13.7 6.73178 13.7 6.72546 13.7C6.71914 13.7 6.71282 13.7 6.7065 13.7C6.70017 13.7 6.69385 13.7 6.68752 13.7C6.68119 13.7 6.67486 13.7 6.66853 13.7C6.6622 13.7 6.65586 13.7 6.64953 13.7C6.64319 13.7 6.63685 13.7 6.63051 13.7C6.62417 13.7 6.61783 13.7 6.61148 13.7C6.60514 13.7 6.59879 13.7 6.59244 13.7C6.58609 13.7 6.57974 13.7 6.57339 13.7C6.56704 13.7 6.56068 13.7 6.55432 13.7C6.54797 13.7 6.54161 13.7 6.53524 13.7C6.52888 13.7 6.52252 13.7 6.51615 13.7C6.50979 13.7 6.50342 13.7 6.49705 13.7C6.49067 13.7 6.4843 13.7 6.47792 13.7C6.47155 13.7 6.46517 13.7 6.45879 13.7C6.45241 13.7 6.44603 13.7 6.43964 13.7C6.43326 13.7 6.42687 13.7 6.42048 13.7C6.41409 13.7 6.4077 13.7 6.4013 13.7C6.39491 13.7 6.38851 13.7 6.38211 13.7C6.37571 13.7 6.36931 13.7 6.3629 13.7C6.3565 13.7 6.35009 13.7 6.34368 13.7C6.33727 13.7 6.33086 13.7 6.32444 13.7C6.31803 13.7 6.31161 13.7 6.30519 13.7C6.29877 13.7 6.29234 13.7 6.28592 13.7C6.27949 13.7 6.27306 13.7 6.26663 13.7C6.2602 13.7 6.25377 13.7 6.24733 13.7C6.24089 13.7 6.23445 13.7 6.22801 13.7C6.22157 13.7 6.21512 13.7 6.20868 13.7C6.20223 13.7 6.19578 13.7 6.18932 13.7C6.18287 13.7 6.17641 13.7 6.16996 13.7C6.1635 13.7 6.15703 13.7 6.15057 13.7C6.1441 13.7 6.13764 13.7 6.13117 13.7V14.3292ZM6.58783 1.55547H2.33503V2.18469H6.58783V1.55547ZM2.33503 1.55547C2.17776 1.55547 2.03883 1.62302 1.94166 1.72279L2.39241 2.16182C2.3813 2.17322 2.36154 2.18469 2.33503 2.18469V1.55547ZM1.94165 1.72279C1.84452 1.82252 1.78208 1.96129 1.78208 2.11479H2.4113C2.4113 2.13403 2.40348 2.15045 2.39241 2.16181L1.94165 1.72279ZM1.78208 2.11479V5.22119H2.4113V2.11479H1.78208ZM1.78208 5.22119C1.78208 5.37469 1.84453 5.51346 1.94165 5.61318L2.39242 5.17417C2.40347 5.18552 2.4113 5.20194 2.4113 5.22119H1.78208ZM1.93422 5.60529L1.94581 5.61804L2.41143 5.1948L2.39984 5.18206L1.93422 5.60529ZM1.97038 5.64225C2.06606 5.72675 2.19461 5.78051 2.33503 5.78051V5.15129C2.35628 5.15129 2.37393 5.15917 2.38686 5.17059L1.97038 5.64225ZM2.33503 5.78051H4.29718V5.15129H2.33503V5.78051ZM4.29718 5.78051C4.31886 5.78051 4.33796 5.78698 4.35407 5.79827L4.71531 5.28307C4.59569 5.1992 4.45094 5.15129 4.29718 5.15129V5.78051ZM4.37412 5.81123L6.00773 6.78071L6.32886 6.2396L4.69525 5.27012L4.37412 5.81123ZM6.48195 6.53463C6.50189 6.27909 6.62114 6.13555 6.82098 5.91157L6.35146 5.49266C6.15407 5.7139 5.89263 5.99861 5.85463 6.48569L6.48195 6.53463ZM6.82097 5.91158C6.92126 5.79918 7.14165 5.57182 7.14165 5.24667H6.51242C6.51242 5.265 6.50745 5.2893 6.48247 5.33004C6.45421 5.37613 6.41372 5.42289 6.35147 5.49265L6.82097 5.91158ZM7.14165 5.24667V2.11395H6.51242V5.24667H7.14165ZM7.14165 2.11395C7.14165 1.96367 7.08294 1.82382 6.98373 1.72195L6.53297 2.16098C6.51817 2.14579 6.51242 2.12829 6.51242 2.11395H7.14165ZM6.97954 1.71774C6.8834 1.62268 6.7468 1.55463 6.5887 1.55463V2.18386C6.56135 2.18386 6.54392 2.17188 6.53716 2.16519L6.97954 1.71774ZM6.37036 1.64272L6.36949 1.64356L6.80617 2.0966L6.80703 2.09576L6.37036 1.64272ZM2.29871 1.31461H6.58783V0.685387H2.29871V1.31461ZM6.58783 1.31461C6.79606 1.31461 6.9878 1.4019 7.12961 1.54749L7.58036 1.10846C7.32824 0.849604 6.97712 0.685387 6.58783 0.685387V1.31461ZM7.12868 1.54654C7.2712 1.6941 7.35981 1.89555 7.35981 2.11564H7.98903C7.98903 1.72393 7.83104 1.36801 7.58128 1.10941L7.12868 1.54654ZM7.35981 2.11564V5.24836H7.98903V2.11564H7.35981ZM7.35981 5.24836C7.35981 5.6395 7.19525 5.83 6.97348 6.07922L7.44354 6.49751C7.67691 6.23525 7.98903 5.89043 7.98903 5.24836H7.35981ZM6.97382 6.07883C6.92688 6.13141 6.86276 6.20275 6.81218 6.27763C6.76381 6.34924 6.69776 6.46633 6.69776 6.6121H7.32699C7.32699 6.6356 7.32151 6.64961 7.32104 6.65077C7.32076 6.65147 7.32341 6.64491 7.3336 6.62983C7.35605 6.5966 7.39 6.55748 7.44319 6.4979L6.97382 6.07883ZM6.69776 6.6121V7.26211H7.32699V6.6121H6.69776ZM6.69778 7.25859C6.69751 7.28298 6.69167 7.30516 6.68054 7.32484L7.22834 7.63442C7.29501 7.51645 7.32558 7.3891 7.32697 7.26564L6.69778 7.25859ZM6.68027 7.32532C6.64862 7.38156 6.58467 7.39519 6.53731 7.36709L6.21628 7.90826C6.5728 8.11976 7.02689 7.99235 7.22861 7.63394L6.68027 7.32532ZM6.53744 7.36716L4.34684 6.06629L4.02556 6.60731L6.21616 7.90818L6.53744 7.36716ZM4.1862 6.02218H2.33577V6.65141H4.1862V6.02218ZM2.33577 6.02218C2.13733 6.02218 1.95348 5.94248 1.81473 5.80915L1.37877 6.26287C1.62733 6.5017 1.96482 6.65141 2.33577 6.65141V6.02218ZM1.81176 5.80633L1.78362 5.77999L1.3536 6.23935L1.38174 6.26569L1.81176 5.80633ZM1.79399 5.79016C1.65251 5.6449 1.56461 5.4443 1.56461 5.22201H0.935387C0.935387 5.61321 1.09079 5.96999 1.34323 6.22918L1.79399 5.79016ZM1.56461 5.22201V2.11561H0.935387V5.22201H1.56461ZM1.56461 2.11561C1.56461 1.89349 1.65322 1.692 1.79399 1.54746L1.34323 1.10844C1.09174 1.36666 0.935387 1.72424 0.935387 2.11561H1.56461ZM1.79399 1.54746C1.93534 1.40233 2.12692 1.31543 2.33576 1.31543V0.686207C1.94709 0.686207 1.5958 0.849112 1.34323 1.10844L1.79399 1.54746ZM2.34272 0.686284L2.30567 0.685464L2.29175 1.31454L2.3288 1.31536L2.34272 0.686284ZM14.6159 5.27259C14.6159 3.84538 13.4589 2.68839 12.0317 2.68839V3.31762C13.1114 3.31762 13.9867 4.19289 13.9867 5.27259H14.6159ZM12.0317 7.85678C13.4589 7.85678 14.6159 6.69979 14.6159 5.27259H13.9867C13.9867 6.35229 13.1114 7.22756 12.0317 7.22756V7.85678ZM9.4475 5.27259C9.4475 6.69979 10.6044 7.85678 12.0317 7.85678V7.22756C10.952 7.22756 10.0767 6.35229 10.0767 5.27259H9.4475ZM12.0317 2.68839C10.6044 2.68839 9.4475 3.84538 9.4475 5.27259H10.0767C10.0767 4.19289 10.952 3.31762 12.0317 3.31762V2.68839ZM15.7537 9.62262C15.7537 8.71768 15.0201 7.98408 14.1152 7.98408V8.61331C14.6726 8.61331 15.1245 9.06519 15.1245 9.62262H15.7537ZM15.7537 11.7279V9.62262H15.1245V11.7279H15.7537ZM15.4361 12.0425H15.4391V11.4133H15.4361V12.0425ZM15.7507 11.917V11.7279H15.1215V11.917H15.7507ZM14.8687 12.799C15.3558 12.799 15.7507 12.4042 15.7507 11.917H15.1215C15.1215 12.0566 15.0083 12.1698 14.8687 12.1698V12.799ZM13.9867 11.917C13.9867 12.4041 14.3816 12.799 14.8687 12.799V12.1698C14.7291 12.1698 14.6159 12.0566 14.6159 11.917H13.9867ZM13.9867 10.5683V11.917H14.6159V10.5683H13.9867ZM14.3043 10.2537H14.3013V10.8829H14.3043V10.2537ZM13.9897 9.62262V10.5683H14.6189V9.62262H13.9897ZM14.1152 9.7481C14.0459 9.7481 13.9897 9.6919 13.9897 9.62262H14.6189C14.6189 9.34439 14.3934 9.11887 14.1152 9.11887V9.7481ZM9.95271 9.7481H14.1152V9.11887H9.95271V9.7481ZM10.0782 9.62262C10.0782 9.69192 10.022 9.7481 9.95271 9.7481V9.11887C9.67452 9.11887 9.44896 9.34436 9.44896 9.62262H10.0782ZM10.0782 11.7279V9.62262H9.44896V11.7279H10.0782ZM9.76212 12.0425H9.76358V11.4133H9.76212V12.0425ZM10.0767 11.917V11.7279H9.4475V11.917H10.0767ZM9.19472 12.799C9.68184 12.799 10.0767 12.4041 10.0767 11.917H9.4475C9.4475 12.0566 9.33432 12.1698 9.19472 12.1698V12.799ZM8.31271 11.917C8.31271 12.4041 8.7076 12.799 9.19472 12.799V12.1698C9.05512 12.1698 8.94194 12.0566 8.94194 11.917H8.31271ZM8.31271 10.5683V11.917H8.94194V10.5683H8.31271ZM8.62879 10.2537H8.62733V10.8829H8.62879V10.2537ZM8.31417 9.62262V10.5683H8.9434V9.62262H8.31417ZM9.95271 7.98408C9.04777 7.98408 8.31417 8.71768 8.31417 9.62262H8.9434C8.9434 9.06519 9.39528 8.61331 9.95271 8.61331V7.98408ZM14.1152 7.98408H9.95271V8.61331H14.1152V7.98408ZM11.2122 5.27277C11.2122 4.8198 11.5794 4.45259 12.0324 4.45259V3.82336C11.2319 3.82336 10.583 4.47228 10.583 5.27277H11.2122ZM12.0324 6.09295C11.5794 6.09295 11.2122 5.72574 11.2122 5.27277H10.583C10.583 6.07326 11.2319 6.72217 12.0324 6.72217V6.09295ZM12.8526 5.27277C12.8526 5.72574 12.4853 6.09295 12.0324 6.09295V6.72217C12.8328 6.72217 13.4818 6.07326 13.4818 5.27277H12.8526ZM12.0324 4.45259C12.4853 4.45259 12.8526 4.8198 12.8526 5.27277H13.4818C13.4818 4.47228 12.8328 3.82336 12.0324 3.82336V4.45259Z\" fill=\"#F9F9F9\" mask=\"url(#path-1-outside-1_788_210)\"/> </svg>'},kOYY0G93O:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3.76843 4.05601C3.8621 4.20896 4.02576 4.30928 4.2414 4.34599C4.36786 4.36773 4.46464 4.46586 4.48223 4.59044C4.52117 4.86484 4.61926 5.05866 4.77392 5.16661C4.87305 5.23572 5.02418 5.26819 5.20241 5.26819C5.72506 5.26819 6.48016 4.98899 6.83615 4.53728C7.00657 4.32071 7.06995 4.0664 7.0194 3.8019C6.96148 3.49904 6.75662 3.21941 6.47143 3.05383C6.27674 2.94068 6.02893 2.91571 5.73471 2.97958C5.59642 3.00957 5.45717 2.93287 5.41094 2.80134C5.28758 2.44942 5.03758 2.2656 4.70735 2.28358C4.40025 2.30069 4.11891 2.52385 3.91519 2.912C3.72573 3.27292 3.60997 3.79667 3.76843 4.05601Z\" fill=\"#F9F9F9\"/> <path d=\"M15.2104 18.9042C14.9471 18.8346 14.6984 18.7688 14.5609 18.6898C14.1639 18.4617 13.6281 17.8457 13.8803 17.1634C13.986 16.8773 14.4323 16.6338 14.826 16.4189C15.3755 16.1191 15.9437 15.8092 15.7724 15.2943C15.5551 14.6418 14.9432 14.8153 14.5382 14.9302C14.3804 14.9749 14.2313 15.0172 14.1225 15.0172C13.9066 15.0172 13.6764 14.9034 13.587 14.7523C13.5251 14.6479 13.564 14.577 13.5768 14.5537C13.637 14.4438 13.7787 14.3862 13.9428 14.3194C14.1639 14.2295 14.4145 14.1276 14.5508 13.858C14.7781 13.4087 14.6813 12.4268 14.2201 11.8815C14.0316 11.6587 13.7268 11.5201 13.3146 11.4696C13.0899 11.4418 12.9233 11.254 12.9273 11.0327C12.9366 10.5286 12.8389 10.1819 12.6369 10.0025C12.5115 9.89106 12.3476 9.84558 12.1629 9.87089C11.9534 9.89971 11.6928 10.0317 11.6408 10.4967C11.6101 10.7711 11.6541 11.0991 11.6966 11.4162C11.7319 11.6795 11.7909 12.12 11.7153 12.1977C11.5679 12.3492 11.322 12.3603 11.0372 12.3732C10.8115 12.3834 10.5558 12.3951 10.3083 12.4822C9.98119 12.5974 9.75681 12.9487 9.53986 13.2885C9.34775 13.5894 9.14908 13.9005 8.90183 14.019C8.70802 14.1119 8.34156 14.1237 7.98714 14.135C7.34209 14.1558 6.61091 14.1793 6.42255 14.7027C6.22951 15.24 6.64373 15.5278 6.94625 15.738C7.12391 15.8614 7.29171 15.978 7.3544 16.1193C7.56559 16.5967 7.64373 17.7167 7.35942 17.8782C7.19314 17.9724 7.07402 17.9067 6.84187 17.7345C6.73217 17.6532 6.61876 17.5691 6.48938 17.5299C6.29111 17.4701 6.10978 17.5199 5.94975 17.5638C5.81551 17.6008 5.69949 17.6327 5.59358 17.5984C5.52169 17.5753 5.4659 17.4762 5.40143 17.3614C5.29919 17.1795 5.15924 16.9306 4.84219 16.8835C4.38175 16.8146 3.59382 17.0583 3.35801 17.6114C3.22124 17.9319 3.35054 18.2277 3.46456 18.4887C3.54558 18.6742 3.62211 18.8493 3.607 19.0198C3.59107 19.1976 3.47098 19.3658 3.34382 19.5439C3.16157 19.7991 2.95505 20.0884 3.00861 20.4782C3.073 20.9496 3.41925 21.1134 3.69754 21.2451C3.82465 21.3052 3.94479 21.3621 4.01921 21.4383C4.09377 21.5146 4.13607 21.7658 4.16999 21.9676C4.23817 22.3727 4.32295 22.8768 4.76222 22.8768C5.15274 22.8768 5.29408 22.5031 5.40762 22.2028C5.47319 22.0294 5.54753 21.8328 5.63746 21.8035C5.73882 21.7704 5.80932 21.815 5.97026 21.9413C6.11637 22.056 6.29822 22.1987 6.56324 22.2134C7.08803 22.2435 7.9802 21.6787 8.10299 21.2402C8.15001 21.0721 8.11853 20.8906 8.08806 20.7151C8.04402 20.4612 8.00242 20.2213 8.17869 20.0237C8.32977 19.8543 8.58291 19.8329 8.82767 19.8122C9.08845 19.7901 9.35805 19.7674 9.50214 19.5504C9.61494 19.3803 9.6276 19.1695 9.63882 18.9835C9.65436 18.7249 9.67444 18.5967 9.79104 18.5386C9.9037 18.4825 10.006 18.5323 10.1919 18.6327C10.3684 18.728 10.5878 18.8467 10.858 18.8035C11.1031 18.7641 11.2486 18.5666 11.3893 18.3755C11.578 18.1193 11.7407 17.8979 12.1278 17.9663C12.5097 18.0338 12.5561 18.2384 12.6329 18.5775C12.6857 18.8102 12.7455 19.074 12.9446 19.3007C13.1816 19.5705 13.606 19.7139 14.0165 19.8526C14.3718 19.9726 14.7744 20.1086 14.8407 20.2874C14.8936 20.4299 14.8842 20.6418 14.875 20.8466C14.8572 21.2436 14.8329 21.7873 15.3851 21.9019C15.6497 21.9566 15.9359 21.8448 16.1911 21.5872C16.6286 21.1456 16.8731 20.4177 16.7596 19.8942C16.6262 19.2786 15.8411 19.071 15.2104 18.9042Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9153 18.9267C11.5019 18.9267 11.178 19.3599 11.178 19.9128C11.178 20.466 11.5019 20.8994 11.9153 20.8994C12.3286 20.8994 12.6522 20.466 12.6522 19.9128C12.6522 19.3599 12.3286 18.9267 11.9153 18.9267Z\" fill=\"#F9F9F9\"/> <path d=\"M14.3249 21.675C14.0434 21.4938 13.7268 21.418 13.4781 21.4721C13.3292 21.5045 13.2122 21.5812 13.1398 21.694C12.9402 22.004 13.148 22.4814 13.6129 22.7809C13.8402 22.9272 14.0807 23 14.2906 23C14.5103 23 14.6964 22.9202 14.7985 22.7616C14.9976 22.4516 14.7895 21.9743 14.3249 21.675Z\" fill=\"#F9F9F9\"/> <path d=\"M9.24953 21.4136C9.59501 21.4136 9.87507 21.1335 9.87507 20.7881C9.87507 20.4426 9.59501 20.1625 9.24953 20.1625C8.90406 20.1625 8.62399 20.4426 8.62399 20.7881C8.62399 21.1335 8.90406 21.4136 9.24953 21.4136Z\" fill=\"#F9F9F9\"/> <path d=\"M18.6874 5.58683C18.6176 5.17218 18.2829 4.84203 17.9284 4.49251C17.6002 4.16882 17.2608 3.8341 17.1421 3.43227C17.0466 3.10802 17.0636 2.73641 17.0801 2.37702C17.106 1.81019 17.1328 1.22407 16.6043 1.04618C15.8148 0.780514 14.4449 1.70564 13.7931 2.67861C13.4308 3.21982 13.3556 3.88674 13.2892 4.47518C13.2342 4.96282 13.1823 5.42344 12.9806 5.72861C12.7505 6.07705 12.4409 6.17955 12.0826 6.29824C11.7717 6.40117 11.4195 6.51781 11.1062 6.81801C10.6543 7.25082 10.5654 8.06843 10.6741 8.64495C10.7637 9.1202 10.9834 9.46222 11.277 9.58326C11.7109 9.76233 12.0326 9.45314 12.291 9.20471C12.5307 8.97418 12.6896 8.83755 12.8698 8.88159C13.101 8.93856 13.1256 9.11435 13.1295 9.53202C13.1322 9.81384 13.1352 10.1332 13.3057 10.3902C13.4916 10.6701 13.7615 10.8295 14.0657 10.8391C14.0749 10.8394 14.0841 10.8395 14.0932 10.8395C14.3512 10.8395 14.5962 10.7259 14.7378 10.5393C14.9079 10.3151 14.8556 10.049 14.8095 9.81427C14.7782 9.6549 14.7486 9.50438 14.7817 9.37631C14.8103 9.26657 14.8889 9.17105 14.9799 9.06048C15.1449 8.86003 15.3502 8.61051 15.3509 8.15971C15.3514 7.8593 15.2211 7.64068 15.0951 7.42923C14.9749 7.22734 14.8613 7.03671 14.8563 6.76759C14.8478 6.30871 15.3089 5.15105 15.7777 4.82003C15.933 4.71038 16.0216 4.74368 16.0508 4.75473C16.2291 4.82169 16.1225 5.16855 15.9394 5.69011C15.7491 6.23228 15.5334 6.84682 15.7316 7.33778C15.8732 7.68883 16.128 7.92621 16.4683 8.02421C16.963 8.16674 17.5238 7.98899 17.8354 7.76348C18.3375 7.39976 18.8191 6.36974 18.6874 5.58683Z\" fill=\"#F9F9F9\"/> <path d=\"M15.6248 10.3072C15.6783 10.3247 15.7326 10.333 15.7867 10.333C16.0639 10.333 16.3346 10.1132 16.4461 9.77301C16.5067 9.58779 16.5092 9.39385 16.453 9.22692C16.3917 9.04449 16.263 8.9093 16.1003 8.85609C15.9664 8.81209 15.8175 8.82588 15.6808 8.89498C15.4978 8.98753 15.3511 9.16799 15.2783 9.39018C15.2176 9.57522 15.2153 9.76913 15.2716 9.93623C15.3331 10.1187 15.4619 10.2539 15.6248 10.3072Z\" fill=\"#F9F9F9\"/> <path d=\"M20.2485 20.5566C20.1347 20.3516 19.9064 20.2183 19.705 20.1007C19.5761 20.0255 19.3814 19.9118 19.377 19.8457C19.3666 19.6904 19.5227 19.5315 19.688 19.3632C19.9247 19.1223 20.2191 18.8226 20.0104 18.4308C19.9315 18.2828 19.7972 18.1916 19.6218 18.1671C19.065 18.0891 18.2129 18.7011 17.8801 19.0461C17.3363 19.6105 17.19 20.217 17.4888 20.6684C17.7386 21.0456 18.1733 21.0575 18.4907 21.0661C18.6104 21.0694 18.7236 21.0725 18.8055 21.0925C18.944 21.1265 19.05 21.2269 19.1623 21.3332C19.2995 21.4631 19.4661 21.6208 19.7048 21.6208C19.738 21.6208 19.7727 21.6177 19.8088 21.6111C20.0316 21.5702 20.2039 21.4426 20.2941 21.2516C20.3935 21.0412 20.3769 20.7879 20.2485 20.5566Z\" fill=\"#F9F9F9\"/> <path d=\"M18.5474 21.4569C18.3721 21.3901 18.1858 21.3784 18.0226 21.4239C17.8433 21.4741 17.7066 21.5916 17.6474 21.7466C17.5298 22.056 17.7402 22.4138 18.1266 22.5612C18.2314 22.6011 18.3401 22.6212 18.4455 22.6212C18.5162 22.6212 18.5855 22.6121 18.6509 22.5938C18.8304 22.5437 18.9671 22.4262 19.0258 22.2718C19.074 22.1455 19.0675 22.0021 19.0074 21.8679C18.9265 21.6872 18.7588 21.5374 18.5474 21.4569Z\" fill=\"#F9F9F9\"/> <path d=\"M7.26779 10.8469C7.37976 11.2346 7.49557 11.6354 7.42546 11.8653C7.39036 11.9803 7.18956 12.1078 7.01238 12.2202C6.6907 12.4244 6.25007 12.704 6.41242 13.1887C6.5061 13.4684 6.83702 13.6426 7.34405 13.6792C7.40765 13.6838 7.47252 13.6861 7.5383 13.6861C8.23849 13.6861 9.03262 13.4272 9.27655 12.9444C9.52995 12.4436 9.17113 11.7536 8.85451 11.1449C8.66637 10.7832 8.45322 10.3733 8.49124 10.1886C8.53467 9.9765 8.6713 9.873 8.8295 9.75313C9.01664 9.6113 9.24957 9.43486 9.20085 9.06705C9.15218 8.70146 8.86486 8.29649 8.50211 8.08224C8.22893 7.92095 7.94113 7.88559 7.69152 7.98276C6.96916 8.26406 7.02198 9.68355 7.09746 10.1585C7.13199 10.3769 7.201 10.6159 7.26779 10.8469Z\" fill=\"#F9F9F9\"/> <path d=\"M4.71785 11.5006C4.53569 11.736 4.30904 12.029 4.48252 12.419C4.55171 12.5742 4.67808 12.6798 4.84798 12.7245C4.91123 12.741 4.97845 12.7485 5.04804 12.7485C5.42917 12.7485 5.87901 12.5247 6.10665 12.3559C6.48154 12.0778 6.67291 11.7967 6.78925 11.3531C6.9044 10.912 6.69714 10.3165 6.35425 10.1037C6.04035 9.90939 5.33728 9.88556 5.04651 10.2518C4.87469 10.4686 4.90346 10.6768 4.92664 10.844C4.94331 10.964 4.95768 11.0677 4.91555 11.1903C4.88172 11.2888 4.8021 11.3917 4.71785 11.5006Z\" fill=\"#F9F9F9\"/> </svg>'},kRejliewt:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.8576 5.96734C17.9542 5.96734 18.0325 6.04564 18.0325 6.14224V10.2013L17.9221 10.092H11.6916C11.595 10.092 11.5166 10.0137 11.5166 9.91708V9.32807H10.0166V9.91708C10.0166 10.8421 10.7665 11.592 11.6916 11.592H17.3049L17.9921 12.2726C18.5629 12.8381 19.5325 12.4338 19.5325 11.6303V6.14224C19.5325 5.21722 18.7826 4.46734 17.8576 4.46734H14.6376V5.96734H17.8576Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.2718 7.44405C17.2718 7.25675 17.1199 7.10492 16.9326 7.10492H14.6752V7.78318H16.9326C17.1199 7.78318 17.2718 7.63135 17.2718 7.44405Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.2375 8.5745C17.2375 8.76179 17.0857 8.91363 16.8984 8.91363H14.6752V8.23536H16.8984C17.0857 8.23536 17.2375 8.3872 17.2375 8.5745Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.1421 3.29541C6.0455 3.29541 5.96719 3.37372 5.96719 3.47032V7.52941L6.07758 7.42006H12.3082C12.4048 7.42006 12.4831 7.34175 12.4831 7.24515V3.47032C12.4831 3.37372 12.4048 3.29541 12.3082 3.29541H6.1421ZM4.46719 3.47032C4.46719 2.54529 5.21707 1.79541 6.1421 1.79541H12.3082C13.2332 1.79541 13.9831 2.54529 13.9831 3.47032V7.24515C13.9831 8.17018 13.2332 8.92006 12.3082 8.92006H6.69476L6.00765 9.60072C5.43685 10.1662 4.46719 9.76185 4.46719 8.95839V3.47032Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.7281 4.8064C6.7281 4.6191 6.87994 4.46726 7.06724 4.46726H10.7669C10.9542 4.46726 11.106 4.6191 11.106 4.8064C11.106 4.99369 10.9542 5.14553 10.7669 5.14553H7.06724C6.87994 5.14553 6.7281 4.99369 6.7281 4.8064Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.7281 5.93677C6.7281 5.74947 6.87994 5.59763 7.06724 5.59763H11.3835C11.5708 5.59763 11.7226 5.74947 11.7226 5.93677C11.7226 6.12407 11.5708 6.2759 11.3835 6.2759H7.06724C6.87994 6.2759 6.7281 6.12407 6.7281 5.93677Z\" fill=\"#F9F9F9\"/> <path d=\"M7.24993 14.118C6.60973 14.118 6.09076 14.6186 6.09076 15.236C6.09076 15.8535 6.60973 16.354 7.24993 16.354C7.89014 16.354 8.40902 15.8535 8.40902 15.236C8.40902 14.6186 7.89014 14.118 7.24993 14.118ZM4.93167 15.236C4.93167 14.0011 5.9696 13 7.24993 13C8.53019 13 9.56811 14.0011 9.56811 15.236C9.56811 16.471 8.53019 17.472 7.24993 17.472C5.9696 17.472 4.93167 16.471 4.93167 15.236ZM2.99985 19.535C2.99985 18.8073 3.61146 18.2174 4.36591 18.2174H10.1338C10.8882 18.2174 11.4999 18.8073 11.4999 19.535V19.8029C11.4999 19.9581 11.4999 20.8529 10.9583 21.7225C10.3854 22.6423 9.26976 23.4348 7.24985 23.4348C5.22992 23.4348 4.11431 22.6423 3.54142 21.7225C2.99981 20.8529 2.99985 19.9581 2.99985 19.8029V19.535ZM4.36591 19.3354C4.25161 19.3354 4.15895 19.4248 4.15895 19.535V19.8012C4.15895 19.907 4.16095 20.5462 4.53499 21.1467C4.87971 21.7001 5.59933 22.3168 7.24985 22.3168C8.9004 22.3168 9.61996 21.7001 9.96475 21.1467C10.3388 20.5462 10.3408 19.907 10.3408 19.8012V19.535C10.3408 19.4248 10.2481 19.3354 10.1338 19.3354H4.36591Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.30944 21.867C2.7265 20.931 2.72655 19.9726 2.72656 19.8034V19.535C2.72656 18.6472 3.46991 17.9441 4.36591 17.9441H10.1338C11.0298 17.9441 11.7731 18.6472 11.7731 19.535V19.8029C11.7731 19.9723 11.7732 20.9312 11.1902 21.867C10.5615 22.8765 9.35219 23.7081 7.24985 23.7081C5.14749 23.7081 3.93824 22.8765 3.30944 21.867ZM10.9583 21.7225C11.4999 20.8529 11.4999 19.9581 11.4999 19.8029V19.535C11.4999 18.8073 10.8882 18.2174 10.1338 18.2174H4.36591C3.61146 18.2174 2.99985 18.8073 2.99985 19.535V19.8029C2.99985 19.9581 2.99981 20.8529 3.54142 21.7225C4.11431 22.6423 5.22992 23.4348 7.24985 23.4348C9.26976 23.4348 10.3854 22.6423 10.9583 21.7225ZM7.24993 14.3913C6.75127 14.3913 6.36406 14.7787 6.36406 15.236C6.36406 15.6933 6.75127 16.0807 7.24993 16.0807C7.74857 16.0807 8.13573 15.6933 8.13573 15.236C8.13573 14.7787 7.74857 14.3913 7.24993 14.3913ZM4.65838 15.236C4.65838 13.8409 5.82805 12.7267 7.24993 12.7267C8.67174 12.7267 9.84141 13.8409 9.84141 15.236C9.84141 16.6311 8.67174 17.7453 7.24993 17.7453C5.82806 17.7453 4.65838 16.6311 4.65838 15.236ZM4.43224 19.6087H10.0675V19.8012C10.0675 19.8955 10.0646 20.4695 9.7328 21.0022M4.43224 19.6087V19.8012C4.43224 19.8955 4.43515 20.4695 4.76696 21.0022C4.91689 21.2429 5.14841 21.4989 5.52887 21.6968C5.91125 21.8958 6.45853 22.0435 7.24985 22.0435C8.04119 22.0435 8.58846 21.8958 8.97084 21.6968C9.35128 21.4989 9.58283 21.2429 9.7328 21.0022M6.09076 15.236C6.09076 14.6186 6.60973 14.118 7.24993 14.118C7.89014 14.118 8.40902 14.6186 8.40902 15.236C8.40902 15.8535 7.89014 16.354 7.24993 16.354C6.60973 16.354 6.09076 15.8535 6.09076 15.236ZM7.24993 13C5.9696 13 4.93167 14.0011 4.93167 15.236C4.93167 16.471 5.9696 17.472 7.24993 17.472C8.53019 17.472 9.56811 16.471 9.56811 15.236C9.56811 14.0011 8.53019 13 7.24993 13ZM4.15895 19.535C4.15895 19.4248 4.25161 19.3354 4.36591 19.3354H10.1338C10.2481 19.3354 10.3408 19.4248 10.3408 19.535V19.8012C10.3408 19.907 10.3388 20.5462 9.96475 21.1467C9.61996 21.7001 8.9004 22.3168 7.24985 22.3168C5.59933 22.3168 4.87971 21.7001 4.53499 21.1467C4.16095 20.5462 4.15895 19.907 4.15895 19.8012V19.535Z\" fill=\"#F9F9F9\"/> <path d=\"M17.2499 14.118C16.6097 14.118 16.0908 14.6186 16.0908 15.236C16.0908 15.8535 16.6097 16.354 17.2499 16.354C17.8901 16.354 18.409 15.8535 18.409 15.236C18.409 14.6186 17.8901 14.118 17.2499 14.118ZM14.9317 15.236C14.9317 14.0011 15.9696 13 17.2499 13C18.5302 13 19.5681 14.0011 19.5681 15.236C19.5681 16.471 18.5302 17.472 17.2499 17.472C15.9696 17.472 14.9317 16.471 14.9317 15.236ZM12.9999 19.535C12.9999 18.8073 13.6115 18.2174 14.3659 18.2174H20.1338C20.8882 18.2174 21.4999 18.8073 21.4999 19.535V19.8029C21.4999 19.9581 21.4999 20.8529 20.9583 21.7225C20.3854 22.6423 19.2698 23.4348 17.2499 23.4348C15.2299 23.4348 14.1143 22.6423 13.5414 21.7225C12.9998 20.8529 12.9998 19.9581 12.9999 19.8029V19.535ZM14.3659 19.3354C14.2516 19.3354 14.1589 19.4248 14.1589 19.535V19.8012C14.1589 19.907 14.161 20.5462 14.535 21.1467C14.8797 21.7001 15.5993 22.3168 17.2499 22.3168C18.9004 22.3168 19.62 21.7001 19.9648 21.1467C20.3388 20.5462 20.3408 19.907 20.3408 19.8012V19.535C20.3408 19.4248 20.2481 19.3354 20.1338 19.3354H14.3659Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3094 21.867C12.7265 20.931 12.7266 19.9726 12.7266 19.8034V19.535C12.7266 18.6472 13.4699 17.9441 14.3659 17.9441H20.1338C21.0298 17.9441 21.7731 18.6472 21.7731 19.535V19.8029C21.7731 19.9723 21.7732 20.9312 21.1902 21.867C20.5615 22.8765 19.3522 23.7081 17.2499 23.7081C15.1475 23.7081 13.9382 22.8765 13.3094 21.867ZM20.9583 21.7225C21.4999 20.8529 21.4999 19.9581 21.4999 19.8029V19.535C21.4999 18.8073 20.8882 18.2174 20.1338 18.2174H14.3659C13.6115 18.2174 12.9999 18.8073 12.9999 19.535V19.8029C12.9998 19.9581 12.9998 20.8529 13.5414 21.7225C14.1143 22.6423 15.2299 23.4348 17.2499 23.4348C19.2698 23.4348 20.3854 22.6423 20.9583 21.7225ZM17.2499 14.3913C16.7513 14.3913 16.3641 14.7787 16.3641 15.236C16.3641 15.6933 16.7513 16.0807 17.2499 16.0807C17.7486 16.0807 18.1357 15.6933 18.1357 15.236C18.1357 14.7787 17.7486 14.3913 17.2499 14.3913ZM14.6584 15.236C14.6584 13.8409 15.8281 12.7267 17.2499 12.7267C18.6717 12.7267 19.8414 13.8409 19.8414 15.236C19.8414 16.6311 18.6717 17.7453 17.2499 17.7453C15.8281 17.7453 14.6584 16.6311 14.6584 15.236ZM14.4322 19.6087H20.0675V19.8012C20.0675 19.8955 20.0646 20.4695 19.7328 21.0022M14.4322 19.6087V19.8012C14.4322 19.8955 14.4351 20.4695 14.767 21.0022C14.9169 21.2429 15.1484 21.4989 15.5289 21.6968C15.9113 21.8958 16.4585 22.0435 17.2499 22.0435C18.0412 22.0435 18.5885 21.8958 18.9708 21.6968C19.3513 21.4989 19.5828 21.2429 19.7328 21.0022M16.0908 15.236C16.0908 14.6186 16.6097 14.118 17.2499 14.118C17.8901 14.118 18.409 14.6186 18.409 15.236C18.409 15.8535 17.8901 16.354 17.2499 16.354C16.6097 16.354 16.0908 15.8535 16.0908 15.236ZM17.2499 13C15.9696 13 14.9317 14.0011 14.9317 15.236C14.9317 16.471 15.9696 17.472 17.2499 17.472C18.5302 17.472 19.5681 16.471 19.5681 15.236C19.5681 14.0011 18.5302 13 17.2499 13ZM14.1589 19.535C14.1589 19.4248 14.2516 19.3354 14.3659 19.3354H20.1338C20.2481 19.3354 20.3408 19.4248 20.3408 19.535V19.8012C20.3408 19.907 20.3388 20.5462 19.9648 21.1467C19.62 21.7001 18.9004 22.3168 17.2499 22.3168C15.5993 22.3168 14.8797 21.7001 14.535 21.1467C14.161 20.5462 14.1589 19.907 14.1589 19.8012V19.535Z\" fill=\"#F9F9F9\"/> </svg>'},l5XRSZkyf:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_699_12700)\"> <path d=\"M11.9837 14.0864C11.3581 14.0864 10.8509 14.5756 10.8509 15.179C10.8509 15.7823 11.3581 16.2715 11.9837 16.2715C12.6093 16.2715 13.1164 15.7823 13.1164 15.179C13.1164 14.5756 12.6093 14.0864 11.9837 14.0864ZM9.71825 15.179C9.71825 13.9722 10.7325 12.9939 11.9837 12.9939C13.2348 12.9939 14.2491 13.9722 14.2491 15.179C14.2491 16.3858 13.2348 17.3641 11.9837 17.3641C10.7325 17.3641 9.71825 16.3858 9.71825 15.179ZM7.83044 19.38C7.83044 18.6689 8.42811 18.0924 9.16538 18.0924H14.8019C15.5391 18.0924 16.1368 18.6689 16.1368 19.38V19.6418C16.1368 19.7935 16.1369 20.6679 15.6076 21.5177C15.0478 22.4165 13.9575 23.191 11.9836 23.191C10.0097 23.191 8.91951 22.4165 8.35967 21.5177C7.83039 20.6679 7.83043 19.7935 7.83044 19.6418V19.38ZM9.16538 19.185C9.05368 19.185 8.96313 19.2723 8.96313 19.38V19.6402C8.96313 19.7436 8.96509 20.3682 9.33061 20.955C9.66748 21.4959 10.3707 22.0984 11.9836 22.0984C13.5966 22.0984 14.2998 21.4959 14.6367 20.955C15.0022 20.3682 15.0041 19.7436 15.0041 19.6402V19.38C15.0041 19.2723 14.9136 19.185 14.8019 19.185H9.16538Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.13298 21.6589C7.56331 20.7443 7.56336 19.8077 7.56337 19.6423V19.38C7.56337 18.5124 8.28978 17.8254 9.16538 17.8254H14.8019C15.6775 17.8254 16.4039 18.5124 16.4039 19.38V19.6418C16.4039 19.8074 16.4039 20.7444 15.8343 21.6589C15.2198 22.6454 14.0381 23.458 11.9836 23.458C9.92915 23.458 8.74745 22.6454 8.13298 21.6589ZM15.6076 21.5177C16.1369 20.6679 16.1368 19.7935 16.1368 19.6418V19.38C16.1368 18.6689 15.5391 18.0924 14.8019 18.0924H9.16538C8.42811 18.0924 7.83044 18.6689 7.83044 19.38V19.6418C7.83043 19.7935 7.83039 20.6679 8.35967 21.5177C8.91951 22.4165 10.0097 23.191 11.9836 23.191C13.9575 23.191 15.0478 22.4165 15.6076 21.5177ZM11.9837 14.3535C11.4964 14.3535 11.118 14.7321 11.118 15.179C11.118 15.6258 11.4964 16.0044 11.9837 16.0044C12.471 16.0044 12.8493 15.6259 12.8493 15.179C12.8493 14.7321 12.471 14.3535 11.9837 14.3535ZM9.45119 15.179C9.45119 13.8156 10.5942 12.7268 11.9837 12.7268C13.3731 12.7268 14.5162 13.8157 14.5162 15.179C14.5162 16.5423 13.3731 17.6311 11.9837 17.6311C10.5942 17.6311 9.45119 16.5423 9.45119 15.179ZM9.23019 19.452H14.7371V19.6402C14.7371 19.7323 14.7342 20.2932 14.41 20.8138M9.23019 19.452V19.6402C9.23019 19.7323 9.23304 20.2932 9.5573 20.8138C9.70381 21.0491 9.93006 21.2992 10.3019 21.4926C10.6755 21.687 11.2103 21.8314 11.9836 21.8314C12.7569 21.8314 13.2917 21.687 13.6654 21.4926C14.0372 21.2992 14.2635 21.049 14.41 20.8138M10.8509 15.179C10.8509 14.5756 11.3581 14.0864 11.9837 14.0864C12.6093 14.0864 13.1164 14.5756 13.1164 15.179C13.1164 15.7823 12.6093 16.2715 11.9837 16.2715C11.3581 16.2715 10.8509 15.7823 10.8509 15.179ZM11.9837 12.9939C10.7325 12.9939 9.71825 13.9722 9.71825 15.179C9.71825 16.3858 10.7325 17.3641 11.9837 17.3641C13.2348 17.3641 14.2491 16.3858 14.2491 15.179C14.2491 13.9722 13.2348 12.9939 11.9837 12.9939ZM8.96313 19.38C8.96313 19.2723 9.05368 19.185 9.16538 19.185H14.8019C14.9136 19.185 15.0041 19.2723 15.0041 19.38V19.6402C15.0041 19.7436 15.0022 20.3682 14.6367 20.955C14.2998 21.4959 13.5966 22.0984 11.9836 22.0984C10.3707 22.0984 9.66748 21.4959 9.33061 20.955C8.96509 20.3682 8.96313 19.7436 8.96313 19.6402V19.38Z\" fill=\"#F9F9F9\"/> <path d=\"M16.4454 21.5634C16.9059 21.7061 17.4506 21.7889 18.0913 21.7889C19.908 21.7889 20.9531 21.1229 21.4964 20.3143C22.0002 19.5649 22.0002 18.7969 22.0002 18.6612V18.4467C22.0002 17.7356 21.3578 17.1725 20.5835 17.1725H15.5991C15.3455 17.1725 15.1061 17.2329 14.8988 17.339C15.6788 17.3744 16.3672 17.8338 16.6929 18.5057H20.5262V18.6599C20.5262 18.7354 20.5237 19.1951 20.237 19.6218C20.1074 19.8145 19.9073 20.0196 19.5785 20.1781C19.2481 20.3374 18.7751 20.4557 18.0913 20.4557C17.5582 20.4557 17.1533 20.3838 16.8441 20.2766C16.791 20.6294 16.6795 21.0875 16.4454 21.5634Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.8518 15.0036C15.8518 13.8863 16.8626 12.9939 18.0913 12.9939C19.32 12.9939 20.3308 13.8863 20.3308 15.0036C20.3308 16.1209 19.32 17.0133 18.0913 17.0133C16.8626 17.0133 15.8518 16.1209 15.8518 15.0036ZM18.0913 14.3271C17.6604 14.3271 17.3258 14.6374 17.3258 15.0036C17.3258 15.3698 17.6604 15.6801 18.0913 15.6801C18.5222 15.6801 18.8568 15.3699 18.8568 15.0036C18.8568 14.6373 18.5222 14.3271 18.0913 14.3271Z\" fill=\"#F9F9F9\"/> <path d=\"M7.55494 21.5634C7.09438 21.7061 6.5497 21.7889 5.90905 21.7889C4.09227 21.7889 3.04723 21.1229 2.5039 20.3143C2.00016 19.5649 2.00016 18.7969 2.00016 18.6612V18.4467C2.00016 17.7356 2.64254 17.1725 3.41681 17.1725H8.40126C8.6548 17.1725 8.89419 17.2329 9.10152 17.339C8.32155 17.3744 7.63313 17.8338 7.30743 18.5057H3.47415V18.6599C3.47415 18.7354 3.47667 19.1951 3.76337 19.6218C3.89297 19.8145 4.09307 20.0196 4.42183 20.1781C4.75227 20.3374 5.2252 20.4557 5.90905 20.4557C6.44214 20.4557 6.84707 20.3838 7.15624 20.2766C7.20933 20.6294 7.32083 21.0875 7.55494 21.5634Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.14852 15.0036C8.14852 13.8863 7.13773 12.9939 5.90898 12.9939C4.6803 12.9939 3.66951 13.8863 3.66951 15.0036C3.66951 16.1209 4.6803 17.0133 5.90898 17.0133C7.13772 17.0133 8.14852 16.1209 8.14852 15.0036ZM5.90898 14.3271C6.33991 14.3271 6.67453 14.6374 6.67453 15.0036C6.67453 15.3698 6.33991 15.6801 5.90898 15.6801C5.47808 15.6801 5.1435 15.3699 5.1435 15.0036C5.1435 14.6373 5.47808 14.3271 5.90898 14.3271Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.2945 1.12766C11.3113 0.388109 12.689 0.38811 13.7059 1.12766L23.5295 8.27214C23.9315 8.5645 24.0204 9.12737 23.728 9.52936C23.4357 9.93134 22.8728 10.0202 22.4708 9.72787L12.6472 2.58339C12.2614 2.30287 11.7389 2.30287 11.3532 2.58339L1.52952 9.72787C1.12753 10.0202 0.564653 9.93134 0.272299 9.52936C-0.0200557 9.12737 0.0688193 8.5645 0.470807 8.27214L10.2945 1.12766Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.00016 8.1C2.49722 8.1 2.90016 8.50295 2.90016 9V15C2.90016 15.4971 2.49722 15.9 2.00016 15.9C1.5031 15.9 1.10016 15.4971 1.10016 15V9C1.10016 8.50295 1.5031 8.1 2.00016 8.1Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.0002 8.1C22.4972 8.1 22.9002 8.50295 22.9002 9V15C22.9002 15.4971 22.4972 15.9 22.0002 15.9C21.5031 15.9 21.1002 15.4971 21.1002 15V9C21.1002 8.50295 21.5031 8.1 22.0002 8.1Z\" fill=\"#F9F9F9\"/> </g> <defs> <clipPath id=\"clip0_699_12700\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>'},LA7QO5pdL:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8.69837 5.94701C8.69837 6.50779 8.5306 7.02938 8.24252 7.46434L10.4826 9.70449C10.9176 9.41641 11.4392 9.24864 12 9.24864C12.5607 9.24864 13.0824 9.41641 13.5173 9.70449L15.7574 7.46434C15.4694 7.02938 15.3016 6.50779 15.3016 5.94701C15.3016 4.42748 16.5334 3.19565 18.053 3.19565C19.5725 3.19565 20.8043 4.42748 20.8043 5.94701C20.8043 7.46655 19.5725 8.69837 18.053 8.69837C17.4922 8.69837 16.9706 8.53061 16.5357 8.24253L14.2956 10.4827C14.5836 10.9176 14.7514 11.4392 14.7514 12C14.7514 12.5607 14.5836 13.0824 14.2955 13.5173L16.5356 15.7574C16.9706 15.4694 17.4922 15.3016 18.053 15.3016C19.5725 15.3016 20.8043 16.5334 20.8043 18.053C20.8043 19.5725 19.5725 20.8043 18.053 20.8043C16.5334 20.8043 15.3016 19.5725 15.3016 18.053C15.3016 17.4923 15.4694 16.9706 15.7574 16.5357L13.5173 14.2956C13.0824 14.5836 12.5607 14.7514 12 14.7514C11.4392 14.7514 10.9176 14.5836 10.4827 14.2956L8.24253 16.5357C8.53061 16.9706 8.69837 17.4923 8.69837 18.053C8.69837 19.5725 7.46654 20.8043 5.94701 20.8043C4.42748 20.8043 3.19565 19.5725 3.19565 18.053C3.19565 16.5334 4.42748 15.3016 5.94701 15.3016C6.50778 15.3016 7.02938 15.4694 7.46434 15.7574L9.70449 13.5173C9.41641 13.0824 9.24864 12.5607 9.24864 12C9.24864 11.4392 9.4164 10.9176 9.70447 10.4827L7.46431 8.24253C7.02937 8.53061 6.50778 8.69837 5.94701 8.69837C4.42748 8.69837 3.19565 7.46655 3.19565 5.94701C3.19565 4.42748 4.42748 3.19565 5.94701 3.19565C7.46654 3.19565 8.69837 4.42748 8.69837 5.94701Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.49077 7.43589C8.74708 6.99886 8.89402 6.48986 8.89402 5.94701C8.89402 4.31942 7.57459 3 5.94701 3C4.31943 3 3 4.31942 3 5.94701C3 7.5746 4.31943 8.89402 5.94701 8.89402C6.48984 8.89402 6.99884 8.74708 7.43587 8.49078L9.45622 10.5112C9.19992 10.9481 9.05299 11.4571 9.05299 12C9.05299 12.5428 9.19992 13.0518 9.45624 13.4888L7.43589 15.5092C6.99885 15.2529 6.48984 15.106 5.94701 15.106C4.31943 15.106 3 16.4254 3 18.053C3 19.6805 4.31942 21 5.94701 21C7.5746 21 8.89402 19.6805 8.89402 18.053C8.89402 17.5102 8.74709 17.0012 8.49079 16.5641L10.5112 14.5438C10.9482 14.8001 11.4571 14.947 12 14.947C12.5428 14.947 13.0518 14.8001 13.4888 14.5438L15.5092 16.5641C15.2529 17.0012 15.106 17.5102 15.106 18.053C15.106 19.6805 16.4254 21 18.053 21C19.6805 21 21 19.6805 21 18.053C21 16.4254 19.6805 15.106 18.053 15.106C17.5101 15.106 17.0011 15.2529 16.5641 15.5092L14.5437 13.4889C14.8001 13.0518 14.947 12.5428 14.947 12C14.947 11.4571 14.8001 10.9482 14.5438 10.5112L16.5641 8.49079C17.0011 8.74709 17.5101 8.89402 18.053 8.89402C19.6805 8.89402 21 7.57461 21 5.94701C21 4.31942 19.6805 3 18.053 3C16.4254 3 15.106 4.31943 15.106 5.94701C15.106 6.48985 15.2529 6.99886 15.5092 7.43589L13.4888 9.45623C13.0518 9.19992 12.5428 9.05299 12 9.05299C11.4571 9.05299 10.9481 9.19993 10.5111 9.45624L8.49077 7.43589ZM10.4826 9.70449L8.24252 7.46434C8.5306 7.02938 8.69837 6.50779 8.69837 5.94701C8.69837 4.42748 7.46654 3.19565 5.94701 3.19565C4.42748 3.19565 3.19565 4.42748 3.19565 5.94701C3.19565 7.46655 4.42748 8.69837 5.94701 8.69837C6.50778 8.69837 7.02937 8.53061 7.46431 8.24253L9.70447 10.4827C9.4164 10.9176 9.24864 11.4392 9.24864 12C9.24864 12.5607 9.41641 13.0824 9.70449 13.5173L7.46434 15.7574C7.02938 15.4694 6.50778 15.3016 5.94701 15.3016C4.42748 15.3016 3.19565 16.5334 3.19565 18.053C3.19565 19.5725 4.42748 20.8043 5.94701 20.8043C7.46654 20.8043 8.69837 19.5725 8.69837 18.053C8.69837 17.4923 8.53061 16.9706 8.24253 16.5357L10.4827 14.2956C10.9176 14.5836 11.4392 14.7514 12 14.7514C12.5607 14.7514 13.0824 14.5836 13.5173 14.2956L15.7574 16.5357C15.4694 16.9706 15.3016 17.4923 15.3016 18.053C15.3016 19.5725 16.5334 20.8043 18.053 20.8043C19.5725 20.8043 20.8043 19.5725 20.8043 18.053C20.8043 16.5334 19.5725 15.3016 18.053 15.3016C17.4922 15.3016 16.9706 15.4694 16.5356 15.7574L14.2955 13.5173C14.5836 13.0824 14.7514 12.5607 14.7514 12C14.7514 11.4392 14.5836 10.9176 14.2956 10.4827L16.5357 8.24253C16.9706 8.53061 17.4922 8.69837 18.053 8.69837C19.5725 8.69837 20.8043 7.46655 20.8043 5.94701C20.8043 4.42748 19.5725 3.19565 18.053 3.19565C16.5334 3.19565 15.3016 4.42748 15.3016 5.94701C15.3016 6.50779 15.4694 7.02938 15.7574 7.46434L13.5173 9.70449C13.0824 9.41641 12.5607 9.24864 12 9.24864C11.4392 9.24864 10.9176 9.41641 10.4826 9.70449Z\" fill=\"#F9F9F9\"/> </svg>'},lIclLPivN:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.3029 13.1424C10.3029 12.6453 10.7058 12.2424 11.2029 12.2424H11.9908C12.4878 12.2424 12.8908 12.6453 12.8908 13.1424V17.0817C12.8908 17.5788 12.4878 17.9817 11.9908 17.9817C11.4937 17.9817 11.0908 17.5788 11.0908 17.0817V14.0354C10.6466 13.9802 10.3029 13.6014 10.3029 13.1424Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.3029 17.0818C10.3029 16.5848 10.7058 16.1818 11.2029 16.1818H12.7786C13.2757 16.1818 13.6786 16.5848 13.6786 17.0818C13.6786 17.5789 13.2757 17.9818 12.7786 17.9818H11.2029C10.7058 17.9818 10.3029 17.5789 10.3029 17.0818Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.9 3.96985C5.39706 3.96985 5.8 4.3728 5.8 4.86985V18.5002C5.8 18.9604 6.17312 19.3335 6.63333 19.3335H17.9C18.0556 19.3335 18.1818 19.2073 18.1818 19.0517V6.83955C18.1818 6.34249 18.5848 5.93955 19.0818 5.93955C19.5789 5.93955 19.9818 6.34249 19.9818 6.83955V19.0517C19.9818 20.2014 19.0497 21.1335 17.9 21.1335H6.63333C5.179 21.1335 4 19.9545 4 18.5002V4.86985C4 4.3728 4.40294 3.96985 4.9 3.96985Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 4.86985C4 3.285 5.28469 2 6.8697 2H19.0818C19.4497 2 19.7805 2.22388 19.9173 2.56538C20.0541 2.90688 19.9693 3.29725 19.7031 3.55118C19.6447 3.60687 19.1939 4.04908 19.1939 4.8697C19.1939 5.68996 19.6474 6.13513 19.7028 6.18796C19.9691 6.44184 20.0541 6.83225 19.9174 7.17384C19.7806 7.51543 19.4498 7.7394 19.0818 7.7394H6.8697C5.28469 7.7394 4 6.45471 4 4.86985ZM6.8697 3.8C6.27886 3.8 5.8 4.27906 5.8 4.86985C5.8 5.46065 6.27886 5.9394 6.8697 5.9394H17.5426C17.4525 5.62759 17.3939 5.27081 17.3939 4.8697C17.3939 4.46839 17.4523 4.11166 17.5423 3.8H6.8697Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.3029 9.99091C10.3029 9.49386 10.7058 9.09091 11.2029 9.09091H11.9908C12.4878 9.09091 12.8908 9.49386 12.8908 9.99091V10.7788C12.8908 11.2758 12.4878 11.6788 11.9908 11.6788H11.2029C10.7058 11.6788 10.3029 11.2758 10.3029 10.7788V9.99091Z\" fill=\"#F9F9F9\"/> </svg>'},lUZ0pev5Q:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1.9998 7.25005C1.9998 5.45512 3.45487 4.00005 5.2498 4.00005H18.7498C20.5447 4.00005 21.9998 5.45512 21.9998 7.25005V16.75C21.9998 18.5449 20.5447 20 18.7498 20H5.2498C3.45487 20 1.9998 18.5449 1.9998 16.75V7.25005ZM5.2498 5.50005C4.2833 5.50005 3.4998 6.28355 3.4998 7.25005V16.75C3.4998 17.7165 4.2833 18.5 5.2498 18.5H18.7498C19.7163 18.5 20.4998 17.7165 20.4998 16.75V7.25005C20.4998 6.28355 19.7163 5.50005 18.7498 5.50005H5.2498Z\" fill=\"#F9F9F9\"/> <path d=\"M14.4998 11.134C15.1665 11.5189 15.1665 12.4812 14.4998 12.8661L11.4998 14.5981C10.8331 14.983 9.9998 14.5019 9.9998 13.7321V10.268C9.9998 9.4982 10.8331 9.01707 11.4998 9.40197L14.4998 11.134Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.7998 7.25005C1.7998 5.34466 3.34442 3.80005 5.2498 3.80005H18.7498C20.6552 3.80005 22.1998 5.34466 22.1998 7.25005V16.75C22.1998 18.6554 20.6552 20.2001 18.7498 20.2001H5.2498C3.34442 20.2001 1.7998 18.6554 1.7998 16.75V7.25005ZM5.2498 5.70005C4.39376 5.70005 3.6998 6.39401 3.6998 7.25005V16.75C3.6998 17.6061 4.39376 18.3 5.2498 18.3H18.7498C19.6058 18.3 20.2998 17.6061 20.2998 16.75V7.25005C20.2998 6.39401 19.6058 5.70005 18.7498 5.70005H5.2498ZM14.5998 13.0393L11.5998 14.7713C10.7998 15.2332 9.7998 14.6559 9.7998 13.7321V10.268C9.7998 9.34424 10.7998 8.76689 11.5998 9.22877L14.5998 10.9608C15.3998 11.4227 15.3998 12.5774 14.5998 13.0393ZM5.2498 4.00005C3.45487 4.00005 1.9998 5.45512 1.9998 7.25005V16.75C1.9998 18.5449 3.45487 20 5.2498 20H18.7498C20.5447 20 21.9998 18.5449 21.9998 16.75V7.25005C21.9998 5.45512 20.5447 4.00005 18.7498 4.00005H5.2498ZM3.4998 7.25005C3.4998 6.28355 4.2833 5.50005 5.2498 5.50005H18.7498C19.7163 5.50005 20.4998 6.28355 20.4998 7.25005V16.75C20.4998 17.7165 19.7163 18.5 18.7498 18.5H5.2498C4.2833 18.5 3.4998 17.7165 3.4998 16.75V7.25005ZM14.4998 12.8661C15.1665 12.4812 15.1665 11.5189 14.4998 11.134L11.4998 9.40197C10.8331 9.01707 9.9998 9.4982 9.9998 10.268V13.7321C9.9998 14.5019 10.8331 14.983 11.4998 14.5981L14.4998 12.8661Z\" fill=\"#F9F9F9\"/> </svg>'},MesFwc7oH:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.6719 2C17.7926 2.05501 17.8804 2.11203 17.9737 2.20614C17.9978 2.23022 18.0219 2.2543 18.0467 2.27911C18.0721 2.30498 18.0975 2.33086 18.1237 2.35751C18.1502 2.3841 18.1766 2.41068 18.2039 2.43807C18.2882 2.5228 18.3721 2.60783 18.4561 2.69287C18.5132 2.75046 18.5704 2.80803 18.6276 2.86559C18.7676 3.00648 18.9072 3.14778 19.0469 3.28906C19.1745 2.92039 19.3021 2.55172 19.4336 2.17188C19.462 2.17188 19.4903 2.17188 19.5195 2.17188C19.5336 2.21489 19.5336 2.21489 19.5479 2.25877C19.7763 2.95934 20.0059 3.65951 20.2368 4.35927C20.3484 4.69769 20.4597 5.03623 20.57 5.37508C20.6662 5.67073 20.7632 5.96611 20.8611 6.26123C20.9128 6.41723 20.9641 6.57333 21.0146 6.72974C21.2179 7.35918 21.4043 7.93518 21.8398 8.44531C21.8923 8.52318 21.9438 8.60169 21.9938 8.68114C22.04 8.75024 22.0863 8.81933 22.1326 8.88843C22.1546 8.92429 22.1767 8.96016 22.1995 8.99711C22.2775 9.11807 22.2775 9.11807 22.4414 9.26172C22.4737 9.2642 22.506 9.26669 22.5383 9.26918C22.7988 9.28921 23 9.50643 23 9.7677C23 9.90448 23 10.0417 23 10.1797C23 10.4558 22.7761 10.6797 22.5 10.6797C22.4521 10.6797 22.4039 10.6797 22.3555 10.6797C22.3555 12.5514 22.3555 14.4231 22.3555 16.3516V16.3516C22.5928 16.3516 22.7852 16.5439 22.7852 16.7812C22.7852 18.0926 22.7852 19.4068 22.7852 20.75C22.7852 21.0261 22.5613 21.25 22.2852 21.25C18.8189 21.25 15.3483 21.25 11.7856 21.25C11.5202 21.25 11.301 21.0427 11.2863 20.7777C11.2807 20.6782 11.2752 20.578 11.2695 20.4766C11.1308 19.978 10.8887 19.5588 10.4305 19.2974C10.0124 19.082 9.57091 19.0279 9.10884 19.134C8.89197 19.21 8.70312 19.3054 8.51953 19.4453C8.48497 19.471 8.45041 19.4967 8.41479 19.5232C8.08227 19.8071 7.95025 20.1874 7.875 20.6055C7.87105 20.6647 7.8671 20.7239 7.86315 20.7833C7.84564 21.0459 7.62749 21.25 7.36426 21.25C5.49834 21.25 3.62897 21.25 1.71489 21.25C1.43874 21.25 1.21484 21.0261 1.21484 20.75C1.21484 19.4391 1.21484 18.1249 1.21484 16.7813C1.21484 16.544 1.40722 16.3516 1.64453 16.3516V16.3516C1.64453 14.9194 1.64453 13.4873 1.64453 12.0117C1.59638 12.0117 1.54823 12.0117 1.5 12.0117C1.22386 12.0117 1 11.7879 1 11.5117C1 11.375 1 11.2378 1 11.0997C1 10.8385 1.20115 10.6212 1.46165 10.6012C1.49382 10.5987 1.52612 10.5962 1.55859 10.5938C1.69557 10.4643 1.77204 10.3755 1.86743 10.2205C1.89 10.1868 1.91257 10.1531 1.93583 10.1183C1.98336 10.0473 2.02985 9.97564 2.07535 9.90333C2.16016 9.77734 2.16016 9.77734 2.25317 9.66841C2.65972 9.17349 2.82166 8.56941 3.01518 7.96947C3.06627 7.81186 3.11855 7.65465 3.1707 7.4974C3.26892 7.20063 3.36607 6.90354 3.46284 6.6063C3.57321 6.26747 3.68477 5.92903 3.79643 5.59062C4.02576 4.89548 4.25361 4.19986 4.48047 3.50391C4.50883 3.50391 4.53719 3.50391 4.56641 3.50391C4.57575 3.53258 4.5851 3.56126 4.59473 3.59081C4.82317 4.29137 5.05278 4.99154 5.28366 5.6913C5.39529 6.02972 5.50654 6.36826 5.61685 6.70711C5.7131 7.00276 5.8101 7.29815 5.90796 7.59326C5.95967 7.74926 6.01101 7.90536 6.06146 8.06177C6.26476 8.69121 6.45117 9.26722 6.88672 9.77734C6.93914 9.85521 6.99065 9.93372 7.04063 10.0132C7.0869 10.0823 7.13317 10.1514 7.17944 10.2205C7.20152 10.2563 7.22359 10.2922 7.24633 10.3291C7.32435 10.4501 7.32435 10.4501 7.48828 10.5938C7.52059 10.5962 7.55289 10.5987 7.58522 10.6012C7.84572 10.6212 8.04688 10.8385 8.04688 11.0997C8.04688 11.2365 8.04688 11.3737 8.04688 11.5117C8.04688 11.7879 7.82302 12.0117 7.54688 12.0117C7.49897 12.0117 7.45081 12.0117 7.40234 12.0117C7.40234 12.7207 7.40234 13.4297 7.40234 14.1602C8.83449 14.1602 10.2666 14.1602 11.7422 14.1602C11.7422 13.7348 11.7422 13.3094 11.7422 12.8711C11.694 12.8711 11.6459 12.8711 11.5977 12.8711C11.3215 12.8711 11.0977 12.6472 11.0977 12.3711C11.0977 12.2486 11.0977 12.1257 11.0977 12.0021C11.0977 11.7408 11.2988 11.5236 11.5593 11.5036C11.5915 11.5011 11.6238 11.4986 11.6562 11.4961C11.7794 11.4024 11.8357 11.3506 11.9194 11.2302C11.9403 11.2033 11.9611 11.1763 11.9826 11.1486C12.0258 11.0925 12.0683 11.0359 12.1101 10.9787C12.1876 10.8731 12.2685 10.7704 12.3498 10.6677C12.3888 10.6183 12.4276 10.5688 12.4662 10.5191C12.6298 10.3087 12.802 10.1066 12.9764 9.90519C13.129 9.72865 13.2766 9.54884 13.4213 9.36578C13.5754 9.17163 13.7334 8.98067 13.8906 8.78906C13.9551 8.7103 14.0195 8.63152 14.084 8.55273C14.2129 8.39518 14.3418 8.23763 14.4707 8.08008C14.5023 8.04142 14.534 8.00275 14.5665 7.96292C14.6338 7.88077 14.701 7.79864 14.7683 7.71652C14.8021 7.6752 14.836 7.63388 14.8708 7.59131C14.9013 7.5542 14.9317 7.51709 14.963 7.47885C14.992 7.44329 15.0209 7.40773 15.0508 7.37109C15.0822 7.34452 15.1135 7.31794 15.1459 7.29056C15.2713 7.07114 15.2001 6.86093 15.1642 6.6183C15.0638 5.68889 14.9603 4.72592 15.5739 3.95142C15.8496 3.62145 16.1552 3.32194 16.4714 3.03125C16.5002 3.00482 16.5289 2.97838 16.5586 2.95115C16.9194 2.62145 17.2902 2.30531 17.6719 2ZM17.0227 4.50577C16.6667 4.86538 16.5667 5.18026 16.5652 5.68271C16.5742 6.01882 16.6023 6.34948 16.6406 6.68359C17.0802 6.68359 17.5198 6.68359 17.9727 6.68359C18.0595 6.42986 18.1461 6.17606 18.232 5.92199C18.2613 5.83558 18.2908 5.74922 18.3204 5.66292C18.363 5.53891 18.405 5.41471 18.4468 5.29047C18.4602 5.25188 18.4736 5.21329 18.4874 5.17353C18.4994 5.13741 18.5115 5.1013 18.5239 5.06408C18.5347 5.0324 18.5454 5.00073 18.5565 4.96809C18.577 4.86476 18.5673 4.80542 18.5312 4.70703C18.4555 4.61288 18.4555 4.61288 18.3594 4.52106C18.3248 4.48672 18.2902 4.45237 18.2546 4.41699C18.2183 4.38154 18.182 4.34609 18.1445 4.30957C18.09 4.2554 18.09 4.2554 18.0344 4.20013C17.6139 3.78504 17.3987 4.15297 17.0227 4.50577ZM19.4336 6.51172C19.4224 6.54819 19.4224 6.54819 19.411 6.58539C19.3317 6.84252 19.2505 7.09897 19.1682 7.35515C19.1379 7.45033 19.108 7.54567 19.0787 7.64116C18.8842 8.2733 18.66 8.75775 18.2305 9.26172C18.2305 9.2759 18.2305 9.29008 18.2305 9.30469C19.0529 9.30469 19.8753 9.30469 20.7227 9.30469C20.5351 9.0223 20.5351 9.0223 20.3308 8.75222C20.1775 8.5499 20.1074 8.32949 20.0315 8.08948C20.0166 8.04418 20.0017 7.99889 19.9863 7.95223C19.9393 7.80884 19.8932 7.66518 19.8472 7.52148C19.8153 7.42367 19.7833 7.32587 19.7513 7.22809C19.6734 6.98952 19.5962 6.75072 19.5195 6.51172C19.4912 6.51172 19.4628 6.51172 19.4336 6.51172ZM4.48047 7.84375C4.46927 7.88022 4.46927 7.88022 4.45784 7.91742C4.37856 8.17455 4.29734 8.431 4.21506 8.68718C4.18476 8.78236 4.15492 8.8777 4.1256 8.97319C3.93105 9.60533 3.70691 10.0898 3.27734 10.5938C3.27734 10.6079 3.27734 10.6221 3.27734 10.6367C4.09977 10.6367 4.92219 10.6367 5.76953 10.6367C5.65336 10.4334 5.5736 10.2994 5.42654 10.1331C5.2434 9.90835 5.15492 9.68794 5.06995 9.41312C5.04779 9.34536 5.04779 9.34536 5.02518 9.27623C4.97881 9.1338 4.93372 8.991 4.88867 8.84814C4.8572 8.75071 4.82565 8.6533 4.79401 8.55592C4.71717 8.31884 4.64138 8.08143 4.56641 7.84375C4.53805 7.84375 4.50969 7.84375 4.48047 7.84375ZM15.7697 8.59688C15.7398 8.64647 15.7398 8.64647 15.7093 8.69706C15.6316 8.82264 15.5417 8.92938 15.4456 9.0415C15.3856 9.1149 15.3256 9.18831 15.2656 9.26172C15.2012 9.3405 15.1367 9.41928 15.0723 9.49805C15.0244 9.55654 15.0244 9.55654 14.9756 9.61621C14.75 9.89193 14.5244 10.1676 14.2988 10.4434C14.2512 10.5016 14.2512 10.5016 14.2027 10.561C14.1367 10.6416 14.0705 10.722 14.0043 10.8024C13.6668 11.1422 13.6668 11.1422 13.4609 11.5391C14.4961 11.5391 15.5312 11.5391 16.5977 11.5391C16.5977 11.2555 16.5977 10.9719 16.5977 10.6797C16.5495 10.6797 16.5014 10.6797 16.4531 10.6797C16.177 10.6797 15.9531 10.4558 15.9531 10.1797C15.9531 10.0552 15.9531 9.93026 15.9531 9.80469C15.9531 9.52855 16.177 9.30469 16.4531 9.30469C16.4726 9.30469 16.4921 9.30469 16.5117 9.30469C16.6539 9.17989 16.7295 9.09763 16.8286 8.94482C16.8536 8.90957 16.8785 8.87432 16.9042 8.838C16.9755 8.73675 17.0444 8.63416 17.1133 8.53125C17.1479 8.48255 17.1828 8.43401 17.218 8.38573C17.3473 8.23533 17.3473 8.23533 17.4141 8.05859C16.678 7.97059 16.1933 7.93982 15.7697 8.59688ZM17.9727 10.6797C17.9727 12.5514 17.9727 14.4231 17.9727 16.3516C18.9652 16.3516 19.9578 16.3516 20.9805 16.3516C20.9805 14.4798 20.9805 12.6081 20.9805 10.6797C19.9879 10.6797 18.9953 10.6797 17.9727 10.6797ZM3.01953 12.0117C3.01953 13.4439 3.01953 14.876 3.01953 16.3516C4.01211 16.3516 5.00469 16.3516 6.02734 16.3516C6.02734 14.9194 6.02734 13.4873 6.02734 12.0117C5.03477 12.0117 4.04219 12.0117 3.01953 12.0117ZM13.1172 12.8711C13.1172 14.0196 13.1172 15.1682 13.1172 16.3516C13.4717 16.3516 13.8262 16.3516 14.1914 16.3516C14.1914 16.0042 14.1914 15.6569 14.1914 15.3047C14.1914 15.0286 14.4153 14.8047 14.6914 14.8047C14.8017 14.8047 14.9123 14.8047 15.0234 14.8047C15.2996 14.8047 15.5234 15.0285 15.5234 15.3047C15.5234 15.6498 15.5234 15.9972 15.5234 16.3516C15.8779 16.3516 16.2324 16.3516 16.5977 16.3516C16.5977 15.203 16.5977 14.0545 16.5977 12.8711C15.4491 12.8711 14.3005 12.8711 13.1172 12.8711ZM7.40234 15.5352C7.40234 15.8046 7.40234 16.074 7.40234 16.3516C7.54414 16.3516 7.68594 16.3516 7.83203 16.3516C7.83203 16.9613 7.83203 17.571 7.83203 18.1992C8.04473 18.1 8.25742 18.0007 8.47656 17.8984C9.52772 17.5733 10.3146 17.7335 11.3125 18.1992C11.3125 17.5895 11.3125 16.9798 11.3125 16.3516C11.4543 16.3516 11.5961 16.3516 11.7422 16.3516C11.7422 16.0821 11.7422 15.8127 11.7422 15.5352C10.31 15.5352 8.87789 15.5352 7.40234 15.5352ZM2.54688 17.7266C2.54688 18.4355 2.54688 19.1445 2.54688 19.875C3.85141 19.875 5.15594 19.875 6.5 19.875C6.5 19.166 6.5 18.457 6.5 17.7266C5.19547 17.7266 3.89094 17.7266 2.54688 17.7266ZM12.6875 17.7266C12.6875 18.2728 12.6875 18.819 12.6875 19.375C12.6875 19.6511 12.9114 19.875 13.1875 19.875C15.9138 19.875 18.6445 19.875 21.4531 19.875C21.4531 19.166 21.4531 18.457 21.4531 17.7266C18.5605 17.7266 15.6678 17.7266 12.6875 17.7266Z\" fill=\"#F9F9F9\"/> </svg>'},MKinesVzO:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.9896 7.31272C14.0992 6.84775 13.8244 6.37866 13.3757 6.26499C12.927 6.15131 12.4744 6.4361 12.3647 6.90107L10.0561 16.6867C9.94638 17.1517 10.2212 17.6208 10.6699 17.7345C11.1186 17.8481 11.5713 17.5634 11.681 17.0984L13.9896 7.31272Z\" fill=\"#F9F9F9\"/> <path d=\"M15.2211 8.85068C14.9915 9.33595 15.185 9.92217 15.6533 10.1601L19.2035 11.9634L15.6401 13.846C15.1755 14.0914 14.9908 14.6807 15.2277 15.1622C15.4646 15.6437 16.0332 15.835 16.4979 15.5895L21.37 13.0156C22.2174 12.568 22.2078 11.31 21.3538 10.8762L16.4846 8.40274C16.0163 8.16486 15.4506 8.36541 15.2211 8.85068Z\" fill=\"#F9F9F9\"/> <path d=\"M8.7789 8.85068C9.00845 9.33595 8.81492 9.92217 8.34663 10.1601L4.79648 11.9634L8.35988 13.846C8.82451 14.0914 9.00914 14.6807 8.77227 15.1622C8.5354 15.6437 7.96673 15.835 7.50211 15.5895L2.62995 13.0156C1.78261 12.568 1.79213 11.31 2.64614 10.8762L7.51535 8.40274C7.98364 8.16486 8.54935 8.36541 8.7789 8.85068Z\" fill=\"#F9F9F9\"/> </svg>'},n6MXPMTt_:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4545 8.45455H20.181C21.1856 8.45455 22 9.26559 22 10.2682V17.55C22 18.5516 21.185 19.3636 20.181 19.3636H17.4545V20.2754C17.4545 20.776 17.0468 21.1818 16.5432 21.1818H7.45679C6.95348 21.1818 6.54545 20.7752 6.54545 20.2754V19.3636H3.819C2.8144 19.3636 2 18.5526 2 17.55V10.2682C2 9.26655 2.81504 8.45455 3.819 8.45455H7V3.90639C7 3.40581 7.40983 3 7.90948 3H16.5451C17.0474 3 17.4545 3.4066 17.4545 3.90639V8.45455ZM6.54545 15.7273C6.0416 15.7273 5.63636 15.3238 5.63636 14.8182C5.63636 14.3161 6.04541 13.9091 6.54147 13.9091H17.4585C17.9584 13.9091 18.3636 14.3126 18.3636 14.8182C18.3636 15.3203 17.9546 15.7273 17.4585 15.7273L17.4545 17.5455H20.1818V10.2727H3.81818V17.5455H6.54545V15.7273ZM8.36364 15.7273V19.3636H15.6364V15.7273H8.36364ZM6.54545 13C6.04338 13 5.63636 12.593 5.63636 12.0909C5.63636 11.5888 6.04338 11.1818 6.54545 11.1818C7.04753 11.1818 7.45455 11.5888 7.45455 12.0909C7.45455 12.593 7.04753 13 6.54545 13ZM8.81818 4.81818V8.45455H15.6364V4.81818H8.81818Z\" fill=\"#F9F9F9\"/> </svg>'},nbSd1sRPM:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19 3H5C3.34315 3 2 4.34315 2 6V14C2 15.6569 3.34315 17 5 17H11V19H9C8.44772 19 8 19.4477 8 20C8 20.5523 8.44772 21 9 21H13.2955C13.1061 20.6067 13 20.1657 13 19.7V15H5C4.44772 15 4 14.5523 4 14V6C4 5.44772 4.44772 5 5 5H19C19.5523 5 20 5.44772 20 6V8.7C20.7684 8.7 21.4692 8.98885 22 9.46389V6C22 4.34315 20.6569 3 19 3Z\" fill=\"#F9F9F9\"/> <path d=\"M17.3888 16.9333C16.8304 16.9333 16.3777 17.386 16.3777 17.9444C16.3777 18.5029 16.8304 18.9556 17.3888 18.9556H18.611C19.1695 18.9556 19.6221 18.5029 19.6221 17.9444C19.6221 17.386 19.1695 16.9333 18.611 16.9333H17.3888Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8333 9.6H16.1666C14.9331 9.6 13.9333 10.5999 13.9333 11.8333V19.1667C13.9333 20.4001 14.9332 21.4 16.1666 21.4H19.8333C21.0667 21.4 22.0666 20.4001 22.0666 19.1667V11.8333C22.0666 10.5999 21.0667 9.6 19.8333 9.6ZM15.9555 11.8333C15.9555 11.7167 16.05 11.6222 16.1666 11.6222H19.8333C19.9498 11.6222 20.0444 11.7167 20.0444 11.8333V19.1667C20.0444 19.2833 19.9499 19.3778 19.8333 19.3778H16.1666C16.05 19.3778 15.9555 19.2833 15.9555 19.1667V11.8333Z\" fill=\"#F9F9F9\"/> </svg>'},ncwN6QtFx:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.4271 3.61376L20.3873 6.57401C21.2056 7.39229 21.2056 8.71898 20.3873 9.53726L17.9806 11.9436C18.9891 12.0949 19.7625 12.965 19.7625 14.0156V18.9047C19.7625 20.0619 18.8243 21 17.6671 21H5.09514C3.93792 21 2.9998 20.0619 2.9998 18.9047V6.33272C2.9998 5.1755 3.93792 4.23739 5.09514 4.23739H9.98424C11.0355 4.23739 11.9061 5.01169 12.0566 6.02112L14.4639 3.61376C15.2822 2.79548 16.6088 2.79548 17.4271 3.61376ZM4.39669 18.9047C4.39669 19.2904 4.7094 19.6032 5.09514 19.6032L10.6818 19.6025L10.6827 13.3172L4.39669 13.3165V18.9047ZM12.0786 19.6025L17.6671 19.6032C18.0529 19.6032 18.3656 19.2904 18.3656 18.9047V14.0156C18.3656 13.6299 18.0529 13.3172 17.6671 13.3172L12.0786 13.3165V19.6025ZM9.98424 5.63428H5.09514C4.7094 5.63428 4.39669 5.94699 4.39669 6.33272V11.9196H10.6827V6.33272C10.6827 5.94699 10.37 5.63428 9.98424 5.63428ZM12.0796 10.113V11.9203L13.8862 11.9196L12.0796 10.113ZM15.4516 4.6015L12.4914 7.56176C12.2186 7.83452 12.2186 8.27675 12.4914 8.54951L15.4516 11.5098C15.7243 11.7825 16.1666 11.7825 16.4394 11.5098L19.3996 8.54951C19.6724 8.27675 19.6724 7.83452 19.3996 7.56176L16.4394 4.6015C16.1666 4.32875 15.7243 4.32875 15.4516 4.6015Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5287 9.67869L18.3754 11.8317C19.2965 12.1302 19.9625 12.995 19.9625 14.0156V18.9047C19.9625 20.1724 18.9348 21.2 17.6671 21.2H5.09514C3.82746 21.2 2.7998 20.1724 2.7998 18.9047V6.33272C2.7998 5.06505 3.82746 4.03739 5.09514 4.03739H9.98424C11.0054 4.03739 11.8707 4.70416 12.1687 5.62613L14.3225 3.47234L14.4639 3.61376L12.0566 6.02112C12.0447 5.94154 12.0284 5.86343 12.0078 5.78703C11.7677 4.89441 10.9527 4.23739 9.98424 4.23739H5.09514C3.93792 4.23739 2.9998 5.1755 2.9998 6.33272V18.9047C2.9998 20.0619 3.93792 21 5.09514 21H17.6671C18.8243 21 19.7625 20.0619 19.7625 18.9047V14.0156C19.7625 13.0478 19.1063 12.2332 18.2145 11.9925C18.1382 11.9719 18.0601 11.9555 17.9806 11.9436L20.3873 9.53726C21.2056 8.71898 21.2056 7.39229 20.3873 6.57401L17.4271 3.61376C16.6088 2.79548 15.2822 2.79548 14.4639 3.61376L14.3225 3.47234C15.2189 2.57596 16.6722 2.57595 17.5686 3.47233L20.5288 6.43259C21.4252 7.32897 21.4251 8.78231 20.5287 9.67869ZM17.6671 13.3172L12.0786 13.3165V19.6025L17.6671 19.6032C18.0529 19.6032 18.3656 19.2904 18.3656 18.9047V14.0156C18.3656 13.6299 18.0529 13.3172 17.6671 13.3172ZM12.2786 19.4025L17.6672 19.4032C17.9424 19.4032 18.1656 19.18 18.1656 18.9047V14.0156C18.1656 13.7403 17.9424 13.5172 17.6671 13.5172L12.2786 13.5165V19.4025ZM4.59669 18.9047C4.59669 19.18 4.81986 19.4032 5.09514 19.4032L10.4818 19.4025L10.4827 13.5171L4.59669 13.5165V18.9047ZM4.39669 18.9047C4.39669 19.2904 4.7094 19.6032 5.09514 19.6032L10.6818 19.6025L10.6827 13.3172L4.39669 13.3165V18.9047ZM9.98424 5.83428H5.09514C4.81986 5.83428 4.59669 6.05744 4.59669 6.33272V11.7196H10.4827V6.33272C10.4827 6.05745 10.2595 5.83428 9.98424 5.83428ZM10.6827 6.33272C10.6827 5.94699 10.37 5.63428 9.98424 5.63428H5.09514C4.7094 5.63428 4.39669 5.94699 4.39669 6.33272V11.9196H10.6827V6.33272ZM12.6328 7.70319C12.4381 7.89784 12.4381 8.21344 12.6328 8.40809L15.593 11.3684C15.7877 11.563 16.1033 11.563 16.2979 11.3684L19.2582 8.40809C19.4529 8.21344 19.4529 7.89784 19.2582 7.70318L16.2979 4.74293C16.1033 4.54827 15.7877 4.54827 15.593 4.74292L12.6328 7.70319ZM12.0796 11.9203L13.8862 11.9196L12.0796 10.113V11.9203ZM12.2796 10.5958V11.7202L13.4035 11.7198L12.2796 10.5958ZM12.4914 7.56176L15.4516 4.6015C15.7243 4.32875 16.1666 4.32875 16.4394 4.6015L19.3996 7.56176C19.6724 7.83452 19.6724 8.27675 19.3996 8.54951L16.4394 11.5098C16.1666 11.7825 15.7243 11.7825 15.4516 11.5098L12.4914 8.54951C12.2186 8.27675 12.2186 7.83452 12.4914 7.56176Z\" fill=\"#F9F9F9\"/> </svg>'},NgbJ4fEO9:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19.5347 8.11343C19.4816 7.86378 19.4267 7.60566 19.4761 7.43786C19.5367 7.23208 19.8825 7.02364 20.1876 6.83973C20.6143 6.58257 21.0555 6.31664 20.9891 5.91599C20.9151 5.46982 20.4394 5.4493 20.0572 5.4328C19.831 5.42306 19.5746 5.41198 19.4734 5.31865C19.3663 5.21973 19.3953 4.99937 19.4288 4.74422C19.4654 4.46633 19.5068 4.15137 19.3879 3.8572C19.212 3.42124 18.5405 2.82346 17.9509 2.57791C17.6238 2.44167 17.3465 2.41941 17.1269 2.51173C16.8301 2.63623 16.6967 2.86187 16.5678 3.08013C16.3921 3.37763 16.2261 3.65858 15.615 3.78334C14.9671 3.91587 14.24 3.71183 13.6558 3.54783C13.2326 3.42909 12.8673 3.32634 12.5961 3.3641C12.2479 3.41224 12.0108 3.61056 11.8202 3.76993C11.6376 3.92268 11.5174 4.0164 11.371 4.01291C11.2147 4.00954 11.0724 3.92909 10.9218 3.84388C10.7067 3.72218 10.4628 3.58419 10.1586 3.68154C9.93607 3.7526 9.79163 3.91185 9.66412 4.05237C9.49335 4.2406 9.41547 4.30822 9.275 4.27168C9.16464 4.24291 9.09759 4.04089 9.02657 3.82699C8.91918 3.50343 8.78556 3.10078 8.38369 2.93822C8.03312 2.79613 7.65928 2.81844 7.32931 2.83817C7.04115 2.85541 6.76902 2.87165 6.55761 2.78007C6.39719 2.71057 6.2568 2.5869 6.10821 2.45599C5.82407 2.20568 5.50196 1.92211 4.99052 2.01972C4.55661 2.10236 4.28706 2.57363 4.02632 3.02941C3.85258 3.33315 3.65566 3.67739 3.48459 3.71166C3.33172 3.74217 3.11778 3.65094 2.891 3.5542C2.47704 3.37758 1.96172 3.15779 1.4921 3.57097C1.04248 3.96633 0.925534 4.76111 1.04235 5.34187C1.12415 5.74867 1.30509 6.0184 1.55178 6.1013C1.91353 6.22287 2.19539 5.95104 2.42195 5.73269C2.63092 5.53124 2.76681 5.41285 2.89004 5.46615C3.05684 5.53835 2.86302 6.12125 2.74725 6.46955C2.60678 6.89202 2.48547 7.25687 2.57404 7.49535C2.70953 7.85937 3.08674 7.84732 3.36245 7.8385C3.49603 7.83427 3.63423 7.82982 3.71045 7.86421C3.81059 7.90939 3.88528 8.07597 3.96429 8.25229C4.09717 8.54873 4.26257 8.91764 4.68962 8.97304C5.12759 9.03 5.40981 8.72203 5.65867 8.45051C5.81556 8.2794 5.96372 8.11775 6.13623 8.04755C6.41404 7.93471 6.76514 8.0122 6.94403 8.15241C7.04107 8.22845 7.0835 8.31314 7.07031 8.40389C7.05006 8.54149 6.95594 8.59112 6.72965 8.67947C6.54823 8.75032 6.32237 8.83846 6.19324 9.0589C6.08821 9.23757 6.09419 9.43471 6.09952 9.60862C6.10624 9.83003 6.10393 9.97172 5.97616 10.0894C5.87947 10.1786 5.72808 10.1592 5.48912 10.1199C5.24257 10.0794 4.96328 10.0335 4.70176 10.1773C4.34691 10.3724 4.14047 10.9219 4.15274 11.3192C4.16108 11.5903 4.26536 11.7866 4.44643 11.8721C4.68487 11.9845 4.90627 11.8666 5.10175 11.7627C5.27374 11.6712 5.436 11.5846 5.62222 11.6146C6.02745 11.6795 6.49423 12.138 6.59201 12.4677C6.63623 12.6173 6.63924 12.7597 6.64243 12.9106C6.64693 13.1211 6.65203 13.3596 6.77972 13.6219C6.87872 13.8249 7.05394 13.988 7.20852 14.1319C7.33843 14.2528 7.4727 14.3777 7.50592 14.4816C7.53591 14.5755 7.52836 14.7315 7.52042 14.8966C7.50592 15.1975 7.4879 15.5718 7.66225 15.9266C7.86737 16.3432 8.49025 16.992 8.99933 17.0606C9.19 17.0864 9.35235 17.0306 9.46873 16.8994C9.74557 16.5869 9.49989 16.0768 9.26229 15.5836C9.11313 15.2739 8.94402 14.9229 8.97545 14.7399C9.01465 14.5099 9.16953 14.4258 9.41896 14.3077C9.58122 14.2307 9.74902 14.1513 9.86867 14.0015C10.0099 13.8246 10.0333 13.62 10.0539 13.4393C10.0769 13.2385 10.0949 13.0799 10.2439 12.9497C10.3735 12.8366 10.6131 12.7837 10.8543 12.8151C11.075 12.8439 11.257 12.9354 11.3411 13.0599C11.4329 13.1958 11.4281 13.4032 11.423 13.6228C11.4169 13.8865 11.4101 14.1856 11.5937 14.4048C11.7238 14.5604 11.8892 14.6397 12.0351 14.7096C12.2516 14.8134 12.4225 14.8954 12.5139 15.1951C12.5871 15.4363 12.4792 15.8844 12.3648 16.3589C12.228 16.9267 12.0729 17.5703 12.1804 18.0847C12.3633 18.9607 13.1877 20.2926 13.9372 20.6329C14.2901 20.793 14.8415 20.9304 15.3185 20.9304C15.5752 20.9304 15.8103 20.8907 15.9814 20.7932C16.1452 20.6998 16.2418 20.559 16.2607 20.3861C16.3219 19.831 15.7241 19.7197 15.2437 19.6303C15.0414 19.5927 14.8323 19.5538 14.6942 19.4899C14.267 19.2924 13.9363 18.7245 13.798 18.2493C13.6327 17.6823 13.5332 16.0326 13.7976 15.746C13.8755 15.6616 14.0124 15.6841 14.2295 15.728C14.4796 15.7785 14.7906 15.8414 15.0192 15.5952C15.3364 15.2533 15.0857 14.9135 14.9026 14.6654C14.8273 14.5634 14.7495 14.4579 14.7083 14.3595C14.5728 14.0342 14.6149 13.1958 14.9867 12.9529C15.1349 12.8559 15.4042 12.8329 15.6893 12.8085C16.3041 12.7559 17.1461 12.6838 17.6385 11.7989C18.0351 11.0857 17.7495 10.1418 17.5199 9.38324C17.349 8.81846 17.1876 8.28503 17.3957 8.14294C17.5949 8.007 17.7925 8.17995 18.1886 8.64599C18.5005 9.01307 18.8233 9.39245 19.2184 9.26796C19.7451 9.10251 19.6285 8.5541 19.5347 8.11343Z\" fill=\"#F9F9F9\"/> <path d=\"M16.0185 16.3487C15.6579 16.3487 15.553 16.6944 15.4765 16.9468C15.4232 17.1223 15.3682 17.3037 15.2578 17.3817C15.1242 17.4759 15.0531 17.4664 14.9455 17.4521C14.832 17.437 14.6768 17.4164 14.4985 17.5478C14.3813 17.634 14.3099 17.774 14.2919 17.9526C14.2614 18.2534 14.3856 18.643 14.5806 18.8587C14.7653 19.0634 15.1437 19.166 15.4852 19.1659C15.6573 19.1659 15.8201 19.1399 15.9439 19.0878C16.3224 18.9285 16.5082 18.3356 16.5525 17.8761C16.5895 17.4869 16.6115 16.79 16.3431 16.4949C16.2561 16.3993 16.1439 16.3487 16.0185 16.3487Z\" fill=\"#F9F9F9\"/> <path d=\"M16.7865 15.7065C16.789 15.9147 16.8591 16.1483 16.9839 16.3642C17.1086 16.5806 17.276 16.7583 17.4551 16.8646C17.5754 16.9359 17.6943 16.9718 17.8049 16.9718C17.8877 16.9718 17.9658 16.9516 18.0363 16.911C18.346 16.7321 18.369 16.2118 18.0888 15.7266C17.9149 15.4253 17.664 15.2061 17.4179 15.1403C17.2781 15.103 17.1462 15.1169 17.0366 15.1803C16.8724 15.2752 16.7836 15.462 16.7865 15.7065Z\" fill=\"#F9F9F9\"/> <path d=\"M17.1492 14.62C17.2318 14.6858 17.3347 14.7198 17.4499 14.7198C17.4729 14.7198 17.4964 14.7184 17.5203 14.7157C17.7737 14.6868 18.0541 14.5072 18.2703 14.235C18.4868 13.9629 18.5987 13.6491 18.5697 13.3957C18.5532 13.2521 18.492 13.1345 18.3931 13.056C18.2939 12.977 18.1655 12.9439 18.0218 12.9603C17.7684 12.9892 17.488 13.1689 17.2719 13.441C17.1163 13.6365 17.0125 13.8573 16.9793 14.0628C16.9405 14.3041 17.0008 14.502 17.1492 14.62Z\" fill=\"#F9F9F9\"/> <path d=\"M15.4026 14.3959C15.4844 14.4431 15.5751 14.4669 15.6687 14.4669C15.733 14.4669 15.7987 14.4556 15.8635 14.4329C16.0132 14.3803 16.1417 14.2716 16.2252 14.1267C16.3087 13.9821 16.3385 13.8166 16.3091 13.6606C16.2778 13.4949 16.1845 13.3598 16.0464 13.2801C15.9083 13.2005 15.7447 13.1874 15.5856 13.2431C15.4359 13.2956 15.3075 13.4042 15.2242 13.5489C15.047 13.8563 15.1269 14.2362 15.4026 14.3959Z\" fill=\"#F9F9F9\"/> <path d=\"M18.6588 17.9153C18.3995 17.7438 17.9441 17.7409 17.5514 17.908C16.9877 18.1484 16.4613 19.0839 16.6749 19.7481C16.8202 20.2003 17.3139 20.4687 17.7265 20.5002C17.7542 20.5023 17.7812 20.5033 17.8076 20.5033C18.0637 20.5033 18.2577 20.405 18.3465 20.2273C18.4816 19.9575 18.3475 19.7385 18.2398 19.5625C18.1353 19.3916 18.0737 19.2791 18.1233 19.1268C18.1715 18.9786 18.2836 18.9199 18.4625 18.8407C18.6424 18.7611 18.8889 18.652 18.8889 18.3367C18.8888 18.163 18.8071 18.0134 18.6588 17.9153Z\" fill=\"#F9F9F9\"/> <path d=\"M19.6822 18.4211C19.4868 18.4845 19.3387 18.6551 19.286 18.8771C19.2319 19.1055 19.2912 19.3392 19.4409 19.4871C19.5697 19.6144 19.7239 19.6679 19.8601 19.7152C19.998 19.763 20.1171 19.8043 20.1999 19.9135C20.2591 19.9913 20.2529 20.0666 20.2357 20.204C20.216 20.3614 20.1915 20.5571 20.3352 20.7615C20.5302 21.0395 21.1238 21.2961 21.5468 21.2961C21.6735 21.2961 21.785 21.2731 21.8658 21.2207C21.9656 21.1559 22.0267 21.0323 22.0526 20.8427C22.1157 20.3803 21.9491 19.4473 21.5344 18.978C21.0126 18.3875 20.0513 18.3016 19.6822 18.4211Z\" fill=\"#F9F9F9\"/> <path d=\"M22.5038 5.90969C22.1301 5.80767 21.7298 6.07618 21.6111 6.50834C21.4929 6.94033 21.7007 7.37528 22.0744 7.47804C22.1281 7.49267 22.1822 7.49969 22.236 7.49969C22.5573 7.49969 22.8656 7.24952 22.9667 6.87939C23.0853 6.4474 22.8778 6.01249 22.5038 5.90969Z\" fill=\"#F9F9F9\"/> <path d=\"M22.2696 8.01883C22.0533 7.82266 21.7689 7.74928 21.4897 7.81746C21.1142 7.90913 21.0585 8.24452 21.0139 8.51403C20.9823 8.70449 20.9525 8.88434 20.8326 8.98958C20.719 9.0895 20.4835 9.16703 20.2558 9.24198C19.8125 9.38796 19.3099 9.5534 19.3414 10.0096C19.353 10.1793 19.4336 10.3156 19.5746 10.4037C19.7083 10.4872 19.8801 10.518 20.0609 10.518C20.5313 10.518 21.0627 10.3096 21.1419 10.2774C21.7648 10.0248 22.4734 9.24927 22.5461 8.74076C22.5832 8.47954 22.48 8.20964 22.2696 8.01883Z\" fill=\"#F9F9F9\"/> </svg>'},nIUEec1IL:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 11.9999C2 11.5639 2.35346 11.2104 2.78947 11.2104H21.2105C21.6465 11.2104 22 11.5639 22 11.9999C22 12.4359 21.6465 12.7894 21.2105 12.7894H2.78947C2.35346 12.7894 2 12.4359 2 11.9999Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.2368 15.5525H15.9474C15.366 15.5525 14.8947 16.0238 14.8947 16.6052V17.9209C14.8947 18.5023 15.366 18.9736 15.9474 18.9736H19.2368C19.8182 18.9736 20.2895 18.5023 20.2895 17.9209V16.6052C20.2895 16.0238 19.8182 15.5525 19.2368 15.5525ZM15.9474 13.9736C14.494 13.9736 13.3158 15.1518 13.3158 16.6052V17.9209C13.3158 19.3743 14.494 20.5525 15.9474 20.5525H19.2368C20.6902 20.5525 21.8684 19.3743 21.8684 17.9209V16.6052C21.8684 15.1518 20.6902 13.9736 19.2368 13.9736H15.9474Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.05263 15.5525H4.76316C4.18181 15.5525 3.71053 16.0238 3.71053 16.6052V17.9209C3.71053 18.5023 4.18181 18.9736 4.76316 18.9736H8.05263C8.63398 18.9736 9.10526 18.5023 9.10526 17.9209V16.6052C9.10526 16.0238 8.63398 15.5525 8.05263 15.5525ZM4.76316 13.9736C3.30978 13.9736 2.13158 15.1518 2.13158 16.6052V17.9209C2.13158 19.3743 3.30978 20.5525 4.76316 20.5525H8.05263C9.50601 20.5525 10.6842 19.3743 10.6842 17.9209V16.6052C10.6842 15.1518 9.50601 13.9736 8.05263 13.9736H4.76316Z\" fill=\"#F9F9F9\"/> <path d=\"M8.10035 7.2053C8.48971 7.2053 8.80537 7.52096 8.80537 7.91032V8.37347L8.79794 8.47555C8.64491 9.5217 7.76916 10.0262 6.45527 10.0262C5.14129 10.0262 4.26552 9.52123 4.11266 8.47442L4.10526 8.37262V7.91032C4.10526 7.52096 4.42091 7.2053 4.81028 7.2053H8.10035ZM6.45532 3.44727C7.23404 3.44727 7.86532 4.07855 7.86532 4.85732C7.86532 5.63603 7.23404 6.26725 6.45532 6.26725C5.67659 6.26725 5.04531 5.63603 5.04531 4.85732C5.04531 4.07855 5.67659 3.44727 6.45532 3.44727Z\" fill=\"#F9F9F9\"/> <path d=\"M19.2846 7.2053C19.6739 7.2053 19.9896 7.52096 19.9896 7.91032V8.37347L19.9822 8.47555C19.8291 9.5217 18.9534 10.0262 17.6395 10.0262C16.3255 10.0262 15.4497 9.52123 15.2969 8.47442L15.2895 8.37262V7.91032C15.2895 7.52096 15.6051 7.2053 15.9945 7.2053H19.2846ZM17.6395 3.44727C18.4183 3.44727 19.0495 4.07855 19.0495 4.85732C19.0495 5.63603 18.4183 6.26725 17.6395 6.26725C16.8608 6.26725 16.2295 5.63603 16.2295 4.85732C16.2295 4.07855 16.8608 3.44727 17.6395 3.44727Z\" fill=\"#F9F9F9\"/> </svg>'},oModJrobm:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M7.14395 7.38659C6.76083 7.38659 6.45025 7.69718 6.45025 8.0803C6.45025 8.46342 6.76083 8.774 7.14395 8.774H10.8437C11.2268 8.774 11.5374 8.46342 11.5374 8.0803C11.5374 7.69718 11.2268 7.38659 10.8437 7.38659H7.14395Z\" fill=\"#F9F9F9\"/> <path d=\"M6.45025 10.8551C6.45025 10.472 6.76083 10.1614 7.14395 10.1614H16.3933C16.7765 10.1614 17.0871 10.472 17.0871 10.8551C17.0871 11.2382 16.7765 11.5488 16.3933 11.5488H7.14395C6.76083 11.5488 6.45025 11.2382 6.45025 10.8551Z\" fill=\"#F9F9F9\"/> <path d=\"M6.45025 13.6299C6.45025 13.2468 6.76083 12.9362 7.14395 12.9362H14.5435C14.9266 12.9362 15.2372 13.2468 15.2372 13.6299C15.2372 14.013 14.9266 14.3236 14.5435 14.3236H7.14395C6.76083 14.3236 6.45025 14.013 6.45025 13.6299Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9999 2.22437C12.5522 2.22437 12.9999 2.67208 12.9999 3.22437V3.68684H17.7493C19.6823 3.68684 21.2493 5.25384 21.2493 7.18684V14.5234C21.2493 16.4564 19.6823 18.0234 17.7493 18.0234H17.157L18.0725 20.0104C18.3035 20.5121 18.0842 21.106 17.5826 21.3371C17.081 21.5682 16.487 21.3489 16.256 20.8473L14.955 18.0234H9.04476L7.7438 20.8473C7.51271 21.3489 6.91874 21.5682 6.41712 21.3371C5.91551 21.106 5.69621 20.5121 5.9273 20.0104L6.84273 18.0234H6.25049C4.31749 18.0234 2.75049 16.4564 2.75049 14.5234V7.18683C2.75049 5.25384 4.31749 3.68684 6.25049 3.68684H10.9999V3.22437C10.9999 2.67208 11.4476 2.22437 11.9999 2.22437ZM17.7493 5.68684H6.25049C5.42206 5.68684 4.75049 6.35841 4.75049 7.18683V14.5234C4.75049 15.3518 5.42206 16.0234 6.25049 16.0234H17.7493C18.5777 16.0234 19.2493 15.3518 19.2493 14.5234V7.18684C19.2493 6.35841 18.5777 5.68684 17.7493 5.68684Z\" fill=\"#F9F9F9\"/> </svg>'},P_aSaI0q7:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M2 15V6C2 4.34315 3.34315 3 5 3H19C20.6569 3 22 4.34315 22 6V8.75463C21.3984 8.27238 20.7257 7.87526 20 7.58152V6C20 5.44772 19.5523 5 19 5H5C4.44772 5 4 5.44772 4 6V15C4 15.5523 4.44772 16 5 16H9.06189C9.14901 16.6986 9.32622 17.3693 9.58152 18H5C3.34315 18 2 16.6569 2 15Z\" fill=\"#F9F9F9\"/> <path d=\"M10.0703 19H6C5.44772 19 5 19.4477 5 20C5 20.5523 5.44772 21 6 21H11.7084C11.0604 20.4281 10.5057 19.7528 10.0703 19Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.0001 8.49995C13.4102 8.49995 10.5001 11.4101 10.5001 15C10.5001 18.5898 13.4102 21.5 17.0001 21.5C20.5899 21.5 23.5001 18.5898 23.5001 15C23.5001 11.4101 20.5899 8.49995 17.0001 8.49995ZM13.2578 12.5C14.0651 11.294 15.4399 10.5 17.0001 10.5C18.5603 10.5 19.9351 11.294 20.7424 12.5H13.2578ZM12.5104 15.3071C12.6322 17.1136 13.8201 18.6279 15.4502 19.2259C15.2016 17.4259 14.0445 15.9562 12.5104 15.3071ZM18.5498 19.226C20.18 18.628 21.368 17.1136 21.4898 15.307C19.9556 15.9561 18.7985 17.4258 18.5498 19.226ZM16.5 15C16.5 14.7238 16.7238 14.5 17 14.5C17.2762 14.5 17.5 14.7238 17.5 15C17.5 15.2762 17.2762 15.5 17 15.5C16.7238 15.5 16.5 15.2762 16.5 15Z\" fill=\"#F9F9F9\"/> </svg>'},pf02o_SYH:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19 3H5C3.34315 3 2 4.34315 2 6V14C2 15.6569 3.34315 17 5 17H11V19H9C8.44772 19 8 19.4477 8 20C8 20.5523 8.44772 21 9 21H13.2955C13.1061 20.6067 13 20.1657 13 19.7V15H5C4.44772 15 4 14.5523 4 14V6C4 5.44772 4.44772 5 5 5H19C19.5523 5 20 5.44772 20 6V8.7C20.7684 8.7 21.4692 8.98885 22 9.46389V6C22 4.34315 20.6569 3 19 3Z\" fill=\"#F9F9F9\"/> <path d=\"M17.3888 16.9333C16.8304 16.9333 16.3777 17.386 16.3777 17.9444C16.3777 18.5029 16.8304 18.9556 17.3888 18.9556H18.611C19.1695 18.9556 19.6221 18.5029 19.6221 17.9444C19.6221 17.386 19.1695 16.9333 18.611 16.9333H17.3888Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8333 9.6H16.1666C14.9331 9.6 13.9333 10.5999 13.9333 11.8333V19.1667C13.9333 20.4001 14.9332 21.4 16.1666 21.4H19.8333C21.0667 21.4 22.0666 20.4001 22.0666 19.1667V11.8333C22.0666 10.5999 21.0667 9.6 19.8333 9.6ZM15.9555 11.8333C15.9555 11.7167 16.05 11.6222 16.1666 11.6222H19.8333C19.9498 11.6222 20.0444 11.7167 20.0444 11.8333V19.1667C20.0444 19.2833 19.9499 19.3778 19.8333 19.3778H16.1666C16.05 19.3778 15.9555 19.2833 15.9555 19.1667V11.8333Z\" fill=\"#F9F9F9\"/> </svg>'},PiBGPnWxu:{customStrokeWidth:1.5,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.73218 2.35066C10.5647 1.88313 11.5822 1.88308 12.4147 2.35071L19.3432 6.24268C19.8709 6.53901 20.1386 7.06281 20.1463 7.58992L20.1465 7.61133L20.1463 10.5C19.4187 10.5844 18.7128 11.2092 18.1465 11.7563V9.65601L12.4149 12.8757C12.304 12.938 12.1898 12.992 12.0732 13.0377V19.7123L12.08 19.7085V20.1508C12.08 20.8044 12.08 21.9173 12.08 21.9173C11.3396 22.1834 10.4308 22.2068 9.73219 21.8145L2.80346 17.9226C2.27042 17.6235 2 17.0816 2 16.5519V7.61022L2.00007 7.59826C2.00503 7.06837 2.27272 6.54064 2.80314 6.24273L9.73218 2.35066ZM9.73205 12.8757C9.84278 12.938 9.95679 12.9919 10.0732 13.0376V19.7121L4 16.3007V9.65605L9.73205 12.8757ZM10.7114 4.09452L4.44706 7.61325L6.74323 8.90301L13.3785 5.18605L11.4353 4.09447C11.2111 3.96853 10.9359 3.96848 10.7114 4.09452ZM10.7116 11.132L8.7866 10.0508L15.4218 6.33385L17.6994 7.61325L11.4351 11.1321C11.211 11.258 10.9359 11.2581 10.7116 11.132Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5144 14.1188L16.2078 18.4327C15.9652 18.6757 15.7798 18.9698 15.6652 19.2935L15.3916 20.0658L16.2046 19.7909C16.5445 19.676 16.8528 19.4831 17.1048 19.2277L21.3385 14.9367C21.5626 14.7095 21.5614 14.3441 21.3358 14.1185C21.1089 13.8917 20.7411 13.8918 20.5144 14.1188ZM14.7563 16.9836C14.2983 17.4424 13.9483 17.9976 13.7319 18.6087L13.0451 20.5477C12.6411 21.6883 13.7297 22.7928 14.8761 22.4052L16.8615 21.7339C17.5047 21.5164 18.088 21.1515 18.5648 20.6682L22.7985 16.3772C23.8144 15.3475 23.8088 13.691 22.786 12.6682C21.7578 11.6399 20.0904 11.6406 19.063 12.6698L14.7563 16.9836Z\" fill=\"#F9F9F9\"/> </svg>'},psXRJ3lwM:{customStrokeWidth:1.5,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.67268 8.57426C7.41186 8.10969 8.37668 8.29886 8.88894 8.98731C9.17511 9.44749 9.29673 10.132 9.08843 10.6261L9.02172 10.7659L7.88264 12.9212C7.57847 13.4967 7.79847 14.2099 8.37414 14.514C8.67787 14.6745 9.03366 14.6933 9.34915 14.5717L9.4887 14.5072L11.1698 13.5583C11.2856 13.4924 11.4337 13.5325 11.4997 13.6483C11.5578 13.7507 11.5331 13.8783 11.4465 13.9517L9.73996 14.9199C9.24753 15.197 8.64805 15.205 8.1485 14.941C7.37491 14.5322 7.05668 13.5989 7.4006 12.8099L8.59923 10.5318C8.79606 10.1594 8.77919 9.71035 8.55507 9.35379C8.23988 8.85239 7.60992 8.67012 7.08342 8.90151L6.9442 8.97395L3.48512 11.1474C3.48374 11.1483 3.4829 11.1498 3.4829 11.1514V16.6081C3.4829 17.7819 4.43461 18.7336 5.60863 18.7336H18.3914C19.5654 18.7336 20.5171 17.7819 20.5171 16.6081V9.88199C20.5171 9.88073 20.5176 9.87952 20.5185 9.87864L20.9919 9.4062C20.9949 9.40322 21 9.40534 21 9.40955V16.6081C21 18.0486 19.832 19.2165 18.3914 19.2165H5.60863C4.16793 19.2165 3 18.0486 3 16.6081V7.60936C3 6.22074 4.08544 5.0853 5.4539 5.00547L5.61516 5.00098H14.6325C14.6367 5.00098 14.6388 5.00609 14.6358 5.00907L14.1614 5.48247C14.1605 5.48336 14.1593 5.48386 14.1581 5.48386H5.59916L5.44429 5.49012C4.35134 5.57883 3.4829 6.49395 3.4829 7.60936V10.5695C3.4829 10.5732 3.48701 10.5754 3.49016 10.5735L6.67268 8.57426Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9329 11.4405L13.6325 9.26787C13.7136 9.01636 13.8534 8.78778 14.0403 8.60121L18.103 4.54555C18.7263 3.92331 19.7168 3.8921 20.3765 4.45172L20.5748 4.65014C21.1338 5.30982 21.1017 6.29975 20.479 6.922L16.4258 10.968C16.2315 11.1619 15.9923 11.3046 15.7295 11.3835L13.5256 12.045C13.2726 12.1209 13.0061 11.9775 12.9301 11.7245C12.9023 11.6319 12.9032 11.5327 12.9329 11.4405ZM14.3814 8.94298C14.249 9.07529 14.1498 9.23735 14.0923 9.4156L13.3981 11.5713C13.3969 11.575 13.4003 11.5784 13.404 11.5773L15.5906 10.9211C15.7767 10.8651 15.9467 10.7639 16.0845 10.6264L20.1495 6.56863L20.2428 6.46056C20.5907 5.992 20.5633 5.31358 20.1382 4.88829C19.6707 4.42038 18.9123 4.41999 18.4442 4.88728L14.3814 8.94298Z\" fill=\"#F9F9F9\"/> <path d=\"M6.67268 8.57426C7.41186 8.10969 8.37668 8.29886 8.88894 8.98731C9.17511 9.44749 9.29673 10.132 9.08843 10.6261L9.02172 10.7659L7.88264 12.9212C7.57847 13.4967 7.79847 14.2099 8.37414 14.514C8.67787 14.6745 9.03366 14.6933 9.34915 14.5717L9.4887 14.5072L11.1698 13.5583C11.2856 13.4924 11.4337 13.5325 11.4997 13.6483C11.5578 13.7507 11.5331 13.8783 11.4465 13.9517L9.73996 14.9199C9.24753 15.197 8.64805 15.205 8.1485 14.941C7.37491 14.5322 7.05668 13.5989 7.4006 12.8099L8.59923 10.5318C8.79606 10.1594 8.77919 9.71035 8.55507 9.35379C8.23988 8.85239 7.60992 8.67012 7.08342 8.90151L6.9442 8.97395L3.48512 11.1474C3.48374 11.1483 3.4829 11.1498 3.4829 11.1514V16.6081C3.4829 17.7819 4.43461 18.7336 5.60863 18.7336H18.3914C19.5654 18.7336 20.5171 17.7819 20.5171 16.6081V9.88199C20.5171 9.88073 20.5176 9.87952 20.5185 9.87864L20.9919 9.4062C20.9949 9.40322 21 9.40534 21 9.40955V16.6081C21 18.0486 19.832 19.2165 18.3914 19.2165H5.60863C4.16793 19.2165 3 18.0486 3 16.6081V7.60936C3 6.22074 4.08544 5.0853 5.4539 5.00547L5.61516 5.00098H14.6325C14.6367 5.00098 14.6388 5.00609 14.6358 5.00907L14.1614 5.48247C14.1605 5.48336 14.1593 5.48386 14.1581 5.48386H5.59916L5.44429 5.49012C4.35134 5.57883 3.4829 6.49395 3.4829 7.60936V10.5695C3.4829 10.5732 3.48701 10.5754 3.49016 10.5735L6.67268 8.57426Z\" stroke=\"#F9F9F9\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9329 11.4405L13.6325 9.26787C13.7136 9.01636 13.8534 8.78778 14.0403 8.60121L18.103 4.54555C18.7263 3.92331 19.7168 3.8921 20.3765 4.45172L20.5748 4.65014C21.1338 5.30982 21.1017 6.29975 20.479 6.922L16.4258 10.968C16.2315 11.1619 15.9923 11.3046 15.7295 11.3835L13.5256 12.045C13.2726 12.1209 13.0061 11.9775 12.9301 11.7245C12.9023 11.6319 12.9032 11.5327 12.9329 11.4405ZM14.3814 8.94298C14.249 9.07529 14.1498 9.23735 14.0923 9.4156L13.3981 11.5713C13.3969 11.575 13.4003 11.5784 13.404 11.5773L15.5906 10.9211C15.7767 10.8651 15.9467 10.7639 16.0845 10.6264L20.1495 6.56863L20.2428 6.46056C20.5907 5.992 20.5633 5.31358 20.1382 4.88829C19.6707 4.42038 18.9123 4.41999 18.4442 4.88728L14.3814 8.94298Z\" stroke=\"#F9F9F9\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},puvoZLScD:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9835 13.8216C11.3578 13.8216 10.8507 14.3108 10.8507 14.9141C10.8507 15.5175 11.3578 16.0067 11.9835 16.0067C12.6091 16.0067 13.1162 15.5175 13.1162 14.9141C13.1162 14.3108 12.6091 13.8216 11.9835 13.8216ZM9.71802 14.9141C9.71802 13.7073 10.7323 12.729 11.9835 12.729C13.2346 12.729 14.2488 13.7073 14.2488 14.9141C14.2488 16.121 13.2346 17.0992 11.9835 17.0992C10.7323 17.0992 9.71802 16.121 9.71802 14.9141ZM7.8302 19.1152C7.8302 18.4041 8.42787 17.8276 9.16514 17.8276H14.8017C15.5389 17.8276 16.1366 18.4041 16.1366 19.1152V19.377C16.1366 19.5287 16.1367 20.4031 15.6073 21.2529C15.0475 22.1517 13.9573 22.9261 11.9834 22.9261C10.0095 22.9261 8.91927 22.1517 8.35943 21.2529C7.83015 20.4031 7.83019 19.5287 7.8302 19.377V19.1152ZM9.16514 18.9201C9.05344 18.9201 8.96289 19.0075 8.96289 19.1152V19.3754C8.96289 19.4787 8.96485 20.1034 9.33037 20.6902C9.66724 21.231 10.3705 21.8336 11.9834 21.8336C13.5963 21.8336 14.2995 21.231 14.6365 20.6902C15.0019 20.1034 15.0039 19.4787 15.0039 19.3754V19.1152C15.0039 19.0075 14.9134 18.9201 14.8017 18.9201H9.16514Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.13274 21.3941C7.56307 20.4794 7.56312 19.5429 7.56313 19.3775V19.1152C7.56313 18.2476 8.28955 17.5605 9.16514 17.5605H14.8017C15.6772 17.5605 16.4037 18.2476 16.4037 19.1152V19.377C16.4037 19.5425 16.4037 20.4796 15.834 21.3941C15.2196 22.3806 14.0378 23.1932 11.9834 23.1932C9.92891 23.1932 8.74721 22.3806 8.13274 21.3941ZM15.6073 21.2529C16.1367 20.4031 16.1366 19.5287 16.1366 19.377V19.1152C16.1366 18.4041 15.5389 17.8276 14.8017 17.8276H9.16514C8.42787 17.8276 7.8302 18.4041 7.8302 19.1152V19.377C7.83019 19.5287 7.83015 20.4031 8.35943 21.2529C8.91927 22.1517 10.0095 22.9261 11.9834 22.9261C13.9573 22.9261 15.0475 22.1517 15.6073 21.2529ZM11.9835 14.0887C11.4962 14.0887 11.1178 14.4673 11.1178 14.9141C11.1178 15.361 11.4962 15.7396 11.9835 15.7396C12.4707 15.7396 12.8491 15.361 12.8491 14.9141C12.8491 14.4672 12.4707 14.0887 11.9835 14.0887ZM9.45095 14.9141C9.45095 13.5508 10.594 12.462 11.9835 12.462C13.3729 12.462 14.5159 13.5508 14.5159 14.9141C14.5159 16.2775 13.3729 17.3663 11.9835 17.3663C10.594 17.3663 9.45095 16.2775 9.45095 14.9141ZM9.22996 19.1872H14.7368V19.3754C14.7368 19.4675 14.734 20.0284 14.4098 20.549M9.22996 19.1872V19.3754C9.22996 19.4675 9.2328 20.0284 9.55706 20.549C9.70357 20.7842 9.92982 21.0344 10.3016 21.2278C10.6753 21.4222 11.2101 21.5665 11.9834 21.5665C12.7567 21.5665 13.2915 21.4222 13.6652 21.2278C14.037 21.0344 14.2632 20.7842 14.4098 20.549M10.8507 14.9141C10.8507 14.3108 11.3578 13.8216 11.9835 13.8216C12.6091 13.8216 13.1162 14.3108 13.1162 14.9141C13.1162 15.5175 12.6091 16.0067 11.9835 16.0067C11.3578 16.0067 10.8507 15.5175 10.8507 14.9141ZM11.9835 12.729C10.7323 12.729 9.71802 13.7073 9.71802 14.9141C9.71802 16.121 10.7323 17.0992 11.9835 17.0992C13.2346 17.0992 14.2488 16.121 14.2488 14.9141C14.2488 13.7073 13.2346 12.729 11.9835 12.729ZM8.96289 19.1152C8.96289 19.0075 9.05344 18.9201 9.16514 18.9201H14.8017C14.9134 18.9201 15.0039 19.0075 15.0039 19.1152V19.3754C15.0039 19.4787 15.0019 20.1034 14.6365 20.6902C14.2995 21.231 13.5963 21.8336 11.9834 21.8336C10.3705 21.8336 9.66724 21.231 9.33037 20.6902C8.96485 20.1034 8.96289 19.4787 8.96289 19.3754V19.1152Z\" fill=\"#F9F9F9\"/> <path d=\"M7.73238 1.1001C6.16724 1.1001 4.89844 2.3689 4.89844 3.93404V10.7746C4.89844 11.2603 5.2922 11.6541 5.77794 11.6541C6.26367 11.6541 6.65744 11.2603 6.65744 10.7746V3.93404C6.65744 3.34037 7.13871 2.8591 7.73238 2.8591H16.5274C17.1211 2.8591 17.6023 3.34037 17.6023 3.93404V10.7746C17.6023 11.2603 17.9961 11.6541 18.4818 11.6541C18.9676 11.6541 19.3613 11.2603 19.3613 10.7746V3.93404C19.3613 2.3689 18.0925 1.1001 16.5274 1.1001H7.73238Z\" fill=\"#F9F9F9\"/> <path d=\"M8.22099 4.17835C7.81621 4.17835 7.48808 4.50649 7.48808 4.91126C7.48808 5.31604 7.81621 5.64418 8.22099 5.64418H9.19822C9.60299 5.64418 9.93113 5.31604 9.93113 4.91126C9.93113 4.50649 9.60299 4.17835 9.19822 4.17835H8.22099Z\" fill=\"#F9F9F9\"/> <path d=\"M7.48808 7.35432C7.48808 6.94954 7.81621 6.6214 8.22099 6.6214H9.19822C9.60299 6.6214 9.93113 6.94954 9.93113 7.35432C9.93113 7.7591 9.60299 8.08724 9.19822 8.08724H8.22099C7.81621 8.08724 7.48808 7.7591 7.48808 7.35432Z\" fill=\"#F9F9F9\"/> <path d=\"M8.22099 9.06446C7.81621 9.06446 7.48808 9.3926 7.48808 9.79738C7.48808 10.2022 7.81621 10.5303 8.22099 10.5303H9.19822C9.60299 10.5303 9.93113 10.2022 9.93113 9.79738C9.93113 9.3926 9.60299 9.06446 9.19822 9.06446H8.22099Z\" fill=\"#F9F9F9\"/> <path d=\"M10.9084 4.91126C10.9084 4.50649 11.2365 4.17835 11.6413 4.17835H12.6185C13.0233 4.17835 13.3514 4.50649 13.3514 4.91126C13.3514 5.31604 13.0233 5.64418 12.6185 5.64418H11.6413C11.2365 5.64418 10.9084 5.31604 10.9084 4.91126Z\" fill=\"#F9F9F9\"/> <path d=\"M11.6413 6.6214C11.2365 6.6214 10.9084 6.94954 10.9084 7.35432C10.9084 7.7591 11.2365 8.08724 11.6413 8.08724H12.6185C13.0233 8.08724 13.3514 7.7591 13.3514 7.35432C13.3514 6.94954 13.0233 6.6214 12.6185 6.6214H11.6413Z\" fill=\"#F9F9F9\"/> <path d=\"M10.9084 9.79738C10.9084 9.3926 11.2365 9.06446 11.6413 9.06446H12.6185C13.0233 9.06446 13.3514 9.3926 13.3514 9.79738C13.3514 10.2022 13.0233 10.5303 12.6185 10.5303H11.6413C11.2365 10.5303 10.9084 10.2022 10.9084 9.79738Z\" fill=\"#F9F9F9\"/> <path d=\"M15.0615 4.17835C14.6568 4.17835 14.3286 4.50649 14.3286 4.91126C14.3286 5.31604 14.6568 5.64418 15.0615 5.64418H16.0388C16.4435 5.64418 16.7717 5.31604 16.7717 4.91126C16.7717 4.50649 16.4435 4.17835 16.0388 4.17835H15.0615Z\" fill=\"#F9F9F9\"/> <path d=\"M14.3286 7.35432C14.3286 6.94954 14.6568 6.6214 15.0615 6.6214H16.0388C16.4435 6.6214 16.7717 6.94954 16.7717 7.35432C16.7717 7.7591 16.4435 8.08724 16.0388 8.08724H15.0615C14.6568 8.08724 14.3286 7.7591 14.3286 7.35432Z\" fill=\"#F9F9F9\"/> <path d=\"M15.0615 9.06446C14.6568 9.06446 14.3286 9.3926 14.3286 9.79738C14.3286 10.2022 14.6568 10.5303 15.0615 10.5303H16.0388C16.4435 10.5303 16.7717 10.2022 16.7717 9.79738C16.7717 9.3926 16.4435 9.06446 16.0388 9.06446H15.0615Z\" fill=\"#F9F9F9\"/> </svg>'},Rb_MQJEGQ:{customStrokeWidth:1.5,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.00657 6.55747H18.7144C19.8861 6.55747 20.8359 7.50727 20.8359 8.6789V10.4353C20.2527 10.4754 19.6634 10.6137 19.1644 10.8985V8.6789C19.1644 8.43037 18.963 8.2289 18.7144 8.2289H9.00946V15.4743C9.00955 15.9942 8.89253 16.5074 8.6671 16.9758L8.5051 17.2932H12.8146C12.4933 17.828 12.2214 18.4208 12.0067 18.9646H11.643V18.9788H5.50494C4.57549 18.9788 3.6841 18.6096 3.02687 17.9524C2.36965 17.2951 2.00042 16.4037 2.00042 15.4743V6.95831C1.98654 6.05679 2.31383 5.18333 2.91674 4.51294C3.51964 3.84255 4.35361 3.42475 5.25154 3.34326H5.50494C6.34739 3.34516 7.16118 3.64932 7.79837 4.20042C8.43555 4.75153 8.85382 5.51299 8.97711 6.34636L9.00657 6.55747ZM3.6179 6.84778C3.6179 6.3473 3.81671 5.86733 4.1706 5.51344C4.52449 5.15955 5.00447 4.96073 5.50494 4.96073C6.00542 4.96073 6.4854 5.15955 6.83929 5.51344C7.19318 5.86733 7.39199 6.3473 7.39199 6.84778V12.5089L7.0065 12.3256C6.53785 12.1008 6.02471 11.9841 5.50494 11.9841C4.98518 11.9841 4.47204 12.1008 4.00339 12.3256L3.6179 12.5089V6.84778ZM3.6179 15.4743C3.6179 15.1011 3.72857 14.7362 3.93592 14.4259C4.14327 14.1156 4.43799 13.8737 4.7828 13.7309C5.12761 13.5881 5.50704 13.5507 5.87309 13.6235C6.23914 13.6963 6.57538 13.876 6.83929 14.1399C7.1032 14.4039 7.28292 14.7401 7.35573 15.1061C7.42855 15.4722 7.39118 15.8516 7.24835 16.1964C7.10552 16.5412 6.86366 16.836 6.55333 17.0433C6.24301 17.2507 5.87817 17.3613 5.50494 17.3613C5.00447 17.3613 4.52449 17.1625 4.1706 16.8086C3.81671 16.4547 3.6179 15.9748 3.6179 15.4743Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8419 9.94372C13.8071 9.85001 13.7269 9.77956 13.628 9.76467C13.4928 9.74432 13.3544 9.73376 13.2135 9.73376C13.0738 9.73376 12.9366 9.74413 12.8025 9.76414C12.7039 9.77886 12.6238 9.84909 12.589 9.94257L12.5207 10.1266C12.4491 10.3194 12.2941 10.4675 12.1159 10.57C11.9388 10.6718 11.7365 10.7291 11.5352 10.6947L11.3358 10.6606C11.2367 10.6437 11.135 10.6778 11.0719 10.756C10.9012 10.9677 10.7617 11.2052 10.6603 11.4617C10.6235 11.5548 10.6448 11.6597 10.7091 11.7364L10.8374 11.8896C10.9686 12.046 11.0201 12.2513 11.0201 12.4555C11.0201 12.6597 10.9686 12.8651 10.8374 13.0216L10.7091 13.1746C10.6448 13.2513 10.6236 13.3562 10.6604 13.4493C10.7618 13.7058 10.9013 13.9434 11.072 14.1551C11.1351 14.2333 11.2369 14.2674 11.3359 14.2505L11.5354 14.2164C11.7367 14.182 11.9389 14.2393 12.1159 14.341C12.2941 14.4435 12.4491 14.5916 12.5206 14.7843L12.589 14.9683C12.6237 15.0618 12.7038 15.132 12.8024 15.1468C12.9365 15.1668 13.0738 15.1771 13.2135 15.1771C13.3544 15.1771 13.4929 15.1666 13.6281 15.1462C13.7269 15.1313 13.8072 15.0609 13.842 14.9672L13.9114 14.7803C13.9824 14.589 14.136 14.4419 14.3128 14.34C14.489 14.2385 14.6903 14.1814 14.8908 14.2156L15.0916 14.2499C15.1906 14.2669 15.2923 14.2328 15.3554 14.1546C15.5265 13.9423 15.6662 13.704 15.7676 13.4466C15.8044 13.3533 15.7831 13.2482 15.7187 13.1713L15.5876 13.015C15.4579 12.8603 15.4067 12.6574 15.4067 12.4555C15.4067 12.2537 15.4579 12.0509 15.5876 11.8962L15.7187 11.7397C15.7831 11.6629 15.8045 11.5578 15.7677 11.4644C15.6663 11.2071 15.5266 10.9688 15.3555 10.7565C15.2925 10.6783 15.1907 10.6442 15.0917 10.6611L14.891 10.6954C14.6905 10.7297 14.4891 10.6726 14.3129 10.571C14.136 10.4691 13.9824 10.3219 13.9113 10.1306L13.8419 9.94372ZM13.2139 13.3627C13.7149 13.3627 14.1211 12.9565 14.1211 12.4555C14.1211 11.9544 13.7149 11.5482 13.2139 11.5482C12.7128 11.5482 12.3066 11.9544 12.3066 12.4555C12.3066 12.9565 12.7128 13.3627 13.2139 13.3627Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5144 14.1188L16.2078 18.4327C15.9652 18.6757 15.7798 18.9698 15.6652 19.2935L15.3916 20.0658L16.2046 19.7909C16.5445 19.676 16.8528 19.4831 17.1048 19.2277L21.3385 14.9367C21.5626 14.7095 21.5614 14.3441 21.3358 14.1185C21.1089 13.8917 20.7411 13.8918 20.5144 14.1188ZM14.7563 16.9836C14.2983 17.4424 13.9483 17.9976 13.7319 18.6087L13.0451 20.5477C12.6411 21.6883 13.7297 22.7928 14.8761 22.4052L16.8615 21.7339C17.5047 21.5164 18.088 21.1515 18.5648 20.6682L22.7985 16.3772C23.8144 15.3475 23.8088 13.691 22.786 12.6682C21.7578 11.6399 20.0904 11.6406 19.063 12.6698L14.7563 16.9836Z\" fill=\"#F9F9F9\"/> </svg>'},RbgacZv_a:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M4.5 18.1C5.10751 18.1 5.6 17.6075 5.6 17V7C5.6 6.39249 5.10751 5.9 4.5 5.9C3.89249 5.9 3.4 6.39249 3.4 7V17C3.4 17.6075 3.89249 18.1 4.5 18.1ZM9.5 6.00352C8.89277 6.00352 8.4 6.49629 8.4 7.10352C8.4 7.71074 8.89277 8.20352 9.5 8.20352H19.5C20.1072 8.20352 20.6 7.71074 20.6 7.10352C20.6 6.49629 20.1072 6.00352 19.5 6.00352H9.5ZM9.5 11.0035C8.89277 11.0035 8.4 11.4963 8.4 12.1035C8.4 12.7107 8.89277 13.2035 9.5 13.2035H16.5C17.1072 13.2035 17.6 12.7107 17.6 12.1035C17.6 11.4963 17.1072 11.0035 16.5 11.0035H9.5ZM9.5 16.0035C8.89277 16.0035 8.4 16.4963 8.4 17.1035C8.4 17.7107 8.89277 18.2035 9.5 18.2035H13.5C14.1072 18.2035 14.6 17.7107 14.6 17.1035C14.6 16.4963 14.1072 16.0035 13.5 16.0035H9.5Z\" fill=\"#F9F9F9\" stroke=\"#F9F9F9\" stroke-width=\"0.2\"/> </svg>'},rFqqOxng1:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.75 2.34074C10.7441 2.34402 10.7381 2.34733 10.7322 2.35066L3.99857 6.13296C4.29826 6.30566 4.5 6.62927 4.5 7V7.5C4.5 8.05228 4.05228 8.5 3.5 8.5H3V16H3.5C4.05228 16 4.5 16.4477 4.5 17V17.5C4.5 17.7574 4.40272 17.9922 4.24291 18.1694L10.7322 21.8145C10.7602 21.8302 10.7884 21.8454 10.8168 21.8601C10.7736 21.7483 10.75 21.6269 10.75 21.5V21C10.75 20.4477 11.1977 20 11.75 20H12.25C12.8023 20 13.25 20.4477 13.25 21V21.5C13.25 21.6607 13.2121 21.8126 13.1447 21.9472C13.2365 21.9082 13.3266 21.8639 13.4147 21.8144L15.1549 20.8369C16.56 20.0475 18.4577 18.9814 19.5265 18.381C19.2131 18.2122 19 17.881 19 17.5V17C19 16.4477 19.4477 16 20 16H20.5C20.7465 16 20.9722 16.0892 21.1465 16.2371V8.2629C20.9722 8.41079 20.7465 8.5 20.5 8.5H20C19.4477 8.5 19 8.05228 19 7.5V7C19 6.4756 19.4036 6.04548 19.9172 6.00338L13.4147 2.35071C13.3606 2.3203 13.3056 2.29185 13.25 2.26539V2.5C13.25 3.05228 12.8023 3.5 12.25 3.5H11.75C11.1977 3.5 10.75 3.05228 10.75 2.5V2.34074ZM11.5227 11.0259C11.0799 11.1289 10.75 11.5259 10.75 12V12.5C10.75 12.6574 10.7864 12.8064 10.8512 12.9389C10.8111 12.9189 10.7714 12.8978 10.732 12.8757L5 9.65605V16.3007L11.0732 19.7121V13.2362C11.2513 13.4 11.489 13.5 11.75 13.5H12.25C12.5914 13.5 12.8928 13.329 13.0732 13.0679V19.7123L19.1465 16.3006V9.65601L13.4149 12.8757C13.3125 12.9332 13.2073 12.9837 13.1 13.0271C13.1951 12.874 13.25 12.6934 13.25 12.5V12C13.25 11.5613 12.9675 11.1886 12.5745 11.0538L18.6994 7.61325L12.4353 4.09447C12.2111 3.96853 11.9359 3.96847 11.7114 4.09452L5.44706 7.61325L11.5227 11.0259Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 2C10 1.0335 10.7835 0.25 11.75 0.25H12.25C13.2165 0.25 14 1.0335 14 2V2.5C14 3.4665 13.2165 4.25 12.25 4.25H11.75C10.7835 4.25 10 3.4665 10 2.5V2ZM11.75 1.75C11.6119 1.75 11.5 1.86193 11.5 2V2.5C11.5 2.63807 11.6119 2.75 11.75 2.75H12.25C12.3881 2.75 12.5 2.63807 12.5 2.5V2C12.5 1.86193 12.3881 1.75 12.25 1.75H11.75Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 5.25C2.0335 5.25 1.25 6.0335 1.25 7V7.5C1.25 8.4665 2.0335 9.25 3 9.25H3.5C4.4665 9.25 5.25 8.4665 5.25 7.5V7C5.25 6.0335 4.4665 5.25 3.5 5.25H3ZM2.75 7C2.75 6.86193 2.86193 6.75 3 6.75H3.5C3.63807 6.75 3.75 6.86193 3.75 7V7.5C3.75 7.63807 3.63807 7.75 3.5 7.75H3C2.86193 7.75 2.75 7.63807 2.75 7.5V7Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.25 7C18.25 6.0335 19.0335 5.25 20 5.25H20.5C21.4665 5.25 22.25 6.0335 22.25 7V7.5C22.25 8.4665 21.4665 9.25 20.5 9.25H20C19.0335 9.25 18.25 8.4665 18.25 7.5V7ZM20 6.75C19.8619 6.75 19.75 6.86193 19.75 7V7.5C19.75 7.63807 19.8619 7.75 20 7.75H20.5C20.6381 7.75 20.75 7.63807 20.75 7.5V7C20.75 6.86193 20.6381 6.75 20.5 6.75H20Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 12C10 11.0335 10.7835 10.25 11.75 10.25H12.25C13.2165 10.25 14 11.0335 14 12V12.5C14 13.4665 13.2165 14.25 12.25 14.25H11.75C10.7835 14.25 10 13.4665 10 12.5V12ZM11.75 11.75C11.6119 11.75 11.5 11.8619 11.5 12V12.5C11.5 12.6381 11.6119 12.75 11.75 12.75H12.25C12.3881 12.75 12.5 12.6381 12.5 12.5V12C12.5 11.8619 12.3881 11.75 12.25 11.75H11.75Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.75 19.25C10.7835 19.25 10 20.0335 10 21V21.5C10 22.4665 10.7835 23.25 11.75 23.25H12.25C13.2165 23.25 14 22.4665 14 21.5V21C14 20.0335 13.2165 19.25 12.25 19.25H11.75ZM11.5 21C11.5 20.8619 11.6119 20.75 11.75 20.75H12.25C12.3881 20.75 12.5 20.8619 12.5 21V21.5C12.5 21.6381 12.3881 21.75 12.25 21.75H11.75C11.6119 21.75 11.5 21.6381 11.5 21.5V21Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.25 17C18.25 16.0335 19.0335 15.25 20 15.25H20.5C21.4665 15.25 22.25 16.0335 22.25 17V17.5C22.25 18.4665 21.4665 19.25 20.5 19.25H20C19.0335 19.25 18.25 18.4665 18.25 17.5V17ZM20 16.75C19.8619 16.75 19.75 16.8619 19.75 17V17.5C19.75 17.6381 19.8619 17.75 20 17.75H20.5C20.6381 17.75 20.75 17.6381 20.75 17.5V17C20.75 16.8619 20.6381 16.75 20.5 16.75H20Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 15.25C2.0335 15.25 1.25 16.0335 1.25 17V17.5C1.25 18.4665 2.0335 19.25 3 19.25H3.5C4.4665 19.25 5.25 18.4665 5.25 17.5V17C5.25 16.0335 4.4665 15.25 3.5 15.25H3ZM2.75 17C2.75 16.8619 2.86193 16.75 3 16.75H3.5C3.63807 16.75 3.75 16.8619 3.75 17V17.5C3.75 17.6381 3.63807 17.75 3.5 17.75H3C2.86193 17.75 2.75 17.6381 2.75 17.5V17Z\" fill=\"#F9F9F9\"/> </svg>'},RJ3nOAE40:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.16085 7.59418C1.40407 6.83739 1.40406 5.6104 2.16085 4.85362L3.88511 3.12936C4.64189 2.37257 5.86889 2.37257 6.62567 3.12936L7.75307 4.25676C8.1436 4.64728 8.1436 5.28045 7.75307 5.67097L4.70246 8.72158C4.31194 9.1121 3.67877 9.1121 3.28825 8.72158L2.16085 7.59418ZM3.619 6.2239L3.99536 6.60026L5.63175 4.96386L5.25539 4.5875L3.619 6.2239Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.68613 6.90951C4.07666 6.51899 4.70982 6.51899 5.10035 6.90951C5.88236 7.69152 6.32169 8.75215 6.32169 9.85808L6.32169 10.2293C6.32169 11.0092 6.63061 11.7557 7.18153 12.3066L14.9153 20.0404C15.3764 20.5015 15.6357 20.49 15.7281 20.4715C15.8717 20.4428 16.1671 20.2874 16.5285 19.711C16.7002 19.4019 16.9976 18.9602 17.384 18.5304C17.762 18.11 18.2787 17.6409 18.9044 17.3459C19.4567 16.993 19.6074 16.7052 19.6356 16.564C19.6541 16.4716 19.6655 16.2124 19.2044 15.7513L11.4706 8.01747C10.9197 7.46656 10.1733 7.15763 9.39339 7.15763H9.02214C7.91621 7.15763 6.85558 6.7183 6.07357 5.93629C5.68304 5.54577 5.68304 4.9126 6.07357 4.52208C6.46409 4.13155 7.09726 4.13155 7.48778 4.52208C7.89472 4.92901 8.44664 5.15763 9.02214 5.15763H9.39338C10.7029 5.15763 11.9583 5.67674 12.8848 6.60326L20.6187 14.3371C21.3513 15.0697 21.7938 15.9711 21.5968 16.9563C21.4103 17.8886 20.7069 18.5827 19.9074 19.0777C19.8688 19.1016 19.8286 19.1228 19.7872 19.1412C19.4896 19.2735 19.1689 19.5366 18.8712 19.8676C18.5794 20.1921 18.3655 20.5195 18.2694 20.6958C18.2606 20.7119 18.2514 20.7277 18.2418 20.7433C17.7468 21.5429 17.0527 22.2462 16.1203 22.4327C15.1351 22.6297 14.2338 22.1873 13.5011 21.4546L5.76732 13.7208C4.84079 12.7943 4.32169 11.5389 4.32169 10.2293L4.32169 9.85808C4.32169 9.28259 4.09307 8.73066 3.68613 8.32372C3.29561 7.9332 3.29561 7.30003 3.68613 6.90951Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5629 10.1968C10.2684 9.98318 9.14711 11.1045 9.36076 12.399C9.39042 12.5787 9.33161 12.7617 9.2028 12.8905L7.77697 14.3163L6.97786 13.5172L8.21097 12.2841C8.08724 10.455 9.61889 8.92331 11.4481 9.04704L12.6812 7.81393L13.4803 8.61304L12.0545 10.0389C11.9256 10.1677 11.7426 10.2265 11.5629 10.1968ZM11.3548 17.8942L12.7807 16.4684C12.9048 16.3442 13.0797 16.2848 13.2538 16.3077C14.5423 16.4769 15.6408 15.3783 15.4716 14.0898C15.4488 13.9157 15.5081 13.7409 15.6323 13.6167L17.0581 12.1909L17.8572 12.99L16.6168 14.2305C16.6887 16.0328 15.1967 17.5248 13.3944 17.4528L12.1539 18.6933L11.3548 17.8942Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.361 13.8513C10.2506 13.741 10.2506 13.5621 10.361 13.4517L12.4831 11.3296C12.5935 11.2192 12.7723 11.2192 12.8827 11.3296C12.993 11.4399 12.993 11.6188 12.8827 11.7291L10.7605 13.8513C10.6502 13.9616 10.4713 13.9616 10.361 13.8513Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5548 15.045C11.4445 14.9347 11.4445 14.7558 11.5548 14.6455L13.677 12.5233C13.7873 12.413 13.9662 12.413 14.0765 12.5233C14.1869 12.6336 14.1869 12.8125 14.0765 12.9228L11.9544 15.045C11.844 15.1553 11.6651 15.1553 11.5548 15.045Z\" fill=\"#F9F9F9\"/> </svg>'},rJpUafGPx:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.09931 12.6833C5.48179 12.6833 4.98122 13.1839 4.98122 13.8014C4.98122 14.4188 5.48179 14.9194 6.09931 14.9194C6.71682 14.9194 7.21732 14.4188 7.21732 13.8014C7.21732 13.1839 6.71682 12.6833 6.09931 12.6833ZM3.86321 13.8014C3.86321 12.5664 4.86435 11.5653 6.09931 11.5653C7.33419 11.5653 8.33533 12.5664 8.33533 13.8014C8.33533 15.0363 7.33419 16.0374 6.09931 16.0374C4.86435 16.0374 3.86321 15.0363 3.86321 13.8014ZM1.99985 18.1003C1.99985 17.3727 2.58979 16.7827 3.3175 16.7827H8.881C9.60867 16.7827 10.1986 17.3727 10.1986 18.1003V18.3682C10.1986 18.5235 10.1987 19.4182 9.6762 20.2878C9.12368 21.2076 8.04756 22.0001 6.09923 22.0001C4.15089 22.0001 3.07482 21.2076 2.52223 20.2878C1.99981 19.4182 1.99985 18.5235 1.99985 18.3682V18.1003ZM3.3175 17.9007C3.20725 17.9007 3.11787 17.9901 3.11787 18.1003V18.3666C3.11787 18.4723 3.11981 19.1115 3.48059 19.7121C3.81309 20.2655 4.50721 20.8821 6.09923 20.8821C7.69128 20.8821 8.38535 20.2655 8.71792 19.7121C9.07866 19.1115 9.0806 18.4723 9.0806 18.3666V18.1003C9.0806 17.9901 8.99123 17.9007 8.881 17.9007H3.3175Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.28796 20.4286C1.7265 19.494 1.72655 18.5376 1.72656 18.3689V18.1003C1.72656 17.2217 2.43885 16.5094 3.3175 16.5094H8.881C9.75961 16.5094 10.4719 17.2217 10.4719 18.1003V18.3682C10.4719 18.5371 10.4719 19.4941 9.91047 20.4286M1.99985 18.3682C1.99985 18.5235 1.99981 19.4182 2.52223 20.2878C3.07482 21.2076 4.15089 22.0001 6.09923 22.0001C8.04756 22.0001 9.12368 21.2076 9.6762 20.2878C10.1987 19.4182 10.1986 18.5235 10.1986 18.3682V18.1003C10.1986 17.3727 9.60867 16.7827 8.881 16.7827H3.3175C2.58979 16.7827 1.99985 17.3727 1.99985 18.1003V18.3682ZM6.09931 12.9566C5.63272 12.9566 5.25451 13.3349 5.25451 13.8014C5.25451 14.2678 5.63272 14.6461 6.09931 14.6461C6.56588 14.6461 6.94403 14.2679 6.94403 13.8014C6.94403 13.3348 6.56588 12.9566 6.09931 12.9566ZM3.58992 13.8014C3.58992 12.4155 4.71343 11.292 6.09931 11.292C7.48512 11.292 8.60863 12.4155 8.60863 13.8014C8.60863 15.1873 7.48512 16.3107 6.09931 16.3107C4.71343 16.3107 3.58992 15.1873 3.58992 13.8014ZM9.91047 20.4286C9.30408 21.438 8.13449 22.2734 6.09923 22.2734C4.06393 22.2734 2.89442 21.438 2.28796 20.4286M3.39116 18.174V18.3666C3.39116 18.4617 3.39411 19.0374 3.71485 19.5713C3.85973 19.8124 4.08257 20.0674 4.44732 20.2641C4.81366 20.4617 5.3386 20.6088 6.09923 20.6088C6.85988 20.6088 7.38481 20.4617 7.75115 20.2641C8.11588 20.0674 8.33873 19.8125 8.48365 19.5713M3.39116 18.174H8.80731V18.3666C8.80731 18.4617 8.80434 19.0375 8.48365 19.5713M4.98122 13.8014C4.98122 13.1839 5.48179 12.6833 6.09931 12.6833C6.71682 12.6833 7.21732 13.1839 7.21732 13.8014C7.21732 14.4188 6.71682 14.9194 6.09931 14.9194C5.48179 14.9194 4.98122 14.4188 4.98122 13.8014ZM6.09931 11.5653C4.86435 11.5653 3.86321 12.5664 3.86321 13.8014C3.86321 15.0363 4.86435 16.0374 6.09931 16.0374C7.33419 16.0374 8.33533 15.0363 8.33533 13.8014C8.33533 12.5664 7.33419 11.5653 6.09931 11.5653ZM3.11787 18.1003C3.11787 17.9901 3.20725 17.9007 3.3175 17.9007H8.881C8.99123 17.9007 9.0806 17.9901 9.0806 18.1003V18.3666C9.0806 18.4723 9.07866 19.1115 8.71792 19.7121C8.38535 20.2655 7.69128 20.8821 6.09923 20.8821C4.50721 20.8821 3.81309 20.2655 3.48059 19.7121C3.11981 19.1115 3.11787 18.4723 3.11787 18.3666V18.1003Z\" fill=\"#F9F9F9\"/> <path d=\"M17.7499 12.6833C17.1097 12.6833 16.5908 13.1839 16.5908 13.8013C16.5908 14.4187 17.1097 14.9193 17.7499 14.9193C18.3901 14.9193 18.909 14.4187 18.909 13.8013C18.909 13.1839 18.3901 12.6833 17.7499 12.6833ZM15.4317 13.8013C15.4317 12.5664 16.4696 11.5653 17.7499 11.5653C19.0302 11.5653 20.0681 12.5664 20.0681 13.8013C20.0681 15.0363 19.0302 16.0373 17.7499 16.0373C16.4696 16.0373 15.4317 15.0363 15.4317 13.8013ZM13.4999 18.1003C13.4999 17.3726 14.1115 16.7827 14.8659 16.7827H20.6338C21.3882 16.7827 21.9999 17.3726 21.9999 18.1003V18.3682C21.9999 18.5234 21.9999 19.4182 21.4583 20.2878C20.8854 21.2075 19.7698 22.0001 17.7499 22.0001C15.7299 22.0001 14.6143 21.2075 14.0414 20.2878C13.4998 19.4182 13.4998 18.5234 13.4999 18.3682V18.1003ZM14.8659 17.9007C14.7516 17.9007 14.6589 17.9901 14.6589 18.1003V18.3665C14.6589 18.4723 14.661 19.1115 15.035 19.712C15.3797 20.2654 16.0993 20.8821 17.7499 20.8821C19.4004 20.8821 20.12 20.2654 20.4648 19.712C20.8388 19.1115 20.8408 18.4723 20.8408 18.3665V18.1003C20.8408 17.9901 20.7481 17.9007 20.6338 17.9007H14.8659Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8094 20.4323C13.2265 19.4963 13.2266 18.5379 13.2266 18.3687V18.1003C13.2266 17.2125 13.9699 16.5094 14.8659 16.5094H20.6338C21.5298 16.5094 22.2731 17.2125 22.2731 18.1003V18.3682C22.2731 18.5376 22.2732 19.4965 21.6902 20.4323C21.0615 21.4418 19.8522 22.2734 17.7499 22.2734C15.6475 22.2734 14.4382 21.4418 13.8094 20.4323ZM21.4583 20.2878C21.9999 19.4182 21.9999 18.5234 21.9999 18.3682V18.1003C21.9999 17.3726 21.3882 16.7827 20.6338 16.7827H14.8659C14.1115 16.7827 13.4999 17.3726 13.4999 18.1003V18.3682C13.4998 18.5234 13.4998 19.4182 14.0414 20.2878C14.6143 21.2075 15.7299 22.0001 17.7499 22.0001C19.7698 22.0001 20.8854 21.2075 21.4583 20.2878ZM17.7499 12.9566C17.2513 12.9566 16.8641 13.344 16.8641 13.8013C16.8641 14.2586 17.2513 14.646 17.7499 14.646C18.2486 14.646 18.6357 14.2586 18.6357 13.8013C18.6357 13.344 18.2486 12.9566 17.7499 12.9566ZM15.1584 13.8013C15.1584 12.4062 16.3281 11.292 17.7499 11.292C19.1717 11.292 20.3414 12.4062 20.3414 13.8013C20.3414 15.1964 19.1717 16.3106 17.7499 16.3106C16.3281 16.3106 15.1584 15.1964 15.1584 13.8013ZM14.9322 18.174H20.5675V18.3665C20.5675 18.4608 20.5646 19.0348 20.2328 19.5675M14.9322 18.174V18.3665C14.9322 18.4608 14.9351 19.0348 15.267 19.5675C15.4169 19.8082 15.6484 20.0642 16.0289 20.2621C16.4113 20.461 16.9585 20.6088 17.7499 20.6088C18.5412 20.6088 19.0885 20.461 19.4708 20.2621C19.8513 20.0642 20.0828 19.8082 20.2328 19.5675M16.5908 13.8013C16.5908 13.1839 17.1097 12.6833 17.7499 12.6833C18.3901 12.6833 18.909 13.1839 18.909 13.8013C18.909 14.4187 18.3901 14.9193 17.7499 14.9193C17.1097 14.9193 16.5908 14.4187 16.5908 13.8013ZM17.7499 11.5653C16.4696 11.5653 15.4317 12.5664 15.4317 13.8013C15.4317 15.0363 16.4696 16.0373 17.7499 16.0373C19.0302 16.0373 20.0681 15.0363 20.0681 13.8013C20.0681 12.5664 19.0302 11.5653 17.7499 11.5653ZM14.6589 18.1003C14.6589 17.9901 14.7516 17.9007 14.8659 17.9007H20.6338C20.7481 17.9007 20.8408 17.9901 20.8408 18.1003V18.3665C20.8408 18.4723 20.8388 19.1115 20.4648 19.712C20.12 20.2654 19.4004 20.8821 17.7499 20.8821C16.0993 20.8821 15.3797 20.2654 15.035 19.712C14.661 19.1115 14.6589 18.4723 14.6589 18.3665V18.1003Z\" fill=\"#F9F9F9\"/> <path d=\"M11.9993 3.11811C11.3818 3.11811 10.8812 3.61868 10.8812 4.23612C10.8812 4.85356 11.3818 5.35414 11.9993 5.35414C12.6168 5.35414 13.1173 4.85356 13.1173 4.23612C13.1173 3.61868 12.6168 3.11811 11.9993 3.11811ZM9.76321 4.23612C9.76321 3.00118 10.7644 2.0001 11.9993 2.0001C13.2342 2.0001 14.2353 3.00118 14.2353 4.23612C14.2353 5.47108 13.2342 6.47215 11.9993 6.47215C10.7644 6.47215 9.76321 5.47108 9.76321 4.23612ZM7.89985 8.5351C7.89985 7.80743 8.48979 7.21749 9.2175 7.21749H14.781C15.5087 7.21749 16.0986 7.80743 16.0986 8.5351V8.80298C16.0986 8.95823 16.0987 9.85302 15.5762 10.7226C15.0237 11.6424 13.9476 12.4349 11.9992 12.4349C10.0509 12.4349 8.97482 11.6424 8.42223 10.7226C7.89981 9.85302 7.89985 8.95823 7.89985 8.80298V8.5351ZM9.2175 8.3355C9.10725 8.3355 9.01787 8.42487 9.01787 8.5351V8.80134C9.01787 8.9071 9.01981 9.54631 9.38059 10.1468C9.71309 10.7002 10.4072 11.3169 11.9992 11.3169C13.5913 11.3169 14.2853 10.7002 14.6179 10.1468C14.9787 9.54631 14.9806 8.9071 14.9806 8.80134V8.5351C14.9806 8.42487 14.8912 8.3355 14.781 8.3355H9.2175Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.18796 10.8633C7.6265 9.92877 7.62655 8.97239 7.62656 8.80364V8.5351C7.62656 7.65649 8.33885 6.9442 9.2175 6.9442H14.781C15.6596 6.9442 16.3719 7.65649 16.3719 8.5351V8.80298C16.3719 8.97192 16.3719 9.9289 15.8105 10.8633M7.89985 8.80298C7.89985 8.95823 7.89981 9.85302 8.42223 10.7226C8.97482 11.6424 10.0509 12.4349 11.9992 12.4349C13.9476 12.4349 15.0237 11.6424 15.5762 10.7226C16.0987 9.85302 16.0986 8.95823 16.0986 8.80298V8.5351C16.0986 7.80743 15.5087 7.21749 14.781 7.21749H9.2175C8.48979 7.21749 7.89985 7.80743 7.89985 8.5351V8.80298ZM11.9993 3.3914C11.5327 3.3914 11.1545 3.76963 11.1545 4.23612C11.1545 4.70262 11.5327 5.08084 11.9993 5.08084C12.4659 5.08084 12.844 4.70264 12.844 4.23612C12.844 3.76961 12.4659 3.3914 11.9993 3.3914ZM9.48992 4.23612C9.48992 2.85024 10.6134 1.72681 11.9993 1.72681C13.3851 1.72681 14.5086 2.85024 14.5086 4.23612C14.5086 5.62202 13.3851 6.74544 11.9993 6.74544C10.6134 6.74544 9.48992 5.62203 9.48992 4.23612ZM15.8105 10.8633C15.2041 11.8728 14.0345 12.7082 11.9992 12.7082C9.96393 12.7082 8.79442 11.8728 8.18796 10.8633M9.29116 8.60879V8.80134C9.29116 8.89642 9.29411 9.47221 9.61485 10.0061C9.75973 10.2472 9.98257 10.5021 10.3473 10.6988C10.7137 10.8964 11.2386 11.0436 11.9992 11.0436C12.7599 11.0436 13.2848 10.8964 13.6512 10.6988C14.0159 10.5021 14.2387 10.2472 14.3836 10.0061M9.29116 8.60879H14.7073V8.80134C14.7073 8.89642 14.7043 9.47223 14.3836 10.0061M10.8812 4.23612C10.8812 3.61868 11.3818 3.11811 11.9993 3.11811C12.6168 3.11811 13.1173 3.61868 13.1173 4.23612C13.1173 4.85356 12.6168 5.35414 11.9993 5.35414C11.3818 5.35414 10.8812 4.85356 10.8812 4.23612ZM11.9993 2.0001C10.7644 2.0001 9.76321 3.00118 9.76321 4.23612C9.76321 5.47108 10.7644 6.47215 11.9993 6.47215C13.2342 6.47215 14.2353 5.47108 14.2353 4.23612C14.2353 3.00118 13.2342 2.0001 11.9993 2.0001ZM9.01787 8.5351C9.01787 8.42487 9.10725 8.3355 9.2175 8.3355H14.781C14.8912 8.3355 14.9806 8.42487 14.9806 8.5351V8.80134C14.9806 8.9071 14.9787 9.54631 14.6179 10.1468C14.2853 10.7002 13.5913 11.3169 11.9992 11.3169C10.4072 11.3169 9.71309 10.7002 9.38059 10.1468C9.01981 9.54631 9.01787 8.9071 9.01787 8.80134V8.5351Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.9987 12.1654C12.3578 12.1654 12.6486 11.457 12.6486 11.8153V14.8592L16.1621 16.4206C16.4903 16.5668 16.6382 16.9511 16.4919 17.2784C16.3465 17.6066 15.9623 17.7545 15.6341 17.6083L11.9989 15.9925L8.36366 17.6083C8.03547 17.7545 7.65202 17.6066 7.5058 17.2784C7.36039 16.9511 7.50824 16.5668 7.83561 16.4206L11.3492 14.8592V11.8153C11.3492 11.457 11.6396 12.1654 11.9987 12.1654Z\" fill=\"#F9F9F9\"/> </svg>'},Rl8SKdyZE:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M20.2432 12.9944C20.9519 12.9944 21.2651 13.8867 20.7119 14.3297L17.1989 18.1066V19.7506C17.1989 20.993 15.9876 22.0001 14.7453 22.0001H9.25098C8.00863 22.0001 6.80108 20.993 6.80108 19.7506V18.1067L3.28265 14.3298C2.72936 13.8869 3.04252 12.9944 3.75124 12.9944H20.2432ZM18.1071 14.4941H5.88797L8.21991 17.161C8.39768 17.3033 8.50117 17.5187 8.50117 17.7464V19.7506C8.50117 20.1647 8.83688 20.5004 9.25098 20.5004H14.7453C15.1594 20.5004 15.4951 20.1647 15.4951 19.7506V17.7464C15.4951 17.5187 15.5986 17.3034 15.7762 17.1611L18.1071 14.4941ZM8.75112 8.9982H15.2444C16.1625 8.9982 16.9153 9.70517 16.9883 10.6043L16.9941 10.7478V11.9975H15.4944V10.7478C15.4944 10.6295 15.4122 10.5304 15.3018 10.5045L15.2444 10.4979H8.75112C8.63279 10.4979 8.53367 10.5801 8.50777 10.6905L8.50117 10.7478V11.9975H7.00148V10.7478C7.00148 9.82986 7.70844 9.077 8.60762 9.004L8.75112 8.9982ZM12.0004 2.0001C13.657 2.0001 14.9998 3.34297 14.9998 4.99948C14.9998 6.65599 13.657 7.99887 12.0004 7.99887C10.344 7.99887 9.00107 6.65599 9.00107 4.99948C9.00107 3.34297 10.344 2.0001 12.0004 2.0001ZM12.0004 3.49979C11.1722 3.49979 10.5007 4.17122 10.5007 4.99948C10.5007 5.82774 11.1722 6.49918 12.0004 6.49918C12.8287 6.49918 13.5001 5.82774 13.5001 4.99948C13.5001 4.17122 12.8287 3.49979 12.0004 3.49979Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.75112 8.8482H15.2444C16.2412 8.8482 17.0585 9.61579 17.1378 10.5922L17.1383 10.5983L17.1442 10.7478L17.1441 12.1475H15.3444V10.7478C15.3444 10.7031 15.3149 10.6649 15.274 10.6522L15.2359 10.6479H8.75112C8.70638 10.6479 8.66815 10.6775 8.65556 10.7183L8.65117 10.7564V12.1475H6.85148V10.7478C6.85148 9.75109 7.61907 8.93376 8.59548 8.85449L8.60156 8.854L8.75112 8.8482ZM8.50117 10.7478L8.50777 10.6905C8.53367 10.5801 8.63279 10.4979 8.75112 10.4979H15.2444L15.3018 10.5045C15.4122 10.5304 15.4944 10.6295 15.4944 10.7478V11.9975H16.9941V10.7478L16.9883 10.6043C16.9153 9.70517 16.1625 8.9982 15.2444 8.9982H8.75112L8.60762 9.004C7.70844 9.077 7.00148 9.82986 7.00148 10.7478V11.9975H8.50117V10.7478ZM20.7119 14.3297L17.1989 18.1066V19.7506C17.1989 20.993 15.9876 22.0001 14.7453 22.0001H9.25098C8.00863 22.0001 6.80108 20.993 6.80108 19.7506V18.1067L3.28265 14.3298C2.72936 13.8869 3.04252 12.9944 3.75124 12.9944H20.2432C20.9519 12.9944 21.2651 13.8867 20.7119 14.3297ZM6.65108 18.1657L3.18006 14.4397C2.52833 13.9058 2.90454 12.8444 3.75124 12.8444H20.2432C21.0898 12.8444 21.4661 13.9055 20.8146 14.4396L17.3489 18.1656V19.7506C17.3489 21.092 16.0533 22.1501 14.7453 22.1501H9.25098C7.94263 22.1501 6.65108 21.0917 6.65108 19.7506V18.1657ZM5.88797 14.4941L8.21991 17.161C8.39768 17.3033 8.50117 17.5187 8.50117 17.7464V19.7506C8.50117 20.1647 8.83688 20.5004 9.25098 20.5004H14.7453C15.1594 20.5004 15.4951 20.1647 15.4951 19.7506V17.7464C15.4951 17.5187 15.5986 17.3034 15.7762 17.1611L18.1071 14.4941H5.88797ZM17.7768 14.6441H6.21839L8.32445 17.0527C8.53118 17.2234 8.65117 17.4778 8.65117 17.7464V19.7506C8.65117 20.0818 8.91973 20.3504 9.25098 20.3504H14.7453C15.0765 20.3504 15.3451 20.0818 15.3451 19.7506V17.7464C15.3451 17.4778 15.4651 17.2235 15.6717 17.0528L17.7768 14.6441ZM12.0004 1.8501C13.7398 1.8501 15.1498 3.26013 15.1498 4.99948C15.1498 6.73883 13.7398 8.14887 12.0004 8.14887C10.2611 8.14887 8.85107 6.73883 8.85107 4.99948C8.85107 3.26013 10.2611 1.8501 12.0004 1.8501ZM12.0004 3.64979C11.255 3.64979 10.6507 4.25407 10.6507 4.99948C10.6507 5.7449 11.255 6.34918 12.0004 6.34918C12.7459 6.34918 13.3501 5.7449 13.3501 4.99948C13.3501 4.25406 12.7459 3.64979 12.0004 3.64979ZM14.9998 4.99948C14.9998 3.34297 13.657 2.0001 12.0004 2.0001C10.344 2.0001 9.00107 3.34297 9.00107 4.99948C9.00107 6.65599 10.344 7.99887 12.0004 7.99887C13.657 7.99887 14.9998 6.65599 14.9998 4.99948ZM10.5007 4.99948C10.5007 4.17122 11.1722 3.49979 12.0004 3.49979C12.8287 3.49979 13.5001 4.17122 13.5001 4.99948C13.5001 5.82774 12.8287 6.49918 12.0004 6.49918C11.1722 6.49918 10.5007 5.82774 10.5007 4.99948Z\" fill=\"#F9F9F9\"/> </svg>'},ro4khTkxK:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5154 19.8861C22.644 20.0926 22.5814 20.3647 22.3747 20.4933C22.3021 20.5385 22.2217 20.5601 22.1419 20.5601C21.9947 20.5601 21.8508 20.4865 21.7673 20.3525L19.9368 17.4162V19.6782C19.9368 20.1646 19.5413 20.5601 19.055 20.5601H4.94536C4.45905 20.5601 4.06351 20.1646 4.06351 19.6782V17.4167L2.23302 20.3525C2.10415 20.5592 1.83207 20.6222 1.6256 20.4936C1.4189 20.3647 1.35587 20.0926 1.48451 19.8861C2.68859 17.9547 8.80523 8.11687 11.1151 4.40153C11.5238 3.74418 12.4761 3.74418 12.8848 4.40153C15.1946 8.11687 21.3113 17.9547 22.5154 19.8861ZM14.0621 19.6785L11.9999 12.4649L9.93758 19.6785H14.0621ZM11.5591 5.39513L4.94525 16.0025V19.6785H8.28922L7.52025 18.907C7.23806 18.6248 7.18068 18.1839 7.38362 17.8398L11.5591 10.7401V5.39513ZM15.7116 19.6785H19.0549V16.0018L12.441 5.39254V10.7401L16.6165 17.8398C16.8194 18.1839 16.7621 18.6248 16.4799 18.907L15.7116 19.6785Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.87 19.6652C23.1201 20.0667 22.9991 20.5969 22.5955 20.848C22.4552 20.9352 22.2979 20.9779 22.1419 20.9779C21.8569 20.9779 21.5759 20.8352 21.4128 20.5735C21.4127 20.5734 21.4128 20.5735 21.4128 20.5735L20.3546 18.8761V19.6782C20.3546 20.3953 19.772 20.9779 19.055 20.9779H4.94536C4.22831 20.9779 3.64572 20.3953 3.64572 19.6782V18.8764L2.58756 20.5735C2.33663 20.976 1.80693 21.0988 1.40468 20.8482C1.00219 20.5972 0.879296 20.0675 1.1299 19.6652C2.3338 17.734 8.4503 7.89646 10.7603 4.18094C11.3325 3.26065 12.6674 3.26065 13.2396 4.18094C15.5496 7.89646 21.6661 17.734 22.87 19.6652ZM2.23302 20.3525C2.10415 20.5592 1.83207 20.6222 1.6256 20.4936C1.4189 20.3647 1.35587 20.0926 1.48451 19.8861C2.68859 17.9547 8.80523 8.11687 11.1151 4.40153C11.5238 3.74418 12.4761 3.74418 12.8848 4.40153C15.1946 8.11687 21.3113 17.9547 22.5154 19.8861C22.644 20.0926 22.5814 20.3647 22.3747 20.4933C22.3021 20.5385 22.2217 20.5601 22.1419 20.5601C21.9947 20.5601 21.8508 20.4865 21.7673 20.3525L19.9368 17.4162V19.6782C19.9368 20.1646 19.5413 20.5601 19.055 20.5601H4.94536C4.45905 20.5601 4.06351 20.1646 4.06351 19.6782V17.4167L2.23302 20.3525ZM11.9999 12.4649L9.93758 19.6785H14.0621L11.9999 12.4649ZM11.9999 13.9849L10.4916 19.2607H13.5081L11.9999 13.9849ZM4.94525 16.0025V19.6785H8.28922L7.52025 18.907C7.23806 18.6248 7.18068 18.1839 7.38362 17.8398L11.5591 10.7401V5.39513L4.94525 16.0025ZM11.1413 6.85482L5.36304 16.1221V19.2607H7.28297L7.22483 19.2024C7.22469 19.2023 7.22496 19.2025 7.22483 19.2024C6.80915 18.7864 6.72352 18.1367 7.02366 17.6277C7.0237 17.6277 7.02362 17.6278 7.02366 17.6277L11.1413 10.6263V6.85482ZM16.7172 19.2607H18.6371V16.1214L12.8588 6.85246V10.6263L16.9763 17.6275C17.2766 18.1366 17.1914 18.7859 16.7757 19.2019C16.7756 19.2021 16.7759 19.2018 16.7757 19.2019L16.7172 19.2607ZM15.7116 19.6785H19.0549V16.0018L12.441 5.39254V10.7401L16.6165 17.8398C16.8194 18.1839 16.7621 18.6248 16.4799 18.907L15.7116 19.6785Z\" fill=\"#F9F9F9\"/> </svg>'},S0tB1WdJ7:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM17.9063 19.3205C16.2918 20.6247 14.2371 21.4057 12 21.4057C6.80536 21.4057 2.59427 17.1946 2.59427 12C2.59427 9.7629 3.37528 7.70821 4.67951 6.09372L17.9063 19.3205ZM19.3205 17.9063L6.09372 4.67951C7.70821 3.37528 9.7629 2.59427 12 2.59427C17.1946 2.59427 21.4057 6.80536 21.4057 12C21.4057 14.2371 20.6247 16.2918 19.3205 17.9063Z\" fill=\"#F9F9F9\" fill-opacity=\"0.25\"/> <path d=\"M13.5917 8.25003C13.6794 7.87805 13.4596 7.50278 13.1006 7.41184C12.7417 7.3209 12.3795 7.54873 12.2918 7.92071L10.4449 15.7493C10.3571 16.1213 10.577 16.4965 10.9359 16.5875C11.2949 16.6784 11.657 16.4506 11.7448 16.0786L13.5917 8.25003Z\" fill=\"#F9F9F9\"/> <path d=\"M14.5769 9.48041C14.3933 9.86862 14.5481 10.3376 14.9227 10.5279L17.7628 11.9706L14.9121 13.4766C14.5404 13.673 14.3927 14.1445 14.5822 14.5296C14.7717 14.9148 15.2266 15.0679 15.5983 14.8715L19.4961 12.8124C20.174 12.4543 20.1663 11.4479 19.4831 11.1008L15.5877 9.12205C15.2131 8.93175 14.7605 9.09219 14.5769 9.48041Z\" fill=\"#F9F9F9\"/> <path d=\"M9.42314 9.48041C9.60678 9.86862 9.45196 10.3376 9.07733 10.5279L6.23719 11.9706L9.08793 13.4766C9.45963 13.673 9.60734 14.1445 9.41784 14.5296C9.22835 14.9148 8.7734 15.0679 8.4017 14.8715L4.50396 12.8124C3.82609 12.4543 3.8337 11.4479 4.51691 11.1008L8.4123 9.12205C8.78693 8.93175 9.2395 9.09219 9.42314 9.48041Z\" fill=\"#F9F9F9\"/> </svg>'},s4md3BmG7:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 3H7C5.34315 3 4 4.34315 4 6V18C4 19.6569 5.34314 21 7 21H17C18.6569 21 20 19.6569 20 18V6C20 4.34315 18.6569 3 17 3ZM6 6C6 5.44772 6.44772 5 7 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H7C6.44772 19 6 18.5523 6 18V6ZM11 15C10.4477 15 10 15.4477 10 16C10 16.5523 10.4477 17 11 17H13C13.5523 17 14 16.5523 14 16C14 15.4477 13.5523 15 13 15H11Z\" fill=\"#F9F9F9\"/> </svg>'},sqGtAGMP8:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M4.38778 10.8368C4.38778 6.7183 7.71806 3.38802 11.8366 3.38802C15.9551 3.38802 19.2854 6.7183 19.2854 10.8368C19.2854 12.9238 18.4346 14.8056 17.0516 16.1567C16.7774 16.4245 16.7723 16.8639 17.0401 17.1381C17.3079 17.4122 17.7473 17.4173 18.0215 17.1495C19.6629 15.546 20.6733 13.3098 20.6733 10.8368C20.6733 5.95174 16.7216 2.00005 11.8366 2.00005C6.9515 2.00005 2.9998 5.95174 2.9998 10.8368C2.9998 13.3098 4.01025 15.546 5.65168 17.1495C5.92584 17.4173 6.36522 17.4122 6.63305 17.1381C6.90089 16.8639 6.89576 16.4245 6.6216 16.1567C5.23856 14.8056 4.38778 12.9238 4.38778 10.8368Z\" fill=\"#F9F9F9\"/> <path d=\"M7.87754 10.8368C7.87754 8.6493 9.64906 6.87778 11.8366 6.87778C14.0241 6.87778 15.7956 8.6493 15.7956 10.8368C15.7956 11.5568 15.5988 12.2291 15.2601 12.8168C15.0688 13.1489 15.1828 13.5732 15.5149 13.7646C15.847 13.956 16.2714 13.8419 16.4627 13.5098C16.9151 12.7249 17.1836 11.8152 17.1836 10.8368C17.1836 7.88275 14.7906 5.48981 11.8366 5.48981C8.8825 5.48981 6.48957 7.88275 6.48957 10.8368C6.48957 11.8152 6.75809 12.7249 7.21043 13.5098C7.4018 13.8419 7.82615 13.956 8.15823 13.7646C8.49031 13.5732 8.60438 13.1489 8.41301 12.8168C8.07434 12.2291 7.87754 11.5568 7.87754 10.8368Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.97933 10.8368C9.97933 9.81107 10.8108 8.97958 11.8366 8.97958C12.8623 8.97958 13.6938 9.81107 13.6938 10.8368C13.6938 11.8626 12.8623 12.6941 11.8366 12.6941C10.8108 12.6941 9.97933 11.8626 9.97933 10.8368ZM11.8366 10.3675C11.5774 10.3675 11.3673 10.5776 11.3673 10.8368C11.3673 11.096 11.5774 11.3061 11.8366 11.3061C12.0958 11.3061 12.3058 11.096 12.3058 10.8368C12.3058 10.5776 12.0958 10.3675 11.8366 10.3675Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5688 14.4585C9.42963 14.4585 8.58211 15.4662 8.72932 16.5703L8.72992 16.5747L9.26502 20.4018L9.26531 20.4038C9.39508 21.3122 10.1734 22 11.1039 22H12.5464C13.4769 22 14.2552 21.3122 14.385 20.4038L14.3853 20.4018L14.9194 16.5819C15.1014 15.4384 14.2123 14.4585 13.0931 14.4585H10.5688ZM10.6393 20.2075L10.1049 16.3851C10.0671 16.0941 10.2894 15.8464 10.5688 15.8464H13.0931C13.3902 15.8464 13.5928 16.0944 13.5483 16.3663L13.5458 16.3825L13.011 20.2075C12.9776 20.4387 12.7789 20.6121 12.5464 20.6121H11.1039C10.8715 20.6121 10.6728 20.4387 10.6393 20.2075Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.53108 16.5967C8.36831 15.376 9.30542 14.2585 10.5688 14.2585H13.0931C14.3296 14.2585 15.318 15.3423 15.1172 16.6114L14.5834 20.4295L14.583 20.4318C14.4394 21.4376 13.5775 22.2001 12.5464 22.2001H11.1039C10.0728 22.2001 9.21101 21.4379 9.06732 20.4321L9.06698 20.4297L8.53185 16.6023L8.53108 16.5967ZM14.9194 16.5819C15.1014 15.4384 14.2123 14.4585 13.0931 14.4585H10.5688C9.42963 14.4585 8.58211 15.4662 8.72932 16.5703L8.72992 16.5747L9.26502 20.4018L9.26531 20.4038C9.39508 21.3122 10.1734 22 11.1039 22H12.5464C13.4769 22 14.2552 21.3122 14.385 20.4038L14.3853 20.4018L14.9194 16.5819ZM13.5483 16.3663C13.5928 16.0944 13.3902 15.8464 13.0931 15.8464H10.5688C10.2894 15.8464 10.0671 16.0941 10.1049 16.3851L10.6393 20.2075C10.6728 20.4387 10.8715 20.6121 11.1039 20.6121H12.5464C12.7789 20.6121 12.9776 20.4387 13.011 20.2075L13.5458 16.3825L13.5483 16.3663ZM10.8373 20.1793C10.8373 20.1794 10.8373 20.1792 10.8373 20.1793C10.8568 20.313 10.9721 20.4121 11.1039 20.4121H12.5464C12.6782 20.4121 12.7935 20.313 12.813 20.1793C12.813 20.1792 12.813 20.1794 12.813 20.1793L13.348 16.3524L13.3509 16.3339C13.3752 16.1855 13.2685 16.0464 13.0931 16.0464H10.5688C10.4117 16.0464 10.2812 16.1862 10.3031 16.3585C10.3032 16.3588 10.3031 16.3582 10.3031 16.3585L10.8373 20.1793ZM11.8366 3.58802C7.82851 3.58802 4.58778 6.82876 4.58778 10.8368C4.58778 12.8682 5.41556 14.6989 6.76136 16.0136C7.11453 16.3586 7.12114 16.9246 6.77612 17.2778C6.43109 17.631 5.86509 17.6376 5.51192 17.2926C3.83326 15.6527 2.7998 13.3655 2.7998 10.8368C2.7998 5.84129 6.84104 1.80005 11.8366 1.80005C16.8321 1.80005 20.8733 5.84129 20.8733 10.8368C20.8733 13.3655 19.8399 15.6527 18.1612 17.2926C17.8081 17.6376 17.2421 17.631 16.897 17.2778C16.552 16.9246 16.5586 16.3586 16.9118 16.0136C18.2576 14.6989 19.0854 12.8682 19.0854 10.8368C19.0854 6.82876 15.8446 3.58802 11.8366 3.58802ZM11.8366 7.07778C9.75951 7.07778 8.07754 8.75976 8.07754 10.8368C8.07754 11.5196 8.26402 12.1577 8.5863 12.717C8.83282 13.1447 8.68588 13.6914 8.25809 13.9379C7.8303 14.1844 7.28367 14.0375 7.03715 13.6097C6.56843 12.7963 6.28957 11.8524 6.28957 10.8368C6.28957 7.77229 8.77205 5.28981 11.8366 5.28981C14.9011 5.28981 17.3836 7.77229 17.3836 10.8368C17.3836 11.8524 17.1047 12.7963 16.636 13.6097C16.3895 14.0375 15.8429 14.1844 15.4151 13.9379C14.9873 13.6914 14.8403 13.1447 15.0869 12.717C15.4091 12.1577 15.5956 11.5196 15.5956 10.8368C15.5956 8.75976 13.9136 7.07778 11.8366 7.07778ZM9.77933 10.8368C9.77933 9.70062 10.7004 8.77958 11.8366 8.77958C12.9728 8.77958 13.8938 9.70062 13.8938 10.8368C13.8938 11.973 12.9728 12.8941 11.8366 12.8941C10.7004 12.8941 9.77933 11.973 9.77933 10.8368ZM11.8366 10.5675C11.6878 10.5675 11.5673 10.6881 11.5673 10.8368C11.5673 10.9855 11.6878 11.1061 11.8366 11.1061C11.9853 11.1061 12.1058 10.9855 12.1058 10.8368C12.1058 10.6881 11.9853 10.5675 11.8366 10.5675ZM11.8366 3.38802C7.71806 3.38802 4.38778 6.7183 4.38778 10.8368C4.38778 12.9238 5.23856 14.8056 6.6216 16.1567C6.89576 16.4245 6.90089 16.8639 6.63305 17.1381C6.36522 17.4122 5.92584 17.4173 5.65168 17.1495C4.01025 15.546 2.9998 13.3098 2.9998 10.8368C2.9998 5.95174 6.9515 2.00005 11.8366 2.00005C16.7216 2.00005 20.6733 5.95174 20.6733 10.8368C20.6733 13.3098 19.6629 15.546 18.0215 17.1495C17.7473 17.4173 17.3079 17.4122 17.0401 17.1381C16.7723 16.8639 16.7774 16.4245 17.0516 16.1567C18.4346 14.8056 19.2854 12.9238 19.2854 10.8368C19.2854 6.7183 15.9551 3.38802 11.8366 3.38802ZM11.8366 6.87778C9.64906 6.87778 7.87754 8.6493 7.87754 10.8368C7.87754 11.5568 8.07434 12.2291 8.41301 12.8168C8.60438 13.1489 8.49031 13.5732 8.15823 13.7646C7.82615 13.956 7.4018 13.8419 7.21043 13.5098C6.75809 12.7249 6.48957 11.8152 6.48957 10.8368C6.48957 7.88275 8.8825 5.48981 11.8366 5.48981C14.7906 5.48981 17.1836 7.88275 17.1836 10.8368C17.1836 11.8152 16.9151 12.7249 16.4627 13.5098C16.2714 13.8419 15.847 13.956 15.5149 13.7646C15.1828 13.5732 15.0688 13.1489 15.2601 12.8168C15.5988 12.2291 15.7956 11.5568 15.7956 10.8368C15.7956 8.6493 14.0241 6.87778 11.8366 6.87778ZM9.97933 10.8368C9.97933 9.81107 10.8108 8.97958 11.8366 8.97958C12.8623 8.97958 13.6938 9.81107 13.6938 10.8368C13.6938 11.8626 12.8623 12.6941 11.8366 12.6941C10.8108 12.6941 9.97933 11.8626 9.97933 10.8368ZM11.8366 10.3675C11.5774 10.3675 11.3673 10.5776 11.3673 10.8368C11.3673 11.096 11.5774 11.3061 11.8366 11.3061C12.0958 11.3061 12.3058 11.096 12.3058 10.8368C12.3058 10.5776 12.0958 10.3675 11.8366 10.3675Z\" fill=\"#F9F9F9\"/> </svg>'},UnrSesXeA:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.3 3.3501C20.2389 3.3501 21 4.11121 21 5.0501V19.3178C21 20.2567 20.2389 21.0178 19.3 21.0178H4.7C3.76112 21.0178 3 20.2567 3 19.3178L3 5.0501C3 4.11121 3.76112 3.3501 4.7 3.3501L19.3 3.3501ZM19 5.3501L5 5.3501L5 19.0178L19 19.0178V5.3501Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.25 4.10522C16.3852 4.24333 16.3829 4.46493 16.2448 4.60017L13.5781 7.21146C13.44 7.3467 13.2184 7.34437 13.0832 7.20626C12.9479 7.06815 12.9503 6.84656 13.0884 6.71132L15.755 4.10003C15.8932 3.96479 16.1147 3.96711 16.25 4.10522Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.9167 4.10522C19.0519 4.24333 19.0496 4.46493 18.9115 4.60017L13.5781 9.82275C13.44 9.95799 13.2184 9.95566 13.0832 9.81755C12.9479 9.67944 12.9503 9.45785 13.0884 9.32261L18.4217 4.10003C18.5598 3.96479 18.7814 3.96711 18.9167 4.10522Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7498 19.9363C10.6145 19.7982 10.6169 19.5766 10.755 19.4413L13.4216 16.83C13.5597 16.6948 13.7813 16.6971 13.9166 16.8352C14.0518 16.9733 14.0495 17.1949 13.9114 17.3302L11.2447 19.9415C11.1066 20.0767 10.885 20.0744 10.7498 19.9363Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.0831 19.9363C7.94786 19.7982 7.95018 19.5766 8.08829 19.4413L13.4216 14.2188C13.5597 14.0835 13.7813 14.0858 13.9166 14.2239C14.0518 14.3621 14.0495 14.5837 13.9114 14.7189L8.57805 19.9415C8.43994 20.0767 8.21834 20.0744 8.0831 19.9363Z\" fill=\"#F9F9F9\"/> <path d=\"M9.33349 8.12706C8.26682 8.12706 8.00015 7.25663 8.00015 6.82141C8.00015 7.86593 7.11127 8.12706 6.66682 8.12706C7.73349 8.12706 8.00015 8.99749 8.00015 9.4327C8.00015 8.91044 8.66682 8.12706 9.33349 8.12706Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00015 6.47141C8.19345 6.47141 8.35015 6.62811 8.35015 6.82141C8.35015 6.98151 8.40214 7.23063 8.5488 7.43011C8.68266 7.61215 8.91116 7.77706 9.33349 7.77706C9.52679 7.77706 9.68349 7.93376 9.68349 8.12706C9.68349 8.32036 9.52679 8.47706 9.33349 8.47706C9.13143 8.47706 8.88334 8.60286 8.66964 8.82607C8.45187 9.05353 8.35015 9.29753 8.35015 9.4327C8.35015 9.626 8.19345 9.7827 8.00015 9.7827C7.80685 9.7827 7.65015 9.626 7.65015 9.4327C7.65015 9.27261 7.59817 9.02348 7.45151 8.82401C7.31765 8.64196 7.08915 8.47706 6.66682 8.47706C6.47352 8.47706 6.31682 8.32036 6.31682 8.12706C6.31682 7.93376 6.47352 7.77706 6.66682 7.77706C6.8345 7.77706 7.09268 7.72497 7.29847 7.57988C7.48607 7.44761 7.65015 7.22647 7.65015 6.82141C7.65015 6.62811 7.80685 6.47141 8.00015 6.47141ZM8.00436 7.87075C7.92565 7.96745 7.83679 8.05139 7.74132 8.12321C7.84757 8.2081 7.93868 8.30491 8.01547 8.40934C8.02903 8.42778 8.04209 8.44639 8.05468 8.46514C8.08995 8.42229 8.12653 8.38114 8.16401 8.34199C8.21557 8.28813 8.27143 8.23534 8.33108 8.18498C8.20281 8.09474 8.09431 7.9879 8.00436 7.87075Z\" fill=\"#F9F9F9\"/> <path d=\"M18.6667 17.4065C17.6 17.4065 17.3333 16.536 17.3333 16.1008C17.3333 17.1453 16.4444 17.4065 16 17.4065C17.0667 17.4065 17.3333 18.2769 17.3333 18.7121C17.3333 18.1899 18 17.4065 18.6667 17.4065Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.3333 15.7508C17.5266 15.7508 17.6833 15.9075 17.6833 16.1008C17.6833 16.2609 17.7353 16.5101 17.882 16.7095C18.0158 16.8916 18.2443 17.0565 18.6667 17.0565C18.86 17.0565 19.0167 17.2132 19.0167 17.4065C19.0167 17.5998 18.86 17.7565 18.6667 17.7565C18.4646 17.7565 18.2165 17.8823 18.0028 18.1055C17.7851 18.3329 17.6833 18.5769 17.6833 18.7121C17.6833 18.9054 17.5266 19.0621 17.3333 19.0621C17.14 19.0621 16.9833 18.9054 16.9833 18.7121C16.9833 18.552 16.9314 18.3029 16.7847 18.1034C16.6508 17.9214 16.4223 17.7565 16 17.7565C15.8067 17.7565 15.65 17.5998 15.65 17.4065C15.65 17.2132 15.8067 17.0565 16 17.0565C16.1677 17.0565 16.4259 17.0044 16.6317 16.8593C16.8193 16.727 16.9833 16.5059 16.9833 16.1008C16.9833 15.9075 17.14 15.7508 17.3333 15.7508ZM17.3375 17.1502C17.2588 17.2469 17.17 17.3308 17.0745 17.4026C17.1808 17.4875 17.2719 17.5843 17.3486 17.6888C17.3622 17.7072 17.3753 17.7258 17.3879 17.7446C17.4231 17.7017 17.4597 17.6606 17.4972 17.6214C17.5488 17.5675 17.6046 17.5148 17.6643 17.4644C17.536 17.3742 17.4275 17.2673 17.3375 17.1502Z\" fill=\"#F9F9F9\"/> </svg>'},Ut8Fuz7b5:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3.97483 10.0544L7.26403 10.0535C6.93001 10.4576 6.71243 10.9615 6.6627 11.5138L3.97483 11.5136C3.84052 11.5136 3.73163 11.6224 3.73163 11.7568V14.9171C3.73163 16.2609 4.82098 17.3502 6.16476 17.3502C6.35931 17.3502 6.54852 17.3273 6.72986 17.2842C6.81227 17.7744 6.96274 18.2419 7.17025 18.677C6.85011 18.7636 6.51277 18.8093 6.16476 18.8093C4.01512 18.8093 2.27248 17.0667 2.27248 14.9171V11.7568C2.27248 10.8166 3.03465 10.0544 3.97483 10.0544ZM16.7421 10.0535L20.0255 10.0544C20.9657 10.0544 21.7279 10.8166 21.7279 11.7568V14.9183C21.7279 17.0672 19.9857 18.8093 17.8368 18.8093C17.4901 18.8093 17.1539 18.764 16.834 18.6789C17.043 18.2429 17.1936 17.7754 17.2774 17.2851C17.4566 17.3278 17.6441 17.3502 17.8368 17.3502C19.1799 17.3502 20.2687 16.2614 20.2687 14.9183V11.7568C20.2687 11.6224 20.1599 11.5136 20.0255 11.5136L17.3434 11.5138C17.2937 10.9615 17.0761 10.4576 16.7421 10.0535ZM18.3232 4.21779C19.6663 4.21779 20.7551 5.3066 20.7551 6.64972C20.7551 7.99283 19.6663 9.08164 18.3232 9.08164C16.9801 9.08164 15.8912 7.99283 15.8912 6.64972C15.8912 5.3066 16.9801 4.21779 18.3232 4.21779ZM5.67717 4.21779C7.02028 4.21779 8.10909 5.3066 8.10909 6.64972C8.10909 7.99283 7.02028 9.08164 5.67717 9.08164C4.33406 9.08164 3.24525 7.99283 3.24525 6.64972C3.24525 5.3066 4.33406 4.21779 5.67717 4.21779ZM18.3232 5.67695C17.7859 5.67695 17.3504 6.11247 17.3504 6.64972C17.3504 7.18696 17.7859 7.62248 18.3232 7.62248C18.8604 7.62248 19.2959 7.18696 19.2959 6.64972C19.2959 6.11247 18.8604 5.67695 18.3232 5.67695ZM5.67717 5.67695C5.13993 5.67695 4.7044 6.11247 4.7044 6.64972C4.7044 7.18696 5.13993 7.62248 5.67717 7.62248C6.21441 7.62248 6.64994 7.18696 6.64994 6.64972C6.64994 6.11247 6.21441 5.67695 5.67717 5.67695Z\" fill=\"#F9F9F9\" fill-opacity=\"0.6\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.92629 18.7344C6.68027 18.7837 6.42551 18.8093 6.16476 18.8093C4.01512 18.8093 2.27248 17.0667 2.27248 14.9171V11.7568C2.27248 10.8166 3.03465 10.0544 3.97483 10.0544L7.26403 10.0535C7.19946 10.1316 7.13924 10.2135 7.08374 10.2987C6.85216 10.6542 6.70282 11.0683 6.6627 11.5138L3.97483 11.5136C3.84052 11.5136 3.73163 11.6224 3.73163 11.7568V14.9171C3.73163 16.2609 4.82098 17.3502 6.16476 17.3502C6.27462 17.3502 6.38278 17.3429 6.48878 17.3288C6.57049 17.3179 6.65092 17.303 6.72986 17.2842C6.74347 17.3652 6.75894 17.4455 6.77621 17.5251C6.84558 17.8452 6.94412 18.1545 7.06858 18.4504C7.10075 18.5268 7.13466 18.6024 7.17025 18.677C7.08997 18.6987 7.00862 18.7179 6.92629 18.7344ZM3.97483 9.80927L7.78479 9.80821L7.45298 10.2097C7.14944 10.5769 6.952 11.0344 6.90685 11.5357L6.88676 11.7589L3.97677 11.7587V14.9171C3.97677 16.1255 4.95636 17.105 6.16476 17.105C6.34004 17.105 6.51024 17.0844 6.67319 17.0457L6.92816 16.9851L6.97161 17.2436C7.05014 17.7107 7.19357 18.1564 7.39151 18.5715L7.51807 18.8369L7.23424 18.9137C6.89316 19.0059 6.5343 19.0545 6.16476 19.0545C3.87974 19.0545 2.02734 17.2021 2.02734 14.9171V11.7568C2.02734 10.6812 2.89929 9.80931 3.97483 9.80927ZM16.2214 9.80821L20.0255 9.80927C21.101 9.80931 21.973 10.6812 21.973 11.7568V14.9183C21.973 17.2026 20.1211 19.0545 17.8368 19.0545C17.4686 19.0545 17.1113 19.0063 16.7709 18.9158L16.485 18.8397L16.6129 18.5729C16.8122 18.1572 16.9558 17.7114 17.0358 17.2438L17.0799 16.986L17.3343 17.0466C17.4947 17.0849 17.6631 17.105 17.8368 17.105C19.0445 17.105 20.0236 16.126 20.0236 14.9183V11.7587L17.1193 11.7589L17.0992 11.5357C17.0541 11.0344 16.8567 10.5769 16.5532 10.2096L16.2214 9.80821ZM20.0255 11.5136C20.1599 11.5136 20.2687 11.6224 20.2687 11.7568V14.9183C20.2687 16.2614 19.1799 17.3502 17.8368 17.3502C17.7289 17.3502 17.6226 17.3432 17.5185 17.3295C17.4367 17.3187 17.3563 17.3039 17.2774 17.2851C17.2636 17.366 17.2479 17.4463 17.2305 17.5259C17.1604 17.8462 17.0615 18.1558 16.9362 18.4522C16.9038 18.5286 16.8698 18.6042 16.834 18.6789C16.9144 18.7003 16.9959 18.7192 17.0784 18.7355C17.3237 18.7839 17.5773 18.8093 17.8368 18.8093C19.9857 18.8093 21.7279 17.0672 21.7279 14.9183V11.7568C21.7279 10.8166 20.9657 10.0544 20.0255 10.0544L16.7421 10.0535C16.8067 10.1316 16.8669 10.2135 16.9224 10.2987C17.1539 10.6542 17.3033 11.0683 17.3434 11.5138L20.0255 11.5136ZM18.3232 3.97266C19.8017 3.97266 21.0002 5.17122 21.0002 6.64972C21.0002 8.12821 19.8017 9.32678 18.3232 9.32678C16.8447 9.32678 15.6461 8.12821 15.6461 6.64972C15.6461 5.17122 16.8447 3.97266 18.3232 3.97266ZM5.67717 3.97266C7.15567 3.97266 8.35423 5.17122 8.35423 6.64972C8.35423 8.12821 7.15567 9.32678 5.67717 9.32678C4.19867 9.32678 3.00011 8.12821 3.00011 6.64972C3.00011 5.17122 4.19867 3.97266 5.67717 3.97266ZM18.3232 5.92208C17.9213 5.92208 17.5955 6.24786 17.5955 6.64972C17.5955 7.05157 17.9213 7.37735 18.3232 7.37735C18.725 7.37735 19.0508 7.05157 19.0508 6.64972C19.0508 6.24786 18.725 5.92208 18.3232 5.92208ZM5.67717 5.92208C5.27532 5.92208 4.94954 6.24786 4.94954 6.64972C4.94954 7.05157 5.27532 7.37735 5.67717 7.37735C6.07903 7.37735 6.4048 7.05157 6.4048 6.64972C6.4048 6.24786 6.07903 5.92208 5.67717 5.92208ZM20.7551 6.64972C20.7551 5.3066 19.6663 4.21779 18.3232 4.21779C16.9801 4.21779 15.8912 5.3066 15.8912 6.64972C15.8912 7.99283 16.9801 9.08164 18.3232 9.08164C19.6663 9.08164 20.7551 7.99283 20.7551 6.64972ZM8.10909 6.64972C8.10909 5.3066 7.02028 4.21779 5.67717 4.21779C4.33406 4.21779 3.24525 5.3066 3.24525 6.64972C3.24525 7.99283 4.33406 9.08164 5.67717 9.08164C7.02028 9.08164 8.10909 7.99283 8.10909 6.64972ZM17.3504 6.64972C17.3504 6.11247 17.7859 5.67695 18.3232 5.67695C18.8604 5.67695 19.2959 6.11247 19.2959 6.64972C19.2959 7.18696 18.8604 7.62248 18.3232 7.62248C17.7859 7.62248 17.3504 7.18696 17.3504 6.64972ZM4.7044 6.64972C4.7044 6.11247 5.13993 5.67695 5.67717 5.67695C6.21441 5.67695 6.64994 6.11247 6.64994 6.64972C6.64994 7.18696 6.21441 7.62248 5.67717 7.62248C5.13993 7.62248 4.7044 7.18696 4.7044 6.64972Z\" fill=\"#F9F9F9\" fill-opacity=\"0.6\"/> <path d=\"M14.6792 10.0545C15.6193 10.0545 16.3815 10.8167 16.3815 11.7569V16.3765C16.3815 18.7947 14.4212 20.755 12.0031 20.755C9.58489 20.755 7.62458 18.7947 7.62458 16.3765V11.7569C7.62458 10.8167 8.38674 10.0545 9.32692 10.0545H14.6792ZM14.6792 11.5137H9.32692C9.19261 11.5137 9.08373 11.6225 9.08373 11.7569V16.3765C9.08373 17.9888 10.3907 19.2958 12.0031 19.2958C13.6153 19.2958 14.9224 17.9888 14.9224 16.3765V11.7569C14.9224 11.6225 14.8135 11.5137 14.6792 11.5137ZM12.0002 3.24514C13.6119 3.24514 14.9185 4.55171 14.9185 6.16344C14.9185 7.77518 13.6119 9.08175 12.0002 9.08175C10.3884 9.08175 9.08185 7.77518 9.08185 6.16344C9.08185 4.55171 10.3884 3.24514 12.0002 3.24514ZM12.0002 4.70429C11.1943 4.70429 10.541 5.35757 10.541 6.16344C10.541 6.96931 11.1943 7.6226 12.0002 7.6226C12.806 7.6226 13.4593 6.96931 13.4593 6.16344C13.4593 5.35757 12.806 4.70429 12.0002 4.70429Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6792 9.80938C15.7547 9.80938 16.6266 10.6813 16.6266 11.7569V16.3765C16.6266 18.93 14.5566 21.0001 12.0031 21.0001C9.44951 21.0001 7.37944 18.93 7.37944 16.3765V11.7569C7.37944 10.6813 8.25136 9.80938 9.32692 9.80938H14.6792ZM9.32887 11.7588V16.3765C9.32887 17.8534 10.5261 19.0507 12.0031 19.0507C13.48 19.0507 14.6772 17.8534 14.6772 16.3765V11.7588H9.32887ZM12.0002 3C13.7473 3 15.1636 4.41633 15.1636 6.16344C15.1636 7.91056 13.7473 9.32689 12.0002 9.32689C10.253 9.32689 8.83671 7.91056 8.83671 6.16344C8.83671 4.41633 10.253 3 12.0002 3ZM12.0002 4.94943C11.3297 4.94943 10.7861 5.49296 10.7861 6.16344C10.7861 6.83393 11.3297 7.37746 12.0002 7.37746C12.6706 7.37746 13.2142 6.83393 13.2142 6.16344C13.2142 5.49296 12.6706 4.94943 12.0002 4.94943ZM16.3815 11.7569C16.3815 10.8167 15.6193 10.0545 14.6792 10.0545H9.32692C8.38674 10.0545 7.62458 10.8167 7.62458 11.7569V16.3765C7.62458 18.7947 9.58489 20.755 12.0031 20.755C14.4212 20.755 16.3815 18.7947 16.3815 16.3765V11.7569ZM9.32692 11.5137H14.6792C14.8135 11.5137 14.9224 11.6225 14.9224 11.7569V16.3765C14.9224 17.9888 13.6153 19.2958 12.0031 19.2958C10.3907 19.2958 9.08373 17.9888 9.08373 16.3765V11.7569C9.08373 11.6225 9.19261 11.5137 9.32692 11.5137ZM14.9185 6.16344C14.9185 4.55171 13.6119 3.24514 12.0002 3.24514C10.3884 3.24514 9.08185 4.55171 9.08185 6.16344C9.08185 7.77518 10.3884 9.08175 12.0002 9.08175C13.6119 9.08175 14.9185 7.77518 14.9185 6.16344ZM10.541 6.16344C10.541 5.35757 11.1943 4.70429 12.0002 4.70429C12.806 4.70429 13.4593 5.35757 13.4593 6.16344C13.4593 6.96931 12.806 7.6226 12.0002 7.6226C11.1943 7.6226 10.541 6.96931 10.541 6.16344Z\" fill=\"#F9F9F9\"/> </svg>'},v4JiMx8LD:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M21.657 7.47139C21.1736 7.33813 20.8943 7.56568 20.67 7.74845C20.4944 7.89153 20.3875 7.97128 20.2292 7.94762C20.0708 7.92392 19.985 7.81034 19.8581 7.62701C19.7043 7.40482 19.4935 7.10027 19.0241 7.20525C18.6563 7.28762 18.4276 7.801 18.1627 8.39544C17.8949 8.99651 17.5913 9.6776 17.2193 9.63696C17.0489 9.61819 16.9878 9.45471 16.8977 9.11219C16.8341 8.87058 16.7684 8.62076 16.5967 8.44289C16.4759 8.31796 16.3022 8.21464 16.1342 8.11463C15.7089 7.86163 15.5202 7.71409 15.6262 7.45524C15.7403 7.17601 16.3979 6.96199 16.9782 6.7732C17.6515 6.55407 18.2875 6.34712 18.478 5.96469C18.5455 5.8292 18.5534 5.68411 18.5015 5.53342C18.2535 4.81427 16.8519 5.14349 15.3679 5.49204C14.5876 5.67538 13.8507 5.84819 13.4402 5.82038C12.8406 5.77926 12.52 5.54482 12.21 5.31801C11.9489 5.12699 11.6788 4.92951 11.2742 4.8739C10.8143 4.811 10.3607 4.9719 9.92189 5.12764C9.53165 5.2661 9.12849 5.40954 8.7365 5.38505C8.44474 5.36703 8.06899 5.21617 7.63388 5.04148C6.86467 4.73273 5.90736 4.34856 4.95127 4.56625C3.55209 4.88525 1.61407 6.20678 1.18477 6.83649C0.959658 7.16706 0.93875 7.63583 1.13025 8.05981C1.29664 8.42818 1.59116 8.67258 1.91806 8.71348C2.24448 8.75438 2.59373 8.58571 2.99811 8.39051C3.5173 8.13973 4.10575 7.85543 4.74144 7.98625C5.06629 8.05304 5.32597 8.23572 5.51332 8.52918C5.84655 9.05121 5.93289 9.93492 5.73332 10.7804C5.60708 11.3146 5.3746 11.7113 5.14975 12.0949C4.87087 12.5706 4.60748 13.02 4.5726 13.6642C4.51961 14.6454 5.15573 17.7667 5.75257 18.1011C5.99579 18.2371 6.2336 18.2352 6.44357 18.2338C6.65772 18.2323 6.84258 18.2309 7.03582 18.3581C7.20807 18.4718 7.45736 18.9266 7.67727 19.3279C7.99902 19.915 8.30292 20.4695 8.64444 20.6494C9.00146 20.8372 9.28485 20.7877 9.55893 20.7397C9.75741 20.7051 9.96266 20.6692 10.2277 20.7134C10.4669 20.7534 10.9049 21.2322 11.2913 21.6547C11.8958 22.3156 12.5209 22.9991 13.0969 22.9991C13.6557 22.9991 14.0874 22.8103 14.2813 22.4811C14.4039 22.2731 14.4087 22.0357 14.2947 21.8299C14.1357 21.5426 13.8104 21.5118 13.5234 21.4846C13.3069 21.4641 13.1025 21.4447 12.9779 21.3341C12.8609 21.2304 12.8726 21.1064 12.9036 20.8962C12.9315 20.7061 12.9663 20.4695 12.8096 20.2644C12.6442 20.0482 12.3862 20.0206 12.1585 19.9962C11.9439 19.9733 11.8089 19.9522 11.7427 19.8538C11.6916 19.778 11.7652 19.5964 11.83 19.4362C11.9424 19.159 12.0961 18.7793 11.7513 18.533C11.4874 18.3445 11.1368 18.4765 10.7978 18.6041C10.367 18.7662 10.0693 18.8576 9.8623 18.6591C9.70608 18.5093 9.65234 18.238 9.71489 17.9148C9.80678 17.4396 10.182 16.7769 10.9368 16.4734C11.5842 16.2128 12.1402 16.5044 12.678 16.7863C13.0682 16.9908 13.4365 17.1841 13.7952 17.1106C14.3718 16.992 14.5464 16.3236 14.7003 15.7338C14.7791 15.4318 14.8536 15.1465 14.9682 14.9636C15.1321 14.7021 15.5117 14.5795 15.9135 14.4499C16.2799 14.3316 16.6588 14.2093 16.9244 13.9621C17.2139 13.6929 17.3736 13.3831 17.5145 13.1098C17.646 12.8547 17.7595 12.6344 17.953 12.4681C18.1553 12.2943 18.6685 12.2509 19.1213 12.2127C19.6921 12.1645 20.185 12.1228 20.4033 11.8594C20.6089 11.6108 20.5389 11.2856 20.4771 10.9986C20.3928 10.6072 20.3959 10.4824 20.5784 10.4101C20.7815 10.3296 21.0392 10.4913 21.312 10.6626C21.6817 10.8946 22.1418 11.1833 22.5775 10.8249C22.9418 10.5256 22.8057 9.66734 22.7303 9.31233C22.6009 8.70287 22.2291 7.62923 21.657 7.47139Z\" fill=\"#F9F9F9\"/> <path d=\"M21.4376 3.72161C20.8955 3.50309 19.7747 3.86028 19.2376 4.30566C18.8735 4.60754 18.8385 4.8787 18.8732 5.053C18.9817 5.59807 19.579 5.54381 20.015 5.50422C20.2567 5.48222 20.5575 5.45481 20.6478 5.54215C20.7432 5.63426 20.7275 5.84422 20.7109 6.06649C20.686 6.39924 20.652 6.855 21.0972 7.03274C21.1851 7.06784 21.2814 7.08377 21.3826 7.08377C21.7718 7.08373 22.232 6.84788 22.5486 6.55883C22.9135 6.22577 23.0688 5.85291 22.9745 5.53574C22.8682 5.17832 22.5516 5.11634 22.2972 5.06653C22.1268 5.03314 21.9659 5.00167 21.8746 4.89595C21.803 4.81318 21.8106 4.69926 21.829 4.52033C21.8542 4.27492 21.8923 3.90415 21.4376 3.72161Z\" fill=\"#F9F9F9\"/> <path d=\"M15.9051 3.12681C16.273 3.14602 16.7308 3.16998 16.8373 3.29094C16.9567 3.42656 16.9664 3.61151 16.9766 3.80724C16.9902 4.06666 17.0089 4.42198 17.4133 4.5239C17.4994 4.5456 17.5817 4.55564 17.6606 4.55564C18.1511 4.55559 18.508 4.16924 18.828 3.82274C19.0294 3.60474 19.2195 3.39884 19.4121 3.31901C19.6311 3.22817 19.8348 3.20071 20.0504 3.17164C20.393 3.12541 20.7472 3.0777 21.1092 2.76097C21.4976 2.4215 21.7198 1.95125 21.6753 1.56302C21.6498 1.34044 21.5347 1.16409 21.3515 1.06644C21.0612 0.911658 20.5768 1.05422 20.0159 1.21944C19.5935 1.34385 19.1567 1.47248 18.7973 1.47803C18.4072 1.4837 18.0866 1.40435 17.7766 1.32739C17.4355 1.24271 17.1134 1.16261 16.7472 1.20927C16.3143 1.2644 14.9873 1.54669 14.583 2.10202C14.4787 2.24524 14.4391 2.40334 14.4684 2.55909C14.5616 3.05653 15.2446 3.09228 15.9051 3.12681Z\" fill=\"#F9F9F9\"/> <path d=\"M11.1653 4.39686C11.4263 4.53588 11.7355 4.4282 12.0082 4.33308C12.1914 4.26918 12.3809 4.20305 12.4881 4.23701C12.5671 4.2618 12.605 4.33801 12.6708 4.48189C12.7614 4.68006 12.8855 4.95148 13.2581 5.0569C13.5313 5.13412 13.8628 5.19235 14.1679 5.19235C14.4459 5.19231 14.7019 5.14394 14.8715 5.01744C15.0251 4.9029 15.1194 4.72005 15.1371 4.50271C15.1625 4.19139 15.0247 3.85502 14.7592 3.57989C14.2597 3.06227 12.415 2.42506 11.6727 2.74218C11.154 2.96349 10.9007 3.4574 10.8849 3.82263C10.8734 4.08641 10.9757 4.29572 11.1653 4.39686Z\" fill=\"#F9F9F9\"/> </svg>'},VaqLpZO9Q:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.6112 8.80023C17.907 8.44115 18.2128 8.06982 18.2128 7.65815C18.2128 6.98437 17.7107 6.29771 17.1384 6.18862C16.8615 6.13562 16.6026 6.21262 16.3742 6.28058C16.197 6.33342 16.0296 6.38316 15.9361 6.33904C15.8442 6.29575 15.7963 6.17687 15.7407 6.03925C15.6687 5.861 15.5872 5.65896 15.3769 5.54721C15.2169 5.46217 15.057 5.46263 14.9166 5.46275C14.725 5.46363 14.5599 5.46346 14.3586 5.27071C14.1909 5.11013 14.1215 4.84409 14.0544 4.58676C13.9771 4.29051 13.8972 3.98418 13.6617 3.8001C13.4361 3.62394 13.1568 3.58039 12.8867 3.53827C12.6348 3.49898 12.3969 3.46185 12.1929 3.32731C12.0302 3.22015 11.8947 2.98298 11.7636 2.75365C11.5545 2.38757 11.3174 1.97266 10.8792 1.93624C10.6003 1.91291 10.3827 2.04111 10.1907 2.15411C9.99531 2.26911 9.86814 2.33774 9.72164 2.30303C9.60094 2.27449 9.48548 2.14482 9.36323 2.00757C9.14215 1.75932 8.86698 1.45033 8.3719 1.50674C7.62562 1.59203 6.52734 2.28528 6.38346 2.90477C6.31221 3.21231 6.39375 3.51481 6.46571 3.78164C6.53279 4.0306 6.59075 4.2456 6.52059 4.40655C6.44463 4.58047 6.25063 4.66364 6.02601 4.75989C5.81934 4.84847 5.60568 4.94001 5.44839 5.11963C5.12718 5.48646 4.82072 6.96499 5.12547 7.43016C5.30459 7.70424 5.59601 7.74432 5.85313 7.77974C6.02634 7.80357 6.18992 7.82611 6.29996 7.91499C6.40221 7.99744 6.50946 8.44744 6.59567 8.80906C6.743 9.42718 6.89533 10.0664 7.22241 10.3153C7.4537 10.4914 7.74312 10.5463 8.02299 10.5994C8.41907 10.6745 8.76115 10.7394 8.93728 11.1056C9.12827 11.5035 9.06986 12.9611 9.01832 14.2471C8.98065 15.1865 8.94511 16.0738 8.99886 16.5903C9.13019 17.8527 10.2266 20.9507 10.8578 21.5885C11.448 22.1849 12.2488 22.4755 12.7805 22.4991C12.7944 22.4997 12.8081 22.5 12.8217 22.5C13.0849 22.5 13.3107 22.3863 13.4312 22.191C13.5535 21.993 13.5496 21.7371 13.4209 21.5067C13.2696 21.2358 12.9591 21.2016 12.7096 21.1741C12.4865 21.1495 12.336 21.1261 12.2793 21.029C12.2085 20.9076 12.3158 20.7031 12.4196 20.5053C12.5286 20.2976 12.6413 20.0826 12.5982 19.8742C12.5459 19.6214 12.3475 19.5105 12.1881 19.4214C12.0683 19.3544 11.9649 19.2966 11.9212 19.1935C11.7909 18.8875 11.8018 17.8877 12.0932 17.5963C12.2274 17.4621 12.4005 17.4694 12.6697 17.4975C12.8942 17.5209 13.1264 17.545 13.3075 17.3936C13.5077 17.2256 13.5054 16.9468 13.5033 16.6773C13.5015 16.4536 13.4996 16.2223 13.6099 16.0788C13.7112 15.9473 13.8979 15.8243 14.0955 15.6942C14.4084 15.4882 14.763 15.2547 14.9255 14.8891C15.0517 14.6052 15.0271 14.2885 15.0034 13.9822C14.9767 13.6375 14.9515 13.3118 15.1266 13.0404C15.2709 12.8166 15.5463 12.7264 15.8651 12.6219C16.2523 12.495 16.6911 12.3512 16.9621 11.9167C17.2468 11.4606 17.164 10.9501 17.091 10.4998C17.0364 10.1637 16.9849 9.84618 17.0822 9.58764C17.1828 9.32018 17.4006 9.05581 17.6112 8.80023Z\" fill=\"#1C1C1E\"/> </svg>'},vgAPSi05W:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.6636 5.16566C11.2561 4.1287 12.7544 4.13773 13.3345 5.18175L15.3922 8.88577L16.9082 9.26477C17.366 9.37921 17.7456 9.69812 17.9372 10.1293L21.8662 18.9697C22.3168 19.9833 21.5748 21.1251 20.4655 21.1251H3.51198C2.4209 21.1251 1.67914 20.0175 2.09457 19.0086L5.22404 11.4084C5.60994 10.4712 6.73088 10.2037 7.49299 10.7142L10.6636 5.16566ZM9.23058 11.6458L8.91664 12.1951C8.87456 12.2688 8.8278 12.3372 8.77703 12.4004L10.8121 14.7746H12.2969C12.7443 14.7746 13.1695 14.9702 13.4607 15.3099L16.5816 18.9509L16.3443 19.1543H19.7916L16.223 11.1249L14.7299 10.7517C14.7248 10.7504 14.7197 10.7491 14.7146 10.7478L12.5947 11.1718L12.0966 11.9189C11.5601 12.7237 10.4213 12.8365 9.73731 12.1525L9.23058 11.6458ZM10.2441 9.8721L10.7531 10.3811L11.0555 9.92759C11.281 9.58933 11.6317 9.3545 12.0303 9.27477L13.2215 9.03654L11.9891 6.81832L10.2441 9.8721ZM4.16595 19.1543L6.69849 13.0038L9.4468 16.2102C9.73801 16.5499 10.1632 16.7455 10.6106 16.7455H12.0954L14.1601 19.1543H4.16595Z\" fill=\"#F9F9F9\"/> </svg>'},vN_LpY1_M:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M19 3H5C3.34315 3 2 4.34315 2 6V14C2 15.6569 3.34315 17 5 17H11V19H9C8.44772 19 8 19.4477 8 20C8 20.5523 8.44772 21 9 21H13.2955C13.1061 20.6067 13 20.1657 13 19.7V15H5C4.44772 15 4 14.5523 4 14V6C4 5.44772 4.44772 5 5 5H19C19.5523 5 20 5.44772 20 6V8.7C20.7684 8.7 21.4692 8.98885 22 9.46389V6C22 4.34315 20.6569 3 19 3Z\" fill=\"#F9F9F9\"/> <path d=\"M17.3888 16.9333C16.8304 16.9333 16.3777 17.386 16.3777 17.9444C16.3777 18.5029 16.8304 18.9556 17.3888 18.9556H18.611C19.1695 18.9556 19.6221 18.5029 19.6221 17.9444C19.6221 17.386 19.1695 16.9333 18.611 16.9333H17.3888Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.8333 9.6H16.1666C14.9331 9.6 13.9333 10.5999 13.9333 11.8333V19.1667C13.9333 20.4001 14.9332 21.4 16.1666 21.4H19.8333C21.0667 21.4 22.0666 20.4001 22.0666 19.1667V11.8333C22.0666 10.5999 21.0667 9.6 19.8333 9.6ZM15.9555 11.8333C15.9555 11.7167 16.05 11.6222 16.1666 11.6222H19.8333C19.9498 11.6222 20.0444 11.7167 20.0444 11.8333V19.1667C20.0444 19.2833 19.9499 19.3778 19.8333 19.3778H16.1666C16.05 19.3778 15.9555 19.2833 15.9555 19.1667V11.8333Z\" fill=\"#F9F9F9\"/> </svg>'},vvA0mfEuN:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M10.25 3.5H13.75C14.1642 3.5 14.5 3.83579 14.5 4.25V6H9.5V4.25C9.5 3.83579 9.83579 3.5 10.25 3.5ZM8 4.25V6H6.25C4.45507 6 3 7.45507 3 9.25V16.75C3 18.5449 4.45507 20 6.25 20H17.75C19.5449 20 21 18.5449 21 16.75V9.25C21 7.45507 19.5449 6 17.75 6H16V4.25C16 3.00736 14.9926 2 13.75 2H10.25C9.00736 2 8 3.00736 8 4.25ZM17.75 7.5C18.7165 7.5 19.5 8.2835 19.5 9.25V16.75C19.5 17.7165 18.7165 18.5 17.75 18.5H6.25C5.2835 18.5 4.5 17.7165 4.5 16.75V9.25C4.5 8.2835 5.2835 7.5 6.25 7.5H17.75ZM11.5 10.75V12.5H9.75C9.33579 12.5 9 12.8358 9 13.25C9 13.6642 9.33579 14 9.75 14H11.5V15.75C11.5 16.1642 11.8358 16.5 12.25 16.5C12.6642 16.5 13 16.1642 13 15.75V14H14.75C15.1642 14 15.5 13.6642 15.5 13.25C15.5 12.8358 15.1642 12.5 14.75 12.5H13V10.75C13 10.3358 12.6642 10 12.25 10C11.8358 10 11.5 10.3358 11.5 10.75Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.75 3.75H10.25C9.97386 3.75 9.75 3.97386 9.75 4.25V5.75H14.25V4.25C14.25 3.97386 14.0261 3.75 13.75 3.75ZM7.75 5.75V4.25C7.75 2.86929 8.86929 1.75 10.25 1.75H13.75C15.1307 1.75 16.25 2.86929 16.25 4.25V5.75H17.75C19.683 5.75 21.25 7.317 21.25 9.25V16.75C21.25 18.683 19.683 20.25 17.75 20.25H6.25C4.317 20.25 2.75 18.683 2.75 16.75V9.25C2.75 7.317 4.317 5.75 6.25 5.75H7.75ZM19.25 9.25C19.25 8.42157 18.5784 7.75 17.75 7.75H6.25C5.42157 7.75 4.75 8.42157 4.75 9.25V16.75C4.75 17.5784 5.42157 18.25 6.25 18.25H17.75C18.5784 18.25 19.25 17.5784 19.25 16.75V9.25ZM11.25 12.25V10.75C11.25 10.1977 11.6977 9.75 12.25 9.75C12.8023 9.75 13.25 10.1977 13.25 10.75V12.25H14.75C15.3023 12.25 15.75 12.6977 15.75 13.25C15.75 13.8023 15.3023 14.25 14.75 14.25H13.25V15.75C13.25 16.3023 12.8023 16.75 12.25 16.75C11.6977 16.75 11.25 16.3023 11.25 15.75V14.25H9.75C9.19772 14.25 8.75 13.8023 8.75 13.25C8.75 12.6977 9.19772 12.25 9.75 12.25H11.25ZM13.75 3.5H10.25C9.83579 3.5 9.5 3.83579 9.5 4.25V6H14.5V4.25C14.5 3.83579 14.1642 3.5 13.75 3.5ZM8 4.25C8 3.00736 9.00736 2 10.25 2H13.75C14.9926 2 16 3.00736 16 4.25V6H17.75C19.5449 6 21 7.45507 21 9.25V16.75C21 18.5449 19.5449 20 17.75 20H6.25C4.45507 20 3 18.5449 3 16.75V9.25C3 7.45507 4.45507 6 6.25 6H8V4.25ZM19.5 9.25C19.5 8.2835 18.7165 7.5 17.75 7.5H6.25C5.2835 7.5 4.5 8.2835 4.5 9.25V16.75C4.5 17.7165 5.2835 18.5 6.25 18.5H17.75C18.7165 18.5 19.5 17.7165 19.5 16.75V9.25ZM11.5 10.75C11.5 10.3358 11.8358 10 12.25 10C12.6642 10 13 10.3358 13 10.75V12.5H14.75C15.1642 12.5 15.5 12.8358 15.5 13.25C15.5 13.6642 15.1642 14 14.75 14H13V15.75C13 16.1642 12.6642 16.5 12.25 16.5C11.8358 16.5 11.5 16.1642 11.5 15.75V14H9.75C9.33579 14 9 13.6642 9 13.25C9 12.8358 9.33579 12.5 9.75 12.5H11.5V10.75Z\" fill=\"#F9F9F9\"/> </svg>'},w2D4f5is3:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.7 3C12.261 3 10.155 4.386 9.102 6.402C7.95 7.005 6.996 7.95 6.402 9.102C4.386 10.155 3 12.261 3 14.7C3 18.183 5.817 21 9.3 21C11.739 21 13.845 19.614 14.898 17.598C16.05 16.995 17.004 16.05 17.598 14.898C19.614 13.845 21 11.739 21 9.3C21 5.817 18.183 3 14.7 3ZM9.3 19.2C6.816 19.2 4.8 17.184 4.8 14.7C4.8 13.692 5.133 12.756 5.7 12C5.7 15.483 8.517 18.3 12 18.3C11.244 18.867 10.308 19.2 9.3 19.2ZM12 16.5C9.516 16.5 7.5 14.484 7.5 12C7.5 10.992 7.833 10.056 8.4 9.3C8.4 12.774 11.217 15.591 14.7 15.6C13.944 16.167 13.008 16.5 12 16.5ZM16.23 13.53C15.753 13.701 15.24 13.8 14.7 13.8C12.216 13.8 10.2 11.784 10.2 9.3C10.2 8.76 10.299 8.247 10.47 7.77C10.947 7.599 11.46 7.5 12 7.5C14.484 7.5 16.5 9.516 16.5 12C16.5 12.54 16.401 13.053 16.23 13.53ZM18.3 12C18.3 8.526 15.483 5.709 12 5.7C12.756 5.133 13.683 4.8 14.7 4.8C17.184 4.8 19.2 6.816 19.2 9.3C19.2 10.308 18.867 11.244 18.3 12Z\" fill=\"#F9F9F9\"/> </svg>'},WcgRxTpJm:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.911 6.05969L8.23116 10.922L7.25371 9.17715L15.9336 4.31482L16.911 6.05969Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.0732 12.2263V21.1645H11.0732V12.2263H13.0732Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 6.61023C4.55228 6.61023 5 7.05794 5 7.61023V16.3007C5.57905 16.626 7.19158 17.5318 8.69498 18.3763C10.1368 19.1862 11.4782 19.9397 11.7115 20.0706C11.9359 20.1967 12.2111 20.1966 12.4353 20.0707C12.5919 19.9827 13.2485 19.6138 14.0998 19.1356C15.8371 18.1596 18.3849 16.7283 19.1465 16.3006V7.61134C19.1465 7.05905 19.5943 6.61134 20.1465 6.61134C20.6988 6.61134 21.1465 7.05905 21.1465 7.61134V16.5519C21.1465 17.0818 20.8759 17.6239 20.3425 17.9228C20.2058 17.9994 17.1135 19.7366 15.0961 20.8699C14.237 21.3526 13.5727 21.7257 13.4147 21.8145C12.5822 22.2821 11.5648 22.282 10.7322 21.8145C10.4979 21.6829 9.15027 20.9259 7.70454 20.1138C5.88595 19.0923 3.91208 17.9835 3.80346 17.9226C3.27042 17.6235 3 17.0816 3 16.5519V7.61023C3 7.05794 3.44772 6.61023 4 6.61023Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7322 2.35066C11.5647 1.88313 12.5822 1.88308 13.4147 2.35071L20.3432 6.24268C21.4143 6.84409 21.4143 8.38241 20.3432 8.98383L13.4149 12.8757C12.5822 13.3436 11.5647 13.3435 10.732 12.8757C10.732 12.8757 10.7321 12.8758 10.732 12.8757L3.80314 8.98377C2.73229 8.38233 2.73229 6.84417 3.80314 6.24273L10.7322 2.35066ZM11.7114 4.09452C11.7114 4.09452 11.7114 4.09452 11.7114 4.09452L5.44706 7.61325L11.7116 11.132C11.9359 11.2581 12.211 11.2581 12.4351 11.1321L18.6994 7.61325L12.4353 4.09447C12.4353 4.09447 12.4353 4.09447 12.4353 4.09447C12.2111 3.96853 11.9359 3.96848 11.7114 4.09452Z\" fill=\"#F9F9F9\"/> </svg>'},wfhLQOQmd:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <mask id=\"path-1-outside-1_668_8639\" maskUnits=\"userSpaceOnUse\" x=\"-0.0407715\" y=\"0.76709\" width=\"24\" height=\"22\" fill=\"black\"> <rect fill=\"white\" x=\"-0.0407715\" y=\"0.76709\" width=\"24\" height=\"22\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.65191 4.08539C6.65126 4.0749 6.65093 4.06432 6.65093 4.05367V2.77375H5.1704V4.0549C5.1704 4.06514 5.17009 4.0753 5.16948 4.08539H6.65191ZM4.16462 4.08539C4.16401 4.0753 4.1637 4.06514 4.1637 4.0549V2.27044C4.1637 1.99299 4.38959 1.76709 4.66705 1.76709H7.15305C7.28686 1.76709 7.41453 1.8211 7.50906 1.91441C7.60359 2.00894 7.65638 2.13661 7.65638 2.27042V4.05488C7.65638 4.06513 7.65607 4.0753 7.65546 4.08539H15.9867C16.1487 4.08539 16.3022 4.16396 16.3955 4.29654C16.49 4.42913 16.5146 4.59854 16.4618 4.75322L16.0009 6.36028H16.7086C16.8387 6.36028 16.9639 6.41062 17.0585 6.50146L19.9071 11.3738H22.0747C22.4173 11.4678 22.7129 11.6979 22.8866 12.0187C23.1172 12.4456 22.9661 12.7363 22.7001 13.142C22.6595 13.2039 22.5866 13.3019 22.4921 13.4287C21.9678 14.1331 20.7805 15.7282 20.7805 16.9899C20.7805 16.9899 21.8799 16.5946 22.1345 16.5955C22.4464 16.5955 22.7001 16.8483 22.7001 17.1612C22.7001 17.4731 22.4464 17.7268 22.1345 17.7268C21.6289 17.7206 21.1419 17.915 20.7805 18.2668C20.5109 18.4895 20.2139 18.6751 19.8957 18.8183L19.8825 18.8236C19.8675 18.83 19.8529 18.8366 19.8384 18.8432C19.8127 18.8549 19.7873 18.8665 19.7596 18.8766C19.4309 18.9915 19.0835 19.0481 18.7353 19.0437C17.9796 19.0499 17.2487 18.7724 16.6884 18.2659C15.9292 17.5456 14.7396 17.5456 13.9804 18.2659C12.8129 19.3026 11.054 19.3026 9.88558 18.2659C9.12561 17.5456 7.93512 17.5456 7.17504 18.2659C6.61293 18.7706 5.88289 19.0481 5.12813 19.0428C4.37158 19.0481 3.64068 18.7715 3.07857 18.2659C2.71532 17.9133 2.22747 17.7188 1.72104 17.725C1.40906 17.725 1.1554 17.4714 1.1554 17.1594C1.1554 16.8465 1.40906 16.5938 1.72104 16.5938C1.82533 16.5938 1.92078 16.6008 2.01624 16.6088L1.05642 13.142C0.891134 12.7355 0.938873 12.275 1.1828 11.9109C1.35992 11.6455 1.62483 11.4571 1.92517 11.3738H2.33447L2.98214 6.774V6.77277C3.02511 6.53338 3.23381 6.35906 3.47688 6.36028H3.96276L3.54326 4.75322C3.48924 4.59854 3.51379 4.42914 3.60832 4.29654C3.70285 4.16396 3.8563 4.08539 4.01836 4.08539H4.16462ZM15.2808 5.09204L14.9525 6.36028H5.0044L4.72424 5.09204H15.2808ZM17.9248 9.8511L18.7956 11.3738H3.34607L3.89699 7.36597H16.5036L17.4694 9.05467H11.3219C11.0875 9.05467 10.8978 9.24443 10.8978 9.47877C10.8978 9.71416 11.0876 9.90391 11.3219 9.90391H17.7197C17.7941 9.90391 17.864 9.88477 17.9248 9.8511ZM2.12144 12.5403C2.1568 12.4873 2.21513 12.4555 2.27876 12.4564H21.7234C21.7932 12.4573 21.856 12.4953 21.8895 12.5562C21.9222 12.6163 21.9196 12.6906 21.8825 12.7489C21.8825 12.7489 19.7321 15.1285 19.269 17.8391C19.269 17.8391 18.9163 17.9134 18.736 17.9143C18.2537 17.9202 17.7882 17.7436 17.4316 17.42C17.8647 17.1479 18.1526 16.6662 18.1533 16.1173C18.1543 15.4941 17.779 14.9321 17.2035 14.6936C16.629 14.4551 15.9665 14.5868 15.5258 15.0264C15.1112 15.441 14.9701 16.0521 15.1526 16.6022C14.4831 16.6419 13.824 16.8992 13.2891 17.3743C12.5299 18.0946 11.3394 18.0946 10.5792 17.3743C10.042 16.898 9.38014 16.6407 8.70818 16.6024C8.759 16.4499 8.78661 16.2868 8.78681 16.1172C8.78785 15.494 8.41251 14.932 7.83702 14.6935C7.26257 14.4551 6.60001 14.5868 6.15932 15.0264C5.71864 15.4671 5.58695 16.1296 5.8244 16.7051C5.9501 17.0084 6.16564 17.2558 6.43249 17.422C6.07524 17.7444 5.60907 17.9211 5.12599 17.9151C4.61956 17.9213 4.13171 17.7269 3.76846 17.3743L3.70296 17.3248C3.62247 17.2638 3.53794 17.1998 3.44851 17.1374L2.10424 12.7153C2.07949 12.6578 2.08698 12.5916 2.12144 12.5403ZM7.24704 15.4277C6.96811 15.4277 6.71615 15.5956 6.60936 15.8538C6.50256 16.112 6.56166 16.4086 6.75971 16.6066C6.95672 16.8036 7.25328 16.8627 7.51145 16.7559C7.76964 16.6491 7.93763 16.3972 7.93763 16.1183C7.93659 15.7377 7.62862 15.4287 7.24704 15.4287L7.24704 15.4277ZM16.6135 15.4277C16.3346 15.4277 16.0826 15.5957 15.9758 15.8539C15.869 16.1121 15.9281 16.4086 16.1262 16.6067C16.3232 16.8037 16.6197 16.8628 16.8779 16.756C17.1361 16.6492 17.3041 16.3972 17.3041 16.1183C17.303 15.7378 16.9951 15.4288 16.6135 15.4288L16.6135 15.4277ZM10.5075 16.7052C10.7461 17.2806 11.307 17.655 11.9302 17.655C12.7794 17.655 13.4689 16.9665 13.47 16.1173C13.47 15.4941 13.0957 14.9321 12.5202 14.6936C11.9447 14.4551 11.2821 14.5868 10.8414 15.0264C10.4007 15.4671 10.2691 16.1297 10.5075 16.7052ZM11.2925 15.8539C11.3993 15.5957 11.6513 15.4277 11.9302 15.4277V15.4288C12.3107 15.4288 12.6197 15.7378 12.6197 16.1183C12.6197 16.3972 12.4517 16.6492 12.1946 16.756C11.9364 16.8628 11.6399 16.8037 11.4418 16.6067C11.2448 16.4086 11.1857 16.1121 11.2925 15.8539ZM17.3832 20.2775C16.2157 19.2399 14.4568 19.2399 13.2893 20.2775C12.5301 20.9987 11.3396 20.9987 10.5795 20.2775C9.41105 19.2417 7.65217 19.2417 6.48378 20.2775C6.12053 20.631 5.63268 20.8255 5.12625 20.8184C4.81427 20.8184 4.56061 21.0721 4.56061 21.384C4.56061 21.6969 4.81427 21.9497 5.12625 21.9497C5.8819 21.9559 6.61282 21.6784 7.17493 21.1719C7.93501 20.4507 9.1255 20.4507 9.88547 21.1719C11.0539 22.2086 12.8128 22.2086 13.9802 21.1719C14.7386 20.4507 15.929 20.4507 16.6883 21.1719C17.2495 21.6775 17.9804 21.955 18.7361 21.9488C19.0489 21.9488 19.3017 21.696 19.3017 21.3832C19.3017 21.0712 19.0489 20.8175 18.7361 20.8175C18.2314 20.8246 17.7453 20.6302 17.383 20.2775H17.3832Z\"/> </mask> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.65191 4.08539C6.65126 4.0749 6.65093 4.06432 6.65093 4.05367V2.77375H5.1704V4.0549C5.1704 4.06514 5.17009 4.0753 5.16948 4.08539H6.65191ZM4.16462 4.08539C4.16401 4.0753 4.1637 4.06514 4.1637 4.0549V2.27044C4.1637 1.99299 4.38959 1.76709 4.66705 1.76709H7.15305C7.28686 1.76709 7.41453 1.8211 7.50906 1.91441C7.60359 2.00894 7.65638 2.13661 7.65638 2.27042V4.05488C7.65638 4.06513 7.65607 4.0753 7.65546 4.08539H15.9867C16.1487 4.08539 16.3022 4.16396 16.3955 4.29654C16.49 4.42913 16.5146 4.59854 16.4618 4.75322L16.0009 6.36028H16.7086C16.8387 6.36028 16.9639 6.41062 17.0585 6.50146L19.9071 11.3738H22.0747C22.4173 11.4678 22.7129 11.6979 22.8866 12.0187C23.1172 12.4456 22.9661 12.7363 22.7001 13.142C22.6595 13.2039 22.5866 13.3019 22.4921 13.4287C21.9678 14.1331 20.7805 15.7282 20.7805 16.9899C20.7805 16.9899 21.8799 16.5946 22.1345 16.5955C22.4464 16.5955 22.7001 16.8483 22.7001 17.1612C22.7001 17.4731 22.4464 17.7268 22.1345 17.7268C21.6289 17.7206 21.1419 17.915 20.7805 18.2668C20.5109 18.4895 20.2139 18.6751 19.8957 18.8183L19.8825 18.8236C19.8675 18.83 19.8529 18.8366 19.8384 18.8432C19.8127 18.8549 19.7873 18.8665 19.7596 18.8766C19.4309 18.9915 19.0835 19.0481 18.7353 19.0437C17.9796 19.0499 17.2487 18.7724 16.6884 18.2659C15.9292 17.5456 14.7396 17.5456 13.9804 18.2659C12.8129 19.3026 11.054 19.3026 9.88558 18.2659C9.12561 17.5456 7.93512 17.5456 7.17504 18.2659C6.61293 18.7706 5.88289 19.0481 5.12813 19.0428C4.37158 19.0481 3.64068 18.7715 3.07857 18.2659C2.71532 17.9133 2.22747 17.7188 1.72104 17.725C1.40906 17.725 1.1554 17.4714 1.1554 17.1594C1.1554 16.8465 1.40906 16.5938 1.72104 16.5938C1.82533 16.5938 1.92078 16.6008 2.01624 16.6088L1.05642 13.142C0.891134 12.7355 0.938873 12.275 1.1828 11.9109C1.35992 11.6455 1.62483 11.4571 1.92517 11.3738H2.33447L2.98214 6.774V6.77277C3.02511 6.53338 3.23381 6.35906 3.47688 6.36028H3.96276L3.54326 4.75322C3.48924 4.59854 3.51379 4.42914 3.60832 4.29654C3.70285 4.16396 3.8563 4.08539 4.01836 4.08539H4.16462ZM15.2808 5.09204L14.9525 6.36028H5.0044L4.72424 5.09204H15.2808ZM17.9248 9.8511L18.7956 11.3738H3.34607L3.89699 7.36597H16.5036L17.4694 9.05467H11.3219C11.0875 9.05467 10.8978 9.24443 10.8978 9.47877C10.8978 9.71416 11.0876 9.90391 11.3219 9.90391H17.7197C17.7941 9.90391 17.864 9.88477 17.9248 9.8511ZM2.12144 12.5403C2.1568 12.4873 2.21513 12.4555 2.27876 12.4564H21.7234C21.7932 12.4573 21.856 12.4953 21.8895 12.5562C21.9222 12.6163 21.9196 12.6906 21.8825 12.7489C21.8825 12.7489 19.7321 15.1285 19.269 17.8391C19.269 17.8391 18.9163 17.9134 18.736 17.9143C18.2537 17.9202 17.7882 17.7436 17.4316 17.42C17.8647 17.1479 18.1526 16.6662 18.1533 16.1173C18.1543 15.4941 17.779 14.9321 17.2035 14.6936C16.629 14.4551 15.9665 14.5868 15.5258 15.0264C15.1112 15.441 14.9701 16.0521 15.1526 16.6022C14.4831 16.6419 13.824 16.8992 13.2891 17.3743C12.5299 18.0946 11.3394 18.0946 10.5792 17.3743C10.042 16.898 9.38014 16.6407 8.70818 16.6024C8.759 16.4499 8.78661 16.2868 8.78681 16.1172C8.78785 15.494 8.41251 14.932 7.83702 14.6935C7.26257 14.4551 6.60001 14.5868 6.15932 15.0264C5.71864 15.4671 5.58695 16.1296 5.8244 16.7051C5.9501 17.0084 6.16564 17.2558 6.43249 17.422C6.07524 17.7444 5.60907 17.9211 5.12599 17.9151C4.61956 17.9213 4.13171 17.7269 3.76846 17.3743L3.70296 17.3248C3.62247 17.2638 3.53794 17.1998 3.44851 17.1374L2.10424 12.7153C2.07949 12.6578 2.08698 12.5916 2.12144 12.5403ZM7.24704 15.4277C6.96811 15.4277 6.71615 15.5956 6.60936 15.8538C6.50256 16.112 6.56166 16.4086 6.75971 16.6066C6.95672 16.8036 7.25328 16.8627 7.51145 16.7559C7.76964 16.6491 7.93763 16.3972 7.93763 16.1183C7.93659 15.7377 7.62862 15.4287 7.24704 15.4287L7.24704 15.4277ZM16.6135 15.4277C16.3346 15.4277 16.0826 15.5957 15.9758 15.8539C15.869 16.1121 15.9281 16.4086 16.1262 16.6067C16.3232 16.8037 16.6197 16.8628 16.8779 16.756C17.1361 16.6492 17.3041 16.3972 17.3041 16.1183C17.303 15.7378 16.9951 15.4288 16.6135 15.4288L16.6135 15.4277ZM10.5075 16.7052C10.7461 17.2806 11.307 17.655 11.9302 17.655C12.7794 17.655 13.4689 16.9665 13.47 16.1173C13.47 15.4941 13.0957 14.9321 12.5202 14.6936C11.9447 14.4551 11.2821 14.5868 10.8414 15.0264C10.4007 15.4671 10.2691 16.1297 10.5075 16.7052ZM11.2925 15.8539C11.3993 15.5957 11.6513 15.4277 11.9302 15.4277V15.4288C12.3107 15.4288 12.6197 15.7378 12.6197 16.1183C12.6197 16.3972 12.4517 16.6492 12.1946 16.756C11.9364 16.8628 11.6399 16.8037 11.4418 16.6067C11.2448 16.4086 11.1857 16.1121 11.2925 15.8539ZM17.3832 20.2775C16.2157 19.2399 14.4568 19.2399 13.2893 20.2775C12.5301 20.9987 11.3396 20.9987 10.5795 20.2775C9.41105 19.2417 7.65217 19.2417 6.48378 20.2775C6.12053 20.631 5.63268 20.8255 5.12625 20.8184C4.81427 20.8184 4.56061 21.0721 4.56061 21.384C4.56061 21.6969 4.81427 21.9497 5.12625 21.9497C5.8819 21.9559 6.61282 21.6784 7.17493 21.1719C7.93501 20.4507 9.1255 20.4507 9.88547 21.1719C11.0539 22.2086 12.8128 22.2086 13.9802 21.1719C14.7386 20.4507 15.929 20.4507 16.6883 21.1719C17.2495 21.6775 17.9804 21.955 18.7361 21.9488C19.0489 21.9488 19.3017 21.696 19.3017 21.3832C19.3017 21.0712 19.0489 20.8175 18.7361 20.8175C18.2314 20.8246 17.7453 20.6302 17.383 20.2775H17.3832Z\" fill=\"#F9F9F9\"/> <path d=\"M6.65191 4.08539V4.41224H6.99973L6.97813 4.0651L6.65191 4.08539ZM6.65093 2.77375H6.97778V2.4469H6.65093V2.77375ZM5.1704 2.77375V2.4469H4.84354V2.77375H5.1704ZM5.16948 4.08539L4.84321 4.06578L4.82239 4.41224H5.16948V4.08539ZM4.16462 4.08539V4.41224H4.51171L4.49088 4.06577L4.16462 4.08539ZM7.50906 1.91441L7.74019 1.68328L7.73867 1.68179L7.50906 1.91441ZM7.65546 4.08539L7.3292 4.06576L7.30835 4.41224H7.65546V4.08539ZM16.3955 4.29654L16.1282 4.48466L16.1293 4.48629L16.3955 4.29654ZM16.4618 4.75322L16.1524 4.64764L16.1498 4.65532L16.1476 4.66312L16.4618 4.75322ZM16.0009 6.36028L15.6867 6.27018L15.5672 6.68714H16.0009V6.36028ZM17.0585 6.50146L17.3406 6.33649L17.3177 6.29727L17.2849 6.26579L17.0585 6.50146ZM19.9071 11.3738L19.6249 11.5387L19.7196 11.7006H19.9071V11.3738ZM22.0747 11.3738L22.1612 11.0586L22.1188 11.0469H22.0747V11.3738ZM22.8866 12.0187L23.1741 11.8634L23.174 11.8631L22.8866 12.0187ZM22.7001 13.142L22.4268 12.9628L22.4268 12.9628L22.7001 13.142ZM22.4921 13.4287L22.23 13.2336L22.23 13.2336L22.4921 13.4287ZM20.7805 16.9899H20.4536V17.4547L20.891 17.2975L20.7805 16.9899ZM22.1345 16.5955L22.1333 16.9224H22.1345V16.5955ZM22.1345 17.7268L22.1304 18.0537H22.1345V17.7268ZM20.7805 18.2668L20.9886 18.5188L20.9989 18.5103L21.0084 18.5011L20.7805 18.2668ZM19.8957 18.8183L20.0173 19.122L20.0299 19.1164L19.8957 18.8183ZM19.8825 18.8236L19.761 18.5201L19.7545 18.5228L19.8825 18.8236ZM19.8384 18.8432L19.9737 19.1408L19.9737 19.1408L19.8384 18.8432ZM19.7596 18.8766L19.8675 19.1852L19.8723 19.1834L19.7596 18.8766ZM18.7353 19.0437L18.7395 18.7168L18.7326 18.7168L18.7353 19.0437ZM16.6884 18.2659L16.4634 18.5031L16.4692 18.5084L16.6884 18.2659ZM13.9804 18.2659L14.1975 18.5105L14.2053 18.503L13.9804 18.2659ZM9.88558 18.2659L9.66061 18.5033L9.66865 18.5104L9.88558 18.2659ZM7.17504 18.2659L7.39348 18.5092L7.39987 18.5032L7.17504 18.2659ZM5.12813 19.0428L5.13043 18.7159L5.12584 18.7159L5.12813 19.0428ZM3.07857 18.2659L2.85074 18.5006L2.86 18.509L3.07857 18.2659ZM1.72104 17.725V18.0519L1.72503 18.0519L1.72104 17.725ZM2.01624 16.6088L1.98909 16.9345L2.45635 16.9735L2.33124 16.5216L2.01624 16.6088ZM1.05642 13.142L1.37142 13.0548L1.36636 13.0365L1.35921 13.0189L1.05642 13.142ZM1.1828 11.9109L1.45436 12.0928L1.45466 12.0923L1.1828 11.9109ZM1.92517 11.3738V11.0469H1.88065L1.83776 11.0588L1.92517 11.3738ZM2.33447 11.3738V11.7006H2.61852L2.65813 11.4193L2.33447 11.3738ZM2.98214 6.774L3.3058 6.81957L3.309 6.7969V6.774H2.98214ZM2.98214 6.77277L2.66043 6.71503L2.65528 6.74367V6.77277H2.98214ZM3.47688 6.36028L3.47523 6.68714H3.47688V6.36028ZM3.96276 6.36028V6.68714H4.3859L4.27902 6.27773L3.96276 6.36028ZM3.54326 4.75322L3.85951 4.67066L3.85618 4.65791L3.85184 4.64546L3.54326 4.75322ZM3.60832 4.29654L3.34218 4.1068L3.34217 4.1068L3.60832 4.29654ZM14.9525 6.36028V6.68714H15.2056L15.269 6.44219L14.9525 6.36028ZM15.2808 5.09204L15.5972 5.17394L15.7031 4.76518H15.2808V5.09204ZM5.0044 6.36028L4.68523 6.43079L4.74186 6.68714H5.0044V6.36028ZM4.72424 5.09204V4.76518H4.3173L4.40508 5.16254L4.72424 5.09204ZM18.7956 11.3738V11.7006H19.3591L19.0794 11.2115L18.7956 11.3738ZM17.9248 9.8511L18.2086 9.68884L18.0485 9.40897L17.7665 9.56517L17.9248 9.8511ZM3.34607 11.3738L3.02226 11.3293L2.97121 11.7006H3.34607V11.3738ZM3.89699 7.36597V7.03911H3.61199L3.57318 7.32145L3.89699 7.36597ZM16.5036 7.36597L16.7873 7.2037L16.6932 7.03911H16.5036V7.36597ZM17.4694 9.05467V9.38152H18.0328L17.7531 8.8924L17.4694 9.05467ZM2.27876 12.4564L2.27422 12.7832H2.27876V12.4564ZM2.12144 12.5403L2.39268 12.7227L2.39341 12.7216L2.12144 12.5403ZM21.7234 12.4564L21.7275 12.1295H21.7234V12.4564ZM21.8895 12.5562L22.1766 12.4L22.1758 12.3986L21.8895 12.5562ZM21.8825 12.7489L22.125 12.9681L22.1434 12.9476L22.1582 12.9244L21.8825 12.7489ZM19.269 17.8391L19.3363 18.159L19.5538 18.1132L19.5912 17.8942L19.269 17.8391ZM18.736 17.9143L18.7344 17.5874L18.732 17.5874L18.736 17.9143ZM17.4316 17.42L17.2577 17.1432L16.8928 17.3725L17.212 17.6621L17.4316 17.42ZM18.1533 16.1173L17.8264 16.1167L17.8264 16.1169L18.1533 16.1173ZM17.2035 14.6936L17.0782 14.9955L17.0783 14.9956L17.2035 14.6936ZM15.5258 15.0264L15.2949 14.795L15.2947 14.7953L15.5258 15.0264ZM15.1526 16.6022L15.1719 16.9284L15.5968 16.9032L15.4628 16.4992L15.1526 16.6022ZM13.2891 17.3743L13.0719 17.1297L13.0641 17.1371L13.2891 17.3743ZM10.5792 17.3743L10.8041 17.1369L10.796 17.1297L10.5792 17.3743ZM8.70818 16.6024L8.39808 16.4991L8.26302 16.9044L8.68957 16.9287L8.70818 16.6024ZM8.78681 16.1172L8.45996 16.1167L8.45996 16.1168L8.78681 16.1172ZM7.83702 14.6935L7.7117 14.9954L7.71189 14.9955L7.83702 14.6935ZM6.15932 15.0264L5.92847 14.795L5.9282 14.7953L6.15932 15.0264ZM5.8244 16.7051L5.52226 16.8298L5.52245 16.8303L5.8244 16.7051ZM6.43249 17.422L6.65146 17.6647L6.97361 17.374L6.60529 17.1446L6.43249 17.422ZM5.12599 17.9151L5.12999 17.5882L5.122 17.5883L5.12599 17.9151ZM3.76846 17.3743L3.99613 17.1397L3.98163 17.1257L3.96551 17.1135L3.76846 17.3743ZM3.70296 17.3248L3.50562 17.5853L3.5059 17.5855L3.70296 17.3248ZM3.44851 17.1374L3.13578 17.2325L3.16869 17.3407L3.26149 17.4054L3.44851 17.1374ZM2.10424 12.7153L2.41696 12.6202L2.41165 12.6028L2.40443 12.586L2.10424 12.7153ZM6.60936 15.8538L6.91139 15.9788L6.9114 15.9788L6.60936 15.8538ZM7.24704 15.4277L7.57389 15.4268L7.57299 15.1008H7.24704V15.4277ZM7.51145 16.7559L7.38652 16.4539L7.38651 16.4539L7.51145 16.7559ZM7.93763 16.1183L8.26449 16.1183L8.26448 16.1174L7.93763 16.1183ZM7.24704 15.4287L6.92019 15.4296L6.92109 15.7556H7.24704V15.4287ZM15.9758 15.8539L16.2779 15.9788L16.2779 15.9788L15.9758 15.8539ZM16.6135 15.4277L16.9404 15.4268L16.9395 15.1009H16.6135V15.4277ZM16.8779 16.756L16.753 16.454L16.753 16.454L16.8779 16.756ZM17.3041 16.1183L17.6309 16.1183L17.6309 16.1174L17.3041 16.1183ZM16.6135 15.4288L16.2866 15.4297L16.2875 15.7556H16.6135V15.4288ZM10.5075 16.7052L10.2056 16.8303L10.2056 16.8303L10.5075 16.7052ZM13.47 16.1173L13.7968 16.1177V16.1173H13.47ZM12.5202 14.6936L12.6453 14.3916L12.6453 14.3916L12.5202 14.6936ZM10.8414 15.0264L10.6106 14.795L10.6103 14.7953L10.8414 15.0264ZM11.9302 15.4277H12.257V15.1009H11.9302V15.4277ZM11.2925 15.8539L11.5945 15.9788L11.5945 15.9788L11.2925 15.8539ZM11.9302 15.4288H11.6033V15.7556H11.9302V15.4288ZM12.1946 16.756L12.3195 17.058L12.32 17.0579L12.1946 16.756ZM11.4418 16.6067L11.2101 16.8372L11.2113 16.8384L11.4418 16.6067ZM13.2893 20.2775L13.0721 20.0331L13.0642 20.0405L13.2893 20.2775ZM17.3832 20.2775V20.6044H18.243L17.6003 20.0332L17.3832 20.2775ZM10.5795 20.2775L10.8046 20.0403L10.7963 20.0329L10.5795 20.2775ZM6.48378 20.2775L6.26695 20.0329L6.26127 20.038L6.25582 20.0433L6.48378 20.2775ZM5.12625 20.8184L5.13082 20.4915H5.12625V20.8184ZM5.12625 21.9497L5.12893 21.6228H5.12625V21.9497ZM7.17493 21.1719L7.39378 21.4148L7.3999 21.409L7.17493 21.1719ZM9.88547 21.1719L9.66035 21.4091L9.66854 21.4164L9.88547 21.1719ZM13.9802 21.1719L14.1974 21.4165L14.2055 21.4088L13.9802 21.1719ZM16.6883 21.1719L16.4631 21.409L16.4695 21.4148L16.6883 21.1719ZM18.7361 21.9488L18.7361 21.6219L18.7334 21.6219L18.7361 21.9488ZM18.7361 20.8175L18.7361 20.4906L18.7315 20.4907L18.7361 20.8175ZM17.383 20.2775V19.9507H16.5784L17.155 20.5118L17.383 20.2775ZM6.97813 4.0651C6.9779 4.06136 6.97778 4.05755 6.97778 4.05367H6.32407C6.32407 4.0711 6.32461 4.08844 6.32568 4.10568L6.97813 4.0651ZM6.97778 4.05367V2.77375H6.32407V4.05367H6.97778ZM6.65093 2.4469H5.1704V3.10061H6.65093V2.4469ZM4.84354 2.77375V4.0549H5.49725V2.77375H4.84354ZM4.84354 4.0549C4.84354 4.05859 4.84343 4.06221 4.84321 4.06578L5.49575 4.10499C5.49675 4.08839 5.49725 4.07168 5.49725 4.0549H4.84354ZM5.16948 4.41224H6.65191V3.75853H5.16948V4.41224ZM4.49088 4.06577C4.49067 4.06222 4.49056 4.05859 4.49056 4.0549H3.83685C3.83685 4.07168 3.83735 4.08839 3.83835 4.105L4.49088 4.06577ZM4.49056 4.0549V2.27044H3.83685V4.0549H4.49056ZM4.49056 2.27044C4.49056 2.1735 4.57011 2.09395 4.66705 2.09395V1.44023C4.20907 1.44023 3.83685 1.81248 3.83685 2.27044H4.49056ZM4.66705 2.09395H7.15305V1.44023H4.66705V2.09395ZM7.15305 2.09395C7.19857 2.09395 7.24441 2.11245 7.27945 2.14703L7.73867 1.68179C7.58466 1.52976 7.37514 1.44023 7.15305 1.44023V2.09395ZM7.27794 2.14553C7.31102 2.17862 7.32952 2.2231 7.32952 2.27042H7.98323C7.98323 2.05013 7.89615 1.83925 7.74018 1.68329L7.27794 2.14553ZM7.32952 2.27042V4.05488H7.98323V2.27042H7.32952ZM7.32952 4.05488C7.32952 4.05858 7.32941 4.06221 7.3292 4.06576L7.98173 4.10501C7.98273 4.08839 7.98323 4.07167 7.98323 4.05488H7.32952ZM7.65546 4.41224H15.9867V3.75853H7.65546V4.41224ZM15.9867 4.41224C16.0438 4.41224 16.0969 4.44025 16.1282 4.48466L16.6628 4.10843C16.5074 3.88766 16.2536 3.75853 15.9867 3.75853V4.41224ZM16.1293 4.48629C16.1624 4.53269 16.1714 4.59209 16.1524 4.64764L16.7711 4.85879C16.8577 4.605 16.8176 4.32557 16.6616 4.1068L16.1293 4.48629ZM16.1476 4.66312L15.6867 6.27018L16.3151 6.45038L16.776 4.84332L16.1476 4.66312ZM16.0009 6.68714H16.7086V6.03343H16.0009V6.68714ZM16.7086 6.68714C16.7541 6.68714 16.7982 6.70466 16.832 6.73714L17.2849 6.26579C17.1297 6.11658 16.9234 6.03343 16.7086 6.03343V6.68714ZM16.7763 6.66643L19.6249 11.5387L20.1893 11.2088L17.3406 6.33649L16.7763 6.66643ZM19.9071 11.7006H22.0747V11.0469H19.9071V11.7006ZM21.9882 11.689C22.246 11.7597 22.4684 11.9329 22.5991 12.1744L23.174 11.8631C22.9573 11.4629 22.5886 11.1759 22.1612 11.0586L21.9882 11.689ZM22.599 12.1741C22.6805 12.3249 22.6832 12.4223 22.6617 12.5124C22.6345 12.6264 22.5621 12.7563 22.4268 12.9628L22.9734 13.3213C23.1041 13.122 23.2403 12.9038 23.2975 12.6642C23.3604 12.4008 23.3233 12.1395 23.1741 11.8634L22.599 12.1741ZM22.4268 12.9628C22.3929 13.0144 22.3277 13.1023 22.23 13.2336L22.7543 13.6239C22.8455 13.5015 22.9261 13.3935 22.9734 13.3213L22.4268 12.9628ZM22.23 13.2336C21.9683 13.5851 21.5286 14.1752 21.1548 14.8401C20.7863 15.4954 20.4536 16.2712 20.4536 16.9899H21.1073C21.1073 16.4468 21.3683 15.7942 21.7246 15.1605C22.0755 14.5364 22.4917 13.9767 22.7543 13.6239L22.23 13.2336ZM20.7805 16.9899C20.891 17.2975 20.891 17.2975 20.891 17.2975C20.891 17.2975 20.891 17.2975 20.891 17.2975C20.891 17.2975 20.8911 17.2974 20.8911 17.2974C20.8912 17.2974 20.8914 17.2973 20.8916 17.2972C20.8921 17.2971 20.8928 17.2968 20.8938 17.2965C20.8958 17.2958 20.8987 17.2947 20.9027 17.2933C20.9105 17.2905 20.9222 17.2864 20.9371 17.2811C20.9671 17.2705 21.0104 17.2553 21.0631 17.237C21.1687 17.2005 21.3117 17.1519 21.4621 17.1035C21.6132 17.0549 21.7685 17.0075 21.8995 16.9726C21.9651 16.9552 22.0215 16.9417 22.0664 16.9329C22.1161 16.9231 22.1351 16.9224 22.1333 16.9224L22.1356 16.2687C22.0214 16.2683 21.8629 16.3059 21.7315 16.3409C21.5848 16.3799 21.4175 16.4311 21.2619 16.4812C21.1056 16.5315 20.9578 16.5817 20.8493 16.6192C20.795 16.638 20.7504 16.6537 20.7192 16.6647C20.7036 16.6702 20.6914 16.6746 20.683 16.6776C20.6789 16.6791 20.6756 16.6802 20.6734 16.681C20.6723 16.6814 20.6714 16.6817 20.6709 16.6819C20.6706 16.682 20.6703 16.6821 20.6702 16.6822C20.6701 16.6822 20.67 16.6822 20.67 16.6823C20.67 16.6823 20.6699 16.6823 20.6699 16.6823C20.6699 16.6823 20.6699 16.6823 20.7805 16.9899ZM22.1345 16.9224C22.2662 16.9224 22.3732 17.0291 22.3732 17.1612H23.0269C23.0269 16.6674 22.6266 16.2687 22.1345 16.2687V16.9224ZM22.3732 17.1612C22.3732 17.2926 22.2659 17.3999 22.1345 17.3999V18.0537C22.627 18.0537 23.0269 17.6537 23.0269 17.1612H22.3732ZM22.1385 17.4C21.5465 17.3927 20.9761 17.6204 20.5525 18.0326L21.0084 18.5011C21.3078 18.2097 21.7114 18.0485 22.1304 18.0536L22.1385 17.4ZM20.5723 18.0148C20.3249 18.2192 20.0527 18.3892 19.7616 18.5202L20.0299 19.1164C20.3751 18.961 20.6969 18.7598 20.9886 18.5188L20.5723 18.0148ZM19.7743 18.5148L19.7611 18.5201L20.0039 19.1271L20.0172 19.1218L19.7743 18.5148ZM19.7545 18.5228C19.7352 18.5311 19.717 18.5394 19.703 18.5457L19.9737 19.1408C19.9888 19.1339 19.9997 19.1289 20.0105 19.1244L19.7545 18.5228ZM19.703 18.5457C19.6759 18.558 19.6613 18.5646 19.6469 18.5698L19.8723 19.1834C19.9133 19.1684 19.9496 19.1517 19.9737 19.1408L19.703 18.5457ZM19.6518 18.5681C19.3591 18.6704 19.0497 18.7208 18.7395 18.7168L18.7312 19.3705C19.1174 19.3754 19.5027 19.3127 19.8675 19.1852L19.6518 18.5681ZM18.7326 18.7168C18.0587 18.7223 17.407 18.4748 16.9076 18.0234L16.4692 18.5084C17.0905 19.0699 17.9006 19.3774 18.738 19.3705L18.7326 18.7168ZM16.9134 18.0288C16.028 17.1889 14.6407 17.1888 13.7554 18.0288L14.2053 18.503C14.8384 17.9024 15.8303 17.9024 16.4634 18.503L16.9134 18.0288ZM13.7633 18.0215C12.7197 18.9482 11.1472 18.9484 10.1025 18.0214L9.66865 18.5104C10.9608 19.6569 12.906 19.657 14.1974 18.5103L13.7633 18.0215ZM10.1104 18.0287C9.22437 17.1889 7.83636 17.1889 6.95021 18.0287L7.39987 18.5032C8.03389 17.9023 9.02685 17.9024 9.66073 18.5032L10.1104 18.0287ZM6.95668 18.0227C6.45494 18.4732 5.80352 18.7207 5.13043 18.7159L5.12583 19.3696C5.96227 19.3755 6.77092 19.068 7.3934 18.5091L6.95668 18.0227ZM5.12584 18.7159C4.45052 18.7207 3.79846 18.4738 3.29714 18.0229L2.86 18.509C3.4829 19.0692 4.29263 19.3755 5.13042 19.3696L5.12584 18.7159ZM3.30624 18.0314C2.881 17.6186 2.30986 17.391 1.71705 17.3982L1.72503 18.0519C2.14507 18.0467 2.54963 18.208 2.8509 18.5004L3.30624 18.0314ZM1.72104 17.3982C1.58957 17.3982 1.48226 17.2909 1.48226 17.1594H0.828545C0.828545 17.6519 1.22854 18.0519 1.72104 18.0519V17.3982ZM1.48226 17.1594C1.48226 17.0274 1.58924 16.9206 1.72104 16.9206V16.2669C1.22887 16.2669 0.828545 16.6657 0.828545 17.1594H1.48226ZM1.72104 16.9206C1.81093 16.9206 1.89501 16.9267 1.98909 16.9345L2.04338 16.2831C1.94655 16.275 1.83974 16.2669 1.72104 16.2669V16.9206ZM2.33124 16.5216L1.37142 13.0548L0.741409 13.2292L1.70123 16.696L2.33124 16.5216ZM1.35921 13.0189C1.2349 12.7131 1.27069 12.367 1.45436 12.0928L0.911241 11.729C0.607053 12.1831 0.547368 12.7578 0.753624 13.2651L1.35921 13.0189ZM1.45466 12.0923C1.5877 11.893 1.7867 11.7514 2.01258 11.6887L1.83776 11.0588C1.46295 11.1628 1.13215 11.398 0.91094 11.7294L1.45466 12.0923ZM1.92517 11.7006H2.33447V11.0469H1.92517V11.7006ZM2.65813 11.4193L3.3058 6.81957L2.65848 6.72843L2.0108 11.3282L2.65813 11.4193ZM3.309 6.774V6.77277H2.65528V6.774H3.309ZM3.30386 6.83052C3.31888 6.74683 3.39169 6.68671 3.47523 6.68713L3.47852 6.03343C3.07592 6.0314 2.73134 6.31993 2.66043 6.71503L3.30386 6.83052ZM3.47688 6.68714H3.96276V6.03343H3.47688V6.68714ZM4.27902 6.27773L3.85951 4.67066L3.227 4.83578L3.64651 6.44284L4.27902 6.27773ZM3.85184 4.64546C3.83288 4.59118 3.84139 4.53267 3.87447 4.48628L3.34217 4.1068C3.18619 4.3256 3.14559 4.60589 3.23467 4.86098L3.85184 4.64546ZM3.87446 4.48629C3.90742 4.44006 3.96157 4.41224 4.01836 4.41224V3.75853C3.75104 3.75853 3.49827 3.88786 3.34218 4.1068L3.87446 4.48629ZM4.01836 4.41224H4.16462V3.75853H4.01836V4.41224ZM15.269 6.44219L15.5972 5.17394L14.9644 5.01013L14.6361 6.27838L15.269 6.44219ZM5.0044 6.68714H14.9525V6.03343H5.0044V6.68714ZM4.40508 5.16254L4.68523 6.43079L5.32356 6.28978L5.0434 5.02153L4.40508 5.16254ZM15.2808 4.76518H4.72424V5.41889H15.2808V4.76518ZM19.0794 11.2115L18.2086 9.68884L17.6411 10.0134L18.5119 11.536L19.0794 11.2115ZM3.34607 11.7006H18.7956V11.0469H3.34607V11.7006ZM3.57318 7.32145L3.02226 11.3293L3.66989 11.4183L4.2208 7.41048L3.57318 7.32145ZM16.5036 7.03911H3.89699V7.69282H16.5036V7.03911ZM17.7531 8.8924L16.7873 7.2037L16.2199 7.52823L17.1856 9.21693L17.7531 8.8924ZM11.3219 9.38152H17.4694V8.72781H11.3219V9.38152ZM11.2246 9.47877C11.2246 9.42494 11.2681 9.38152 11.3219 9.38152V8.72781C10.907 8.72781 10.5709 9.06392 10.5709 9.47877H11.2246ZM11.3219 9.57705C11.2686 9.57705 11.2246 9.53415 11.2246 9.47877H10.5709C10.5709 9.89416 10.9065 10.2308 11.3219 10.2308V9.57705ZM17.7197 9.57705H11.3219V10.2308H17.7197V9.57705ZM17.7665 9.56517C17.753 9.57263 17.7374 9.57705 17.7197 9.57705V10.2308C17.8508 10.2308 17.9751 10.1969 18.0832 10.137L17.7665 9.56517ZM2.28331 12.1295C2.10471 12.1271 1.94406 12.2172 1.84948 12.359L2.39341 12.7216C2.36954 12.7574 2.32554 12.7839 2.27422 12.7832L2.28331 12.1295ZM21.7234 12.1295H2.27876V12.7832H21.7234V12.1295ZM22.1758 12.3986C22.086 12.2354 21.916 12.1319 21.7275 12.1295L21.7192 12.7832C21.6704 12.7826 21.6259 12.7551 21.6032 12.7139L22.1758 12.3986ZM22.1582 12.9244C22.2586 12.7667 22.2667 12.5655 22.1766 12.4L21.6024 12.7125C21.5778 12.6672 21.5806 12.6144 21.6067 12.5734L22.1582 12.9244ZM19.5912 17.8942C19.8123 16.6 20.4403 15.37 21.025 14.4533C21.3158 13.9972 21.5926 13.6239 21.7961 13.3652C21.8978 13.2359 21.9811 13.1355 22.0384 13.0679C22.067 13.0342 22.0892 13.0086 22.104 12.9918C22.1113 12.9834 22.1168 12.9772 22.1204 12.9732C22.1222 12.9712 22.1234 12.9698 22.1242 12.9689C22.1246 12.9685 22.1248 12.9682 22.125 12.9681C22.125 12.968 22.1251 12.9679 22.1251 12.9679C22.1251 12.9679 22.125 12.968 22.125 12.968C22.125 12.968 22.125 12.9681 21.8825 12.7489C21.64 12.5298 21.6399 12.5298 21.6398 12.5299C21.6398 12.5299 21.6397 12.53 21.6397 12.5301C21.6395 12.5302 21.6394 12.5304 21.6392 12.5306C21.6388 12.5311 21.6383 12.5316 21.6376 12.5324C21.6363 12.5338 21.6345 12.5359 21.6322 12.5384C21.6276 12.5436 21.6209 12.5511 21.6124 12.5608C21.5955 12.5802 21.571 12.6084 21.5399 12.645C21.4779 12.7181 21.3895 12.8248 21.2823 12.961C21.0682 13.2331 20.7784 13.6241 20.4738 14.1018C19.8675 15.0525 19.1888 16.3676 18.9468 17.7841L19.5912 17.8942ZM18.7377 18.2411C18.8574 18.2405 19.0145 18.2172 19.1245 18.1987C19.1832 18.1888 19.2356 18.1789 19.2734 18.1716C19.2924 18.1679 19.3078 18.1648 19.3186 18.1626C19.324 18.1615 19.3283 18.1607 19.3313 18.16C19.3328 18.1597 19.3339 18.1595 19.3348 18.1593C19.3352 18.1592 19.3356 18.1591 19.3358 18.1591C19.3359 18.1591 19.3361 18.159 19.3361 18.159C19.3362 18.159 19.3362 18.159 19.3362 18.159C19.3363 18.159 19.3363 18.159 19.3363 18.159C19.3363 18.159 19.3363 18.159 19.269 17.8391C19.2017 17.5193 19.2017 17.5193 19.2017 17.5193C19.2017 17.5193 19.2017 17.5193 19.2017 17.5193C19.2017 17.5193 19.2017 17.5193 19.2017 17.5193C19.2017 17.5193 19.2017 17.5193 19.2017 17.5193C19.2016 17.5193 19.2014 17.5193 19.2012 17.5194C19.2007 17.5195 19.1998 17.5197 19.1987 17.5199C19.1965 17.5204 19.193 17.5211 19.1884 17.522C19.1792 17.5239 19.1656 17.5266 19.1487 17.5299C19.1147 17.5365 19.0678 17.5453 19.0158 17.5541C18.9044 17.5729 18.795 17.5871 18.7344 17.5874L18.7377 18.2411ZM17.212 17.6621C17.6298 18.0411 18.1751 18.248 18.7401 18.2411L18.732 17.5874C18.3322 17.5923 17.9467 17.446 17.6512 17.1779L17.212 17.6621ZM17.8264 16.1169C17.8259 16.5489 17.5997 16.9284 17.2577 17.1432L17.6055 17.6968C18.1297 17.3674 18.4793 16.7834 18.4801 16.1177L17.8264 16.1169ZM17.0783 14.9956C17.5317 15.1834 17.8272 15.6261 17.8264 16.1167L18.4801 16.1178C18.4814 15.3621 18.0262 14.6807 17.3286 14.3916L17.0783 14.9956ZM15.7566 15.2579C16.104 14.9113 16.626 14.8078 17.0782 14.9955L17.3288 14.3917C16.632 14.1025 15.829 14.2623 15.2949 14.795L15.7566 15.2579ZM15.4628 16.4992C15.319 16.0657 15.4303 15.5842 15.7569 15.2576L15.2947 14.7953C14.7921 15.2979 14.6212 16.0384 14.8423 16.7051L15.4628 16.4992ZM13.5061 17.6187C13.9844 17.1939 14.5732 16.964 15.1719 16.9284L15.1332 16.2759C14.393 16.3198 13.6636 16.6045 13.072 17.1298L13.5061 17.6187ZM10.3544 17.6115C11.2405 18.4512 12.6286 18.4514 13.514 17.6114L13.0641 17.1371C12.4311 17.7377 11.4382 17.7379 10.804 17.137L10.3544 17.6115ZM8.68957 16.9287C9.29056 16.963 9.88194 17.1929 10.3624 17.6188L10.796 17.1297C10.202 16.6031 9.46971 16.3184 8.72678 16.2761L8.68957 16.9287ZM8.45996 16.1168C8.45979 16.2509 8.43799 16.3793 8.39808 16.4991L9.01827 16.7057C9.08001 16.5204 9.11342 16.3226 9.11367 16.1176L8.45996 16.1168ZM7.71189 14.9955C8.16525 15.1834 8.46077 15.626 8.45996 16.1167L9.11367 16.1178C9.11493 15.362 8.65977 14.6807 7.96215 14.3916L7.71189 14.9955ZM6.39016 15.2578C6.73752 14.9113 7.25959 14.8077 7.7117 14.9954L7.96234 14.3917C7.26555 14.1024 6.46251 14.2622 5.92847 14.795L6.39016 15.2578ZM6.12655 16.5805C5.9394 16.1269 6.04325 15.6047 6.39044 15.2575L5.9282 14.7953C5.39403 15.3294 5.23451 16.1324 5.52226 16.8298L6.12655 16.5805ZM6.60529 17.1446C6.39494 17.0136 6.22532 16.8188 6.12635 16.58L5.52245 16.8303C5.67488 17.198 5.93634 17.4981 6.25969 17.6995L6.60529 17.1446ZM5.12199 18.242C5.68748 18.2489 6.23324 18.0421 6.65146 17.6647L6.21351 17.1794C5.91724 17.4467 5.53065 17.5932 5.12999 17.5883L5.12199 18.242ZM3.54079 17.6088C3.96602 18.0216 4.53717 18.2492 5.12998 18.242L5.122 17.5883C4.70196 17.5934 4.29739 17.4322 3.99613 17.1397L3.54079 17.6088ZM3.5059 17.5855L3.5714 17.635L3.96551 17.1135L3.90002 17.064L3.5059 17.5855ZM3.26149 17.4054C3.34487 17.4636 3.42445 17.5238 3.50562 17.5853L3.9003 17.0642C3.82049 17.0038 3.731 16.9359 3.63553 16.8693L3.26149 17.4054ZM1.79151 12.8104L3.13578 17.2325L3.76124 17.0423L2.41696 12.6202L1.79151 12.8104ZM1.85021 12.3579C1.75635 12.4975 1.73351 12.6808 1.80404 12.8446L2.40443 12.586C2.42547 12.6348 2.4176 12.6857 2.39268 12.7227L1.85021 12.3579ZM6.9114 15.9788C6.96754 15.843 7.10011 15.7545 7.24704 15.7545V15.1008C6.8361 15.1008 6.46475 15.3483 6.30731 15.7289L6.9114 15.9788ZM6.99083 16.3755C6.88606 16.2707 6.85519 16.1146 6.91139 15.9788L6.30732 15.7289C6.14992 16.1094 6.23725 16.5464 6.52859 16.8377L6.99083 16.3755ZM7.38651 16.4539C7.25029 16.5102 7.09428 16.4789 6.99083 16.3755L6.52859 16.8377C6.81916 17.1283 7.25627 17.2152 7.6364 17.058L7.38651 16.4539ZM7.61077 16.1183C7.61077 16.2651 7.52226 16.3977 7.38652 16.4539L7.63639 17.058C8.01702 16.9005 8.26448 16.5292 8.26448 16.1183H7.61077ZM7.24704 15.7556C7.44761 15.7556 7.61022 15.9179 7.61077 16.1191L8.26448 16.1174C8.26296 15.5575 7.80963 15.1018 7.24704 15.1018V15.7556ZM6.92018 15.4286L6.92019 15.4296L7.5739 15.4278L7.57389 15.4268L6.92018 15.4286ZM16.2779 15.9788C16.334 15.8431 16.4666 15.7546 16.6135 15.7546V15.1009C16.2026 15.1009 15.8312 15.3483 15.6738 15.729L16.2779 15.9788ZM16.3573 16.3756C16.2525 16.2708 16.2216 16.1147 16.2779 15.9788L15.6738 15.729C15.5164 16.1095 15.6037 16.5465 15.895 16.8378L16.3573 16.3756ZM16.753 16.454C16.6167 16.5103 16.4607 16.479 16.3573 16.3756L15.895 16.8378C16.1856 17.1284 16.6227 17.2153 17.0029 17.058L16.753 16.454ZM16.9772 16.1183C16.9772 16.2652 16.8887 16.3978 16.753 16.454L17.0028 17.058C17.3835 16.9006 17.6309 16.5292 17.6309 16.1183H16.9772ZM16.6135 15.7556C16.8141 15.7556 16.9767 15.918 16.9772 16.1192L17.6309 16.1174C17.6294 15.5575 17.1761 15.1019 16.6135 15.1019V15.7556ZM16.2866 15.4286L16.2866 15.4297L16.9404 15.4279L16.9404 15.4268L16.2866 15.4286ZM11.9302 17.3281C11.439 17.3281 10.9973 17.0332 10.8095 16.58L10.2056 16.8303C10.4948 17.5281 11.175 17.9818 11.9302 17.9818V17.3281ZM13.1431 16.1169C13.1423 16.7857 12.5991 17.3281 11.9302 17.3281V17.9818C12.9597 17.9818 13.7956 17.1473 13.7968 16.1177L13.1431 16.1169ZM12.395 14.9956C12.848 15.1833 13.1431 15.6258 13.1431 16.1173H13.7968C13.7968 15.3624 13.3433 14.6809 12.6453 14.3916L12.395 14.9956ZM11.0723 15.2579C11.4195 14.9114 11.9417 14.8077 12.395 14.9956L12.6453 14.3916C11.9477 14.1026 11.1447 14.2622 10.6106 14.795L11.0723 15.2579ZM10.8095 16.5801C10.6216 16.1267 10.7254 15.6048 11.0725 15.2576L10.6103 14.7953C10.0761 15.3295 9.91648 16.1327 10.2056 16.8303L10.8095 16.5801ZM11.9302 15.1009C11.5192 15.1009 11.1479 15.3483 10.9905 15.729L11.5945 15.9788C11.6507 15.8431 11.7833 15.7546 11.9302 15.7546V15.1009ZM12.257 15.4288V15.4277H11.6033V15.4288H12.257ZM12.9466 16.1183C12.9466 15.5572 12.4912 15.1019 11.9302 15.1019V15.7556C12.1302 15.7556 12.2929 15.9183 12.2929 16.1183H12.9466ZM12.32 17.0579C12.6994 16.9003 12.9466 16.529 12.9466 16.1183H12.2929C12.2929 16.2654 12.2041 16.3981 12.0692 16.4541L12.32 17.0579ZM11.2113 16.8384C11.5025 17.1281 11.9392 17.2154 12.3195 17.058L12.0697 16.454C11.9337 16.5102 11.7772 16.4793 11.6723 16.375L11.2113 16.8384ZM10.9905 15.729C10.8331 16.1094 10.9204 16.546 11.2101 16.8372L11.6735 16.3762C11.5692 16.2713 11.5383 16.1148 11.5945 15.9788L10.9905 15.729ZM13.5065 20.5218C14.5501 19.5943 16.1224 19.5943 17.1661 20.5218L17.6003 20.0332C16.309 18.8856 14.3635 18.8856 13.0722 20.0332L13.5065 20.5218ZM10.3545 20.5146C11.2407 21.3554 12.629 21.3556 13.5144 20.5145L13.0642 20.0405C12.4312 20.6418 11.4386 20.642 10.8044 20.0404L10.3545 20.5146ZM6.70061 20.5221C7.74526 19.596 9.31797 19.596 10.3626 20.5221L10.7963 20.0329C9.50414 18.8874 7.55908 18.8874 6.26695 20.0329L6.70061 20.5221ZM5.12168 21.1452C5.71496 21.1535 6.28643 20.9257 6.71175 20.5118L6.25582 20.0433C5.95463 20.3364 5.5504 20.4974 5.13082 20.4916L5.12168 21.1452ZM4.88747 21.384C4.88747 21.2526 4.99479 21.1453 5.12625 21.1453V20.4915C4.63375 20.4915 4.23376 20.8915 4.23376 21.384H4.88747ZM5.12625 21.6228C4.99445 21.6228 4.88747 21.5161 4.88747 21.384H4.23376C4.23376 21.8778 4.63408 22.2765 5.12625 22.2765V21.6228ZM6.95614 20.9291C6.45466 21.3809 5.80273 21.6283 5.12893 21.6228L5.12358 22.2765C5.96107 22.2834 6.77097 21.9758 7.39371 21.4148L6.95614 20.9291ZM10.1105 20.9348C9.22436 20.0939 7.83614 20.094 6.94995 20.9348L7.3999 21.409C8.03388 20.8075 9.02663 20.8075 9.66047 21.409L10.1105 20.9348ZM13.7632 20.9275C12.7196 21.8542 11.1471 21.8544 10.1024 20.9274L9.66854 21.4164C10.9607 22.5629 12.9059 22.563 14.1973 21.4163L13.7632 20.9275ZM16.9134 20.9349C16.0281 20.094 14.6396 20.0938 13.755 20.9351L14.2055 21.4088C14.8375 20.8077 15.83 20.8075 16.4632 21.4089L16.9134 20.9349ZM18.7334 21.6219C18.0595 21.6275 17.4076 21.38 16.907 20.9291L16.4695 21.4148C17.0914 21.975 17.9013 22.2825 18.7388 22.2756L18.7334 21.6219ZM18.9749 21.3832C18.9749 21.5155 18.8684 21.6219 18.7361 21.6219V22.2756C19.2295 22.2756 19.6286 21.8765 19.6286 21.3832H18.9749ZM18.7361 21.1444C18.8681 21.1444 18.9749 21.2514 18.9749 21.3832H19.6286C19.6286 20.891 19.2298 20.4907 18.7361 20.4907V21.1444ZM17.155 20.5118C17.5792 20.9245 18.1488 21.1526 18.7407 21.1443L18.7315 20.4907C18.3141 20.4965 17.9115 20.3358 17.6109 20.0433L17.155 20.5118ZM17.3832 19.9507H17.383V20.6044H17.3832V19.9507Z\" fill=\"#F9F9F9\" mask=\"url(#path-1-outside-1_668_8639)\"/> </svg>'},wnGkvFu0i:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.95137 2.00006C10.6118 2.00002 15.859 1.99994 16.5002 2.00008C16.8559 2.00015 17.1724 2.22602 17.288 2.56241C17.4037 2.89879 17.2931 3.27152 17.0127 3.49037C16.9542 3.53602 16.5181 3.90855 16.5181 4.50008C16.5181 4.87555 16.6922 5.16136 16.8363 5.33332C18.3433 5.33332 19.566 5.33333 19.8335 5.3334C20.1869 5.33348 20.5019 5.55646 20.6193 5.88978C20.7368 6.22309 20.6312 6.59424 20.3559 6.81585C20.2728 6.88274 19.8514 7.24175 19.8514 7.8334C19.8514 8.42863 20.2598 8.77526 20.3484 8.84485C20.5493 9.00284 20.6667 9.24434 20.6667 9.49999V20.3333C20.6667 21.2538 19.9205 22 19 22H9.41667C8.26609 22 7.33334 21.0672 7.33334 19.9167V18.6667H6.08333C4.93275 18.6667 4 17.7339 4 16.5833V4.49999C4 3.11919 5.11931 2.00008 6.5 2.00008C6.69664 2.00008 7.22852 2.00007 7.95137 2.00006ZM5.66667 6.85783V16.5833C5.66667 16.8134 5.85323 17 6.08333 17H7.33334V7.83332C7.33334 7.54115 7.38345 7.2607 7.47555 7.00008H6.5C6.2078 7.00008 5.92731 6.94995 5.66667 6.85783ZM9.83334 5.33341H6.5C6.03979 5.33341 5.66667 4.96031 5.66667 4.49999C5.66667 4.03978 6.03967 3.66675 6.5 3.66675C6.69673 3.66675 7.22875 3.66674 7.95174 3.66673C9.84673 3.6667 13.0537 3.66665 14.9739 3.66667C14.8986 3.91526 14.8514 4.19338 14.8514 4.50008C14.8514 4.80688 14.8985 5.08493 14.9737 5.33334C13.6746 5.33335 12.3621 5.33337 11.3778 5.33339C10.6071 5.3334 10.0377 5.33341 9.83334 5.33341ZM9.83334 7.00008C9.37301 7.00008 9 7.37312 9 7.83332C9 8.29364 9.37312 8.66673 9.83334 8.66673L18.3044 8.66667C18.2307 8.41907 18.1848 8.14127 18.1848 7.8334C18.1848 7.52608 18.2316 7.24807 18.3063 7C16.4205 6.99998 13.2843 7.00003 11.3783 7.00006C10.6075 7.00007 10.0378 7.00008 9.83334 7.00008ZM19 10.3333L9.83334 10.3334C9.54114 10.3334 9.26065 10.2833 9 10.1911V19.9167C9 20.1468 9.18657 20.3333 9.41667 20.3333H19V10.3333Z\" fill=\"#F9F9F9\"/> </svg>'},wYvIBsVXu:{customStrokeWidth:.29,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <mask id=\"path-1-outside-1_669_9215\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"2.75\" width=\"24\" height=\"18\" fill=\"black\"> <rect fill=\"white\" y=\"2.75\" width=\"24\" height=\"18\"/> <path d=\"M20.0206 16.5837C21.6633 16.5837 23 15.247 23 13.6045C23 12.9633 22.7973 12.3516 22.4224 11.8439C22.7973 11.3616 23 10.7796 23 10.167C23 8.98281 22.2488 7.95536 21.1612 7.57719C21.1649 7.52317 21.1666 7.46988 21.1666 7.41683C21.1666 5.90023 19.9331 4.66671 18.4165 4.66671C17.4597 4.66671 16.5874 5.1522 16.0834 5.96525C15.9499 6.18037 16.0164 6.46297 16.2315 6.59644C16.4464 6.72967 16.729 6.66317 16.8627 6.4483C17.1983 5.90683 17.7792 5.58341 18.4167 5.58341C19.4275 5.58341 20.2501 6.40601 20.2501 7.41683C20.2501 7.5415 20.234 7.67522 20.2022 7.81407C20.1741 7.93654 20.1976 8.06513 20.2672 8.17C20.3369 8.27487 20.4462 8.34625 20.5704 8.36776C21.4472 8.52079 22.0838 9.27762 22.0838 10.167C22.0838 10.67 21.8758 11.1445 21.4978 11.5029C21.4086 11.5877 21.357 11.7051 21.3551 11.8283C21.3534 11.9515 21.401 12.0705 21.4878 12.158C21.8721 12.5462 22.0838 13.0601 22.0838 13.6047C22.0838 14.7422 21.1585 15.6672 20.0211 15.6672H18.8751V14.0235L20.1159 12.7826C20.2949 12.6037 20.2949 12.3135 20.1159 12.1346C19.937 11.9556 19.6468 11.9556 19.4679 12.1346L18.8753 12.7271V11.5418C18.8753 11.2888 18.67 11.0834 18.417 11.0834C18.1639 11.0834 17.9586 11.2888 17.9586 11.5418V15.667H17.4958C17.2428 15.667 17.0375 15.8723 17.0375 16.1253C17.0375 16.3783 17.2428 16.5837 17.4958 16.5837H17.9586V19.3338H12.4584V16.5837H13.8334C15.6025 16.5837 17.0419 15.1443 17.0419 13.3752C17.0419 12.5096 16.7026 11.7041 16.0978 11.1054C16.4134 10.6236 16.5835 10.0601 16.5835 9.4793C16.5835 8.25849 15.8433 7.17995 14.7391 6.72673C14.7465 6.64973 14.7501 6.57444 14.7501 6.50012C14.7501 4.98352 13.5166 3.75 12 3.75C10.4834 3.75 9.24988 4.98352 9.24988 6.50012C9.24988 6.57444 9.25354 6.64973 9.26088 6.72673C8.15667 7.17995 7.41646 8.25849 7.41646 9.4793C7.41646 10.0604 7.5866 10.6236 7.9022 11.1054C7.29741 11.7041 6.95811 12.5096 6.95811 13.3752C6.95811 15.1443 8.39746 16.5837 10.1666 16.5837H11.5416V19.3338H6.0414V16.5837H6.50416C6.75717 16.5837 6.96251 16.3783 6.96251 16.1253C6.96251 15.8723 6.75717 15.667 6.50416 15.667H6.0414V11.5418C6.0414 11.2888 5.83606 11.0834 5.58305 11.0834C5.33004 11.0834 5.12469 11.2888 5.12469 11.5418V13.6438L4.53213 13.0513C4.35319 12.8723 4.06303 12.8723 3.88408 13.0513C3.70514 13.2302 3.70514 13.5204 3.88408 13.6993L5.12494 14.9402V15.6672H3.97893C2.84148 15.6672 1.91622 14.7419 1.91622 13.6047C1.91622 13.0601 2.12792 12.5462 2.5122 12.158C2.59898 12.0705 2.64665 11.9517 2.64494 11.8283C2.64298 11.7051 2.5914 11.5877 2.50218 11.5029C2.12449 11.1445 1.91622 10.67 1.91622 10.167C1.91622 9.27762 2.55278 8.52079 3.42964 8.36776C3.55358 8.34625 3.6631 8.27462 3.73277 8.17C3.80244 8.06537 3.8259 7.93654 3.79779 7.81407C3.76601 7.67497 3.74988 7.5415 3.74988 7.41683C3.74988 6.40601 4.57247 5.58341 5.58329 5.58341C6.22059 5.58341 6.80141 5.90683 7.13729 6.4483C7.27101 6.66342 7.55385 6.7304 7.76848 6.59644C7.9836 6.46297 8.05009 6.18037 7.91662 5.96525C7.41231 5.1522 6.54033 4.66671 5.58354 4.66671C4.06694 4.66671 2.83341 5.90023 2.83341 7.41683C2.83341 7.46963 2.83513 7.52317 2.83879 7.57719C1.75121 7.95536 1 8.98281 1 10.167C1 10.7796 1.20265 11.3616 1.57765 11.8439C1.20265 12.3516 1 12.9633 1 13.6045C1 15.2472 2.33668 16.5837 3.97942 16.5837H5.12543V19.3338H1.91695C1.66394 19.3338 1.4586 19.5391 1.4586 19.7921C1.4586 20.0451 1.66394 20.2505 1.91695 20.2505H22.0845C22.3375 20.2505 22.5429 20.0451 22.5429 19.7921C22.5429 19.5391 22.3375 19.3338 22.0845 19.3338H18.876V16.5837H20.022H20.0206ZM10.1661 15.667C8.90251 15.667 7.87433 14.6388 7.87433 13.3752C7.87433 12.6455 8.21241 11.9757 8.80228 11.5371C8.90617 11.4601 8.97242 11.3425 8.98489 11.2142C8.9976 11.0856 8.95531 10.9575 8.86853 10.8617C8.52287 10.4803 8.33268 9.98923 8.33268 9.4793C8.33268 8.53472 8.97291 7.71335 9.88986 7.4821C10.1336 7.4205 10.2822 7.17433 10.2233 6.92988C10.1842 6.76829 10.1661 6.63164 10.1661 6.49988C10.1661 5.48906 10.9887 4.66646 11.9995 4.66646C13.0103 4.66646 13.8329 5.48906 13.8329 6.49988C13.8329 6.6314 13.8148 6.76829 13.7757 6.92988C13.7168 7.17433 13.8654 7.4205 14.1092 7.4821C15.0261 7.7136 15.6663 8.53497 15.6663 9.4793C15.6663 9.98923 15.4762 10.4803 15.1305 10.8617C15.0437 10.9575 15.0014 11.0856 15.0141 11.2142C15.0266 11.3428 15.0928 11.4601 15.1967 11.5371C15.7864 11.9757 16.1247 12.6457 16.1247 13.3752C16.1247 14.6388 15.0965 15.667 13.8329 15.667H12.4579V14.0232L13.6987 12.7824C13.8777 12.6034 13.8777 12.3133 13.6987 12.1343C13.5198 11.9554 13.2296 11.9554 13.0507 12.1343L12.4581 12.7269V11.5415C12.4581 11.2885 12.2528 11.0832 11.9998 11.0832C11.7467 11.0832 11.5414 11.2885 11.5414 11.5415V13.6436L10.9488 13.051C10.7699 12.8721 10.4797 12.8721 10.3008 13.051C10.1218 13.23 10.1218 13.5201 10.3008 13.6991L11.5416 14.9399V15.667H10.1661Z\"/> </mask> <path d=\"M20.0206 16.5837C21.6633 16.5837 23 15.247 23 13.6045C23 12.9633 22.7973 12.3516 22.4224 11.8439C22.7973 11.3616 23 10.7796 23 10.167C23 8.98281 22.2488 7.95536 21.1612 7.57719C21.1649 7.52317 21.1666 7.46988 21.1666 7.41683C21.1666 5.90023 19.9331 4.66671 18.4165 4.66671C17.4597 4.66671 16.5874 5.1522 16.0834 5.96525C15.9499 6.18037 16.0164 6.46297 16.2315 6.59644C16.4464 6.72967 16.729 6.66317 16.8627 6.4483C17.1983 5.90683 17.7792 5.58341 18.4167 5.58341C19.4275 5.58341 20.2501 6.40601 20.2501 7.41683C20.2501 7.5415 20.234 7.67522 20.2022 7.81407C20.1741 7.93654 20.1976 8.06513 20.2672 8.17C20.3369 8.27487 20.4462 8.34625 20.5704 8.36776C21.4472 8.52079 22.0838 9.27762 22.0838 10.167C22.0838 10.67 21.8758 11.1445 21.4978 11.5029C21.4086 11.5877 21.357 11.7051 21.3551 11.8283C21.3534 11.9515 21.401 12.0705 21.4878 12.158C21.8721 12.5462 22.0838 13.0601 22.0838 13.6047C22.0838 14.7422 21.1585 15.6672 20.0211 15.6672H18.8751V14.0235L20.1159 12.7826C20.2949 12.6037 20.2949 12.3135 20.1159 12.1346C19.937 11.9556 19.6468 11.9556 19.4679 12.1346L18.8753 12.7271V11.5418C18.8753 11.2888 18.67 11.0834 18.417 11.0834C18.1639 11.0834 17.9586 11.2888 17.9586 11.5418V15.667H17.4958C17.2428 15.667 17.0375 15.8723 17.0375 16.1253C17.0375 16.3783 17.2428 16.5837 17.4958 16.5837H17.9586V19.3338H12.4584V16.5837H13.8334C15.6025 16.5837 17.0419 15.1443 17.0419 13.3752C17.0419 12.5096 16.7026 11.7041 16.0978 11.1054C16.4134 10.6236 16.5835 10.0601 16.5835 9.4793C16.5835 8.25849 15.8433 7.17995 14.7391 6.72673C14.7465 6.64973 14.7501 6.57444 14.7501 6.50012C14.7501 4.98352 13.5166 3.75 12 3.75C10.4834 3.75 9.24988 4.98352 9.24988 6.50012C9.24988 6.57444 9.25354 6.64973 9.26088 6.72673C8.15667 7.17995 7.41646 8.25849 7.41646 9.4793C7.41646 10.0604 7.5866 10.6236 7.9022 11.1054C7.29741 11.7041 6.95811 12.5096 6.95811 13.3752C6.95811 15.1443 8.39746 16.5837 10.1666 16.5837H11.5416V19.3338H6.0414V16.5837H6.50416C6.75717 16.5837 6.96251 16.3783 6.96251 16.1253C6.96251 15.8723 6.75717 15.667 6.50416 15.667H6.0414V11.5418C6.0414 11.2888 5.83606 11.0834 5.58305 11.0834C5.33004 11.0834 5.12469 11.2888 5.12469 11.5418V13.6438L4.53213 13.0513C4.35319 12.8723 4.06303 12.8723 3.88408 13.0513C3.70514 13.2302 3.70514 13.5204 3.88408 13.6993L5.12494 14.9402V15.6672H3.97893C2.84148 15.6672 1.91622 14.7419 1.91622 13.6047C1.91622 13.0601 2.12792 12.5462 2.5122 12.158C2.59898 12.0705 2.64665 11.9517 2.64494 11.8283C2.64298 11.7051 2.5914 11.5877 2.50218 11.5029C2.12449 11.1445 1.91622 10.67 1.91622 10.167C1.91622 9.27762 2.55278 8.52079 3.42964 8.36776C3.55358 8.34625 3.6631 8.27462 3.73277 8.17C3.80244 8.06537 3.8259 7.93654 3.79779 7.81407C3.76601 7.67497 3.74988 7.5415 3.74988 7.41683C3.74988 6.40601 4.57247 5.58341 5.58329 5.58341C6.22059 5.58341 6.80141 5.90683 7.13729 6.4483C7.27101 6.66342 7.55385 6.7304 7.76848 6.59644C7.9836 6.46297 8.05009 6.18037 7.91662 5.96525C7.41231 5.1522 6.54033 4.66671 5.58354 4.66671C4.06694 4.66671 2.83341 5.90023 2.83341 7.41683C2.83341 7.46963 2.83513 7.52317 2.83879 7.57719C1.75121 7.95536 1 8.98281 1 10.167C1 10.7796 1.20265 11.3616 1.57765 11.8439C1.20265 12.3516 1 12.9633 1 13.6045C1 15.2472 2.33668 16.5837 3.97942 16.5837H5.12543V19.3338H1.91695C1.66394 19.3338 1.4586 19.5391 1.4586 19.7921C1.4586 20.0451 1.66394 20.2505 1.91695 20.2505H22.0845C22.3375 20.2505 22.5429 20.0451 22.5429 19.7921C22.5429 19.5391 22.3375 19.3338 22.0845 19.3338H18.876V16.5837H20.022H20.0206ZM10.1661 15.667C8.90251 15.667 7.87433 14.6388 7.87433 13.3752C7.87433 12.6455 8.21241 11.9757 8.80228 11.5371C8.90617 11.4601 8.97242 11.3425 8.98489 11.2142C8.9976 11.0856 8.95531 10.9575 8.86853 10.8617C8.52287 10.4803 8.33268 9.98923 8.33268 9.4793C8.33268 8.53472 8.97291 7.71335 9.88986 7.4821C10.1336 7.4205 10.2822 7.17433 10.2233 6.92988C10.1842 6.76829 10.1661 6.63164 10.1661 6.49988C10.1661 5.48906 10.9887 4.66646 11.9995 4.66646C13.0103 4.66646 13.8329 5.48906 13.8329 6.49988C13.8329 6.6314 13.8148 6.76829 13.7757 6.92988C13.7168 7.17433 13.8654 7.4205 14.1092 7.4821C15.0261 7.7136 15.6663 8.53497 15.6663 9.4793C15.6663 9.98923 15.4762 10.4803 15.1305 10.8617C15.0437 10.9575 15.0014 11.0856 15.0141 11.2142C15.0266 11.3428 15.0928 11.4601 15.1967 11.5371C15.7864 11.9757 16.1247 12.6457 16.1247 13.3752C16.1247 14.6388 15.0965 15.667 13.8329 15.667H12.4579V14.0232L13.6987 12.7824C13.8777 12.6034 13.8777 12.3133 13.6987 12.1343C13.5198 11.9554 13.2296 11.9554 13.0507 12.1343L12.4581 12.7269V11.5415C12.4581 11.2885 12.2528 11.0832 11.9998 11.0832C11.7467 11.0832 11.5414 11.2885 11.5414 11.5415V13.6436L10.9488 13.051C10.7699 12.8721 10.4797 12.8721 10.3008 13.051C10.1218 13.23 10.1218 13.5201 10.3008 13.6991L11.5416 14.9399V15.667H10.1661Z\" fill=\"#F9F9F9\"/> <path d=\"M20.0206 16.5837C21.6633 16.5837 23 15.247 23 13.6045C23 12.9633 22.7973 12.3516 22.4224 11.8439C22.7973 11.3616 23 10.7796 23 10.167C23 8.98281 22.2488 7.95536 21.1612 7.57719C21.1649 7.52317 21.1666 7.46988 21.1666 7.41683C21.1666 5.90023 19.9331 4.66671 18.4165 4.66671C17.4597 4.66671 16.5874 5.1522 16.0834 5.96525C15.9499 6.18037 16.0164 6.46297 16.2315 6.59644C16.4464 6.72967 16.729 6.66317 16.8627 6.4483C17.1983 5.90683 17.7792 5.58341 18.4167 5.58341C19.4275 5.58341 20.2501 6.40601 20.2501 7.41683C20.2501 7.5415 20.234 7.67522 20.2022 7.81407C20.1741 7.93654 20.1976 8.06513 20.2672 8.17C20.3369 8.27487 20.4462 8.34625 20.5704 8.36776C21.4472 8.52079 22.0838 9.27762 22.0838 10.167C22.0838 10.67 21.8758 11.1445 21.4978 11.5029C21.4086 11.5877 21.357 11.7051 21.3551 11.8283C21.3534 11.9515 21.401 12.0705 21.4878 12.158C21.8721 12.5462 22.0838 13.0601 22.0838 13.6047C22.0838 14.7422 21.1585 15.6672 20.0211 15.6672H18.8751V14.0235L20.1159 12.7826C20.2949 12.6037 20.2949 12.3135 20.1159 12.1346C19.937 11.9556 19.6468 11.9556 19.4679 12.1346L18.8753 12.7271V11.5418C18.8753 11.2888 18.67 11.0834 18.417 11.0834C18.1639 11.0834 17.9586 11.2888 17.9586 11.5418V15.667H17.4958C17.2428 15.667 17.0375 15.8723 17.0375 16.1253C17.0375 16.3783 17.2428 16.5837 17.4958 16.5837H17.9586V19.3338H12.4584V16.5837H13.8334C15.6025 16.5837 17.0419 15.1443 17.0419 13.3752C17.0419 12.5096 16.7026 11.7041 16.0978 11.1054C16.4134 10.6236 16.5835 10.0601 16.5835 9.4793C16.5835 8.25849 15.8433 7.17995 14.7391 6.72673C14.7465 6.64973 14.7501 6.57444 14.7501 6.50012C14.7501 4.98352 13.5166 3.75 12 3.75C10.4834 3.75 9.24988 4.98352 9.24988 6.50012C9.24988 6.57444 9.25354 6.64973 9.26088 6.72673C8.15667 7.17995 7.41646 8.25849 7.41646 9.4793C7.41646 10.0604 7.5866 10.6236 7.9022 11.1054C7.29741 11.7041 6.95811 12.5096 6.95811 13.3752C6.95811 15.1443 8.39746 16.5837 10.1666 16.5837H11.5416V19.3338H6.0414V16.5837H6.50416C6.75717 16.5837 6.96251 16.3783 6.96251 16.1253C6.96251 15.8723 6.75717 15.667 6.50416 15.667H6.0414V11.5418C6.0414 11.2888 5.83606 11.0834 5.58305 11.0834C5.33004 11.0834 5.12469 11.2888 5.12469 11.5418V13.6438L4.53213 13.0513C4.35319 12.8723 4.06303 12.8723 3.88408 13.0513C3.70514 13.2302 3.70514 13.5204 3.88408 13.6993L5.12494 14.9402V15.6672H3.97893C2.84148 15.6672 1.91622 14.7419 1.91622 13.6047C1.91622 13.0601 2.12792 12.5462 2.5122 12.158C2.59898 12.0705 2.64665 11.9517 2.64494 11.8283C2.64298 11.7051 2.5914 11.5877 2.50218 11.5029C2.12449 11.1445 1.91622 10.67 1.91622 10.167C1.91622 9.27762 2.55278 8.52079 3.42964 8.36776C3.55358 8.34625 3.6631 8.27462 3.73277 8.17C3.80244 8.06537 3.8259 7.93654 3.79779 7.81407C3.76601 7.67497 3.74988 7.5415 3.74988 7.41683C3.74988 6.40601 4.57247 5.58341 5.58329 5.58341C6.22059 5.58341 6.80141 5.90683 7.13729 6.4483C7.27101 6.66342 7.55385 6.7304 7.76848 6.59644C7.9836 6.46297 8.05009 6.18037 7.91662 5.96525C7.41231 5.1522 6.54033 4.66671 5.58354 4.66671C4.06694 4.66671 2.83341 5.90023 2.83341 7.41683C2.83341 7.46963 2.83513 7.52317 2.83879 7.57719C1.75121 7.95536 1 8.98281 1 10.167C1 10.7796 1.20265 11.3616 1.57765 11.8439C1.20265 12.3516 1 12.9633 1 13.6045C1 15.2472 2.33668 16.5837 3.97942 16.5837H5.12543V19.3338H1.91695C1.66394 19.3338 1.4586 19.5391 1.4586 19.7921C1.4586 20.0451 1.66394 20.2505 1.91695 20.2505H22.0845C22.3375 20.2505 22.5429 20.0451 22.5429 19.7921C22.5429 19.5391 22.3375 19.3338 22.0845 19.3338H18.876V16.5837H20.022H20.0206ZM10.1661 15.667C8.90251 15.667 7.87433 14.6388 7.87433 13.3752C7.87433 12.6455 8.21241 11.9757 8.80228 11.5371C8.90617 11.4601 8.97242 11.3425 8.98489 11.2142C8.9976 11.0856 8.95531 10.9575 8.86853 10.8617C8.52287 10.4803 8.33268 9.98923 8.33268 9.4793C8.33268 8.53472 8.97291 7.71335 9.88986 7.4821C10.1336 7.4205 10.2822 7.17433 10.2233 6.92988C10.1842 6.76829 10.1661 6.63164 10.1661 6.49988C10.1661 5.48906 10.9887 4.66646 11.9995 4.66646C13.0103 4.66646 13.8329 5.48906 13.8329 6.49988C13.8329 6.6314 13.8148 6.76829 13.7757 6.92988C13.7168 7.17433 13.8654 7.4205 14.1092 7.4821C15.0261 7.7136 15.6663 8.53497 15.6663 9.4793C15.6663 9.98923 15.4762 10.4803 15.1305 10.8617C15.0437 10.9575 15.0014 11.0856 15.0141 11.2142C15.0266 11.3428 15.0928 11.4601 15.1967 11.5371C15.7864 11.9757 16.1247 12.6457 16.1247 13.3752C16.1247 14.6388 15.0965 15.667 13.8329 15.667H12.4579V14.0232L13.6987 12.7824C13.8777 12.6034 13.8777 12.3133 13.6987 12.1343C13.5198 11.9554 13.2296 11.9554 13.0507 12.1343L12.4581 12.7269V11.5415C12.4581 11.2885 12.2528 11.0832 11.9998 11.0832C11.7467 11.0832 11.5414 11.2885 11.5414 11.5415V13.6436L10.9488 13.051C10.7699 12.8721 10.4797 12.8721 10.3008 13.051C10.1218 13.23 10.1218 13.5201 10.3008 13.6991L11.5416 14.9399V15.667H10.1661Z\" stroke=\"#F9F9F9\" stroke-width=\"0.66\" mask=\"url(#path-1-outside-1_669_9215)\"/> </svg>'},Xa5FaZUpH:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6 5C5.44772 5 5 5.44772 5 6V10C5 10.5523 5.44772 11 6 11H10C10.5523 11 11 10.5523 11 10V6C11 5.44772 10.5523 5 10 5H6Z\" fill=\"#F9F9F9\"/> <path d=\"M6 13C5.44772 13 5 13.4477 5 14V18C5 18.5523 5.44772 19 6 19H10C10.5523 19 11 18.5523 11 18V14C11 13.4477 10.5523 13 10 13H6Z\" fill=\"#F9F9F9\"/> <path d=\"M13 6C13 5.44772 13.4477 5 14 5H18C18.5523 5 19 5.44772 19 6V10C19 10.5523 18.5523 11 18 11H14C13.4477 11 13 10.5523 13 10V6Z\" fill=\"#F9F9F9\"/> <path d=\"M14 13C13.4477 13 13 13.4477 13 14V18C13 18.5523 13.4477 19 14 19H18C18.5523 19 19 18.5523 19 18V14C19 13.4477 18.5523 13 18 13H14Z\" fill=\"#F9F9F9\"/> </svg>'},XT8HNTYgw:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M3.97483 10.0544L7.26403 10.0535C6.93001 10.4576 6.71243 10.9615 6.6627 11.5138L3.97483 11.5136C3.84052 11.5136 3.73163 11.6224 3.73163 11.7568V14.9171C3.73163 16.2609 4.82098 17.3502 6.16476 17.3502C6.35931 17.3502 6.54852 17.3273 6.72986 17.2842C6.81227 17.7744 6.96274 18.2419 7.17025 18.677C6.85011 18.7636 6.51277 18.8093 6.16476 18.8093C4.01512 18.8093 2.27248 17.0667 2.27248 14.9171V11.7568C2.27248 10.8166 3.03465 10.0544 3.97483 10.0544ZM16.7421 10.0535L20.0255 10.0544C20.9657 10.0544 21.7279 10.8166 21.7279 11.7568V14.9183C21.7279 17.0672 19.9857 18.8093 17.8368 18.8093C17.4901 18.8093 17.1539 18.764 16.834 18.6789C17.043 18.2429 17.1936 17.7754 17.2774 17.2851C17.4566 17.3278 17.6441 17.3502 17.8368 17.3502C19.1799 17.3502 20.2687 16.2614 20.2687 14.9183V11.7568C20.2687 11.6224 20.1599 11.5136 20.0255 11.5136L17.3434 11.5138C17.2937 10.9615 17.0761 10.4576 16.7421 10.0535ZM18.3232 4.21779C19.6663 4.21779 20.7551 5.3066 20.7551 6.64972C20.7551 7.99283 19.6663 9.08164 18.3232 9.08164C16.9801 9.08164 15.8912 7.99283 15.8912 6.64972C15.8912 5.3066 16.9801 4.21779 18.3232 4.21779ZM5.67717 4.21779C7.02028 4.21779 8.10909 5.3066 8.10909 6.64972C8.10909 7.99283 7.02028 9.08164 5.67717 9.08164C4.33406 9.08164 3.24525 7.99283 3.24525 6.64972C3.24525 5.3066 4.33406 4.21779 5.67717 4.21779ZM18.3232 5.67695C17.7859 5.67695 17.3504 6.11247 17.3504 6.64972C17.3504 7.18696 17.7859 7.62248 18.3232 7.62248C18.8604 7.62248 19.2959 7.18696 19.2959 6.64972C19.2959 6.11247 18.8604 5.67695 18.3232 5.67695ZM5.67717 5.67695C5.13993 5.67695 4.7044 6.11247 4.7044 6.64972C4.7044 7.18696 5.13993 7.62248 5.67717 7.62248C6.21441 7.62248 6.64994 7.18696 6.64994 6.64972C6.64994 6.11247 6.21441 5.67695 5.67717 5.67695Z\" fill=\"#F9F9F9\" fill-opacity=\"0.3\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.92629 18.7344C6.68027 18.7837 6.42551 18.8093 6.16476 18.8093C4.01512 18.8093 2.27248 17.0667 2.27248 14.9171V11.7568C2.27248 10.8166 3.03465 10.0544 3.97483 10.0544L7.26403 10.0535C7.19946 10.1316 7.13924 10.2135 7.08374 10.2987C6.85216 10.6542 6.70282 11.0683 6.6627 11.5138L3.97483 11.5136C3.84052 11.5136 3.73163 11.6224 3.73163 11.7568V14.9171C3.73163 16.2609 4.82098 17.3502 6.16476 17.3502C6.27462 17.3502 6.38278 17.3429 6.48878 17.3288C6.57049 17.3179 6.65092 17.303 6.72986 17.2842C6.74347 17.3652 6.75894 17.4455 6.77621 17.5251C6.84558 17.8452 6.94412 18.1545 7.06858 18.4504C7.10075 18.5268 7.13466 18.6024 7.17025 18.677C7.08997 18.6987 7.00862 18.7179 6.92629 18.7344ZM3.97483 9.80927L7.78479 9.80821L7.45298 10.2097C7.14944 10.5769 6.952 11.0344 6.90685 11.5357L6.88676 11.7589L3.97677 11.7587V14.9171C3.97677 16.1255 4.95636 17.105 6.16476 17.105C6.34004 17.105 6.51024 17.0844 6.67319 17.0457L6.92816 16.9851L6.97161 17.2436C7.05014 17.7107 7.19357 18.1564 7.39151 18.5715L7.51807 18.8369L7.23424 18.9137C6.89316 19.0059 6.5343 19.0545 6.16476 19.0545C3.87974 19.0545 2.02734 17.2021 2.02734 14.9171V11.7568C2.02734 10.6812 2.89929 9.80931 3.97483 9.80927ZM16.2214 9.80821L20.0255 9.80927C21.101 9.80931 21.973 10.6812 21.973 11.7568V14.9183C21.973 17.2026 20.1211 19.0545 17.8368 19.0545C17.4686 19.0545 17.1113 19.0063 16.7709 18.9158L16.485 18.8397L16.6129 18.5729C16.8122 18.1572 16.9558 17.7114 17.0358 17.2438L17.0799 16.986L17.3343 17.0466C17.4947 17.0849 17.6631 17.105 17.8368 17.105C19.0445 17.105 20.0236 16.126 20.0236 14.9183V11.7587L17.1193 11.7589L17.0992 11.5357C17.0541 11.0344 16.8567 10.5769 16.5532 10.2096L16.2214 9.80821ZM20.0255 11.5136C20.1599 11.5136 20.2687 11.6224 20.2687 11.7568V14.9183C20.2687 16.2614 19.1799 17.3502 17.8368 17.3502C17.7289 17.3502 17.6226 17.3432 17.5185 17.3295C17.4367 17.3187 17.3563 17.3039 17.2774 17.2851C17.2636 17.366 17.2479 17.4463 17.2305 17.5259C17.1604 17.8462 17.0615 18.1558 16.9362 18.4522C16.9038 18.5286 16.8698 18.6042 16.834 18.6789C16.9144 18.7003 16.9959 18.7192 17.0784 18.7355C17.3237 18.7839 17.5773 18.8093 17.8368 18.8093C19.9857 18.8093 21.7279 17.0672 21.7279 14.9183V11.7568C21.7279 10.8166 20.9657 10.0544 20.0255 10.0544L16.7421 10.0535C16.8067 10.1316 16.8669 10.2135 16.9224 10.2987C17.1539 10.6542 17.3033 11.0683 17.3434 11.5138L20.0255 11.5136ZM18.3232 3.97266C19.8017 3.97266 21.0002 5.17122 21.0002 6.64972C21.0002 8.12821 19.8017 9.32678 18.3232 9.32678C16.8447 9.32678 15.6461 8.12821 15.6461 6.64972C15.6461 5.17122 16.8447 3.97266 18.3232 3.97266ZM5.67717 3.97266C7.15567 3.97266 8.35423 5.17122 8.35423 6.64972C8.35423 8.12821 7.15567 9.32678 5.67717 9.32678C4.19867 9.32678 3.00011 8.12821 3.00011 6.64972C3.00011 5.17122 4.19867 3.97266 5.67717 3.97266ZM18.3232 5.92208C17.9213 5.92208 17.5955 6.24786 17.5955 6.64972C17.5955 7.05157 17.9213 7.37735 18.3232 7.37735C18.725 7.37735 19.0508 7.05157 19.0508 6.64972C19.0508 6.24786 18.725 5.92208 18.3232 5.92208ZM5.67717 5.92208C5.27532 5.92208 4.94954 6.24786 4.94954 6.64972C4.94954 7.05157 5.27532 7.37735 5.67717 7.37735C6.07903 7.37735 6.4048 7.05157 6.4048 6.64972C6.4048 6.24786 6.07903 5.92208 5.67717 5.92208ZM20.7551 6.64972C20.7551 5.3066 19.6663 4.21779 18.3232 4.21779C16.9801 4.21779 15.8912 5.3066 15.8912 6.64972C15.8912 7.99283 16.9801 9.08164 18.3232 9.08164C19.6663 9.08164 20.7551 7.99283 20.7551 6.64972ZM8.10909 6.64972C8.10909 5.3066 7.02028 4.21779 5.67717 4.21779C4.33406 4.21779 3.24525 5.3066 3.24525 6.64972C3.24525 7.99283 4.33406 9.08164 5.67717 9.08164C7.02028 9.08164 8.10909 7.99283 8.10909 6.64972ZM17.3504 6.64972C17.3504 6.11247 17.7859 5.67695 18.3232 5.67695C18.8604 5.67695 19.2959 6.11247 19.2959 6.64972C19.2959 7.18696 18.8604 7.62248 18.3232 7.62248C17.7859 7.62248 17.3504 7.18696 17.3504 6.64972ZM4.7044 6.64972C4.7044 6.11247 5.13993 5.67695 5.67717 5.67695C6.21441 5.67695 6.64994 6.11247 6.64994 6.64972C6.64994 7.18696 6.21441 7.62248 5.67717 7.62248C5.13993 7.62248 4.7044 7.18696 4.7044 6.64972Z\" fill=\"#F9F9F9\" fill-opacity=\"0.3\"/> <path d=\"M14.6792 10.0545C15.6193 10.0545 16.3815 10.8167 16.3815 11.7569V16.3765C16.3815 18.7947 14.4212 20.755 12.0031 20.755C9.58489 20.755 7.62458 18.7947 7.62458 16.3765V11.7569C7.62458 10.8167 8.38674 10.0545 9.32692 10.0545H14.6792ZM14.6792 11.5137H9.32692C9.19261 11.5137 9.08373 11.6225 9.08373 11.7569V16.3765C9.08373 17.9888 10.3907 19.2958 12.0031 19.2958C13.6153 19.2958 14.9224 17.9888 14.9224 16.3765V11.7569C14.9224 11.6225 14.8135 11.5137 14.6792 11.5137ZM12.0002 3.24514C13.6119 3.24514 14.9185 4.55171 14.9185 6.16344C14.9185 7.77518 13.6119 9.08175 12.0002 9.08175C10.3884 9.08175 9.08185 7.77518 9.08185 6.16344C9.08185 4.55171 10.3884 3.24514 12.0002 3.24514ZM12.0002 4.70429C11.1943 4.70429 10.541 5.35757 10.541 6.16344C10.541 6.96931 11.1943 7.6226 12.0002 7.6226C12.806 7.6226 13.4593 6.96931 13.4593 6.16344C13.4593 5.35757 12.806 4.70429 12.0002 4.70429Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6792 9.80938C15.7547 9.80938 16.6266 10.6813 16.6266 11.7569V16.3765C16.6266 18.93 14.5566 21.0001 12.0031 21.0001C9.44951 21.0001 7.37944 18.93 7.37944 16.3765V11.7569C7.37944 10.6813 8.25136 9.80938 9.32692 9.80938H14.6792ZM9.32887 11.7588V16.3765C9.32887 17.8534 10.5261 19.0507 12.0031 19.0507C13.48 19.0507 14.6772 17.8534 14.6772 16.3765V11.7588H9.32887ZM12.0002 3C13.7473 3 15.1636 4.41633 15.1636 6.16344C15.1636 7.91056 13.7473 9.32689 12.0002 9.32689C10.253 9.32689 8.83671 7.91056 8.83671 6.16344C8.83671 4.41633 10.253 3 12.0002 3ZM12.0002 4.94943C11.3297 4.94943 10.7861 5.49296 10.7861 6.16344C10.7861 6.83393 11.3297 7.37746 12.0002 7.37746C12.6706 7.37746 13.2142 6.83393 13.2142 6.16344C13.2142 5.49296 12.6706 4.94943 12.0002 4.94943ZM16.3815 11.7569C16.3815 10.8167 15.6193 10.0545 14.6792 10.0545H9.32692C8.38674 10.0545 7.62458 10.8167 7.62458 11.7569V16.3765C7.62458 18.7947 9.58489 20.755 12.0031 20.755C14.4212 20.755 16.3815 18.7947 16.3815 16.3765V11.7569ZM9.32692 11.5137H14.6792C14.8135 11.5137 14.9224 11.6225 14.9224 11.7569V16.3765C14.9224 17.9888 13.6153 19.2958 12.0031 19.2958C10.3907 19.2958 9.08373 17.9888 9.08373 16.3765V11.7569C9.08373 11.6225 9.19261 11.5137 9.32692 11.5137ZM14.9185 6.16344C14.9185 4.55171 13.6119 3.24514 12.0002 3.24514C10.3884 3.24514 9.08185 4.55171 9.08185 6.16344C9.08185 7.77518 10.3884 9.08175 12.0002 9.08175C13.6119 9.08175 14.9185 7.77518 14.9185 6.16344ZM10.541 6.16344C10.541 5.35757 11.1943 4.70429 12.0002 4.70429C12.806 4.70429 13.4593 5.35757 13.4593 6.16344C13.4593 6.96931 12.806 7.6226 12.0002 7.6226C11.1943 7.6226 10.541 6.96931 10.541 6.16344Z\" fill=\"#F9F9F9\"/> </svg>'},XVdNhsPs6:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.4027 21.0806C11.6001 21.0934 11.7993 21.0999 11.9999 21.0999C17.0257 21.0999 21.0999 17.0257 21.0999 11.9999C21.0999 6.97411 17.0257 2.8999 11.9999 2.8999C6.97411 2.8999 2.8999 6.97411 2.8999 11.9999C2.8999 16.5744 6.2752 20.3605 10.6712 21.0036C10.8011 21.0653 10.9465 21.0999 11.0999 21.0999C11.201 21.0999 11.302 21.0935 11.4027 21.0806ZM11.4401 4.92165C11.2862 4.93366 11.1336 4.95057 10.9827 4.97223L10.9681 4.99009C10.2752 5.82161 8.92129 7.93826 8.47024 9.74246C8.28931 10.4662 7.96968 11.0516 7.48669 11.4516C6.99555 11.8584 6.43712 11.9893 5.9443 11.9863C5.56899 11.984 5.21223 11.9048 4.90268 11.7993C4.90083 11.866 4.8999 11.9328 4.8999 11.9999C4.8999 12.6802 4.99557 13.3381 5.17419 13.9609C5.23464 14.0161 5.28914 14.0796 5.33591 14.1509L5.3371 14.1518C5.35153 14.1629 5.40591 14.2048 5.53307 14.2589C5.7254 14.3409 5.99624 14.4119 6.3117 14.4456C6.97504 14.5163 7.59588 14.4009 7.94535 14.1679C8.3243 13.9152 8.59457 13.4731 8.80605 12.6942C8.95449 12.1474 9.04539 11.5635 9.14971 10.8935C9.20088 10.5649 9.25529 10.2154 9.32129 9.83948C9.60115 8.24557 10.0657 6.40987 11.4401 4.92165ZM5.25335 9.7815C5.70759 8.39924 6.57479 7.20434 7.709 6.34272C7.22013 7.25629 6.7754 8.27559 6.52995 9.25739C6.4196 9.6988 6.27484 9.85842 6.21103 9.91126C6.15537 9.95736 6.08458 9.98707 5.95648 9.98629C5.81299 9.98542 5.63499 9.94392 5.44701 9.869C5.37589 9.84065 5.31047 9.81038 5.25335 9.7815ZM11.2462 19.0604C9.32354 18.8575 7.6297 17.8873 6.47662 16.4616C7.31749 16.4942 8.28705 16.3438 9.05475 15.832C10.0258 15.1846 10.4743 14.183 10.7362 13.2182C10.9143 12.5621 11.0338 11.7975 11.1479 11.0675C11.1953 10.764 11.2418 10.4666 11.2912 10.1853C11.6446 8.17243 12.2146 6.3789 14.2272 5.25626C14.7447 5.42709 15.2358 5.65582 15.693 5.93479C15.069 6.37257 14.5837 6.89783 14.2149 7.49439C13.6289 8.44245 13.3777 9.50498 13.2568 10.5331C13.1606 11.3501 13.1414 12.2122 13.1235 13.0171C13.1192 13.2114 13.1149 13.4028 13.1097 13.5889C13.0817 14.5828 13.0261 15.4719 12.8298 16.2574C12.2921 18.408 11.5563 18.9336 11.2462 19.0604ZM17.3114 7.28827C18.4241 8.54177 19.0999 10.1919 19.0999 11.9999C19.0999 15.2155 16.9623 17.9318 14.0306 18.8053C14.318 18.2327 14.5688 17.5473 14.77 16.7424C15.0237 15.7279 15.0806 14.6483 15.1089 13.6452C15.1149 13.4314 15.1197 13.2218 15.1243 13.0158C15.1424 12.2205 15.1591 11.4801 15.2431 10.7667C15.3471 9.88232 15.5459 9.14486 15.9161 8.54604C16.2109 8.06913 16.6413 7.63651 17.3114 7.28827Z\" fill=\"#F9F9F9\"/> </svg>'},XZ70CM0Gg:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.82827 1.68648C7.47535 1.0394 8.52446 1.0394 9.17154 1.68648L22.5764 15.0914C23.2235 15.7385 23.2235 16.7876 22.5764 17.4346L16.6033 23.4077C15.9563 24.0548 14.9072 24.0548 14.2601 23.4077L0.855179 10.0028C0.208105 9.35576 0.208104 8.30665 0.855179 7.65957L6.82827 1.68648ZM7.9999 3.34327L2.51197 8.8312L15.4317 21.7509L20.9196 16.263L7.9999 3.34327Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.7109 17.9774C16.0466 14.8804 14.2429 10.2112 13.9215 8.22744L14.57 8.12238C14.8677 9.95995 16.5894 14.4522 21.0743 17.4302L20.7109 17.9774Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5286 6.98186C10.5779 6.09937 10.6302 5.19785 10.6503 4.85728L11.3061 4.89586C11.2861 5.23596 11.2337 6.13681 11.1845 7.01851C11.1598 7.4595 11.3464 7.84712 11.6145 8.19116C11.8122 8.44476 12.026 8.64365 12.2161 8.82052C12.2933 8.89226 12.3665 8.96038 12.4332 9.02705C12.7575 9.35139 12.7625 9.81686 12.4889 10.1541C12.2256 10.4785 11.7505 10.6429 11.1699 10.584C10.6208 10.5283 9.78159 10.3181 8.94011 9.90936C8.09846 9.50055 7.22759 8.88007 6.64929 7.98725C6.18311 7.26752 5.97226 6.72512 5.80996 6.29651L5.80641 6.28713C5.64517 5.86132 5.5473 5.60283 5.31999 5.35641C5.28789 5.3216 5.24457 5.30381 5.18644 5.30764C5.12399 5.31177 5.05139 5.3421 4.99356 5.39993L4.57739 5.8161C4.43397 5.95951 4.43039 6.25325 4.62074 6.44185C4.99183 6.80954 5.4336 7.33332 5.81597 7.99744C6.57517 9.31605 7.95301 11.1049 11.2288 12.2748C11.5812 12.4006 11.9118 12.516 12.2225 12.6244C13.3714 13.0254 14.2481 13.3313 14.9497 13.7215C15.8748 14.236 16.5063 14.8983 17.1323 16.0749C17.6065 16.9662 18.0142 17.7629 18.331 18.3886C18.4357 18.5954 18.5299 18.7825 18.6132 18.9478C18.7836 19.286 18.908 19.5328 18.9814 19.67L18.4022 19.98C18.3249 19.8354 18.1942 19.5761 18.0202 19.2307C17.9378 19.0672 17.8456 18.8844 17.7449 18.6854C17.4291 18.0618 17.0237 17.2693 16.5524 16.3835C15.9745 15.2974 15.4256 14.7378 14.6305 14.2957C13.9828 13.9355 13.1778 13.6543 12.042 13.2576C11.7244 13.1466 11.3809 13.0267 11.0078 12.8934C7.55701 11.661 6.06745 9.75083 5.24665 8.32523C4.8981 7.71985 4.49476 7.24182 4.15836 6.90852C3.75692 6.51077 3.6672 5.79724 4.11286 5.35157L4.52903 4.9354C4.84428 4.62016 5.42689 4.50339 5.80287 4.91099C6.11795 5.25257 6.25672 5.62005 6.40351 6.00879C6.41042 6.0271 6.41736 6.04546 6.42433 6.06387C6.58031 6.47581 6.77179 6.96796 7.20067 7.63011C7.69265 8.38966 8.45183 8.94186 9.22713 9.31843C10.0026 9.6951 10.7673 9.8829 11.2361 9.93042C11.6734 9.97473 11.8975 9.84032 11.9788 9.74013C12.0497 9.65268 12.0447 9.56762 11.9686 9.49157C11.9267 9.44967 11.8711 9.39795 11.8065 9.3378C11.6098 9.15486 11.3294 8.89404 11.0964 8.595C10.777 8.18523 10.4916 7.64348 10.5286 6.98186ZM9.10793 5.6316C8.8968 4.90107 8.21732 3.94905 6.867 3.18645L7.19005 2.61443C8.65443 3.44144 9.46989 4.51792 9.73904 5.4492C9.87272 5.91172 9.87737 6.36258 9.72524 6.72578C9.56641 7.10501 9.24373 7.36399 8.80677 7.40713C8.20966 7.46608 7.78455 7.29825 7.49657 6.94796C7.23771 6.63309 7.1225 6.20265 7.02866 5.83687C7.02122 5.80787 7.01388 5.7791 7.0066 5.75058C6.91473 5.39051 6.83273 5.06914 6.68266 4.79924C6.53211 4.52847 6.31788 4.32082 5.9413 4.22195L6.10812 3.58655C6.68294 3.73746 7.03269 4.07691 7.25682 4.48C7.45068 4.82867 7.55315 5.23284 7.64002 5.57551C7.64847 5.60883 7.65677 5.64157 7.66499 5.67361C7.7653 6.06461 7.85304 6.34711 8.00403 6.53077C8.12591 6.67901 8.31756 6.7953 8.74223 6.75337C8.92722 6.73511 9.0491 6.63962 9.11931 6.47199C9.19623 6.28835 9.2144 5.99998 9.10793 5.6316Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.1519 19.1142C15.0946 15.9364 11.9562 14.9718 9.3715 14.2369C8.01313 13.8507 6.85979 12.9271 5.92698 12.0153C5.48591 11.5842 5.08684 11.1482 4.73638 10.7653C4.71468 10.7416 4.69316 10.7181 4.67183 10.6948C4.30007 10.2888 3.99547 9.96047 3.74374 9.74736C2.92767 9.05648 1.92517 8.71759 1.54532 8.63865L1.67899 7.99546C2.13893 8.09104 3.24967 8.46834 4.16821 9.24597C4.45855 9.49176 4.79361 9.85504 5.15631 10.2511C5.17696 10.2737 5.19772 10.2963 5.21861 10.3192C5.57088 10.704 5.95863 11.1276 6.38618 11.5455C7.29593 12.4347 8.35321 13.2644 9.55117 13.605C12.079 14.3238 15.5931 15.3549 16.775 18.9063C17.1534 20.0315 17.345 21.0883 17.3947 21.4878L16.7428 21.5689C16.698 21.2088 16.5154 20.1951 16.1522 19.1152L16.1519 19.1142Z\" fill=\"#F9F9F9\"/> </svg>'},xzdnmrTzP:{customStrokeWidth:1.5,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.67268 8.57426C7.41186 8.10969 8.37668 8.29886 8.88894 8.98731C9.17511 9.44749 9.29673 10.132 9.08843 10.6261L9.02172 10.7659L7.88264 12.9212C7.57847 13.4967 7.79847 14.2099 8.37414 14.514C8.67787 14.6745 9.03366 14.6933 9.34915 14.5717L9.4887 14.5072L11.1698 13.5583C11.2856 13.4924 11.4337 13.5325 11.4997 13.6483C11.5578 13.7507 11.5331 13.8783 11.4465 13.9517L11.4458 13.9522L9.73996 14.9199C9.24753 15.197 8.64805 15.205 8.1485 14.941C7.37491 14.5322 7.05668 13.5989 7.4006 12.8099L8.59923 10.5318C8.79606 10.1594 8.77919 9.71035 8.55507 9.35379C8.23988 8.85239 7.60992 8.67012 7.08342 8.90151L6.9442 8.97395L3.48512 11.1474C3.48374 11.1483 3.4829 11.1498 3.4829 11.1514V16.6081C3.4829 17.7819 4.43461 18.7336 5.60863 18.7336H18.3914C19.5654 18.7336 20.5171 17.7819 20.5171 16.6081V9.88199C20.5171 9.88073 20.5176 9.87952 20.5185 9.87864L20.9919 9.4062C20.9949 9.40322 21 9.40534 21 9.40955V16.6081C21 18.0486 19.832 19.2165 18.3914 19.2165H5.60863C4.16793 19.2165 3 18.0486 3 16.6081V7.60936C3 6.22074 4.08544 5.0853 5.4539 5.00547L5.61516 5.00098H14.6325C14.6367 5.00098 14.6388 5.00609 14.6358 5.00907L14.1614 5.48247C14.1605 5.48336 14.1593 5.48386 14.1581 5.48386H5.59916L5.44429 5.49012C4.35134 5.57883 3.4829 6.49395 3.4829 7.60936V10.5695C3.4829 10.5732 3.48701 10.5754 3.49016 10.5735L6.67268 8.57426Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9329 11.4405L13.6325 9.26787C13.7136 9.01636 13.8534 8.78778 14.0403 8.60121L18.103 4.54555C18.7263 3.92331 19.7168 3.8921 20.3765 4.45172L20.5748 4.65014C21.1338 5.30982 21.1017 6.29975 20.479 6.922L16.4258 10.968C16.2315 11.1619 15.9923 11.3046 15.7295 11.3835L13.5256 12.045C13.2726 12.1209 13.0061 11.9775 12.9301 11.7245C12.9023 11.6319 12.9032 11.5327 12.9329 11.4405ZM14.3814 8.94298C14.249 9.07529 14.1498 9.23735 14.0923 9.4156L13.3981 11.5713C13.3969 11.575 13.4003 11.5784 13.404 11.5773L15.5906 10.9211C15.7767 10.8651 15.9467 10.7639 16.0845 10.6264L20.1495 6.56863L20.2428 6.46056C20.5907 5.992 20.5633 5.31358 20.1382 4.88829C19.6707 4.42038 18.9123 4.41999 18.4442 4.88728L14.3814 8.94298Z\" fill=\"#F9F9F9\"/> <path d=\"M6.67268 8.57426C7.41186 8.10969 8.37668 8.29886 8.88894 8.98731C9.17511 9.44749 9.29673 10.132 9.08843 10.6261L9.02172 10.7659L7.88264 12.9212C7.57847 13.4967 7.79847 14.2099 8.37414 14.514C8.67787 14.6745 9.03366 14.6933 9.34915 14.5717L9.4887 14.5072L11.1698 13.5583C11.2856 13.4924 11.4337 13.5325 11.4997 13.6483C11.5578 13.7507 11.5331 13.8783 11.4465 13.9517L11.4458 13.9522L9.73996 14.9199C9.24753 15.197 8.64805 15.205 8.1485 14.941C7.37491 14.5322 7.05668 13.5989 7.4006 12.8099L8.59923 10.5318C8.79606 10.1594 8.77919 9.71035 8.55507 9.35379C8.23988 8.85239 7.60992 8.67012 7.08342 8.90151L6.9442 8.97395L3.48512 11.1474C3.48374 11.1483 3.4829 11.1498 3.4829 11.1514V16.6081C3.4829 17.7819 4.43461 18.7336 5.60863 18.7336H18.3914C19.5654 18.7336 20.5171 17.7819 20.5171 16.6081V9.88199C20.5171 9.88073 20.5176 9.87952 20.5185 9.87864L20.9919 9.4062C20.9949 9.40322 21 9.40534 21 9.40955V16.6081C21 18.0486 19.832 19.2165 18.3914 19.2165H5.60863C4.16793 19.2165 3 18.0486 3 16.6081V7.60936C3 6.22074 4.08544 5.0853 5.4539 5.00547L5.61516 5.00098H14.6325C14.6367 5.00098 14.6388 5.00609 14.6358 5.00907L14.1614 5.48247C14.1605 5.48336 14.1593 5.48386 14.1581 5.48386H5.59916L5.44429 5.49012C4.35134 5.57883 3.4829 6.49395 3.4829 7.60936V10.5695C3.4829 10.5732 3.48701 10.5754 3.49016 10.5735L6.67268 8.57426Z\" stroke=\"#F9F9F9\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9329 11.4405L13.6325 9.26787C13.7136 9.01636 13.8534 8.78778 14.0403 8.60121L18.103 4.54555C18.7263 3.92331 19.7168 3.8921 20.3765 4.45172L20.5748 4.65014C21.1338 5.30982 21.1017 6.29975 20.479 6.922L16.4258 10.968C16.2315 11.1619 15.9923 11.3046 15.7295 11.3835L13.5256 12.045C13.2726 12.1209 13.0061 11.9775 12.9301 11.7245C12.9023 11.6319 12.9032 11.5327 12.9329 11.4405ZM14.3814 8.94298C14.249 9.07529 14.1498 9.23735 14.0923 9.4156L13.3981 11.5713C13.3969 11.575 13.4003 11.5784 13.404 11.5773L15.5906 10.9211C15.7767 10.8651 15.9467 10.7639 16.0845 10.6264L20.1495 6.56863L20.2428 6.46056C20.5907 5.992 20.5633 5.31358 20.1382 4.88829C19.6707 4.42038 18.9123 4.41999 18.4442 4.88728L14.3814 8.94298Z\" stroke=\"#F9F9F9\" stroke-width=\"1.2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},yEo8RjWD2:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.66667 5C9.22464 5 8.80072 5.17559 8.48816 5.48816C8.17559 5.80072 8 6.22464 8 6.66667C8 7.10869 8.17559 7.53262 8.48816 7.84518C8.80072 8.15774 9.22464 8.33333 9.66667 8.33333H11.3333V5H9.66667ZM13.3333 5V8.33333H15C15.2189 8.33333 15.4356 8.29022 15.6378 8.20647C15.84 8.12271 16.0237 7.99994 16.1785 7.84518C16.3333 7.69041 16.456 7.50668 16.5398 7.30447C16.6236 7.10226 16.6667 6.88554 16.6667 6.66667C16.6667 6.4478 16.6236 6.23107 16.5398 6.02886C16.456 5.82665 16.3333 5.64292 16.1785 5.48816C16.0237 5.33339 15.84 5.21063 15.6378 5.12687C15.4356 5.04311 15.2189 5 15 5H13.3333ZM17.5166 9.33334C17.5423 9.30907 17.5677 9.28442 17.5927 9.25939C17.9332 8.91891 18.2033 8.5147 18.3876 8.06984C18.5718 7.62498 18.6667 7.14818 18.6667 6.66667C18.6667 6.18515 18.5718 5.70835 18.3876 5.26349C18.2033 4.81863 17.9332 4.41442 17.5927 4.07394C17.2522 3.73346 16.848 3.46338 16.4032 3.27911C15.9583 3.09484 15.4815 3 15 3H9.66667C8.69421 3 7.76158 3.38631 7.07394 4.07394C6.38631 4.76158 6 5.69421 6 6.66667C6 7.63913 6.38631 8.57176 7.07394 9.25939C7.09899 9.28444 7.12436 9.30909 7.15005 9.33333C7.12436 9.35758 7.09899 9.38223 7.07394 9.40728C6.38631 10.0949 6 11.0275 6 12C6 12.9725 6.38631 13.9051 7.07394 14.5927C7.09899 14.6178 7.12437 14.6424 7.15006 14.6667C7.12437 14.6909 7.09899 14.7156 7.07394 14.7406C6.38631 15.4282 6 16.3609 6 17.3333C6 18.3058 6.38631 19.2384 7.07394 19.9261C7.76158 20.6137 8.69421 21 9.66667 21C10.6391 21 11.5718 20.6137 12.2594 19.9261C12.947 19.2384 13.3333 18.3058 13.3333 17.3333V15.266C13.4194 15.3099 13.5073 15.3505 13.5968 15.3876C14.0417 15.5718 14.5185 15.6667 15 15.6667C15.4815 15.6667 15.9583 15.5718 16.4032 15.3876C16.848 15.2033 17.2522 14.9332 17.5927 14.5927C17.9332 14.2522 18.2033 13.848 18.3876 13.4032C18.5718 12.9583 18.6667 12.4815 18.6667 12C18.6667 11.5185 18.5718 11.0417 18.3876 10.5968C18.2033 10.152 17.9332 9.74776 17.5927 9.40728C17.5677 9.38224 17.5423 9.3576 17.5166 9.33334ZM11.3333 13.6667V10.3333H9.66667C9.22464 10.3333 8.80072 10.5089 8.48816 10.8215C8.17559 11.134 8 11.558 8 12C8 12.442 8.17559 12.866 8.48816 13.1785C8.80072 13.4911 9.22464 13.6667 9.66667 13.6667H11.3333ZM11.3333 15.6667H9.66667C9.22464 15.6667 8.80072 15.8423 8.48816 16.1548C8.17559 16.4674 8 16.8913 8 17.3333C8 17.7754 8.17559 18.1993 8.48816 18.5118C8.80072 18.8244 9.22464 19 9.66667 19C10.1087 19 10.5326 18.8244 10.8452 18.5118C11.1577 18.1993 11.3333 17.7754 11.3333 17.3333V15.6667ZM15 10.3333C14.7811 10.3333 14.5644 10.3764 14.3622 10.4602C14.16 10.544 13.9763 10.6667 13.8215 10.8215C13.6667 10.9763 13.544 11.16 13.4602 11.3622C13.3764 11.5644 13.3333 11.7811 13.3333 12C13.3333 12.2189 13.3764 12.4356 13.4602 12.6378C13.544 12.84 13.6667 13.0237 13.8215 13.1785C13.9763 13.3333 14.16 13.456 14.3622 13.5398C14.5644 13.6236 14.7811 13.6667 15 13.6667C15.2189 13.6667 15.4356 13.6236 15.6378 13.5398C15.84 13.456 16.0237 13.3333 16.1785 13.1785C16.3333 13.0237 16.456 12.84 16.5398 12.6378C16.6236 12.4356 16.6667 12.2189 16.6667 12C16.6667 11.7811 16.6236 11.5644 16.5398 11.3622C16.456 11.16 16.3333 10.9763 16.1785 10.8215C16.0237 10.6667 15.84 10.544 15.6378 10.4602C15.4356 10.3764 15.2189 10.3333 15 10.3333Z\" fill=\"#F9F9F9\"/> </svg>'},yhQcOvcJp:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.94633 2C7.84767 2 6.96098 2.88676 6.96098 3.98536V5.18404C5.81744 5.60082 5 6.69837 5 7.98531V16.0633C5 17.3503 5.81744 18.4478 6.96098 18.8646V20.0634C6.96098 21.162 7.84767 22.0488 8.94633 22.0488H14.7707C15.8727 22.0488 16.7464 21.1625 16.7657 20.0813L16.7658 20.0634V18.8574C17.8991 18.4353 18.7073 17.343 18.7073 16.0633V12.0192C19.2483 12.0063 19.6829 11.5637 19.6829 11.0195V9.01954C19.6829 8.47541 19.2483 8.03279 18.7073 8.01983V7.98531C18.7073 6.7057 17.8991 5.61334 16.7658 5.19123V3.98536L16.7657 3.96751C16.7464 2.88627 15.8727 2 14.7707 2H8.94633ZM7.97119 7.00487H15.7361C16.2722 7.00988 16.7073 7.44802 16.7073 7.98531V16.0633C16.7073 16.6037 16.2672 17.0438 15.7268 17.0438H7.98048C7.44009 17.0438 7 16.6037 7 16.0633V7.98531C7 7.44802 7.43505 7.00988 7.97119 7.00487ZM14.7658 5.00483V4.00053L8.96098 4V5.00483H14.7658ZM8.96098 19.0439V20.0488H14.7658L14.7658 19.0439H8.96098Z\" fill=\"#F9F9F9\"/> </svg>'},YxMlo2Qht:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.6791 10.0545C15.6193 10.0545 16.3815 10.8167 16.3815 11.7569V16.3765C16.3815 18.7947 14.4211 20.755 12.003 20.755C9.58485 20.755 7.62453 18.7947 7.62453 16.3765V11.7569C7.62453 10.8167 8.3867 10.0545 9.32688 10.0545H14.6791ZM14.6791 11.5137H9.32688C9.19257 11.5137 9.08369 11.6225 9.08369 11.7569V16.3765C9.08369 17.9888 10.3907 19.2958 12.003 19.2958C13.6153 19.2958 14.9223 17.9888 14.9223 16.3765V11.7569C14.9223 11.6225 14.8135 11.5137 14.6791 11.5137ZM12.0001 3.24514C13.6119 3.24514 14.9184 4.55171 14.9184 6.16344C14.9184 7.77518 13.6119 9.08175 12.0001 9.08175C10.3883 9.08175 9.08181 7.77518 9.08181 6.16344C9.08181 4.55171 10.3883 3.24514 12.0001 3.24514ZM12.0001 4.70429C11.1943 4.70429 10.541 5.35757 10.541 6.16344C10.541 6.96931 11.1943 7.6226 12.0001 7.6226C12.806 7.6226 13.4593 6.96931 13.4593 6.16344C13.4593 5.35757 12.806 4.70429 12.0001 4.70429Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.6791 9.80938C15.7547 9.80938 16.6266 10.6813 16.6266 11.7569V16.3765C16.6266 18.93 14.5565 21.0001 12.003 21.0001C9.44946 21.0001 7.37939 18.93 7.37939 16.3765V11.7569C7.37939 10.6813 8.25131 9.80938 9.32688 9.80938H14.6791ZM9.32882 11.7588V16.3765C9.32882 17.8534 10.5261 19.0507 12.003 19.0507C13.4799 19.0507 14.6772 17.8534 14.6772 16.3765V11.7588H9.32882ZM12.0001 3C13.7473 3 15.1636 4.41633 15.1636 6.16344C15.1636 7.91056 13.7473 9.32689 12.0001 9.32689C10.2529 9.32689 8.83667 7.91056 8.83667 6.16344C8.83667 4.41633 10.2529 3 12.0001 3ZM12.0001 4.94943C11.3297 4.94943 10.7861 5.49296 10.7861 6.16344C10.7861 6.83393 11.3297 7.37746 12.0001 7.37746C12.6706 7.37746 13.2141 6.83393 13.2141 6.16344C13.2141 5.49296 12.6706 4.94943 12.0001 4.94943ZM16.3815 11.7569C16.3815 10.8167 15.6193 10.0545 14.6791 10.0545H9.32688C8.3867 10.0545 7.62453 10.8167 7.62453 11.7569V16.3765C7.62453 18.7947 9.58485 20.755 12.003 20.755C14.4211 20.755 16.3815 18.7947 16.3815 16.3765V11.7569ZM9.32688 11.5137H14.6791C14.8135 11.5137 14.9223 11.6225 14.9223 11.7569V16.3765C14.9223 17.9888 13.6153 19.2958 12.003 19.2958C10.3907 19.2958 9.08369 17.9888 9.08369 16.3765V11.7569C9.08369 11.6225 9.19257 11.5137 9.32688 11.5137ZM14.9184 6.16344C14.9184 4.55171 13.6119 3.24514 12.0001 3.24514C10.3883 3.24514 9.08181 4.55171 9.08181 6.16344C9.08181 7.77518 10.3883 9.08175 12.0001 9.08175C13.6119 9.08175 14.9184 7.77518 14.9184 6.16344ZM10.541 6.16344C10.541 5.35757 11.1943 4.70429 12.0001 4.70429C12.806 4.70429 13.4593 5.35757 13.4593 6.16344C13.4593 6.96931 12.806 7.6226 12.0001 7.6226C11.1943 7.6226 10.541 6.96931 10.541 6.16344Z\" fill=\"#F9F9F9\"/> </svg>'},YzC0MGfyY:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM18.3305 19.4014L12.5247 13.7148C12.2596 13.4553 11.8501 13.4316 11.5588 13.644L11.4752 13.7148L5.66845 19.4011C5.8504 19.4651 6.04613 19.5 6.25 19.5H17.75C17.9535 19.5 18.1489 19.4653 18.3305 19.4014ZM17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V17.75C4.5 17.9584 4.53643 18.1583 4.60326 18.3437L10.4258 12.643C11.2589 11.8273 12.5675 11.7885 13.4458 12.5266L13.5742 12.6431L19.3964 18.3447C19.4634 18.159 19.5 17.9588 19.5 17.75V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5ZM15.2521 6.5C16.4959 6.5 17.5042 7.50831 17.5042 8.75212C17.5042 9.99592 16.4959 11.0042 15.2521 11.0042C14.0083 11.0042 13 9.99592 13 8.75212C13 7.50831 14.0083 6.5 15.2521 6.5ZM15.2521 8C14.8367 8 14.5 8.33673 14.5 8.75212C14.5 9.1675 14.8367 9.50423 15.2521 9.50423C15.6675 9.50423 16.0042 9.1675 16.0042 8.75212C16.0042 8.33673 15.6675 8 15.2521 8Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4258 12.643C11.2589 11.8273 12.5675 11.7885 13.4458 12.5266L13.5742 12.6431L19.3964 18.3447C19.4286 18.2556 19.4537 18.1631 19.4712 18.068C19.4901 17.9649 19.5 17.8586 19.5 17.75V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V17.75C4.5 17.8582 4.50982 17.9641 4.52862 18.0669C4.54603 18.1621 4.57113 18.2546 4.60326 18.3437L10.4258 12.643ZM4.75309 17.8471L10.2509 12.4644C11.1766 11.558 12.6306 11.5149 13.6066 12.3352L13.6139 12.3413L13.7492 12.4644L19.2468 17.8483C19.2489 17.8158 19.25 17.7831 19.25 17.75V6.25C19.25 5.42157 18.5784 4.75 17.75 4.75H6.25C5.42157 4.75 4.75 5.42157 4.75 6.25V17.75C4.75 17.7826 4.75104 17.815 4.75309 17.8471ZM17.75 2.75C19.683 2.75 21.25 4.317 21.25 6.25V17.75C21.25 19.683 19.683 21.25 17.75 21.25H6.25C4.317 21.25 2.75 19.683 2.75 17.75V6.25C2.75 4.317 4.317 2.75 6.25 2.75H17.75ZM12.3498 13.8935C12.1752 13.7225 11.9062 13.705 11.7127 13.8412L11.6437 13.8997L6.18163 19.2485C6.20428 19.2495 6.22708 19.25 6.25 19.25H17.75C17.7725 19.25 17.7949 19.2495 17.8171 19.2485L12.3498 13.8935ZM12.5247 13.7148C12.2596 13.4553 11.8501 13.4316 11.5588 13.644L11.4752 13.7148L5.66845 19.4011C5.75936 19.4331 5.85371 19.4578 5.9508 19.4745C6.04802 19.4913 6.14799 19.5 6.25 19.5H17.75C17.8516 19.5 17.9512 19.4913 18.0481 19.4747C18.1452 19.4581 18.2396 19.4334 18.3305 19.4014L12.5247 13.7148ZM15.2521 6.25C16.634 6.25 17.7542 7.37024 17.7542 8.75212C17.7542 10.134 16.634 11.2542 15.2521 11.2542C13.8702 11.2542 12.75 10.134 12.75 8.75212C12.75 7.37024 13.8702 6.25 15.2521 6.25ZM15.2521 8.25C14.9748 8.25 14.75 8.47479 14.75 8.75212C14.75 9.02944 14.9748 9.25423 15.2521 9.25423C15.5294 9.25423 15.7542 9.02944 15.7542 8.75212C15.7542 8.47479 15.5294 8.25 15.2521 8.25ZM21 6.25C21 4.45507 19.5449 3 17.75 3H6.25C4.45507 3 3 4.45507 3 6.25V17.75C3 19.5449 4.45507 21 6.25 21H17.75C19.5449 21 21 19.5449 21 17.75V6.25ZM17.5042 8.75212C17.5042 7.50831 16.4959 6.5 15.2521 6.5C14.0083 6.5 13 7.50831 13 8.75212C13 9.99592 14.0083 11.0042 15.2521 11.0042C16.4959 11.0042 17.5042 9.99592 17.5042 8.75212ZM14.5 8.75212C14.5 8.33673 14.8367 8 15.2521 8C15.6675 8 16.0042 8.33673 16.0042 8.75212C16.0042 9.1675 15.6675 9.50423 15.2521 9.50423C14.8367 9.50423 14.5 9.1675 14.5 8.75212Z\" fill=\"#F9F9F9\"/> </svg>'},yzzCVUVsS:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9835 13.8216C11.3579 13.8216 10.8508 14.3108 10.8508 14.9141C10.8508 15.5175 11.3579 16.0067 11.9835 16.0067C12.6092 16.0067 13.1162 15.5175 13.1162 14.9141C13.1162 14.3108 12.6092 13.8216 11.9835 13.8216ZM9.71809 14.9141C9.71809 13.7073 10.7324 12.729 11.9835 12.729C13.2346 12.729 14.2489 13.7073 14.2489 14.9141C14.2489 16.121 13.2346 17.0992 11.9835 17.0992C10.7324 17.0992 9.71809 16.121 9.71809 14.9141ZM7.83028 19.1152C7.83028 18.4041 8.42795 17.8276 9.16522 17.8276H14.8018C15.539 17.8276 16.1367 18.4041 16.1367 19.1152V19.377C16.1367 19.5287 16.1367 20.4031 15.6074 21.2529C15.0476 22.1517 13.9574 22.9261 11.9835 22.9261C10.0095 22.9261 8.91935 22.1517 8.35951 21.2529C7.83023 20.4031 7.83027 19.5287 7.83028 19.377V19.1152ZM9.16522 18.9201C9.05352 18.9201 8.96297 19.0075 8.96297 19.1152V19.3754C8.96297 19.4787 8.96493 20.1034 9.33045 20.6902C9.66732 21.231 10.3705 21.8336 11.9835 21.8336C13.5964 21.8336 14.2996 21.231 14.6365 20.6902C15.002 20.1034 15.004 19.4787 15.004 19.3754V19.1152C15.004 19.0075 14.9134 18.9201 14.8018 18.9201H9.16522Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.13281 21.3941C7.56315 20.4794 7.5632 19.5429 7.56321 19.3775V19.1152C7.56321 18.2476 8.28962 17.5605 9.16522 17.5605H14.8018C15.6773 17.5605 16.4037 18.2476 16.4037 19.1152V19.377C16.4037 19.5425 16.4037 20.4796 15.8341 21.3941C15.2197 22.3806 14.0379 23.1932 11.9835 23.1932C9.92899 23.1932 8.74728 22.3806 8.13281 21.3941ZM15.6074 21.2529C16.1367 20.4031 16.1367 19.5287 16.1367 19.377V19.1152C16.1367 18.4041 15.539 17.8276 14.8018 17.8276H9.16522C8.42795 17.8276 7.83028 18.4041 7.83028 19.1152V19.377C7.83027 19.5287 7.83023 20.4031 8.35951 21.2529C8.91935 22.1517 10.0095 22.9261 11.9835 22.9261C13.9574 22.9261 15.0476 22.1517 15.6074 21.2529ZM11.9835 14.0887C11.4962 14.0887 11.1178 14.4673 11.1178 14.9141C11.1178 15.361 11.4962 15.7396 11.9835 15.7396C12.4708 15.7396 12.8492 15.361 12.8492 14.9141C12.8492 14.4672 12.4708 14.0887 11.9835 14.0887ZM9.45103 14.9141C9.45103 13.5508 10.5941 12.462 11.9835 12.462C13.373 12.462 14.516 13.5508 14.516 14.9141C14.516 16.2775 13.373 17.3663 11.9835 17.3663C10.5941 17.3663 9.45103 16.2775 9.45103 14.9141ZM9.23003 19.1872H14.7369V19.3754C14.7369 19.4675 14.7341 20.0284 14.4099 20.549M9.23003 19.1872V19.3754C9.23003 19.4675 9.23288 20.0284 9.55714 20.549C9.70365 20.7842 9.92989 21.0344 10.3017 21.2278C10.6754 21.4222 11.2102 21.5665 11.9835 21.5665C12.7568 21.5665 13.2916 21.4222 13.6653 21.2278C14.037 21.0344 14.2633 20.7842 14.4099 20.549M10.8508 14.9141C10.8508 14.3108 11.3579 13.8216 11.9835 13.8216C12.6092 13.8216 13.1162 14.3108 13.1162 14.9141C13.1162 15.5175 12.6092 16.0067 11.9835 16.0067C11.3579 16.0067 10.8508 15.5175 10.8508 14.9141ZM11.9835 12.729C10.7324 12.729 9.71809 13.7073 9.71809 14.9141C9.71809 16.121 10.7324 17.0992 11.9835 17.0992C13.2346 17.0992 14.2489 16.121 14.2489 14.9141C14.2489 13.7073 13.2346 12.729 11.9835 12.729ZM8.96297 19.1152C8.96297 19.0075 9.05352 18.9201 9.16522 18.9201H14.8018C14.9134 18.9201 15.004 19.0075 15.004 19.1152V19.3754C15.004 19.4787 15.002 20.1034 14.6365 20.6902C14.2996 21.231 13.5964 21.8336 11.9835 21.8336C10.3705 21.8336 9.66732 21.231 9.33045 20.6902C8.96493 20.1034 8.96297 19.4787 8.96297 19.3754V19.1152Z\" fill=\"#F9F9F9\"/> <path d=\"M16.4452 21.2985C16.9058 21.4412 17.4505 21.524 18.0911 21.524C19.9079 21.524 20.9529 20.858 21.4963 20.0495C22 19.3 22 18.5321 22 18.3964V18.1818C22 17.4708 21.3576 16.9077 20.5834 16.9077H15.5989C15.3454 16.9077 15.106 16.968 14.8986 17.0742C15.6786 17.1096 16.367 17.569 16.6927 18.2408H20.526V18.3951C20.526 18.4705 20.5235 18.9302 20.2368 19.3569C20.1072 19.5497 19.9071 19.7547 19.5783 19.9132C19.2479 20.0726 18.775 20.1909 18.0911 20.1909C17.558 20.1909 17.1531 20.119 16.8439 20.0118C16.7908 20.3645 16.6793 20.8227 16.4452 21.2985Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.8516 14.7388C15.8516 13.6214 16.8624 12.729 18.0912 12.729C19.3199 12.729 20.3306 13.6214 20.3306 14.7388C20.3306 15.8561 19.3199 16.7485 18.0912 16.7485C16.8624 16.7485 15.8516 15.8561 15.8516 14.7388ZM18.0912 14.0622C17.6603 14.0622 17.3256 14.3725 17.3256 14.7388C17.3256 15.105 17.6603 15.4153 18.0912 15.4153C18.5221 15.4153 18.8567 15.105 18.8567 14.7388C18.8567 14.3725 18.5221 14.0622 18.0912 14.0622Z\" fill=\"#F9F9F9\"/> <path d=\"M7.55478 21.2985C7.09422 21.4412 6.54954 21.524 5.90889 21.524C4.09211 21.524 3.04706 20.858 2.50374 20.0495C2 19.3 2 18.5321 2 18.3964V18.1818C2 17.4708 2.64238 16.9077 3.41665 16.9077H8.4011C8.65464 16.9077 8.89403 16.968 9.10136 17.0742C8.32139 17.1096 7.63297 17.569 7.30727 18.2408H3.47399V18.3951C3.47399 18.4705 3.4765 18.9302 3.76321 19.3569C3.8928 19.5497 4.0929 19.7547 4.42167 19.9132C4.75211 20.0726 5.22504 20.1909 5.90889 20.1909C6.44198 20.1909 6.84691 20.119 7.15608 20.0118C7.20917 20.3645 7.32066 20.8227 7.55478 21.2985Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.14836 14.7388C8.14836 13.6214 7.13756 12.729 5.90882 12.729C4.68014 12.729 3.66935 13.6214 3.66935 14.7388C3.66935 15.8561 4.68014 16.7485 5.90882 16.7485C7.13756 16.7485 8.14836 15.8561 8.14836 14.7388ZM5.90882 14.0622C6.33975 14.0622 6.67437 14.3725 6.67437 14.7388C6.67437 15.105 6.33975 15.4153 5.90882 15.4153C5.47792 15.4153 5.14334 15.105 5.14334 14.7388C5.14334 14.3725 5.47792 14.0622 5.90882 14.0622Z\" fill=\"#F9F9F9\"/> <path d=\"M7.73246 1.1001C6.16732 1.1001 4.89851 2.3689 4.89851 3.93404V10.7746C4.89851 11.2603 5.29228 11.6541 5.77802 11.6541C6.26375 11.6541 6.65752 11.2603 6.65752 10.7746V3.93404C6.65752 3.34037 7.13878 2.8591 7.73246 2.8591H16.5275C17.1211 2.8591 17.6024 3.34037 17.6024 3.93404V10.7746C17.6024 11.2603 17.9962 11.6541 18.4819 11.6541C18.9676 11.6541 19.3614 11.2603 19.3614 10.7746V3.93404C19.3614 2.3689 18.0926 1.1001 16.5275 1.1001H7.73246Z\" fill=\"#F9F9F9\"/> <path d=\"M8.22107 4.17835C7.81629 4.17835 7.48815 4.50649 7.48815 4.91126C7.48815 5.31604 7.81629 5.64418 8.22107 5.64418H9.19829C9.60307 5.64418 9.93121 5.31604 9.93121 4.91126C9.93121 4.50649 9.60307 4.17835 9.19829 4.17835H8.22107Z\" fill=\"#F9F9F9\"/> <path d=\"M7.48815 7.35432C7.48815 6.94954 7.81629 6.6214 8.22107 6.6214H9.19829C9.60307 6.6214 9.93121 6.94954 9.93121 7.35432C9.93121 7.7591 9.60307 8.08724 9.19829 8.08724H8.22107C7.81629 8.08724 7.48815 7.7591 7.48815 7.35432Z\" fill=\"#F9F9F9\"/> <path d=\"M8.22107 9.06446C7.81629 9.06446 7.48815 9.3926 7.48815 9.79738C7.48815 10.2022 7.81629 10.5303 8.22107 10.5303H9.19829C9.60307 10.5303 9.93121 10.2022 9.93121 9.79738C9.93121 9.3926 9.60307 9.06446 9.19829 9.06446H8.22107Z\" fill=\"#F9F9F9\"/> <path d=\"M10.9084 4.91126C10.9084 4.50649 11.2366 4.17835 11.6413 4.17835H12.6186C13.0233 4.17835 13.3515 4.50649 13.3515 4.91126C13.3515 5.31604 13.0233 5.64418 12.6186 5.64418H11.6413C11.2366 5.64418 10.9084 5.31604 10.9084 4.91126Z\" fill=\"#F9F9F9\"/> <path d=\"M11.6413 6.6214C11.2366 6.6214 10.9084 6.94954 10.9084 7.35432C10.9084 7.7591 11.2366 8.08724 11.6413 8.08724H12.6186C13.0233 8.08724 13.3515 7.7591 13.3515 7.35432C13.3515 6.94954 13.0233 6.6214 12.6186 6.6214H11.6413Z\" fill=\"#F9F9F9\"/> <path d=\"M10.9084 9.79738C10.9084 9.3926 11.2366 9.06446 11.6413 9.06446H12.6186C13.0233 9.06446 13.3515 9.3926 13.3515 9.79738C13.3515 10.2022 13.0233 10.5303 12.6186 10.5303H11.6413C11.2366 10.5303 10.9084 10.2022 10.9084 9.79738Z\" fill=\"#F9F9F9\"/> <path d=\"M15.0616 4.17835C14.6568 4.17835 14.3287 4.50649 14.3287 4.91126C14.3287 5.31604 14.6568 5.64418 15.0616 5.64418H16.0388C16.4436 5.64418 16.7718 5.31604 16.7718 4.91126C16.7718 4.50649 16.4436 4.17835 16.0388 4.17835H15.0616Z\" fill=\"#F9F9F9\"/> <path d=\"M14.3287 7.35432C14.3287 6.94954 14.6568 6.6214 15.0616 6.6214H16.0388C16.4436 6.6214 16.7718 6.94954 16.7718 7.35432C16.7718 7.7591 16.4436 8.08724 16.0388 8.08724H15.0616C14.6568 8.08724 14.3287 7.7591 14.3287 7.35432Z\" fill=\"#F9F9F9\"/> <path d=\"M15.0616 9.06446C14.6568 9.06446 14.3287 9.3926 14.3287 9.79738C14.3287 10.2022 14.6568 10.5303 15.0616 10.5303H16.0388C16.4436 10.5303 16.7718 10.2022 16.7718 9.79738C16.7718 9.3926 16.4436 9.06446 16.0388 9.06446H15.0616Z\" fill=\"#F9F9F9\"/> </svg>'},z22IDWhtB:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 3H9C7.34314 3 6 4.34315 6 6V18C6 19.6569 7.34315 21 9 21H15C16.6569 21 18 19.6569 18 18V6C18 4.34315 16.6569 3 15 3ZM8 6C8 5.44772 8.44772 5 9 5H15C15.5523 5 16 5.44772 16 6V18C16 18.5523 15.5523 19 15 19H9C8.44772 19 8 18.5523 8 18V6ZM11 15C10.4477 15 10 15.4477 10 16C10 16.5523 10.4477 17 11 17H13C13.5523 17 14 16.5523 14 16C14 15.4477 13.5523 15 13 15H11Z\" fill=\"#F9F9F9\"/> </svg>'},z3SPN_1Tc:{customStrokeWidth:.2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.6505 6.33146L10.1043 3.78523C9.05731 2.73826 7.35982 2.73826 6.31285 3.78523L3.78523 6.31285C2.73826 7.35982 2.73826 9.05731 3.78523 10.1043L5.04313 11.3622L5.04904 11.3682L5.05501 11.3741L6.33146 12.6505L4.36533 14.6167C4.24058 14.7414 4.15554 14.9003 4.12095 15.0733L3.17309 19.8126C3.04802 20.4379 3.59933 20.9892 4.22464 20.8642L8.96392 19.9163C9.13692 19.8817 9.29581 19.7966 9.42057 19.6719L11.3867 17.7057L13.8957 20.2148C14.9427 21.2617 16.6402 21.2617 17.6871 20.2148L20.2148 17.6872C21.2617 16.6402 21.2617 14.9427 20.2148 13.8957L17.7057 11.3867L19.9716 9.12083C21.0186 8.07386 21.0186 6.37637 19.9716 5.3294L18.7078 4.06559C17.6608 3.01861 15.9634 3.01861 14.9164 4.06559L12.6505 6.33146ZM5.04904 7.57667C4.70005 7.92565 4.70005 8.49148 5.04904 8.84047L5.68098 9.47241L6.94476 8.20863C7.29375 7.85963 7.85958 7.85963 8.20857 8.20863C8.55756 8.55762 8.55756 9.12345 8.20857 9.47243L6.94479 10.7362L7.59526 11.3867L11.3867 7.59526L8.84047 5.04904C8.49148 4.70005 7.92565 4.70005 7.57666 5.04904L5.04904 7.57667ZM16.4419 12.6505L12.6505 16.4419L13.2638 17.0553L13.8957 16.4234C14.2447 16.0744 14.8106 16.0744 15.1595 16.4234C15.5085 16.7723 15.5085 17.3382 15.1595 17.6872L14.5276 18.3191L15.1595 18.951C15.5085 19.2999 16.0744 19.2999 16.4233 18.951L18.9509 16.4234C19.3 16.0743 19.3 15.5085 18.9509 15.1596L16.4419 12.6505ZM18.7078 6.59321L17.444 5.3294C17.095 4.9804 16.5292 4.9804 16.1802 5.3294L14.9164 6.59322L17.444 9.12085L18.7078 7.85702C19.0568 7.50803 19.0568 6.9422 18.7078 6.59321ZM5.82047 15.6891L13.6526 7.85704L16.1802 10.3846L8.34808 18.2167L5.18856 18.8486L5.82047 15.6891Z\" fill=\"#F9F9F9\"/> </svg>'},z5z2SpQyC:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 3C2 2.44772 2.44772 2 3 2H21C21.5523 2 22 2.44772 22 3C22 3.55228 21.5523 4 21 4V12C21 14.7614 18.7614 17 16 17H15.3028L18.5547 19.1679C19.0142 19.4743 19.1384 20.0952 18.8321 20.5547C18.5257 21.0142 17.9048 21.1384 17.4453 20.8321L13 17.8685V21C13 21.5523 12.5523 22 12 22C11.4477 22 11 21.5523 11 21V17.8685L6.5547 20.8321C6.09517 21.1384 5.4743 21.0142 5.16795 20.5547C4.8616 20.0952 4.98577 19.4743 5.4453 19.1679L8.69722 17H8C5.23857 17 3 14.7614 3 12V4C2.44772 4 2 3.55228 2 3ZM5 4V12C5 13.6568 6.34315 15 8 15H16C17.6568 15 19 13.6568 19 12V4H5ZM8 6C8.55228 6 9 6.44772 9 7V12C9 12.5523 8.55228 13 8 13C7.44772 13 7 12.5523 7 12V7C7 6.44772 7.44772 6 8 6ZM12 8C12.5523 8 13 8.44772 13 9V12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12V9C11 8.44772 11.4477 8 12 8ZM16 10C16.5523 10 17 10.4477 17 11V12C17 12.5523 16.5523 13 16 13C15.4477 13 15 12.5523 15 12V11C15 10.4477 15.4477 10 16 10Z\" fill=\"#F9F9F9\"/> </svg>'},Z7kGKbE1p:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M18.8855 15.1093C18.8855 15.4456 18.6126 15.7186 18.2762 15.7186H13.2911C12.9548 15.7186 12.6818 15.4456 12.6818 15.1093C12.6818 14.773 12.9548 14.5 13.2911 14.5H18.2762C18.6126 14.5 18.8855 14.773 18.8855 15.1093ZM18.2762 17.0932H15.121C14.325 17.0966 14.3235 18.3084 15.121 18.3118H18.2762C18.6126 18.3118 18.8855 18.0388 18.8855 17.7025C18.8855 17.3662 18.6126 17.0932 18.2762 17.0932ZM21.7878 13.5853V20.5699C21.8229 21.8811 20.6584 23.0144 19.3647 22.9959C18.052 23.0992 16.5005 21.2167 15.2643 21.0793H12.1997C10.8646 21.0793 9.77861 19.9932 9.77861 18.6581V13.5853C9.77861 13.4976 9.78398 13.4108 9.79324 13.3255C8.43961 13.7125 6.41379 15.8237 4.9188 15.7296C3.36191 15.7505 1.95807 14.3876 2.00096 12.8078V3.91589C2.00096 2.3083 3.30877 1 4.91685 1H14.0403C15.6479 1 16.9562 2.30781 16.9562 3.91589C16.9445 4.36824 17.0401 10.9536 16.8465 11.1647C18.8616 11.1486 21.6581 10.7645 21.7878 13.5853ZM10.1393 12.0713H14.0403C14.9762 12.0713 15.7376 11.3099 15.7376 10.374V3.91589C15.7376 2.98 14.9762 2.21861 14.0403 2.21861H4.91734C3.98145 2.21861 3.22006 2.98 3.22006 3.91589V12.8078C3.17521 14.0996 4.74283 14.9711 5.8157 14.2477C6.81544 13.7155 8.9407 11.9607 10.1393 12.0713ZM20.5692 13.5853C20.5692 12.9224 20.0296 12.3828 19.3666 12.3828H16.1505C15.1634 13.6906 12.443 13.2085 11.0348 13.2894C11.0109 13.384 10.9977 13.4829 10.9977 13.5848V18.6576C10.9977 19.3206 11.5373 19.8602 12.2002 19.8602H15.2648C16.769 19.693 18.6594 22.3832 19.9501 21.6208C20.3376 21.4059 20.5692 21.0125 20.5692 20.5694V13.5853ZM11.063 9.9134C11.0552 9.36502 10.5356 9.25827 10.0881 9.30409V8.54368C11.4739 8.26047 12.518 7.02578 12.5098 5.55809C13.2083 5.43574 13.1069 4.33363 12.3879 4.35166C11.9663 4.33314 11.4023 4.31169 11.3033 4.83813C11.3306 5.92708 11.2132 6.84835 10.0881 7.2812V5.55809C10.7866 5.43574 10.6853 4.33363 9.96628 4.35166H8.99139C8.2729 4.33363 8.17054 5.43623 8.86953 5.55809V7.2812C7.74159 6.84543 7.62801 5.92854 7.65433 4.83813C7.55587 4.31218 6.99092 4.33265 6.56977 4.35166C5.85128 4.33363 5.74892 5.43574 6.44791 5.55809C6.43962 7.02578 7.48373 8.26047 8.86953 8.54368V9.30409C7.68114 9.12081 7.5934 10.4428 8.50395 10.5227H10.4537C10.7901 10.5227 11.063 10.2497 11.063 9.9134Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.1199 16.8432L15.121 16.8432L18.2762 16.8432C18.7506 16.8432 19.1355 17.2281 19.1355 17.7025C19.1355 18.1769 18.7506 18.5618 18.2762 18.5618H15.1199C14.8516 18.5607 14.6329 18.4552 14.4842 18.2848C14.3398 18.1192 14.2733 17.9065 14.2735 17.7024C14.2736 17.4983 14.3403 17.2856 14.4847 17.1202C14.6333 16.9499 14.8518 16.8444 15.1199 16.8432ZM22.0378 13.5853V20.5666C22.0746 22.0194 20.7976 23.2597 19.3725 23.246C18.9866 23.2734 18.6017 23.1566 18.2378 22.9856C17.8693 22.8125 17.4995 22.5728 17.1463 22.3354C17.0831 22.2929 17.0205 22.2505 16.9584 22.2085C16.6679 22.0119 16.3894 21.8235 16.1178 21.6683C15.7927 21.4825 15.5041 21.3605 15.2498 21.3293H12.1997C10.7266 21.3293 9.52861 20.1313 9.52861 18.6581V13.6908C9.30726 13.7903 9.06457 13.9272 8.80275 14.09C8.55085 14.2465 8.29371 14.4188 8.02818 14.5966C7.8706 14.7022 7.71007 14.8097 7.54592 14.9171C7.11257 15.2007 6.6636 15.4767 6.22388 15.6758C5.78967 15.8724 5.34245 16.0043 4.91278 15.9797C3.22413 15.9969 1.70628 14.527 1.75096 12.8045V3.91589C1.75096 2.17025 3.17068 0.75 4.91685 0.75H14.0403C15.786 0.75 17.2062 2.16971 17.2062 3.91589V3.92235C17.2038 4.01737 17.2061 4.3897 17.2095 4.92045C17.2141 5.63398 17.2206 6.6338 17.2196 7.63101C17.2187 8.49613 17.2121 9.356 17.1936 10.0137C17.1843 10.342 17.172 10.6233 17.1556 10.8309C17.1534 10.8582 17.1511 10.8846 17.1488 10.9099C17.2485 10.9078 17.3507 10.9053 17.4546 10.9027C17.7807 10.8945 18.1227 10.8859 18.4531 10.8894C19.0079 10.8953 19.5746 10.9343 20.0878 11.0694C20.6029 11.2049 21.0785 11.4411 21.4334 11.8512C21.7899 12.2632 22.0031 12.8259 22.0375 13.5738L22.0378 13.5853ZM17.1132 11.1608C17.023 11.1626 16.934 11.164 16.8465 11.1647C16.8663 11.1431 16.883 11.0552 16.8972 10.9142C16.9919 9.97028 16.9706 6.64787 16.9596 4.93298C16.9561 4.39349 16.9537 4.01309 16.9562 3.91589C16.9562 2.30781 15.6479 1 14.0403 1H4.91685C3.30877 1 2.00096 2.3083 2.00096 3.91589V12.8078C1.95807 14.3876 3.36191 15.7505 4.9188 15.7296C5.80408 15.7853 6.8755 15.0677 7.88326 14.3928C8.47195 13.9985 9.03891 13.6188 9.53435 13.4163C9.62303 13.38 9.70942 13.3495 9.79324 13.3255C9.78398 13.4108 9.77861 13.4976 9.77861 13.5853V18.6581C9.77861 19.9932 10.8646 21.0793 12.1997 21.0793H15.2643C15.8285 21.142 16.4584 21.5683 17.1013 22.0033C17.867 22.5214 18.6511 23.0521 19.3647 22.9959C20.6584 23.0144 21.8229 21.8811 21.7878 20.5699V13.5853C21.6711 11.0463 19.3938 11.1038 17.4705 11.1524C17.3498 11.1554 17.2305 11.1584 17.1132 11.1608ZM3.46991 12.8165C3.45132 13.3521 3.76636 13.813 4.22009 14.0649C4.67375 14.3168 5.23117 14.3403 5.67594 14.0405L5.68672 14.0332L5.69821 14.0271C5.93542 13.9008 6.24507 13.6986 6.60637 13.4592C6.64295 13.4349 6.68001 13.4103 6.71749 13.3855C7.04564 13.1677 7.40658 12.9282 7.7728 12.705C8.18043 12.4565 8.60261 12.2231 9.0038 12.0585C9.39559 11.8978 9.79357 11.7915 10.1503 11.8213H14.0403C14.8382 11.8213 15.4876 11.1719 15.4876 10.374V3.91589C15.4876 3.11807 14.8382 2.46861 14.0403 2.46861H4.91734C4.11952 2.46861 3.47006 3.11807 3.47006 3.91589L3.46991 12.8165ZM10.1393 12.0713H14.0403C14.9762 12.0713 15.7376 11.3099 15.7376 10.374V3.91589C15.7376 2.98 14.9762 2.21861 14.0403 2.21861H4.91734C3.98145 2.21861 3.22006 2.98 3.22006 3.91589V12.8078C3.17521 14.0996 4.74283 14.9711 5.8157 14.2477C6.09119 14.1011 6.45214 13.8616 6.85561 13.5938C7.91635 12.89 9.27099 11.9911 10.1393 12.0713ZM19.8288 21.4022C20.1369 21.2313 20.3192 20.9217 20.3192 20.5694V13.5853C20.3192 13.0605 19.8915 12.6328 19.3666 12.6328H16.2696C15.6881 13.3042 14.7017 13.495 13.7641 13.5458C13.2627 13.573 12.7503 13.5608 12.2822 13.5474C12.2493 13.5465 12.2167 13.5456 12.1843 13.5446C11.8384 13.5346 11.5227 13.5255 11.2492 13.5314C11.2482 13.5491 11.2477 13.5669 11.2477 13.5848V18.6576C11.2477 19.1825 11.6754 19.6102 12.2002 19.6102H15.2516C15.6988 19.565 16.149 19.7294 16.5671 19.9511C16.9243 20.1404 17.2879 20.3886 17.6344 20.6251C17.6995 20.6695 17.7639 20.7135 17.8276 20.7567C18.2408 21.0363 18.622 21.2791 18.9723 21.4096C19.3179 21.5383 19.5911 21.5425 19.823 21.4056L19.8288 21.4022ZM15.2648 19.8602H12.2002C11.5373 19.8602 10.9977 19.3206 10.9977 18.6576V13.5848C10.9977 13.4829 11.0109 13.384 11.0348 13.2894C11.3612 13.2707 11.7582 13.2822 12.1877 13.2946C13.6111 13.3358 15.3922 13.3874 16.1505 12.3828H19.3666C20.0296 12.3828 20.5692 12.9224 20.5692 13.5853V20.5694C20.5692 21.0125 20.3376 21.4059 19.9501 21.6208C19.2533 22.0324 18.3817 21.4377 17.4905 20.8296C16.7308 20.3113 15.9569 19.7832 15.2648 19.8602ZM11.313 9.90984L11.3131 9.9134C11.313 10.3878 10.9281 10.7727 10.4537 10.7727H8.493L8.48208 10.7717C7.88047 10.7189 7.57108 10.2328 7.65353 9.77077C7.69412 9.5433 7.82888 9.33068 8.05174 9.19318C8.20875 9.0963 8.40017 9.04204 8.61953 9.03709V8.74112C7.27787 8.37716 6.27529 7.17968 6.20215 5.74393C5.83984 5.58482 5.69672 5.20475 5.72846 4.87806C5.76547 4.49697 6.04925 4.09349 6.56662 4.10155C6.76822 4.09244 7.05239 4.07971 7.30103 4.14995C7.43192 4.18693 7.56602 4.24999 7.67732 4.35879C7.79089 4.46981 7.86692 4.61509 7.90007 4.79213L7.9049 4.81793L7.90426 4.84416C7.89116 5.38686 7.91557 5.84404 8.06156 6.21321C8.16502 6.47482 8.33347 6.70164 8.61953 6.88054V5.74216C8.2603 5.58209 8.11848 5.20363 8.15008 4.87825C8.18722 4.4957 8.47301 4.09034 8.99431 4.10166H9.96336C10.4848 4.09034 10.7706 4.49549 10.8076 4.87817C10.8391 5.2035 10.6971 5.5818 10.3381 5.74202V6.88082C10.6231 6.70255 10.7916 6.47564 10.8954 6.21363C11.0419 5.84387 11.067 5.38583 11.0534 4.8444L11.0528 4.81795L11.0576 4.79195C11.0909 4.61493 11.1669 4.46967 11.2805 4.35866C11.3918 4.24984 11.5259 4.18684 11.6567 4.14993C11.9042 4.08011 12.1872 4.09258 12.3884 4.10145L12.3909 4.10155C12.9086 4.09341 13.1924 4.49693 13.2292 4.87817C13.2608 5.20478 13.1176 5.58477 12.7555 5.74389C12.6824 7.17966 11.6798 8.37716 10.3381 8.74112V9.04586C10.5109 9.05235 10.6898 9.08444 10.8485 9.16046C10.9752 9.2212 11.0932 9.31214 11.1792 9.44307C11.2657 9.57463 11.3105 9.73202 11.313 9.90984ZM10.3381 9.29607C10.7091 9.31232 11.0567 9.46564 11.063 9.9134C11.063 10.2497 10.7901 10.5227 10.4537 10.5227H8.50395C7.66203 10.4488 7.67359 9.31303 8.61953 9.28713C8.69664 9.28502 8.77996 9.29028 8.86953 9.30409V8.54368C7.48373 8.26047 6.43962 7.02578 6.44791 5.55809C5.74892 5.43574 5.85128 4.33363 6.56977 4.35166C6.99092 4.33265 7.55587 4.31218 7.65433 4.83813C7.6301 5.84194 7.72443 6.69869 8.61953 7.16842C8.69676 7.20894 8.77994 7.24659 8.86953 7.2812V5.55809C8.17054 5.43623 8.2729 4.33363 8.99139 4.35166H9.96628C10.6853 4.33363 10.7866 5.43574 10.0881 5.55809V7.2812C10.1777 7.24674 10.2609 7.20918 10.3381 7.16868C11.2309 6.70058 11.3285 5.84038 11.3033 4.83813C11.4023 4.31169 11.9663 4.33314 12.3879 4.35166C13.1069 4.33363 13.2083 5.43574 12.5098 5.55809C12.518 7.02578 11.4739 8.26047 10.0881 8.54368V9.30409C10.1702 9.29568 10.2548 9.29241 10.3381 9.29607ZM19.1355 15.1093C19.1355 15.5837 18.7506 15.9686 18.2762 15.9686H13.2911C12.8167 15.9686 12.4318 15.5837 12.4318 15.1093C12.4318 14.6349 12.8167 14.25 13.2911 14.25H18.2762C18.7506 14.25 19.1355 14.6349 19.1355 15.1093ZM15.121 18.3118C14.3235 18.3084 14.325 17.0966 15.121 17.0932H18.2762C18.6126 17.0932 18.8855 17.3662 18.8855 17.7025C18.8855 18.0388 18.6126 18.3118 18.2762 18.3118H15.121ZM18.2762 15.7186C18.6126 15.7186 18.8855 15.4456 18.8855 15.1093C18.8855 14.773 18.6126 14.5 18.2762 14.5H13.2911C12.9548 14.5 12.6818 14.773 12.6818 15.1093C12.6818 15.4456 12.9548 15.7186 13.2911 15.7186H18.2762Z\" fill=\"#F9F9F9\"/> </svg>'},ZBNt2ChBE:{customStrokeWidth:1,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.8563 3.88777C17.5352 3.15853 18.6696 3.09794 19.4224 3.75073L19.4843 3.80447C19.4844 3.80455 19.4842 3.80439 19.4843 3.80447C20.2296 4.45109 20.3365 5.56904 19.727 6.34492L13.2578 14.5795C12.781 15.1863 11.8935 15.2707 11.3109 14.7647L9.83328 13.4812C9.25662 12.9803 9.21 12.1012 9.73045 11.5421L16.8563 3.88777ZM18.1005 5.04616L11.2216 12.4353L12.1481 13.2401L18.3901 5.29479C18.3901 5.29478 18.3901 5.29481 18.3901 5.29479C18.4396 5.23184 18.4309 5.14117 18.3705 5.08877L18.3086 5.03505C18.2475 4.9821 18.1556 4.98701 18.1005 5.04616ZM7.88591 13.2524C8.29951 13.1998 8.62719 13.3806 8.82173 13.5505L11.2909 15.7072C11.666 16.0348 11.8653 16.5854 11.6706 17.1282C11.5385 17.4962 11.2405 18.2069 10.6975 18.7265C10.4142 18.9975 10.0347 19.2449 9.55325 19.334C9.06302 19.4247 8.55456 19.335 8.05177 19.0785C7.33469 18.7127 6.86942 18.7823 6.61791 18.8698C6.47855 18.9183 6.3754 18.9832 6.31101 19.0318C6.27911 19.0559 6.25814 19.0749 6.24858 19.084C6.24781 19.0847 6.24713 19.0854 6.24652 19.086L5.51488 19.9257L4.90213 18.9764L5.61627 18.5154C4.90213 18.9764 4.90238 18.9768 4.90213 18.9764L4.90113 18.9748L4.90003 18.9731L4.89757 18.9693L4.8916 18.9597C4.88717 18.9526 4.88184 18.9439 4.87572 18.9337C4.86351 18.9132 4.8481 18.8865 4.8304 18.854C4.79507 18.7892 4.75009 18.7003 4.70287 18.5905C4.60914 18.3726 4.50233 18.0624 4.44904 17.6878C4.33922 16.9156 4.46533 15.9002 5.30908 14.9319C6.40786 13.6708 7.33273 13.3226 7.88591 13.2524ZM6.11525 17.2454C6.8096 17.0195 7.73467 17.0083 8.82432 17.5641C9.04972 17.6791 9.17926 17.6743 9.2439 17.6624C9.31735 17.6488 9.40959 17.6059 9.5222 17.4982C9.70572 17.3226 9.85731 17.0582 9.96817 16.809L7.89486 14.9981C7.64717 15.097 7.19232 15.3583 6.59079 16.0487C6.20347 16.4932 6.10787 16.9093 6.11525 17.2454Z\" fill=\"#F9F9F9\"/> </svg>'},zKsmuETa_:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M15.7257 7.60166C15.5807 7.38953 15.3384 7.24854 15.1041 7.11221C14.8539 6.96665 14.6176 6.82914 14.5547 6.63561C14.502 6.47381 14.5045 6.28107 14.5069 6.09466C14.5107 5.80205 14.5146 5.49947 14.308 5.28714C14.1465 5.12107 13.922 5.09342 13.7239 5.06902C13.4857 5.03967 13.3363 5.01369 13.2679 4.85592C13.2031 4.70603 13.2731 4.48982 13.3408 4.28069C13.4275 4.01291 13.5259 3.70937 13.3282 3.49649C13.1819 3.33887 13.0216 3.26756 12.8802 3.20466C12.724 3.13514 12.589 3.07509 12.4779 2.90918C12.4065 2.80255 12.362 2.57111 12.319 2.34727C12.2486 1.98138 12.1759 1.60301 11.9502 1.4585C11.8595 1.40039 11.7549 1.38543 11.6394 1.41393C11.2653 1.50623 11.2771 2.15668 11.2908 2.90981C11.3005 3.4458 11.3126 4.11287 11.1266 4.2373C11.0268 4.30398 10.7136 4.28693 10.2392 4.09846C9.67671 3.87498 9.24716 3.55551 9.2134 3.40846C9.18197 3.27201 9.2657 3.12675 9.3626 2.95854C9.49032 2.73681 9.6493 2.46089 9.52094 2.14026C9.37105 1.76616 8.77086 1.58329 8.51977 1.52206C8.08738 1.41656 7.48886 1.37402 7.22514 1.60119C6.99711 1.79784 6.99188 2.16128 6.98679 2.51276C6.98306 2.77112 6.97885 3.06398 6.85903 3.114C6.7598 3.15552 6.66792 3.08826 6.49589 2.93594C6.30372 2.76579 6.0645 2.55397 5.72313 2.66983C5.42949 2.76924 5.12531 3.22686 4.77314 3.75673C4.444 4.25187 4.07099 4.81308 3.7127 5.03925C3.37985 5.24928 2.88289 5.38328 2.40229 5.51286C1.80914 5.6728 1.29686 5.81092 1.08628 6.08145C0.693437 6.58652 0.701159 7.9548 0.826464 8.37938C0.89911 8.62621 1.06711 8.82282 1.22957 9.01296C1.35997 9.16561 1.49481 9.32341 1.58635 9.51088C1.7929 9.93359 1.80729 10.9717 1.68913 11.2091C1.64186 11.3038 1.53306 11.3551 1.41787 11.4095C1.26791 11.4802 1.08131 11.5682 1.06275 11.7853C1.05567 11.8671 1.08056 11.9932 1.23945 12.1294C1.48736 12.342 1.9881 12.5023 2.39708 12.4025C2.72179 12.3232 2.93098 12.1064 3.11555 11.9151C3.24209 11.784 3.35138 11.6707 3.46751 11.6343C3.57089 11.6018 3.78847 11.6753 3.98048 11.7401C4.30471 11.8495 4.64002 11.9627 4.88264 11.8047C5.11005 11.6567 5.16952 11.4606 5.22197 11.2876C5.25973 11.1631 5.29235 11.0556 5.38328 10.97C5.61497 10.7516 6.93697 10.3554 7.39453 10.4066C7.8483 10.4577 8.39994 10.821 8.57167 11.0993C8.63105 11.1957 8.63593 11.3731 8.64062 11.5446C8.64859 11.8347 8.65949 12.2321 9.03743 12.2597C9.32641 12.2809 9.50335 11.9835 9.67477 11.6958C9.81897 11.4537 9.96796 11.2035 10.1324 11.2333C10.2938 11.2627 10.2387 11.6772 10.1943 12.0103C10.1482 12.3571 10.1045 12.6847 10.2165 12.8814C10.3749 13.1595 10.6686 13.1918 10.9276 13.2204C11.0949 13.2388 11.2529 13.2562 11.3781 13.3291C11.495 13.3974 11.5684 13.5188 11.6535 13.6595C11.7896 13.8844 11.9589 14.1643 12.376 14.2487C12.4615 14.2659 12.556 14.2742 12.6568 14.2742C13.3546 14.2742 14.3498 13.8783 14.6588 13.3319C14.84 13.0111 14.8234 12.6613 14.8074 12.3231C14.7931 12.0216 14.7796 11.7368 14.9036 11.4884C15.0263 11.2428 15.2022 11.0639 15.3723 10.8909C15.5804 10.6792 15.7955 10.4605 15.902 10.1295C16.0935 9.53378 16.031 8.04816 15.7257 7.60166Z\" fill=\"#F9F9F9\"/> <path d=\"M14.0186 14.7839C13.7941 14.6665 13.6019 14.7813 13.4474 14.8736C13.3345 14.9411 13.2276 15.0048 13.1074 15.0012C13.0002 14.9979 12.8887 14.9138 12.7707 14.8246C12.5833 14.683 12.3499 14.5068 12.0771 14.6832C11.9855 14.7424 11.9265 14.8345 11.9016 14.9568C11.8265 15.327 12.0918 15.8796 12.2244 16.0748C12.4063 16.3428 12.7192 16.6621 13.1768 16.6621C13.1774 16.6621 13.1779 16.6621 13.1784 16.6621C13.6405 16.6614 13.9988 16.2054 14.1236 15.9645C14.3083 15.6086 14.4327 15.0006 14.0186 14.7839Z\" fill=\"#F9F9F9\"/> <path d=\"M22.9624 12.5028C22.8552 12.4762 22.7417 12.4979 22.6518 12.5621L22.4843 12.6815C22.3291 12.7923 22.1326 12.8282 21.9483 12.7793C21.8609 12.7562 21.7795 12.7148 21.7093 12.658L21.6145 12.5812C21.4226 12.4259 21.3112 12.1922 21.3112 11.9453C21.3112 11.6174 21.1154 11.3211 20.8137 11.1926L20.767 11.1727C20.5221 11.0683 20.3363 10.8604 20.2602 10.6053L20.2108 10.4397C20.1166 10.1242 19.9029 9.85794 19.6153 9.69766L19.4319 9.5955C19.3741 9.56326 19.3232 9.51982 19.2823 9.46773L19.0279 9.14383C18.9802 9.08316 18.8905 9.07726 18.8353 9.13116C18.7932 9.17232 18.7841 9.23671 18.8131 9.28794L20.0929 11.5427C20.1936 11.7201 20.2675 11.9115 20.3122 12.1106L20.3304 12.1919C20.3856 12.4375 20.3854 12.6924 20.3299 12.938L20.1998 13.5141C20.1668 13.6602 20.0684 13.7829 19.933 13.8469L19.8255 13.8977C19.7209 13.9472 19.6542 14.0525 19.6542 14.1682C19.6542 14.2743 19.7103 14.3724 19.8017 14.4262L20.2414 14.6846C20.3977 14.7765 20.5135 14.9241 20.5654 15.0978L20.5913 15.1841C20.6241 15.2938 20.6163 15.4116 20.5693 15.516L20.5553 15.5471C20.4202 15.8477 20.64 16.1876 20.9696 16.1876C21.126 16.1876 21.2715 16.1071 21.3545 15.9745L21.9221 15.068C21.9898 14.96 22.0329 14.8384 22.0486 14.7119L22.0722 14.5198C22.0972 14.3174 22.2321 14.1453 22.4227 14.0726L22.5022 14.0423C22.5384 14.0285 22.5776 14.0242 22.616 14.03C22.7186 14.0453 22.8185 13.9887 22.8581 13.8928L23.2211 13.0145C23.3095 12.8007 23.187 12.5584 22.9624 12.5028Z\" fill=\"#F9F9F9\"/> <path d=\"M14.8365 22.5614C14.898 22.5614 14.9575 22.5396 15.0044 22.4998C15.1892 22.3434 15.0785 22.0416 14.8365 22.0416H14.6605C14.5274 22.0416 14.4158 22.1421 14.402 22.2745C14.386 22.4279 14.5063 22.5614 14.6605 22.5614H14.8365Z\" fill=\"#F9F9F9\"/> <path d=\"M19.6418 17.0027C19.7585 16.8415 19.8214 16.6475 19.8214 16.4485V16.3782C19.8214 16.3005 19.8061 16.2236 19.7763 16.1518L19.7255 16.0293C19.6648 15.8826 19.5216 15.787 19.3629 15.787H19.1712C19.0602 15.787 18.9703 15.6971 18.9703 15.5861C18.9703 15.4751 18.8803 15.3852 18.7694 15.3852H18.7488C18.6648 15.3852 18.588 15.4327 18.5505 15.5079L18.0882 16.4352C18.0504 16.5109 17.9851 16.5693 17.9056 16.5983C17.8303 16.6259 17.7675 16.6799 17.729 16.7502L17.1052 17.8896C16.8842 18.2931 16.5215 18.6003 16.0871 18.7517C15.6995 18.8868 15.3676 19.1465 15.1431 19.4901L14.4027 20.6238C14.305 20.7734 14.2719 20.956 14.3109 21.1304C14.3786 21.4327 14.647 21.6477 14.9569 21.6477H15.7022C16.1349 21.6477 16.549 21.4716 16.8492 21.16L16.9443 21.0613C17.1544 20.8431 17.3098 20.5781 17.3977 20.2882L17.5718 19.7135C17.6871 19.3331 17.9952 19.0422 18.3816 18.9491L18.8412 18.8382C18.8852 18.8276 18.9219 18.7974 18.9407 18.7563C18.9691 18.6944 18.9514 18.6212 18.8981 18.5791L18.8421 18.5349C18.7641 18.4732 18.7325 18.3697 18.763 18.275L18.7813 18.2179C18.7918 18.1853 18.8074 18.1546 18.8275 18.1268L19.6418 17.0027Z\" fill=\"#F9F9F9\"/> </svg>'},ZU0ulmGW4:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M2 6V15C2 16.6569 3.34315 18 5 18H9.58152C9.32622 17.3693 9.14901 16.6986 9.06189 16H5C4.44772 16 4 15.5523 4 15V6C4 5.44772 4.44772 5 5 5H19C19.5523 5 20 5.44772 20 6V7.58152C20.7257 7.87526 21.3984 8.27238 22 8.75463V6C22 4.34315 20.6569 3 19 3H5C3.34315 3 2 4.34315 2 6Z\" fill=\"#F9F9F9\"/> <path d=\"M6 19H10.0703C10.5057 19.7528 11.0604 20.4281 11.7084 21H6C5.44772 21 5 20.5523 5 20C5 19.4477 5.44772 19 6 19Z\" fill=\"#F9F9F9\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.8429 9.46284C18.7685 9.25627 18.5969 9.10095 18.3855 9.06814C18.0964 9.02327 17.8003 9 17.4989 9C17.2002 9 16.9067 9.02286 16.6199 9.06697C16.409 9.09941 16.2377 9.25425 16.1634 9.46031L16.0172 9.86606C15.8641 10.291 15.5327 10.6175 15.1514 10.8434C14.7727 11.0678 14.3402 11.1942 13.9096 11.1184L13.4831 11.0433C13.2712 11.006 13.0536 11.081 12.9187 11.2535C12.5537 11.7202 12.2553 12.2438 12.0385 12.8094C11.9598 13.0145 12.0052 13.2458 12.1427 13.4149L12.4172 13.7525C12.6977 14.0975 12.808 14.55 12.808 15.0001C12.808 15.4504 12.6977 15.903 12.4171 16.2481L12.1428 16.5854C12.0053 16.7545 11.9599 16.9857 12.0386 17.1909C12.2555 17.7565 12.5539 18.2802 12.919 18.7469C13.0539 18.9193 13.2715 18.9944 13.4834 18.9571L13.91 18.882C14.3405 18.8062 14.7729 18.9324 15.1515 19.1568C15.5327 19.3827 15.864 19.7091 16.0171 20.1339L16.1633 20.5397C16.2375 20.7457 16.4088 20.9005 16.6197 20.933C16.9065 20.9771 17.2001 21 17.4989 21C17.8004 21 18.0965 20.9767 18.3857 20.9319C18.5971 20.899 18.7687 20.7437 18.8431 20.5372L18.9915 20.1251C19.1434 19.7034 19.4719 19.379 19.8501 19.1544C20.2269 18.9306 20.6575 18.8049 21.0862 18.8804L21.5156 18.9559C21.7273 18.9932 21.9449 18.9182 22.0797 18.7458C22.4457 18.2777 22.7446 17.7523 22.9615 17.1849C23.0401 16.9792 22.9945 16.7476 22.8567 16.5781L22.5765 16.2335C22.2991 15.8924 22.1896 15.4452 22.1896 15.0001C22.1896 14.5552 22.2991 14.108 22.5764 13.767L22.8568 13.4222C22.9946 13.2527 23.0402 13.021 22.9616 12.8153C22.7448 12.248 22.4459 11.7227 22.08 11.2547C21.9452 11.0822 21.7277 11.0071 21.5159 11.0444L21.0866 11.12C20.6578 11.1955 20.2271 11.0696 19.8501 10.8458C19.4719 10.6211 19.1433 10.2967 18.9914 9.87482L18.8429 9.46284ZM17.4998 17C18.5713 17 19.4401 16.1046 19.4401 15C19.4401 13.8954 18.5713 13 17.4998 13C16.4282 13 15.5595 13.8954 15.5595 15C15.5595 16.1046 16.4282 17 17.4998 17Z\" fill=\"#F9F9F9\"/> </svg>'},ZyXA6G0Ht:{customStrokeWidth:4,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13 5C13 4.44772 13.4477 4 14 4H19C19.5523 4 20 4.44772 20 5V10C20 10.5523 19.5523 11 19 11H14C13.4477 11 13 10.5523 13 10V5ZM14.8 9.2V5.8H18.2V9.2H14.8Z\" fill=\"white\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 13C4 12.4477 4.44772 12 5 12H19C19.5523 12 20 12.4477 20 13V18C20 18.5523 19.5523 19 19 19H5C4.44772 19 4 18.5523 4 18V13ZM5.8 17.2V13.8H18.2V17.2H5.8Z\" fill=\"white\"/> <path d=\"M5 8C4.44772 8 4 8.44772 4 9V10C4 10.5523 4.44772 11 5 11H11C11.5523 11 12 10.5523 12 10V9C12 8.44772 11.5523 8 11 8H5Z\" fill=\"white\"/> <path d=\"M4 5C4 4.44772 4.44772 4 5 4H11C11.5523 4 12 4.44772 12 5V6C12 6.55228 11.5523 7 11 7H5C4.44772 7 4 6.55228 4 6V5Z\" fill=\"white\"/> </svg>'}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gKWyH.framer-16wsrwm, .framer-gKWyH .framer-16wsrwm { display: block; }\",\".framer-gKWyH.framer-mmgj09 { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-gKWyH .framer-13agzzw-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-gKWyH.framer-v-br82ts.framer-mmgj09, .framer-gKWyH.framer-v-1fwf52t.framer-mmgj09, .framer-gKWyH.framer-v-1dbpdpt.framer-mmgj09, .framer-gKWyH.framer-v-1xl502r.framer-mmgj09, .framer-gKWyH.framer-v-1nrc4a3.framer-mmgj09, .framer-gKWyH.framer-v-106pveb.framer-mmgj09, .framer-gKWyH.framer-v-1svwnhn.framer-mmgj09, .framer-gKWyH.framer-v-ixa1gl.framer-mmgj09, .framer-gKWyH.framer-v-1y01ogw.framer-mmgj09, .framer-gKWyH.framer-v-q4ruyv.framer-mmgj09, .framer-gKWyH.framer-v-49sd7j.framer-mmgj09, .framer-gKWyH.framer-v-1cww1r3.framer-mmgj09, .framer-gKWyH.framer-v-6mp1a2.framer-mmgj09, .framer-gKWyH.framer-v-fgjs9y.framer-mmgj09, .framer-gKWyH.framer-v-pxlxgj.framer-mmgj09, .framer-gKWyH.framer-v-j3vvf0.framer-mmgj09, .framer-gKWyH.framer-v-1o522r4.framer-mmgj09, .framer-gKWyH.framer-v-ba1bm4.framer-mmgj09, .framer-gKWyH.framer-v-180muwf.framer-mmgj09, .framer-gKWyH.framer-v-17px7in.framer-mmgj09, .framer-gKWyH.framer-v-q9cs40.framer-mmgj09, .framer-gKWyH.framer-v-3quylj.framer-mmgj09, .framer-gKWyH.framer-v-1ulyz2b.framer-mmgj09, .framer-gKWyH.framer-v-m2bw6z.framer-mmgj09, .framer-gKWyH.framer-v-has60g.framer-mmgj09, .framer-gKWyH.framer-v-1eqzay.framer-mmgj09, .framer-gKWyH.framer-v-1ul7on3.framer-mmgj09, .framer-gKWyH.framer-v-4qqdjg.framer-mmgj09, .framer-gKWyH.framer-v-1g4vyk4.framer-mmgj09, .framer-gKWyH.framer-v-9euwwn.framer-mmgj09, .framer-gKWyH.framer-v-1vtopd8.framer-mmgj09, .framer-gKWyH.framer-v-p9yjmi.framer-mmgj09, .framer-gKWyH.framer-v-1ga2r6o.framer-mmgj09, .framer-gKWyH.framer-v-zt5akw.framer-mmgj09, .framer-gKWyH.framer-v-uya567.framer-mmgj09, .framer-gKWyH.framer-v-k0m4el.framer-mmgj09, .framer-gKWyH.framer-v-1wunmim.framer-mmgj09, .framer-gKWyH.framer-v-1veqmi.framer-mmgj09, .framer-gKWyH.framer-v-1hsdp92.framer-mmgj09, .framer-gKWyH.framer-v-1qua9aa.framer-mmgj09, .framer-gKWyH.framer-v-1nx4l9y.framer-mmgj09, .framer-gKWyH.framer-v-1u7aenf.framer-mmgj09, .framer-gKWyH.framer-v-1t9zjsd.framer-mmgj09, .framer-gKWyH.framer-v-1j0sn4w.framer-mmgj09, .framer-gKWyH.framer-v-fwabzc.framer-mmgj09, .framer-gKWyH.framer-v-1mum0z9.framer-mmgj09, .framer-gKWyH.framer-v-1k83zsv.framer-mmgj09, .framer-gKWyH.framer-v-i9atnz.framer-mmgj09, .framer-gKWyH.framer-v-d3cb3j.framer-mmgj09, .framer-gKWyH.framer-v-hkj8y0.framer-mmgj09, .framer-gKWyH.framer-v-sc9lbd.framer-mmgj09, .framer-gKWyH.framer-v-1hi96eo.framer-mmgj09, .framer-gKWyH.framer-v-lc8c8c.framer-mmgj09, .framer-gKWyH.framer-v-iifl1n.framer-mmgj09, .framer-gKWyH.framer-v-fezoua.framer-mmgj09, .framer-gKWyH.framer-v-16j3edr.framer-mmgj09, .framer-gKWyH.framer-v-stoqmh.framer-mmgj09, .framer-gKWyH.framer-v-1tuxzwn.framer-mmgj09, .framer-gKWyH.framer-v-ssfx2d.framer-mmgj09, .framer-gKWyH.framer-v-1iri6xv.framer-mmgj09, .framer-gKWyH.framer-v-8gjw37.framer-mmgj09, .framer-gKWyH.framer-v-5d2v4h.framer-mmgj09, .framer-gKWyH.framer-v-182p0qr.framer-mmgj09, .framer-gKWyH.framer-v-12shfjl.framer-mmgj09, .framer-gKWyH.framer-v-4rf7v3.framer-mmgj09, .framer-gKWyH.framer-v-qmvuts.framer-mmgj09, .framer-gKWyH.framer-v-yumdb6.framer-mmgj09, .framer-gKWyH.framer-v-dujl0d.framer-mmgj09, .framer-gKWyH.framer-v-1sowhnd.framer-mmgj09, .framer-gKWyH.framer-v-1vo0oy8.framer-mmgj09, .framer-gKWyH.framer-v-1kjaawn.framer-mmgj09, .framer-gKWyH.framer-v-1dvi6lf.framer-mmgj09, .framer-gKWyH.framer-v-1j21wr.framer-mmgj09, .framer-gKWyH.framer-v-kiogxj.framer-mmgj09, .framer-gKWyH.framer-v-f9lhky.framer-mmgj09, .framer-gKWyH.framer-v-dhua8b.framer-mmgj09, .framer-gKWyH.framer-v-1q6jupb.framer-mmgj09, .framer-gKWyH.framer-v-1c35192.framer-mmgj09, .framer-gKWyH.framer-v-17znp5c.framer-mmgj09, .framer-gKWyH.framer-v-18qen7a.framer-mmgj09, .framer-gKWyH.framer-v-btmom7.framer-mmgj09, .framer-gKWyH.framer-v-1qf60vm.framer-mmgj09, .framer-gKWyH.framer-v-117w8kk.framer-mmgj09, .framer-gKWyH.framer-v-11z9iy5.framer-mmgj09, .framer-gKWyH.framer-v-2va211.framer-mmgj09, .framer-gKWyH.framer-v-12f12oa.framer-mmgj09, .framer-gKWyH.framer-v-eaof0t.framer-mmgj09, .framer-gKWyH.framer-v-1vn3zzh.framer-mmgj09, .framer-gKWyH.framer-v-g1yo5s.framer-mmgj09 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-gKWyH.framer-v-1hy6n1j.framer-mmgj09, .framer-gKWyH.framer-v-1lmjhv8.framer-mmgj09 { height: 12px; width: 17px; }\",\".framer-gKWyH.framer-v-1hy6n1j .framer-13agzzw-container, .framer-gKWyH.framer-v-1lmjhv8 .framer-13agzzw-container { aspect-ratio: 1.4166666666666667 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 13px); left: -1px; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a7w1V2syf\":{\"layout\":[\"fixed\",\"fixed\"]},\"kI_X3d4oy\":{\"layout\":[\"fixed\",\"fixed\"]},\"CmxhQL0iU\":{\"layout\":[\"fixed\",\"fixed\"]},\"CgxxA7v8C\":{\"layout\":[\"fixed\",\"fixed\"]},\"nbSd1sRPM\":{\"layout\":[\"fixed\",\"fixed\"]},\"rFqqOxng1\":{\"layout\":[\"fixed\",\"fixed\"]},\"xzdnmrTzP\":{\"layout\":[\"fixed\",\"fixed\"]},\"rJpUafGPx\":{\"layout\":[\"fixed\",\"fixed\"]},\"Rb_MQJEGQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"A8aZu73Gx\":{\"layout\":[\"fixed\",\"fixed\"]},\"iW0dgcEKM\":{\"layout\":[\"fixed\",\"fixed\"]},\"oModJrobm\":{\"layout\":[\"fixed\",\"fixed\"]},\"pf02o_SYH\":{\"layout\":[\"fixed\",\"fixed\"]},\"z22IDWhtB\":{\"layout\":[\"fixed\",\"fixed\"]},\"s4md3BmG7\":{\"layout\":[\"fixed\",\"fixed\"]},\"hpa6rAjQu\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ap0ieXV9Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZU0ulmGW4\":{\"layout\":[\"fixed\",\"fixed\"]},\"P_aSaI0q7\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fbm2C3rnt\":{\"layout\":[\"fixed\",\"fixed\"]},\"yhQcOvcJp\":{\"layout\":[\"fixed\",\"fixed\"]},\"WcgRxTpJm\":{\"layout\":[\"fixed\",\"fixed\"]},\"n6MXPMTt_\":{\"layout\":[\"fixed\",\"fixed\"]},\"vN_LpY1_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"UnrSesXeA\":{\"layout\":[\"fixed\",\"fixed\"]},\"XZ70CM0Gg\":{\"layout\":[\"fixed\",\"fixed\"]},\"RJ3nOAE40\":{\"layout\":[\"fixed\",\"fixed\"]},\"fa_KyHs05\":{\"layout\":[\"fixed\",\"fixed\"]},\"XVdNhsPs6\":{\"layout\":[\"fixed\",\"fixed\"]},\"FGCFXkoXk\":{\"layout\":[\"fixed\",\"fixed\"]},\"yEo8RjWD2\":{\"layout\":[\"fixed\",\"fixed\"]},\"Xa5FaZUpH\":{\"layout\":[\"fixed\",\"fixed\"]},\"XN2rLF8k_\":{\"layout\":[\"fixed\",\"fixed\"]},\"bihN73WTA\":{\"layout\":[\"fixed\",\"fixed\"]},\"VaqLpZO9Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"kOYY0G93O\":{\"layout\":[\"fixed\",\"fixed\"]},\"zKsmuETa_\":{\"layout\":[\"fixed\",\"fixed\"]},\"v4JiMx8LD\":{\"layout\":[\"fixed\",\"fixed\"]},\"NgbJ4fEO9\":{\"layout\":[\"fixed\",\"fixed\"]},\"vgAPSi05W\":{\"layout\":[\"fixed\",\"fixed\"]},\"ckD9DlPFU\":{\"layout\":[\"fixed\",\"fixed\"]},\"wfhLQOQmd\":{\"layout\":[\"fixed\",\"fixed\"]},\"EKcIxqCwM\":{\"layout\":[\"fixed\",\"fixed\"]},\"ro4khTkxK\":{\"layout\":[\"fixed\",\"fixed\"]},\"gg7pMFcSi\":{\"layout\":[\"fixed\",\"fixed\"]},\"wYvIBsVXu\":{\"layout\":[\"fixed\",\"fixed\"]},\"MesFwc7oH\":{\"layout\":[\"fixed\",\"fixed\"]},\"amhiyctBz\":{\"layout\":[\"fixed\",\"fixed\"]},\"ExI14lsZH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z7kGKbE1p\":{\"layout\":[\"fixed\",\"fixed\"]},\"Aug8aiWtC\":{\"layout\":[\"fixed\",\"fixed\"]},\"YzC0MGfyY\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fh3vPHl13\":{\"layout\":[\"fixed\",\"fixed\"]},\"w2D4f5is3\":{\"layout\":[\"fixed\",\"fixed\"]},\"z5z2SpQyC\":{\"layout\":[\"fixed\",\"fixed\"]},\"gqDwCengR\":{\"layout\":[\"fixed\",\"fixed\"]},\"vvA0mfEuN\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZBNt2ChBE\":{\"layout\":[\"fixed\",\"fixed\"]},\"Iyb7v2YS9\":{\"layout\":[\"fixed\",\"fixed\"]},\"nIUEec1IL\":{\"layout\":[\"fixed\",\"fixed\"]},\"Rl8SKdyZE\":{\"layout\":[\"fixed\",\"fixed\"]},\"psXRJ3lwM\":{\"layout\":[\"fixed\",\"fixed\"]},\"RbgacZv_a\":{\"layout\":[\"fixed\",\"fixed\"]},\"cqQOIJ5lk\":{\"layout\":[\"fixed\",\"fixed\"]},\"BRZMBizuc\":{\"layout\":[\"fixed\",\"fixed\"]},\"YxMlo2Qht\":{\"layout\":[\"fixed\",\"fixed\"]},\"XT8HNTYgw\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ut8Fuz7b5\":{\"layout\":[\"fixed\",\"fixed\"]},\"dfR2opBO7\":{\"layout\":[\"fixed\",\"fixed\"]},\"l5XRSZkyf\":{\"layout\":[\"fixed\",\"fixed\"]},\"yzzCVUVsS\":{\"layout\":[\"fixed\",\"fixed\"]},\"puvoZLScD\":{\"layout\":[\"fixed\",\"fixed\"]},\"kRejliewt\":{\"layout\":[\"fixed\",\"fixed\"]},\"S0tB1WdJ7\":{\"layout\":[\"fixed\",\"fixed\"]},\"MKinesVzO\":{\"layout\":[\"fixed\",\"fixed\"]},\"PiBGPnWxu\":{\"layout\":[\"fixed\",\"fixed\"]},\"HkGsc7YTU\":{\"layout\":[\"fixed\",\"fixed\"]},\"kLZf9xw3x\":{\"layout\":[\"fixed\",\"fixed\"]},\"lUZ0pev5Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"sqGtAGMP8\":{\"layout\":[\"fixed\",\"fixed\"]},\"wnGkvFu0i\":{\"layout\":[\"fixed\",\"fixed\"]},\"ncwN6QtFx\":{\"layout\":[\"fixed\",\"fixed\"]},\"LA7QO5pdL\":{\"layout\":[\"fixed\",\"fixed\"]},\"lIclLPivN\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ib8nbMtS1\":{\"layout\":[\"fixed\",\"fixed\"]},\"z3SPN_1Tc\":{\"layout\":[\"fixed\",\"fixed\"]},\"F8fJHm46v\":{\"layout\":[\"fixed\",\"fixed\"]},\"dIEe7kBQG\":{\"layout\":[\"fixed\",\"fixed\"]},\"jDP5KUGBh\":{\"layout\":[\"fixed\",\"fixed\"]},\"B59ZKH8Kn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZyXA6G0Ht\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"p8vZTvEYh\":\"logoColor\",\"VIlSmxuQ7\":\"opacity\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUNUk1BKn7=withCSS(Component,css,\"framer-gKWyH\");export default FramerUNUk1BKn7;FramerUNUk1BKn7.displayName=\"Icons/SVGs\";FramerUNUk1BKn7.defaultProps={height:24,width:24};addPropertyControls(FramerUNUk1BKn7,{variant:{options:[\"C8qx0dp_I\",\"a7w1V2syf\",\"kI_X3d4oy\",\"CmxhQL0iU\",\"CgxxA7v8C\",\"nbSd1sRPM\",\"rFqqOxng1\",\"xzdnmrTzP\",\"rJpUafGPx\",\"Rb_MQJEGQ\",\"A8aZu73Gx\",\"iW0dgcEKM\",\"oModJrobm\",\"pf02o_SYH\",\"z22IDWhtB\",\"s4md3BmG7\",\"hpa6rAjQu\",\"Ap0ieXV9Y\",\"ZU0ulmGW4\",\"P_aSaI0q7\",\"Fbm2C3rnt\",\"yhQcOvcJp\",\"WcgRxTpJm\",\"n6MXPMTt_\",\"vN_LpY1_M\",\"UnrSesXeA\",\"XZ70CM0Gg\",\"RJ3nOAE40\",\"fa_KyHs05\",\"XVdNhsPs6\",\"FGCFXkoXk\",\"yEo8RjWD2\",\"Xa5FaZUpH\",\"XN2rLF8k_\",\"bihN73WTA\",\"VaqLpZO9Q\",\"kOYY0G93O\",\"zKsmuETa_\",\"v4JiMx8LD\",\"NgbJ4fEO9\",\"vgAPSi05W\",\"ckD9DlPFU\",\"wfhLQOQmd\",\"EKcIxqCwM\",\"ro4khTkxK\",\"gg7pMFcSi\",\"wYvIBsVXu\",\"MesFwc7oH\",\"amhiyctBz\",\"ExI14lsZH\",\"Z7kGKbE1p\",\"Aug8aiWtC\",\"YzC0MGfyY\",\"Fh3vPHl13\",\"w2D4f5is3\",\"z5z2SpQyC\",\"gqDwCengR\",\"vvA0mfEuN\",\"ZBNt2ChBE\",\"Iyb7v2YS9\",\"nIUEec1IL\",\"Rl8SKdyZE\",\"psXRJ3lwM\",\"RbgacZv_a\",\"cqQOIJ5lk\",\"BRZMBizuc\",\"YxMlo2Qht\",\"XT8HNTYgw\",\"Ut8Fuz7b5\",\"dfR2opBO7\",\"l5XRSZkyf\",\"yzzCVUVsS\",\"puvoZLScD\",\"kRejliewt\",\"S0tB1WdJ7\",\"MKinesVzO\",\"PiBGPnWxu\",\"HkGsc7YTU\",\"kLZf9xw3x\",\"lUZ0pev5Q\",\"sqGtAGMP8\",\"wnGkvFu0i\",\"ncwN6QtFx\",\"LA7QO5pdL\",\"lIclLPivN\",\"Ib8nbMtS1\",\"z3SPN_1Tc\",\"F8fJHm46v\",\"dIEe7kBQG\",\"jDP5KUGBh\",\"B59ZKH8Kn\",\"ZyXA6G0Ht\"],optionTitles:[\"Base\",\"Neuroscience\",\"Management\",\"Strategy\",\"Research\",\"UIUX\",\"3D\",\"Visual\",\"Marketing\",\"Industrial Design\",\"Photography\",\"Coaching\",\"Teaching\",\"Web\",\"Mobile\",\"Tablet\",\"Desktop\",\"Touch\",\"Machinery\",\"Vehicle\",\"Embedded\",\"Wearable\",\"Packaging\",\"Print\",\"Digital\",\"Glass\",\"Wood\",\"Plastic\",\"Metal\",\"Spline\",\"Framer\",\"Figma\",\"All\",\"Rive\",\"Arctic\",\"S. America\",\"Europe\",\"Oceania\",\"N. America\",\"Asia\",\"Mountain\",\"Liveaboard\",\"Iceabreaker\",\"Island\",\"Tent\",\"Prarie\",\"Forest\",\"Medieval town\",\"City\",\"Village\",\"Psychology\",\"Mental Health\",\"Art History\",\"Rowing\",\"Animation\",\"Productivity\",\"Human Evolution\",\"Medical\",\"Watercolor\",\"Agile\",\"Story Mapping\",\"Facilitation\",\"Illustration\",\"Graph\",\"List\",\"Grad\",\"Solo\",\"IC\",\"Lead\",\"Project Management\",\"In-house\",\"Agency\",\"Freelance\",\"Mentoring\",\"No-Code\",\"Dev\",\"Product Design\",\"Courses\",\"Conferences\",\"YouTube\",\"Podcasts\",\"Books\",\"Assets\",\"Hubs\",\"Guidelines\",\"Web Evaluations\",\"Software\",\"Design Inspiration\",\"Portfolio Inspiration\",\"QXOne\",\"QX200\",\"Design System\"],title:\"Variant\",type:ControlType.Enum},p8vZTvEYh:{defaultValue:'var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249)) /* {\"name\":\"White\"} */',title:\"Logo Color\",type:ControlType.Color},VIlSmxuQ7:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity\",type:ControlType.Number}});addFonts(FramerUNUk1BKn7,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUNUk1BKn7\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"p8vZTvEYh\\\":\\\"logoColor\\\",\\\"VIlSmxuQ7\\\":\\\"opacity\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a7w1V2syf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kI_X3d4oy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CmxhQL0iU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CgxxA7v8C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nbSd1sRPM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rFqqOxng1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xzdnmrTzP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rJpUafGPx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Rb_MQJEGQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A8aZu73Gx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iW0dgcEKM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oModJrobm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pf02o_SYH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z22IDWhtB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s4md3BmG7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hpa6rAjQu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ap0ieXV9Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZU0ulmGW4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P_aSaI0q7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fbm2C3rnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yhQcOvcJp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WcgRxTpJm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n6MXPMTt_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vN_LpY1_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UnrSesXeA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XZ70CM0Gg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RJ3nOAE40\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fa_KyHs05\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XVdNhsPs6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FGCFXkoXk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yEo8RjWD2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Xa5FaZUpH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XN2rLF8k_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bihN73WTA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VaqLpZO9Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kOYY0G93O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zKsmuETa_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v4JiMx8LD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NgbJ4fEO9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vgAPSi05W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ckD9DlPFU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wfhLQOQmd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EKcIxqCwM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ro4khTkxK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gg7pMFcSi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wYvIBsVXu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MesFwc7oH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amhiyctBz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ExI14lsZH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z7kGKbE1p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Aug8aiWtC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YzC0MGfyY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fh3vPHl13\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w2D4f5is3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z5z2SpQyC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gqDwCengR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vvA0mfEuN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZBNt2ChBE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Iyb7v2YS9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nIUEec1IL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Rl8SKdyZE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"psXRJ3lwM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RbgacZv_a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cqQOIJ5lk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BRZMBizuc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YxMlo2Qht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XT8HNTYgw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ut8Fuz7b5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dfR2opBO7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l5XRSZkyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yzzCVUVsS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"puvoZLScD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kRejliewt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"S0tB1WdJ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MKinesVzO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PiBGPnWxu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HkGsc7YTU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kLZf9xw3x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lUZ0pev5Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sqGtAGMP8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wnGkvFu0i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ncwN6QtFx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LA7QO5pdL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lIclLPivN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ib8nbMtS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z3SPN_1Tc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F8fJHm46v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dIEe7kBQG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jDP5KUGBh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B59ZKH8Kn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZyXA6G0Ht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UNUk1BKn7.map", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"PW14UJ4Vg\",\"mhmVF74lW\"];const serializationHash=\"framer-RZBub\";const variantClassNames={mhmVF74lW:\"framer-v-7zpz7s\",PW14UJ4Vg:\"framer-v-b215gv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"PW14UJ4Vg\",Hover:\"mhmVF74lW\"};const getProps=({click,height,id,jump,left,leftBlue,leftWhite,less,more,right,rightBlue,rightBlue1,rightWhite,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,a1c6asdjH:rightBlue!==null&&rightBlue!==void 0?rightBlue:props.a1c6asdjH,cOjbyCyVa:leftBlue!==null&&leftBlue!==void 0?leftBlue:props.cOjbyCyVa,fOWtz_plD:jump!==null&&jump!==void 0?jump:props.fOWtz_plD,mIgWSxtls:right!==null&&right!==void 0?right:props.mIgWSxtls,nBFEWUHdA:less!==null&&less!==void 0?less:props.nBFEWUHdA,nRmozQ7OU:leftWhite!==null&&leftWhite!==void 0?leftWhite:props.nRmozQ7OU,oMccwC7ZT:rightWhite!==null&&rightWhite!==void 0?rightWhite:props.oMccwC7ZT,oPjF5wfnT:click!==null&&click!==void 0?click:props.oPjF5wfnT,QG21AawvB:rightBlue1!==null&&rightBlue1!==void 0?rightBlue1:props.QG21AawvB,uN4kssztf:left!==null&&left!==void 0?left:props.uN4kssztf,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PW14UJ4Vg\",voZit1wEZ:more!==null&&more!==void 0?more:props.voZit1wEZ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fOWtz_plD,oMccwC7ZT,nRmozQ7OU,a1c6asdjH,voZit1wEZ,nBFEWUHdA,oPjF5wfnT,uN4kssztf,cOjbyCyVa,mIgWSxtls,QG21AawvB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PW14UJ4Vg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapziqg40=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(oPjF5wfnT){const res=await oPjF5wfnT(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b215gv\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PW14UJ4Vg\",onTap:onTapziqg40,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({mhmVF74lW:{\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:[cOjbyCyVa&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iq64co\",\"data-framer-name\":\"Left Blue\",layoutDependency:layoutDependency,layoutId:\"xjh4bkhBr\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ktxp67\",\"data-framer-name\":\"Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fFOokdN7v\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 4.345 L 4.235 0.11 C 4.381 -0.037 4.619 -0.037 4.765 0.11 L 9 4.345\" transform=\"translate(7.5 9.655) rotate(-90 4.5 2.172)\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-7325940b-d5d1-40bd-b03a-bdbd17d47294, rgb(143, 182, 255)) /* {&quot;name&quot;:&quot;Blue Text&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10887261542,withExternalLayout:true})}),uN4kssztf&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4itmh5\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"jtew_6pXG\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2holy\",\"data-framer-name\":\"Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"t18Ecs09h\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 4.345 L 4.235 0.11 C 4.381 -0.037 4.619 -0.037 4.765 0.11 L 9 4.345\" transform=\"translate(7.5 9.655) rotate(-90 4.5 2.172)\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:12509730505,withExternalLayout:true})}),QG21AawvB&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19mqtsj\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"H8CXdk0lS\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s06h19\",\"data-framer-name\":\"Right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IjBsclnSj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 4.345 L 4.235 0.11 C 4.381 -0.037 4.619 -0.037 4.765 0.11 L 9 4.345\" transform=\"translate(7.5 9.655) rotate(90 4.5 2.172)\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-7325940b-d5d1-40bd-b03a-bdbd17d47294, rgb(143, 182, 255)) /* {&quot;name&quot;:&quot;Blue Text&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:8765912937,withExternalLayout:true})}),mIgWSxtls&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8gsm7d\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"vaXmoFXct\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-df5j4\",\"data-framer-name\":\"Right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TbOGEONi8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 4.345 L 4.235 0.11 C 4.381 -0.037 4.619 -0.037 4.765 0.11 L 9 4.345\" transform=\"translate(7.5 9.655) rotate(90 4.5 2.172)\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:10301016093,withExternalLayout:true})}),nBFEWUHdA&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yufsue\",\"data-framer-name\":\"Less\",layoutDependency:layoutDependency,layoutId:\"qHkq6R_DA\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-i00f4z\",\"data-framer-name\":\"Less\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"sRvzCCswJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 0 2.896 L 2.823 0.073 C 2.921 -0.024 3.079 -0.024 3.177 0.073 L 6 2.896\" transform=\"translate(5 7.104) rotate(360 3 1.448)\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:11843850242,withExternalLayout:true})}),voZit1wEZ&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hg7dn2\",\"data-framer-name\":\"More\",layoutDependency:layoutDependency,layoutId:\"TI9IdTbuw\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9j62pb\",\"data-framer-name\":\"More\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gw8t9I3v3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 0 2.896 L 2.823 0.073 C 2.921 -0.024 3.079 -0.024 3.177 0.073 L 6 2.896\" transform=\"translate(5 7.104) rotate(180 3 1.448)\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:9246949484,withExternalLayout:true})}),a1c6asdjH&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gsuvbx\",\"data-framer-name\":\"Right Blue\",layoutDependency:layoutDependency,layoutId:\"IT1MrEq2U\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ei6jo7\",\"data-framer-name\":\"Blue\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XspSVa2Co\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 9.37 3.667 C 9.136 3.441 8.763 3.445 8.533 3.675 C 8.303 3.906 8.3 4.278 8.526 4.513 L 11.166 7.154 L 3.597 7.154 C 3.267 7.154 3 7.421 3 7.751 C 3 8.081 3.267 8.349 3.597 8.349 L 11.166 8.349 L 8.525 10.99 C 8.37 11.14 8.308 11.362 8.363 11.571 C 8.417 11.78 8.581 11.943 8.79 11.997 C 8.998 12.052 9.22 11.989 9.37 11.834 L 12.679 8.525 C 12.885 8.32 13 8.041 13 7.751 C 13 7.46 12.885 7.182 12.679 6.976 L 9.37 3.668 Z\" fill=\"var(--token-23f6f319-ee83-42d5-bf8d-b278e5873075, rgb(102, 151, 243))\"></path></svg>',svgContentId:9885493387,withExternalLayout:true})}),nRmozQ7OU&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1li6kkk\",\"data-framer-name\":\"Left White\",layoutDependency:layoutDependency,layoutId:\"dxhEgqI6f\",style:{rotate:180},transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8qyj2u\",\"data-framer-name\":\"White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"U0gj_C1Dl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 9.37 3.667 C 9.136 3.441 8.763 3.445 8.533 3.675 C 8.303 3.906 8.3 4.278 8.526 4.513 L 11.166 7.154 L 3.597 7.154 C 3.267 7.154 3 7.421 3 7.751 C 3 8.081 3.267 8.349 3.597 8.349 L 11.166 8.349 L 8.525 10.99 C 8.37 11.14 8.308 11.362 8.363 11.571 C 8.417 11.78 8.581 11.943 8.79 11.997 C 8.998 12.052 9.22 11.989 9.37 11.834 L 12.679 8.525 C 12.885 8.32 13 8.041 13 7.751 C 13 7.46 12.885 7.182 12.679 6.976 L 9.37 3.668 Z\" fill=\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"></path></svg>',svgContentId:11348841689,withExternalLayout:true})}),oMccwC7ZT&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bnxwvx\",\"data-framer-name\":\"Right White\",layoutDependency:layoutDependency,layoutId:\"SQAzsjzqT\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g746ep\",\"data-framer-name\":\"White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WQhZqhMUi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 9.37 3.667 C 9.136 3.441 8.763 3.445 8.533 3.675 C 8.303 3.906 8.3 4.278 8.526 4.513 L 11.166 7.154 L 3.597 7.154 C 3.267 7.154 3 7.421 3 7.751 C 3 8.081 3.267 8.349 3.597 8.349 L 11.166 8.349 L 8.525 10.99 C 8.37 11.14 8.308 11.362 8.363 11.571 C 8.417 11.78 8.581 11.943 8.79 11.997 C 8.998 12.052 9.22 11.989 9.37 11.834 L 12.679 8.525 C 12.885 8.32 13 8.041 13 7.751 C 13 7.46 12.885 7.182 12.679 6.976 L 9.37 3.668 Z\" fill=\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"></path></svg>',svgContentId:11348841689,withExternalLayout:true})}),fOWtz_plD&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dk1pb7\",\"data-framer-name\":\"Jump\",layoutDependency:layoutDependency,layoutId:\"Hgx01jxlC\",transformTemplate:transformTemplate1,...addPropertyOverrides({mhmVF74lW:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ssszft\",\"data-framer-name\":\"White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"U3fQmlrsO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 10\"><path d=\"M 2.895 1 C 2.546 1 2.263 1.283 2.263 1.632 C 2.263 1.98 2.546 2.263 2.895 2.263 L 6.844 2.263 L 1.185 7.922 C 0.938 8.169 0.938 8.568 1.185 8.815 C 1.432 9.062 1.832 9.062 2.078 8.815 L 7.737 3.156 L 7.737 7.105 C 7.737 7.454 8.02 7.737 8.368 7.737 C 8.717 7.737 9 7.454 9 7.105 L 9 2.158 C 9 1.851 8.878 1.556 8.661 1.339 L 8.661 1.339 C 8.444 1.122 8.149 1 7.842 1 Z\" fill=\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"></path></svg>',svgContentId:11938383523,withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RZBub.framer-u1k491, .framer-RZBub .framer-u1k491 { display: block; }\",\".framer-RZBub.framer-b215gv { cursor: pointer; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-RZBub .framer-iq64co, .framer-RZBub .framer-4itmh5, .framer-RZBub .framer-19mqtsj, .framer-RZBub .framer-8gsm7d, .framer-RZBub .framer-yufsue, .framer-RZBub .framer-hg7dn2, .framer-RZBub .framer-gsuvbx, .framer-RZBub .framer-1li6kkk, .framer-RZBub .framer-bnxwvx, .framer-RZBub .framer-1dk1pb7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; }\",\".framer-RZBub .framer-ktxp67, .framer-RZBub .framer-1g2holy, .framer-RZBub .framer-s06h19, .framer-RZBub .framer-df5j4 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-RZBub .framer-i00f4z, .framer-RZBub .framer-9j62pb, .framer-RZBub .framer-1ei6jo7, .framer-RZBub .framer-8qyj2u, .framer-RZBub .framer-1g746ep { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-RZBub .framer-ssszft { flex: none; height: 10px; position: relative; width: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RZBub .framer-iq64co, .framer-RZBub .framer-4itmh5, .framer-RZBub .framer-19mqtsj, .framer-RZBub .framer-8gsm7d, .framer-RZBub .framer-yufsue, .framer-RZBub .framer-hg7dn2, .framer-RZBub .framer-gsuvbx, .framer-RZBub .framer-1li6kkk, .framer-RZBub .framer-bnxwvx, .framer-RZBub .framer-1dk1pb7 { gap: 0px; } .framer-RZBub .framer-iq64co > *, .framer-RZBub .framer-4itmh5 > *, .framer-RZBub .framer-19mqtsj > *, .framer-RZBub .framer-8gsm7d > *, .framer-RZBub .framer-yufsue > *, .framer-RZBub .framer-hg7dn2 > *, .framer-RZBub .framer-gsuvbx > *, .framer-RZBub .framer-1li6kkk > *, .framer-RZBub .framer-bnxwvx > *, .framer-RZBub .framer-1dk1pb7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-RZBub .framer-iq64co > :first-child, .framer-RZBub .framer-4itmh5 > :first-child, .framer-RZBub .framer-19mqtsj > :first-child, .framer-RZBub .framer-8gsm7d > :first-child, .framer-RZBub .framer-yufsue > :first-child, .framer-RZBub .framer-hg7dn2 > :first-child, .framer-RZBub .framer-gsuvbx > :first-child, .framer-RZBub .framer-1li6kkk > :first-child, .framer-RZBub .framer-bnxwvx > :first-child, .framer-RZBub .framer-1dk1pb7 > :first-child { margin-left: 0px; } .framer-RZBub .framer-iq64co > :last-child, .framer-RZBub .framer-4itmh5 > :last-child, .framer-RZBub .framer-19mqtsj > :last-child, .framer-RZBub .framer-8gsm7d > :last-child, .framer-RZBub .framer-yufsue > :last-child, .framer-RZBub .framer-hg7dn2 > :last-child, .framer-RZBub .framer-gsuvbx > :last-child, .framer-RZBub .framer-1li6kkk > :last-child, .framer-RZBub .framer-bnxwvx > :last-child, .framer-RZBub .framer-1dk1pb7 > :last-child { margin-right: 0px; } }\",\".framer-RZBub.framer-v-7zpz7s .framer-iq64co, .framer-RZBub.framer-v-7zpz7s .framer-4itmh5 { left: -2px; }\",\".framer-RZBub.framer-v-7zpz7s .framer-19mqtsj, .framer-RZBub.framer-v-7zpz7s .framer-8gsm7d { left: unset; right: -2px; }\",\".framer-RZBub.framer-v-7zpz7s .framer-yufsue { top: 2px; }\",\".framer-RZBub.framer-v-7zpz7s .framer-gsuvbx, .framer-RZBub.framer-v-7zpz7s .framer-1li6kkk { left: unset; right: 2px; }\",\".framer-RZBub.framer-v-7zpz7s .framer-1dk1pb7 { left: 9px; top: 5px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mhmVF74lW\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fOWtz_plD\":\"jump\",\"oMccwC7ZT\":\"rightWhite\",\"nRmozQ7OU\":\"leftWhite\",\"a1c6asdjH\":\"rightBlue\",\"voZit1wEZ\":\"more\",\"nBFEWUHdA\":\"less\",\"oPjF5wfnT\":\"click\",\"uN4kssztf\":\"left\",\"cOjbyCyVa\":\"leftBlue\",\"mIgWSxtls\":\"right\",\"QG21AawvB\":\"rightBlue1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO2hC92XGp=withCSS(Component,css,\"framer-RZBub\");export default FramerO2hC92XGp;FramerO2hC92XGp.displayName=\"Merge/Arrows\";FramerO2hC92XGp.defaultProps={height:24,width:24};addPropertyControls(FramerO2hC92XGp,{variant:{options:[\"PW14UJ4Vg\",\"mhmVF74lW\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},fOWtz_plD:{defaultValue:false,title:\"Jump\",type:ControlType.Boolean},oMccwC7ZT:{defaultValue:false,title:\"Right White\",type:ControlType.Boolean},nRmozQ7OU:{defaultValue:false,title:\"Left White\",type:ControlType.Boolean},a1c6asdjH:{defaultValue:false,title:\"Right Blue\",type:ControlType.Boolean},voZit1wEZ:{defaultValue:false,title:\"More\",type:ControlType.Boolean},nBFEWUHdA:{defaultValue:false,title:\"Less\",type:ControlType.Boolean},oPjF5wfnT:{title:\"Click\",type:ControlType.EventHandler},uN4kssztf:{defaultValue:false,title:\"Left\",type:ControlType.Boolean},cOjbyCyVa:{defaultValue:false,title:\"Left Blue\",type:ControlType.Boolean},mIgWSxtls:{defaultValue:false,title:\"Right\",type:ControlType.Boolean},QG21AawvB:{defaultValue:false,title:\"Right Blue\",type:ControlType.Boolean}});addFonts(FramerO2hC92XGp,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO2hC92XGp\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"fOWtz_plD\\\":\\\"jump\\\",\\\"oMccwC7ZT\\\":\\\"rightWhite\\\",\\\"nRmozQ7OU\\\":\\\"leftWhite\\\",\\\"a1c6asdjH\\\":\\\"rightBlue\\\",\\\"voZit1wEZ\\\":\\\"more\\\",\\\"nBFEWUHdA\\\":\\\"less\\\",\\\"oPjF5wfnT\\\":\\\"click\\\",\\\"uN4kssztf\\\":\\\"left\\\",\\\"cOjbyCyVa\\\":\\\"leftBlue\\\",\\\"mIgWSxtls\\\":\\\"right\\\",\\\"QG21AawvB\\\":\\\"rightBlue1\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mhmVF74lW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O2hC92XGp.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import IconsSVGs from\"https://framerusercontent.com/modules/Xf9MfdXWGkpDtRhYsTCB/dUeDH1n7RFWhvmavGdGJ/UNUk1BKn7.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vLqe0EyqVUdl30Bv8OA2/vwK2tzeX1esjSmvnilUW/kTwzovQtg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aMGMD1iMx6RTvJVYOEOg/qXLnVLv5UKGLTKALROy8/Qm0vexgyT.js\";import MergeArrows from\"https://framerusercontent.com/modules/T3sLsU9qsawr2uOCBLVV/njKscvbl1VY32HGxUTBL/O2hC92XGp.js\";const MergeArrowsFonts=getFonts(MergeArrows);const ClipboardFonts=getFonts(Clipboard);const IconsSVGsFonts=getFonts(IconsSVGs);const SVGFonts=getFonts(SVG);const enabledGestures={ARE5EiLYF:{hover:true,pressed:true},bV2FSbDaE:{hover:true,pressed:true},EOBXJ4E9L:{hover:true,pressed:true},Fch_HIcbg:{hover:true,pressed:true},Go3CPKagl:{hover:true,pressed:true},hZ8vpvgli:{hover:true},mgvS_glXb:{hover:true,pressed:true},pCUPl4ldi:{hover:true,pressed:true},PomV3ZyCr:{hover:true,pressed:true},RCncj2vxO:{hover:true,pressed:true},Tio90FjQ8:{hover:true,pressed:true},VzYb8p4Zo:{hover:true,pressed:true},Xs0WNE7qi:{hover:true,pressed:true},XSmYOvNDe:{hover:true,pressed:true},yS3EdUiap:{hover:true,pressed:true}};const cycleOrder=[\"Xs0WNE7qi\",\"EOBXJ4E9L\",\"XSmYOvNDe\",\"bV2FSbDaE\",\"Fch_HIcbg\",\"Go3CPKagl\",\"hZ8vpvgli\",\"Tio90FjQ8\",\"VzYb8p4Zo\",\"RCncj2vxO\",\"sKf5w8n4u\",\"mgvS_glXb\",\"PomV3ZyCr\",\"yS3EdUiap\",\"pCUPl4ldi\",\"ARE5EiLYF\",\"z4Q8F7O9h\"];const serializationHash=\"framer-MDARY\";const variantClassNames={ARE5EiLYF:\"framer-v-zily6v\",bV2FSbDaE:\"framer-v-1h3ccei\",EOBXJ4E9L:\"framer-v-1l6mowp\",Fch_HIcbg:\"framer-v-1abdnqe\",Go3CPKagl:\"framer-v-1lp7pp9\",hZ8vpvgli:\"framer-v-zkhg50\",mgvS_glXb:\"framer-v-eg7yn9\",pCUPl4ldi:\"framer-v-1kvhopw\",PomV3ZyCr:\"framer-v-tsy5wy\",RCncj2vxO:\"framer-v-sx0k8g\",sKf5w8n4u:\"framer-v-1wxrfbq\",Tio90FjQ8:\"framer-v-a8bgs8\",VzYb8p4Zo:\"framer-v-o0uecc\",Xs0WNE7qi:\"framer-v-35nxdo\",XSmYOvNDe:\"framer-v-c1jc95\",yS3EdUiap:\"framer-v-uqyjy8\",z4Q8F7O9h:\"framer-v-107p4y8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Footer Link\":\"mgvS_glXb\",\"No background\":\"hZ8vpvgli\",\"Right-Blue\":\"Fch_HIcbg\",\"Right-White\":\"bV2FSbDaE\",Blue:\"Xs0WNE7qi\",Copy:\"RCncj2vxO\",Grey:\"sKf5w8n4u\",Jump:\"EOBXJ4E9L\",Left:\"yS3EdUiap\",Less:\"VzYb8p4Zo\",More:\"Tio90FjQ8\",NavbarButton:\"PomV3ZyCr\",Play:\"ARE5EiLYF\",Playing:\"z4Q8F7O9h\",Right:\"pCUPl4ldi\"};const getProps=({click,distribute,height,id,link,text,width,...props})=>{return{...props,A7rcxhH8W:humanReadableEnumMap[distribute]??distribute??props.A7rcxhH8W??\"center\",AX1ASqtWq:link??props.AX1ASqtWq,mOQOIesRW:text??props.mOQOIesRW??\"TITLE\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Xs0WNE7qi\",XAQG8lIQm:click??props.XAQG8lIQm};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,AX1ASqtWq,mOQOIesRW,A7rcxhH8W,XAQG8lIQm,eHdizBA3e,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Xs0WNE7qi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr63bdg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XAQG8lIQm){const res=await XAQG8lIQm(...args);if(res===false)return false;}});const onTap1ty23gx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XAQG8lIQm){const res=await XAQG8lIQm(...args);if(res===false)return false;}setVariant(\"sKf5w8n4u\");});const onTap4nc003=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XAQG8lIQm){const res=await XAQG8lIQm(...args);if(res===false)return false;}setVariant(\"RCncj2vxO\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"hZ8vpvgli-hover\",\"yS3EdUiap-hover\",\"yS3EdUiap-pressed\",\"pCUPl4ldi-hover\",\"pCUPl4ldi-pressed\",\"ARE5EiLYF-hover\",\"ARE5EiLYF-pressed\"].includes(gestureVariant))return false;if([\"hZ8vpvgli\",\"yS3EdUiap\",\"pCUPl4ldi\",\"ARE5EiLYF\",\"z4Q8F7O9h\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"EOBXJ4E9L-hover\",\"EOBXJ4E9L-pressed\",\"bV2FSbDaE-hover\",\"bV2FSbDaE-pressed\",\"Fch_HIcbg-hover\",\"Fch_HIcbg-pressed\",\"Tio90FjQ8-hover\",\"Tio90FjQ8-pressed\",\"VzYb8p4Zo-hover\",\"VzYb8p4Zo-pressed\",\"mgvS_glXb-hover\",\"mgvS_glXb-pressed\",\"yS3EdUiap-hover\",\"yS3EdUiap-pressed\",\"pCUPl4ldi-hover\",\"pCUPl4ldi-pressed\"].includes(gestureVariant))return true;if([\"EOBXJ4E9L\",\"bV2FSbDaE\",\"Fch_HIcbg\",\"Tio90FjQ8\",\"VzYb8p4Zo\",\"mgvS_glXb\",\"yS3EdUiap\",\"pCUPl4ldi\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"RCncj2vxO-hover\",\"RCncj2vxO-pressed\"].includes(gestureVariant))return true;if(baseVariant===\"RCncj2vxO\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"hZ8vpvgli-hover\")return true;if(baseVariant===\"hZ8vpvgli\")return true;return false;};const isDisplayed4=()=>{if([\"ARE5EiLYF-hover\",\"ARE5EiLYF-pressed\"].includes(gestureVariant))return true;if([\"ARE5EiLYF\",\"z4Q8F7O9h\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:AX1ASqtWq,motionChild:true,nodeId:\"Xs0WNE7qi\",openInNewTab:false,scopeId:\"eyyhYVktx\",smoothScroll:true,...addPropertyOverrides({\"ARE5EiLYF-hover\":{href:undefined},\"ARE5EiLYF-pressed\":{href:undefined},\"pCUPl4ldi-hover\":{href:undefined},\"pCUPl4ldi-pressed\":{href:undefined},\"yS3EdUiap-hover\":{href:undefined},\"yS3EdUiap-pressed\":{href:undefined},ARE5EiLYF:{href:undefined},EOBXJ4E9L:{openInNewTab:true},mgvS_glXb:{openInNewTab:true},pCUPl4ldi:{href:undefined},yS3EdUiap:{href:undefined},z4Q8F7O9h:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-35nxdo\",className,classNames)} framer-15jtkw2`,\"data-border\":true,\"data-framer-name\":\"Blue\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Xs0WNE7qi\",onTap:onTapr63bdg,ref:refBinding,style:{\"--96c1d9\":A7rcxhH8W,\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-45d12601-e5cd-4799-b168-993ac94cf9bc, rgba(249, 249, 249, 0.03))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-dabcefd9-f4d5-4658-b904-425f390c5563, rgba(21, 75, 176, 0.15))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:1,...style},variants:{\"ARE5EiLYF-hover\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"ARE5EiLYF-pressed\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"bV2FSbDaE-hover\":{opacity:1},\"bV2FSbDaE-pressed\":{opacity:1},\"EOBXJ4E9L-hover\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"EOBXJ4E9L-pressed\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"Fch_HIcbg-hover\":{opacity:1},\"Fch_HIcbg-pressed\":{opacity:1},\"Go3CPKagl-hover\":{opacity:1},\"Go3CPKagl-pressed\":{opacity:1},\"hZ8vpvgli-hover\":{opacity:1},\"mgvS_glXb-hover\":{opacity:1},\"mgvS_glXb-pressed\":{opacity:1},\"pCUPl4ldi-hover\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"pCUPl4ldi-pressed\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"PomV3ZyCr-hover\":{backgroundColor:\"var(--token-59fd8ae1-0926-4fb9-a13f-cfdf37a10474, rgb(21, 43, 85))\",opacity:1},\"PomV3ZyCr-pressed\":{backgroundColor:\"var(--token-59fd8ae1-0926-4fb9-a13f-cfdf37a10474, rgb(21, 43, 85))\",opacity:1},\"RCncj2vxO-hover\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"RCncj2vxO-pressed\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"Tio90FjQ8-hover\":{opacity:1},\"Tio90FjQ8-pressed\":{opacity:1},\"VzYb8p4Zo-hover\":{opacity:1},\"VzYb8p4Zo-pressed\":{opacity:1},\"Xs0WNE7qi-hover\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"Xs0WNE7qi-pressed\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"XSmYOvNDe-hover\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"XSmYOvNDe-pressed\":{backgroundColor:\"var(--token-e8b78872-0329-4908-bf8e-9e44a6581551, rgba(249, 249, 249, 0.1))\",opacity:1},\"yS3EdUiap-hover\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},\"yS3EdUiap-pressed\":{backgroundColor:\"var(--token-4358e162-4924-4a17-9eb3-d6d1bc7efdc2, rgba(47, 108, 222, 0.3))\",opacity:1},ARE5EiLYF:{backgroundColor:\"var(--token-dabcefd9-f4d5-4658-b904-425f390c5563, rgba(19, 69, 161, 0.25))\"},bV2FSbDaE:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},EOBXJ4E9L:{backgroundColor:\"var(--token-8ef804f2-04fb-4296-be43-81b8e8d56dc6, rgba(249, 249, 249, 0.03))\"},Fch_HIcbg:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},Go3CPKagl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},hZ8vpvgli:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},mgvS_glXb:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},pCUPl4ldi:{backgroundColor:\"var(--token-dabcefd9-f4d5-4658-b904-425f390c5563, rgba(19, 69, 161, 0.25))\"},PomV3ZyCr:{backgroundColor:\"var(--token-bd02522f-6ada-4077-b056-a84e48dd5dbf, rgb(12, 24, 53))\"},RCncj2vxO:{backgroundColor:\"var(--token-8ef804f2-04fb-4296-be43-81b8e8d56dc6, rgba(249, 249, 249, 0.03))\"},sKf5w8n4u:{backgroundColor:\"var(--token-8ef804f2-04fb-4296-be43-81b8e8d56dc6, rgba(249, 249, 249, 0.03))\"},Tio90FjQ8:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},VzYb8p4Zo:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},XSmYOvNDe:{backgroundColor:\"var(--token-8ef804f2-04fb-4296-be43-81b8e8d56dc6, rgba(249, 249, 249, 0.03))\"},yS3EdUiap:{backgroundColor:\"var(--token-dabcefd9-f4d5-4658-b904-425f390c5563, rgba(19, 69, 161, 0.25))\"},z4Q8F7O9h:{backgroundColor:\"var(--token-dabcefd9-f4d5-4658-b904-425f390c5563, rgba(19, 69, 161, 0.25))\",opacity:.3}},...addPropertyOverrides({\"ARE5EiLYF-hover\":{\"data-framer-name\":undefined},\"ARE5EiLYF-pressed\":{\"data-framer-name\":undefined},\"bV2FSbDaE-hover\":{\"data-framer-name\":undefined},\"bV2FSbDaE-pressed\":{\"data-framer-name\":undefined},\"EOBXJ4E9L-hover\":{\"data-framer-name\":undefined},\"EOBXJ4E9L-pressed\":{\"data-framer-name\":undefined},\"Fch_HIcbg-hover\":{\"data-framer-name\":undefined},\"Fch_HIcbg-pressed\":{\"data-framer-name\":undefined},\"Go3CPKagl-hover\":{\"data-framer-name\":undefined},\"Go3CPKagl-pressed\":{\"data-framer-name\":undefined},\"hZ8vpvgli-hover\":{\"data-framer-name\":undefined},\"mgvS_glXb-hover\":{\"data-framer-name\":undefined},\"mgvS_glXb-pressed\":{\"data-framer-name\":undefined},\"pCUPl4ldi-hover\":{\"data-framer-name\":undefined},\"pCUPl4ldi-pressed\":{\"data-framer-name\":undefined},\"PomV3ZyCr-hover\":{\"data-framer-name\":undefined},\"PomV3ZyCr-pressed\":{\"data-framer-name\":undefined},\"RCncj2vxO-hover\":{\"data-framer-name\":undefined},\"RCncj2vxO-pressed\":{\"data-framer-name\":undefined},\"Tio90FjQ8-hover\":{\"data-framer-name\":undefined},\"Tio90FjQ8-pressed\":{\"data-framer-name\":undefined},\"VzYb8p4Zo-hover\":{\"data-framer-name\":undefined},\"VzYb8p4Zo-pressed\":{\"data-framer-name\":undefined},\"Xs0WNE7qi-hover\":{\"data-framer-name\":undefined},\"Xs0WNE7qi-pressed\":{\"data-framer-name\":undefined},\"XSmYOvNDe-hover\":{\"data-framer-name\":undefined},\"XSmYOvNDe-pressed\":{\"data-framer-name\":undefined},\"yS3EdUiap-hover\":{\"data-framer-name\":undefined},\"yS3EdUiap-pressed\":{\"data-framer-name\":undefined},ARE5EiLYF:{\"data-framer-name\":\"Play\"},bV2FSbDaE:{\"data-framer-name\":\"Right-White\"},EOBXJ4E9L:{\"data-framer-name\":\"Jump\"},Fch_HIcbg:{\"data-framer-name\":\"Right-Blue\"},Go3CPKagl:{\"data-framer-name\":\"No background\"},hZ8vpvgli:{\"data-framer-name\":\"No background\"},mgvS_glXb:{\"data-framer-name\":\"Footer Link\"},pCUPl4ldi:{\"data-framer-name\":\"Right\"},PomV3ZyCr:{\"data-framer-name\":\"NavbarButton\"},RCncj2vxO:{\"data-framer-name\":\"Copy\",onTap:onTap1ty23gx},sKf5w8n4u:{\"data-framer-name\":\"Grey\",onTap:onTap4nc003},Tio90FjQ8:{\"data-framer-name\":\"More\"},VzYb8p4Zo:{\"data-framer-name\":\"Less\"},XSmYOvNDe:{\"data-framer-name\":\"Grey\"},yS3EdUiap:{\"data-framer-name\":\"Left\"},z4Q8F7O9h:{\"data-framer-name\":\"Playing\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",children:\"TITLE\"})}),className:\"framer-18ug54m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tir0i5CWp\",style:{opacity:1},text:mOQOIesRW,variants:{\"bV2FSbDaE-hover\":{opacity:1},\"bV2FSbDaE-pressed\":{opacity:1},\"EOBXJ4E9L-hover\":{opacity:1},\"EOBXJ4E9L-pressed\":{opacity:1},\"Fch_HIcbg-hover\":{opacity:1},\"Fch_HIcbg-pressed\":{opacity:1},\"Go3CPKagl-hover\":{opacity:1},\"Go3CPKagl-pressed\":{opacity:1},\"mgvS_glXb-hover\":{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"},\"mgvS_glXb-pressed\":{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"},\"Tio90FjQ8-hover\":{\"--extracted-1w1cjl5\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",opacity:1},\"Tio90FjQ8-pressed\":{\"--extracted-1w1cjl5\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",opacity:1},\"VzYb8p4Zo-hover\":{\"--extracted-1w1cjl5\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",opacity:1},\"VzYb8p4Zo-pressed\":{\"--extracted-1w1cjl5\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",opacity:1},\"Xs0WNE7qi-hover\":{opacity:1},\"Xs0WNE7qi-pressed\":{opacity:1},\"XSmYOvNDe-hover\":{opacity:1},\"XSmYOvNDe-pressed\":{opacity:1},bV2FSbDaE:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\"},EOBXJ4E9L:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\"},Fch_HIcbg:{\"--extracted-1w1cjl5\":\"var(--token-23f6f319-ee83-42d5-bf8d-b278e5873075, rgb(102, 151, 243))\"},Go3CPKagl:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\",opacity:.8},mgvS_glXb:{\"--extracted-r6o4lv\":\"var(--token-61ab9142-3698-43d4-a5e0-708c697ee2a2, rgba(249, 249, 249, 0.6))\",opacity:1},PomV3ZyCr:{opacity:1},RCncj2vxO:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\",opacity:1},sKf5w8n4u:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\",opacity:1},Tio90FjQ8:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\",opacity:.8},VzYb8p4Zo:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\",opacity:.8},XSmYOvNDe:{\"--extracted-1w1cjl5\":\"var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"mgvS_glXb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"TITLE\"})})},\"mgvS_glXb-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"TITLE\"})})},\"RCncj2vxO-hover\":{text:undefined},\"RCncj2vxO-pressed\":{text:undefined},\"Tio90FjQ8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"SHOW MORE\"})}),text:undefined},\"Tio90FjQ8-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"SHOW MORE\"})}),text:undefined},\"VzYb8p4Zo-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"SHOW LESS\"})}),text:undefined},\"VzYb8p4Zo-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"SHOW LESS\"})}),text:undefined},bV2FSbDaE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"TITLE\"})})},EOBXJ4E9L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"TITLE\"})})},Fch_HIcbg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-23f6f319-ee83-42d5-bf8d-b278e5873075, rgb(102, 151, 243)))\"},children:\"TITLE\"})})},Go3CPKagl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.17em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"RESUME\"})}),fonts:[\"CUSTOM;BR Sonoma SemiBold\"]},mgvS_glXb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-61ab9142-3698-43d4-a5e0-708c697ee2a2, rgba(249, 249, 249, 0.6)))\"},children:\"TITLE\"})})},RCncj2vxO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"COPY EMAIL\"})}),text:undefined},sKf5w8n4u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"COPIED!\"})}),text:undefined},Tio90FjQ8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"SHOW MORE\"})}),fonts:[\"CUSTOM;BR Sonoma SemiBold\"],text:undefined},VzYb8p4Zo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0JSIFNvbm9tYSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"BR Sonoma SemiBold\", \"BR Sonoma SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"SHOW LESS\"})}),fonts:[\"CUSTOM;BR Sonoma SemiBold\"],text:undefined},XSmYOvNDe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-hgipgv\",\"data-styles-preset\":\"kTwzovQtg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2d612bcf-4cc2-49ed-89d4-9109d56d833b, rgba(249, 249, 249, 0.8)))\"},children:\"TITLE\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({bV2FSbDaE:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-24)/2)},EOBXJ4E9L:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||44)-22-24)/2)},Fch_HIcbg:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-24)/2)},mgvS_glXb:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||22)-0-24)/2)},pCUPl4ldi:{height:24,width:\"24px\",y:(componentViewport?.y||0)+((componentViewport?.height||44)*.5000000000000002-12)},Tio90FjQ8:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-24)/2)},VzYb8p4Zo:{height:24,width:\"24px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-24)/2)},yS3EdUiap:{height:24,width:\"24px\",y:(componentViewport?.y||0)+((componentViewport?.height||44)*.5000000000000002-12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rz7ovi-container\",layoutDependency:layoutDependency,layoutId:\"rs4Fypb8h-container\",nodeId:\"rs4Fypb8h\",rendersWithMotion:true,scopeId:\"eyyhYVktx\",style:{opacity:1},variants:{\"bV2FSbDaE-hover\":{opacity:1},\"bV2FSbDaE-pressed\":{opacity:1},\"EOBXJ4E9L-hover\":{opacity:1},\"EOBXJ4E9L-pressed\":{opacity:1},\"mgvS_glXb-hover\":{opacity:1},\"mgvS_glXb-pressed\":{opacity:1},\"Tio90FjQ8-hover\":{opacity:1},\"Tio90FjQ8-pressed\":{opacity:1},\"VzYb8p4Zo-hover\":{opacity:1},\"VzYb8p4Zo-pressed\":{opacity:1},bV2FSbDaE:{opacity:.8},EOBXJ4E9L:{opacity:.8},Fch_HIcbg:{opacity:1},mgvS_glXb:{opacity:.6},pCUPl4ldi:{opacity:1},Tio90FjQ8:{opacity:.8},VzYb8p4Zo:{opacity:.8},yS3EdUiap:{opacity:1}},children:/*#__PURE__*/_jsx(MergeArrows,{a1c6asdjH:false,cOjbyCyVa:false,fOWtz_plD:false,height:\"100%\",id:\"rs4Fypb8h\",layoutId:\"rs4Fypb8h\",mIgWSxtls:false,nBFEWUHdA:false,nRmozQ7OU:false,oMccwC7ZT:false,QG21AawvB:false,style:{height:\"100%\",width:\"100%\"},uN4kssztf:false,variant:\"PW14UJ4Vg\",voZit1wEZ:false,width:\"100%\",...addPropertyOverrides({\"bV2FSbDaE-hover\":{variant:\"mhmVF74lW\"},\"bV2FSbDaE-pressed\":{variant:\"mhmVF74lW\"},\"EOBXJ4E9L-hover\":{variant:\"mhmVF74lW\"},\"EOBXJ4E9L-pressed\":{variant:\"mhmVF74lW\"},\"Fch_HIcbg-hover\":{variant:\"mhmVF74lW\"},\"Fch_HIcbg-pressed\":{variant:\"mhmVF74lW\"},\"mgvS_glXb-hover\":{variant:\"mhmVF74lW\"},\"mgvS_glXb-pressed\":{variant:\"mhmVF74lW\"},\"Tio90FjQ8-hover\":{variant:\"mhmVF74lW\"},\"Tio90FjQ8-pressed\":{variant:\"mhmVF74lW\"},\"VzYb8p4Zo-hover\":{variant:\"mhmVF74lW\"},\"VzYb8p4Zo-pressed\":{variant:\"mhmVF74lW\"},bV2FSbDaE:{oMccwC7ZT:true},EOBXJ4E9L:{fOWtz_plD:true},Fch_HIcbg:{a1c6asdjH:true},mgvS_glXb:{fOWtz_plD:true},pCUPl4ldi:{QG21AawvB:true},Tio90FjQ8:{voZit1wEZ:true},VzYb8p4Zo:{nBFEWUHdA:true},yS3EdUiap:{cOjbyCyVa:true}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ryb602-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tMAuxksPf-container\",nodeId:\"tMAuxksPf\",rendersWithMotion:true,scopeId:\"eyyhYVktx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,color:\"rgba(255, 255, 255, 0)\",content:\"allison@neuroxdesign.com\",fill:\"rgba(255, 255, 255, 0)\",font:{},height:\"100%\",id:\"tMAuxksPf\",isMixedBorderRadius:false,label:\"\",layoutId:\"tMAuxksPf\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hZ8vpvgli:{height:18,width:\"18px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||44)-16-18)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v1zm1h-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XXys0A9js-container\",nodeId:\"XXys0A9js\",rendersWithMotion:true,scopeId:\"eyyhYVktx\",children:/*#__PURE__*/_jsx(IconsSVGs,{height:\"100%\",id:\"XXys0A9js\",layoutId:\"XXys0A9js\",p8vZTvEYh:\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\",style:{height:\"100%\",width:\"100%\"},variant:eHdizBA3e,VIlSmxuQ7:.5,width:\"100%\",...addPropertyOverrides({\"hZ8vpvgli-hover\":{VIlSmxuQ7:.8}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k91pkx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Qz3qHmsac-container\",nodeId:\"Qz3qHmsac\",rendersWithMotion:true,scopeId:\"eyyhYVktx\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-7325940b-d5d1-40bd-b03a-bdbd17d47294, rgb(143, 182, 255))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5 5.27392C5 3.56707 6.82609 2.48176 8.32538 3.29755L20.687 10.0237C22.2531 10.8759 22.2531 13.1243 20.687 13.9764L8.32538 20.7026C6.82609 21.5184 5 20.4331 5 18.7262V5.27392Z\" fill=\"#04071E\"/> </svg>',description:\"\",height:\"100%\",id:\"Qz3qHmsac\",layoutId:\"Qz3qHmsac\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({z4Q8F7O9h:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M5.74609 3C4.7796 3 3.99609 3.7835 3.99609 4.75V19.25C3.99609 20.2165 4.7796 21 5.74609 21H9.24609C10.2126 21 10.9961 20.2165 10.9961 19.25V4.75C10.9961 3.7835 10.2126 3 9.24609 3H5.74609ZM14.7461 3C13.7796 3 12.9961 3.7835 12.9961 4.75V19.25C12.9961 20.2165 13.7796 21 14.7461 21H18.2461C19.2126 21 19.9961 20.2165 19.9961 19.25V4.75C19.9961 3.7835 19.2126 3 18.2461 3H14.7461Z\" fill=\"#04071E\"/> </svg>'}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MDARY.framer-15jtkw2, .framer-MDARY .framer-15jtkw2 { display: block; }\",\".framer-MDARY.framer-35nxdo { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 44px; justify-content: var(--96c1d9); overflow: hidden; padding: 12px 24px 10px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-MDARY .framer-18ug54m { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-MDARY .framer-1rz7ovi-container { -webkit-user-select: none; flex: none; height: 24px; position: relative; user-select: none; width: 24px; }\",\".framer-MDARY .framer-ryb602-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\".framer-MDARY .framer-v1zm1h-container { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; user-select: none; width: 18px; }\",\".framer-MDARY .framer-1k91pkx-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MDARY.framer-35nxdo { gap: 0px; } .framer-MDARY.framer-35nxdo > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-MDARY.framer-35nxdo > :first-child { margin-left: 0px; } .framer-MDARY.framer-35nxdo > :last-child { margin-right: 0px; } }\",\".framer-MDARY.framer-v-1l6mowp.framer-35nxdo, .framer-MDARY.framer-v-1lp7pp9.framer-35nxdo { padding: 12px 20px 10px 24px; }\",\".framer-MDARY.framer-v-1h3ccei.framer-35nxdo, .framer-MDARY.framer-v-1abdnqe.framer-35nxdo, .framer-MDARY.framer-v-a8bgs8.framer-35nxdo, .framer-MDARY.framer-v-o0uecc.framer-35nxdo { height: 24px; padding: 0px; }\",\".framer-MDARY.framer-v-zkhg50.framer-35nxdo { padding: 8px; width: 42px; }\",\".framer-MDARY.framer-v-eg7yn9.framer-35nxdo { gap: 0px; height: 22px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MDARY.framer-v-eg7yn9.framer-35nxdo { gap: 0px; } .framer-MDARY.framer-v-eg7yn9.framer-35nxdo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MDARY.framer-v-eg7yn9.framer-35nxdo > :first-child { margin-left: 0px; } .framer-MDARY.framer-v-eg7yn9.framer-35nxdo > :last-child { margin-right: 0px; } }\",\".framer-MDARY.framer-v-tsy5wy.framer-35nxdo { height: 42px; }\",\".framer-MDARY.framer-v-uqyjy8.framer-35nxdo, .framer-MDARY.framer-v-1kvhopw.framer-35nxdo, .framer-MDARY.framer-v-zily6v.framer-35nxdo, .framer-MDARY.framer-v-107p4y8.framer-35nxdo { justify-content: center; padding: 0px; width: 44px; }\",\".framer-MDARY.framer-v-uqyjy8 .framer-1rz7ovi-container, .framer-MDARY.framer-v-1kvhopw .framer-1rz7ovi-container { left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); z-index: 1; }\",\".framer-MDARY.framer-v-uqyjy8.hover .framer-1rz7ovi-container, .framer-MDARY.framer-v-uqyjy8.pressed .framer-1rz7ovi-container { left: calc(45.454545454545475% - 24px / 2); }\",\".framer-MDARY.framer-v-1kvhopw.hover .framer-1rz7ovi-container, .framer-MDARY.framer-v-1kvhopw.pressed .framer-1rz7ovi-container { left: calc(54.54545454545456% - 24px / 2); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-MDARY[data-border=\"true\"]::after, .framer-MDARY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 89.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"EOBXJ4E9L\":{\"layout\":[\"auto\",\"fixed\"]},\"XSmYOvNDe\":{\"layout\":[\"auto\",\"fixed\"]},\"bV2FSbDaE\":{\"layout\":[\"auto\",\"fixed\"]},\"Fch_HIcbg\":{\"layout\":[\"auto\",\"fixed\"]},\"Go3CPKagl\":{\"layout\":[\"auto\",\"fixed\"]},\"hZ8vpvgli\":{\"layout\":[\"fixed\",\"fixed\"]},\"Tio90FjQ8\":{\"layout\":[\"auto\",\"fixed\"]},\"VzYb8p4Zo\":{\"layout\":[\"auto\",\"fixed\"]},\"RCncj2vxO\":{\"layout\":[\"auto\",\"fixed\"]},\"sKf5w8n4u\":{\"layout\":[\"auto\",\"fixed\"]},\"mgvS_glXb\":{\"layout\":[\"auto\",\"fixed\"]},\"PomV3ZyCr\":{\"layout\":[\"auto\",\"fixed\"]},\"yS3EdUiap\":{\"layout\":[\"fixed\",\"fixed\"]},\"pCUPl4ldi\":{\"layout\":[\"fixed\",\"fixed\"]},\"ARE5EiLYF\":{\"layout\":[\"fixed\",\"fixed\"]},\"z4Q8F7O9h\":{\"layout\":[\"fixed\",\"fixed\"]},\"gnIKPoLTu\":{\"layout\":[\"auto\",\"fixed\"]},\"YuT1C1hzz\":{\"layout\":[\"auto\",\"fixed\"]},\"yHm7b0iDd\":{\"layout\":[\"auto\",\"fixed\"]},\"R36JF4B58\":{\"layout\":[\"auto\",\"fixed\"]},\"SBDBY0c1r\":{\"layout\":[\"auto\",\"fixed\"]},\"mQEXoSJMd\":{\"layout\":[\"auto\",\"fixed\"]},\"PEvASkGEN\":{\"layout\":[\"auto\",\"fixed\"]},\"ZaGYCInbu\":{\"layout\":[\"auto\",\"fixed\"]},\"wiphd7DYw\":{\"layout\":[\"auto\",\"fixed\"]},\"c01aX_ctK\":{\"layout\":[\"auto\",\"fixed\"]},\"lOKK0aHZV\":{\"layout\":[\"auto\",\"fixed\"]},\"mU0FKXdwH\":{\"layout\":[\"auto\",\"fixed\"]},\"mjFY09Wdq\":{\"layout\":[\"fixed\",\"fixed\"]},\"ElIfyQgIU\":{\"layout\":[\"auto\",\"fixed\"]},\"PQ7mbNwnU\":{\"layout\":[\"auto\",\"fixed\"]},\"p2YI8WyIi\":{\"layout\":[\"auto\",\"fixed\"]},\"VOqKHE2m3\":{\"layout\":[\"auto\",\"fixed\"]},\"NU_xpX1cy\":{\"layout\":[\"auto\",\"fixed\"]},\"nfpFicz5h\":{\"layout\":[\"auto\",\"fixed\"]},\"CcJF2_COc\":{\"layout\":[\"auto\",\"fixed\"]},\"ApdP6gRHX\":{\"layout\":[\"auto\",\"fixed\"]},\"oWKKsm_oI\":{\"layout\":[\"auto\",\"fixed\"]},\"VBHsu4EtZ\":{\"layout\":[\"auto\",\"fixed\"]},\"TijYME7CF\":{\"layout\":[\"fixed\",\"fixed\"]},\"RNlWupx8B\":{\"layout\":[\"fixed\",\"fixed\"]},\"qq0KT_Ogn\":{\"layout\":[\"fixed\",\"fixed\"]},\"vl0rJTIfD\":{\"layout\":[\"fixed\",\"fixed\"]},\"ViCTyFCYL\":{\"layout\":[\"fixed\",\"fixed\"]},\"iV7sM0qYC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AX1ASqtWq\":\"link\",\"mOQOIesRW\":\"text\",\"A7rcxhH8W\":\"distribute\",\"XAQG8lIQm\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereyyhYVktx=withCSS(Component,css,\"framer-MDARY\");export default FramereyyhYVktx;FramereyyhYVktx.displayName=\"Button/Buttons\";FramereyyhYVktx.defaultProps={height:44,width:89.5};addPropertyControls(FramereyyhYVktx,{variant:{options:[\"Xs0WNE7qi\",\"EOBXJ4E9L\",\"XSmYOvNDe\",\"bV2FSbDaE\",\"Fch_HIcbg\",\"Go3CPKagl\",\"hZ8vpvgli\",\"Tio90FjQ8\",\"VzYb8p4Zo\",\"RCncj2vxO\",\"sKf5w8n4u\",\"mgvS_glXb\",\"PomV3ZyCr\",\"yS3EdUiap\",\"pCUPl4ldi\",\"ARE5EiLYF\",\"z4Q8F7O9h\"],optionTitles:[\"Blue\",\"Jump\",\"Grey\",\"Right-White\",\"Right-Blue\",\"No background\",\"No background\",\"More\",\"Less\",\"Copy\",\"Grey\",\"Footer Link\",\"NavbarButton\",\"Left\",\"Right\",\"Play\",\"Playing\"],title:\"Variant\",type:ControlType.Enum},AX1ASqtWq:{title:\"Link\",type:ControlType.Link},mOQOIesRW:{defaultValue:\"TITLE\",displayTextArea:false,title:\"Text\",type:ControlType.String},A7rcxhH8W:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},XAQG8lIQm:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramereyyhYVktx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"BR Sonoma SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/PQEleuVopU2P2f1u8XyesiKFEeQ.woff2\"}]},...MergeArrowsFonts,...ClipboardFonts,...IconsSVGsFonts,...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereyyhYVktx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"89.5\",\"framerVariables\":\"{\\\"AX1ASqtWq\\\":\\\"link\\\",\\\"mOQOIesRW\\\":\\\"text\\\",\\\"A7rcxhH8W\\\":\\\"distribute\\\",\\\"XAQG8lIQm\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"EOBXJ4E9L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XSmYOvNDe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bV2FSbDaE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Fch_HIcbg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Go3CPKagl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hZ8vpvgli\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Tio90FjQ8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VzYb8p4Zo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RCncj2vxO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sKf5w8n4u\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mgvS_glXb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PomV3ZyCr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"yS3EdUiap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pCUPl4ldi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ARE5EiLYF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z4Q8F7O9h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gnIKPoLTu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YuT1C1hzz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"yHm7b0iDd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"R36JF4B58\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SBDBY0c1r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mQEXoSJMd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PEvASkGEN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZaGYCInbu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wiphd7DYw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"c01aX_ctK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lOKK0aHZV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mU0FKXdwH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mjFY09Wdq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ElIfyQgIU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PQ7mbNwnU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"p2YI8WyIi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VOqKHE2m3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"NU_xpX1cy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nfpFicz5h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CcJF2_COc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ApdP6gRHX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oWKKsm_oI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VBHsu4EtZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TijYME7CF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RNlWupx8B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qq0KT_Ogn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vl0rJTIfD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ViCTyFCYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iV7sM0qYC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eyyhYVktx.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{motion}from\"framer-motion\";export const borderPropertyControl=(hidden=null)=>({type:ControlType.Object,optional:true,hidden,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}export function EmptyState({title,subtitle,maxWidth=0}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,maxWidth:maxWidth||undefined},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,// maxWidth: 500,\nlineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}EmptyState.displayName=\"Empty State\";\nexport const __FramerMetadata__ = {\"exports\":{\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"EmptyState\":{\"type\":\"reactComponent\",\"name\":\"EmptyState\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{cloneElement}from\"react\";import{borderPropertyControl,Border}from\"https://framer.com/m/Shared-8iGD.js@eDj1MxSfupkYrrIeXQ6b\";function scrollToTop(){if(typeof window!==\"undefined\"){window.scrollTo({top:0,behavior:\"smooth\"});}}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */export default function ScrollToTopButton(props){if(props.buttonType==\"custom\"){var _props_custom,_props_style,_props_style1;let layer=(_props_custom=props.custom)===null||_props_custom===void 0?void 0:_props_custom[0];if(layer&&(((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)||((_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.height))){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...props.style}});}return /*#__PURE__*/_jsx(\"div\",{onClick:scrollToTop,style:props.style,children:layer});}return /*#__PURE__*/_jsxs(\"div\",{style:{width:props.buttonWidth,height:props.buttonHeight,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:props.fill,cursor:\"pointer\",boxShadow:props.shadows,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,...props.style},onClick:scrollToTop,children:[/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",viewBox:\"0 0 24 24\",strokeWidth:props.icon.stroke,stroke:props.icon.color,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{width:props.icon.size,height:props.icon.size},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M12 5l0 14\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18 11l-6 -6\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6 11l6 -6\"})]}),/*#__PURE__*/_jsx(Border,{...props.border})]});}ScrollToTopButton.displayName=\"Scroll-to-Top Button\";addPropertyControls(ScrollToTopButton,{buttonType:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,title:\"Button\"},custom:{type:ControlType.ComponentInstance,title:\"Custom\",description:\"Connect a custom button layer.\",hidden(props){return props.buttonType!==\"custom\";}},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true,hidden(props){return props.buttonType!==\"default\";}},icon:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"black\"},size:{type:ControlType.Number,defaultValue:24,min:1},stroke:{type:ControlType.Number,defaultValue:2,min:1,max:10,step:.1}},hidden(props){return props.buttonType!==\"default\";}},radius:{type:ControlType.FusedNumber,defaultValue:20,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden(props){return props.buttonType!==\"default\";}},border:borderPropertyControl(props=>props.buttonType!==\"default\"),shadows:{type:ControlType.BoxShadow,hidden:props=>props.buttonType!=\"default\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollToTopButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"40\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrollToTopButton.map", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-dQzEO .framer-styles-preset-cuv7x3:not(.rich-text-wrapper), .framer-dQzEO .framer-styles-preset-cuv7x3.rich-text-wrapper a { --framer-link-current-text-color: var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)) /* {\"name\":\"White 40\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, #f9f9f9); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)); --framer-link-text-decoration: none; }'];export const className=\"framer-dQzEO\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Segma Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Segma Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/hCchOeA18J1HEYUOB9zasdn5iys.woff2\"}]}];export const css=['.framer-rFM2L .framer-styles-preset-2gkd5g:not(.rich-text-wrapper), .framer-rFM2L .framer-styles-preset-2gkd5g.rich-text-wrapper p { --framer-font-family: \"BR Segma Bold\", \"BR Segma Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.3em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e0118f53-3ab2-4c12-b94d-4a2da6cd23b0, #f9f9f9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-rFM2L .framer-styles-preset-2gkd5g:not(.rich-text-wrapper), .framer-rFM2L .framer-styles-preset-2gkd5g.rich-text-wrapper p { --framer-font-family: \"BR Segma Bold\", \"BR Segma Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.3em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e0118f53-3ab2-4c12-b94d-4a2da6cd23b0, #f9f9f9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-rFM2L .framer-styles-preset-2gkd5g:not(.rich-text-wrapper), .framer-rFM2L .framer-styles-preset-2gkd5g.rich-text-wrapper p { --framer-font-family: \"BR Segma Bold\", \"BR Segma Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.3em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-e0118f53-3ab2-4c12-b94d-4a2da6cd23b0, #f9f9f9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-rFM2L\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bN72xRz5v0YMq9JsVDda/zHaIpNvBrJSa63fuazsV/pGrz6wcP6.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"j3Svxyj3u\",\"UU6JtQvjV\"];const serializationHash=\"framer-Ucriz\";const variantClassNames={j3Svxyj3u:\"framer-v-13oxmq7\",UU6JtQvjV:\"framer-v-fxhxpt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"j3Svxyj3u\",\"Variant 2\":\"UU6JtQvjV\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,qYaqcETTY:link!==null&&link!==void 0?link:props.qYaqcETTY,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"j3Svxyj3u\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qYaqcETTY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j3Svxyj3u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1bdgtq1=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"UU6JtQvjV\");});const onMouseLeaveq35sc6=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"j3Svxyj3u\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"UU6JtQvjV\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:qYaqcETTY,nodeId:\"j3Svxyj3u\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13oxmq7\",className,classNames)} framer-1e215sh`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j3Svxyj3u\",onMouseEnter:onMouseEnter1bdgtq1,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({UU6JtQvjV:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeaveq35sc6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2gkd5g\",\"data-styles-preset\":\"pGrz6wcP6\",children:\"ALLISON EHRKE\"})}),className:\"framer-25asmp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NJs1Q1wCr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{UU6JtQvjV:{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UU6JtQvjV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2gkd5g\",\"data-styles-preset\":\"pGrz6wcP6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"ALLISON EHRKE\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18upy-container\",layoutDependency:layoutDependency,layoutId:\"TFs_Px9R4-container\",children:/*#__PURE__*/_jsx(Animator,{animate:false,endCircle:false,from:2,height:\"100%\",id:\"TFs_Px9R4\",layoutId:\"TFs_Px9R4\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.6,ease:[0,0,1,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jpwcqp\",\"data-framer-name\":\"Wave 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"P4a18HFB8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 5\"><path d=\"M 0.986 1 C 3.452 1 3.945 3.5 6.904 3.5 C 9.863 3.5 9.863 1 12.822 1 C 15.781 1 15.781 3.5 18.74 3.5 C 21.699 3.5 21.699 1 24.658 1 C 27.616 1 27.616 3.5 30.575 3.5 C 33.534 3.5 33.534 1 36.493 1 C 39.452 1 39.452 3.5 42.411 3.5 C 45.37 3.5 45.37 1 48.329 1 C 51.288 1 51.288 3.5 54.247 3.5 C 57.205 3.5 57.205 1 60.164 1 C 63.123 1 63.123 3.5 66.082 3.5 C 69.041 3.5 69.041 1 72 1 C 74.959 1 74.959 3.5 77.918 3.5 C 80.877 3.5 80.877 1 83.836 1 C 86.795 1 86.795 3.5 89.753 3.5 C 92.712 3.5 92.712 1 95.671 1 C 98.63 1 98.63 3.5 101.589 3.5 C 104.548 3.5 104.548 1 107.507 1 C 110.466 1 110.466 3.5 113.425 3.5 C 116.384 3.5 115.89 1 119.342 1 C 122.795 1 122.301 3.5 125.26 3.5 C 128.219 3.5 128.219 1 131.178 1 C 134.137 1 134.137 3.5 137.096 3.5 C 140.055 3.5 140.055 1 143.014 1 L 146.5 1\" fill=\"transparent\" stroke-width=\"1.77\" stroke=\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:8859316023,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\",...addPropertyOverrides({UU6JtQvjV:{animate:true}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ucriz.framer-1e215sh, .framer-Ucriz .framer-1e215sh { display: block; }\",\".framer-Ucriz.framer-13oxmq7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 42px; justify-content: flex-start; overflow: visible; padding: 14px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Ucriz .framer-25asmp { flex: none; height: 15px; position: relative; white-space: pre; width: auto; }\",\".framer-Ucriz .framer-18upy-container { align-self: stretch; flex: none; height: 5px; position: relative; width: auto; }\",\".framer-Ucriz .framer-jpwcqp { height: 5px; position: relative; width: 145px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ucriz.framer-13oxmq7 { gap: 0px; } .framer-Ucriz.framer-13oxmq7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Ucriz.framer-13oxmq7 > :first-child { margin-top: 0px; } .framer-Ucriz.framer-13oxmq7 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"UU6JtQvjV\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"qYaqcETTY\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk3ZChwXkc=withCSS(Component,css,\"framer-Ucriz\");export default Framerk3ZChwXkc;Framerk3ZChwXkc.displayName=\"Nav/Logo\";Framerk3ZChwXkc.defaultProps={height:42,width:144};addPropertyControls(Framerk3ZChwXkc,{variant:{options:[\"j3Svxyj3u\",\"UU6JtQvjV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},qYaqcETTY:{title:\"Link\",type:ControlType.Link}});addFonts(Framerk3ZChwXkc,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...AnimatorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk3ZChwXkc\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"qYaqcETTY\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"42\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"144\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"UU6JtQvjV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8ea6382)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrollToTopButton from\"https://framerusercontent.com/modules/xLxE3xIB6g0qWxvfEbl3/eULog8G3ReyYAJkLnKQY/ScrollToTopButton.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aMGMD1iMx6RTvJVYOEOg/qXLnVLv5UKGLTKALROy8/Qm0vexgyT.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4vYiV0FndRbDXbalDcBj/rTK7z3uhbu5pNpz6RYtY/UhuEgUPNt.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/8Mxn8QXQdzDQUeFgy9zD/QEeacztLgNYQOyfWeXbw/W_wdtiY3B.js\";import ButtonButtons from\"https://framerusercontent.com/modules/sfVlx5PkPkJ9aOgDGvd3/y2aC7eNVpjnEjIJmBTKS/eyyhYVktx.js\";import NavLogo from\"https://framerusercontent.com/modules/B3qBOfyoM7HsIoGoRvfh/d0CQYJJeOZwjHmk7WMGj/k3ZChwXkc.js\";const NavLogoFonts=getFonts(NavLogo);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const ButtonButtonsFonts=getFonts(ButtonButtons);const cycleOrder=[\"t2evDZpWa\",\"U4_0rr7qB\",\"ScJalnFai\"];const serializationHash=\"framer-elQEL\";const variantClassNames={ScJalnFai:\"framer-v-ekjota\",t2evDZpWa:\"framer-v-1r2yzxt\",U4_0rr7qB:\"framer-v-anfbzp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={MD:\"U4_0rr7qB\",SM:\"ScJalnFai\",XL:\"t2evDZpWa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"t2evDZpWa\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t2evDZpWa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1r2yzxt\",className,classNames),\"data-framer-name\":\"XL\",layoutDependency:layoutDependency,layoutId:\"t2evDZpWa\",ref:refBinding,style:{...style},...addPropertyOverrides({ScJalnFai:{\"data-framer-name\":\"SM\"},U4_0rr7qB:{\"data-framer-name\":\"MD\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c95iv7\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"o6CoIFx1V\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19k4ie4\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"CChGDK9uL\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+(((componentViewport?.height||412.5)-20-392.69999999999993)/2+0+0)+0+0+0,...addPropertyOverrides({ScJalnFai:{y:undefined},U4_0rr7qB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||472.5)-20-452.69999999999993)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vrilkv-container\",layoutDependency:layoutDependency,layoutId:\"v1DyEBwbA-container\",nodeId:\"v1DyEBwbA\",rendersWithMotion:true,scopeId:\"AIPhQitPD\",children:/*#__PURE__*/_jsx(NavLogo,{height:\"100%\",id:\"v1DyEBwbA\",layoutId:\"v1DyEBwbA\",qYaqcETTY:resolvedLinks[0],variant:\"j3Svxyj3u\",width:\"100%\",...addPropertyOverrides({ScJalnFai:{qYaqcETTY:resolvedLinks[2]},U4_0rr7qB:{qYaqcETTY:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l6srf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ls572KwZa-container\",nodeId:\"ls572KwZa\",rendersWithMotion:true,scopeId:\"AIPhQitPD\",children:/*#__PURE__*/_jsx(ScrollToTopButton,{border:{color:\"var(--token-fc06e2d4-b10c-48b1-829e-6f3ac47b86e2, rgba(249, 249, 249, 0.05))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},buttonType:\"default\",custom:[],fill:\"var(--token-0cdfd604-2023-4bfc-80d8-623459b6ed68, rgba(249, 249, 249, 0.02))\",height:\"100%\",icon:{color:\"var(--token-dc8304f4-6659-44c7-a7f4-1848483b7f15, rgb(249, 249, 249))\",size:16,stroke:2},id:\"ls572KwZa\",layoutId:\"ls572KwZa\",radius:20,radiusBottomLeft:20,radiusIsMixed:false,radiusottomRight:20,radiusTopLeft:20,radiusTopRight:20,shadows:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lqixq1\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"MTtdobuyw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g1ulzz\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"nDvWEjHj1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"Pages\"})}),className:\"framer-6mx7tz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m9qumPRFi\",style:{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"OHj1p1ff6\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Home\"})})})}),className:\"framer-6rb2zc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OHj1p1ff6\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JmulO3HRu\"},motionChild:true,nodeId:\"R1Zi5RJCD\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"About\"})})})}),className:\"framer-19o21w9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R1Zi5RJCD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NdV3IMtSE\"},motionChild:true,nodeId:\"v3NuonOHh\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Portfolio\"})})})}),className:\"framer-1mkxnim\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v3NuonOHh\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MAZiKCvjW\"},motionChild:true,nodeId:\"WRCMMtZRn\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Services\"})})})}),className:\"framer-ltm9xz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WRCMMtZRn\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"scWdnjz4E\"},motionChild:true,nodeId:\"cVUKQm74g\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Resources\"})})})}),className:\"framer-1r55r5y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cVUKQm74g\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W7zQyt2KC\"},motionChild:true,nodeId:\"gSSRICNCU\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Contact me\"})})})}),className:\"framer-s7rfu5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gSSRICNCU\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11vhtz3\",\"data-framer-name\":\"Hiring Managers\",layoutDependency:layoutDependency,layoutId:\"yMOffuPSM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"For Hiring Managers\"})}),className:\"framer-r8jtuf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eEz8w6Lkc\",style:{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||412.5)-20-392.69999999999993)/2+0+0)+0+0+12+32.099999999999994,...addPropertyOverrides({ScJalnFai:{y:undefined},U4_0rr7qB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||472.5)-20-452.69999999999993)/2+0+0)+0+72+0+0+32.099999999999994}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mc6orp-container\",layoutDependency:layoutDependency,layoutId:\"vCGREsysz-container\",nodeId:\"vCGREsysz\",rendersWithMotion:true,scopeId:\"AIPhQitPD\",children:/*#__PURE__*/_jsx(ButtonButtons,{A7rcxhH8W:\"center\",AX1ASqtWq:\"https://drive.google.com/file/d/1FLKMM6kz-DRx3TIGt3rBAodn9oGcHaey/view?usp=share_link\",height:\"100%\",id:\"vCGREsysz\",layoutId:\"vCGREsysz\",mOQOIesRW:\"Resume\",style:{height:\"100%\"},variant:\"mgvS_glXb\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Ey2SZMLfF\",webPageId:\"JmulO3HRu\"},motionChild:true,nodeId:\"HhqAUp0P0\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Education\"})})})}),className:\"framer-1p0p5hc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HhqAUp0P0\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":D5ia8up4I\",webPageId:\"NdV3IMtSE\"},motionChild:true,nodeId:\"MlpnrEZUc\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Skills & tools\"})})})}),className:\"framer-l56lik\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MlpnrEZUc\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hRkrRZnpL\",webPageId:\"NdV3IMtSE\"},motionChild:true,nodeId:\"Pfhed488j\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Working rights\"})})})}),className:\"framer-1y7oqrh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pfhed488j\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":fpegfpphg\",webPageId:\"NdV3IMtSE\"},motionChild:true,nodeId:\"iVhOsVsh1\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Work examples\"})})})}),className:\"framer-n56bt4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iVhOsVsh1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ugolvi6kG\",webPageId:\"JmulO3HRu\"},motionChild:true,nodeId:\"sa88c_1dH\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Work experience\"})})})}),className:\"framer-1s3bxlg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sa88c_1dH\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":rSjRfYl2f\",webPageId:\"NdV3IMtSE\"},motionChild:true,nodeId:\"Q0x1DNMJb\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Recommendations\"})})})}),className:\"framer-1s1qico\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q0x1DNMJb\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vmof17\",\"data-framer-name\":\"Business Owners\",layoutDependency:layoutDependency,layoutId:\"zVU46SVvC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"For Business Owners\"})}),className:\"framer-1pqhw08\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E4h89L3Vz\",style:{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WtUPBbIj0\",webPageId:\"MAZiKCvjW\"},motionChild:true,nodeId:\"cBFXK2z2n\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Services\"})})})}),className:\"framer-1ryu5u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cBFXK2z2n\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JmulO3HRu\"},motionChild:true,nodeId:\"SyvqlkLyq\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"About me\"})})})}),className:\"framer-pmun54\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SyvqlkLyq\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":aYKIjyN8i\",webPageId:\"JmulO3HRu\"},motionChild:true,nodeId:\"sdbb3dq8p\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Qualifications\"})})})}),className:\"framer-1ifrk1v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sdbb3dq8p\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":S2dyq_RuI\",webPageId:\"MAZiKCvjW\"},motionChild:true,nodeId:\"tKrxP0n16\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Gallery of work\"})})})}),className:\"framer-11kd4jh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tKrxP0n16\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":GFUY4FeGg\",webPageId:\"MAZiKCvjW\"},motionChild:true,nodeId:\"YHbArE6_T\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Client testimonials\"})})})}),className:\"framer-s09vly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YHbArE6_T\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rbqp4d\",\"data-framer-name\":\"Designers\",layoutDependency:layoutDependency,layoutId:\"WRWulsKHM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249)))\"},children:\"For Designers\"})}),className:\"framer-1tj79uv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WXCKSWFdG\",style:{\"--extracted-r6o4lv\":\"var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, rgb(249, 249, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Mai_1mSfA\",webPageId:\"MAZiKCvjW\"},motionChild:true,nodeId:\"cU9jJiimX\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Mentoring\"})})})}),className:\"framer-uvnc74\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cU9jJiimX\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":FE90qb12r\",webPageId:\"scWdnjz4E\"},motionChild:true,nodeId:\"etCSJA3A1\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Learn design\"})})})}),className:\"framer-s8502y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"etCSJA3A1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":MrTJSLjRy\",webPageId:\"scWdnjz4E\"},motionChild:true,nodeId:\"Lv4VntHk4\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Design tools\"})})})}),className:\"framer-1vy2xk8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lv4VntHk4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":qVQKQJ7nA\",webPageId:\"scWdnjz4E\"},motionChild:true,nodeId:\"vnqFFzdyx\",openInNewTab:false,scopeId:\"AIPhQitPD\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Design Inspiration\"})})})}),className:\"framer-1u9mz4l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vnqFFzdyx\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y06amv\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"KUVdHrdqP\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1e4ffb5d-9d07-464c-99e4-e5a70e6247a2, rgba(249, 249, 249, 0.08))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oiync5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"WnxFJkLHr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)))\"},children:\"\\xa9 2025 Allison Ehrke. All rights reserved.\"})}),className:\"framer-5m3gpl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nlJz7s5WK\",style:{\"--extracted-r6o4lv\":\"var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)))\"},children:\"Handmade with \u2661 in Aotearoa\"})}),className:\"framer-g0vezo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Jlr7G0wH9\",style:{\"--extracted-r6o4lv\":\"var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vsr6de\",\"data-framer-name\":\"LinksStack\",layoutDependency:layoutDependency,layoutId:\"bWik6Lq88\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/allisonehrke/\",motionChild:true,nodeId:\"ORM2vjQWr\",openInNewTab:true,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cuv7x3\",\"data-styles-preset\":\"W_wdtiY3B\",children:\"Linkedin\"})})})}),className:\"framer-skqgdy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ORM2vjQWr\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)))\"},children:\"/\"})}),className:\"framer-l0k4a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k90kOLUdd\",style:{\"--extracted-r6o4lv\":\"var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:\"https://adplist.org/mentors/allison-ehrke\",motionChild:true,nodeId:\"w5wrF8JNG\",openInNewTab:true,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cuv7x3\",\"data-styles-preset\":\"W_wdtiY3B\",children:\"ADPList\"})})})}),className:\"framer-11fbulb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w5wrF8JNG\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4)))\"},children:\"/\"})}),className:\"framer-1s7ziak\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GG7dgZJeq\",style:{\"--extracted-r6o4lv\":\"var(--token-360ac8fc-9ae2-41a5-a488-f8714e2e8c6e, rgba(249, 249, 249, 0.4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-68wpyd\",\"data-styles-preset\":\"Qm0vexgyT\",children:/*#__PURE__*/_jsx(Link,{href:\"https://mentorcruise.com/mentor/allisonehrke/\",motionChild:true,nodeId:\"OvE7rnl1d\",openInNewTab:true,scopeId:\"AIPhQitPD\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-cuv7x3\",\"data-styles-preset\":\"W_wdtiY3B\",children:\"MentorCruise\"})})})}),className:\"framer-5l5rr1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OvE7rnl1d\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-elQEL.framer-f24ahn, .framer-elQEL .framer-f24ahn { display: block; }\",\".framer-elQEL.framer-1r2yzxt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 1200px; }\",\".framer-elQEL .framer-1c95iv7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-elQEL .framer-19k4ie4 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-elQEL .framer-vrilkv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-elQEL .framer-l6srf-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-elQEL .framer-lqixq1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 695px; }\",\".framer-elQEL .framer-1g1ulzz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 100px; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-elQEL .framer-6mx7tz, .framer-elQEL .framer-6rb2zc, .framer-elQEL .framer-19o21w9, .framer-elQEL .framer-1mkxnim, .framer-elQEL .framer-ltm9xz, .framer-elQEL .framer-1r55r5y, .framer-elQEL .framer-s7rfu5, .framer-elQEL .framer-r8jtuf, .framer-elQEL .framer-1p0p5hc, .framer-elQEL .framer-l56lik, .framer-elQEL .framer-1y7oqrh, .framer-elQEL .framer-n56bt4, .framer-elQEL .framer-1s3bxlg, .framer-elQEL .framer-1s1qico, .framer-elQEL .framer-1pqhw08, .framer-elQEL .framer-1ryu5u, .framer-elQEL .framer-pmun54, .framer-elQEL .framer-1ifrk1v, .framer-elQEL .framer-11kd4jh, .framer-elQEL .framer-s09vly, .framer-elQEL .framer-1tj79uv, .framer-elQEL .framer-uvnc74, .framer-elQEL .framer-s8502y, .framer-elQEL .framer-1vy2xk8, .framer-elQEL .framer-1u9mz4l, .framer-elQEL .framer-5m3gpl, .framer-elQEL .framer-g0vezo, .framer-elQEL .framer-skqgdy, .framer-elQEL .framer-l0k4a, .framer-elQEL .framer-11fbulb, .framer-elQEL .framer-1s7ziak, .framer-elQEL .framer-5l5rr1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-elQEL .framer-11vhtz3, .framer-elQEL .framer-1vmof17 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 140px; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-elQEL .framer-1mc6orp-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-elQEL .framer-rbqp4d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 120px; overflow: hidden; padding: 12px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-elQEL .framer-y06amv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-elQEL .framer-1oiync5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-elQEL .framer-1vsr6de { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 52px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-elQEL.framer-1r2yzxt, .framer-elQEL .framer-1c95iv7, .framer-elQEL .framer-lqixq1, .framer-elQEL .framer-1g1ulzz, .framer-elQEL .framer-11vhtz3, .framer-elQEL .framer-1vmof17, .framer-elQEL .framer-rbqp4d, .framer-elQEL .framer-1oiync5, .framer-elQEL .framer-1vsr6de { gap: 0px; } .framer-elQEL.framer-1r2yzxt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-elQEL.framer-1r2yzxt > :first-child, .framer-elQEL .framer-1g1ulzz > :first-child, .framer-elQEL .framer-11vhtz3 > :first-child, .framer-elQEL .framer-1vmof17 > :first-child, .framer-elQEL .framer-rbqp4d > :first-child { margin-top: 0px; } .framer-elQEL.framer-1r2yzxt > :last-child, .framer-elQEL .framer-1g1ulzz > :last-child, .framer-elQEL .framer-11vhtz3 > :last-child, .framer-elQEL .framer-1vmof17 > :last-child, .framer-elQEL .framer-rbqp4d > :last-child { margin-bottom: 0px; } .framer-elQEL .framer-1c95iv7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-elQEL .framer-1c95iv7 > :first-child, .framer-elQEL .framer-lqixq1 > :first-child, .framer-elQEL .framer-1oiync5 > :first-child, .framer-elQEL .framer-1vsr6de > :first-child { margin-left: 0px; } .framer-elQEL .framer-1c95iv7 > :last-child, .framer-elQEL .framer-lqixq1 > :last-child, .framer-elQEL .framer-1oiync5 > :last-child, .framer-elQEL .framer-1vsr6de > :last-child { margin-right: 0px; } .framer-elQEL .framer-lqixq1 > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } .framer-elQEL .framer-1g1ulzz > *, .framer-elQEL .framer-11vhtz3 > *, .framer-elQEL .framer-1vmof17 > *, .framer-elQEL .framer-rbqp4d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-elQEL .framer-1oiync5 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-elQEL .framer-1vsr6de > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-elQEL.framer-v-anfbzp.framer-1r2yzxt { width: 800px; }\",\".framer-elQEL.framer-v-anfbzp .framer-1c95iv7, .framer-elQEL.framer-v-ekjota .framer-1c95iv7 { flex-direction: column; gap: 30px; }\",\".framer-elQEL.framer-v-anfbzp .framer-19k4ie4, .framer-elQEL.framer-v-ekjota .framer-19k4ie4 { align-self: unset; flex: none; flex-direction: row; height: min-content; width: 100%; }\",\".framer-elQEL.framer-v-anfbzp .framer-lqixq1 { width: 100%; }\",\".framer-elQEL.framer-v-anfbzp .framer-1g1ulzz, .framer-elQEL.framer-v-anfbzp .framer-11vhtz3, .framer-elQEL.framer-v-anfbzp .framer-1vmof17, .framer-elQEL.framer-v-anfbzp .framer-rbqp4d, .framer-elQEL.framer-v-ekjota .framer-rbqp4d { padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-elQEL.framer-v-anfbzp .framer-1c95iv7, .framer-elQEL.framer-v-anfbzp .framer-19k4ie4 { gap: 0px; } .framer-elQEL.framer-v-anfbzp .framer-1c95iv7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-elQEL.framer-v-anfbzp .framer-1c95iv7 > :first-child { margin-top: 0px; } .framer-elQEL.framer-v-anfbzp .framer-1c95iv7 > :last-child { margin-bottom: 0px; } .framer-elQEL.framer-v-anfbzp .framer-19k4ie4 > *, .framer-elQEL.framer-v-anfbzp .framer-19k4ie4 > :first-child, .framer-elQEL.framer-v-anfbzp .framer-19k4ie4 > :last-child { margin: 0px; } }\",\".framer-elQEL.framer-v-ekjota.framer-1r2yzxt { width: 390px; }\",\".framer-elQEL.framer-v-ekjota .framer-lqixq1 { flex-wrap: wrap; gap: 40px; width: 100%; }\",\".framer-elQEL.framer-v-ekjota .framer-1g1ulzz, .framer-elQEL.framer-v-ekjota .framer-11vhtz3, .framer-elQEL.framer-v-ekjota .framer-1vmof17 { min-width: 120px; padding: 0px; }\",\".framer-elQEL.framer-v-ekjota .framer-y06amv { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: flex-start; }\",\".framer-elQEL.framer-v-ekjota .framer-1oiync5 { flex-wrap: wrap; order: 1; width: 100%; }\",\".framer-elQEL.framer-v-ekjota .framer-1vsr6de { justify-content: flex-start; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-elQEL.framer-v-ekjota .framer-1c95iv7, .framer-elQEL.framer-v-ekjota .framer-19k4ie4, .framer-elQEL.framer-v-ekjota .framer-lqixq1, .framer-elQEL.framer-v-ekjota .framer-y06amv { gap: 0px; } .framer-elQEL.framer-v-ekjota .framer-1c95iv7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-elQEL.framer-v-ekjota .framer-1c95iv7 > :first-child, .framer-elQEL.framer-v-ekjota .framer-y06amv > :first-child { margin-top: 0px; } .framer-elQEL.framer-v-ekjota .framer-1c95iv7 > :last-child, .framer-elQEL.framer-v-ekjota .framer-y06amv > :last-child { margin-bottom: 0px; } .framer-elQEL.framer-v-ekjota .framer-19k4ie4 > *, .framer-elQEL.framer-v-ekjota .framer-19k4ie4 > :first-child, .framer-elQEL.framer-v-ekjota .framer-19k4ie4 > :last-child { margin: 0px; } .framer-elQEL.framer-v-ekjota .framer-lqixq1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-elQEL.framer-v-ekjota .framer-lqixq1 > :first-child { margin-left: 0px; } .framer-elQEL.framer-v-ekjota .framer-lqixq1 > :last-child { margin-right: 0px; } .framer-elQEL.framer-v-ekjota .framer-y06amv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-elQEL[data-border=\"true\"]::after, .framer-elQEL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 412.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U4_0rr7qB\":{\"layout\":[\"fixed\",\"auto\"]},\"ScJalnFai\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAIPhQitPD=withCSS(Component,css,\"framer-elQEL\");export default FramerAIPhQitPD;FramerAIPhQitPD.displayName=\"Footer\";FramerAIPhQitPD.defaultProps={height:412.5,width:1200};addPropertyControls(FramerAIPhQitPD,{variant:{options:[\"t2evDZpWa\",\"U4_0rr7qB\",\"ScJalnFai\"],optionTitles:[\"XL\",\"MD\",\"SM\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAIPhQitPD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavLogoFonts,...ScrollToTopButtonFonts,...ButtonButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAIPhQitPD\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"412.5\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U4_0rr7qB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScJalnFai\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Sonoma Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Sonoma Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/gwoSe7SdW1paq1oa52gL444qzIE.woff2\"}]}];export const css=[\".framer-hudA1 .framer-styles-preset-ngkisc:not(.rich-text-wrapper), .framer-hudA1 .framer-styles-preset-ngkisc.rich-text-wrapper h3 { --framer-font-family: \\\"BR Sonoma Medium\\\", \\\"BR Sonoma Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-7da5ecd8-3f95-444b-9073-5cdfb2d185de, #f9f9f9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-hudA1\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;BR Sonoma Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"BR Sonoma Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/gwoSe7SdW1paq1oa52gL444qzIE.woff2\"}]}];export const css=[\".framer-0Z6kT .framer-styles-preset-87d8s3:not(.rich-text-wrapper), .framer-0Z6kT .framer-styles-preset-87d8s3.rich-text-wrapper h6 { --framer-font-family: \\\"BR Sonoma Medium\\\", \\\"BR Sonoma Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.22em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9fae58ba-d24a-4176-a8e1-b8e4875196c1, rgba(249, 249, 249, 0.7)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-0Z6kT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/yL2Ot6kKqZL47OAfrmoe/QjzzBd4P5eNMolyi9ZC7/f0mp2Uhdd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/s2RdezKz4j7ZjJ4YkzBt/RK8XXJvt1DsOEUgoexYl/Lwfv393CD.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4vYiV0FndRbDXbalDcBj/rTK7z3uhbu5pNpz6RYtY/UhuEgUPNt.js\";import ButtonButtons from\"https://framerusercontent.com/modules/sfVlx5PkPkJ9aOgDGvd3/y2aC7eNVpjnEjIJmBTKS/eyyhYVktx.js\";import NavLogo from\"https://framerusercontent.com/modules/B3qBOfyoM7HsIoGoRvfh/d0CQYJJeOZwjHmk7WMGj/k3ZChwXkc.js\";const NavLogoFonts=getFonts(NavLogo);const ButtonButtonsFonts=getFonts(ButtonButtons);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"qAP5TdJD3\",\"g3xGCFqbS\",\"MIjT2Hvux\",\"AVyS_KEI4\"];const serializationHash=\"framer-0F2IR\";const variantClassNames={AVyS_KEI4:\"framer-v-1hfiyy5\",g3xGCFqbS:\"framer-v-c7ff72\",MIjT2Hvux:\"framer-v-10m0fjz\",qAP5TdJD3:\"framer-v-1bxzlbx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-76};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-Scroll\":\"g3xGCFqbS\",\"Mobile-Closed\":\"AVyS_KEI4\",\"Mobile-Open\":\"MIjT2Hvux\",Desktop:\"qAP5TdJD3\"};const getProps=({height,id,padding,width,...props})=>{return{...props,sFB9DOdzX:padding??props.sFB9DOdzX??\"0px 40px 0px 40px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qAP5TdJD3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,sFB9DOdzX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qAP5TdJD3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap169impg=activeVariantCallback(async(...args)=>{setVariant(\"AVyS_KEI4\");});const onTap1nqg8g5=activeVariantCallback(async(...args)=>{setVariant(\"MIjT2Hvux\");});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"MIjT2Hvux\",\"AVyS_KEI4\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"MIjT2Hvux\",\"AVyS_KEI4\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bxzlbx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qAP5TdJD3\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{g3xGCFqbS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fc06e2d4-b10c-48b1-829e-6f3ac47b86e2, rgba(249, 249, 249, 0.05))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},MIjT2Hvux:{backgroundColor:\"rgba(10, 14, 26, 0.5)\"}},...addPropertyOverrides({AVyS_KEI4:{\"data-framer-name\":\"Mobile-Closed\"},g3xGCFqbS:{\"data-border\":true,\"data-framer-name\":\"Desktop-Scroll\"},MIjT2Hvux:{\"data-framer-name\":\"Mobile-Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8hkmlz\",\"data-framer-name\":\"MaxWidth\",layoutDependency:layoutDependency,layoutId:\"gw3kfBpyl\",style:{\"--18c5762\":numberToPixelString(sFB9DOdzX)},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11buyja\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"xtt2Vr5kq\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1cis3-container\",layoutDependency:layoutDependency,layoutId:\"aFHyG8u1C-container\",children:/*#__PURE__*/_jsx(NavLogo,{height:\"100%\",id:\"aFHyG8u1C\",layoutId:\"aFHyG8u1C\",qYaqcETTY:resolvedLinks[0],variant:\"j3Svxyj3u\",width:\"100%\",...addPropertyOverrides({AVyS_KEI4:{qYaqcETTY:resolvedLinks[3]},g3xGCFqbS:{qYaqcETTY:resolvedLinks[1]},MIjT2Hvux:{qYaqcETTY:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i5gpej\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Zjz23XCnl\",...addPropertyOverrides({AVyS_KEI4:{\"data-highlight\":true,onTap:onTap1nqg8g5},MIjT2Hvux:{\"data-highlight\":true,onTap:onTap169impg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mh4jvc\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"SFAC5Iu3g\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{MIjT2Hvux:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15z2byw\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"UzgchZNkY\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{MIjT2Hvux:{rotate:45}}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gahvg9\",layoutDependency:layoutDependency,layoutId:\"nPy3fz0r9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-87d8s3\",\"data-styles-preset\":\"Lwfv393CD\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NdV3IMtSE\"},nodeId:\"BTBxaiyMU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"PORTFOLIO\"})})})}),className:\"framer-qfulun\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BTBxaiyMU\",verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AVyS_KEI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NdV3IMtSE\"},nodeId:\"BTBxaiyMU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Portfolio\"})})})})},MIjT2Hvux:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NdV3IMtSE\"},nodeId:\"BTBxaiyMU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Portfolio\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-87d8s3\",\"data-styles-preset\":\"Lwfv393CD\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"scWdnjz4E\"},nodeId:\"bvk_0mcXt\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"RESOURCES\"})})})}),className:\"framer-1x9w70m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bvk_0mcXt\",verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AVyS_KEI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"scWdnjz4E\"},nodeId:\"bvk_0mcXt\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Resources\"})})})})},MIjT2Hvux:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"scWdnjz4E\"},nodeId:\"bvk_0mcXt\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Resources\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-87d8s3\",\"data-styles-preset\":\"Lwfv393CD\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MAZiKCvjW\"},nodeId:\"bpA1qWkTv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"SERVICES\"})})})}),className:\"framer-1dbd5o6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bpA1qWkTv\",verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AVyS_KEI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MAZiKCvjW\"},nodeId:\"bpA1qWkTv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Services\"})})})})},MIjT2Hvux:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MAZiKCvjW\"},nodeId:\"bpA1qWkTv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Services\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-87d8s3\",\"data-styles-preset\":\"Lwfv393CD\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JmulO3HRu\"},nodeId:\"kpv8Cxbo5\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"ABOUT\"})})})}),className:\"framer-7swv4j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kpv8Cxbo5\",verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({AVyS_KEI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b0adxUWpR\"},nodeId:\"kpv8Cxbo5\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"About\"})})})})},MIjT2Hvux:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b0adxUWpR\"},nodeId:\"kpv8Cxbo5\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"About\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ngkisc\",\"data-styles-preset\":\"f0mp2Uhdd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W7zQyt2KC\"},nodeId:\"EWpRxL0nZ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1lenhps\",\"data-styles-preset\":\"UhuEgUPNt\",children:\"Contact\"})})})}),className:\"framer-1tzm3dj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EWpRxL0nZ\",verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W7zQyt2KC\"},implicitPathVariables:undefined},{href:{webPageId:\"W7zQyt2KC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a0g2xb-container\",layoutDependency:layoutDependency,layoutId:\"pGuWJAqsH-container\",children:/*#__PURE__*/_jsx(ButtonButtons,{A7rcxhH8W:\"center\",AX1ASqtWq:resolvedLinks1[0],height:\"100%\",id:\"pGuWJAqsH\",layoutId:\"pGuWJAqsH\",mOQOIesRW:\"LET'S CONNECT\",variant:\"PomV3ZyCr\",width:\"100%\",...addPropertyOverrides({g3xGCFqbS:{AX1ASqtWq:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0F2IR.framer-1pqnrml, .framer-0F2IR .framer-1pqnrml { display: block; }\",\".framer-0F2IR.framer-1bxzlbx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 74px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1728px; }\",\".framer-0F2IR .framer-8hkmlz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 1280px; overflow: visible; padding: var(--18c5762); position: relative; width: 1px; }\",\".framer-0F2IR .framer-11buyja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 74px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0F2IR .framer-1m1cis3-container, .framer-0F2IR .framer-a0g2xb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0F2IR .framer-1i5gpej { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-0F2IR .framer-1mh4jvc { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; top: calc(60.00000000000002% - 2px / 2); width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0F2IR .framer-15z2byw { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; top: calc(40.00000000000002% - 2px / 2); width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0F2IR .framer-gahvg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0F2IR .framer-qfulun, .framer-0F2IR .framer-1x9w70m, .framer-0F2IR .framer-1dbd5o6, .framer-0F2IR .framer-7swv4j, .framer-0F2IR .framer-1tzm3dj { flex: none; height: 100%; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0F2IR.framer-1bxzlbx, .framer-0F2IR .framer-11buyja, .framer-0F2IR .framer-gahvg9 { gap: 0px; } .framer-0F2IR.framer-1bxzlbx > *, .framer-0F2IR .framer-11buyja > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0F2IR.framer-1bxzlbx > :first-child, .framer-0F2IR .framer-11buyja > :first-child, .framer-0F2IR .framer-gahvg9 > :first-child { margin-left: 0px; } .framer-0F2IR.framer-1bxzlbx > :last-child, .framer-0F2IR .framer-11buyja > :last-child, .framer-0F2IR .framer-gahvg9 > :last-child { margin-right: 0px; } .framer-0F2IR .framer-gahvg9 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-0F2IR.framer-v-10m0fjz.framer-1bxzlbx { height: min-content; width: 400px; }\",\".framer-0F2IR.framer-v-10m0fjz .framer-8hkmlz, .framer-0F2IR.framer-v-1hfiyy5 .framer-8hkmlz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; max-width: unset; }\",\".framer-0F2IR.framer-v-10m0fjz .framer-11buyja, .framer-0F2IR.framer-v-1hfiyy5 .framer-11buyja { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-0F2IR.framer-v-10m0fjz .framer-1i5gpej, .framer-0F2IR.framer-v-1hfiyy5 .framer-1i5gpej { cursor: pointer; }\",\".framer-0F2IR.framer-v-10m0fjz .framer-1mh4jvc, .framer-0F2IR.framer-v-10m0fjz .framer-15z2byw { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-0F2IR.framer-v-10m0fjz .framer-gahvg9, .framer-0F2IR.framer-v-1hfiyy5 .framer-gahvg9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; height: min-content; width: 100%; }\",\".framer-0F2IR.framer-v-10m0fjz .framer-qfulun, .framer-0F2IR.framer-v-10m0fjz .framer-1x9w70m, .framer-0F2IR.framer-v-10m0fjz .framer-1dbd5o6, .framer-0F2IR.framer-v-10m0fjz .framer-7swv4j, .framer-0F2IR.framer-v-10m0fjz .framer-1tzm3dj, .framer-0F2IR.framer-v-1hfiyy5 .framer-qfulun, .framer-0F2IR.framer-v-1hfiyy5 .framer-1x9w70m, .framer-0F2IR.framer-v-1hfiyy5 .framer-1dbd5o6, .framer-0F2IR.framer-v-1hfiyy5 .framer-7swv4j, .framer-0F2IR.framer-v-1hfiyy5 .framer-1tzm3dj { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0F2IR.framer-v-10m0fjz .framer-8hkmlz, .framer-0F2IR.framer-v-10m0fjz .framer-11buyja, .framer-0F2IR.framer-v-10m0fjz .framer-gahvg9 { gap: 0px; } .framer-0F2IR.framer-v-10m0fjz .framer-8hkmlz > *, .framer-0F2IR.framer-v-10m0fjz .framer-gahvg9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0F2IR.framer-v-10m0fjz .framer-8hkmlz > :first-child, .framer-0F2IR.framer-v-10m0fjz .framer-gahvg9 > :first-child { margin-top: 0px; } .framer-0F2IR.framer-v-10m0fjz .framer-8hkmlz > :last-child, .framer-0F2IR.framer-v-10m0fjz .framer-gahvg9 > :last-child { margin-bottom: 0px; } .framer-0F2IR.framer-v-10m0fjz .framer-11buyja > *, .framer-0F2IR.framer-v-10m0fjz .framer-11buyja > :first-child, .framer-0F2IR.framer-v-10m0fjz .framer-11buyja > :last-child { margin: 0px; } }\",\".framer-0F2IR.framer-v-1hfiyy5.framer-1bxzlbx { width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0F2IR.framer-v-1hfiyy5 .framer-8hkmlz, .framer-0F2IR.framer-v-1hfiyy5 .framer-11buyja, .framer-0F2IR.framer-v-1hfiyy5 .framer-gahvg9 { gap: 0px; } .framer-0F2IR.framer-v-1hfiyy5 .framer-8hkmlz > *, .framer-0F2IR.framer-v-1hfiyy5 .framer-gahvg9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0F2IR.framer-v-1hfiyy5 .framer-8hkmlz > :first-child, .framer-0F2IR.framer-v-1hfiyy5 .framer-gahvg9 > :first-child { margin-top: 0px; } .framer-0F2IR.framer-v-1hfiyy5 .framer-8hkmlz > :last-child, .framer-0F2IR.framer-v-1hfiyy5 .framer-gahvg9 > :last-child { margin-bottom: 0px; } .framer-0F2IR.framer-v-1hfiyy5 .framer-11buyja > *, .framer-0F2IR.framer-v-1hfiyy5 .framer-11buyja > :first-child, .framer-0F2IR.framer-v-1hfiyy5 .framer-11buyja > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-0F2IR[data-border=\"true\"]::after, .framer-0F2IR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 1728\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"g3xGCFqbS\":{\"layout\":[\"fixed\",\"fixed\"]},\"MIjT2Hvux\":{\"layout\":[\"fixed\",\"auto\"]},\"AVyS_KEI4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sFB9DOdzX\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFlj6TmpG1=withCSS(Component,css,\"framer-0F2IR\");export default FramerFlj6TmpG1;FramerFlj6TmpG1.displayName=\"Nav/Navbar\";FramerFlj6TmpG1.defaultProps={height:74,width:1728};addPropertyControls(FramerFlj6TmpG1,{variant:{options:[\"qAP5TdJD3\",\"g3xGCFqbS\",\"MIjT2Hvux\",\"AVyS_KEI4\"],optionTitles:[\"Desktop\",\"Desktop-Scroll\",\"Mobile-Open\",\"Mobile-Closed\"],title:\"Variant\",type:ControlType.Enum},sFB9DOdzX:{defaultValue:\"0px 40px 0px 40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerFlj6TmpG1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavLogoFonts,...ButtonButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFlj6TmpG1\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"sFB9DOdzX\\\":\\\"padding\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g3xGCFqbS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MIjT2Hvux\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AVyS_KEI4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1728\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"74\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "logoColor", "opacity", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "p8vZTvEYh", "VIlSmxuQ7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerUNUk1BKn7", "withCSS", "UNUk1BKn7_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "jump", "left", "leftBlue", "leftWhite", "less", "more", "right", "rightBlue", "rightBlue1", "rightWhite", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fOWtz_plD", "oMccwC7ZT", "nRmozQ7OU", "a1c6asdjH", "voZit1wEZ", "nBFEWUHdA", "oPjF5wfnT", "uN4kssztf", "cOjbyCyVa", "mIgWSxtls", "QG21AawvB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapziqg40", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerO2hC92XGp", "withCSS", "O2hC92XGp_default", "addPropertyControls", "ControlType", "addFonts", "MergeArrowsFonts", "getFonts", "O2hC92XGp_default", "ClipboardFonts", "Clipboard", "IconsSVGsFonts", "UNUk1BKn7_default", "SVGFonts", "SVG_Prod_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "distribute", "height", "id", "link", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "AX1ASqtWq", "mOQOIesRW", "A7rcxhH8W", "XAQG8lIQm", "eHdizBA3e", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr63bdg", "args", "onTap1ty23gx", "onTap4nc003", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramereyyhYVktx", "withCSS", "eyyhYVktx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "borderPropertyControl", "hidden", "ControlType", "Border", "width", "widthIsMixed", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "color", "transition", "p", "motion", "EmptyState", "title", "subtitle", "maxWidth", "u", "scrollToTop", "window", "ScrollToTopButton", "props", "_props_custom", "_props_style", "_props_style1", "layer", "q", "p", "u", "Border", "addPropertyControls", "ControlType", "borderPropertyControl", "fontStore", "fonts", "css", "className", "Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "fontStore", "fonts", "css", "className", "AnimatorFonts", "getFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qYaqcETTY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1bdgtq1", "args", "onMouseLeaveq35sc6", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "css", "Framerk3ZChwXkc", "withCSS", "k3ZChwXkc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavLogoFonts", "getFonts", "k3ZChwXkc_default", "ScrollToTopButtonFonts", "ScrollToTopButton", "ButtonButtonsFonts", "eyyhYVktx_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "css", "FramerAIPhQitPD", "withCSS", "AIPhQitPD_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavLogoFonts", "getFonts", "k3ZChwXkc_default", "ButtonButtonsFonts", "eyyhYVktx_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "sFB9DOdzX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap169impg", "args", "onTap1nqg8g5", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "Link", "resolvedLinks1", "css", "FramerFlj6TmpG1", "withCSS", "Flj6TmpG1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
