{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gyLBGKaVpa3yC2junYQZ/9Fva4bE0a8pCHpmnHlfA/ChangeVariant_1.js", "ssg:https://framerusercontent.com/modules/Vo0V96c7D87hDx3dJ94X/urelCDivuKLrNtLSYfnk/TestChecking_ru.js", "ssg:https://framerusercontent.com/modules/rDRMM1TIqiaVx10tublC/8CfwCCVZkWODX4TmpZSM/I5IvAR4Sj.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore1=createStore({mode:\"sources_RU\"});export function withViewChange(Component){return props=>{const[store,setStore]=useStore1();return /*#__PURE__*/_jsx(Component,{...props,variant:store.mode});};}export function withRu(Component){return props=>{const[store,setStore]=useStore1();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>setStore({mode:\"sources_RU\"})});};}export function withEn(Component){return props=>{const[store,setStore]=useStore1();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>setStore({mode:\"sources_EN\"})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withViewChange\":{\"type\":\"reactHoc\",\"name\":\"withViewChange\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRu\":{\"type\":\"reactHoc\",\"name\":\"withRu\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEn\":{\"type\":\"reactHoc\",\"name\":\"withEn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ChangeVariant_1.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function QuestionAnswer(props){const attemptsKey=`attempts_${props.pageId}`;const[userAnswer,setUserAnswer]=React.useState(\"\");const[result,setResult]=React.useState(\"\");const[isLoading,setIsLoading]=React.useState(false);const[isSubmitted,setIsSubmitted]=React.useState(false);const[isClient,setIsClient]=React.useState(false);const[attempts,setAttempts]=React.useState({count:0,lastAttemptTime:0});const[loadingPhrase,setLoadingPhrase]=React.useState(\"\");const loadingPhrases=[\"\u0421\u0432\u0435\u0440\u044F\u0435\u043C\u0441\u044F \u0441 \u0433\u043E\u0440\u043E\u0441\u043A\u043E\u043F\u043E\u043C...\",\"\u0414\u0443\u043C\u0430\u0435\u043C, \u0447\u0442\u043E \u043D\u0430\u043F\u0438\u0441\u0430\u0442\u044C...\",\"\u041F\u0438\u0448\u0435\u043C \u043E\u0442\u0432\u0435\u0442 \u043D\u0430 \u043E\u0442\u0432\u0435\u0442...\",\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0438\u0440\u0443\u0435\u043C\u0441\u044F \u0441 \u0418\u0418-\u0431\u043E\u0433\u0430\u043C\u0438...\",\"\u0410\u043D\u0430\u043B\u0438\u0437\u0438\u0440\u0443\u0435\u043C \u0432\u0430\u0448\u0443 \u0433\u0435\u043D\u0438\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u044C...\"];React.useEffect(()=>{setIsClient(true);const saved=localStorage.getItem(attemptsKey);if(saved){setAttempts(JSON.parse(saved));}},[attemptsKey]);React.useEffect(()=>{if(isClient){localStorage.setItem(attemptsKey,JSON.stringify(attempts));}},[attempts,attemptsKey,isClient]);const checkAnswer=async e=>{e.preventDefault();if(isLoading)return;// Prevent multiple submissions while loading\nconst now=Date.now();if(now-attempts.lastAttemptTime<36e5&&attempts.count>=3){setResult(\"\u0412\u044B \u0434\u043E\u0441\u0442\u0438\u0433\u043B\u0438 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043F\u043E\u043F\u044B\u0442\u043E\u043A (3) \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u0432\u043E\u043F\u0440\u043E\u0441\u0430 \u0437\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0439 \u0447\u0430\u0441. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u043F\u043E\u043F\u044B\u0442\u043A\u0443 \u043F\u043E\u0437\u0436\u0435.\");return;}setIsLoading(true);setAttempts(prev=>({count:prev.count+1,lastAttemptTime:now}));setIsSubmitted(true);const changePhrase=()=>{const randomPhrase=loadingPhrases[Math.floor(Math.random()*loadingPhrases.length)];setLoadingPhrase(randomPhrase);};changePhrase();const intervalId=setInterval(changePhrase,3e3);const payload={question:props.question,correctAnswer:props.correctAnswer,userAnswer:userAnswer,modelName:props.modelName,modelPrompt:props.modelPrompt};//console.log(\"Sending payload:\", JSON.stringify(payload, null, 2))\n//console.log(\"Sending request with method:\", \"POST\")\nconsole.log(\"Sending request to check answer\");try{const response=await fetch(\"https://test-checking.vercel.app/api/checkAnswer\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(payload),mode:\"cors\",cache:\"no-cache\",credentials:\"omit\"});//console.log(\"Response status:\", response.status)\n//console.log(\n//    \"Response headers:\",\n//    JSON.stringify(Object.fromEntries(response.headers), null, 2)\n//)\nconsole.log(\"Received response from server\");if(!response.ok){const errorText=await response.text();//console.error(\"Error response body:\", errorText)\nconsole.error(\"Error occurred while checking answer\");throw new Error(`HTTP Error! Status: ${response.status}. Body: ${errorText}`);}const data=await response.json();//console.log(\"Response data:\", data)\nif(data.choices&&data.choices[0]&&data.choices[0].message){setResult(data.choices[0].message.content);}else{setResult(\"\u041D\u0435\u043E\u0436\u0438\u0434\u0430\u043D\u043D\u044B\u0439 \u0444\u043E\u0440\u043C\u0430\u0442 \u043E\u0442\u0432\u0435\u0442\u0430. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.\");}}catch(error){console.error(\"\u041E\u0448\u0438\u0431\u043A\u0430 \u043F\u0440\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0435 \u043E\u0442\u0432\u0435\u0442\u0430:\",error);setResult(`\u041F\u0440\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0435 \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0442\u0432\u0435\u0442\u0430 \u043F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u043E\u0448\u0438\u0431\u043A\u0430: ${error.message}. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437.`);}finally{setIsLoading(false);clearInterval(intervalId);setLoadingPhrase(\"\");}};const restartSession=e=>{e.preventDefault();setUserAnswer(\"\");setResult(\"\");setIsSubmitted(false);setIsLoading(false);setLoadingPhrase(\"\");setAttempts({count:0,lastAttemptTime:0});};const giveUp=e=>{e.preventDefault()// Prevent default link behavior\n;setResult(`\u041F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0439 \u043E\u0442\u0432\u0435\u0442: ${props.correctAnswer}`);setIsSubmitted(true);};if(!isClient){return /*#__PURE__*/_jsx(\"div\",{children:\"Loading...\"});}return /*#__PURE__*/_jsxs(\"div\",{style:{fontFamily:props.font,color:props.textColor,padding:20,fontSize:props.fontSize,lineHeight:props.lineHeight},children:[/*#__PURE__*/_jsx(\"h2\",{style:{color:props.titleColor,fontSize:props.titleFontSize,fontWeight:props.titleFontWeight},children:props.question}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:checkAnswer,children:[/*#__PURE__*/_jsx(\"textarea\",{value:userAnswer,onChange:e=>setUserAnswer(e.target.value),onKeyDown:e=>{if(e.key===\"Enter\"&&!e.shiftKey){e.preventDefault();checkAnswer(e);}},disabled:isSubmitted,placeholder:\"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043E\u0439 \u043E\u0442\u0432\u0435\u0442 \u0437\u0434\u0435\u0441\u044C...\",style:{width:\"100%\",padding:20,marginTop:20,marginBottom:20,minHeight:150,fontSize:props.inputFontSize,fontFamily:props.font,borderRadius:7}}),/*#__PURE__*/_jsxs(\"div\",{style:{marginBottom:20},children:[/*#__PURE__*/_jsx(\"button\",{type:\"submit\",disabled:isLoading||isSubmitted,style:{padding:\"10px 20px\",backgroundColor:props.buttonColor,color:props.buttonTextColor,border:\"none\",borderRadius:props.buttonRadius,fontSize:props.buttonFontSize,cursor:isLoading||isSubmitted?\"not-allowed\":\"pointer\",fontFamily:props.font,opacity:isLoading||isSubmitted?.5:1},children:isLoading?\"\u041F\u0440\u043E\u0432\u0435\u0440\u044F\u044E...\":props.buttonText}),/*#__PURE__*/_jsxs(\"span\",{style:{marginLeft:10,fontSize:props.fontSize},children:[attempts.count,\" \u0438\u0437 3 \u043F\u043E\u043F\u044B\u0442\u043E\u043A \u0437\u0430 \u0447\u0430\u0441\"]})]}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{marginTop:10,fontStyle:\"italic\",color:\"#666\",fontSize:props.fontSize},children:loadingPhrase})]}),isSubmitted&&!isLoading&&/*#__PURE__*/_jsxs(\"div\",{style:{marginTop:20},children:[/*#__PURE__*/_jsx(\"a\",{href:\"#\",onClick:restartSession,style:{marginRight:15,color:props.linkColor},children:\"\u041D\u0430\u0447\u0430\u0442\u044C \u0437\u0430\u043D\u043E\u0432\u043E\"}),/*#__PURE__*/_jsx(\"a\",{href:\"#\",onClick:giveUp,style:{color:props.linkColor},children:\"\u0421\u0434\u0430\u044E\u0441\u044C\"})]}),result&&/*#__PURE__*/_jsxs(\"div\",{style:{marginTop:20,backgroundColor:props.resultBackgroundColor,padding:0,borderRadius:12,fontSize:props.resultFontSize,fontFamily:props.font,width:\"100%\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438:\"}),\" \",result]})]});}addPropertyControls(QuestionAnswer,{pageId:{type:ControlType.String,title:\"Page ID\"},modelName:{type:ControlType.Enum,title:\"Model Name\",options:[\"llama-3.1-sonar-small-128k-chat\",\"llama-3.1-sonar-large-128k-chat\",\"llama-3.1-8b-instruct\",\"llama-3.1-70b-instruct\"],defaultValue:\"llama-3.1-8b-instruct\"},modelPrompt:{type:ControlType.String,title:\"Model Prompt\",defaultValue:\"You are a friendly, encouraging teacher. Compare the student's answer to the correct answer only. Address the student as 'you'. Your response (max 400 characters) must include: 1. A brief phrase about correctness 2. Detailed constructive feedback if needed 3. Support for correct parts 4. A question about missing/incorrect parts (if any) 5. Encouragement to restart and resubmit if necessary 6. Acknowledgment if the answer is irrelevant or shows lack of knowledge 7. Congratulations for correct answers. Don't reveal information from the correct answer. Use proper punctuation.\",displayTextArea:true},question:{type:ControlType.String,title:\"Question\"},correctAnswer:{type:ControlType.String,title:\"Correct Answer\"},font:{type:ControlType.String,title:\"Font Family\"},fontSize:{type:ControlType.Number,title:\"Base Font Size\",defaultValue:16},lineHeight:{type:ControlType.String,title:\"Line Height\",defaultValue:\"1.5\"},textColor:{type:ControlType.Color,title:\"Text Color\"},titleColor:{type:ControlType.Color,title:\"Title Color\"},titleFontSize:{type:ControlType.Number,title:\"Title Font Size\",defaultValue:24},titleFontWeight:{type:ControlType.Number,title:\"Title Font Weight\",defaultValue:600},inputFontSize:{type:ControlType.Number,title:\"Input Font Size\",defaultValue:16},buttonText:{type:ControlType.String,title:\"Submit Button Text\",defaultValue:\"Submit Answer\"},buttonColor:{type:ControlType.Color,title:\"Submit Button Color\"},buttonTextColor:{type:ControlType.Color,title:\"Submit Button Text Color\"},buttonRadius:{type:ControlType.Number,title:\"Submit Button Radius\",defaultValue:5},buttonFontSize:{type:ControlType.Number,title:\"Button Font Size\",defaultValue:16},linkColor:{type:ControlType.Color,title:\"Link Color\"},resultBackgroundColor:{type:ControlType.Color,title:\"Result Background Color\"},resultFontSize:{type:ControlType.Number,title:\"Result Font Size\",defaultValue:16}});\nexport const __FramerMetadata__ = {\"exports\":{\"QuestionAnswer\":{\"type\":\"reactComponent\",\"name\":\"QuestionAnswer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TestChecking_ru.map", "// Generated by Framer (37fb21e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import SocialShareButton from\"https://framerusercontent.com/modules/C2IyHqejMvHGMkmqNVNW/v8th0ljczTmV2mo8wWRg/SocialShareButtons.js\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import SubscribePromo from\"#framer/local/canvasComponent/FwyGxCqSo/FwyGxCqSo.js\";import AuthorDate from\"#framer/local/canvasComponent/FY5Ich6nT/FY5Ich6nT.js\";import Roadmap from\"#framer/local/canvasComponent/g12nVjtgx/g12nVjtgx.js\";import FootersPopularCopy from\"#framer/local/canvasComponent/GdZlB3aOT/GdZlB3aOT.js\";import BlockExitAndOther from\"#framer/local/canvasComponent/gkaIjeZCt/gkaIjeZCt.js\";import FormCopy3 from\"#framer/local/canvasComponent/INBPPabse/INBPPabse.js\";import Updates from\"#framer/local/canvasComponent/JEJoCVPH6/JEJoCVPH6.js\";import Explanation,*as ExplanationInfo from\"#framer/local/canvasComponent/nzfhDzf6z/nzfhDzf6z.js\";import Title from\"#framer/local/canvasComponent/o1jEk0kcW/o1jEk0kcW.js\";import Sourses,*as SoursesInfo from\"#framer/local/canvasComponent/qDK7jjkVs/qDK7jjkVs.js\";import MenuStudentActive from\"#framer/local/canvasComponent/rnLer3Kd6/rnLer3Kd6.js\";import SourcesWButtons from\"#framer/local/canvasComponent/sfFBwo9l8/sfFBwo9l8.js\";import LessonCompleteIcon,*as LessonCompleteIconInfo from\"#framer/local/canvasComponent/sYSsAirC8/sYSsAirC8.js\";import GetBookmarksPromo from\"#framer/local/canvasComponent/t8ZseR1uB/t8ZseR1uB.js\";import LessonCompleteCopy2,*as LessonCompleteCopy2Info from\"#framer/local/canvasComponent/V6rwVWeFF/V6rwVWeFF.js\";import SegmentedControl2 from\"#framer/local/canvasComponent/veh8TB3xE/veh8TB3xE.js\";import SubjectsIcon from\"#framer/local/canvasComponent/VTXjs0eSp/VTXjs0eSp.js\";import SidebarMenu from\"#framer/local/canvasComponent/XeyZr9rUV/XeyZr9rUV.js\";import{withViewChange as withViewChange1}from\"#framer/local/codeFile/zmcWLVg/ChangeVariant_1.js\";import{withViewChange}from\"#framer/local/codeFile/eSkm_1h/ChangeVariant_2.js\";import{withActionStatus,withActiveLicense,withIsDone,withIsInProgress}from\"#framer/local/codeFile/E1SdMSM/FramerAuth.js\";import{QuestionAnswer}from\"#framer/local/codeFile/glwf4XW/TestChecking_ru.js\";import Roadmaps from\"#framer/local/collection/kmLn6L47Z/kmLn6L47Z.js\";import Blocks from\"#framer/local/collection/oOjvHvLbD/oOjvHvLbD.js\";import*as sharedStyle1 from\"#framer/local/css/IaWCqwQe7/IaWCqwQe7.js\";import*as sharedStyle from\"#framer/local/css/rAsIXRdKi/rAsIXRdKi.js\";import metadataProvider from\"#framer/local/webPageMetadata/I5IvAR4Sj/I5IvAR4Sj.js\";const AuthorDateFonts=getFonts(AuthorDate);const SegmentedControl2Fonts=getFonts(SegmentedControl2);const AudioFonts=getFonts(Audio);const ExplanationFonts=getFonts(Explanation);const ExplanationWithViewChangeWithMappedReactProps10wyrxl=withMappedReactProps(withViewChange(Explanation),ExplanationInfo);const EmbedFonts=getFonts(Embed);const SourcesWButtonsFonts=getFonts(SourcesWButtons);const SoursesFonts=getFonts(Sourses);const SoursesWithViewChange1WithMappedReactProps9k5a4j=withMappedReactProps(withViewChange1(Sourses),SoursesInfo);const MaterialFonts=getFonts(Material);const FormCopy3Fonts=getFonts(FormCopy3);const GetBookmarksPromoFonts=getFonts(GetBookmarksPromo);const QuestionAnswerFonts=getFonts(QuestionAnswer);const UpdatesFonts=getFonts(Updates);const MotionDivWithActiveLicense=withActiveLicense(motion.div);const SubscribePromoFonts=getFonts(SubscribePromo);const RoadmapFonts=getFonts(Roadmap);const BlockExitAndOtherFonts=getFonts(BlockExitAndOther);const LessonCompleteIconFonts=getFonts(LessonCompleteIcon);const LessonCompleteIconWithIsDoneWithMappedReactProps1mwyuh3=withMappedReactProps(withIsDone(LessonCompleteIcon),LessonCompleteIconInfo);const LessonCompleteIconWithIsInProgressWithMappedReactProps1mwyuh3=withMappedReactProps(withIsInProgress(LessonCompleteIcon),LessonCompleteIconInfo);const SocialShareButtonFonts=getFonts(SocialShareButton);const SidebarMenuFonts=getFonts(SidebarMenu);const MenuStudentActiveFonts=getFonts(MenuStudentActive);const SubjectsIconFonts=getFonts(SubjectsIcon);const TitleFonts=getFonts(Title);const LessonCompleteCopy2Fonts=getFonts(LessonCompleteCopy2);const LessonCompleteCopy2WithActionStatusWithMappedReactPropsmtjk5h=withMappedReactProps(withActionStatus(LessonCompleteCopy2),LessonCompleteCopy2Info);const FootersPopularCopyFonts=getFonts(FootersPopularCopy);const breakpoints={Ca3WNlg0l:\"(min-width: 810px) and (max-width: 1199px)\",J3U44nTt6:\"(max-width: 809px)\",tzsoEn07c:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zMhpB\";const variantClassNames={Ca3WNlg0l:\"framer-v-1up79fk\",J3U44nTt6:\"framer-v-6s5qop\",tzsoEn07c:\"framer-v-1e0214w\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"5px 10px 10px 10px\";}else{return\"64px 10px 10px 10px\";}};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"vz6VQOeGO\";}else{return\"QJJizbKPX\";}};const negate=value=>{return!value;};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const convertFromBoolean2=(value,activeLocale)=>{if(value){return\"VOUPLOY94\";}else{return\"qN4fiDdql\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"tzsoEn07c\",Phone:\"J3U44nTt6\",Tablet:\"Ca3WNlg0l\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tzsoEn07c\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"I5IvAR4Sj\",data:Blocks,type:\"Collection\"},select:[{collection:\"I5IvAR4Sj\",name:\"wuyj9c92Q\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"QKfcRIRvh\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"oKuSNZFXs\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"uarZcgSBl\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"aAEPa7Vom\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"IIN9wdxGc\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"i9nntaDEe\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"yVFe_EZuv\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"yKDy4UJKt\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"qwl63JcSm\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"cE089pb70\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"XR4VFNfyt\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"coIxgdTme\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"xGu2_Pkqz\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"hNRvP3VHq\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"rDNieFIeP\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"lNUZMnlwY\",type:\"Identifier\"},{collection:\"I5IvAR4Sj\",name:\"O4E6EslWt\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"I5IvAR4Sj\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11;const{style,className,layoutId,variant,yVFe_EZuv=getFromCurrentRouteData(\"yVFe_EZuv\"),cE089pb70=(_getFromCurrentRouteData=getFromCurrentRouteData(\"cE089pb70\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",QKfcRIRvh=getFromCurrentRouteData(\"QKfcRIRvh\"),uarZcgSBl=getFromCurrentRouteData(\"uarZcgSBl\"),XR4VFNfyt=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"XR4VFNfyt\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",coIxgdTme=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"coIxgdTme\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",aAEPa7Vom=getFromCurrentRouteData(\"aAEPa7Vom\"),IIN9wdxGc=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"IIN9wdxGc\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",i9nntaDEe=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"i9nntaDEe\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",oKuSNZFXs=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"oKuSNZFXs\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",wuyj9c92Q=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"wuyj9c92Q\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",rDNieFIeP=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"rDNieFIeP\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",O4E6EslWt=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"O4E6EslWt\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",lNUZMnlwY=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"lNUZMnlwY\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:\"\",oKuSNZFXsMa1SrZ0r6,xGu2_Pkqz=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"xGu2_Pkqz\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:\"\",hNRvP3VHq=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"hNRvP3VHq\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:\"\",KGj8wujASWKbQmR_VC,MyyFasn16WKbQmR_VC,FWTbufuKOWKbQmR_VC,XSFjSi51tWKbQmR_VC,DHadm6A_kWKbQmR_VC,idWKbQmR_VC,oKuSNZFXsvB_aOmdhC,wuyj9c92QvB_aOmdhC,idvB_aOmdhC,oKuSNZFXsW7JfPkK2h,wuyj9c92QW7JfPkK2h,idW7JfPkK2h,QKfcRIRvhMa1SrZ0r6,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-zMhpB`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-zMhpB`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTapizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const MVDgYLSl6izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const visible=isSet(yVFe_EZuv);const padding=numberToPixelString(convertFromBoolean(isSet(yVFe_EZuv),activeLocale));const visible1=isSet(cE089pb70);const elementId=useRouteElementId(\"uYAj5wkpX\");const ref2=React.useRef(null);const visible2=equals(QKfcRIRvh,\"hUMLgI_wA\");const visible3=isSet(aAEPa7Vom);const visible4=negate(equals(QKfcRIRvh,\"RZ0ByLyoL\"));const isDisplayed=value=>{if(!isBrowser())return true;if([\"Ca3WNlg0l\",\"J3U44nTt6\"].includes(baseVariant))return true;return value;};const visible5=isSet(IIN9wdxGc);const visible6=isSet(i9nntaDEe);const elementId1=useRouteElementId(\"cXVg3Hgn4\");const ref3=React.useRef(null);const visible7=negate(equals(QKfcRIRvh,\"SuWh1sEaQ\"));const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId2=useRouteElementId(\"qVDVdRbGW\");const ref6=React.useRef(null);const visible8=negate(equals(QKfcRIRvh,\"bAAG2Wgso\"));const elementId3=useRouteElementId(\"Id_F7CNyz\");const ref7=React.useRef(null);const visible9=equals(oKuSNZFXs,\"experimental-tools-to-diagnose-autism\");const visible10=negate(equals(oKuSNZFXs,\"experimental-tools-to-diagnose-autism\"));const elementId4=useRouteElementId(\"Nd53dplmV\");const ref8=React.useRef(null);const router=useRouter();const elementId5=useRouteElementId(\"vZZNvglKo\");const ref9=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"J3U44nTt6\")return false;return true;};const visible11=negate(equals(QKfcRIRvhMa1SrZ0r6,\"SuWh1sEaQ\"));const isDisplayed2=(value,value1)=>{if(!isBrowser())return true;if(baseVariant===\"J3U44nTt6\")return value1;return value;};const ref10=React.useRef(null);const ref11=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tzsoEn07c\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1e0214w\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tdgv9m\",\"data-framer-name\":\"picture\",name:\"picture\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",...toResponsiveImage(yVFe_EZuv),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-16yzsc1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8kw4l\",\"data-framer-name\":\"content\",name:\"content\",style:{\"--10ocmuz\":padding},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bvivlj\",\"data-framer-name\":\"content\",name:\"content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0ovsq\",\"data-framer-name\":\"explanation, updates, task, sourses\",name:\"explanation, updates, task, sourses\",children:[visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tra1ar\",\"data-framer-name\":\"Explanation\",id:elementId,name:\"Explanation\",ref:ref2,children:[visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzl0ty\",\"data-framer-name\":\"explanation title\",name:\"explanation title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wfppq1\",\"data-framer-name\":\"Local library2\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Local library2\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 11.275c-2.36-2.2-5.52-3.55-9-3.55v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55v-11c-3.48 0-6.64 1.35-9 3.55Zm0-3.55c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u041E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u0435\"})}),className:\"framer-7zh9fj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4xlvh\",\"data-framer-name\":\"author, date\",name:\"author, date\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lnewsm\",\"data-framer-name\":\"updated date\",name:\"updated date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1igzk0b\",\"data-styles-preset\":\"IaWCqwQe7\",style:{\"--framer-text-color\":\"var(--token-8c922ba8-d1c5-44f1-a70e-00f9463361a9, rgb(142, 142, 147))\"},children:\"\u043D\u0430\"})}),className:\"framer-x88hdq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ivtno-container\",\"data-framer-name\":\"date\",name:\"date\",children:/*#__PURE__*/_jsx(AuthorDate,{f4K91zhIU:uarZcgSBl,height:\"100%\",id:\"oipbwQdBe\",layoutId:\"oipbwQdBe\",name:\"date\",variant:\"RrXderNNg\",width:\"100%\"})})})]})})]}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j5lvy3\",\"data-framer-name\":\"segmented\",name:\"segmented\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ut9azb-container\",children:/*#__PURE__*/_jsx(SegmentedControl2,{ayrkHZZxv:\"\u0422\u043E\u0447\u043D\u0435\u0435\",FeBKLiaYN:\"\u041F\u0440\u043E\u0449\u0435\",GgnYKyT2X:\"\u041A\u043E\u0440\u043E\u0447\u0435\",height:\"100%\",id:\"r0dyUfOWu\",IxcdsZY9O:convertFromBoolean1(isSet(XR4VFNfyt),activeLocale),layoutId:\"r0dyUfOWu\",PghHQnGUY:convertFromBoolean1(isSet(coIxgdTme),activeLocale),variant:\"dK8mAcHy6\",width:\"100%\"})})})}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6e37i\",\"data-framer-name\":\"audio\",name:\"audio\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstcmVndWxhcg==\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041F\u043E\u0434\u043A\u0430\u0441\u0442\"})}),className:\"framer-1z0erb0\",fonts:[\"GF;Rubik-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17um8tt-container\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgb(235, 235, 235)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,font:{},gap:15,height:\"100%\",id:\"z0N_EKmj1\",isMixedBorderRadius:false,layoutId:\"z0N_EKmj1\",loop:false,onPlayGlobalPauseOption:\"continue\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-91385093-a994-4ef8-811e-19d50f43a1a4, rgb(255, 92, 0))\",showPlayPause:true,showTime:true,showTrack:true,srcFile:aAEPa7Vom,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,trackColor:\"var(--token-cfdabccf-88c8-41e7-99f0-3618c3ca965a, rgb(59, 59, 59))\",volume:100,width:\"100%\"})})})]}),isDisplayed(visible4)&&/*#__PURE__*/_jsxs(\"div\",{className:cx(\"framer-q0knbw\",!visible4&&\"hidden-1e0214w\"),\"data-framer-name\":\"content\",name:\"content\",children:[isDisplayed(visible4)&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`max(min((max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 45px, 700px), 300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:`max(min((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 80px, 700px), 350px)`,children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-1myul6n-container\",!visible4&&\"hidden-1e0214w\"),children:/*#__PURE__*/_jsx(ExplanationWithViewChangeWithMappedReactProps10wyrxl,{amyX2NGdF:cE089pb70,AxcSevwrV:XR4VFNfyt,ECjRMsYnY:coIxgdTme,GNchteQuE:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),height:\"100%\",id:\"nGexry9b7\",layoutId:\"nGexry9b7\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"kBkkVEvUZ\",width:\"100%\"})})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yszwzi-container\",\"data-framer-name\":\"embed 2\",name:\"embed 2\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:IIN9wdxGc,id:\"s08Vx6CIh\",layoutId:\"s08Vx6CIh\",name:\"embed 2\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e0omz7-container\",\"data-framer-name\":\"embed 1\",name:\"embed 1\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:i9nntaDEe,id:\"QLffmuEBA\",layoutId:\"QLffmuEBA\",name:\"embed 1\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uew4el\",\"data-framer-name\":\"Sourses\",id:elementId1,name:\"Sourses\",ref:ref3,children:[visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11pfh3h\",\"data-framer-name\":\"sourses title\",name:\"sourses title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u9xgee\",\"data-framer-name\":\"Self improvement2\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Self improvement2\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm9 8v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6A1.98 1.98 0 0 0 12.53 9h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5a2.5 2.5 0 0 1 2.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u041C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B \u0434\u043B\u044F \u0438\u0437\u0443\u0447\u0435\u043D\u0438\u044F\"})}),className:\"framer-lfl129\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1059,width:`calc(max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ankeds-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{a48hfvrEB:false,dRliJoI6m:\"\",V7ycMU0B6:\"\",WWK8HQC28:\"\u0418\u0418\"}},children:/*#__PURE__*/_jsx(SourcesWButtons,{a48hfvrEB:true,dRliJoI6m:\"\u0417\u0430\u0433\u0443\u0433\u043B\u0438\u0442\u044C\",EcxoG0I_P:rDNieFIeP,GMvAorqqX:wuyj9c92Q,height:\"100%\",hNSJgDQnL:wuyj9c92Q,id:\"DEcQRZFWh\",layoutId:\"DEcQRZFWh\",OWQywai22:oKuSNZFXs,style:{width:\"100%\"},V7ycMU0B6:\"\u0412\u0438\u043A\u0438\u043F\u0435\u0434\u0438\u044F\",variant:\"utnBEy8PP\",width:\"100%\",WWK8HQC28:\"\u0421\u043F\u0440\u043E\u0441\u0438\u0442\u044C \u0418\u0418\",ywfCLEBEf:negate(equals(QKfcRIRvh,\"bAAG2Wgso\")),ZVtXv2Exj:oKuSNZFXs})})})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua7nr9\",\"data-framer-name\":\"sources\",name:\"sources\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`max(min((max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 80px, 700px), 360px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:`max(min((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 80px, 700px), 360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xa6b1k-container\",\"data-framer-name\":\"sources\",name:\"sources\",children:/*#__PURE__*/_jsx(SoursesWithViewChange1WithMappedReactProps9k5a4j,{HCTgZD632:lNUZMnlwY,height:\"100%\",id:\"IMuOSflnj\",layoutId:\"IMuOSflnj\",name:\"sources\",style:{maxWidth:\"100%\",width:\"100%\"},tjN5szjoX:O4E6EslWt,variant:\"r2fbBn7TA\",width:\"100%\"})})})})}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9hiv1\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vzlnc1\",\"data-framer-name\":\"Button/Primary-Default\",id:\"1vzlnc1\",name:\"Button/Primary-Default\",onTap:onTapizu9gt({overlay}),ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstNTAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(0, 153, 255)\"},children:\"+ \u041F\u0440\u0435\u0434\u043B\u043E\u0436\u0438\u0442\u044C \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\"})}),className:\"framer-1394565\",\"data-framer-name\":\"text\",fonts:[\"GF;Rubik-500\"],name:\"text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref4,collisionDetection:true,collisionDetectionPadding:10,\"data-framer-portal-id\":\"1vzlnc1\",offsetX:0,offsetY:0,onDismiss:overlay.hide,placement:\"right\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{animate:undefined,exit:undefined,initial:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-106mftl\",exit:animation,initial:animation2,ref:ref5,role:\"dialog\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13mpdi1-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9df03c2e-6e13-4111-9da3-70844cc5c926, rgba(101, 99, 99, 0.7))\",height:\"100%\",iconSearch:\"cancel\",iconSelection:\"Dry\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"NAYIg3adh\",layoutId:\"NAYIg3adh\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:491,children:/*#__PURE__*/_jsx(Container,{className:\"framer-148d1h3-container\",\"data-framer-name\":\"Material form\",name:\"Material form\",children:/*#__PURE__*/_jsx(FormCopy3,{height:\"100%\",id:\"tt1LzLUsY\",layoutId:\"tt1LzLUsY\",MmskgoswN:oKuSNZFXsMa1SrZ0r6,name:\"Material form\",variant:\"UDMmvlj2w\",width:\"100%\"})})})]})})})})]})})})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:`calc((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) * 0.7)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1903pjr-container\",children:/*#__PURE__*/_jsx(GetBookmarksPromo,{height:\"100%\",id:\"tX4y2SVv6\",layoutId:\"tX4y2SVv6\",style:{width:\"100%\"},variant:\"YNhpmju8Z\",width:\"100%\"})})})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ewx5xk\",\"data-framer-name\":\"Task\",id:elementId2,name:\"Task\",ref:ref6,children:[visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v63wxw\",\"data-framer-name\":\"task title\",name:\"task title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uzu847\",\"data-framer-name\":\"Check box2\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Check box2\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Zm-9 14-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430\"})}),className:\"framer-a5zb98\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lgii89\",\"data-framer-name\":\"task\",name:\"task\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tx333t-container\",children:/*#__PURE__*/_jsx(QuestionAnswer,{buttonColor:\"var(--token-91385093-a994-4ef8-811e-19d50f43a1a4, rgb(255, 92, 0))\",buttonFontSize:16,buttonRadius:7,buttonText:\"\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C\",buttonTextColor:\"var(--token-72a36688-6e2d-499d-958c-c12b0a464c42, rgb(255, 255, 255))\",correctAnswer:hNRvP3VHq,font:\"Rubik\",fontSize:14,height:\"100%\",id:\"s2Uh_B4Ev\",inputFontSize:16,layoutId:\"s2Uh_B4Ev\",lineHeight:\"1.5\",linkColor:\"rgb(0, 153, 255)\",modelName:\"llama-3.1-70b-instruct\",modelPrompt:\"you are Richard Feynman. assess general correctness of the student's answer compare to the perfect answer. response in 400 characters max and include:\\n\u2013 a score from 2 to 5 (like 'It's 4 from 5') with a relevant emoji. tend to give higher score.\\n\u2013 constructive and friendly feedback.\\nuse Richard's spoken uniq style: short sentences, simple language, no BS, humour.\\nuse pronoun '\u0412\u044B'. don't reveal info from the perfect answer. start every sentence from a new raw and put at the end a period. write only in Russian\",pageId:oKuSNZFXs,question:xGu2_Pkqz,resultBackgroundColor:\"var(--token-72a36688-6e2d-499d-958c-c12b0a464c42, rgb(255, 255, 255))\",resultFontSize:16,textColor:\"var(--token-cfdabccf-88c8-41e7-99f0-3618c3ca965a, rgb(59, 59, 59))\",titleColor:\"var(--token-cfdabccf-88c8-41e7-99f0-3618c3ca965a, rgb(59, 59, 59))\",titleFontSize:16,titleFontWeight:400,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:`calc((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) * 0.7)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kipsr2-container\",children:/*#__PURE__*/_jsx(GetBookmarksPromo,{height:\"100%\",id:\"ZytShrDgO\",layoutId:\"ZytShrDgO\",style:{width:\"100%\"},variant:\"VW4Tu6RG7\",width:\"100%\"})})})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tka4a5\",\"data-framer-name\":\"Updates\",id:elementId3,name:\"Updates\",ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4mori\",\"data-framer-name\":\"updates title\",name:\"updates title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qeyy0m\",\"data-framer-name\":\"Update\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Update\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11Zm10 2V3l-2.64 2.64A8.937 8.937 0 0 0 12 3a9 9 0 1 0 9 9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F\"})}),className:\"framer-137slrj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithActiveLicense,{className:\"framer-stsca4\",\"data-framer-name\":\"updates\",name:\"updates\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:713,width:`calc((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10l4lor-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{CyhwfMeqS:false}},children:/*#__PURE__*/_jsx(Updates,{CyhwfMeqS:true,height:\"100%\",id:\"ofxNEnbP1\",layoutId:\"ofxNEnbP1\",style:{width:\"100%\"},variant:\"RU45CnBwJ\",width:\"100%\",XR2lfPe3z:oKuSNZFXs})})})})})}),visible9&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2kqyhh\",\"data-framer-name\":\"updates\",name:\"updates\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:713,width:`calc((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqdhuk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{CyhwfMeqS:false}},children:/*#__PURE__*/_jsx(Updates,{CyhwfMeqS:true,height:\"100%\",id:\"plKADfhZe\",layoutId:\"plKADfhZe\",style:{width:\"100%\"},variant:\"RU45CnBwJ\",width:\"100%\",XR2lfPe3z:oKuSNZFXs})})})})})}),visible10&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{width:`calc(max(min(100vw, 780px), 380px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:`calc((max(min(100vw, 780px), 390px) - ${convertFromBoolean(isSet(yVFe_EZuv),activeLocale)*2}px) * 0.7)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13b3bdk-container\",children:/*#__PURE__*/_jsx(SubscribePromo,{height:\"100%\",id:\"xExw_tAa8\",layoutId:\"xExw_tAa8\",style:{width:\"100%\"},variant:\"yza91JcUO\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bl54vh\",\"data-framer-name\":\"Paths\",id:elementId4,name:\"Paths\",ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yrahl2\",\"data-framer-name\":\"sourses title\",name:\"sourses title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uhfb42\",\"data-framer-name\":\"Fiber smart_record\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Fiber smart_record\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9 20A8 8 0 1 0 9 4a8 8 0 0 0 0 16Z\" fill=\"#FF5C00\"/><path d=\"M17 4.26v2.09a5.99 5.99 0 0 1 0 11.3v2.09c3.45-.89 6-4.01 6-7.74 0-3.73-2.55-6.85-6-7.74Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u0414\u043E\u0440\u043E\u0436\u043D\u044B\u0435 \u043A\u0430\u0440\u0442\u044B, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F\"})}),className:\"framer-nvz96v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3116qg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WKbQmR_VC\",data:Roadmaps,type:\"Collection\"},select:[{collection:\"WKbQmR_VC\",name:\"KGj8wujAS\",type:\"Identifier\"},{collection:\"WKbQmR_VC\",name:\"MyyFasn16\",type:\"Identifier\"},{collection:\"WKbQmR_VC\",name:\"FWTbufuKO\",type:\"Identifier\"},{collection:\"WKbQmR_VC\",name:\"XSFjSi51t\",type:\"Identifier\"},{collection:\"WKbQmR_VC\",name:\"DHadm6A_k\",type:\"Identifier\"},{collection:\"WKbQmR_VC\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"WKbQmR_VC\",name:\"pQyt_7Tc2\",type:\"Identifier\"},operator:\"and\",right:{arguments:[{collection:\"WKbQmR_VC\",name:\"OzG92YIJ7\",type:\"Identifier\"},{type:\"LiteralValue\",value:oKuSNZFXs}],functionName:\"CONTAINS\",type:\"FunctionCall\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{left:{collection:\"WKbQmR_VC\",name:\"DHadm6A_k\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WKbQmR_VC\",name:\"DHadm6A_k\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"KGj8wujAS\":KGj8wujASWKbQmR_VC,\"MyyFasn16\":MyyFasn16WKbQmR_VC,\"FWTbufuKO\":FWTbufuKOWKbQmR_VC,\"XSFjSi51t\":XSFjSi51tWKbQmR_VC,\"DHadm6A_k\":DHadm6A_kWKbQmR_VC,\"id\":idWKbQmR_VC},i)=>{KGj8wujASWKbQmR_VC!==null&&KGj8wujASWKbQmR_VC!==void 0?KGj8wujASWKbQmR_VC:KGj8wujASWKbQmR_VC=\"\";MyyFasn16WKbQmR_VC!==null&&MyyFasn16WKbQmR_VC!==void 0?MyyFasn16WKbQmR_VC:MyyFasn16WKbQmR_VC=\"\";FWTbufuKOWKbQmR_VC!==null&&FWTbufuKOWKbQmR_VC!==void 0?FWTbufuKOWKbQmR_VC:FWTbufuKOWKbQmR_VC=\"\";XSFjSi51tWKbQmR_VC!==null&&XSFjSi51tWKbQmR_VC!==void 0?XSFjSi51tWKbQmR_VC:XSFjSi51tWKbQmR_VC=\"\";DHadm6A_kWKbQmR_VC!==null&&DHadm6A_kWKbQmR_VC!==void 0?DHadm6A_kWKbQmR_VC:DHadm6A_kWKbQmR_VC=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WKbQmR_VC-${idWKbQmR_VC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XSFjSi51t:XSFjSi51tWKbQmR_VC},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-svi6kh\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:FWTbufuKOWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}},{href:DHadm6A_kWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}},{href:FWTbufuKOWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}},{href:DHadm6A_kWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}},{href:FWTbufuKOWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}},{href:DHadm6A_kWKbQmR_VC,implicitPathVariables:{XSFjSi51t:XSFjSi51tWKbQmR_VC}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4l7uia-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ca3WNlg0l:{aZoqiRar5:resolvedLinks[3],Cafiab1gc:resolvedLinks[2]},J3U44nTt6:{aZoqiRar5:resolvedLinks[5],Cafiab1gc:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(Roadmap,{aZoqiRar5:resolvedLinks[1],Cafiab1gc:resolvedLinks[0],cD84NqrcU:XSFjSi51tWKbQmR_VC,f0RaiinTx:MyyFasn16WKbQmR_VC,gWulPRUYw:convertFromBoolean2(isSet(DHadm6A_kWKbQmR_VC),activeLocale),height:\"100%\",id:\"OOh309TBN\",layoutId:\"OOh309TBN\",M5cl4ciTZ:\"VOUPLOY94\",r_A1wcOzT:KGj8wujASWKbQmR_VC,variant:\"IjhfjEp05\",width:\"100%\"})})})})})})})},idWKbQmR_VC);})})})})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7t2ku\",\"data-framer-name\":\"Exits and Others\",id:elementId5,name:\"Exits and Others\",ref:ref9,tabIndex:5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfw34s\",\"data-framer-name\":\"sourses title\",name:\"sourses title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-esohyc\",\"data-framer-name\":\"Transit enterexit\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,name:\"Transit enterexit\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3Z\" fill=\"#FF5C00\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fv4h3o\",\"data-styles-preset\":\"rAsIXRdKi\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u0421\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u0431\u043B\u043E\u043A\u0438\"})}),className:\"framer-1u4pi7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b28qey\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3t3ya\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vB_aOmdhC\",data:Blocks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"vB_aOmdhC\",name:\"oKuSNZFXs\",type:\"Identifier\"},{collection:\"vB_aOmdhC\",name:\"wuyj9c92Q\",type:\"Identifier\"},{collection:\"vB_aOmdhC\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{arguments:[{collection:\"vB_aOmdhC\",name:\"ExNBDQbNl\",type:\"Identifier\"},{type:\"LiteralValue\",value:oKuSNZFXs}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"vB_aOmdhC\",name:\"vHqhWFyqk\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"vB_aOmdhC\",name:\"oKuSNZFXs\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:oKuSNZFXs},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"oKuSNZFXs\":oKuSNZFXsvB_aOmdhC,\"wuyj9c92Q\":wuyj9c92QvB_aOmdhC,\"id\":idvB_aOmdhC},i)=>{oKuSNZFXsvB_aOmdhC!==null&&oKuSNZFXsvB_aOmdhC!==void 0?oKuSNZFXsvB_aOmdhC:oKuSNZFXsvB_aOmdhC=\"\";wuyj9c92QvB_aOmdhC!==null&&wuyj9c92QvB_aOmdhC!==void 0?wuyj9c92QvB_aOmdhC:wuyj9c92QvB_aOmdhC=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vB_aOmdhC-${idvB_aOmdhC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oKuSNZFXs:oKuSNZFXsvB_aOmdhC},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oKuSNZFXs:oKuSNZFXsvB_aOmdhC},webPageId:\"I5IvAR4Sj\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1voanrm framer-1hn09bp\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jyrtnn-container\",children:/*#__PURE__*/_jsx(BlockExitAndOther,{height:\"100%\",id:\"yOVrg3Trk\",jeMYJXXvu:\"rgb(195, 255, 201)\",layoutId:\"yOVrg3Trk\",pinb1QuKD:wuyj9c92QvB_aOmdhC,style:{height:\"100%\",width:\"100%\"},variant:\"WbELxiv_I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xztl0s-container\",children:/*#__PURE__*/_jsx(LessonCompleteIconWithIsDoneWithMappedReactProps1mwyuh3,{cYsJ750Gq:\"YT3DA7JY_\",fztyqXWTo:oKuSNZFXsvB_aOmdhC,GObG5AgF2:wuyj9c92QvB_aOmdhC,height:\"100%\",hl47Vkvqb:\"IDp_Q2Hjv\",id:\"vQv8gA2PC\",iXz1YKN4I:\"FhfIjGWHb\",Iy7I5_fPV:\"\",jQuQy3o8U:\"Bn4yHHX8X\",layoutId:\"vQv8gA2PC\",nBg8WUpTj:\"F8dSgLvEz\",qtifMQomW:\"IDp_Q2Hjv\",variant:\"XSSFJMcQs\",width:\"100%\",WuXtzJsaS:\"qMnklKBTv\",wvl3cepEt:\"var(--token-7e938365-7264-47b5-a027-3534cc9610f1, rgb(195, 255, 201))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u2vwjl-container\",children:/*#__PURE__*/_jsx(LessonCompleteIconWithIsInProgressWithMappedReactProps1mwyuh3,{cYsJ750Gq:\"YT3DA7JY_\",fztyqXWTo:oKuSNZFXsvB_aOmdhC,GObG5AgF2:wuyj9c92QvB_aOmdhC,height:\"100%\",hl47Vkvqb:\"IDp_Q2Hjv\",id:\"CChgKB_h7\",iXz1YKN4I:\"TPQtpcdNB\",Iy7I5_fPV:\"\",jQuQy3o8U:\"Bn4yHHX8X\",layoutId:\"CChgKB_h7\",nBg8WUpTj:\"F8dSgLvEz\",qtifMQomW:\"IDp_Q2Hjv\",variant:\"XSSFJMcQs\",width:\"100%\",WuXtzJsaS:\"qMnklKBTv\",wvl3cepEt:\"var(--token-7e938365-7264-47b5-a027-3534cc9610f1, rgb(195, 255, 201))\"})})})]})})})},idvB_aOmdhC);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bqx4cz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmg2kj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"W7JfPkK2h\",data:Blocks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"W7JfPkK2h\",name:\"oKuSNZFXs\",type:\"Identifier\"},{collection:\"W7JfPkK2h\",name:\"wuyj9c92Q\",type:\"Identifier\"},{collection:\"W7JfPkK2h\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{arguments:[{collection:\"W7JfPkK2h\",name:\"ExNBDQbNl\",type:\"Identifier\"},{type:\"LiteralValue\",value:oKuSNZFXs}],functionName:\"CONTAINS\",type:\"FunctionCall\"},operator:\"and\",right:{collection:\"W7JfPkK2h\",name:\"vHqhWFyqk\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"W7JfPkK2h\",name:\"oKuSNZFXs\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:oKuSNZFXs},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"oKuSNZFXs\":oKuSNZFXsW7JfPkK2h,\"wuyj9c92Q\":wuyj9c92QW7JfPkK2h,\"id\":idW7JfPkK2h},i)=>{oKuSNZFXsW7JfPkK2h!==null&&oKuSNZFXsW7JfPkK2h!==void 0?oKuSNZFXsW7JfPkK2h:oKuSNZFXsW7JfPkK2h=\"\";wuyj9c92QW7JfPkK2h!==null&&wuyj9c92QW7JfPkK2h!==void 0?wuyj9c92QW7JfPkK2h:wuyj9c92QW7JfPkK2h=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`W7JfPkK2h-${idW7JfPkK2h}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oKuSNZFXs:oKuSNZFXsW7JfPkK2h},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{oKuSNZFXs:oKuSNZFXsW7JfPkK2h},webPageId:\"I5IvAR4Sj\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-kcqllk framer-1hn09bp\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gd5o5i-container\",children:/*#__PURE__*/_jsx(BlockExitAndOther,{height:\"100%\",id:\"PKnTUsKOI\",jeMYJXXvu:\"rgb(195, 255, 201)\",layoutId:\"PKnTUsKOI\",pinb1QuKD:wuyj9c92QW7JfPkK2h,style:{height:\"100%\",width:\"100%\"},variant:\"WbELxiv_I\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ql9x2q-container\",children:/*#__PURE__*/_jsx(LessonCompleteIconWithIsDoneWithMappedReactProps1mwyuh3,{cYsJ750Gq:\"YT3DA7JY_\",fztyqXWTo:oKuSNZFXsW7JfPkK2h,GObG5AgF2:wuyj9c92QW7JfPkK2h,height:\"100%\",hl47Vkvqb:\"IDp_Q2Hjv\",id:\"ekzubfliQ\",iXz1YKN4I:\"FhfIjGWHb\",Iy7I5_fPV:\"\",jQuQy3o8U:\"Bn4yHHX8X\",layoutId:\"ekzubfliQ\",nBg8WUpTj:\"F8dSgLvEz\",qtifMQomW:\"IDp_Q2Hjv\",variant:\"XSSFJMcQs\",width:\"100%\",WuXtzJsaS:\"qMnklKBTv\",wvl3cepEt:\"var(--token-7e938365-7264-47b5-a027-3534cc9610f1, rgb(195, 255, 201))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j1f2sq-container\",children:/*#__PURE__*/_jsx(LessonCompleteIconWithIsInProgressWithMappedReactProps1mwyuh3,{cYsJ750Gq:\"YT3DA7JY_\",fztyqXWTo:oKuSNZFXsW7JfPkK2h,GObG5AgF2:wuyj9c92QW7JfPkK2h,height:\"100%\",hl47Vkvqb:\"IDp_Q2Hjv\",id:\"kLsdi0W2f\",iXz1YKN4I:\"TPQtpcdNB\",Iy7I5_fPV:\"\",jQuQy3o8U:\"Bn4yHHX8X\",layoutId:\"kLsdi0W2f\",nBg8WUpTj:\"F8dSgLvEz\",qtifMQomW:\"IDp_Q2Hjv\",variant:\"XSSFJMcQs\",width:\"100%\",WuXtzJsaS:\"qMnklKBTv\",wvl3cepEt:\"var(--token-7e938365-7264-47b5-a027-3534cc9610f1, rgb(195, 255, 201))\"})})})]})})})},idW7JfPkK2h);})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9arhr\",\"data-framer-name\":\"buttons\",name:\"buttons\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UnViaWstaXRhbGlj\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u041F\u043E\u0434\u0435\u043B\u0438\u0442\u0435\u0441\u044C\"})}),className:\"framer-jy0x9a hidden-6s5qop\",fonts:[\"GF;Rubik-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wueojw-container\",children:/*#__PURE__*/_jsx(SocialShareButton,{backgroundColor:\"rgb(37, 211, 102)\",bottomLeftPadding:10,bottomRightPadding:8,containerStyle:{borderColor:\"rgb(51, 51, 51)\",borderWidth:0,bottomLeftRadius:8,bottomRightRadius:8,isMixedRadius:false,radius:8,topLeftRadius:8,topRightRadius:8},height:\"100%\",iconStyle:{iconColor:\"rgb(255, 255, 255)\",iconWeight:\"regular\",size:24},id:\"Qaopr9qW1\",isMixedPadding:true,layoutId:\"Qaopr9qW1\",paddingStyle:7,service:\"WhatsApp\",topLeftPadding:8,topRightPadding:10,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nzmw49-container\",children:/*#__PURE__*/_jsx(SocialShareButton,{backgroundColor:\"rgb(51, 51, 51)\",bottomLeftPadding:10,bottomRightPadding:8,containerStyle:{borderColor:\"rgb(51, 51, 51)\",borderWidth:0,bottomLeftRadius:8,bottomRightRadius:8,isMixedRadius:false,radius:8,topLeftRadius:8,topRightRadius:8},height:\"100%\",iconStyle:{iconColor:\"rgb(255, 255, 255)\",iconWeight:\"regular\",size:24},id:\"hPXgB3B7q\",isMixedPadding:true,layoutId:\"hPXgB3B7q\",paddingStyle:7,service:\"Email\",topLeftPadding:8,topRightPadding:10,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mxp8d7-container\",children:/*#__PURE__*/_jsx(SocialShareButton,{backgroundColor:\"rgb(51, 51, 51)\",bottomLeftPadding:10,bottomRightPadding:8,containerStyle:{borderColor:\"rgb(51, 51, 51)\",borderWidth:0,bottomLeftRadius:8,bottomRightRadius:8,isMixedRadius:false,radius:8,topLeftRadius:8,topRightRadius:8},height:\"100%\",iconStyle:{iconColor:\"rgb(255, 255, 255)\",iconWeight:\"regular\",size:24},id:\"p4GWKXwN5\",isMixedPadding:true,layoutId:\"p4GWKXwN5\",paddingStyle:7,service:\"Copy To Clipboard\",topLeftPadding:8,topRightPadding:10,width:\"100%\"})})})]})]})})}),isDisplayed2(visible2,visible11)&&/*#__PURE__*/_jsxs(\"aside\",{className:cx(\"framer-sx0uag\",!visible2&&\"hidden-1e0214w\",!visible11&&\"hidden-6s5qop\"),\"data-framer-name\":\"Sidebar 2\",name:\"Sidebar 2\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":uYAj5wkpX\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":uYAj5wkpX\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":uYAj5wkpX\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18rxk8s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ca3WNlg0l:{VUW9NoI1r:resolvedLinks1[1]},J3U44nTt6:{variant:\"bpMOdOaob\",VUW9NoI1r:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(SidebarMenu,{bt5Bn81z1:\"\u041E\u0431\u044A\u044F\u0441\u043D\u0435\u043D\u0438\u0435\",E2xwoeqvd:true,height:\"100%\",id:\"JdOqHbELE\",KEr90JDBI:false,layoutId:\"JdOqHbELE\",r6SXbpSSn:false,style:{height:\"100%\"},variant:\"CuXaSEFJt\",VUW9NoI1r:resolvedLinks1[0],width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":cXVg3Hgn4\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":cXVg3Hgn4\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":cXVg3Hgn4\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u08f2a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ca3WNlg0l:{VUW9NoI1r:resolvedLinks2[1]},J3U44nTt6:{variant:\"bpMOdOaob\",VUW9NoI1r:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(SidebarMenu,{bt5Bn81z1:\"\u041C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u044B\",E2xwoeqvd:false,height:\"100%\",id:\"X4aVzalZB\",KEr90JDBI:false,layoutId:\"X4aVzalZB\",r6SXbpSSn:true,style:{height:\"100%\"},variant:\"CuXaSEFJt\",VUW9NoI1r:resolvedLinks2[0],width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":qVDVdRbGW\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":qVDVdRbGW\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined},{href:{hash:\":qVDVdRbGW\",pathVariables:{oKuSNZFXs},webPageId:\"I5IvAR4Sj\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:266,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1szv2q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ca3WNlg0l:{VUW9NoI1r:resolvedLinks3[1]},J3U44nTt6:{variant:\"bpMOdOaob\",VUW9NoI1r:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(SidebarMenu,{bt5Bn81z1:\"\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430\",E2xwoeqvd:false,height:\"100%\",id:\"PezEwGMST\",KEr90JDBI:true,layoutId:\"PezEwGMST\",r6SXbpSSn:false,style:{height:\"100%\"},variant:\"CuXaSEFJt\",VUW9NoI1r:resolvedLinks3[0],width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zv8jgn\",\"data-framer-name\":\"menu, title, done, auth\",name:\"menu, title, done, auth\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ltotgd\",\"data-framer-name\":\"menu, title, done\",name:\"menu, title, done\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,y:-189,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuvy4a-container\",children:/*#__PURE__*/_jsx(MenuStudentActive,{height:\"100%\",id:\"GaWUrDz57\",layoutId:\"GaWUrDz57\",variant:\"RYiDBDHlk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:6,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-180xhgx-container\",id:\"180xhgx\",ref:ref10,children:[/*#__PURE__*/_jsx(SubjectsIcon,{height:\"100%\",id:\"fSb6AiMhQ\",layoutId:\"fSb6AiMhQ\",Mf7m0JTVO:\"Blog\",MVDgYLSl6:MVDgYLSl6izu9gt({overlay:overlay1}),style:{height:\"100%\"},TLBX10qLB:\"Ancient Greece\",variant:\"Sw1LTPljJ\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref10,collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"180xhgx\",offsetX:0,offsetY:10,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:\"framer-y7wk11\",exit:animation,initial:animation2,ref:ref11,role:\"dialog\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,y:6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sgukm3-container\",children:/*#__PURE__*/_jsx(MenuStudentActive,{height:\"100%\",id:\"sc4mjl8Pg\",layoutId:\"sc4mjl8Pg\",variant:\"UB9JX92wp\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i42p99\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwqdxp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{variant:\"CW307alPn\"}},children:/*#__PURE__*/_jsx(Title,{height:\"100%\",id:\"G7C4L6h6t\",layoutId:\"G7C4L6h6t\",style:{height:\"100%\"},variant:\"ENaQz1txv\",width:\"100%\",WROkU65zU:oKuSNZFXs,x_gdBDRW6:wuyj9c92Q})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6zlvs1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3U44nTt6:{IVML3EtG8:false}},children:/*#__PURE__*/_jsx(LessonCompleteCopy2WithActionStatusWithMappedReactPropsmtjk5h,{fztyqXWTo:oKuSNZFXs,height:\"100%\",id:\"O2abJJs33\",IVML3EtG8:true,jPy_KBBeG:\"\u041D\u0435 \u043D\u0430\u0447\u0430\u0442\u043E\",layoutId:\"O2abJJs33\",Ms1wAf1rT:\"\u0418\u0437\u0443\u0447\u0435\u043D\u043E\",RvXBkEZ7e:\"\u0412 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435\",variant:\"gj9MH7ZLm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ogo4g\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hp1ha6\",\"data-framer-name\":\"Blur\",name:\"Blur\"})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oKuSNZFXs},webPageId:\"Ma1SrZ0r6\"},implicitPathVariables:undefined},{href:{pathVariables:{oKuSNZFXs},webPageId:\"Ma1SrZ0r6\"},implicitPathVariables:undefined},{href:{pathVariables:{oKuSNZFXs},webPageId:\"Ma1SrZ0r6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h3ecx5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ca3WNlg0l:{cScnl3VTT:resolvedLinks4[1],variant:\"aotXFhUfc\"},J3U44nTt6:{cScnl3VTT:resolvedLinks4[2],variant:\"cC2dsuQfW\"}},children:/*#__PURE__*/_jsx(FootersPopularCopy,{cScnl3VTT:resolvedLinks4[0],height:\"100%\",id:\"b8Bu43sBu\",layoutId:\"b8Bu43sBu\",LN83poJmQ:oKuSNZFXs,style:{width:\"100%\"},variant:\"eR1dL1sKI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-zMhpB { background: white; }`,\".framer-zMhpB.framer-1hn09bp, .framer-zMhpB .framer-1hn09bp { display: block; }\",\".framer-zMhpB.framer-1e0214w { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-zMhpB .framer-tdgv9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-16yzsc1 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-1n8kw4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 780px; min-width: 390px; overflow: visible; padding: var(--10ocmuz); position: relative; width: 100%; z-index: 1; }\",\".framer-zMhpB .framer-1bvivlj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-c0ovsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-zMhpB .framer-tra1ar, .framer-zMhpB .framer-1uew4el, .framer-zMhpB .framer-1bl54vh { 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; scroll-margin-top: 50px; width: 100%; }\",\".framer-zMhpB .framer-qzl0ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-zMhpB .framer-wfppq1, .framer-zMhpB .framer-1u9xgee, .framer-zMhpB .framer-1uzu847, .framer-zMhpB .framer-qeyy0m, .framer-zMhpB .framer-1uhfb42, .framer-zMhpB .framer-esohyc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-zMhpB .framer-7zh9fj, .framer-zMhpB .framer-x88hdq, .framer-zMhpB .framer-1z0erb0, .framer-zMhpB .framer-lfl129, .framer-zMhpB .framer-jy0x9a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zMhpB .framer-c4xlvh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-end; overflow: hidden; padding: 0px 5px 0px 40px; position: relative; width: 1px; }\",\".framer-zMhpB .framer-1lnewsm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zMhpB .framer-7ivtno-container, .framer-zMhpB .framer-ut9azb-container, .framer-zMhpB .framer-1sgukm3-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-zMhpB .framer-1j5lvy3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-1y6e37i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 5px 40px 5px 50px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-17um8tt-container { flex: 1 0 0px; height: 30px; position: relative; width: 1px; }\",\".framer-zMhpB .framer-q0knbw { 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: 10px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-1myul6n-container { flex: none; height: auto; max-width: 700px; min-width: 350px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-yszwzi-container, .framer-zMhpB .framer-1e0omz7-container, .framer-zMhpB .framer-ankeds-container, .framer-zMhpB .framer-10l4lor-container, .framer-zMhpB .framer-bqdhuk-container, .framer-zMhpB .framer-h3ecx5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-zMhpB .framer-11pfh3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 5px 0px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-zMhpB .framer-1ua7nr9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 40px 10px 40px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-1xa6b1k-container { flex: none; height: auto; max-width: 700px; min-width: 360px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-y9hiv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 30px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-1vzlnc1 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: min-content; }\",\".framer-zMhpB .framer-1394565 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-zMhpB .framer-106mftl { align-content: center; align-items: center; background-color: var(--token-72a36688-6e2d-499d-958c-c12b0a464c42, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 2000px rgba(0, 0, 0, 0.3); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zMhpB .framer-13mpdi1-container { cursor: pointer; flex: none; height: 30px; position: absolute; right: 5px; top: 5px; width: 30px; z-index: 1; }\",\".framer-zMhpB .framer-148d1h3-container, .framer-zMhpB .framer-tx333t-container, .framer-zMhpB .framer-wueojw-container, .framer-zMhpB .framer-nzmw49-container, .framer-zMhpB .framer-1mxp8d7-container, .framer-zMhpB .framer-6zlvs1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zMhpB .framer-1903pjr-container, .framer-zMhpB .framer-1kipsr2-container, .framer-zMhpB .framer-13b3bdk-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-zMhpB .framer-ewx5xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-zMhpB .framer-1v63wxw, .framer-zMhpB .framer-1b4mori, .framer-zMhpB .framer-yrahl2, .framer-zMhpB .framer-qfw34s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 5px 0px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-zMhpB .framer-a5zb98, .framer-zMhpB .framer-137slrj, .framer-zMhpB .framer-nvz96v, .framer-zMhpB .framer-1u4pi7h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-zMhpB .framer-1lgii89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 22px 0px 22px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-tka4a5 { 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 0px 40px 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-zMhpB .framer-stsca4, .framer-zMhpB .framer-2kqyhh { 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 40px 0px 40px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-3116qg { display: grid; flex: none; gap: 47px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); height: min-content; justify-content: center; max-width: 700px; min-height: 200px; padding: 14px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-svi6kh { align-self: start; display: grid; flex: none; gap: 47px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); height: auto; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-4l7uia-container { align-self: start; flex: none; height: auto; justify-self: center; position: relative; width: fit-content; }\",\".framer-zMhpB .framer-1f7t2ku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-zMhpB .framer-1b28qey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-y3t3ya, .framer-zMhpB .framer-1qmg2kj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 40%; }\",\".framer-zMhpB .framer-1voanrm, .framer-zMhpB .framer-kcqllk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-zMhpB .framer-jyrtnn-container, .framer-zMhpB .framer-1gd5o5i-container { flex: none; height: 100px; position: relative; width: 150px; }\",\".framer-zMhpB .framer-1xztl0s-container, .framer-zMhpB .framer-u2vwjl-container, .framer-zMhpB .framer-1ql9x2q-container, .framer-zMhpB .framer-j1f2sq-container { bottom: 0px; flex: none; height: auto; position: absolute; right: 77px; width: auto; z-index: 1; }\",\".framer-zMhpB .framer-1bqx4cz { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 10px 0px var(--token-bae44cb4-ec97-47b9-93e5-4e5fe8e7dc56, #ffbb95); cursor: pointer; flex: none; height: 100px; overflow: visible; position: relative; width: 5px; }\",\".framer-zMhpB .framer-9arhr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-zMhpB .framer-sx0uag { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; left: 14px; overflow: hidden; padding: 0px; position: fixed; top: 190px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-zMhpB .framer-18rxk8s-container, .framer-zMhpB .framer-u08f2a-container, .framer-zMhpB .framer-1szv2q-container { flex: none; height: 33px; position: relative; width: auto; }\",\".framer-zMhpB .framer-zv8jgn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 10px 0px 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-zMhpB .framer-1ltotgd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zMhpB .framer-yuvy4a-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-zMhpB .framer-180xhgx-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-zMhpB .framer-y7wk11 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zMhpB .framer-1i42p99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zMhpB .framer-1gwqdxp-container { flex: none; height: 40px; position: relative; width: auto; z-index: 1; }\",\".framer-zMhpB .framer-5ogo4g { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-zMhpB .framer-1hp1ha6 { -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); flex: none; height: 100%; left: 0px; overflow: visible; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zMhpB.framer-1e0214w, .framer-zMhpB .framer-tdgv9m, .framer-zMhpB .framer-1n8kw4l, .framer-zMhpB .framer-1bvivlj, .framer-zMhpB .framer-c0ovsq, .framer-zMhpB .framer-tra1ar, .framer-zMhpB .framer-qzl0ty, .framer-zMhpB .framer-c4xlvh, .framer-zMhpB .framer-1lnewsm, .framer-zMhpB .framer-1j5lvy3, .framer-zMhpB .framer-1y6e37i, .framer-zMhpB .framer-q0knbw, .framer-zMhpB .framer-1uew4el, .framer-zMhpB .framer-11pfh3h, .framer-zMhpB .framer-1ua7nr9, .framer-zMhpB .framer-y9hiv1, .framer-zMhpB .framer-1vzlnc1, .framer-zMhpB .framer-106mftl, .framer-zMhpB .framer-ewx5xk, .framer-zMhpB .framer-1v63wxw, .framer-zMhpB .framer-1lgii89, .framer-zMhpB .framer-tka4a5, .framer-zMhpB .framer-1b4mori, .framer-zMhpB .framer-stsca4, .framer-zMhpB .framer-2kqyhh, .framer-zMhpB .framer-1bl54vh, .framer-zMhpB .framer-yrahl2, .framer-zMhpB .framer-1f7t2ku, .framer-zMhpB .framer-qfw34s, .framer-zMhpB .framer-1b28qey, .framer-zMhpB .framer-y3t3ya, .framer-zMhpB .framer-1voanrm, .framer-zMhpB .framer-1qmg2kj, .framer-zMhpB .framer-kcqllk, .framer-zMhpB .framer-9arhr, .framer-zMhpB .framer-sx0uag, .framer-zMhpB .framer-1ltotgd, .framer-zMhpB .framer-y7wk11, .framer-zMhpB .framer-1i42p99 { gap: 0px; } .framer-zMhpB.framer-1e0214w > *, .framer-zMhpB .framer-ewx5xk > *, .framer-zMhpB .framer-1lgii89 > *, .framer-zMhpB .framer-1voanrm > *, .framer-zMhpB .framer-kcqllk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zMhpB.framer-1e0214w > :first-child, .framer-zMhpB .framer-tdgv9m > :first-child, .framer-zMhpB .framer-1n8kw4l > :first-child, .framer-zMhpB .framer-1bvivlj > :first-child, .framer-zMhpB .framer-c0ovsq > :first-child, .framer-zMhpB .framer-tra1ar > :first-child, .framer-zMhpB .framer-q0knbw > :first-child, .framer-zMhpB .framer-1uew4el > :first-child, .framer-zMhpB .framer-1ua7nr9 > :first-child, .framer-zMhpB .framer-ewx5xk > :first-child, .framer-zMhpB .framer-1lgii89 > :first-child, .framer-zMhpB .framer-tka4a5 > :first-child, .framer-zMhpB .framer-stsca4 > :first-child, .framer-zMhpB .framer-2kqyhh > :first-child, .framer-zMhpB .framer-1bl54vh > :first-child, .framer-zMhpB .framer-1f7t2ku > :first-child, .framer-zMhpB .framer-y3t3ya > :first-child, .framer-zMhpB .framer-1voanrm > :first-child, .framer-zMhpB .framer-1qmg2kj > :first-child, .framer-zMhpB .framer-kcqllk > :first-child, .framer-zMhpB .framer-sx0uag > :first-child { margin-top: 0px; } .framer-zMhpB.framer-1e0214w > :last-child, .framer-zMhpB .framer-tdgv9m > :last-child, .framer-zMhpB .framer-1n8kw4l > :last-child, .framer-zMhpB .framer-1bvivlj > :last-child, .framer-zMhpB .framer-c0ovsq > :last-child, .framer-zMhpB .framer-tra1ar > :last-child, .framer-zMhpB .framer-q0knbw > :last-child, .framer-zMhpB .framer-1uew4el > :last-child, .framer-zMhpB .framer-1ua7nr9 > :last-child, .framer-zMhpB .framer-ewx5xk > :last-child, .framer-zMhpB .framer-1lgii89 > :last-child, .framer-zMhpB .framer-tka4a5 > :last-child, .framer-zMhpB .framer-stsca4 > :last-child, .framer-zMhpB .framer-2kqyhh > :last-child, .framer-zMhpB .framer-1bl54vh > :last-child, .framer-zMhpB .framer-1f7t2ku > :last-child, .framer-zMhpB .framer-y3t3ya > :last-child, .framer-zMhpB .framer-1voanrm > :last-child, .framer-zMhpB .framer-1qmg2kj > :last-child, .framer-zMhpB .framer-kcqllk > :last-child, .framer-zMhpB .framer-sx0uag > :last-child { margin-bottom: 0px; } .framer-zMhpB .framer-tdgv9m > *, .framer-zMhpB .framer-1n8kw4l > *, .framer-zMhpB .framer-tra1ar > *, .framer-zMhpB .framer-q0knbw > *, .framer-zMhpB .framer-1uew4el > *, .framer-zMhpB .framer-1ua7nr9 > *, .framer-zMhpB .framer-tka4a5 > *, .framer-zMhpB .framer-stsca4 > *, .framer-zMhpB .framer-2kqyhh > *, .framer-zMhpB .framer-1bl54vh > *, .framer-zMhpB .framer-1f7t2ku > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zMhpB .framer-1bvivlj > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zMhpB .framer-c0ovsq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-zMhpB .framer-qzl0ty > *, .framer-zMhpB .framer-c4xlvh > *, .framer-zMhpB .framer-1j5lvy3 > *, .framer-zMhpB .framer-1y6e37i > *, .framer-zMhpB .framer-11pfh3h > *, .framer-zMhpB .framer-y9hiv1 > *, .framer-zMhpB .framer-1vzlnc1 > *, .framer-zMhpB .framer-106mftl > *, .framer-zMhpB .framer-1v63wxw > *, .framer-zMhpB .framer-1b4mori > *, .framer-zMhpB .framer-yrahl2 > *, .framer-zMhpB .framer-qfw34s > *, .framer-zMhpB .framer-1b28qey > *, .framer-zMhpB .framer-1ltotgd > *, .framer-zMhpB .framer-y7wk11 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zMhpB .framer-qzl0ty > :first-child, .framer-zMhpB .framer-c4xlvh > :first-child, .framer-zMhpB .framer-1lnewsm > :first-child, .framer-zMhpB .framer-1j5lvy3 > :first-child, .framer-zMhpB .framer-1y6e37i > :first-child, .framer-zMhpB .framer-11pfh3h > :first-child, .framer-zMhpB .framer-y9hiv1 > :first-child, .framer-zMhpB .framer-1vzlnc1 > :first-child, .framer-zMhpB .framer-106mftl > :first-child, .framer-zMhpB .framer-1v63wxw > :first-child, .framer-zMhpB .framer-1b4mori > :first-child, .framer-zMhpB .framer-yrahl2 > :first-child, .framer-zMhpB .framer-qfw34s > :first-child, .framer-zMhpB .framer-1b28qey > :first-child, .framer-zMhpB .framer-9arhr > :first-child, .framer-zMhpB .framer-1ltotgd > :first-child, .framer-zMhpB .framer-y7wk11 > :first-child, .framer-zMhpB .framer-1i42p99 > :first-child { margin-left: 0px; } .framer-zMhpB .framer-qzl0ty > :last-child, .framer-zMhpB .framer-c4xlvh > :last-child, .framer-zMhpB .framer-1lnewsm > :last-child, .framer-zMhpB .framer-1j5lvy3 > :last-child, .framer-zMhpB .framer-1y6e37i > :last-child, .framer-zMhpB .framer-11pfh3h > :last-child, .framer-zMhpB .framer-y9hiv1 > :last-child, .framer-zMhpB .framer-1vzlnc1 > :last-child, .framer-zMhpB .framer-106mftl > :last-child, .framer-zMhpB .framer-1v63wxw > :last-child, .framer-zMhpB .framer-1b4mori > :last-child, .framer-zMhpB .framer-yrahl2 > :last-child, .framer-zMhpB .framer-qfw34s > :last-child, .framer-zMhpB .framer-1b28qey > :last-child, .framer-zMhpB .framer-9arhr > :last-child, .framer-zMhpB .framer-1ltotgd > :last-child, .framer-zMhpB .framer-y7wk11 > :last-child, .framer-zMhpB .framer-1i42p99 > :last-child { margin-right: 0px; } .framer-zMhpB .framer-1lnewsm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zMhpB .framer-y3t3ya > *, .framer-zMhpB .framer-1qmg2kj > * { margin: 0px; margin-bottom: calc(47px / 2); margin-top: calc(47px / 2); } .framer-zMhpB .framer-9arhr > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-zMhpB .framer-sx0uag > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-zMhpB .framer-1i42p99 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-zMhpB { background: white; } .framer-zMhpB.framer-1e0214w { width: 810px; } .framer-zMhpB .framer-1bvivlj { padding: 0px; } .framer-zMhpB .framer-c0ovsq, .framer-zMhpB .framer-tra1ar, .framer-zMhpB .framer-qzl0ty, .framer-zMhpB .framer-11pfh3h, .framer-zMhpB .framer-1v63wxw, .framer-zMhpB .framer-1ltotgd { order: 0; } .framer-zMhpB .framer-1j5lvy3, .framer-zMhpB .framer-1uew4el, .framer-zMhpB .framer-1lgii89, .framer-zMhpB .framer-6zlvs1-container { order: 1; } .framer-zMhpB .framer-1y6e37i, .framer-zMhpB .framer-ankeds-container, .framer-zMhpB .framer-ewx5xk, .framer-zMhpB .framer-1kipsr2-container, .framer-zMhpB .framer-5ogo4g { order: 2; } .framer-zMhpB .framer-q0knbw { order: 4; padding: 0px 40px 0px 40px; } .framer-zMhpB .framer-1ua7nr9 { order: 3; padding: 0px 40px 0px 40px; } .framer-zMhpB .framer-y9hiv1, .framer-zMhpB .framer-1bl54vh { order: 4; } .framer-zMhpB .framer-1903pjr-container, .framer-zMhpB .framer-1f7t2ku { order: 5; } .framer-zMhpB .framer-tka4a5 { order: 3; } .framer-zMhpB .framer-9arhr { order: 6; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-zMhpB { background: white; } .framer-zMhpB.framer-1e0214w { width: 390px; } .framer-zMhpB .framer-1n8kw4l { min-width: 380px; } .framer-zMhpB .framer-1bvivlj, .framer-zMhpB .framer-stsca4, .framer-zMhpB .framer-2kqyhh { padding: 0px; } .framer-zMhpB .framer-c0ovsq, .framer-zMhpB .framer-tra1ar, .framer-zMhpB .framer-qzl0ty, .framer-zMhpB .framer-11pfh3h, .framer-zMhpB .framer-1v63wxw, .framer-zMhpB .framer-1ltotgd { order: 0; } .framer-zMhpB .framer-1j5lvy3, .framer-zMhpB .framer-1uew4el, .framer-zMhpB .framer-6zlvs1-container { order: 1; } .framer-zMhpB .framer-1y6e37i { order: 2; padding: 5px 10px 5px 50px; } .framer-zMhpB .framer-q0knbw { order: 4; padding: 0px 5px 0px 40px; } .framer-zMhpB .framer-1myul6n-container { min-width: 300px; } .framer-zMhpB .framer-ankeds-container, .framer-zMhpB .framer-ewx5xk, .framer-zMhpB .framer-5ogo4g { order: 2; } .framer-zMhpB .framer-1ua7nr9 { order: 3; padding: 0px 40px 0px 40px; } .framer-zMhpB .framer-y9hiv1, .framer-zMhpB .framer-1bl54vh { order: 4; } .framer-zMhpB .framer-1903pjr-container { order: 5; width: 100%; } .framer-zMhpB .framer-1lgii89 { order: 1; padding: 0px 5px 0px 22px; } .framer-zMhpB .framer-1kipsr2-container { order: 2; width: 100%; } .framer-zMhpB .framer-tka4a5 { order: 3; } .framer-zMhpB .framer-13b3bdk-container { width: 100%; } .framer-zMhpB .framer-3116qg, .framer-zMhpB .framer-y3t3ya, .framer-zMhpB .framer-1qmg2kj { gap: 25px; } .framer-zMhpB .framer-1f7t2ku { order: 5; } .framer-zMhpB .framer-1voanrm, .framer-zMhpB .framer-kcqllk { width: min-content; } .framer-zMhpB .framer-1xztl0s-container, .framer-zMhpB .framer-u2vwjl-container, .framer-zMhpB .framer-1ql9x2q-container, .framer-zMhpB .framer-j1f2sq-container { right: 0px; } .framer-zMhpB .framer-9arhr { order: 6; } .framer-zMhpB .framer-sx0uag { left: 10px; } .framer-zMhpB .framer-1i42p99 { gap: 10px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zMhpB .framer-3116qg, .framer-zMhpB .framer-y3t3ya, .framer-zMhpB .framer-1qmg2kj, .framer-zMhpB .framer-1i42p99 { gap: 0px; } .framer-zMhpB .framer-3116qg > *, .framer-zMhpB .framer-3116qg > :first-child, .framer-zMhpB .framer-3116qg > :last-child { margin: 0px; } .framer-zMhpB .framer-y3t3ya > *, .framer-zMhpB .framer-1qmg2kj > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-zMhpB .framer-y3t3ya > :first-child, .framer-zMhpB .framer-1qmg2kj > :first-child { margin-top: 0px; } .framer-zMhpB .framer-y3t3ya > :last-child, .framer-zMhpB .framer-1qmg2kj > :last-child { margin-bottom: 0px; } .framer-zMhpB .framer-1i42p99 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zMhpB .framer-1i42p99 > :first-child { margin-left: 0px; } .framer-zMhpB .framer-1i42p99 > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6632\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ca3WNlg0l\":{\"layout\":[\"fixed\",\"auto\"]},\"J3U44nTt6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerI5IvAR4Sj=withCSS(Component,css,\"framer-zMhpB\");export default FramerI5IvAR4Sj;FramerI5IvAR4Sj.displayName=\"Knownew\";FramerI5IvAR4Sj.defaultProps={height:6632,width:1200};addFonts(FramerI5IvAR4Sj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\",weight:\"400\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1VU80V4bVkA.woff2\",weight:\"500\"},{family:\"Rubik\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0U1dYPFkJ1O.woff2\",weight:\"400\"}]},...AuthorDateFonts,...SegmentedControl2Fonts,...AudioFonts,...ExplanationFonts,...EmbedFonts,...SourcesWButtonsFonts,...SoursesFonts,...MaterialFonts,...FormCopy3Fonts,...GetBookmarksPromoFonts,...QuestionAnswerFonts,...UpdatesFonts,...SubscribePromoFonts,...RoadmapFonts,...BlockExitAndOtherFonts,...LessonCompleteIconFonts,...SocialShareButtonFonts,...SidebarMenuFonts,...MenuStudentActiveFonts,...SubjectsIconFonts,...TitleFonts,...LessonCompleteCopy2Fonts,...FootersPopularCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI5IvAR4Sj\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ca3WNlg0l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3U44nTt6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6632\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useStore1", "createStore", "withViewChange", "Component", "props", "store", "setStore", "p", "QuestionAnswer", "props", "attemptsKey", "userAnswer", "setUserAnswer", "ye", "result", "setResult", "isLoading", "setIsLoading", "isSubmitted", "setIsSubmitted", "isClient", "setIsClient", "attempts", "setAttempts", "loadingPhrase", "setLoadingPhrase", "loadingPhrases", "ue", "saved", "checkAnswer", "e", "now", "prev", "changePhrase", "randomPhrase", "intervalId", "payload", "response", "errorText", "data", "error", "restartSession", "giveUp", "u", "p", "addPropertyControls", "ControlType", "AuthorDateFonts", "getFonts", "FY5Ich6nT_default", "SegmentedControl2Fonts", "veh8TB3xE_default", "AudioFonts", "Audio", "ExplanationFonts", "nzfhDzf6z_default", "ExplanationWithViewChangeWithMappedReactProps10wyrxl", "withMappedReactProps", "withViewChange", "nzfhDzf6z_exports", "EmbedFonts", "Embed", "SourcesWButtonsFonts", "sfFBwo9l8_default", "SoursesFonts", "qDK7jjkVs_default", "SoursesWithViewChange1WithMappedReactProps9k5a4j", "qDK7jjkVs_exports", "MaterialFonts", "Icon", "FormCopy3Fonts", "INBPPabse_default", "GetBookmarksPromoFonts", "t8ZseR1uB_default", "QuestionAnswerFonts", "QuestionAnswer", "UpdatesFonts", "JEJoCVPH6_default", "MotionDivWithActiveLicense", "withActiveLicense", "motion", "SubscribePromoFonts", "FwyGxCqSo_default", "RoadmapFonts", "g12nVjtgx_default", "BlockExitAndOtherFonts", "gkaIjeZCt_default", "LessonCompleteIconFonts", "sYSsAirC8_default", "LessonCompleteIconWithIsDoneWithMappedReactProps1mwyuh3", "withIsDone", "sYSsAirC8_exports", "LessonCompleteIconWithIsInProgressWithMappedReactProps1mwyuh3", "withIsInProgress", "SocialShareButtonFonts", "SocialShareButton", "SidebarMenuFonts", "XeyZr9rUV_default", "MenuStudentActiveFonts", "rnLer3Kd6_default", "SubjectsIconFonts", "VTXjs0eSp_default", "TitleFonts", "o1jEk0kcW_default", "LessonCompleteCopy2Fonts", "V6rwVWeFF_default", "LessonCompleteCopy2WithActionStatusWithMappedReactPropsmtjk5h", "withActionStatus", "V6rwVWeFF_exports", "FootersPopularCopyFonts", "GdZlB3aOT_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "convertFromBoolean", "activeLocale", "numberToPixelString", "equals", "a", "b", "convertFromBoolean1", "negate", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "convertFromBoolean2", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "oOjvHvLbD_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "style", "className", "layoutId", "variant", "yVFe_EZuv", "cE089pb70", "QKfcRIRvh", "uarZcgSBl", "XR4VFNfyt", "coIxgdTme", "aAEPa7Vom", "IIN9wdxGc", "i9nntaDEe", "oKuSNZFXs", "wuyj9c92Q", "rDNieFIeP", "O4E6EslWt", "lNUZMnlwY", "oKuSNZFXsMa1SrZ0r6", "xGu2_Pkqz", "hNRvP3VHq", "KGj8wujASWKbQmR_VC", "MyyFasn16WKbQmR_VC", "FWTbufuKOWKbQmR_VC", "XSFjSi51tWKbQmR_VC", "DHadm6A_kWKbQmR_VC", "idWKbQmR_VC", "oKuSNZFXsvB_aOmdhC", "wuyj9c92QvB_aOmdhC", "idvB_aOmdhC", "oKuSNZFXsW7JfPkK2h", "wuyj9c92QW7JfPkK2h", "idW7JfPkK2h", "QKfcRIRvhMa1SrZ0r6", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapizu9gt", "overlay", "paginationInfo", "args", "onClick1wvko5h", "MVDgYLSl6izu9gt", "ref1", "pe", "padding", "visible1", "elementId", "useRouteElementId", "ref2", "visible2", "visible3", "visible4", "isDisplayed", "visible5", "visible6", "elementId1", "ref3", "visible7", "ref4", "ref5", "elementId2", "ref6", "visible8", "elementId3", "ref7", "visible9", "visible10", "elementId4", "ref8", "router", "useRouter", "elementId5", "ref9", "isDisplayed1", "visible11", "isDisplayed2", "value1", "ref10", "ref11", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "Image2", "SVG", "RichText2", "x", "ComponentViewportProvider", "Container", "PropertyOverrides2", "l", "AnimatePresence", "Floating", "ChildrenCanSuspend", "kmLn6L47Z_default", "collection", "loadMore", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "collection1", "paginationInfo1", "loadMore1", "Link", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "overlay1", "resolvedLinks4", "css", "FramerI5IvAR4Sj", "withCSS", "I5IvAR4Sj_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
