{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://ga.jspm.io/npm:js-cookie@3.0.1/dist/js.cookie.mjs", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/7OZOdfLi7mivUmaXBqMx/cU3mDw8ZtFFlaVhtD8kT/ThemeToggle.js", "ssg:https://framerusercontent.com/modules/6mnef8eICHFXTIXYit0h/fszx3Dlj2qX5y7kZ80eX/DjVe6S_Mt.js", "ssg:https://framerusercontent.com/modules/rnOp9xIXya4AyDj6sHeJ/upj06sKkbFHFsKFQqL5a/Zeqloo3mj.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", "function assign(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var e={read:function(e){'\"'===e[0]&&(e=e.slice(1,-1));return e.replace(/(%[\\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function init(e,t){function set(n,r,i){if(\"undefined\"!==typeof document){i=assign({},t,i);\"number\"===typeof i.expires&&(i.expires=new Date(Date.now()+864e5*i.expires));i.expires&&(i.expires=i.expires.toUTCString());n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var o=\"\";for(var c in i)if(i[c]){o+=\"; \"+c;true!==i[c]&&(o+=\"=\"+i[c].split(\";\")[0])}return document.cookie=n+\"=\"+e.write(r,n)+o}}function get(t){if(\"undefined\"!==typeof document&&(!arguments.length||t)){var n=document.cookie?document.cookie.split(\"; \"):[];var r={};for(var i=0;i<n.length;i++){var o=n[i].split(\"=\");var c=o.slice(1).join(\"=\");try{var a=decodeURIComponent(o[0]);r[a]=e.read(c,a);if(t===a)break}catch(e){}}return t?r[t]:r}}return Object.create({set:set,get:get,remove:function(e,t){set(e,\"\",assign({},t,{expires:-1}))},withAttributes:function(e){return init(this.converter,assign({},this.attributes,e))},withConverter:function(e){return init(assign({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var t=init(e,{path:\"/\"});export{t as default};\n\n//# sourceMappingURL=js.cookie.mjs.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Image}from\"framer\";import{motion}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";import Cookies from\"js-cookie\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Sun and moon icons from tabler-icons.io\nconst THEME_ATTRIBUTE=\"framestack-theme\";const COOKIE_NAME=\"framestack-theme\";const STYLE_ID=\"framestack-theme-toggle\";const SIGNAL_NAME=\"framestack-theme-changed\";const THEMES=[\"light\",\"dark\",\"deviceTheme\"];const useThemeStore=createStore(\"deviceTheme\");function extractBodySection(inputString){const searchStr=\"body{\";const startIndex=inputString.indexOf(searchStr);if(startIndex!==-1){const endIndex=inputString.indexOf(\"}\",startIndex+searchStr.length);if(endIndex!==-1){const bodySection=inputString.substring(startIndex+searchStr.length,endIndex);return bodySection;}}return null// Return null if \"body{\" or \"}\" is not found\n;}function makeBorderStyle(border){return border?{borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color}:[];}/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ThemeToggle(props){var _window;const{toggle,dropdown,dropdownOptions,icons,transition}=props;let isPreview=false;let initialTheme=props.defaultTheme;if(typeof document!==\"undefined\"){if(document.body.hasAttribute(\"data-framer-theme\")){if(initialTheme==\"deviceTheme\"){initialTheme=document.body.getAttribute(\"data-framer-theme\");}isPreview=true;}else if(document.body.hasAttribute(THEME_ATTRIBUTE)){initialTheme=document.body.getAttribute(THEME_ATTRIBUTE);}else if(props.saveTheme){const storedTheme=Cookies.get(COOKIE_NAME);if(THEMES.includes(storedTheme)){initialTheme=storedTheme;}}}let deviceTheme=\"light\";if(isPreview&&document.body.hasAttribute(\"data-framer-theme\")){deviceTheme=document.body.getAttribute(\"data-framer-theme\");}else if(typeof window!=\"undefined\"&&((_window=window)===null||_window===void 0?void 0:_window.matchMedia)){deviceTheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";}const[theme,setTheme]=useThemeStore();const[activeTheme,setActiveTheme]=useState(initialTheme==\"deviceTheme\"?deviceTheme:initialTheme)// light or dark\n;const[originalPreviewTheme,setOriginalPreviewTheme]=useState(initialTheme);const themeRef=useRef(theme);const selectRef=useRef(null);function changeTheme(newTheme){let newActiveTheme=newTheme;if(newTheme==\"deviceTheme\"){if(isPreview){newActiveTheme=originalPreviewTheme;}else{newActiveTheme=deviceTheme;}}setTheme(newTheme);setActiveTheme(newActiveTheme);if(isPreview){document.body.setAttribute(\"data-framer-theme\",newActiveTheme);}document.body.setAttribute(THEME_ATTRIBUTE,newTheme);document.documentElement.setAttribute(THEME_ATTRIBUTE,newTheme);if(props.saveTheme){Cookies.set(COOKIE_NAME,newTheme,{expires:365})// Expires in 1 year\n;}window.dispatchEvent(new CustomEvent(SIGNAL_NAME));}function toggleTheme(){const newActiveTheme=activeTheme==\"light\"?\"dark\":\"light\";if(props.resetToDeviceTheme){changeTheme(newActiveTheme==deviceTheme?\"deviceTheme\":newActiveTheme);}else{changeTheme(newActiveTheme);}}function onSelectChange(){if(selectRef.current){changeTheme(THEMES[selectRef.current.selectedIndex]);}}const handleThemeChange=event=>{if(themeRef.current==\"deviceTheme\"){setActiveTheme(event.matches?\"dark\":\"light\");}};useEffect(()=>{themeRef.current=theme// Update the ref whenever the theme state changes\n;if(theme==\"deviceTheme\"){if(isPreview){setActiveTheme(originalPreviewTheme);}else{setActiveTheme(deviceTheme);}}else{setActiveTheme(theme);}},[theme]);useEffect(()=>{if(initialTheme!=theme){changeTheme(initialTheme);}// const themeAttr = document.body.getAttribute(THEME_ATTRIBUTE)\n// if (themeAttr) {\n//     changeTheme(themeAttr)\n// }\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");mediaQuery.addEventListener(\"change\",handleThemeChange);if(!isPreview){let generateStyle=true;// Check if <head> already has theme attribute\nconst headElement=document.querySelector(\"head\");if(headElement){if(headElement.querySelector(`style#${STYLE_ID}`)){generateStyle=false;}}// Generate <style> with color styles\nif(generateStyle){let style=document.querySelector(\"style[data-framer-css-ssr-minified]\");if(style&&(style===null||style===void 0?void 0:style.textContent)){const styleText=style.textContent;const darkLocation=styleText.indexOf(\"@media (prefers-color-scheme: dark){body{--token\");if(darkLocation!==-1){var styleElement=document.createElement(\"style\");styleElement.id=STYLE_ID;styleElement.textContent=`body[${THEME_ATTRIBUTE}=\"light\"] {${extractBodySection(styleText)}} body[${THEME_ATTRIBUTE}=\"dark\"] {${extractBodySection(styleText.substring(darkLocation))}} ${props.setColorScheme?`html {color-scheme: light dark; } html[${THEME_ATTRIBUTE}=\"light\"] { color-scheme: light; } html[${THEME_ATTRIBUTE}=\"dark\"] { color-scheme: dark; } `:\"\"}`;document.head.appendChild(styleElement);}}}}return()=>mediaQuery.removeEventListener(\"change\",handleThemeChange);},[]);switch(props.componentStyle){case\"toggle\":const{height,padding,shadow}=toggle;return /*#__PURE__*/_jsxs(motion.div,{onClick:toggleTheme,style:{position:\"relative\",minHeight:height,minWidth:height*2-padding*2,backgroundColor:toggle.fill,padding:padding,borderRadius:toggle.radius,color:icons===null||icons===void 0?void 0:icons.color,cursor:\"pointer\",...props.style},layout:false,whileHover:{color:(icons===null||icons===void 0?void 0:icons.hoverColor)||(icons===null||icons===void 0?void 0:icons.color)},initial:false,transition:transition,children:[props.border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,boxSizing:\"border-box\",borderRadius:toggle.radius,...makeBorderStyle(props.border)}}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",height:height-padding*2,aspectRatio:1,[activeTheme==\"light\"?\"left\":\"right\"]:padding,backgroundColor:toggle.switch,borderRadius:toggle.radius-padding,boxShadow:shadow?`${shadow.x}px ${shadow.y}px ${shadow.blur}px ${shadow.spread}px ${shadow.color}`:\"none\",boxSizing:\"border-box\",...makeBorderStyle(toggle.switchBorder)},layout:true,initial:false,transition:transition,children:icons&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,style:{position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"},...icons})})})]});case\"dropdown\":var _props_style;const{showDeviceTheme}=dropdownOptions;const themeTitles={light:dropdownOptions.lightText,dark:dropdownOptions.darkText,deviceTheme:dropdownOptions.deviceThemeText};return /*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",flexDirection:\"row\",gap:dropdown.gap,alignItems:\"center\",justifyContent:\"space-between\",backgroundColor:dropdown.fill,color:dropdown.fontColor,borderRadius:dropdown.radiusIsMixed?`${dropdown.radiusTopLeft}px ${dropdown.radiusTopRight}px ${dropdown.radiusBottomRight}px ${dropdown.radiusBottomLeft}px`:`${dropdown.radius}px`,padding:dropdown.paddingIsMixed?`${dropdown.paddingTopLeft}px ${dropdown.paddingTopRight}px ${dropdown.paddingBottomRight}px ${dropdown.paddingBottomLeft}px`:`${dropdown.padding}px`,userSelect:\"none\",boxSizing:\"border-box\",cursor:\"pointer\",\"--icon-color\":icons===null||icons===void 0?void 0:icons.color,...makeBorderStyle(props.border),...dropdown.font,...props.style},whileHover:{color:dropdown.fontColorHover||dropdown.fontColor,\"--icon-color\":(icons===null||icons===void 0?void 0:icons.hoverColor)||(icons===null||icons===void 0?void 0:icons.color)},initial:false,transition:transition,children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",gap:dropdown.gap,textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?\"wrap\":\"nowrap\"},children:[icons&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Icon,{theme:activeTheme,...props.icons,style:{color:\"var(--icon-color)\"}})}),!showDeviceTheme&&theme==\"deviceTheme\"?themeTitles[deviceTheme]:themeTitles[theme]]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\",color:dropdown.arrow},children:dropdown.arrow&&/*#__PURE__*/_jsx(Icon,{theme:\"arrow\",size:18})}),/*#__PURE__*/_jsxs(\"select\",{ref:selectRef,name:\"theme\",onChange:onSelectChange,style:{position:\"absolute\",inset:0,opacity:0},children:[/*#__PURE__*/_jsx(\"option\",{value:\"light\",selected:theme==\"light\"||!showDeviceTheme&&deviceTheme==\"light\",children:themeTitles.light}),/*#__PURE__*/_jsx(\"option\",{value:\"dark\",selected:theme==\"dark\"||!showDeviceTheme&&deviceTheme==\"dark\",children:themeTitles.dark}),showDeviceTheme&&/*#__PURE__*/_jsx(\"option\",{value:\"deviceTheme\",selected:theme==\"deviceTheme\",children:themeTitles.deviceTheme})]})]});case\"custom\":return /*#__PURE__*/_jsx(\"div\",{onClick:toggleTheme,children:activeTheme==\"light\"?props.customLight:props.customDark});}}ThemeToggle.displayName=\"Theme Toggle\";const borderControls={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\"]}};const toggleShadowDefault={color:\"rgba(0, 0, 0, 0.2)\",x:0,y:2,blur:4,spread:0};const iconsDefault={type:\"default\",color:\"#333333\",size:18,opacity:1};addPropertyControls(ThemeToggle,{defaultTheme:{type:ControlType.Enum,defaultValue:\"deviceTheme\",options:[\"deviceTheme\",\"light\",\"dark\"],optionTitles:[\"Device Theme\",\"Light\",\"Dark\"],title:\"Default\"},saveTheme:{type:ControlType.Boolean,defaultValue:true,title:\"Save Cookie\"},componentStyle:{type:ControlType.Enum,defaultValue:\"toggle\",options:[\"toggle\",\"dropdown\",\"custom\"],optionTitles:[\"Toggle\",\"Dropdown\",\"Custom\"],title:\"Style\"},toggle:{type:ControlType.Object,buttonTitle:\"Options\",icon:\"boolean\",controls:{height:{type:ControlType.Number,defaultValue:32,min:1,step:1},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},switch:{type:ControlType.Color,defaultValue:\"#FFF\"},switchBorder:{type:ControlType.Object,optional:true,controls:borderControls},shadow:{type:ControlType.Object,defaultValue:toggleShadowDefault,optional:true,controls:{color:{type:ControlType.Color,defaultValue:toggleShadowDefault.color},x:{type:ControlType.Number,defaultValue:toggleShadowDefault.x,displayStepper:true},y:{type:ControlType.Number,defaultValue:toggleShadowDefault.y,displayStepper:true},blur:{type:ControlType.Number,defaultValue:toggleShadowDefault.blur,min:0,displayStepper:true},spread:{type:ControlType.Number,defaultValue:toggleShadowDefault.spread,displayStepper:true}}},padding:{type:ControlType.Number,defaultValue:4,min:0,step:1,displayStepper:true},radius:{type:ControlType.Number,defaultValue:16,min:0}},hidden:props=>props.componentStyle!==\"toggle\"},dropdown:{type:ControlType.Object,buttonTitle:\"Options\",controls:{fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},fontColorHover:{type:ControlType.Color,optional:true,title:\"Hover Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},arrow:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\",optional:true},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1},padding:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTopLeft\",\"paddingTopRight\",\"paddingBottomRight\",\"paddingBottomLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0}},hidden:props=>props.componentStyle!==\"dropdown\"},dropdownOptions:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Options\",// buttonTitle: \"Options\",\ncontrols:{showDeviceTheme:{type:ControlType.Boolean,defaultValue:true},deviceThemeText:{type:ControlType.String,defaultValue:\"Device Theme\",hidden:props=>!props.showDeviceTheme},lightText:{type:ControlType.String,defaultValue:\"Light\"},darkText:{type:ControlType.String,defaultValue:\"Dark\"}},hidden:props=>props.componentStyle!==\"dropdown\"},icons:{type:ControlType.Object,defaultValue:iconsDefault,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"svg\",\"image\"],optionTitles:[\"Default\",\"SVG\",\"Image\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},lightSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Light SVG\",hidden:props=>props.type!=\"svg\"},darkSvg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Dark SVG\",hidden:props=>props.type!=\"svg\"},lightImage:{type:ControlType.ResponsiveImage,title:\"Light\",hidden:props=>props.type!=\"image\"},darkImage:{type:ControlType.ResponsiveImage,title:\"Dark\",hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"fill\",\"fit\",\"stretch\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},color:{type:ControlType.Color,defaultValue:iconsDefault.color,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},hoverColor:{type:ControlType.Color,optional:true,hidden:props=>props.type!=\"default\"&&props.type!=\"svg\"},size:{type:ControlType.Number,defaultValue:iconsDefault.size,min:1,step:1,displayStepper:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}},hidden:props=>props.componentStyle==\"custom\"},border:{type:ControlType.Object,optional:true,controls:borderControls,hidden:props=>props.componentStyle==\"custom\"},customLight:{type:ControlType.ComponentInstance,title:\"Light\",hidden:props=>props.componentStyle!==\"custom\"},customDark:{type:ControlType.ComponentInstance,title:\"Dark\",hidden:props=>props.componentStyle!==\"custom\"},resetToDeviceTheme:{type:ControlType.Boolean,defaultValue:true,// description:\n//     \"Uses the device theme when the toggle is switched to the current device theme.\",\nhidden:props=>props.componentStyle!==\"toggle\"},setColorScheme:{type:ControlType.Boolean,defaultValue:true,title:\"Theme Scroll Bars\"},transition:{type:ControlType.Transition,hidden:props=>props.type==\"custom\"}});function Icon(props){const{theme,type,size,lightSvg,darkSvg,lightImage,darkImage,sizing,opacity,style={}}=props;switch(type){case\"svg\":if(theme==\"light\"&&!lightSvg.length||theme==\"dark\"&&!darkSvg.length){return /*#__PURE__*/_jsx(\"div\",{});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"theme-toggle-icon\",style:{width:size,height:size,opacity,pointerEvents:\"none\",...style},dangerouslySetInnerHTML:{__html:(theme==\"light\"?lightSvg:darkSvg).replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}}),/*#__PURE__*/_jsx(\"style\",{children:`.theme-toggle-icon svg { display: block; }`})]});case\"image\":return /*#__PURE__*/_jsx(Image,{background:{fit:sizing,...theme==\"light\"?lightImage:darkImage},style:{opacity,width:size,height:size,...style}});case\"default\":return /*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",strokeWidth:\"2\",stroke:\"currentColor\",fill:\"none\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{opacity,...style},children:[/*#__PURE__*/_jsx(\"path\",{stroke:\"none\",d:\"M0 0h24v24H0z\",fill:\"none\"}),theme==\"light\"?[/*#__PURE__*/_jsx(\"path\",{d:\"M12 19a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18.313 16.91l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.218 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M7.007 16.993a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 11a1 1 0 0 1 .117 1.993l-.117 .007h-1a1 1 0 0 1 -.117 -1.993l.117 -.007h1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6.213 4.81l.094 .083l.7 .7a1 1 0 0 1 -1.32 1.497l-.094 -.083l-.7 -.7a1 1 0 0 1 1.217 -1.567l.102 .07z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M19.107 4.893a1 1 0 0 1 .083 1.32l-.083 .094l-.7 .7a1 1 0 0 1 -1.497 -1.32l.083 -.094l.7 -.7a1 1 0 0 1 1.414 0z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 2a1 1 0 0 1 .993 .883l.007 .117v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-1a1 1 0 0 1 1 -1z\",strokeWidth:\"0\",fill:\"currentColor\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z\",strokeWidth:\"0\",fill:\"currentColor\"})]:theme==\"dark\"?/*#__PURE__*/_jsx(\"path\",{d:\"M12 1.992a10 10 0 1 0 9.236 13.838c.341 -.82 -.476 -1.644 -1.298 -1.31a6.5 6.5 0 0 1 -6.864 -10.787l.077 -.08c.551 -.63 .113 -1.653 -.758 -1.653h-.266l-.068 -.006l-.06 -.002z\",strokeWidth:\"0\",fill:\"currentColor\"}):// Arrow\n/*#__PURE__*/_jsx(\"path\",{d:\"M6 9l6 6l6 -6\"})]});}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeToggle\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeToggle.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-BQscT\";const variantClassNames={fif1wRrBS:\"framer-v-192tci5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fif1wRrBS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-192tci5\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fif1wRrBS\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-310ebed3-699e-415f-a351-71fd111ec39a, rgb(153, 153, 153)))\"},children:\"\\xa9 2025 Agilytic\"})}),className:\"framer-1lg9iva\",\"data-framer-name\":\"Creator\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"aQUrvo1PV\",style:{\"--extracted-r6o4lv\":\"var(--token-310ebed3-699e-415f-a351-71fd111ec39a, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BQscT.framer-13jprqw, .framer-BQscT .framer-13jprqw { display: block; }\",\".framer-BQscT.framer-192tci5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BQscT .framer-1lg9iva { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BQscT.framer-192tci5 { gap: 0px; } .framer-BQscT.framer-192tci5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-BQscT.framer-192tci5 > :first-child { margin-left: 0px; } .framer-BQscT.framer-192tci5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 70\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDjVe6S_Mt=withCSS(Component,css,\"framer-BQscT\");export default FramerDjVe6S_Mt;FramerDjVe6S_Mt.displayName=\"Elements/Created By\";FramerDjVe6S_Mt.defaultProps={height:21,width:70};addFonts(FramerDjVe6S_Mt,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDjVe6S_Mt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"21\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"70\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DjVe6S_Mt.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,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/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import ThemeToggle from\"https://framerusercontent.com/modules/7OZOdfLi7mivUmaXBqMx/cU3mDw8ZtFFlaVhtD8kT/ThemeToggle.js\";import ElementsCreatedBy from\"https://framerusercontent.com/modules/6mnef8eICHFXTIXYit0h/fszx3Dlj2qX5y7kZ80eX/DjVe6S_Mt.js\";const ThemeToggleFonts=getFonts(ThemeToggle);const SVGFonts=getFonts(SVG);const ElementsCreatedByFonts=getFonts(ElementsCreatedBy);const cycleOrder=[\"W0DFqA_ZT\",\"zaw7eBM8R\",\"s3dAJNPdA\"];const serializationHash=\"framer-bSiGJ\";const variantClassNames={s3dAJNPdA:\"framer-v-1wjtppk\",W0DFqA_ZT:\"framer-v-1kjf6j8\",zaw7eBM8R:\"framer-v-4l825q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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:\"W0DFqA_ZT\",Mobile:\"s3dAJNPdA\",Tablet:\"zaw7eBM8R\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"W0DFqA_ZT\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"W0DFqA_ZT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kjf6j8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"W0DFqA_ZT\",ref:ref??ref1,style:{backgroundColor:\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",...style},...addPropertyOverrides({s3dAJNPdA:{\"data-framer-name\":\"Mobile\"},zaw7eBM8R:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kacnkv\",layoutDependency:layoutDependency,layoutId:\"V4n9pkSCP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lo4un2\",layoutDependency:layoutDependency,layoutId:\"LmyzpshLB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1boljbh-container\",layoutDependency:layoutDependency,layoutId:\"W5Z23ueXo-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ThemeToggle,{componentStyle:\"toggle\",customDark:[],customLight:[],defaultTheme:\"light\",dropdown:{arrow:\"rgba(0, 0, 0, 0.5)\",fill:\"rgb(237, 237, 237)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"rgb(0, 0, 0)\",gap:8,padding:8,paddingBottomLeft:8,paddingBottomRight:8,paddingIsMixed:false,paddingTopLeft:8,paddingTopRight:8,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10},dropdownOptions:{darkText:\"Dark\",deviceThemeText:\"Device Theme\",lightText:\"Light\",showDeviceTheme:true},height:\"100%\",icons:{color:\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(0, 0, 0))\",darkSvg:\"\",lightSvg:\"\",opacity:1,size:18,sizing:\"fill\",type:\"default\"},id:\"W5Z23ueXo\",layoutId:\"W5Z23ueXo\",resetToDeviceTheme:false,saveTheme:false,setColorScheme:false,toggle:{fill:\"var(--token-b2d96af4-52df-4880-8b3e-a797694d5a23, rgb(237, 237, 237))\",height:32,padding:4,radius:16,shadow:{blur:4,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:2},switch:\"var(--token-6dd9bbb1-1098-4d53-af7b-8b49c0600658, rgb(245, 245, 245))\"},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B7VNjpNK5\"},nodeId:\"XU2nyTKvn\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wl0udf framer-7999zf\",\"data-framer-name\":\"1%FTP\",layoutDependency:layoutDependency,layoutId:\"XU2nyTKvn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x0g99n-container\",\"data-framer-name\":\"1%FTP\",layoutDependency:layoutDependency,layoutId:\"sgIfGnTfX-container\",name:\"1%FTP\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-79dd3607-ab9b-4584-85f4-6789ddf1615b, rgb(52, 53, 121))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"980\" height=\"410\" viewBox=\"0 0 980 410\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_2_2)\"> <path d=\"M299.497 173.041C299.497 167.431 294.934 162.865 289.322 162.865C283.712 162.865 279.146 167.431 279.146 173.041C279.146 178.646 283.712 183.211 289.322 183.211C294.934 183.211 299.497 178.646 299.497 173.041Z\" fill=\"#1791D1\"/> <path d=\"M409.704 198.509C409.669 197.397 409.63 196.285 409.577 195.177C409.549 194.575 409.516 193.975 409.482 193.374C409.424 192.331 409.358 191.291 409.284 190.253C409.242 189.653 409.199 189.054 409.151 188.456C409.064 187.362 408.965 186.273 408.861 185.184C408.811 184.666 408.766 184.147 408.713 183.63C408.553 182.091 408.38 180.557 408.187 179.029C408.18 178.973 408.174 178.916 408.167 178.86C407.967 177.283 407.744 175.713 407.508 174.148C407.43 173.63 407.343 173.115 407.261 172.598C407.093 171.541 406.921 170.486 406.737 169.435C406.633 168.839 406.523 168.245 406.414 167.65C406.233 166.669 406.046 165.69 405.851 164.714C405.732 164.115 405.612 163.517 405.488 162.92C405.277 161.908 405.055 160.899 404.829 159.893C404.708 159.357 404.592 158.819 404.468 158.284C404.151 156.923 403.82 155.567 403.475 154.217C403.417 153.989 403.361 153.76 403.302 153.533C402.933 152.106 402.548 150.685 402.149 149.27C401.995 148.726 401.833 148.185 401.675 147.642C401.398 146.688 401.117 145.736 400.826 144.788C400.638 144.175 400.445 143.564 400.251 142.953C399.972 142.073 399.687 141.195 399.396 140.32C399.19 139.7 398.983 139.08 398.772 138.463C398.466 137.573 398.151 136.686 397.834 135.801C397.627 135.224 397.423 134.644 397.211 134.069C396.803 132.962 396.382 131.861 395.955 130.764C395.738 130.207 395.521 129.651 395.3 129.097C394.838 127.939 394.369 126.786 393.887 125.639C393.636 125.041 393.376 124.449 393.119 123.854C392.769 123.043 392.417 122.233 392.057 121.427C391.769 120.782 391.475 120.14 391.18 119.498C390.835 118.748 390.486 118 390.132 117.254C389.822 116.601 389.51 115.948 389.194 115.299C388.835 114.562 388.468 113.83 388.101 113.099C387.78 112.46 387.461 111.819 387.134 111.184C386.72 110.381 386.294 109.585 385.87 108.789C385.339 107.792 384.8 106.8 384.253 105.813C383.815 105.023 383.379 104.232 382.932 103.449C382.548 102.778 382.154 102.113 381.763 101.446C381.391 100.813 381.02 100.179 380.642 99.5501C380.227 98.8604 379.806 98.1749 379.384 97.4905C379.016 96.8955 378.646 96.3022 378.273 95.7113C377.834 95.0164 377.393 94.323 376.946 93.6338C376.581 93.0711 376.21 92.5125 375.84 91.9536C375.374 91.2501 374.909 90.5455 374.435 89.8482C374.102 89.3591 373.761 88.8761 373.424 88.3901C372.393 86.9037 371.345 85.431 370.276 83.9736C370.012 83.6129 369.752 83.2483 369.486 82.8893C368.931 82.1437 368.367 81.4068 367.803 80.669C367.462 80.2235 367.123 79.7768 366.779 79.3342C366.213 78.6064 365.641 77.8841 365.065 77.1641C364.718 76.7298 364.37 76.2967 364.019 75.8653C363.427 75.136 362.831 74.4096 362.228 73.6888C361.906 73.3027 361.579 72.92 361.254 72.5364C360.61 71.777 359.966 71.018 359.311 70.2682C359.144 70.0771 358.974 69.8894 358.806 69.6991C356.423 66.9901 353.968 64.3453 351.447 61.7661C351.186 61.4997 350.928 61.2314 350.666 60.9666C349.928 60.2199 349.183 59.4807 348.434 58.7455C348.143 58.46 347.852 58.1753 347.559 57.8915C346.796 57.1514 346.029 56.4158 345.254 55.6875C345.008 55.456 344.76 55.2271 344.512 54.9968C342.647 53.2602 340.75 51.558 338.822 49.8911C336.894 48.2242 334.934 46.5926 332.944 44.9977C332.79 44.8751 332.639 44.7508 332.485 44.6286C331.569 43.8986 330.644 43.178 329.715 42.4635C329.501 42.2987 329.287 42.134 329.072 41.9701C328.134 41.2549 327.191 40.5465 326.241 39.8472C326.089 39.7349 325.935 39.6241 325.782 39.5121C323.368 37.7454 320.909 36.0359 318.417 34.3737C316.475 33.0782 314.513 31.8092 312.524 30.5796C312.492 30.5592 312.459 30.5384 312.426 30.5181C311.337 29.8459 310.241 29.1855 309.139 28.5333C309.004 28.4529 308.868 28.3725 308.732 28.2925C307.632 27.6449 306.527 27.0062 305.414 26.3786C305.349 26.3417 305.283 26.3055 305.217 26.2687C301.53 24.1942 297.763 22.245 293.939 20.3971C291.63 19.2816 289.306 18.1942 286.95 17.1637C286.869 17.1282 286.788 17.0925 286.706 17.0571C285.476 16.5208 284.24 15.9951 282.997 15.4825C282.99 15.4796 282.983 15.4768 282.976 15.4741C278.718 13.7177 274.381 12.115 269.984 10.6436C267.794 9.91037 265.593 9.19965 263.369 8.53903C263.306 8.52017 263.243 8.50116 263.179 8.48236C261.948 8.1178 260.711 7.76614 259.471 7.42407C259.385 7.40051 259.301 7.37463 259.215 7.35123C259.215 7.35278 259.216 7.35434 259.216 7.35593C241.915 2.6095 223.705 0.059967 204.897 0.059967C174.939 0.059967 146.492 6.50903 120.841 18.0654C120.833 18.0621 120.825 18.0592 120.817 18.0559C120.451 18.221 120.088 18.3925 119.722 18.5598C118.771 18.9954 117.823 19.4377 116.879 19.8873C116.399 20.1161 115.92 20.3451 115.442 20.5773C114.256 21.1539 113.074 21.7383 111.901 22.3369C111.515 22.5343 111.131 22.7381 110.746 22.9378C109.845 23.4048 108.948 23.8778 108.055 24.3576C107.586 24.6098 107.117 24.8619 106.65 25.1176C105.501 25.7465 104.358 26.3834 103.223 27.0335C102.826 27.2608 102.433 27.4942 102.038 27.724C101.181 28.2223 100.328 28.7261 99.4797 29.2364C99.023 29.511 98.5661 29.785 98.1118 30.063C97.004 30.7409 95.9018 31.4273 94.808 32.1255C94.3993 32.3864 93.9947 32.6532 93.588 32.9168C92.7789 33.4415 91.9736 33.9712 91.1725 34.5069C90.7273 34.8045 90.2816 35.1013 89.8389 35.4023C88.7735 36.1267 87.7144 36.8597 86.6635 37.6036C86.248 37.8977 85.8367 38.1973 85.4234 38.4944C84.66 39.0434 83.9005 39.5972 83.145 40.1563C82.7106 40.4778 82.2753 40.798 81.8436 41.1228C80.8237 41.8902 79.8107 42.6662 78.8057 43.452C78.385 43.781 77.9685 44.1151 77.5504 44.4473C76.832 45.0181 76.1176 45.5934 75.4071 46.1736C74.9845 46.5187 74.5606 46.8622 74.1408 47.2106C73.1674 48.0184 72.2016 48.8351 71.2435 49.6605C70.8204 50.025 70.4015 50.3943 69.9815 50.7623C69.3103 51.35 68.6431 51.9421 67.9798 52.5386C67.5658 52.9107 67.15 53.281 66.7391 53.6565C65.8154 54.5006 64.8999 55.3536 63.9918 56.2143C63.5689 56.6151 63.1503 57.0203 62.7308 57.4247C62.1058 58.0271 61.4849 58.6337 60.8676 59.2439C60.4634 59.6436 60.0571 60.0411 59.6562 60.4441C58.7838 61.3209 57.9205 62.2065 57.0641 63.0988C56.6422 63.5385 56.2246 63.9822 55.8066 64.4255C55.2296 65.0375 54.6569 65.6534 54.0874 66.2724C53.6924 66.7018 53.2948 67.1287 52.9035 67.5615C52.0837 68.4678 51.2738 69.3831 50.4701 70.304C50.0523 70.7828 49.6388 71.2654 49.2253 71.7481C48.6973 72.3648 48.1735 72.9852 47.6527 73.6082C47.2098 74.1379 46.7663 74.6671 46.3287 75.2013C45.6209 76.0653 44.9205 76.9357 44.2266 77.8115C43.8136 78.3327 43.4048 78.8575 42.9968 79.3828C42.5184 79.9988 42.0446 80.6184 41.5731 81.2399C41.0486 81.9313 40.5273 82.6251 40.0114 83.3233C39.449 84.0846 38.8902 84.8485 38.3381 85.6178C37.9359 86.1783 37.5376 86.7419 37.1409 87.3067C36.7086 87.9221 36.2811 88.541 35.8554 89.1613C35.2935 89.98 34.7373 90.8027 34.1871 91.63C33.7296 92.3178 33.2737 93.0068 32.8243 93.7004C32.4333 94.304 32.0464 94.9102 31.6616 95.5182C31.2778 96.1245 30.899 96.7342 30.5214 97.3448C29.9459 98.2755 29.3776 99.2112 28.8167 100.152C28.4399 100.783 28.0637 101.416 27.6935 102.052C27.3167 102.699 26.9439 103.349 26.574 104.001C26.2409 104.588 25.913 105.179 25.5856 105.769C25.0102 106.808 24.4436 107.851 23.8858 108.9C23.5743 109.486 23.2629 110.072 22.9571 110.661C22.5986 111.351 22.244 112.043 21.8933 112.738C21.6082 113.303 21.3285 113.871 21.0486 114.438C20.4885 115.573 19.9386 116.715 19.3991 117.862C19.1409 118.411 18.8824 118.96 18.6289 119.512C18.2923 120.244 17.9593 120.979 17.6311 121.716C17.3927 122.252 17.1599 122.79 16.9261 123.328C16.391 124.559 15.8674 125.795 15.356 127.038C15.1427 127.556 14.9291 128.074 14.7201 128.595C14.4094 129.368 14.1023 130.142 13.8008 130.92C13.608 131.417 13.4208 131.918 13.2318 132.417C12.7279 133.747 12.2371 135.084 11.7604 136.428C11.5871 136.916 11.4136 137.404 11.244 137.894C10.9621 138.708 10.6835 139.524 10.4116 140.343C10.2642 140.787 10.1225 141.233 9.9781 141.678C9.51257 143.113 9.0619 144.555 8.62738 146.003C8.48752 146.47 8.34748 146.936 8.21087 147.404C7.96187 148.256 7.71606 149.109 7.47794 149.966C7.37408 150.34 7.27554 150.716 7.17376 151.09C6.75298 152.639 6.34942 154.194 5.96425 155.756C5.85287 156.208 5.74161 156.66 5.63326 157.113C5.42116 158 5.21186 158.887 5.01131 159.779C4.95198 160.042 4.89713 160.307 4.83886 160.571C4.4634 162.271 4.10925 163.978 3.77629 165.694C3.69178 166.129 3.60771 166.564 3.52594 167.001C3.35355 167.921 3.18374 168.842 3.02368 169.767C3.01061 169.842 2.99901 169.918 2.98599 169.994C2.65584 171.914 2.35536 173.844 2.07899 175.782C2.01803 176.21 1.95769 176.637 1.89942 177.066C1.77217 178 1.64739 178.935 1.53281 179.874C1.53483 179.878 1.53697 179.882 1.53898 179.886C0.532493 188.109 0 196.479 0 204.974C0 281.58 42.0508 348.358 104.32 383.514C104.321 383.517 104.321 383.519 104.322 383.521C104.687 383.727 105.056 383.927 105.423 384.131C106.66 384.819 107.906 385.495 109.159 386.159C109.65 386.419 110.14 386.681 110.634 386.937C111.383 387.326 112.135 387.709 112.89 388.088C113.36 388.325 113.831 388.558 114.303 388.791C115.87 389.564 117.447 390.32 119.036 391.054C119.243 391.149 119.448 391.248 119.656 391.343C120.508 391.734 121.366 392.115 122.225 392.494C122.592 392.656 122.959 392.817 123.327 392.976C126.176 394.213 129.058 395.389 131.972 396.498C132.185 396.58 132.398 396.661 132.612 396.742C135.761 397.929 138.946 399.042 142.167 400.077C142.172 400.078 142.177 400.08 142.182 400.082C146.598 401.5 151.079 402.772 155.62 403.893C155.622 403.894 155.625 403.895 155.627 403.895C171.411 407.792 187.91 409.874 204.897 409.874C260.776 409.874 311.421 387.501 348.385 351.235C348.385 351.235 348.386 351.235 348.385 351.235C348.389 351.231 348.392 351.228 348.396 351.225C349.701 349.944 350.989 348.645 352.26 347.33C352.308 347.28 352.356 347.231 352.403 347.181C353.667 345.871 354.914 344.545 356.143 343.201C356.162 343.18 356.182 343.158 356.202 343.137C358.694 340.409 361.115 337.614 363.459 334.754C363.478 334.731 363.496 334.709 363.515 334.686C364.63 333.324 365.725 331.947 366.805 330.556C366.913 330.418 367.021 330.28 367.128 330.141C368.164 328.8 369.184 327.446 370.188 326.079C370.318 325.902 370.446 325.724 370.576 325.547C371.572 324.181 372.554 322.803 373.517 321.412C373.618 321.265 373.718 321.117 373.819 320.97C374.813 319.525 375.793 318.07 376.751 316.599C376.751 316.599 376.752 316.598 376.752 316.598C377.653 315.215 378.536 313.82 379.404 312.414C379.416 312.396 379.427 312.377 379.439 312.359C380.292 310.975 381.129 309.58 381.95 308.174C381.975 308.132 382.001 308.09 382.026 308.047C382.831 306.666 383.62 305.274 384.395 303.872C384.432 303.804 384.471 303.737 384.508 303.669C385.267 302.292 386.008 300.904 386.736 299.508C386.785 299.414 386.835 299.321 386.884 299.227C387.594 297.86 388.287 296.482 388.967 295.097C389.029 294.97 389.093 294.845 389.155 294.718C389.817 293.363 390.461 291.998 391.093 290.626C391.167 290.467 391.243 290.309 391.316 290.15C391.93 288.807 392.528 287.454 393.114 286.096C393.197 285.905 393.283 285.715 393.365 285.523C393.933 284.196 394.484 282.859 395.025 281.517C395.116 281.29 395.211 281.066 395.302 280.838C395.826 279.525 396.332 278.203 396.829 276.877C396.926 276.618 397.028 276.361 397.124 276.101C397.604 274.805 398.066 273.5 398.52 272.192C398.622 271.897 398.73 271.604 398.831 271.308C399.268 270.031 399.686 268.745 400.099 267.457C400.205 267.125 400.317 266.796 400.421 266.464C400.815 265.211 401.19 263.949 401.56 262.685C401.67 262.312 401.785 261.942 401.893 261.568C402.245 260.34 402.578 259.104 402.908 257.867C403.018 257.452 403.136 257.041 403.244 256.625C403.558 255.418 403.851 254.203 404.143 252.988C404.252 252.538 404.367 252.091 404.473 251.639C404.748 250.455 405.004 249.264 405.26 248.072C405.364 247.583 405.477 247.097 405.579 246.607C405.818 245.445 406.038 244.276 406.258 243.107C406.357 242.582 406.465 242.06 406.56 241.533C406.765 240.392 406.95 239.245 407.136 238.098C407.227 237.537 407.328 236.98 407.415 236.418C407.588 235.295 407.739 234.165 407.894 233.035C407.975 232.445 408.066 231.857 408.142 231.265C408.284 230.157 408.404 229.042 408.528 227.928C408.597 227.309 408.677 226.694 408.74 226.074C408.854 224.968 408.944 223.855 409.04 222.744C409.094 222.112 409.16 221.483 409.208 220.849C409.295 219.714 409.359 218.573 409.428 217.434C409.464 216.819 409.513 216.206 409.544 215.59C409.607 214.36 409.646 213.124 409.687 211.889C409.704 211.358 409.734 210.83 409.747 210.298C409.792 208.528 409.816 206.754 409.816 204.974C409.816 203.336 409.792 201.703 409.754 200.074C409.741 199.551 409.72 199.031 409.704 198.509ZM246.24 364.439H200.57H166.258V290.827V116.869L136.46 116.589L136.531 105.066L136.708 76.4971L160.453 55.3477L175.301 42.1222H246.24V364.439ZM266.273 173.041C266.273 160.33 276.615 149.991 289.322 149.991C302.03 149.991 312.373 160.33 312.373 173.041C312.373 185.747 302.03 196.086 289.322 196.086C276.615 196.086 266.273 185.747 266.273 173.041ZM275.616 247.73L347.29 149.549H363.981L360.15 154.796L310.472 222.847L292.307 247.73H275.616ZM326.356 224.64C326.356 211.93 336.694 201.59 349.403 201.59C362.109 201.59 372.45 211.93 372.45 224.64C372.45 237.349 362.109 247.689 349.403 247.689C348.728 247.689 348.061 247.654 347.4 247.597C343.702 247.277 340.253 246.082 337.259 244.218C330.72 240.146 326.356 232.894 326.356 224.64Z\" fill=\"#1791D1\"/> <path d=\"M359.578 224.64C359.578 219.027 355.017 214.464 349.403 214.464C343.793 214.464 339.23 219.027 339.23 224.64C339.23 230.247 343.793 234.81 349.403 234.81C355.017 234.81 359.578 230.247 359.578 224.64Z\" fill=\"#1791D1\"/> <path d=\"M471.984 164.238H511.91V144.817H471.984V130.464H516.136V109.956H448.583V194.393H471.984V164.238Z\" fill=\"#1791D1\"/> <path d=\"M569.811 196.081C595.864 196.081 615.407 176.42 615.407 152.176V151.932C615.407 127.684 596.099 108.267 570.051 108.267C543.998 108.267 524.455 127.932 524.455 152.176V152.418C524.455 176.659 543.754 196.081 569.811 196.081ZM548.464 151.932C548.464 139.75 557.022 129.376 569.811 129.376C582.716 129.376 591.518 139.99 591.518 152.176V152.418C591.518 164.597 582.956 174.972 570.051 174.972C557.266 174.972 548.464 164.358 548.464 152.176V151.932Z\" fill=\"#1791D1\"/> <path d=\"M651.589 168.821H661.601H661.841L678.847 194.393H705.871L685.73 164.961C696.221 160.497 703.099 151.932 703.099 139.027V138.783C703.099 130.464 700.563 123.948 695.619 119.123C689.947 113.333 681.025 109.956 668.115 109.956H628.187V194.393H651.589V168.821ZM651.589 130.218H666.91C674.749 130.218 679.574 133.598 679.574 140.231V140.473C679.574 146.626 674.994 150.486 667.033 150.486H651.589V130.218Z\" fill=\"#1791D1\"/> <path d=\"M758.704 194.393H782.105V130.464H807.435V109.956H733.369V130.464H758.704V194.393Z\" fill=\"#1791D1\"/> <path d=\"M871.726 141.555H841.691V109.956H818.291V194.393H841.691V162.304H871.726V194.393H895.127V109.956H871.726V141.555Z\" fill=\"#1791D1\"/> <path d=\"M933.85 174.488V161.098H974.377V142.644H933.85V129.856H978.593V109.956H910.683V194.393H979.201V174.488H933.85Z\" fill=\"#1791D1\"/> <path d=\"M486.762 211.215H447.997V301.667H473.066V275.823H485.468C507.956 275.823 524.366 264.585 524.366 243.258V243.001C524.366 222.971 509.633 211.215 486.762 211.215ZM499.294 244.422C499.294 251.532 493.868 256.183 484.953 256.183H473.066V232.276H484.824C493.868 232.276 499.294 236.413 499.294 244.17V244.422Z\" fill=\"#1791D1\"/> <path d=\"M603.831 279.699H560.028V211.215H534.954V301.667H603.831V279.699Z\" fill=\"#1791D1\"/> <path d=\"M645.824 210.57L607.318 301.667H633.679L640.139 285.518H675.027L681.619 301.667H708.494L669.992 210.57H645.824ZM647.501 266L657.714 240.289L667.793 266H647.501Z\" fill=\"#1791D1\"/> <path d=\"M777.889 259.028L740.67 211.215H717.281V301.667H742.09V252.05L780.725 301.667H802.693V211.215H777.889V259.028Z\" fill=\"#1791D1\"/> <path d=\"M843.527 266H886.936V246.232H843.527V232.537H891.462V211.215H818.714V301.667H892.113V280.345H843.527V266Z\" fill=\"#1791D1\"/> <path d=\"M899.86 233.179H926.996V301.667H952.07V233.179H979.201V211.215H899.86V233.179Z\" fill=\"#1791D1\"/> <path d=\"M969.434 292.273C969.434 290.437 968.068 289.627 966.147 289.627H962.392V297.48H964.611V295.133H965.55L967.13 297.48H969.689L967.812 294.749C968.794 294.364 969.434 293.51 969.434 292.273ZM966.019 293.383H964.611V291.504H966.019C966.788 291.504 967.215 291.847 967.215 292.443C967.215 292.998 966.788 293.383 966.019 293.383Z\" fill=\"#1791D1\"/> <path d=\"M965.636 285.74C961.233 285.74 957.739 289.37 957.739 293.682V293.727C957.739 298.039 961.188 301.625 965.636 301.625C970.038 301.625 973.532 297.993 973.532 293.682V293.636C973.532 289.325 970.084 285.74 965.636 285.74ZM972.208 293.682C972.208 297.31 969.349 300.338 965.636 300.338C961.88 300.338 959.063 297.351 959.063 293.724V293.682C959.063 290.053 961.922 287.024 965.636 287.024C969.391 287.024 972.208 290.011 972.208 293.638V293.682Z\" fill=\"#1791D1\"/> <path d=\"M590.085 356.194H620.73V350.123H590.085V356.194Z\" fill=\"#1791D1\"/> <path d=\"M645.867 348.82L639.611 338.729H631.932V364.795H639.049V349.9L645.718 360.029H645.867L652.573 349.826V364.795H659.804V338.729H652.124L645.867 348.82Z\" fill=\"#1791D1\"/> <path d=\"M671.643 354.518H684.23V348.82H671.643V344.873H685.541V338.729H664.45V364.795H685.728V358.65H671.643V354.518Z\" fill=\"#1791D1\"/> <path d=\"M703.373 348.82L697.117 338.729H689.438V364.795H696.555V349.9L703.224 360.029H703.373L710.079 349.826V364.795H717.31V338.729H709.63L703.373 348.82Z\" fill=\"#1791D1\"/> <path d=\"M740.2 351.166C742.522 350.16 744.246 348.373 744.246 345.357V345.283C744.246 343.495 743.609 342.117 742.56 341.074C741.024 339.548 738.701 338.729 735.405 338.729H721.956V364.795H735.479C741.736 364.795 745.407 362.076 745.407 357.608V357.534C745.407 353.996 743.384 352.209 740.2 351.166ZM729.036 344.538H733.756C735.929 344.538 737.053 345.357 737.053 346.772V346.846C737.053 348.373 735.817 349.118 733.607 349.118H729.036V344.538ZM738.14 356.603C738.14 358.13 736.866 358.986 734.656 358.986H729.036V354.182H734.58C737.015 354.182 738.14 355.113 738.14 356.528V356.603Z\" fill=\"#1791D1\"/> <path d=\"M755.935 354.518H768.522V348.82H755.935V344.873H769.833V338.729H748.742V364.795H770.021V358.65H755.935V354.518Z\" fill=\"#1791D1\"/> <path d=\"M796.994 347.703V347.628C796.994 345.059 796.208 343.048 794.672 341.559C792.911 339.771 790.138 338.729 786.13 338.729H773.73V364.795H780.998V356.901H784.107H784.182L789.464 364.795H797.855L791.599 355.709C794.858 354.331 796.994 351.687 796.994 347.703ZM789.689 348.15C789.689 350.049 788.265 351.241 785.793 351.241H780.998V344.985H785.755C788.19 344.985 789.689 346.027 789.689 348.075V348.15Z\" fill=\"#1791D1\"/> <path d=\"M806.473 356.194H837.117V350.123H806.473V356.194Z\" fill=\"#1791D1\"/> </g> <defs> <clipPath id=\"clip0_2_2\"> <rect width=\"980\" height=\"410\" fill=\"white\"/> </clipPath> </defs> </svg>',description:\"\",height:\"100%\",id:\"sgIfGnTfX\",layoutId:\"sgIfGnTfX\",lineCap:\"butt\",lineJoin:\"miter\",name:\"1%FTP\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pc6lzz\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"QTQyBvlKi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-32)/2+0+0)+0+0+0+4.948275862068973,...addPropertyOverrides({s3dAJNPdA:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-63f5ug-container\",layoutDependency:layoutDependency,layoutId:\"tJ7jc3gfG-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ElementsCreatedBy,{height:\"100%\",id:\"tJ7jc3gfG\",layoutId:\"tJ7jc3gfG\",width:\"100%\"})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bSiGJ.framer-7999zf, .framer-bSiGJ .framer-7999zf { display: block; }\",\".framer-bSiGJ.framer-1kjf6j8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 64px 24px 64px; position: relative; width: 1200px; }\",\".framer-bSiGJ .framer-kacnkv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bSiGJ .framer-1lo4un2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bSiGJ .framer-1boljbh-container { flex: none; height: auto; left: 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-bSiGJ .framer-wl0udf { align-content: center; align-items: center; bottom: -4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(50.00000000000002% - 95px / 2); overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: -4px; width: 95px; z-index: 1; }\",\".framer-bSiGJ .framer-1x0g99n-container { flex: none; height: 40px; position: relative; width: 95px; z-index: 1; }\",\".framer-bSiGJ .framer-1pc6lzz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; min-height: 15px; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1px; }\",\".framer-bSiGJ .framer-63f5ug-container { flex: none; height: auto; position: absolute; right: 0px; top: 48%; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bSiGJ.framer-1kjf6j8, .framer-bSiGJ .framer-kacnkv, .framer-bSiGJ .framer-1lo4un2, .framer-bSiGJ .framer-wl0udf { gap: 0px; } .framer-bSiGJ.framer-1kjf6j8 > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-bSiGJ.framer-1kjf6j8 > :first-child, .framer-bSiGJ .framer-kacnkv > :first-child { margin-top: 0px; } .framer-bSiGJ.framer-1kjf6j8 > :last-child, .framer-bSiGJ .framer-kacnkv > :last-child { margin-bottom: 0px; } .framer-bSiGJ .framer-kacnkv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bSiGJ .framer-1lo4un2 > *, .framer-bSiGJ .framer-wl0udf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bSiGJ .framer-1lo4un2 > :first-child, .framer-bSiGJ .framer-wl0udf > :first-child { margin-left: 0px; } .framer-bSiGJ .framer-1lo4un2 > :last-child, .framer-bSiGJ .framer-wl0udf > :last-child { margin-right: 0px; } }\",\".framer-bSiGJ.framer-v-4l825q.framer-1kjf6j8 { padding: 24px 32px 24px 32px; width: 810px; }\",\".framer-bSiGJ.framer-v-1wjtppk.framer-1kjf6j8 { gap: 42px; padding: 24px 32px 24px 32px; width: 390px; }\",\".framer-bSiGJ.framer-v-1wjtppk .framer-wl0udf { bottom: 5px; left: calc(50.00000000000002% - 52px / 2); top: 5px; width: 52px; }\",\".framer-bSiGJ.framer-v-1wjtppk .framer-1x0g99n-container { height: 22px; width: 53px; }\",\".framer-bSiGJ.framer-v-1wjtppk .framer-1pc6lzz { flex-wrap: wrap; gap: 16px; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bSiGJ.framer-v-1wjtppk.framer-1kjf6j8, .framer-bSiGJ.framer-v-1wjtppk .framer-1pc6lzz { gap: 0px; } .framer-bSiGJ.framer-v-1wjtppk.framer-1kjf6j8 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-bSiGJ.framer-v-1wjtppk.framer-1kjf6j8 > :first-child { margin-top: 0px; } .framer-bSiGJ.framer-v-1wjtppk.framer-1kjf6j8 > :last-child { margin-bottom: 0px; } .framer-bSiGJ.framer-v-1wjtppk .framer-1pc6lzz > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bSiGJ.framer-v-1wjtppk .framer-1pc6lzz > :first-child { margin-left: 0px; } .framer-bSiGJ.framer-v-1wjtppk .framer-1pc6lzz > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zaw7eBM8R\":{\"layout\":[\"fixed\",\"auto\"]},\"s3dAJNPdA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZeqloo3mj=withCSS(Component,css,\"framer-bSiGJ\");export default FramerZeqloo3mj;FramerZeqloo3mj.displayName=\"Footer/Copyright\";FramerZeqloo3mj.defaultProps={height:80,width:1200};addPropertyControls(FramerZeqloo3mj,{variant:{options:[\"W0DFqA_ZT\",\"zaw7eBM8R\",\"s3dAJNPdA\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZeqloo3mj,[{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\"}]},...ThemeToggleFonts,...SVGFonts,...ElementsCreatedByFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZeqloo3mj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zaw7eBM8R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s3dAJNPdA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"80\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zeqloo3mj.map"],
  "mappings": "yUAQG,SAASA,GAAIC,EAAM,CAAC,GAAK,CAACC,EAAiBC,CAAmB,EAAEC,EAAS,IAAI,EAAEC,EAAU,IAAI,CAAC,IAAMC,EAAWL,EAAM,cAAcM,EAAwBD,CAAU,CAAE,CAAC,EAAE,IAAMC,EAAwBD,GAAY,CAAC,IAAME,EAAa,CAAC,CAAC,gBAAgB,cAAc,EAAE,CAAC,iBAAiB,eAAe,CAAC,EAAQC,EAAgBH,EAAW,SAAS,UAAU,EAAQI,EAAqBJ,EAAW,SAAS,gBAAgB,EAAQK,EAAWL,EAAW,SAAS,kBAAkB,EAAQM,EAAYN,EAAW,SAAS,mBAAmB,EAAE,GAAGA,EAAW,SAAS,SAAS,EAAE,CAAC,IAAMO,EAAgB,6BAAmCC,EAAMR,EAAW,MAAMO,CAAe,EAAE,GAAGC,EAAM,CAAC,IAAMC,EAAcD,EAAM,CAAC,EAAE,QAAQA,EAAM,CAAC,EAAEb,EAAM,WAAW,EAAEK,EAAWA,EAAW,QAAQO,EAAgBE,CAAa,CAAE,MAAMP,EAAa,KAAK,CAAC,WAAW,iBAAiBP,EAAM,WAAW,GAAG,CAAC,CAAG,CAAIQ,GAAqBE,EAAsFH,EAAa,KAAK,CAAC,SAAS,iBAAiBP,EAAM,WAAW,qBAAqBA,EAAM,OAAO,GAAG,CAAC,EAA9KO,EAAa,KAAK,CAAC,SAAS,iBAAiBP,EAAM,WAAW,GAAG,CAAC,EAAkHS,GAAsBF,EAAa,KAAK,CAAC,qCAAqC,iBAAiBP,EAAM,iBAAiB,GAAG,CAAC,GAASO,EAAa,KAAK,CAAC,SAAS,eAAeP,EAAM,WAAW,GAAG,CAAC,EAAMK,EAAW,SAAS,YAAY,EAAGE,EAAa,KAAK,CAAC,mBAAmB,oBAAoB,CAAC,EAAQA,EAAa,KAAK,CAAC,OAAO,yBAAyB,CAAC,EAAOI,EAA6FJ,EAAa,KAAK,CAAC,0BAA0B,oBAAoBP,EAAM,QAAQ,GAAG,CAAC,EAAnKO,EAAa,KAAK,CAAC,SAAS,0BAA0BP,EAAM,QAAQ,GAAG,CAAC,EAA8FO,EAAa,QAAQ,CAAC,CAACQ,EAAMC,CAAW,IAAI,CAACX,EAAWA,EAAW,QAAQU,EAAMC,CAAW,CAAE,CAAC,EAAEd,EAAoBG,CAAU,CAAE,EAAQY,EAAqB,CAAC,QAAQ,GAAGjB,EAAM,aAAa,KAAK,QAAQ,OAAO,cAAc,SAAS,WAAW,SAAS,eAAe,SAAS,SAAS,SAAS,EAAQkB,EAAmB,CAAC,KAAK,MAAM,GAAGlB,EAAM,OAAO,CAAC,aAAaA,EAAM,KAAK,EAAE,GAAGA,EAAM,aAAa,CAAC,mBAAmBA,EAAM,WAAW,CAAC,EAAE,OAAoBmB,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAOlB,CAAgB,EAAE,MAAMgB,EAAqB,GAAGC,CAAkB,CAAC,CAAE,CAACnB,GAAI,YAAY,MAAMA,GAAI,aAAa,CAAC,cAAc,grBAAgrB,YAAY,UAAU,cAAc,EAAE,kBAAkB,EAAE,QAAQ,OAAO,SAAS,QAAQ,MAAM,GAAG,YAAY,EAAE,EAAEqB,EAAoBrB,GAAI,CAAC,cAAc,CAAC,KAAKsB,EAAY,OAAO,MAAM,WAAW,gBAAgB,EAAK,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,SAAS,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,KAAK,EAAE,eAAe,EAAI,EAAE,kBAAkB,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,IAAI,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,QAAQ,CAAC,KAAKqB,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,OAAO,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,SAAS,CAAC,KAAKqB,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,QAAQ,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,MAAM,CAAC,KAAKqB,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,YAAY,cAAc,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,GAAG,YAAY,kBAAkB,YAAY,oEAAoE,CAAC,CAAC,EAAE,IAAOC,GAAQvB,GCRhnI,SAASwB,GAAO,EAAE,CAAC,QAAQC,EAAE,EAAEA,EAAE,UAAU,OAAOA,IAAI,CAAC,IAAIC,EAAE,UAAUD,CAAC,EAAE,QAAQE,KAAKD,EAAE,EAAEC,CAAC,EAAED,EAAEC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAIC,GAAE,CAAC,KAAK,SAAS,EAAE,CAAC,OAAM,EAAE,CAAC,IAAT,MAAa,EAAE,EAAE,MAAM,EAAE,EAAE,GAAU,EAAE,QAAQ,mBAAmB,kBAAkB,CAAC,EAAE,MAAM,SAAS,EAAE,CAAC,OAAO,mBAAmB,CAAC,EAAE,QAAQ,2CAA2C,kBAAkB,CAAC,CAAC,EAAE,SAASC,GAAK,EAAEJ,EAAE,CAAC,SAASK,EAAIJ,EAAEC,EAAEI,EAAE,CAAC,GAAiB,OAAO,SAArB,IAA8B,CAACA,EAAEP,GAAO,CAAC,EAAEC,EAAEM,CAAC,EAAa,OAAOA,EAAE,SAApB,WAA8BA,EAAE,QAAQ,IAAI,KAAK,KAAK,IAAI,EAAE,MAAMA,EAAE,OAAO,GAAGA,EAAE,UAAUA,EAAE,QAAQA,EAAE,QAAQ,YAAY,GAAGL,EAAE,mBAAmBA,CAAC,EAAE,QAAQ,uBAAuB,kBAAkB,EAAE,QAAQ,QAAQ,MAAM,EAAE,IAAIM,EAAE,GAAG,QAAQ,KAAKD,EAAKA,EAAE,CAAC,IAAGC,GAAG,KAAK,EAASD,EAAE,CAAC,IAAV,KAAcC,GAAG,IAAID,EAAE,CAAC,EAAE,MAAM,GAAG,EAAE,CAAC,IAAG,OAAO,SAAS,OAAOL,EAAE,IAAI,EAAE,MAAMC,EAAED,CAAC,EAAEM,CAAC,CAAC,CAAC,SAASC,EAAIR,EAAE,CAAC,GAAiB,OAAO,SAArB,MAAgC,CAAC,UAAU,QAAQA,GAAG,CAA+D,QAA1DC,EAAE,SAAS,OAAO,SAAS,OAAO,MAAM,IAAI,EAAE,CAAC,EAAMC,EAAE,CAAC,EAAU,EAAE,EAAE,EAAED,EAAE,OAAO,IAAI,CAAC,IAAIM,EAAEN,EAAE,CAAC,EAAE,MAAM,GAAG,EAAMQ,EAAEF,EAAE,MAAM,CAAC,EAAE,KAAK,GAAG,EAAE,GAAG,CAAC,IAAIG,EAAE,mBAAmBH,EAAE,CAAC,CAAC,EAAmB,GAAjBL,EAAEQ,CAAC,EAAE,EAAE,KAAKD,EAAEC,CAAC,EAAKV,IAAIU,EAAE,KAAK,MAAS,CAAC,CAAC,CAAC,OAAOV,EAAEE,EAAEF,CAAC,EAAEE,CAAC,CAAC,CAAC,OAAO,OAAO,OAAO,CAAC,IAAIG,EAAI,IAAIG,EAAI,OAAO,SAASL,EAAEH,EAAE,CAACK,EAAIF,EAAE,GAAGJ,GAAO,CAAC,EAAEC,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,eAAe,SAASG,EAAE,CAAC,OAAOC,GAAK,KAAK,UAAUL,GAAO,CAAC,EAAE,KAAK,WAAWI,CAAC,CAAC,CAAC,EAAE,cAAc,SAASA,EAAE,CAAC,OAAOC,GAAKL,GAAO,CAAC,EAAE,KAAK,UAAUI,CAAC,EAAE,KAAK,UAAU,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,MAAM,OAAO,OAAOH,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,OAAO,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAIA,GAAEI,GAAKD,GAAE,CAAC,KAAK,GAAG,CAAC,ECAx1C,SAASQ,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,GAAe,IAAI,IAAMA,GAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCd9C,IAAMM,EAAgB,mBAAyBC,GAAY,mBAAyBC,GAAS,0BAAgCC,GAAY,2BAAiCC,GAAO,CAAC,QAAQ,OAAO,aAAa,EAAQC,GAAcC,GAAY,aAAa,EAAE,SAASC,GAAmBC,EAAY,CAAC,IAAMC,EAAU,QAAcC,EAAWF,EAAY,QAAQC,CAAS,EAAE,GAAGC,IAAa,GAAG,CAAC,IAAMC,EAASH,EAAY,QAAQ,IAAIE,EAAWD,EAAU,MAAM,EAAE,GAAGE,IAAW,GAAkF,OAA5DH,EAAY,UAAUE,EAAWD,EAAU,OAAOE,CAAQ,CAAsB,CAAC,OAAO,IACnkB,CAAC,SAASC,GAAgBC,EAAO,CAAC,OAAOA,EAAO,CAAC,YAAYA,EAAO,aAAa,GAAGA,EAAO,QAAQ,MAAMA,EAAO,UAAU,MAAMA,EAAO,WAAW,MAAMA,EAAO,SAAS,KAAK,GAAGA,EAAO,KAAK,KAAK,YAAYA,EAAO,MAAM,YAAYA,EAAO,KAAK,EAAE,CAAC,CAAE,CAGtO,SAARC,EAA6BC,EAAM,CAAC,IAAIC,EAAQ,GAAK,CAAC,OAAAC,EAAO,SAAAC,EAAS,gBAAAC,EAAgB,MAAAC,EAAM,WAAAC,CAAU,EAAEN,EAAUO,EAAU,GAAUC,EAAaR,EAAM,aAAa,GAAG,OAAO,SAAW,KAAa,GAAG,SAAS,KAAK,aAAa,mBAAmB,EAAMQ,GAAc,gBAAeA,EAAa,SAAS,KAAK,aAAa,mBAAmB,GAAGD,EAAU,WAAc,SAAS,KAAK,aAAatB,CAAe,EAAGuB,EAAa,SAAS,KAAK,aAAavB,CAAe,UAAWe,EAAM,UAAU,CAAC,IAAMS,EAAYC,GAAQ,IAAIxB,EAAW,EAAKG,GAAO,SAASoB,CAAW,IAAGD,EAAaC,EAAa,EAAE,IAAIE,EAAY,QAAWJ,GAAW,SAAS,KAAK,aAAa,mBAAmB,EAAGI,EAAY,SAAS,KAAK,aAAa,mBAAmB,EAAW,OAAOC,EAAQ,MAAe,GAAAX,EAAQW,KAAU,MAAMX,IAAU,SAAcA,EAAQ,cAAaU,EAAYC,EAAO,WAAW,8BAA8B,EAAE,QAAQ,OAAO,SAAS,GAAK,CAACC,EAAMC,CAAQ,EAAExB,GAAc,EAAO,CAACyB,EAAYC,CAAc,EAAEC,EAAST,GAAc,cAAcG,EAAYH,CAAY,EACxjC,CAACU,EAAqBC,EAAuB,EAAEF,EAAST,CAAY,EAAQY,EAASC,EAAOR,CAAK,EAAQS,EAAUD,EAAO,IAAI,EAAE,SAASE,EAAYC,EAAS,CAAC,IAAIC,EAAeD,EAAYA,GAAU,gBAAkBjB,EAAWkB,EAAeP,EAA2BO,EAAed,GAAcG,EAASU,CAAQ,EAAER,EAAeS,CAAc,EAAKlB,GAAW,SAAS,KAAK,aAAa,oBAAoBkB,CAAc,EAAG,SAAS,KAAK,aAAaxC,EAAgBuC,CAAQ,EAAE,SAAS,gBAAgB,aAAavC,EAAgBuC,CAAQ,EAAKxB,EAAM,WAAWU,GAAQ,IAAIxB,GAAYsC,EAAS,CAAC,QAAQ,GAAG,CAAC,EACvmBZ,EAAO,cAAc,IAAI,YAAYxB,EAAW,CAAC,CAAE,CAAC,SAASsC,GAAa,CAAC,IAAMD,EAAeV,GAAa,QAAQ,OAAO,QAAWf,EAAM,mBAAoBuB,EAAYE,GAAgBd,EAAY,cAAcc,CAAc,EAAQF,EAAYE,CAAc,CAAG,CAAC,SAASE,GAAgB,CAAIL,EAAU,SAASC,EAAYlC,GAAOiC,EAAU,QAAQ,aAAa,CAAC,CAAG,CAAC,IAAMM,EAAkBC,GAAO,CAAIT,EAAS,SAAS,eAAeJ,EAAea,EAAM,QAAQ,OAAO,OAAO,CAAG,EAOqX,OAPnXC,EAAU,IAAI,CAACV,EAAS,QAAQP,EACpgBA,GAAO,cAA6BG,EAAXT,EAA0BW,EAA2CP,CAAvB,EAA2CK,EAAeH,CAAK,CAAG,EAAE,CAACA,CAAK,CAAC,EAAEiB,EAAU,IAAI,CAAItB,GAAcK,GAAOU,EAAYf,CAAY,EAIvN,IAAMuB,EAAWnB,EAAO,WAAW,8BAA8B,EAA0D,GAAxDmB,EAAW,iBAAiB,SAASH,CAAiB,EAAK,CAACrB,EAAU,CAAC,IAAIyB,EAAc,GACtJC,EAAY,SAAS,cAAc,MAAM,EAC/C,GADoDA,GAAgBA,EAAY,cAAc,SAAS9C,EAAQ,EAAE,IAAG6C,EAAc,IAC/HA,EAAc,CAAC,IAAIE,EAAM,SAAS,cAAc,qCAAqC,EAAE,GAAGA,GAA4CA,GAAM,YAAa,CAAC,IAAMC,GAAUD,EAAM,YAAkBE,GAAaD,GAAU,QAAQ,kDAAkD,EAAE,GAAGC,KAAe,GAAG,CAAC,IAAIC,EAAa,SAAS,cAAc,OAAO,EAAEA,EAAa,GAAGlD,GAASkD,EAAa,YAAY,QAAQpD,CAAe,cAAcO,GAAmB2C,EAAS,CAAC,UAAUlD,CAAe,aAAaO,GAAmB2C,GAAU,UAAUC,EAAY,CAAC,CAAC,KAAKpC,EAAM,eAAe,0CAA0Cf,CAAe,2CAA2CA,CAAe,oCAAoC,EAAE,GAAG,SAAS,KAAK,YAAYoD,CAAY,CAAE,CAAC,CAAC,CAAC,CAAC,MAAM,IAAIN,EAAW,oBAAoB,SAASH,CAAiB,CAAE,EAAE,CAAC,CAAC,EAAS5B,EAAM,eAAe,CAAC,IAAI,SAAS,GAAK,CAAC,OAAAsC,EAAO,QAAAC,EAAQ,OAAAC,CAAM,EAAEtC,EAAO,OAAoBuC,EAAMC,EAAO,IAAI,CAAC,QAAQhB,EAAY,MAAM,CAAC,SAAS,WAAW,UAAUY,EAAO,SAASA,EAAO,EAAEC,EAAQ,EAAE,gBAAgBrC,EAAO,KAAK,QAAQqC,EAAQ,aAAarC,EAAO,OAAO,MAA0CG,GAAM,MAAM,OAAO,UAAU,GAAGL,EAAM,KAAK,EAAE,OAAO,GAAM,WAAW,CAAC,MAA2CK,GAAM,YAAkDA,GAAM,KAAM,EAAE,QAAQ,GAAM,WAAWC,EAAW,SAAS,CAACN,EAAM,QAAqB2C,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,MAAM,EAAE,UAAU,aAAa,aAAazC,EAAO,OAAO,GAAGL,GAAgBG,EAAM,MAAM,CAAC,CAAC,CAAC,EAAe2C,EAAKD,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,OAAOJ,EAAOC,EAAQ,EAAE,YAAY,EAAE,CAACxB,GAAa,QAAQ,OAAO,OAAO,EAAEwB,EAAQ,gBAAgBrC,EAAO,OAAO,aAAaA,EAAO,OAAOqC,EAAQ,UAAUC,EAAO,GAAGA,EAAO,CAAC,MAAMA,EAAO,CAAC,MAAMA,EAAO,IAAI,MAAMA,EAAO,MAAM,MAAMA,EAAO,KAAK,GAAG,OAAO,UAAU,aAAa,GAAG3C,GAAgBK,EAAO,YAAY,CAAC,EAAE,OAAO,GAAK,QAAQ,GAAM,WAAWI,EAAW,SAASD,GAAoBsC,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,MAAM,CAAC,EAAE,SAAsBA,EAAKC,GAAK,CAAC,MAAM7B,EAAY,MAAM,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,uBAAuB,EAAE,GAAGV,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,WAAW,IAAIwC,EAAa,GAAK,CAAC,gBAAAC,CAAe,EAAE1C,EAAsB2C,EAAY,CAAC,MAAM3C,EAAgB,UAAU,KAAKA,EAAgB,SAAS,YAAYA,EAAgB,eAAe,EAAE,OAAoBqC,EAAMC,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc,MAAM,IAAIvC,EAAS,IAAI,WAAW,SAAS,eAAe,gBAAgB,gBAAgBA,EAAS,KAAK,MAAMA,EAAS,UAAU,aAAaA,EAAS,cAAc,GAAGA,EAAS,aAAa,MAAMA,EAAS,cAAc,MAAMA,EAAS,iBAAiB,MAAMA,EAAS,gBAAgB,KAAK,GAAGA,EAAS,MAAM,KAAK,QAAQA,EAAS,eAAe,GAAGA,EAAS,cAAc,MAAMA,EAAS,eAAe,MAAMA,EAAS,kBAAkB,MAAMA,EAAS,iBAAiB,KAAK,GAAGA,EAAS,OAAO,KAAK,WAAW,OAAO,UAAU,aAAa,OAAO,UAAU,eAAmDE,GAAM,MAAM,GAAGR,GAAgBG,EAAM,MAAM,EAAE,GAAGG,EAAS,KAAK,GAAGH,EAAM,KAAK,EAAE,WAAW,CAAC,MAAMG,EAAS,gBAAgBA,EAAS,UAAU,eAAoDE,GAAM,YAAkDA,GAAM,KAAM,EAAE,QAAQ,GAAM,WAAWC,EAAW,SAAS,CAAcmC,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc,MAAM,WAAW,SAAS,IAAItC,EAAS,IAAI,WAAW0C,EAAa7C,EAAM,SAAS,MAAM6C,IAAe,OAAO,OAAOA,EAAa,QAAQ,OAAO,OAAO,QAAQ,EAAE,SAAS,CAACxC,GAAoBsC,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsBA,EAAKC,GAAK,CAAC,MAAM7B,EAAY,GAAGf,EAAM,MAAM,MAAM,CAAC,MAAM,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC8C,GAAiBjC,GAAO,cAAckC,EAAYpC,CAAW,EAAEoC,EAAYlC,CAAK,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,WAAW,MAAMxC,EAAS,KAAK,EAAE,SAASA,EAAS,OAAoBwC,EAAKC,GAAK,CAAC,MAAM,QAAQ,KAAK,EAAE,CAAC,CAAC,CAAC,EAAeH,EAAM,SAAS,CAAC,IAAInB,EAAU,KAAK,QAAQ,SAASK,EAAe,MAAM,CAAC,SAAS,WAAW,MAAM,EAAE,QAAQ,CAAC,EAAE,SAAS,CAAcgB,EAAK,SAAS,CAAC,MAAM,QAAQ,SAAS9B,GAAO,SAAS,CAACiC,GAAiBnC,GAAa,QAAQ,SAASoC,EAAY,KAAK,CAAC,EAAeJ,EAAK,SAAS,CAAC,MAAM,OAAO,SAAS9B,GAAO,QAAQ,CAACiC,GAAiBnC,GAAa,OAAO,SAASoC,EAAY,IAAI,CAAC,EAAED,GAA8BH,EAAK,SAAS,CAAC,MAAM,cAAc,SAAS9B,GAAO,cAAc,SAASkC,EAAY,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,SAAS,OAAoBJ,EAAK,MAAM,CAAC,QAAQjB,EAAY,SAASX,GAAa,QAAQf,EAAM,YAAYA,EAAM,UAAU,CAAC,CAAE,CAAC,CAACD,EAAY,YAAY,eAAe,IAAMiD,GAAe,CAAC,MAAM,CAAC,KAAKC,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,aAAa,EAAE,UAAU,eAAe,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,WAAW,aAAa,cAAc,WAAW,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,aAAa,QAAQ,QAAQ,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,CAAC,QAAQ,SAAS,SAAS,QAAQ,CAAC,CAAC,EAAQC,EAAoB,CAAC,MAAM,qBAAqB,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,CAAC,EAAQC,GAAa,CAAC,KAAK,UAAU,MAAM,UAAU,KAAK,GAAG,QAAQ,CAAC,EAAEC,EAAoBrD,EAAY,CAAC,aAAa,CAAC,KAAKkD,EAAY,KAAK,aAAa,cAAc,QAAQ,CAAC,cAAc,QAAQ,MAAM,EAAE,aAAa,CAAC,eAAe,QAAQ,MAAM,EAAE,MAAM,SAAS,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAK,MAAM,aAAa,EAAE,eAAe,CAAC,KAAKA,EAAY,KAAK,aAAa,SAAS,QAAQ,CAAC,SAAS,WAAW,QAAQ,EAAE,aAAa,CAAC,SAAS,WAAW,QAAQ,EAAE,MAAM,OAAO,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,YAAY,UAAU,KAAK,UAAU,SAAS,CAAC,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,KAAK,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,MAAM,aAAa,UAAU,SAAS,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,SAASD,EAAc,EAAE,OAAO,CAAC,KAAKC,EAAY,OAAO,aAAaC,EAAoB,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAKD,EAAY,MAAM,aAAaC,EAAoB,KAAK,EAAE,EAAE,CAAC,KAAKD,EAAY,OAAO,aAAaC,EAAoB,EAAE,eAAe,EAAI,EAAE,EAAE,CAAC,KAAKD,EAAY,OAAO,aAAaC,EAAoB,EAAE,eAAe,EAAI,EAAE,KAAK,CAAC,KAAKD,EAAY,OAAO,aAAaC,EAAoB,KAAK,IAAI,EAAE,eAAe,EAAI,EAAE,OAAO,CAAC,KAAKD,EAAY,OAAO,aAAaC,EAAoB,OAAO,eAAe,EAAI,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAKD,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,KAAK,EAAE,eAAe,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,CAAC,CAAC,EAAE,OAAOjD,GAAOA,EAAM,iBAAiB,QAAQ,EAAE,SAAS,CAAC,KAAKiD,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,MAAM,aAAa,UAAU,SAAS,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,eAAe,CAAC,KAAKA,EAAY,MAAM,SAAS,GAAK,MAAM,kBAAkB,EAAE,KAAK,CAAC,KAAK,OAAO,SAAS,WAAW,gBAAgB,aAAa,aAAa,CAAC,SAAS,GAAG,WAAW,CAAC,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,qBAAqB,SAAS,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,aAAa,EAAE,UAAU,iBAAiB,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,iBAAiB,kBAAkB,qBAAqB,mBAAmB,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,aAAa,GAAG,UAAU,gBAAgB,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,gBAAgB,iBAAiB,oBAAoB,kBAAkB,EAAE,YAAY,CAAC,KAAK,KAAK,KAAK,IAAI,EAAE,IAAI,CAAC,CAAC,EAAE,OAAOjD,GAAOA,EAAM,iBAAiB,UAAU,EAAE,gBAAgB,CAAC,KAAKiD,EAAY,OAAO,MAAM,UAAU,YAAY,UACztP,SAAS,CAAC,gBAAgB,CAAC,KAAKA,EAAY,QAAQ,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,aAAa,eAAe,OAAOjD,GAAO,CAACA,EAAM,eAAe,EAAE,UAAU,CAAC,KAAKiD,EAAY,OAAO,aAAa,OAAO,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,MAAM,CAAC,EAAE,OAAOjD,GAAOA,EAAM,iBAAiB,UAAU,EAAE,MAAM,CAAC,KAAKiD,EAAY,OAAO,aAAaE,GAAa,SAAS,GAAK,SAAS,CAAC,KAAK,CAAC,KAAKF,EAAY,KAAK,aAAa,UAAU,QAAQ,CAAC,UAAU,MAAM,OAAO,EAAE,aAAa,CAAC,UAAU,MAAM,OAAO,EAAE,wBAAwB,GAAK,0BAA0B,UAAU,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,YAAY,cAAc,gBAAgB,GAAK,MAAM,YAAY,OAAOjD,GAAOA,EAAM,MAAM,KAAK,EAAE,QAAQ,CAAC,KAAKiD,EAAY,OAAO,YAAY,cAAc,gBAAgB,GAAK,MAAM,WAAW,OAAOjD,GAAOA,EAAM,MAAM,KAAK,EAAE,WAAW,CAAC,KAAKiD,EAAY,gBAAgB,MAAM,QAAQ,OAAOjD,GAAOA,EAAM,MAAM,OAAO,EAAE,UAAU,CAAC,KAAKiD,EAAY,gBAAgB,MAAM,OAAO,OAAOjD,GAAOA,EAAM,MAAM,OAAO,EAAE,OAAO,CAAC,KAAKiD,EAAY,KAAK,aAAa,QAAQ,QAAQ,CAAC,OAAO,MAAM,SAAS,EAAE,aAAa,CAAC,OAAO,MAAM,SAAS,EAAE,OAAOjD,GAAOA,EAAM,MAAM,OAAO,EAAE,MAAM,CAAC,KAAKiD,EAAY,MAAM,aAAaE,GAAa,MAAM,OAAOnD,GAAOA,EAAM,MAAM,WAAWA,EAAM,MAAM,KAAK,EAAE,WAAW,CAAC,KAAKiD,EAAY,MAAM,SAAS,GAAK,OAAOjD,GAAOA,EAAM,MAAM,WAAWA,EAAM,MAAM,KAAK,EAAE,KAAK,CAAC,KAAKiD,EAAY,OAAO,aAAaE,GAAa,KAAK,IAAI,EAAE,KAAK,EAAE,eAAe,EAAI,EAAE,QAAQ,CAAC,KAAKF,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,EAAE,OAAOjD,GAAOA,EAAM,gBAAgB,QAAQ,EAAE,OAAO,CAAC,KAAKiD,EAAY,OAAO,SAAS,GAAK,SAASD,GAAe,OAAOhD,GAAOA,EAAM,gBAAgB,QAAQ,EAAE,YAAY,CAAC,KAAKiD,EAAY,kBAAkB,MAAM,QAAQ,OAAOjD,GAAOA,EAAM,iBAAiB,QAAQ,EAAE,WAAW,CAAC,KAAKiD,EAAY,kBAAkB,MAAM,OAAO,OAAOjD,GAAOA,EAAM,iBAAiB,QAAQ,EAAE,mBAAmB,CAAC,KAAKiD,EAAY,QAAQ,aAAa,GAE1/D,OAAOjD,GAAOA,EAAM,iBAAiB,QAAQ,EAAE,eAAe,CAAC,KAAKiD,EAAY,QAAQ,aAAa,GAAK,MAAM,mBAAmB,EAAE,WAAW,CAAC,KAAKA,EAAY,WAAW,OAAOjD,GAAOA,EAAM,MAAM,QAAQ,CAAC,CAAC,EAAE,SAAS4C,GAAK5C,EAAM,CAAC,GAAK,CAAC,MAAAa,EAAM,KAAAwC,EAAK,KAAAC,EAAK,SAAAC,EAAS,QAAAC,EAAQ,WAAAC,EAAW,UAAAC,EAAU,OAAAC,EAAO,QAAAC,EAAQ,MAAA1B,EAAM,CAAC,CAAC,EAAElC,EAAM,OAAOqD,EAAK,CAAC,IAAI,MAAM,OAAGxC,GAAO,SAAS,CAAC0C,EAAS,QAAQ1C,GAAO,QAAQ,CAAC2C,EAAQ,OAA4Bb,EAAK,MAAM,CAAC,CAAC,EAAuBF,EAAMoB,GAAU,CAAC,SAAS,CAAclB,EAAK,MAAM,CAAC,UAAU,oBAAoB,MAAM,CAAC,MAAMW,EAAK,OAAOA,EAAK,QAAAM,EAAQ,cAAc,OAAO,GAAG1B,CAAK,EAAE,wBAAwB,CAAC,QAAQrB,GAAO,QAAQ0C,EAASC,GAAS,QAAQ,gBAAgB,UAAUF,CAAI,GAAG,EAAE,QAAQ,iBAAiB,UAAUA,CAAI,GAAG,CAAC,CAAC,CAAC,EAAeX,EAAK,QAAQ,CAAC,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,QAAQ,OAAoBA,EAAKmB,GAAM,CAAC,WAAW,CAAC,IAAIH,EAAO,GAAG9C,GAAO,QAAQ4C,EAAWC,CAAS,EAAE,MAAM,CAAC,QAAAE,EAAQ,MAAMN,EAAK,OAAOA,EAAK,GAAGpB,CAAK,CAAC,CAAC,EAAE,IAAI,UAAU,OAAoBO,EAAM,MAAM,CAAC,MAAM,6BAA6B,MAAMa,EAAK,OAAOA,EAAK,QAAQ,YAAY,YAAY,IAAI,OAAO,eAAe,KAAK,OAAO,cAAc,QAAQ,eAAe,QAAQ,MAAM,CAAC,QAAAM,EAAQ,GAAG1B,CAAK,EAAE,SAAS,CAAcS,EAAK,OAAO,CAAC,OAAO,OAAO,EAAE,gBAAgB,KAAK,MAAM,CAAC,EAAE9B,GAAO,QAAQ,CAAc8B,EAAK,OAAO,CAAC,EAAE,8FAA8F,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,2GAA2G,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,kHAAkH,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,gFAAgF,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,iFAAiF,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,yGAAyG,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,kHAAkH,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,6FAA6F,YAAY,IAAI,KAAK,cAAc,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,8EAA8E,YAAY,IAAI,KAAK,cAAc,CAAC,CAAC,EAAE9B,GAAO,OAAoB8B,EAAK,OAAO,CAAC,EAAE,iLAAiL,YAAY,IAAI,KAAK,cAAc,CAAC,EAC3/FA,EAAK,OAAO,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CCjB2L,IAAMoB,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAuCuB,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGvB,GAAUmB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUS,EAAGD,EAAkB,iBAAiBf,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAAKuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,SAAsBjB,EAAK2C,GAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,kFAAkF,sQAAsQ,6HAA6H,4WAA4W,EAQnmIC,GAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR+I,IAAMI,GAAiBC,GAASC,CAAW,EAAQC,GAASF,GAASG,EAAG,EAAQC,GAAuBJ,GAASK,EAAiB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,GAAGkC,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA5C,CAAQ,EAAE6C,GAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBpB,GAAuBD,EAAMzB,CAAQ,EAAuC+C,EAAkBC,EAAGpD,GAAkB,GAAhD,CAAC,CAAuE,EAAQqD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAAUgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,OAAO,CAAC,GAAGkB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,gBAAgB,+EAA+E,GAAGhB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsBU,EAAMtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,kBAAkB1C,GAAmB,SAAsBY,EAAK1B,EAAY,CAAC,eAAe,SAAS,WAAW,CAAC,EAAE,YAAY,CAAC,EAAE,aAAa,QAAQ,SAAS,CAAC,MAAM,qBAAqB,KAAK,qBAAqB,KAAK,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,UAAU,eAAe,IAAI,EAAE,QAAQ,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,eAAe,GAAM,eAAe,EAAE,gBAAgB,EAAE,OAAO,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,cAAc,GAAM,cAAc,GAAG,eAAe,EAAE,EAAE,gBAAgB,CAAC,SAAS,OAAO,gBAAgB,eAAe,UAAU,QAAQ,gBAAgB,EAAI,EAAE,OAAO,OAAO,MAAM,CAAC,MAAM,kEAAkE,QAAQ,GAAG,SAAS,GAAG,QAAQ,EAAE,KAAK,GAAG,OAAO,OAAO,KAAK,SAAS,EAAE,GAAG,YAAY,SAAS,YAAY,mBAAmB,GAAM,UAAU,GAAM,eAAe,GAAM,OAAO,CAAC,KAAK,wEAAwE,OAAO,GAAG,QAAQ,EAAE,OAAO,GAAG,OAAO,CAAC,KAAK,EAAE,MAAM,qBAAqB,OAAO,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,OAAO,uEAAuE,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK0C,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsB1C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,QAAQ,iBAAiB4B,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,SAAsB9B,EAAKxB,GAAI,CAAC,YAAY,sEAAsE,cAAc,EAAE,kBAAkB,EAAE,cAAc,q3kBAAq3kB,YAAY,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,OAAO,SAAS,QAAQ,KAAK,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAKyC,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,GAAGvD,GAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,kBAAkB1C,GAAmB,SAAsBY,EAAKtB,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiE,GAAI,CAAC,kFAAkF,gFAAgF,qRAAqR,gRAAgR,iSAAiS,0IAA0I,+VAA+V,qHAAqH,+TAA+T,0IAA0I,+/BAA+/B,+FAA+F,2GAA2G,mIAAmI,0FAA0F,0GAA0G,ywBAAywB,EAQvo6BC,EAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,mBAAmBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxE,GAAiB,GAAGG,GAAS,GAAGE,EAAsB,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "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", "assign", "t", "n", "r", "e", "init", "set", "i", "o", "get", "c", "a", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "THEME_ATTRIBUTE", "COOKIE_NAME", "STYLE_ID", "SIGNAL_NAME", "THEMES", "useThemeStore", "createStore", "extractBodySection", "inputString", "searchStr", "startIndex", "endIndex", "makeBorderStyle", "border", "ThemeToggle", "props", "_window", "toggle", "dropdown", "dropdownOptions", "icons", "transition", "isPreview", "initialTheme", "storedTheme", "t", "deviceTheme", "window", "theme", "setTheme", "activeTheme", "setActiveTheme", "ye", "originalPreviewTheme", "setOriginalPreviewTheme", "themeRef", "pe", "selectRef", "changeTheme", "newTheme", "newActiveTheme", "toggleTheme", "onSelectChange", "handleThemeChange", "event", "ue", "mediaQuery", "generateStyle", "headElement", "style", "styleText", "darkLocation", "styleElement", "height", "padding", "shadow", "u", "motion", "p", "Icon", "_props_style", "showDeviceTheme", "themeTitles", "borderControls", "ControlType", "toggleShadowDefault", "iconsDefault", "addPropertyControls", "type", "size", "lightSvg", "darkSvg", "lightImage", "darkImage", "sizing", "opacity", "l", "Image2", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "css", "FramerDjVe6S_Mt", "withCSS", "DjVe6S_Mt_default", "addFonts", "ThemeToggleFonts", "getFonts", "ThemeToggle", "SVGFonts", "SVG_Prod_default", "ElementsCreatedByFonts", "DjVe6S_Mt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Link", "css", "FramerZeqloo3mj", "withCSS", "Zeqloo3mj_default", "addPropertyControls", "ControlType", "addFonts"]
}
