{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kevhKRuipa2aG3hxEUcR/k03K4LUnES2vieFX0SlF/Counter1_1.js", "ssg:https://framerusercontent.com/modules/2djZxdlWeOaf3RZJ1wB0/koEBRaOkPRu7AlTHNu0f/Gc4FbP15A.js", "ssg:https://framerusercontent.com/modules/PGecxR2XxY1e1RF42wXO/AvnAtmeW933PC3Lf6b00/S9ELcZ8Oe.js", "ssg:https://framerusercontent.com/modules/mt7OZKeInUpGcdKPClLN/MLgJK2sPs9Kljh0qjFY1/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"Built by Microstacks\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1_1.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/kevhKRuipa2aG3hxEUcR/k03K4LUnES2vieFX0SlF/Counter1_1.js\";const CounterFonts=getFonts(Counter);const serializationHash=\"framer-aCTya\";const variantClassNames={thYrR0ULD:\"framer-v-10nqorg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({endNumber,fontSize,height,id,startNumber,suffix,text,width,...props})=>{return{...props,aFMg27Z52:text??props.aFMg27Z52??\"Active Projects\",ixRE_HRvM:suffix??props.ixRE_HRvM??\"K+\",Kphoa2ytH:fontSize??props.Kphoa2ytH??52,NSfqpS8dr:startNumber??props.NSfqpS8dr??35,qPZUsIF_r:endNumber??props.qPZUsIF_r??50};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NSfqpS8dr,qPZUsIF_r,ixRE_HRvM,Kphoa2ytH,aFMg27Z52,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"thYrR0ULD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10nqorg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"thYrR0ULD\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b75fpm-container\",\"data-framer-name\":\"Counter\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"mj96ZEi5w-container\",name:\"Counter\",nodeId:\"mj96ZEi5w\",rendersWithMotion:true,scopeId:\"Gc4FbP15A\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:qPZUsIF_r,gapSize:0,height:\"100%\",id:\"mj96ZEi5w\",incrementType:\"integer\",layoutId:\"mj96ZEi5w\",loop:false,name:\"Counter\",prefixColor:\"var(--token-be6cb4c0-7215-43a9-be01-3453038bea9d, rgb(255, 255, 255))\",prefixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:30,start:NSfqpS8dr,startOnViewport:true,suffixColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(25, 25, 25))\",suffixFont:{fontFamily:'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},suffixText:ixRE_HRvM,textColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(25, 25, 25))\",textSize:Kphoa2ytH,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7T3V0Zml0LW1lZGl1bQ==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(25, 25, 25)))\"},children:\"Active Projects\"})}),className:\"framer-z1bvkz\",fonts:[\"FS;Outfit-medium\"],layoutDependency:layoutDependency,layoutId:\"jaPXzsnZV\",style:{\"--extracted-r6o4lv\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aFMg27Z52,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aCTya.framer-1ifabrs, .framer-aCTya .framer-1ifabrs { display: block; }\",\".framer-aCTya.framer-10nqorg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-aCTya .framer-1b75fpm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-aCTya .framer-z1bvkz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aCTya.framer-10nqorg { gap: 0px; } .framer-aCTya.framer-10nqorg > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-aCTya.framer-10nqorg > :first-child { margin-top: 0px; } .framer-aCTya.framer-10nqorg > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NSfqpS8dr\":\"startNumber\",\"qPZUsIF_r\":\"endNumber\",\"ixRE_HRvM\":\"suffix\",\"Kphoa2ytH\":\"fontSize\",\"aFMg27Z52\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGc4FbP15A=withCSS(Component,css,\"framer-aCTya\");export default FramerGc4FbP15A;FramerGc4FbP15A.displayName=\"Stats\";FramerGc4FbP15A.defaultProps={height:95,width:200};addPropertyControls(FramerGc4FbP15A,{NSfqpS8dr:{defaultValue:35,displayStepper:true,title:\"Start Number\",type:ControlType.Number},qPZUsIF_r:{defaultValue:50,displayStepper:true,title:\"End Number\",type:ControlType.Number},ixRE_HRvM:{defaultValue:\"K+\",title:\"Suffix\",type:ControlType.String},Kphoa2ytH:{defaultValue:52,max:240,min:8,step:1,title:\"Font Size\",type:ControlType.Number},aFMg27Z52:{defaultValue:\"Active Projects\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerGc4FbP15A,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YEOHRCKDRRMJG7KXODMRI7H3TDTC7DCR/GSC37XQOTJL5UUXY7GT63Z6TK3GPURF7/3JX43FCBGINLH25MK4NSVCHCDXUSMHUE.woff2\",weight:\"500\"}]},...CounterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGc4FbP15A\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"NSfqpS8dr\\\":\\\"startNumber\\\",\\\"qPZUsIF_r\\\":\\\"endNumber\\\",\\\"ixRE_HRvM\\\":\\\"suffix\\\",\\\"Kphoa2ytH\\\":\\\"fontSize\\\",\\\"aFMg27Z52\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"95\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gc4FbP15A.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ExcelDateDisplay from\"https://framerusercontent.com/modules/vB9rmaNOC90XOhs6nFt1/w6l9Xg0S3AOwf1Bo7Ykl/Date.js\";import ExcelTimeDisplay from\"https://framerusercontent.com/modules/Cdu9ikeLTS1SrrOUTqAY/kWbgTYpC6Lv9TgG7T77M/Time_1.js\";import SynBioBeta2025Speakers49 from\"https://framerusercontent.com/modules/ENeqbXrpLmLC39dAShHA/ruYLStWvBaULDfqJEr1r/uVIAFNi9C.js\";import GSBC2025CventUpload from\"https://framerusercontent.com/modules/WnNq1AJAVevsrhjUKuQY/XwZb0tDrfrTIuSlPw96t/WN1gMaP21.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ehrApJ39o93c5suCvkUz/aaIDY241rv5uS9SZVIHN/BJ7Nayh9V.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/zkNalMF5tErwEtSorolP/qayqezlXWDrQVFp7ONal/cWQEiKhnk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xi6UdnbHwacHpyre7Pbf/detnvnJU3Bx3DN3IKZaJ/n2uuTnkoi.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/5JJyG5ItihM5KyVwwVh3/MzAF2y0rYJAydjam6P5b/yOQUMjA6G.js\";import SpeakerCard from\"https://framerusercontent.com/modules/rOkrgb97cz1f8rXCIT9a/AYe5rSSVDTcIVZRtFi9v/cD1QeGf7t.js\";const ExcelDateDisplayFonts=getFonts(ExcelDateDisplay);const ExcelTimeDisplayFonts=getFonts(ExcelTimeDisplay);const SpeakerCardFonts=getFonts(SpeakerCard);const MotionDivWithFX=withFX(motion.div);const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"sxD1ZRhdn\",\"Je9Yzn4I3\",\"kvtobwPOJ\"];const serializationHash=\"framer-XRUDg\";const variantClassNames={Je9Yzn4I3:\"framer-v-2pxo22\",kvtobwPOJ:\"framer-v-ypxyel\",sxD1ZRhdn:\"framer-v-ptn5eq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const toString=value=>{return typeof value===\"string\"?value:String(value);};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"AdBM0PNO6\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AdBM0PNO6\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"id\",type:\"Identifier\"},{alias:\"VQGzmnmy4\",arguments:[{from:{alias:\"VQGzmnmy4\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"VQGzmnmy4\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"AdBM0PNO6\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A1\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"LJ5JvDVs0\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LJ5JvDVs0\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"id\",type:\"Identifier\"},{alias:\"auX4IGK7s\",arguments:[{from:{alias:\"auX4IGK7s\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"auX4IGK7s\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"LJ5JvDVs0\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A2\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"QjPOVvo6Z\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"QjPOVvo6Z\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"id\",type:\"Identifier\"},{alias:\"bGw5WBCAV\",arguments:[{from:{alias:\"bGw5WBCAV\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bGw5WBCAV\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"QjPOVvo6Z\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QjPOVvo6Z\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QjPOVvo6Z\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A3\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"xXtcbig9O\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"xXtcbig9O\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"id\",type:\"Identifier\"},{alias:\"S8ZZU0ln1\",arguments:[{from:{alias:\"S8ZZU0ln1\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"S8ZZU0ln1\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"xXtcbig9O\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xXtcbig9O\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xXtcbig9O\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A4\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"X39X9_SQS\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"X39X9_SQS\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"id\",type:\"Identifier\"},{alias:\"jFiydSx3E\",arguments:[{from:{alias:\"jFiydSx3E\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"jFiydSx3E\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"X39X9_SQS\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X39X9_SQS\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X39X9_SQS\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A5\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"wbEIC3OA2\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"wbEIC3OA2\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"id\",type:\"Identifier\"},{alias:\"Q6OCiQJf6\",arguments:[{from:{alias:\"Q6OCiQJf6\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Q6OCiQJf6\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"wbEIC3OA2\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"wbEIC3OA2\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"wbEIC3OA2\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A6\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"KOdFzXAZr\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"KOdFzXAZr\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"id\",type:\"Identifier\"},{alias:\"XqOD2fSHQ\",arguments:[{from:{alias:\"XqOD2fSHQ\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"XqOD2fSHQ\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"KOdFzXAZr\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A7\"},type:\"BinaryOperation\"}});const query7=prequery=>prequery({from:{alias:\"bet53hnsw\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"bet53hnsw\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"id\",type:\"Identifier\"},{alias:\"Pw_dWDUpn\",arguments:[{from:{alias:\"Pw_dWDUpn\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Pw_dWDUpn\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"bet53hnsw\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"bet53hnsw\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"bet53hnsw\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query8=prequery=>prequery({from:{alias:\"AUS8mZTOI\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AUS8mZTOI\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"id\",type:\"Identifier\"},{alias:\"Q1nDE0c_n\",arguments:[{from:{alias:\"Q1nDE0c_n\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Q1nDE0c_n\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"AUS8mZTOI\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"AUS8mZTOI\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"AUS8mZTOI\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A9\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query9=prequery=>prequery({from:{alias:\"hGcKB5EOx\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"hGcKB5EOx\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"id\",type:\"Identifier\"},{alias:\"SdM2uChXF\",arguments:[{from:{alias:\"SdM2uChXF\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"SdM2uChXF\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"hGcKB5EOx\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hGcKB5EOx\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hGcKB5EOx\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A10\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query10=prequery=>prequery({from:{alias:\"ktbkv0bVb\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ktbkv0bVb\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"id\",type:\"Identifier\"},{alias:\"DNCDuCiBW\",arguments:[{from:{alias:\"DNCDuCiBW\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"DNCDuCiBW\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"ktbkv0bVb\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A11\"},type:\"BinaryOperation\"}});const query11=prequery=>prequery({from:{alias:\"qQyyL9NfS\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"qQyyL9NfS\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"id\",type:\"Identifier\"},{alias:\"hlnYryy2G\",arguments:[{from:{alias:\"hlnYryy2G\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"hlnYryy2G\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"qQyyL9NfS\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A1\"},type:\"BinaryOperation\"}});const query12=prequery=>prequery({from:{alias:\"H_8iurV9J\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"H_8iurV9J\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"id\",type:\"Identifier\"},{alias:\"g8s0B_Jyl\",arguments:[{from:{alias:\"g8s0B_Jyl\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"g8s0B_Jyl\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"H_8iurV9J\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"H_8iurV9J\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"H_8iurV9J\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A2\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query13=prequery=>prequery({from:{alias:\"SC_cLnidY\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"SC_cLnidY\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"id\",type:\"Identifier\"},{alias:\"UUfY28kvG\",arguments:[{from:{alias:\"UUfY28kvG\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"UUfY28kvG\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"SC_cLnidY\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"SC_cLnidY\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"SC_cLnidY\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A3\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query14=prequery=>prequery({from:{alias:\"XTmJOmF51\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XTmJOmF51\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"id\",type:\"Identifier\"},{alias:\"WGjjrOCzi\",arguments:[{from:{alias:\"WGjjrOCzi\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"WGjjrOCzi\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"XTmJOmF51\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A4\"},type:\"BinaryOperation\"}});const query15=prequery=>prequery({from:{alias:\"pHXLC7ZD9\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"pHXLC7ZD9\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"id\",type:\"Identifier\"},{alias:\"cCQtnQBAY\",arguments:[{from:{alias:\"cCQtnQBAY\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"cCQtnQBAY\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"pHXLC7ZD9\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pHXLC7ZD9\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pHXLC7ZD9\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A5\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query16=prequery=>prequery({from:{alias:\"XG9kN08_T\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XG9kN08_T\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"id\",type:\"Identifier\"},{alias:\"bYwjzpLae\",arguments:[{from:{alias:\"bYwjzpLae\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bYwjzpLae\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"XG9kN08_T\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"XG9kN08_T\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"XG9kN08_T\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A6\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query17=prequery=>prequery({from:{alias:\"WiuQw0_CV\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WiuQw0_CV\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"id\",type:\"Identifier\"},{alias:\"mWEZiaApf\",arguments:[{from:{alias:\"mWEZiaApf\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"mWEZiaApf\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"WiuQw0_CV\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WiuQw0_CV\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WiuQw0_CV\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query18=prequery=>prequery({from:{alias:\"lkASnAbUh\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"lkASnAbUh\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"id\",type:\"Identifier\"},{alias:\"N0iRYK_e5\",arguments:[{from:{alias:\"N0iRYK_e5\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"N0iRYK_e5\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"lkASnAbUh\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"lkASnAbUh\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"lkASnAbUh\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query19=prequery=>prequery({from:{alias:\"rbxsfN9DX\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"rbxsfN9DX\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"id\",type:\"Identifier\"},{alias:\"bY5cyYbDC\",arguments:[{from:{alias:\"bY5cyYbDC\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bY5cyYbDC\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"rbxsfN9DX\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"rbxsfN9DX\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"rbxsfN9DX\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A9\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query20=prequery=>prequery({from:{alias:\"xfT_IRylU\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"xfT_IRylU\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"id\",type:\"Identifier\"},{alias:\"RL3uSVOOY\",arguments:[{from:{alias:\"RL3uSVOOY\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"RL3uSVOOY\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"xfT_IRylU\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xfT_IRylU\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xfT_IRylU\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A10\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query21=prequery=>prequery({from:{alias:\"hzOPlEeKz\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"hzOPlEeKz\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"id\",type:\"Identifier\"},{alias:\"w81b6idhp\",arguments:[{from:{alias:\"w81b6idhp\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"w81b6idhp\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"hzOPlEeKz\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hzOPlEeKz\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hzOPlEeKz\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A11\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"All open\":\"Je9Yzn4I3\",\"Phone all open\":\"kvtobwPOJ\",Default:\"sxD1ZRhdn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sxD1ZRhdn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,saeex7UoWAdBM0PNO6,iAHomRPW9AdBM0PNO6,O8SkeTdROAdBM0PNO6,kFLvvfggDAdBM0PNO6,ER_Czfpu7gSJbGipgv,ER_Czfpu7VQGzmnmy4,eoNm9cDSAVQGzmnmy4,spH3BjGqfVQGzmnmy4,xWMZXIfArVQGzmnmy4,b9KiniA39VQGzmnmy4,idVQGzmnmy4,kwa5SmhPnAdBM0PNO6,idAdBM0PNO6,saeex7UoWLJ5JvDVs0,iAHomRPW9LJ5JvDVs0,O8SkeTdROLJ5JvDVs0,kFLvvfggDLJ5JvDVs0,ER_Czfpu7auX4IGK7s,eoNm9cDSAauX4IGK7s,spH3BjGqfauX4IGK7s,xWMZXIfArauX4IGK7s,b9KiniA39auX4IGK7s,idauX4IGK7s,kwa5SmhPnLJ5JvDVs0,idLJ5JvDVs0,saeex7UoWQjPOVvo6Z,iAHomRPW9QjPOVvo6Z,O8SkeTdROQjPOVvo6Z,kFLvvfggDQjPOVvo6Z,ER_Czfpu7bGw5WBCAV,eoNm9cDSAbGw5WBCAV,spH3BjGqfbGw5WBCAV,xWMZXIfArbGw5WBCAV,b9KiniA39bGw5WBCAV,idbGw5WBCAV,kwa5SmhPnQjPOVvo6Z,idQjPOVvo6Z,saeex7UoWxXtcbig9O,iAHomRPW9xXtcbig9O,O8SkeTdROxXtcbig9O,kFLvvfggDxXtcbig9O,ER_Czfpu7S8ZZU0ln1,eoNm9cDSAS8ZZU0ln1,spH3BjGqfS8ZZU0ln1,xWMZXIfArS8ZZU0ln1,b9KiniA39S8ZZU0ln1,idS8ZZU0ln1,kwa5SmhPnxXtcbig9O,idxXtcbig9O,saeex7UoWX39X9_SQS,iAHomRPW9X39X9_SQS,O8SkeTdROX39X9_SQS,kFLvvfggDX39X9_SQS,ER_Czfpu7jFiydSx3E,eoNm9cDSAjFiydSx3E,spH3BjGqfjFiydSx3E,xWMZXIfArjFiydSx3E,b9KiniA39jFiydSx3E,idjFiydSx3E,kwa5SmhPnX39X9_SQS,idX39X9_SQS,saeex7UoWwbEIC3OA2,iAHomRPW9wbEIC3OA2,O8SkeTdROwbEIC3OA2,kFLvvfggDwbEIC3OA2,ER_Czfpu7Q6OCiQJf6,eoNm9cDSAQ6OCiQJf6,spH3BjGqfQ6OCiQJf6,xWMZXIfArQ6OCiQJf6,b9KiniA39Q6OCiQJf6,idQ6OCiQJf6,kwa5SmhPnwbEIC3OA2,idwbEIC3OA2,saeex7UoWKOdFzXAZr,iAHomRPW9KOdFzXAZr,O8SkeTdROKOdFzXAZr,kFLvvfggDKOdFzXAZr,ER_Czfpu7XqOD2fSHQ,eoNm9cDSAXqOD2fSHQ,spH3BjGqfXqOD2fSHQ,xWMZXIfArXqOD2fSHQ,b9KiniA39XqOD2fSHQ,idXqOD2fSHQ,kwa5SmhPnKOdFzXAZr,idKOdFzXAZr,saeex7UoWbet53hnsw,iAHomRPW9bet53hnsw,O8SkeTdRObet53hnsw,kFLvvfggDbet53hnsw,ER_Czfpu7Pw_dWDUpn,eoNm9cDSAPw_dWDUpn,spH3BjGqfPw_dWDUpn,xWMZXIfArPw_dWDUpn,b9KiniA39Pw_dWDUpn,idPw_dWDUpn,kwa5SmhPnbet53hnsw,idbet53hnsw,saeex7UoWAUS8mZTOI,iAHomRPW9AUS8mZTOI,O8SkeTdROAUS8mZTOI,kFLvvfggDAUS8mZTOI,ER_Czfpu7Q1nDE0c_n,eoNm9cDSAQ1nDE0c_n,spH3BjGqfQ1nDE0c_n,xWMZXIfArQ1nDE0c_n,b9KiniA39Q1nDE0c_n,idQ1nDE0c_n,kwa5SmhPnAUS8mZTOI,idAUS8mZTOI,saeex7UoWhGcKB5EOx,iAHomRPW9hGcKB5EOx,O8SkeTdROhGcKB5EOx,kFLvvfggDhGcKB5EOx,ER_Czfpu7SdM2uChXF,eoNm9cDSASdM2uChXF,spH3BjGqfSdM2uChXF,xWMZXIfArSdM2uChXF,b9KiniA39SdM2uChXF,idSdM2uChXF,kwa5SmhPnhGcKB5EOx,idhGcKB5EOx,saeex7UoWktbkv0bVb,iAHomRPW9ktbkv0bVb,O8SkeTdROktbkv0bVb,kFLvvfggDktbkv0bVb,ER_Czfpu7DNCDuCiBW,eoNm9cDSADNCDuCiBW,spH3BjGqfDNCDuCiBW,xWMZXIfArDNCDuCiBW,b9KiniA39DNCDuCiBW,idDNCDuCiBW,kwa5SmhPnktbkv0bVb,idktbkv0bVb,saeex7UoWqQyyL9NfS,iAHomRPW9qQyyL9NfS,O8SkeTdROqQyyL9NfS,kFLvvfggDqQyyL9NfS,ER_Czfpu7hlnYryy2G,eoNm9cDSAhlnYryy2G,spH3BjGqfhlnYryy2G,xWMZXIfArhlnYryy2G,b9KiniA39hlnYryy2G,idhlnYryy2G,kwa5SmhPnqQyyL9NfS,idqQyyL9NfS,saeex7UoWH_8iurV9J,iAHomRPW9H_8iurV9J,O8SkeTdROH_8iurV9J,kFLvvfggDH_8iurV9J,ER_Czfpu7g8s0B_Jyl,eoNm9cDSAg8s0B_Jyl,spH3BjGqfg8s0B_Jyl,xWMZXIfArg8s0B_Jyl,b9KiniA39g8s0B_Jyl,idg8s0B_Jyl,kwa5SmhPnH_8iurV9J,idH_8iurV9J,saeex7UoWSC_cLnidY,iAHomRPW9SC_cLnidY,O8SkeTdROSC_cLnidY,kFLvvfggDSC_cLnidY,ER_Czfpu7UUfY28kvG,eoNm9cDSAUUfY28kvG,spH3BjGqfUUfY28kvG,xWMZXIfArUUfY28kvG,b9KiniA39UUfY28kvG,idUUfY28kvG,kwa5SmhPnSC_cLnidY,idSC_cLnidY,saeex7UoWXTmJOmF51,iAHomRPW9XTmJOmF51,O8SkeTdROXTmJOmF51,kFLvvfggDXTmJOmF51,ER_Czfpu7WGjjrOCzi,eoNm9cDSAWGjjrOCzi,spH3BjGqfWGjjrOCzi,xWMZXIfArWGjjrOCzi,b9KiniA39WGjjrOCzi,idWGjjrOCzi,kwa5SmhPnXTmJOmF51,idXTmJOmF51,saeex7UoWpHXLC7ZD9,iAHomRPW9pHXLC7ZD9,O8SkeTdROpHXLC7ZD9,kFLvvfggDpHXLC7ZD9,ER_Czfpu7cCQtnQBAY,eoNm9cDSAcCQtnQBAY,spH3BjGqfcCQtnQBAY,xWMZXIfArcCQtnQBAY,b9KiniA39cCQtnQBAY,idcCQtnQBAY,kwa5SmhPnpHXLC7ZD9,idpHXLC7ZD9,saeex7UoWXG9kN08_T,iAHomRPW9XG9kN08_T,O8SkeTdROXG9kN08_T,kFLvvfggDXG9kN08_T,ER_Czfpu7bYwjzpLae,eoNm9cDSAbYwjzpLae,spH3BjGqfbYwjzpLae,xWMZXIfArbYwjzpLae,b9KiniA39bYwjzpLae,idbYwjzpLae,kwa5SmhPnXG9kN08_T,idXG9kN08_T,saeex7UoWWiuQw0_CV,iAHomRPW9WiuQw0_CV,O8SkeTdROWiuQw0_CV,kFLvvfggDWiuQw0_CV,ER_Czfpu7mWEZiaApf,eoNm9cDSAmWEZiaApf,spH3BjGqfmWEZiaApf,xWMZXIfArmWEZiaApf,b9KiniA39mWEZiaApf,idmWEZiaApf,kwa5SmhPnWiuQw0_CV,idWiuQw0_CV,saeex7UoWlkASnAbUh,iAHomRPW9lkASnAbUh,O8SkeTdROlkASnAbUh,kFLvvfggDlkASnAbUh,ER_Czfpu7N0iRYK_e5,eoNm9cDSAN0iRYK_e5,spH3BjGqfN0iRYK_e5,xWMZXIfArN0iRYK_e5,b9KiniA39N0iRYK_e5,idN0iRYK_e5,kwa5SmhPnlkASnAbUh,idlkASnAbUh,saeex7UoWrbxsfN9DX,iAHomRPW9rbxsfN9DX,O8SkeTdROrbxsfN9DX,kFLvvfggDrbxsfN9DX,ER_Czfpu7bY5cyYbDC,eoNm9cDSAbY5cyYbDC,spH3BjGqfbY5cyYbDC,xWMZXIfArbY5cyYbDC,b9KiniA39bY5cyYbDC,idbY5cyYbDC,kwa5SmhPnrbxsfN9DX,idrbxsfN9DX,saeex7UoWxfT_IRylU,iAHomRPW9xfT_IRylU,O8SkeTdROxfT_IRylU,kFLvvfggDxfT_IRylU,ER_Czfpu7RL3uSVOOY,eoNm9cDSARL3uSVOOY,spH3BjGqfRL3uSVOOY,xWMZXIfArRL3uSVOOY,b9KiniA39RL3uSVOOY,idRL3uSVOOY,kwa5SmhPnxfT_IRylU,idxfT_IRylU,saeex7UoWhzOPlEeKz,iAHomRPW9hzOPlEeKz,O8SkeTdROhzOPlEeKz,kFLvvfggDhzOPlEeKz,ER_Czfpu7w81b6idhp,eoNm9cDSAw81b6idhp,spH3BjGqfw81b6idhp,xWMZXIfArw81b6idhp,b9KiniA39w81b6idhp,idw81b6idhp,kwa5SmhPnhzOPlEeKz,idhzOPlEeKz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sxD1ZRhdn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sa674t=activeVariantCallback(async(...args)=>{setVariant(\"sxD1ZRhdn\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"kvtobwPOJ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Je9Yzn4I3\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"kvtobwPOJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ptn5eq\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sxD1ZRhdn\",ref:refBinding,style:{...style},...addPropertyOverrides({Je9Yzn4I3:{\"data-framer-name\":\"All open\"},kvtobwPOJ:{\"data-framer-name\":\"Phone all open\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5u4qqx\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qh43UFzlO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qo5u7b\",layoutDependency:layoutDependency,layoutId:\"Zvr2HEKeQ\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jq11zp\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"AdBM0PNO6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AdBM0PNO6\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AdBM0PNO6\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"AdBM0PNO6\",name:\"id\",type:\"Identifier\"},{alias:\"VQGzmnmy4\",arguments:[{from:{alias:\"VQGzmnmy4\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"VQGzmnmy4\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"VQGzmnmy4\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"VQGzmnmy4\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AdBM0PNO6\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"AdBM0PNO6\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A1\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({iAHomRPW9:iAHomRPW9AdBM0PNO6,id:idAdBM0PNO6,kFLvvfggD:kFLvvfggDAdBM0PNO6,kwa5SmhPn:kwa5SmhPnAdBM0PNO6,O8SkeTdRO:O8SkeTdROAdBM0PNO6,saeex7UoW:saeex7UoWAdBM0PNO6,VQGzmnmy4:collection},index1)=>{saeex7UoWAdBM0PNO6??=0;iAHomRPW9AdBM0PNO6??=0;O8SkeTdROAdBM0PNO6??=\"\";kFLvvfggDAdBM0PNO6??=\"\";kwa5SmhPnAdBM0PNO6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AdBM0PNO6-${idAdBM0PNO6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnAdBM0PNO6},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7h37o\",layoutDependency:layoutDependency,layoutId:\"ZtFF9T0hl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xnrif5\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"aBXgWmiNi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ctp0t\",layoutDependency:layoutDependency,layoutId:\"WLNMF64o9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vozgh0\",layoutDependency:layoutDependency,layoutId:\"AZ8Y3Wr6H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-1nwc55w\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ljsm_0CCG\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15jwtln\",layoutDependency:layoutDependency,layoutId:\"k9QPxIH5e\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16rxprp\",layoutDependency:layoutDependency,layoutId:\"W1snXdXIn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h7vh60-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"a3N2kX92M-container\",nodeId:\"a3N2kX92M\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"a3N2kX92M\",layoutId:\"a3N2kX92M\",serialNumber:toString(saeex7UoWAdBM0PNO6),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mpxd66\",layoutDependency:layoutDependency,layoutId:\"mTiYtAP6L\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sbaoej-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"N0TxAH7_l-container\",nodeId:\"N0TxAH7_l\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"N0TxAH7_l\",layoutId:\"N0TxAH7_l\",serialNumber:toString(saeex7UoWAdBM0PNO6),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"0.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43)))\"},children:\"-\"})}),className:\"framer-1j3gru2\",fonts:[\"FR;InterDisplay-Medium\"],layoutDependency:layoutDependency,layoutId:\"TRWSMqI9i\",style:{\"--extracted-r6o4lv\":\"var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17djgot-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cIOcfcqzT-container\",nodeId:\"cIOcfcqzT\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"cIOcfcqzT\",layoutId:\"cIOcfcqzT\",serialNumber:toString(iAHomRPW9AdBM0PNO6),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Unbound Biology: Cracking the Age Code\"})}),className:\"framer-7szogz\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IlnUZyZmz\",text:O8SkeTdROAdBM0PNO6,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15jyuvp\",layoutDependency:layoutDependency,layoutId:\"VWiodTHtn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-uo1pb5\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kktbsy9dE\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dqpgr6\",layoutDependency:layoutDependency,layoutId:\"hgtQUnVC0\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1568cu3\",layoutDependency:layoutDependency,layoutId:\"vFoZSGz0C\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bm2pi\",layoutDependency:layoutDependency,layoutId:\"ho2K7ksDF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Content\"})}),className:\"framer-glpyq6\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D2hXv_3QS\",text:kFLvvfggDAdBM0PNO6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrb0bw\",layoutDependency:layoutDependency,layoutId:\"VQGzmnmy4\",children:collection?.map(({b9KiniA39:b9KiniA39VQGzmnmy4,eoNm9cDSA:eoNm9cDSAVQGzmnmy4,ER_Czfpu7:ER_Czfpu7VQGzmnmy4,id:idVQGzmnmy4,spH3BjGqf:spH3BjGqfVQGzmnmy4,xWMZXIfAr:xWMZXIfArVQGzmnmy4},index)=>{ER_Czfpu7VQGzmnmy4??=\"\";spH3BjGqfVQGzmnmy4??=\"\";xWMZXIfArVQGzmnmy4??=\"\";b9KiniA39VQGzmnmy4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VQGzmnmy4-${idVQGzmnmy4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7VQGzmnmy4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yh4qpb\",layoutDependency:layoutDependency,layoutId:\"Jo9UH1S3V\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7VQGzmnmy4},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3yh1be-container\",layoutDependency:layoutDependency,layoutId:\"pJVed3f8j-container\",nodeId:\"pJVed3f8j\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArVQGzmnmy4,bmvNKeCaT:toResponsiveImage(eoNm9cDSAVQGzmnmy4),gOyyTkmTp:spH3BjGqfVQGzmnmy4,height:\"100%\",id:\"pJVed3f8j\",layoutId:\"pJVed3f8j\",uKYCERcEt:b9KiniA39VQGzmnmy4,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})})})},idVQGzmnmy4);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9sjhnw\",layoutDependency:layoutDependency,layoutId:\"uLtF5kXCj\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ixerca\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"LSHl3fO9f\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfpjnz\",layoutDependency:layoutDependency,layoutId:\"KiwXuWN7f\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idAdBM0PNO6);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rv971o\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"LJ5JvDVs0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LJ5JvDVs0\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"LJ5JvDVs0\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"LJ5JvDVs0\",name:\"id\",type:\"Identifier\"},{alias:\"auX4IGK7s\",arguments:[{from:{alias:\"auX4IGK7s\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"auX4IGK7s\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"auX4IGK7s\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"auX4IGK7s\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"LJ5JvDVs0\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"LJ5JvDVs0\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A2\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({auX4IGK7s:collection2,iAHomRPW9:iAHomRPW9LJ5JvDVs0,id:idLJ5JvDVs0,kFLvvfggD:kFLvvfggDLJ5JvDVs0,kwa5SmhPn:kwa5SmhPnLJ5JvDVs0,O8SkeTdRO:O8SkeTdROLJ5JvDVs0,saeex7UoW:saeex7UoWLJ5JvDVs0},index3)=>{saeex7UoWLJ5JvDVs0??=0;iAHomRPW9LJ5JvDVs0??=0;O8SkeTdROLJ5JvDVs0??=\"\";kFLvvfggDLJ5JvDVs0??=\"\";kwa5SmhPnLJ5JvDVs0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LJ5JvDVs0-${idLJ5JvDVs0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnLJ5JvDVs0},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10b85wd\",layoutDependency:layoutDependency,layoutId:\"OxbBvqNzw\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vgx5yv\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"NoRIpeVEU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ba2ix3\",layoutDependency:layoutDependency,layoutId:\"FzAx4Zimg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hmg9ha\",layoutDependency:layoutDependency,layoutId:\"Xk5u3p_mL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"02\"})}),className:\"framer-4l2pyh\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WVsuhwVnZ\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tk1yqw\",layoutDependency:layoutDependency,layoutId:\"tfxMYwQiK\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l5rxu4\",layoutDependency:layoutDependency,layoutId:\"QFKaZjVai\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bgxmj2-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ghXz9I_jv-container\",nodeId:\"ghXz9I_jv\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"ghXz9I_jv\",layoutId:\"ghXz9I_jv\",serialNumber:toString(saeex7UoWLJ5JvDVs0),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2vy8pc\",layoutDependency:layoutDependency,layoutId:\"WrnG3P1Um\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3w6frs-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"i2DzMMFPB-container\",nodeId:\"i2DzMMFPB\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"i2DzMMFPB\",layoutId:\"i2DzMMFPB\",serialNumber:toString(saeex7UoWLJ5JvDVs0),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-d6fk5e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SXaEj8pFW\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yt8jz6-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"DZMLFkZ2u-container\",nodeId:\"DZMLFkZ2u\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"DZMLFkZ2u\",layoutId:\"DZMLFkZ2u\",serialNumber:toString(iAHomRPW9LJ5JvDVs0),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"A Rallying Call to Work on Longevity\"})}),className:\"framer-1ltxy21\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ov_FeSht_\",text:O8SkeTdROLJ5JvDVs0,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3gf7x9\",layoutDependency:layoutDependency,layoutId:\"v5gBytaXg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-1hmpaoa\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dbCWMjvnd\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-twgmmu\",layoutDependency:layoutDependency,layoutId:\"Zrdg7_UZP\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u4g4m1\",layoutDependency:layoutDependency,layoutId:\"L8Xfn46qs\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l3upa6\",layoutDependency:layoutDependency,layoutId:\"JnBXy0Axk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"In this keynote, Peter Diamandis, will issue a rallying call to redefine how we think about aging and harness the synergy of biotech, AI, and bold thinking to push the boundaries of healthy lifespan extension. He will draw on insights from The Longevity Insider\u2019s Guide to present transformative solutions poised to disrupt the healthcare landscape. He will spotlight how entrepreneurs, researchers, and investors can join forces to accelerate breakthroughs and overcome the most urgent challenges in aging. By shifting from scarcity to possibility, he will show how collective innovation can usher in an era of unprecedented longevity, redefining what it means to thrive at every stage of life.\"})}),className:\"framer-2aoihi\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kc6N89rPb\",text:kFLvvfggDLJ5JvDVs0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fqee54\",layoutDependency:layoutDependency,layoutId:\"auX4IGK7s\",children:collection2?.map(({b9KiniA39:b9KiniA39auX4IGK7s,eoNm9cDSA:eoNm9cDSAauX4IGK7s,ER_Czfpu7:ER_Czfpu7auX4IGK7s,id:idauX4IGK7s,spH3BjGqf:spH3BjGqfauX4IGK7s,xWMZXIfAr:xWMZXIfArauX4IGK7s},index2)=>{ER_Czfpu7auX4IGK7s??=\"\";spH3BjGqfauX4IGK7s??=\"\";xWMZXIfArauX4IGK7s??=\"\";b9KiniA39auX4IGK7s??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`auX4IGK7s-${idauX4IGK7s}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7auX4IGK7s},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7auX4IGK7s},webPageId:\"BtT6SVenj\"},motionChild:true,nodeId:\"YsiYcfLEH\",scopeId:\"S9ELcZ8Oe\",...addPropertyOverrides({Je9Yzn4I3:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-108onrs framer-1kogrz4\",\"data-framer-name\":\"here\",layoutDependency:layoutDependency,layoutId:\"YsiYcfLEH\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7auX4IGK7s},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17h8b9q-container\",layoutDependency:layoutDependency,layoutId:\"qy8PPTQlO-container\",nodeId:\"qy8PPTQlO\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArauX4IGK7s,bmvNKeCaT:toResponsiveImage(eoNm9cDSAauX4IGK7s),gOyyTkmTp:spH3BjGqfauX4IGK7s,height:\"100%\",id:\"qy8PPTQlO\",layoutId:\"qy8PPTQlO\",uKYCERcEt:b9KiniA39auX4IGK7s,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks1[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})})})})},idauX4IGK7s);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ysbmuj\",layoutDependency:layoutDependency,layoutId:\"T9RASEMYP\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t0imx1\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"EpT_oOkJM\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ji7rle\",layoutDependency:layoutDependency,layoutId:\"Th3Ipf2GT\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idLJ5JvDVs0);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-szge2\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"QjPOVvo6Z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QjPOVvo6Z\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"QjPOVvo6Z\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"QjPOVvo6Z\",name:\"id\",type:\"Identifier\"},{alias:\"bGw5WBCAV\",arguments:[{from:{alias:\"bGw5WBCAV\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bGw5WBCAV\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bGw5WBCAV\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bGw5WBCAV\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"QjPOVvo6Z\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"QjPOVvo6Z\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QjPOVvo6Z\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"QjPOVvo6Z\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A3\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({bGw5WBCAV:collection4,iAHomRPW9:iAHomRPW9QjPOVvo6Z,id:idQjPOVvo6Z,kFLvvfggD:kFLvvfggDQjPOVvo6Z,kwa5SmhPn:kwa5SmhPnQjPOVvo6Z,O8SkeTdRO:O8SkeTdROQjPOVvo6Z,saeex7UoW:saeex7UoWQjPOVvo6Z},index5)=>{saeex7UoWQjPOVvo6Z??=0;iAHomRPW9QjPOVvo6Z??=0;O8SkeTdROQjPOVvo6Z??=\"\";kFLvvfggDQjPOVvo6Z??=\"\";kwa5SmhPnQjPOVvo6Z??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QjPOVvo6Z-${idQjPOVvo6Z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnQjPOVvo6Z},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lj1o4x\",layoutDependency:layoutDependency,layoutId:\"babnMTGbR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d9lct4\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"nbhp4XMTr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ql636\",layoutDependency:layoutDependency,layoutId:\"fAgN754yJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ijptv6\",layoutDependency:layoutDependency,layoutId:\"pes1rwR7p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"03\"})}),className:\"framer-qaaag3\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UqnN7XBuA\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nuynw9\",layoutDependency:layoutDependency,layoutId:\"lmZvzdsw7\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o1cu96\",layoutDependency:layoutDependency,layoutId:\"BNPRCl4bI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13wtl82-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lpAYZZTqj-container\",nodeId:\"lpAYZZTqj\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"lpAYZZTqj\",layoutId:\"lpAYZZTqj\",serialNumber:toString(saeex7UoWQjPOVvo6Z),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12x4h6b\",layoutDependency:layoutDependency,layoutId:\"LrKS3ZJzR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8vodj7-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"JkeFSNSJ3-container\",nodeId:\"JkeFSNSJ3\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"JkeFSNSJ3\",layoutId:\"JkeFSNSJ3\",serialNumber:toString(saeex7UoWQjPOVvo6Z),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-im430s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ULTWSVJ_w\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m07vtg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"XrDnI2Qx8-container\",nodeId:\"XrDnI2Qx8\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"XrDnI2Qx8\",layoutId:\"XrDnI2Qx8\",serialNumber:toString(iAHomRPW9QjPOVvo6Z),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"How Breakthroughs in Cellular Reprogramming Could Transform Aging\"})}),className:\"framer-163fnxu\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xXunrz27e\",text:O8SkeTdROQjPOVvo6Z,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17oqk7l\",layoutDependency:layoutDependency,layoutId:\"QCQQAdlfc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-138wuaz\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AbUEAbdXh\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r25wmx\",layoutDependency:layoutDependency,layoutId:\"ATedQu9GD\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g6c48a\",layoutDependency:layoutDependency,layoutId:\"jh04VQdk3\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8co6qp\",layoutDependency:layoutDependency,layoutId:\"R2FgMD6nu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Epigenetic reprogramming has rapidly become the hottest area in longevity biotech, attracting unprecedented attention and billions in investment in just the last two years. Building on Shinya Yamanaka's Nobel Prize winning iPSC reprogramming, a new wave of biotech startups are now racing to extend the concept to therapeutically rejuvenate the cells in our bodies. This panel brings together the leading researchers and entrepreneurs of this field to explore the science and recent breakthroughs driving the excitement, the challenges of bringing these therapies to market, and the future of a field that could redefine what it means to age.\"})}),className:\"framer-1q26d22\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"myR342ObR\",text:kFLvvfggDQjPOVvo6Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o4o867\",layoutDependency:layoutDependency,layoutId:\"bGw5WBCAV\",children:collection4?.map(({b9KiniA39:b9KiniA39bGw5WBCAV,eoNm9cDSA:eoNm9cDSAbGw5WBCAV,ER_Czfpu7:ER_Czfpu7bGw5WBCAV,id:idbGw5WBCAV,spH3BjGqf:spH3BjGqfbGw5WBCAV,xWMZXIfAr:xWMZXIfArbGw5WBCAV},index4)=>{ER_Czfpu7bGw5WBCAV??=\"\";spH3BjGqfbGw5WBCAV??=\"\";xWMZXIfArbGw5WBCAV??=\"\";b9KiniA39bGw5WBCAV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bGw5WBCAV-${idbGw5WBCAV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7bGw5WBCAV},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14z0xuj\",layoutDependency:layoutDependency,layoutId:\"jIVpoP0ZP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7bGw5WBCAV},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o6mxpx-container\",layoutDependency:layoutDependency,layoutId:\"fL4alxT8w-container\",nodeId:\"fL4alxT8w\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArbGw5WBCAV,bmvNKeCaT:toResponsiveImage(eoNm9cDSAbGw5WBCAV),gOyyTkmTp:spH3BjGqfbGw5WBCAV,height:\"100%\",id:\"fL4alxT8w\",layoutId:\"fL4alxT8w\",uKYCERcEt:b9KiniA39bGw5WBCAV,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks2[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})})})},idbGw5WBCAV);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rshm4i\",layoutDependency:layoutDependency,layoutId:\"dJzEe2nDB\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-edcjf6\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"cGtIk5wuB\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4o4ybf\",layoutDependency:layoutDependency,layoutId:\"XhCkLk7bd\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idQjPOVvo6Z);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5vpw8\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"xXtcbig9O\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xXtcbig9O\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"xXtcbig9O\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"xXtcbig9O\",name:\"id\",type:\"Identifier\"},{alias:\"S8ZZU0ln1\",arguments:[{from:{alias:\"S8ZZU0ln1\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"S8ZZU0ln1\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"S8ZZU0ln1\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"S8ZZU0ln1\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xXtcbig9O\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"xXtcbig9O\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xXtcbig9O\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xXtcbig9O\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A4\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({iAHomRPW9:iAHomRPW9xXtcbig9O,id:idxXtcbig9O,kFLvvfggD:kFLvvfggDxXtcbig9O,kwa5SmhPn:kwa5SmhPnxXtcbig9O,O8SkeTdRO:O8SkeTdROxXtcbig9O,S8ZZU0ln1:collection6,saeex7UoW:saeex7UoWxXtcbig9O},index7)=>{saeex7UoWxXtcbig9O??=0;iAHomRPW9xXtcbig9O??=0;O8SkeTdROxXtcbig9O??=\"\";kFLvvfggDxXtcbig9O??=\"\";kwa5SmhPnxXtcbig9O??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xXtcbig9O-${idxXtcbig9O}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnxXtcbig9O},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bvs5db\",layoutDependency:layoutDependency,layoutId:\"lBRG4zMtS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mt6vv6\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"Ar9WlopdE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-103p9wl\",layoutDependency:layoutDependency,layoutId:\"RpcTdDbZM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1togz8f\",layoutDependency:layoutDependency,layoutId:\"wa60NBdhl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"04\"})}),className:\"framer-12d1gy6\",\"data-framer-name\":\"Session Name\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P1VvDHep6\",onTap:onTap1sa674t,style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ski4v5\",layoutDependency:layoutDependency,layoutId:\"EC_esNcy5\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6sda48\",layoutDependency:layoutDependency,layoutId:\"pVklbR6ZV\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7g1aon-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"NupOMhuO3-container\",nodeId:\"NupOMhuO3\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"NupOMhuO3\",layoutId:\"NupOMhuO3\",serialNumber:toString(saeex7UoWxXtcbig9O),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i1p68v\",layoutDependency:layoutDependency,layoutId:\"CRSa0bduw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-481eik-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"c6tx0oMIZ-container\",nodeId:\"c6tx0oMIZ\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"c6tx0oMIZ\",layoutId:\"c6tx0oMIZ\",serialNumber:toString(saeex7UoWxXtcbig9O),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1hfu96l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eOBjWEbGY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-px65yv-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eAzLmUcPt-container\",nodeId:\"eAzLmUcPt\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"eAzLmUcPt\",layoutId:\"eAzLmUcPt\",serialNumber:toString(iAHomRPW9xXtcbig9O),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Neural Frontier: Pioneering Tomorrow's Brain Technologies\"})}),className:\"framer-1u00hp1\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MgnBQlUr0\",text:O8SkeTdROxXtcbig9O,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18vutq0\",layoutDependency:layoutDependency,layoutId:\"iOp364Myt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-19oa1br\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DcNoqc14n\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ecyxbj\",layoutDependency:layoutDependency,layoutId:\"QNARfgWC2\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvp42i\",layoutDependency:layoutDependency,layoutId:\"lvpi_yt37\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v54g8d\",layoutDependency:layoutDependency,layoutId:\"ujvQBGMSp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"The stuff of science fiction is becoming reality! These scientist and entrepreneurs are tackling the next generation of brain connectomics, advanced brain-computer interfaces, neuromodulation, and stem cell replacement. These technologies aim to treat specific disorders today, but will enable a path for us to become cyborgs and live longer.\"})}),className:\"framer-jmfn43\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bDqr8mUHq\",text:kFLvvfggDxXtcbig9O,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qxv4yg\",layoutDependency:layoutDependency,layoutId:\"S8ZZU0ln1\",children:collection6?.map(({b9KiniA39:b9KiniA39S8ZZU0ln1,eoNm9cDSA:eoNm9cDSAS8ZZU0ln1,ER_Czfpu7:ER_Czfpu7S8ZZU0ln1,id:idS8ZZU0ln1,spH3BjGqf:spH3BjGqfS8ZZU0ln1,xWMZXIfAr:xWMZXIfArS8ZZU0ln1},index6)=>{ER_Czfpu7S8ZZU0ln1??=\"\";spH3BjGqfS8ZZU0ln1??=\"\";xWMZXIfArS8ZZU0ln1??=\"\";b9KiniA39S8ZZU0ln1??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`S8ZZU0ln1-${idS8ZZU0ln1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7S8ZZU0ln1},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nw2ukf\",layoutDependency:layoutDependency,layoutId:\"bcgAhMitr\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7S8ZZU0ln1},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8uz25q-container\",layoutDependency:layoutDependency,layoutId:\"yfozAuRpZ-container\",nodeId:\"yfozAuRpZ\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArS8ZZU0ln1,bmvNKeCaT:toResponsiveImage(eoNm9cDSAS8ZZU0ln1),gOyyTkmTp:spH3BjGqfS8ZZU0ln1,height:\"100%\",id:\"yfozAuRpZ\",layoutId:\"yfozAuRpZ\",uKYCERcEt:b9KiniA39S8ZZU0ln1,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks3[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})})})},idS8ZZU0ln1);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rabd20\",layoutDependency:layoutDependency,layoutId:\"qrlQrvtZS\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dqm5bc\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"VcgEiHY4R\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mew18i\",layoutDependency:layoutDependency,layoutId:\"G9Jrh9Kzf\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idxXtcbig9O);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c7o0i4\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"X39X9_SQS\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"X39X9_SQS\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"X39X9_SQS\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"X39X9_SQS\",name:\"id\",type:\"Identifier\"},{alias:\"jFiydSx3E\",arguments:[{from:{alias:\"jFiydSx3E\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"jFiydSx3E\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"jFiydSx3E\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"jFiydSx3E\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"X39X9_SQS\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"X39X9_SQS\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X39X9_SQS\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"X39X9_SQS\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A5\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({iAHomRPW9:iAHomRPW9X39X9_SQS,id:idX39X9_SQS,jFiydSx3E:collection8,kFLvvfggD:kFLvvfggDX39X9_SQS,kwa5SmhPn:kwa5SmhPnX39X9_SQS,O8SkeTdRO:O8SkeTdROX39X9_SQS,saeex7UoW:saeex7UoWX39X9_SQS},index9)=>{saeex7UoWX39X9_SQS??=0;iAHomRPW9X39X9_SQS??=0;O8SkeTdROX39X9_SQS??=\"\";kFLvvfggDX39X9_SQS??=\"\";kwa5SmhPnX39X9_SQS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`X39X9_SQS-${idX39X9_SQS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnX39X9_SQS},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-182587i\",layoutDependency:layoutDependency,layoutId:\"orLPCGAzS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o8oga1\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"MZaxg124k\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-26av9x\",layoutDependency:layoutDependency,layoutId:\"IiTiTCoEC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-etbqel\",layoutDependency:layoutDependency,layoutId:\"b1qJIP43C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"05\"})}),className:\"framer-1xukvx4\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rOECCQUy6\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rzkhhg\",layoutDependency:layoutDependency,layoutId:\"FVzcwRijg\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jajeor\",layoutDependency:layoutDependency,layoutId:\"uA9mAE177\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h2eu7a-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"HouQ015Hl-container\",nodeId:\"HouQ015Hl\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"HouQ015Hl\",layoutId:\"HouQ015Hl\",serialNumber:toString(saeex7UoWX39X9_SQS),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-156g12a\",layoutDependency:layoutDependency,layoutId:\"nEfV5pzZq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7w0obn-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KQqqfDAf2-container\",nodeId:\"KQqqfDAf2\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"KQqqfDAf2\",layoutId:\"KQqqfDAf2\",serialNumber:toString(saeex7UoWX39X9_SQS),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-sabwgd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vUIZ0U7t5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16zjvjt-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"BruRzTGFe-container\",nodeId:\"BruRzTGFe\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"BruRzTGFe\",layoutId:\"BruRzTGFe\",serialNumber:toString(iAHomRPW9X39X9_SQS),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Lightning Talk Presented by Generation Lab\"})}),className:\"framer-z311u4\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XhLNrgRg7\",text:O8SkeTdROX39X9_SQS,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1htblaq\",layoutDependency:layoutDependency,layoutId:\"oFZPhZgb5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-1hb6s1p\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HydwPwvaT\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hsael\",layoutDependency:layoutDependency,layoutId:\"m86jBlHIg\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o0ssub\",layoutDependency:layoutDependency,layoutId:\"SEpyUGA2o\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ad3o6w\",layoutDependency:layoutDependency,layoutId:\"R56vLS6JA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Content\"})}),className:\"framer-gza7lg\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S9ImEgeVP\",text:kFLvvfggDX39X9_SQS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oeal8h\",layoutDependency:layoutDependency,layoutId:\"jFiydSx3E\",children:collection8?.map(({b9KiniA39:b9KiniA39jFiydSx3E,eoNm9cDSA:eoNm9cDSAjFiydSx3E,ER_Czfpu7:ER_Czfpu7jFiydSx3E,id:idjFiydSx3E,spH3BjGqf:spH3BjGqfjFiydSx3E,xWMZXIfAr:xWMZXIfArjFiydSx3E},index8)=>{ER_Czfpu7jFiydSx3E??=\"\";spH3BjGqfjFiydSx3E??=\"\";xWMZXIfArjFiydSx3E??=\"\";b9KiniA39jFiydSx3E??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jFiydSx3E-${idjFiydSx3E}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7jFiydSx3E},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1416q4s\",layoutDependency:layoutDependency,layoutId:\"clNiCSkIj\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7jFiydSx3E},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ch1kz5-container\",layoutDependency:layoutDependency,layoutId:\"XnVxZPMLs-container\",nodeId:\"XnVxZPMLs\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArjFiydSx3E,bmvNKeCaT:toResponsiveImage(eoNm9cDSAjFiydSx3E),gOyyTkmTp:spH3BjGqfjFiydSx3E,height:\"100%\",id:\"XnVxZPMLs\",layoutId:\"XnVxZPMLs\",uKYCERcEt:b9KiniA39jFiydSx3E,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks4[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})})})},idjFiydSx3E);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wfx3up\",layoutDependency:layoutDependency,layoutId:\"miKXNvTjd\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bw42l7\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"Ip0C1ElEw\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nz56vp\",layoutDependency:layoutDependency,layoutId:\"EwRDj2Fy8\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idX39X9_SQS);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b8c1ec\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"wbEIC3OA2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wbEIC3OA2\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"wbEIC3OA2\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"wbEIC3OA2\",name:\"id\",type:\"Identifier\"},{alias:\"Q6OCiQJf6\",arguments:[{from:{alias:\"Q6OCiQJf6\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Q6OCiQJf6\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Q6OCiQJf6\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q6OCiQJf6\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"wbEIC3OA2\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"wbEIC3OA2\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"wbEIC3OA2\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"wbEIC3OA2\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A6\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({iAHomRPW9:iAHomRPW9wbEIC3OA2,id:idwbEIC3OA2,kFLvvfggD:kFLvvfggDwbEIC3OA2,kwa5SmhPn:kwa5SmhPnwbEIC3OA2,O8SkeTdRO:O8SkeTdROwbEIC3OA2,Q6OCiQJf6:collection10,saeex7UoW:saeex7UoWwbEIC3OA2},index11)=>{saeex7UoWwbEIC3OA2??=0;iAHomRPW9wbEIC3OA2??=0;O8SkeTdROwbEIC3OA2??=\"\";kFLvvfggDwbEIC3OA2??=\"\";kwa5SmhPnwbEIC3OA2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wbEIC3OA2-${idwbEIC3OA2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnwbEIC3OA2},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cp5nkm\",layoutDependency:layoutDependency,layoutId:\"ENEVYauWl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zooqeo\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"FNU9ru4fH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fiaeag\",layoutDependency:layoutDependency,layoutId:\"WIFgV8HAX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19fpdak\",layoutDependency:layoutDependency,layoutId:\"moG50igYQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"06\"})}),className:\"framer-811vtp\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bGOHkz9c5\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dcp57a\",layoutDependency:layoutDependency,layoutId:\"SGhE_Beue\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pq12dz\",layoutDependency:layoutDependency,layoutId:\"HBhVVgaIm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16idxkg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"stpb1AS8s-container\",nodeId:\"stpb1AS8s\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"stpb1AS8s\",layoutId:\"stpb1AS8s\",serialNumber:toString(saeex7UoWwbEIC3OA2),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1phpz\",layoutDependency:layoutDependency,layoutId:\"olc6UzM56\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p9s3d0-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KWHECYoyl-container\",nodeId:\"KWHECYoyl\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"KWHECYoyl\",layoutId:\"KWHECYoyl\",serialNumber:toString(saeex7UoWwbEIC3OA2),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-z3331k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f0urTyR1q\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jdk3vf-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"h35UPAYxe-container\",nodeId:\"h35UPAYxe\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"h35UPAYxe\",layoutId:\"h35UPAYxe\",serialNumber:toString(iAHomRPW9wbEIC3OA2),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Next-Gen Medicine: AI-Powered Advances Reshaping Human Therapeutics\"})}),className:\"framer-1pl2enl\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nWsIv3szn\",text:O8SkeTdROwbEIC3OA2,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15zg6oq\",layoutDependency:layoutDependency,layoutId:\"nxmGQ72oS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-lapgff\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XHjideapv\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ktfxok\",layoutDependency:layoutDependency,layoutId:\"wOvaqypd7\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lasfg2\",layoutDependency:layoutDependency,layoutId:\"iN1dm23PY\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xxn42t\",layoutDependency:layoutDependency,layoutId:\"QHotcLE20\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Dive into the cutting-edge today, not just the promises of tomorrow. This dynamic breakout session features biotech visionaries actively leveraging machine learning and AI to transform the engineering of human therapeutics. Hear firsthand from industry pioneers pushing the boundaries\u2014from accelerating drug target discovery to streamlining clinical development pipelines. Learn how advanced analytics and big data are already enhancing personalized medicine, boosting clinical success rates, and rapidly reshaping the future landscape of healthcare. Don't miss this inside look at the real-world innovations redefining what's possible in therapeutic discovery and precision medicine.\"})}),className:\"framer-zffemg\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HzwT_CJU_\",text:kFLvvfggDwbEIC3OA2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ys4dwe\",layoutDependency:layoutDependency,layoutId:\"Q6OCiQJf6\",children:collection10?.map(({b9KiniA39:b9KiniA39Q6OCiQJf6,eoNm9cDSA:eoNm9cDSAQ6OCiQJf6,ER_Czfpu7:ER_Czfpu7Q6OCiQJf6,id:idQ6OCiQJf6,spH3BjGqf:spH3BjGqfQ6OCiQJf6,xWMZXIfAr:xWMZXIfArQ6OCiQJf6},index10)=>{ER_Czfpu7Q6OCiQJf6??=\"\";spH3BjGqfQ6OCiQJf6??=\"\";xWMZXIfArQ6OCiQJf6??=\"\";b9KiniA39Q6OCiQJf6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q6OCiQJf6-${idQ6OCiQJf6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7Q6OCiQJf6},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-107gy9t\",layoutDependency:layoutDependency,layoutId:\"DN9QzkUWL\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7Q6OCiQJf6},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g53g9g-container\",layoutDependency:layoutDependency,layoutId:\"HBTrc8Gt2-container\",nodeId:\"HBTrc8Gt2\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArQ6OCiQJf6,bmvNKeCaT:toResponsiveImage(eoNm9cDSAQ6OCiQJf6),gOyyTkmTp:spH3BjGqfQ6OCiQJf6,height:\"100%\",id:\"HBTrc8Gt2\",layoutId:\"HBTrc8Gt2\",uKYCERcEt:b9KiniA39Q6OCiQJf6,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks5[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})})})},idQ6OCiQJf6);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12caik4\",layoutDependency:layoutDependency,layoutId:\"SoN5GYDIl\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vkc2nt\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"r9xVP2sH5\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12o0y12\",layoutDependency:layoutDependency,layoutId:\"GL5p5OV8e\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idwbEIC3OA2);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zwaw6h\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"KOdFzXAZr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KOdFzXAZr\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"KOdFzXAZr\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"KOdFzXAZr\",name:\"id\",type:\"Identifier\"},{alias:\"XqOD2fSHQ\",arguments:[{from:{alias:\"XqOD2fSHQ\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"XqOD2fSHQ\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"XqOD2fSHQ\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"XqOD2fSHQ\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"KOdFzXAZr\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"KOdFzXAZr\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A7\"},type:\"BinaryOperation\"}},children:(collection13,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({iAHomRPW9:iAHomRPW9KOdFzXAZr,id:idKOdFzXAZr,kFLvvfggD:kFLvvfggDKOdFzXAZr,kwa5SmhPn:kwa5SmhPnKOdFzXAZr,O8SkeTdRO:O8SkeTdROKOdFzXAZr,saeex7UoW:saeex7UoWKOdFzXAZr,XqOD2fSHQ:collection12},index13)=>{saeex7UoWKOdFzXAZr??=0;iAHomRPW9KOdFzXAZr??=0;O8SkeTdROKOdFzXAZr??=\"\";kFLvvfggDKOdFzXAZr??=\"\";kwa5SmhPnKOdFzXAZr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KOdFzXAZr-${idKOdFzXAZr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnKOdFzXAZr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ibwm29\",layoutDependency:layoutDependency,layoutId:\"inSU_C9C4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dhhve3\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"JUe2_qHJ4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lp6ccr\",layoutDependency:layoutDependency,layoutId:\"oJHxQyXrb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2ietx\",layoutDependency:layoutDependency,layoutId:\"tgxZ3QJl2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"07\"})}),className:\"framer-m40zee\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ws_DpHi6I\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfd89e\",layoutDependency:layoutDependency,layoutId:\"Tqi6GUX5D\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kihubh\",layoutDependency:layoutDependency,layoutId:\"tAAtXyqDX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nz4vle-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"yVSy_p4jL-container\",nodeId:\"yVSy_p4jL\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"yVSy_p4jL\",layoutId:\"yVSy_p4jL\",serialNumber:toString(saeex7UoWKOdFzXAZr),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g4visg\",layoutDependency:layoutDependency,layoutId:\"lu5z2u9qN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fhvoo1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"d4g8irsLA-container\",nodeId:\"d4g8irsLA\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"d4g8irsLA\",layoutId:\"d4g8irsLA\",serialNumber:toString(saeex7UoWKOdFzXAZr),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1rll1z4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QjraCVYmb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lk5azo-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"vUovRF1fD-container\",nodeId:\"vUovRF1fD\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"vUovRF1fD\",layoutId:\"vUovRF1fD\",serialNumber:toString(iAHomRPW9KOdFzXAZr),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Space Therapies: Accelerating Biotech Solutions for Health Beyond Earth\"})}),className:\"framer-15wuz31\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VYSu7JUxW\",text:O8SkeTdROKOdFzXAZr,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ncwc5k\",layoutDependency:layoutDependency,layoutId:\"hJ3LBj0MX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-frnx7k\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"roQtk3aLy\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9mglnl\",layoutDependency:layoutDependency,layoutId:\"U6pC2HF6H\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ie00g4\",layoutDependency:layoutDependency,layoutId:\"xIviB1aBK\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wbtubc\",layoutDependency:layoutDependency,layoutId:\"kDs09GIpk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Space is among the harshest and least hospitable environments for humans. Every human biological system is affected by the space environment. The biological stress has a deleterious impact on health and physical capabilities, and the extreme conditions and isolation take a significant toll on mental performance and behavior. By 2040, hundreds of people will be in space at any given time, and more than 80% of those are predicted to be private citizens; for the reliability, safety, health, and enjoyment of those private participants, new solutions and therapeutics are needed to maintain health and wellbeing.\"})}),className:\"framer-1sza1s6\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nfNKwAqqi\",text:kFLvvfggDKOdFzXAZr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1arrbme\",layoutDependency:layoutDependency,layoutId:\"XqOD2fSHQ\",children:collection12?.map(({b9KiniA39:b9KiniA39XqOD2fSHQ,eoNm9cDSA:eoNm9cDSAXqOD2fSHQ,ER_Czfpu7:ER_Czfpu7XqOD2fSHQ,id:idXqOD2fSHQ,spH3BjGqf:spH3BjGqfXqOD2fSHQ,xWMZXIfAr:xWMZXIfArXqOD2fSHQ},index12)=>{ER_Czfpu7XqOD2fSHQ??=\"\";spH3BjGqfXqOD2fSHQ??=\"\";xWMZXIfArXqOD2fSHQ??=\"\";b9KiniA39XqOD2fSHQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XqOD2fSHQ-${idXqOD2fSHQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7XqOD2fSHQ},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qrsm3\",layoutDependency:layoutDependency,layoutId:\"YQyTgCFxy\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7XqOD2fSHQ},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-thpp3j-container\",layoutDependency:layoutDependency,layoutId:\"kCfVCOzG9-container\",nodeId:\"kCfVCOzG9\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArXqOD2fSHQ,bmvNKeCaT:toResponsiveImage(eoNm9cDSAXqOD2fSHQ),gOyyTkmTp:spH3BjGqfXqOD2fSHQ,height:\"100%\",id:\"kCfVCOzG9\",layoutId:\"kCfVCOzG9\",uKYCERcEt:b9KiniA39XqOD2fSHQ,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks6[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})})})},idXqOD2fSHQ);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h6pfkv\",layoutDependency:layoutDependency,layoutId:\"dsAEHpTaS\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9jfvr\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"IW1lXArKl\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utwp6i\",layoutDependency:layoutDependency,layoutId:\"w4Ppc1SQl\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idKOdFzXAZr);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z33idx\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"bet53hnsw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bet53hnsw\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"bet53hnsw\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"bet53hnsw\",name:\"id\",type:\"Identifier\"},{alias:\"Pw_dWDUpn\",arguments:[{from:{alias:\"Pw_dWDUpn\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Pw_dWDUpn\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Pw_dWDUpn\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Pw_dWDUpn\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"bet53hnsw\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"bet53hnsw\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"bet53hnsw\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"bet53hnsw\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection15,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection15?.map(({iAHomRPW9:iAHomRPW9bet53hnsw,id:idbet53hnsw,kFLvvfggD:kFLvvfggDbet53hnsw,kwa5SmhPn:kwa5SmhPnbet53hnsw,O8SkeTdRO:O8SkeTdRObet53hnsw,Pw_dWDUpn:collection14,saeex7UoW:saeex7UoWbet53hnsw},index15)=>{saeex7UoWbet53hnsw??=0;iAHomRPW9bet53hnsw??=0;O8SkeTdRObet53hnsw??=\"\";kFLvvfggDbet53hnsw??=\"\";kwa5SmhPnbet53hnsw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bet53hnsw-${idbet53hnsw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnbet53hnsw},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j0wch5\",layoutDependency:layoutDependency,layoutId:\"AtRpStyMz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-23bsgl\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"zWFoVyWyy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g3shk3\",layoutDependency:layoutDependency,layoutId:\"OhjHMdFQE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3j7ry\",layoutDependency:layoutDependency,layoutId:\"K2hbPwNVD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"08\"})}),className:\"framer-4ifiys\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E_Rffswxc\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17i367l\",layoutDependency:layoutDependency,layoutId:\"zjNE9yCnk\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oyyoyk\",layoutDependency:layoutDependency,layoutId:\"fBeyblFqO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k51no2-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"s7i2k60tz-container\",nodeId:\"s7i2k60tz\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"s7i2k60tz\",layoutId:\"s7i2k60tz\",serialNumber:toString(saeex7UoWbet53hnsw),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y8pfyf\",layoutDependency:layoutDependency,layoutId:\"FofRJ5DtU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7y6m23-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"JlIIUsjho-container\",nodeId:\"JlIIUsjho\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"JlIIUsjho\",layoutId:\"JlIIUsjho\",serialNumber:toString(saeex7UoWbet53hnsw),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1e1qaze\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Uj2yhSLND\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zfvg5c-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eNKeJkDLc-container\",nodeId:\"eNKeJkDLc\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"eNKeJkDLc\",layoutId:\"eNKeJkDLc\",serialNumber:toString(iAHomRPW9bet53hnsw),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Synthetic Biology Frontiers in Transplantation: Engineering Durable Therapeutic Solutions\"})}),className:\"framer-8du34g\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GNN6kGvgX\",text:O8SkeTdRObet53hnsw,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-schtw2\",layoutDependency:layoutDependency,layoutId:\"JDTKqKGFd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-1n3gjvt\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DOux5KS1d\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jiap4b\",layoutDependency:layoutDependency,layoutId:\"oSeEW74dx\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pflucs\",layoutDependency:layoutDependency,layoutId:\"napu8N4UR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5u8fdz\",layoutDependency:layoutDependency,layoutId:\"RvorEXE6L\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"This cutting-edge session explores the intersection of synthetic biology, materials science, and transplantation medicine to address key challenges in cell, tissue, and organ transplantation. We'll examine innovative approaches to enhance transplant durability, improve integration with host systems, and advance the field of regenerative medicine. Examples include: genetically engineered cells for enhanced survival, 3d-printed scaffolds and organoids, advances in xenotransplantation, and others.\"})}),className:\"framer-1ylgj2t\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dAGMolisS\",text:kFLvvfggDbet53hnsw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8he3c\",layoutDependency:layoutDependency,layoutId:\"Pw_dWDUpn\",children:collection14?.map(({b9KiniA39:b9KiniA39Pw_dWDUpn,eoNm9cDSA:eoNm9cDSAPw_dWDUpn,ER_Czfpu7:ER_Czfpu7Pw_dWDUpn,id:idPw_dWDUpn,spH3BjGqf:spH3BjGqfPw_dWDUpn,xWMZXIfAr:xWMZXIfArPw_dWDUpn},index14)=>{ER_Czfpu7Pw_dWDUpn??=\"\";spH3BjGqfPw_dWDUpn??=\"\";xWMZXIfArPw_dWDUpn??=\"\";b9KiniA39Pw_dWDUpn??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Pw_dWDUpn-${idPw_dWDUpn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7Pw_dWDUpn},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-eh23c\",layoutDependency:layoutDependency,layoutId:\"AXEhHDscQ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7Pw_dWDUpn},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uev57v-container\",layoutDependency:layoutDependency,layoutId:\"jlqzNYsMF-container\",nodeId:\"jlqzNYsMF\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArPw_dWDUpn,bmvNKeCaT:toResponsiveImage(eoNm9cDSAPw_dWDUpn),gOyyTkmTp:spH3BjGqfPw_dWDUpn,height:\"100%\",id:\"jlqzNYsMF\",layoutId:\"jlqzNYsMF\",uKYCERcEt:b9KiniA39Pw_dWDUpn,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks7[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})})})},idPw_dWDUpn);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uvqz40\",layoutDependency:layoutDependency,layoutId:\"aZ1GcxZ8B\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kcajt9\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"cYQBLWtyl\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gk5xuc\",layoutDependency:layoutDependency,layoutId:\"iGcYn8Zm4\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idbet53hnsw);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-znewc3\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"AUS8mZTOI\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AUS8mZTOI\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AUS8mZTOI\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"AUS8mZTOI\",name:\"id\",type:\"Identifier\"},{alias:\"Q1nDE0c_n\",arguments:[{from:{alias:\"Q1nDE0c_n\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"Q1nDE0c_n\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"Q1nDE0c_n\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Q1nDE0c_n\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"AUS8mZTOI\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"AUS8mZTOI\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"AUS8mZTOI\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"AUS8mZTOI\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A9\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection17,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection17?.map(({iAHomRPW9:iAHomRPW9AUS8mZTOI,id:idAUS8mZTOI,kFLvvfggD:kFLvvfggDAUS8mZTOI,kwa5SmhPn:kwa5SmhPnAUS8mZTOI,O8SkeTdRO:O8SkeTdROAUS8mZTOI,Q1nDE0c_n:collection16,saeex7UoW:saeex7UoWAUS8mZTOI},index17)=>{saeex7UoWAUS8mZTOI??=0;iAHomRPW9AUS8mZTOI??=0;O8SkeTdROAUS8mZTOI??=\"\";kFLvvfggDAUS8mZTOI??=\"\";kwa5SmhPnAUS8mZTOI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AUS8mZTOI-${idAUS8mZTOI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnAUS8mZTOI},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cgkp2h\",layoutDependency:layoutDependency,layoutId:\"rxSYyqbvd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u78rb4\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"yIwbyw5WZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dt700d\",layoutDependency:layoutDependency,layoutId:\"IESeagzro\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12okwlu\",layoutDependency:layoutDependency,layoutId:\"yogu8VzPP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"09\"})}),className:\"framer-mkib4b\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NeesPQccl\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eu51pz\",layoutDependency:layoutDependency,layoutId:\"wt553wono\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-103i2n3\",layoutDependency:layoutDependency,layoutId:\"wyzuf3fz_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1majpal-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"YZpkST82I-container\",nodeId:\"YZpkST82I\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"YZpkST82I\",layoutId:\"YZpkST82I\",serialNumber:toString(saeex7UoWAUS8mZTOI),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8w4et\",layoutDependency:layoutDependency,layoutId:\"Phyr73mqh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18y0tq-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"TZzWcDgOl-container\",nodeId:\"TZzWcDgOl\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"TZzWcDgOl\",layoutId:\"TZzWcDgOl\",serialNumber:toString(saeex7UoWAUS8mZTOI),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1wx6mwv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cN7Gds2AK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m6es12-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"EiE9MNAeN-container\",nodeId:\"EiE9MNAeN\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"EiE9MNAeN\",layoutId:\"EiE9MNAeN\",serialNumber:toString(iAHomRPW9AUS8mZTOI),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Bio/acc and Biohack: The Science Behind the Hype\"})}),className:\"framer-e6w3nc\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RnFUYLsEV\",text:O8SkeTdROAUS8mZTOI,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ik9ic\",layoutDependency:layoutDependency,layoutId:\"FjatzeG55\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-cd20oa\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nFvuFs4Xh\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zmz095\",layoutDependency:layoutDependency,layoutId:\"T_m7GoHK2\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14l1s46\",layoutDependency:layoutDependency,layoutId:\"Xi0FmcBMq\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1skprhh\",layoutDependency:layoutDependency,layoutId:\"dX6f1cWkG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Bio/acc and Biohacking have both become popular movements on Twitter of late. This session brings together people who 'hype' them up and people who temper these sectors with science and point out flawed approaches. Get ready for a spicy conversation.\"})}),className:\"framer-1w15dr9\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NF8jNkKb9\",text:kFLvvfggDAUS8mZTOI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvr4d0\",layoutDependency:layoutDependency,layoutId:\"Q1nDE0c_n\",children:collection16?.map(({b9KiniA39:b9KiniA39Q1nDE0c_n,eoNm9cDSA:eoNm9cDSAQ1nDE0c_n,ER_Czfpu7:ER_Czfpu7Q1nDE0c_n,id:idQ1nDE0c_n,spH3BjGqf:spH3BjGqfQ1nDE0c_n,xWMZXIfAr:xWMZXIfArQ1nDE0c_n},index16)=>{ER_Czfpu7Q1nDE0c_n??=\"\";spH3BjGqfQ1nDE0c_n??=\"\";xWMZXIfArQ1nDE0c_n??=\"\";b9KiniA39Q1nDE0c_n??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q1nDE0c_n-${idQ1nDE0c_n}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7Q1nDE0c_n},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-cgmqvq\",layoutDependency:layoutDependency,layoutId:\"ltgs7ZQW5\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7Q1nDE0c_n},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x8xbqb-container\",layoutDependency:layoutDependency,layoutId:\"xIHgSyK7r-container\",nodeId:\"xIHgSyK7r\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArQ1nDE0c_n,bmvNKeCaT:toResponsiveImage(eoNm9cDSAQ1nDE0c_n),gOyyTkmTp:spH3BjGqfQ1nDE0c_n,height:\"100%\",id:\"xIHgSyK7r\",layoutId:\"xIHgSyK7r\",uKYCERcEt:b9KiniA39Q1nDE0c_n,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks8[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})})})})},idQ1nDE0c_n);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b8x38f\",layoutDependency:layoutDependency,layoutId:\"s0uLPPdMo\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-189ivq2\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"mgpG59vm9\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qzg1ky\",layoutDependency:layoutDependency,layoutId:\"NqPTBOVm5\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idAUS8mZTOI);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ji2mxk\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"hGcKB5EOx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hGcKB5EOx\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"hGcKB5EOx\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"hGcKB5EOx\",name:\"id\",type:\"Identifier\"},{alias:\"SdM2uChXF\",arguments:[{from:{alias:\"SdM2uChXF\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"SdM2uChXF\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"SdM2uChXF\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"SdM2uChXF\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hGcKB5EOx\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"hGcKB5EOx\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hGcKB5EOx\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hGcKB5EOx\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A10\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection19,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection19?.map(({iAHomRPW9:iAHomRPW9hGcKB5EOx,id:idhGcKB5EOx,kFLvvfggD:kFLvvfggDhGcKB5EOx,kwa5SmhPn:kwa5SmhPnhGcKB5EOx,O8SkeTdRO:O8SkeTdROhGcKB5EOx,saeex7UoW:saeex7UoWhGcKB5EOx,SdM2uChXF:collection18},index19)=>{saeex7UoWhGcKB5EOx??=0;iAHomRPW9hGcKB5EOx??=0;O8SkeTdROhGcKB5EOx??=\"\";kFLvvfggDhGcKB5EOx??=\"\";kwa5SmhPnhGcKB5EOx??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hGcKB5EOx-${idhGcKB5EOx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnhGcKB5EOx},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1vgkd\",layoutDependency:layoutDependency,layoutId:\"UnJlmdIRg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s95upt\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"U1r9hU7kc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1utwtox\",layoutDependency:layoutDependency,layoutId:\"dYXDD0R89\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17592ev\",layoutDependency:layoutDependency,layoutId:\"GcTdaZl4P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"10\"})}),className:\"framer-13p08o\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wqoesrt9f\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rfqp1a\",layoutDependency:layoutDependency,layoutId:\"MrJczPz6N\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cn0amu\",layoutDependency:layoutDependency,layoutId:\"uNnSSpgpF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q7pjru-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"HCz3E2Jnz-container\",nodeId:\"HCz3E2Jnz\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"HCz3E2Jnz\",layoutId:\"HCz3E2Jnz\",serialNumber:toString(saeex7UoWhGcKB5EOx),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1phemhm\",layoutDependency:layoutDependency,layoutId:\"V11Cf1Zbb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kmikp6-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ckXDTy0SL-container\",nodeId:\"ckXDTy0SL\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"ckXDTy0SL\",layoutId:\"ckXDTy0SL\",serialNumber:toString(saeex7UoWhGcKB5EOx),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-p0zt75\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kWoKd53FF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tsswjo-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"TVRAKBNFZ-container\",nodeId:\"TVRAKBNFZ\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"TVRAKBNFZ\",layoutId:\"TVRAKBNFZ\",serialNumber:toString(iAHomRPW9hGcKB5EOx),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Living Future: How SynBio, Genomics, and Regenerative Medicine are Transforming Human Health\"})}),className:\"framer-1gd3d7a\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zx65Ff5qR\",text:O8SkeTdROhGcKB5EOx,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ouv43g\",layoutDependency:layoutDependency,layoutId:\"H2_bZeWWB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-dsp9i\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iESNaCNT_\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19pi0x4\",layoutDependency:layoutDependency,layoutId:\"Jicqweuvp\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ixl1i\",layoutDependency:layoutDependency,layoutId:\"EfzOy0x8i\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61ru3o\",layoutDependency:layoutDependency,layoutId:\"A_b4rJFg5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Synthetic biology is blurring the lines between biology and technology, unlocking breakthroughs in regenerative medicine, biofabrication, and personalized healthcare. This panel brings together leading innovators who are shaping the future of human health. Join this session to explore the role of multidisciplinary technologies in healthcare. Understand how genomics, synthetic biology, and regenerative medicine are personalizing treatment and examine the ethical and practical challenges in deploying next-gen biotechnologies.\"})}),className:\"framer-jzt3w4\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XN9qR7hSb\",text:kFLvvfggDhGcKB5EOx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p69w3g\",layoutDependency:layoutDependency,layoutId:\"SdM2uChXF\",children:collection18?.map(({b9KiniA39:b9KiniA39SdM2uChXF,eoNm9cDSA:eoNm9cDSASdM2uChXF,ER_Czfpu7:ER_Czfpu7SdM2uChXF,id:idSdM2uChXF,spH3BjGqf:spH3BjGqfSdM2uChXF,xWMZXIfAr:xWMZXIfArSdM2uChXF},index18)=>{ER_Czfpu7SdM2uChXF??=\"\";spH3BjGqfSdM2uChXF??=\"\";xWMZXIfArSdM2uChXF??=\"\";b9KiniA39SdM2uChXF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SdM2uChXF-${idSdM2uChXF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7SdM2uChXF},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1taip60\",layoutDependency:layoutDependency,layoutId:\"wD5MbgPKC\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7SdM2uChXF},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d27tq8-container\",layoutDependency:layoutDependency,layoutId:\"Ix2c91SW4-container\",nodeId:\"Ix2c91SW4\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArSdM2uChXF,bmvNKeCaT:toResponsiveImage(eoNm9cDSASdM2uChXF),gOyyTkmTp:spH3BjGqfSdM2uChXF,height:\"100%\",id:\"Ix2c91SW4\",layoutId:\"Ix2c91SW4\",uKYCERcEt:b9KiniA39SdM2uChXF,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks9[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})})})})},idSdM2uChXF);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-62iwoo\",layoutDependency:layoutDependency,layoutId:\"bAmTnr8_5\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jge4ng\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"R7ZzpnMaw\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vamcs1\",layoutDependency:layoutDependency,layoutId:\"NkqWZ76N1\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idhGcKB5EOx);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5drmyu\",\"data-framer-name\":\"11\",layoutDependency:layoutDependency,layoutId:\"ktbkv0bVb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ktbkv0bVb\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ktbkv0bVb\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"ktbkv0bVb\",name:\"id\",type:\"Identifier\"},{alias:\"DNCDuCiBW\",arguments:[{from:{alias:\"DNCDuCiBW\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"DNCDuCiBW\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"DNCDuCiBW\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"DNCDuCiBW\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ktbkv0bVb\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"ktbkv0bVb\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A11\"},type:\"BinaryOperation\"}},children:(collection21,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection21?.map(({DNCDuCiBW:collection20,iAHomRPW9:iAHomRPW9ktbkv0bVb,id:idktbkv0bVb,kFLvvfggD:kFLvvfggDktbkv0bVb,kwa5SmhPn:kwa5SmhPnktbkv0bVb,O8SkeTdRO:O8SkeTdROktbkv0bVb,saeex7UoW:saeex7UoWktbkv0bVb},index21)=>{saeex7UoWktbkv0bVb??=0;iAHomRPW9ktbkv0bVb??=0;O8SkeTdROktbkv0bVb??=\"\";kFLvvfggDktbkv0bVb??=\"\";kwa5SmhPnktbkv0bVb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ktbkv0bVb-${idktbkv0bVb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnktbkv0bVb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zz3hed\",layoutDependency:layoutDependency,layoutId:\"WvNDMSsZb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qgfjt6\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"kZhQXjumZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nvc6m6\",layoutDependency:layoutDependency,layoutId:\"YiIb8K9ge\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z6ywvz\",layoutDependency:layoutDependency,layoutId:\"LURNqSkL0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"11\"})}),className:\"framer-8il74p\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zaG_VqghK\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a33m09\",layoutDependency:layoutDependency,layoutId:\"axLDo7fgU\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10p7hud\",layoutDependency:layoutDependency,layoutId:\"gBThk0RLO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bxcagd-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"CSUYXLNwG-container\",nodeId:\"CSUYXLNwG\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"CSUYXLNwG\",layoutId:\"CSUYXLNwG\",serialNumber:toString(saeex7UoWktbkv0bVb),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ywv96x\",layoutDependency:layoutDependency,layoutId:\"zE_od1hDF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1clql4a-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jlO3aGkvr-container\",nodeId:\"jlO3aGkvr\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"jlO3aGkvr\",layoutId:\"jlO3aGkvr\",serialNumber:toString(saeex7UoWktbkv0bVb),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1tus20o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vTE4dhtFq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qtuo2a-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"tmPPr_r4C-container\",nodeId:\"tmPPr_r4C\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"tmPPr_r4C\",layoutId:\"tmPPr_r4C\",serialNumber:toString(iAHomRPW9ktbkv0bVb),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Living Future: How SynBio, Genomics, and Regenerative Medicine are Transforming Human Health\"})}),className:\"framer-kvz9es\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S1ZLT6gO0\",text:O8SkeTdROktbkv0bVb,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lb2p13\",layoutDependency:layoutDependency,layoutId:\"MjwZnPopP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-rj3dha\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"md_Ed0A_O\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-165f8do\",layoutDependency:layoutDependency,layoutId:\"f8517TmKy\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\",opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ifqf54\",layoutDependency:layoutDependency,layoutId:\"tpCa4scpO\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v2jpby\",layoutDependency:layoutDependency,layoutId:\"rHAdtQvh0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Synthetic biology is blurring the lines between biology and technology, unlocking breakthroughs in regenerative medicine, biofabrication, and personalized healthcare. This panel brings together leading innovators who are shaping the future of human health. Join this session to explore the role of multidisciplinary technologies in healthcare. Understand how genomics, synthetic biology, and regenerative medicine are personalizing treatment and examine the ethical and practical challenges in deploying next-gen biotechnologies.\"})}),className:\"framer-16vxbqz\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WSclGXEnd\",text:kFLvvfggDktbkv0bVb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q46db6\",layoutDependency:layoutDependency,layoutId:\"DNCDuCiBW\",children:collection20?.map(({b9KiniA39:b9KiniA39DNCDuCiBW,eoNm9cDSA:eoNm9cDSADNCDuCiBW,ER_Czfpu7:ER_Czfpu7DNCDuCiBW,id:idDNCDuCiBW,spH3BjGqf:spH3BjGqfDNCDuCiBW,xWMZXIfAr:xWMZXIfArDNCDuCiBW},index20)=>{ER_Czfpu7DNCDuCiBW??=\"\";spH3BjGqfDNCDuCiBW??=\"\";xWMZXIfArDNCDuCiBW??=\"\";b9KiniA39DNCDuCiBW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DNCDuCiBW-${idDNCDuCiBW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7DNCDuCiBW},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ER_Czfpu7:\"aaron-larsen\"},unresolvedPathSlugs:{ER_Czfpu7:{collectionId:\"uVIAFNi9C\",collectionItemId:\"vjg8qoymE\"}},webPageId:\"BtT6SVenj\"},motionChild:true,nodeId:\"ugNMW5Ium\",openInNewTab:false,scopeId:\"S9ELcZ8Oe\",...addPropertyOverrides({Je9Yzn4I3:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1g3x7rj framer-1kogrz4\",layoutDependency:layoutDependency,layoutId:\"ugNMW5Ium\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7DNCDuCiBW},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vjskeq-container\",layoutDependency:layoutDependency,layoutId:\"Dj11SigtB-container\",nodeId:\"Dj11SigtB\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArDNCDuCiBW,bmvNKeCaT:toResponsiveImage(eoNm9cDSADNCDuCiBW),gOyyTkmTp:spH3BjGqfDNCDuCiBW,height:\"100%\",id:\"Dj11SigtB\",layoutId:\"Dj11SigtB\",uKYCERcEt:b9KiniA39DNCDuCiBW,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks10[0],...addPropertyOverrides({Je9Yzn4I3:{wubGTdVEN:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})})})})})},idDNCDuCiBW);})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3ld44\",layoutDependency:layoutDependency,layoutId:\"G92mZDnhB\",style:{borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1drgfs8\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"kUtK526lj\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zninik\",layoutDependency:layoutDependency,layoutId:\"lqDQGeakp\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idktbkv0bVb);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ybvrf6\",\"data-framer-name\":\"Phone\",layoutDependency:layoutDependency,layoutId:\"m5gahWdTP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mcj0tt\",layoutDependency:layoutDependency,layoutId:\"mX5OoSlfd\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dn33q2\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"qQyyL9NfS\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qQyyL9NfS\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"qQyyL9NfS\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"qQyyL9NfS\",name:\"id\",type:\"Identifier\"},{alias:\"hlnYryy2G\",arguments:[{from:{alias:\"hlnYryy2G\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"hlnYryy2G\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"hlnYryy2G\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"hlnYryy2G\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"qQyyL9NfS\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"qQyyL9NfS\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A1\"},type:\"BinaryOperation\"}},children:(collection23,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection23?.map(({hlnYryy2G:collection22,iAHomRPW9:iAHomRPW9qQyyL9NfS,id:idqQyyL9NfS,kFLvvfggD:kFLvvfggDqQyyL9NfS,kwa5SmhPn:kwa5SmhPnqQyyL9NfS,O8SkeTdRO:O8SkeTdROqQyyL9NfS,saeex7UoW:saeex7UoWqQyyL9NfS},index23)=>{saeex7UoWqQyyL9NfS??=0;iAHomRPW9qQyyL9NfS??=0;O8SkeTdROqQyyL9NfS??=\"\";kFLvvfggDqQyyL9NfS??=\"\";kwa5SmhPnqQyyL9NfS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qQyyL9NfS-${idqQyyL9NfS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnqQyyL9NfS},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4t4ram\",layoutDependency:layoutDependency,layoutId:\"nzBpuAgcB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xmafj7\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"DNlFMc2lt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ga4itg\",layoutDependency:layoutDependency,layoutId:\"hsxk4xuVK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19qilmt\",layoutDependency:layoutDependency,layoutId:\"SVHh7ovdC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"01\"})}),className:\"framer-1ylvxfb\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Quape86aK\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6x852a\",layoutDependency:layoutDependency,layoutId:\"x8e5CmAWG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-209igw-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"qRnZ34mzp-container\",nodeId:\"qRnZ34mzp\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"qRnZ34mzp\",layoutId:\"qRnZ34mzp\",serialNumber:toString(saeex7UoWqQyyL9NfS),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g0eiem\",layoutDependency:layoutDependency,layoutId:\"AYOeljfZ3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3ruthm-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"irfZHquVT-container\",nodeId:\"irfZHquVT\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"irfZHquVT\",layoutId:\"irfZHquVT\",serialNumber:toString(saeex7UoWqQyyL9NfS),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1gyzipi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mwaaBjIBg\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nv80wx-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"bxZleZw0_-container\",nodeId:\"bxZleZw0_\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"bxZleZw0_\",layoutId:\"bxZleZw0_\",serialNumber:toString(iAHomRPW9qQyyL9NfS),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Unbound Biology: Cracking the Age Code\"})}),className:\"framer-fx7isj\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QO1KPrb0E\",text:O8SkeTdROqQyyL9NfS,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-43ze4q\",layoutDependency:layoutDependency,layoutId:\"SqfR0ATCK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dzohoy\",layoutDependency:layoutDependency,layoutId:\"n8snQUk3n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Content\"})}),className:\"framer-11zecp1\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KU7tsigdz\",text:kFLvvfggDqQyyL9NfS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-krt8xz\",layoutDependency:layoutDependency,layoutId:\"hlnYryy2G\",children:collection22?.map(({b9KiniA39:b9KiniA39hlnYryy2G,eoNm9cDSA:eoNm9cDSAhlnYryy2G,ER_Czfpu7:ER_Czfpu7hlnYryy2G,id:idhlnYryy2G,spH3BjGqf:spH3BjGqfhlnYryy2G,xWMZXIfAr:xWMZXIfArhlnYryy2G},index22)=>{ER_Czfpu7hlnYryy2G??=\"\";spH3BjGqfhlnYryy2G??=\"\";xWMZXIfArhlnYryy2G??=\"\";b9KiniA39hlnYryy2G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hlnYryy2G-${idhlnYryy2G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7hlnYryy2G},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-jb2awu\",layoutDependency:layoutDependency,layoutId:\"m36jsZsj6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7hlnYryy2G},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qmb8qf-container\",layoutDependency:layoutDependency,layoutId:\"bcZ3DvqjF-container\",nodeId:\"bcZ3DvqjF\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArhlnYryy2G,bmvNKeCaT:toResponsiveImage(eoNm9cDSAhlnYryy2G),gOyyTkmTp:spH3BjGqfhlnYryy2G,height:\"100%\",id:\"bcZ3DvqjF\",layoutId:\"bcZ3DvqjF\",uKYCERcEt:b9KiniA39hlnYryy2G,variant:\"G1NDRIq3C\",width:\"100%\",wubGTdVEN:resolvedLinks11[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})})})})},idhlnYryy2G);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2zdyl\",layoutDependency:layoutDependency,layoutId:\"EhiRn2jQ4\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idqQyyL9NfS);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-98vun0\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"H_8iurV9J\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"H_8iurV9J\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"H_8iurV9J\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"H_8iurV9J\",name:\"id\",type:\"Identifier\"},{alias:\"g8s0B_Jyl\",arguments:[{from:{alias:\"g8s0B_Jyl\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"g8s0B_Jyl\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"g8s0B_Jyl\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g8s0B_Jyl\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"H_8iurV9J\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"H_8iurV9J\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"H_8iurV9J\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"H_8iurV9J\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A2\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection25,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection25?.map(({g8s0B_Jyl:collection24,iAHomRPW9:iAHomRPW9H_8iurV9J,id:idH_8iurV9J,kFLvvfggD:kFLvvfggDH_8iurV9J,kwa5SmhPn:kwa5SmhPnH_8iurV9J,O8SkeTdRO:O8SkeTdROH_8iurV9J,saeex7UoW:saeex7UoWH_8iurV9J},index25)=>{saeex7UoWH_8iurV9J??=0;iAHomRPW9H_8iurV9J??=0;O8SkeTdROH_8iurV9J??=\"\";kFLvvfggDH_8iurV9J??=\"\";kwa5SmhPnH_8iurV9J??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`H_8iurV9J-${idH_8iurV9J}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnH_8iurV9J},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f5qy2i\",layoutDependency:layoutDependency,layoutId:\"GdBA1_EpW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15edp06\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"S1Botycql\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ry6hs\",layoutDependency:layoutDependency,layoutId:\"bE6PHAkyA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-27wdp3\",layoutDependency:layoutDependency,layoutId:\"ezqYoJdrR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"02\"})}),className:\"framer-84fswd\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ctQKuEn2y\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-178ahte\",layoutDependency:layoutDependency,layoutId:\"Lz7UiLYTG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dadcsf-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"AUaGJJXNS-container\",nodeId:\"AUaGJJXNS\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"AUaGJJXNS\",layoutId:\"AUaGJJXNS\",serialNumber:toString(saeex7UoWH_8iurV9J),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h2g5am\",layoutDependency:layoutDependency,layoutId:\"lDjytvHyl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gmi4a3-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"OfbbREfQC-container\",nodeId:\"OfbbREfQC\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"OfbbREfQC\",layoutId:\"OfbbREfQC\",serialNumber:toString(saeex7UoWH_8iurV9J),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-93l5mj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kU1iNh27A\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ce6r61-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"YzUHtW0SE-container\",nodeId:\"YzUHtW0SE\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"YzUHtW0SE\",layoutId:\"YzUHtW0SE\",serialNumber:toString(iAHomRPW9H_8iurV9J),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"A Rallying Call to Work on Longevity\"})}),className:\"framer-atsdj6\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UVOc5V9lJ\",text:O8SkeTdROH_8iurV9J,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-adtt6o\",layoutDependency:layoutDependency,layoutId:\"Q08tmUwDt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ap1tt\",layoutDependency:layoutDependency,layoutId:\"HLZHN2DAx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"In this keynote, Peter Diamandis, will issue a rallying call to redefine how we think about aging and harness the synergy of biotech, AI, and bold thinking to push the boundaries of healthy lifespan extension. He will draw on insights from The Longevity Insider\u2019s Guide to present transformative solutions poised to disrupt the healthcare landscape. He will spotlight how entrepreneurs, researchers, and investors can join forces to accelerate breakthroughs and overcome the most urgent challenges in aging. By shifting from scarcity to possibility, he will show how collective innovation can usher in an era of unprecedented longevity, redefining what it means to thrive at every stage of life.\"})}),className:\"framer-1wvie3y\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EHLawtpfv\",text:kFLvvfggDH_8iurV9J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8hbxx\",layoutDependency:layoutDependency,layoutId:\"g8s0B_Jyl\",children:collection24?.map(({b9KiniA39:b9KiniA39g8s0B_Jyl,eoNm9cDSA:eoNm9cDSAg8s0B_Jyl,ER_Czfpu7:ER_Czfpu7g8s0B_Jyl,id:idg8s0B_Jyl,spH3BjGqf:spH3BjGqfg8s0B_Jyl,xWMZXIfAr:xWMZXIfArg8s0B_Jyl},index24)=>{ER_Czfpu7g8s0B_Jyl??=\"\";spH3BjGqfg8s0B_Jyl??=\"\";xWMZXIfArg8s0B_Jyl??=\"\";b9KiniA39g8s0B_Jyl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`g8s0B_Jyl-${idg8s0B_Jyl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7g8s0B_Jyl},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1l8ree\",layoutDependency:layoutDependency,layoutId:\"h7H56mTyS\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7g8s0B_Jyl},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vxwbuf-container\",layoutDependency:layoutDependency,layoutId:\"yKlUxLVRA-container\",nodeId:\"yKlUxLVRA\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArg8s0B_Jyl,bmvNKeCaT:toResponsiveImage(eoNm9cDSAg8s0B_Jyl),gOyyTkmTp:spH3BjGqfg8s0B_Jyl,height:\"100%\",id:\"yKlUxLVRA\",layoutId:\"yKlUxLVRA\",uKYCERcEt:b9KiniA39g8s0B_Jyl,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks12[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})})})})},idg8s0B_Jyl);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zykd3f\",layoutDependency:layoutDependency,layoutId:\"BtmyK6JNV\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idH_8iurV9J);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pruj6x\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"SC_cLnidY\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"SC_cLnidY\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"SC_cLnidY\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"SC_cLnidY\",name:\"id\",type:\"Identifier\"},{alias:\"UUfY28kvG\",arguments:[{from:{alias:\"UUfY28kvG\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"UUfY28kvG\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"UUfY28kvG\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"UUfY28kvG\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"SC_cLnidY\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"SC_cLnidY\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"SC_cLnidY\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"SC_cLnidY\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A3\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection27,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection27?.map(({iAHomRPW9:iAHomRPW9SC_cLnidY,id:idSC_cLnidY,kFLvvfggD:kFLvvfggDSC_cLnidY,kwa5SmhPn:kwa5SmhPnSC_cLnidY,O8SkeTdRO:O8SkeTdROSC_cLnidY,saeex7UoW:saeex7UoWSC_cLnidY,UUfY28kvG:collection26},index27)=>{saeex7UoWSC_cLnidY??=0;iAHomRPW9SC_cLnidY??=0;O8SkeTdROSC_cLnidY??=\"\";kFLvvfggDSC_cLnidY??=\"\";kwa5SmhPnSC_cLnidY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SC_cLnidY-${idSC_cLnidY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnSC_cLnidY},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-121dlgr\",layoutDependency:layoutDependency,layoutId:\"wjoCxS6yh\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mq41fu\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"jH4bv3MVf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ve0xo5\",layoutDependency:layoutDependency,layoutId:\"mrluC0aJr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oic5rj\",layoutDependency:layoutDependency,layoutId:\"TdqzG7jrf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"03\"})}),className:\"framer-tmtvoz\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CPbKxZw6N\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y1nfr8\",layoutDependency:layoutDependency,layoutId:\"FonD4CUNc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-23o040-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"MGAmze4__-container\",nodeId:\"MGAmze4__\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"MGAmze4__\",layoutId:\"MGAmze4__\",serialNumber:toString(saeex7UoWSC_cLnidY),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vkpf4l\",layoutDependency:layoutDependency,layoutId:\"s_HGZge08\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cdcubo-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jw4DzHPCX-container\",nodeId:\"jw4DzHPCX\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"jw4DzHPCX\",layoutId:\"jw4DzHPCX\",serialNumber:toString(saeex7UoWSC_cLnidY),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1o6u5sa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BL2wQ_tig\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kxbujy-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"TaTfWLK_Y-container\",nodeId:\"TaTfWLK_Y\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"TaTfWLK_Y\",layoutId:\"TaTfWLK_Y\",serialNumber:toString(iAHomRPW9SC_cLnidY),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"How Breakthroughs in Cellular Reprogramming Could Transform Aging\"})}),className:\"framer-11a3u10\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kdhL46TgW\",text:O8SkeTdROSC_cLnidY,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z7xaeu\",layoutDependency:layoutDependency,layoutId:\"VJJ0MsvOW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gqd7xd\",layoutDependency:layoutDependency,layoutId:\"m4Pxsz15O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Epigenetic reprogramming has rapidly become the hottest area in longevity biotech, attracting unprecedented attention and billions in investment in just the last two years. Building on Shinya Yamanaka's Nobel Prize winning iPSC reprogramming, a new wave of biotech startups are now racing to extend the concept to therapeutically rejuvenate the cells in our bodies. This panel brings together the leading researchers and entrepreneurs of this field to explore the science and recent breakthroughs driving the excitement, the challenges of bringing these therapies to market, and the future of a field that could redefine what it means to age.\"})}),className:\"framer-7s1p8r\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ymVpI8hcp\",text:kFLvvfggDSC_cLnidY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9q9e81\",layoutDependency:layoutDependency,layoutId:\"UUfY28kvG\",children:collection26?.map(({b9KiniA39:b9KiniA39UUfY28kvG,eoNm9cDSA:eoNm9cDSAUUfY28kvG,ER_Czfpu7:ER_Czfpu7UUfY28kvG,id:idUUfY28kvG,spH3BjGqf:spH3BjGqfUUfY28kvG,xWMZXIfAr:xWMZXIfArUUfY28kvG},index26)=>{ER_Czfpu7UUfY28kvG??=\"\";spH3BjGqfUUfY28kvG??=\"\";xWMZXIfArUUfY28kvG??=\"\";b9KiniA39UUfY28kvG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UUfY28kvG-${idUUfY28kvG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7UUfY28kvG},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4yfkmu\",layoutDependency:layoutDependency,layoutId:\"CdBqSF5BJ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7UUfY28kvG},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oigac0-container\",layoutDependency:layoutDependency,layoutId:\"bMqd_mgT9-container\",nodeId:\"bMqd_mgT9\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArUUfY28kvG,bmvNKeCaT:toResponsiveImage(eoNm9cDSAUUfY28kvG),gOyyTkmTp:spH3BjGqfUUfY28kvG,height:\"100%\",id:\"bMqd_mgT9\",layoutId:\"bMqd_mgT9\",uKYCERcEt:b9KiniA39UUfY28kvG,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks13[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})})})})},idUUfY28kvG);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o29mha\",layoutDependency:layoutDependency,layoutId:\"fB6beEmPX\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idSC_cLnidY);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uhfs5q\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"XTmJOmF51\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XTmJOmF51\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XTmJOmF51\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"XTmJOmF51\",name:\"id\",type:\"Identifier\"},{alias:\"WGjjrOCzi\",arguments:[{from:{alias:\"WGjjrOCzi\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"WGjjrOCzi\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"WGjjrOCzi\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"WGjjrOCzi\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XTmJOmF51\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{collection:\"XTmJOmF51\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A4\"},type:\"BinaryOperation\"}},children:(collection29,paginationInfo14,loadMore14)=>/*#__PURE__*/_jsx(_Fragment,{children:collection29?.map(({iAHomRPW9:iAHomRPW9XTmJOmF51,id:idXTmJOmF51,kFLvvfggD:kFLvvfggDXTmJOmF51,kwa5SmhPn:kwa5SmhPnXTmJOmF51,O8SkeTdRO:O8SkeTdROXTmJOmF51,saeex7UoW:saeex7UoWXTmJOmF51,WGjjrOCzi:collection28},index29)=>{saeex7UoWXTmJOmF51??=0;iAHomRPW9XTmJOmF51??=0;O8SkeTdROXTmJOmF51??=\"\";kFLvvfggDXTmJOmF51??=\"\";kwa5SmhPnXTmJOmF51??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XTmJOmF51-${idXTmJOmF51}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnXTmJOmF51},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gece6h\",layoutDependency:layoutDependency,layoutId:\"VgNUt7V9i\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oayqqz\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"NcoeJoUdg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-acu6gq\",layoutDependency:layoutDependency,layoutId:\"P9hsunAfp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ojfdk\",layoutDependency:layoutDependency,layoutId:\"ra5d3A9aD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"04\"})}),className:\"framer-v2e3mg\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PZgcmiq0U\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e373sx\",layoutDependency:layoutDependency,layoutId:\"pGePVFLHd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1thatrf-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"VMM5_5FuH-container\",nodeId:\"VMM5_5FuH\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"VMM5_5FuH\",layoutId:\"VMM5_5FuH\",serialNumber:toString(saeex7UoWXTmJOmF51),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1flpmhn\",layoutDependency:layoutDependency,layoutId:\"QOulTf4t3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h99d9j-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eVekaaGY0-container\",nodeId:\"eVekaaGY0\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"eVekaaGY0\",layoutId:\"eVekaaGY0\",serialNumber:toString(saeex7UoWXTmJOmF51),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-kjmieh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ndIGieJZo\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r4x3oc-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"JQpFTwcMj-container\",nodeId:\"JQpFTwcMj\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"JQpFTwcMj\",layoutId:\"JQpFTwcMj\",serialNumber:toString(iAHomRPW9XTmJOmF51),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Neural Frontier: Pioneering Tomorrow's Brain Technologies\"})}),className:\"framer-ku0oom\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qsWjVU9FS\",text:O8SkeTdROXTmJOmF51,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qz3f11\",layoutDependency:layoutDependency,layoutId:\"CbNo1JDEz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q2c8db\",layoutDependency:layoutDependency,layoutId:\"GQCCsUDLM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"The stuff of science fiction is becoming reality! These scientist and entrepreneurs are tackling the next generation of brain connectomics, advanced brain-computer interfaces, neuromodulation, and stem cell replacement. These technologies aim to treat specific disorders today, but will enable a path for us to become cyborgs and live longer.\"})}),className:\"framer-vexqha\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xp9RBagwb\",text:kFLvvfggDXTmJOmF51,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vnrdyk\",layoutDependency:layoutDependency,layoutId:\"WGjjrOCzi\",children:collection28?.map(({b9KiniA39:b9KiniA39WGjjrOCzi,eoNm9cDSA:eoNm9cDSAWGjjrOCzi,ER_Czfpu7:ER_Czfpu7WGjjrOCzi,id:idWGjjrOCzi,spH3BjGqf:spH3BjGqfWGjjrOCzi,xWMZXIfAr:xWMZXIfArWGjjrOCzi},index28)=>{ER_Czfpu7WGjjrOCzi??=\"\";spH3BjGqfWGjjrOCzi??=\"\";xWMZXIfArWGjjrOCzi??=\"\";b9KiniA39WGjjrOCzi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WGjjrOCzi-${idWGjjrOCzi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7WGjjrOCzi},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yd5dzw\",layoutDependency:layoutDependency,layoutId:\"dXl0fFUhk\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7WGjjrOCzi},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uffa5p-container\",layoutDependency:layoutDependency,layoutId:\"tC4oyQs9G-container\",nodeId:\"tC4oyQs9G\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArWGjjrOCzi,bmvNKeCaT:toResponsiveImage(eoNm9cDSAWGjjrOCzi),gOyyTkmTp:spH3BjGqfWGjjrOCzi,height:\"100%\",id:\"tC4oyQs9G\",layoutId:\"tC4oyQs9G\",uKYCERcEt:b9KiniA39WGjjrOCzi,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks14[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})})})})},idWGjjrOCzi);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qz5btk\",layoutDependency:layoutDependency,layoutId:\"ZNZ_QUixL\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idXTmJOmF51);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18i5xga\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"pHXLC7ZD9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pHXLC7ZD9\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"pHXLC7ZD9\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"pHXLC7ZD9\",name:\"id\",type:\"Identifier\"},{alias:\"cCQtnQBAY\",arguments:[{from:{alias:\"cCQtnQBAY\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"cCQtnQBAY\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"cCQtnQBAY\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"cCQtnQBAY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pHXLC7ZD9\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"pHXLC7ZD9\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pHXLC7ZD9\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"pHXLC7ZD9\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A5\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection31,paginationInfo15,loadMore15)=>/*#__PURE__*/_jsx(_Fragment,{children:collection31?.map(({cCQtnQBAY:collection30,iAHomRPW9:iAHomRPW9pHXLC7ZD9,id:idpHXLC7ZD9,kFLvvfggD:kFLvvfggDpHXLC7ZD9,kwa5SmhPn:kwa5SmhPnpHXLC7ZD9,O8SkeTdRO:O8SkeTdROpHXLC7ZD9,saeex7UoW:saeex7UoWpHXLC7ZD9},index31)=>{saeex7UoWpHXLC7ZD9??=0;iAHomRPW9pHXLC7ZD9??=0;O8SkeTdROpHXLC7ZD9??=\"\";kFLvvfggDpHXLC7ZD9??=\"\";kwa5SmhPnpHXLC7ZD9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pHXLC7ZD9-${idpHXLC7ZD9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnpHXLC7ZD9},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lk5xhn\",layoutDependency:layoutDependency,layoutId:\"abjfEcxnm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t0qbde\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"CGbvTCvPr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ss2sx2\",layoutDependency:layoutDependency,layoutId:\"njm0GvO3X\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pd68yu\",layoutDependency:layoutDependency,layoutId:\"Bf8maUG2P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"05\"})}),className:\"framer-7msre0\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d3xDkAbgm\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ujaqqr\",layoutDependency:layoutDependency,layoutId:\"XVOHfPidN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13gzi8m-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"oJynf1rcF-container\",nodeId:\"oJynf1rcF\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"oJynf1rcF\",layoutId:\"oJynf1rcF\",serialNumber:toString(saeex7UoWpHXLC7ZD9),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpfff3\",layoutDependency:layoutDependency,layoutId:\"MFACzUS1I\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-540wwr-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eoGEvFPbm-container\",nodeId:\"eoGEvFPbm\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"eoGEvFPbm\",layoutId:\"eoGEvFPbm\",serialNumber:toString(saeex7UoWpHXLC7ZD9),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1soie9r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wHuO3axxf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-135dgw0-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"qj2djwtFI-container\",nodeId:\"qj2djwtFI\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"qj2djwtFI\",layoutId:\"qj2djwtFI\",serialNumber:toString(iAHomRPW9pHXLC7ZD9),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Lightning Talk Presented by Generation Lab\"})}),className:\"framer-t3fehx\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vtbe4ZPMC\",text:O8SkeTdROpHXLC7ZD9,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-w270ei\",layoutDependency:layoutDependency,layoutId:\"oyx5Ugumh\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15q1f99\",layoutDependency:layoutDependency,layoutId:\"yCMZS5NIE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Content\"})}),className:\"framer-1leghkw\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kr3XTunpj\",text:kFLvvfggDpHXLC7ZD9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d6uayx\",layoutDependency:layoutDependency,layoutId:\"cCQtnQBAY\",children:collection30?.map(({b9KiniA39:b9KiniA39cCQtnQBAY,eoNm9cDSA:eoNm9cDSAcCQtnQBAY,ER_Czfpu7:ER_Czfpu7cCQtnQBAY,id:idcCQtnQBAY,spH3BjGqf:spH3BjGqfcCQtnQBAY,xWMZXIfAr:xWMZXIfArcCQtnQBAY},index30)=>{ER_Czfpu7cCQtnQBAY??=\"\";spH3BjGqfcCQtnQBAY??=\"\";xWMZXIfArcCQtnQBAY??=\"\";b9KiniA39cCQtnQBAY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cCQtnQBAY-${idcCQtnQBAY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7cCQtnQBAY},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1d29sj\",layoutDependency:layoutDependency,layoutId:\"y5WUxoBV7\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7cCQtnQBAY},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-33wip4-container\",layoutDependency:layoutDependency,layoutId:\"wif05wIa_-container\",nodeId:\"wif05wIa_\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArcCQtnQBAY,bmvNKeCaT:toResponsiveImage(eoNm9cDSAcCQtnQBAY),gOyyTkmTp:spH3BjGqfcCQtnQBAY,height:\"100%\",id:\"wif05wIa_\",layoutId:\"wif05wIa_\",uKYCERcEt:b9KiniA39cCQtnQBAY,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks15[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})})})})},idcCQtnQBAY);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13uweb8\",layoutDependency:layoutDependency,layoutId:\"p43X2i6nv\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idpHXLC7ZD9);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kry30t\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"XG9kN08_T\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XG9kN08_T\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XG9kN08_T\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"XG9kN08_T\",name:\"id\",type:\"Identifier\"},{alias:\"bYwjzpLae\",arguments:[{from:{alias:\"bYwjzpLae\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bYwjzpLae\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bYwjzpLae\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bYwjzpLae\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"XG9kN08_T\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"XG9kN08_T\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"XG9kN08_T\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"XG9kN08_T\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A6\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection33,paginationInfo16,loadMore16)=>/*#__PURE__*/_jsx(_Fragment,{children:collection33?.map(({bYwjzpLae:collection32,iAHomRPW9:iAHomRPW9XG9kN08_T,id:idXG9kN08_T,kFLvvfggD:kFLvvfggDXG9kN08_T,kwa5SmhPn:kwa5SmhPnXG9kN08_T,O8SkeTdRO:O8SkeTdROXG9kN08_T,saeex7UoW:saeex7UoWXG9kN08_T},index33)=>{saeex7UoWXG9kN08_T??=0;iAHomRPW9XG9kN08_T??=0;O8SkeTdROXG9kN08_T??=\"\";kFLvvfggDXG9kN08_T??=\"\";kwa5SmhPnXG9kN08_T??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XG9kN08_T-${idXG9kN08_T}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnXG9kN08_T},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u5j7zg\",layoutDependency:layoutDependency,layoutId:\"akt59zXBS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dr0tcx\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"jSkEYgb3G\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mei75v\",layoutDependency:layoutDependency,layoutId:\"sSih4D9En\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sm7hl4\",layoutDependency:layoutDependency,layoutId:\"aCb7nlPZx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"06\"})}),className:\"framer-282i54\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"A8WlxbTz9\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tawxe1\",layoutDependency:layoutDependency,layoutId:\"G5ri40XLy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zk6c7w-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"VYw60omQ1-container\",nodeId:\"VYw60omQ1\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"VYw60omQ1\",layoutId:\"VYw60omQ1\",serialNumber:toString(saeex7UoWXG9kN08_T),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-55p984\",layoutDependency:layoutDependency,layoutId:\"cFKuOrxVI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ocvosv-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"gffs_eZvP-container\",nodeId:\"gffs_eZvP\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"gffs_eZvP\",layoutId:\"gffs_eZvP\",serialNumber:toString(saeex7UoWXG9kN08_T),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-ilx40e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SeXg85ScJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t9xrmu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"GWaB8yJaU-container\",nodeId:\"GWaB8yJaU\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"GWaB8yJaU\",layoutId:\"GWaB8yJaU\",serialNumber:toString(iAHomRPW9XG9kN08_T),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Next-Gen Medicine: AI-Powered Advances Reshaping Human Therapeutics\"})}),className:\"framer-w14gdn\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fugtvhiIm\",text:O8SkeTdROXG9kN08_T,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ugm9z\",layoutDependency:layoutDependency,layoutId:\"cJit3BDCD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sf1fge\",layoutDependency:layoutDependency,layoutId:\"XS4twVu5M\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Dive into the cutting-edge today, not just the promises of tomorrow. This dynamic breakout session features biotech visionaries actively leveraging machine learning and AI to transform the engineering of human therapeutics. Hear firsthand from industry pioneers pushing the boundaries\u2014from accelerating drug target discovery to streamlining clinical development pipelines. Learn how advanced analytics and big data are already enhancing personalized medicine, boosting clinical success rates, and rapidly reshaping the future landscape of healthcare. Don't miss this inside look at the real-world innovations redefining what's possible in therapeutic discovery and precision medicine.\"})}),className:\"framer-1pa8x37\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xMzuvNnbb\",text:kFLvvfggDXG9kN08_T,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pw06wd\",layoutDependency:layoutDependency,layoutId:\"bYwjzpLae\",children:collection32?.map(({b9KiniA39:b9KiniA39bYwjzpLae,eoNm9cDSA:eoNm9cDSAbYwjzpLae,ER_Czfpu7:ER_Czfpu7bYwjzpLae,id:idbYwjzpLae,spH3BjGqf:spH3BjGqfbYwjzpLae,xWMZXIfAr:xWMZXIfArbYwjzpLae},index32)=>{ER_Czfpu7bYwjzpLae??=\"\";spH3BjGqfbYwjzpLae??=\"\";xWMZXIfArbYwjzpLae??=\"\";b9KiniA39bYwjzpLae??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bYwjzpLae-${idbYwjzpLae}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7bYwjzpLae},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nsa6tv\",layoutDependency:layoutDependency,layoutId:\"J_NlxRKBu\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7bYwjzpLae},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-myfzh5-container\",layoutDependency:layoutDependency,layoutId:\"sn6rH8lWB-container\",nodeId:\"sn6rH8lWB\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArbYwjzpLae,bmvNKeCaT:toResponsiveImage(eoNm9cDSAbYwjzpLae),gOyyTkmTp:spH3BjGqfbYwjzpLae,height:\"100%\",id:\"sn6rH8lWB\",layoutId:\"sn6rH8lWB\",uKYCERcEt:b9KiniA39bYwjzpLae,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks16[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})})})})},idbYwjzpLae);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11lcmlu\",layoutDependency:layoutDependency,layoutId:\"GVtWDCAGC\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idXG9kN08_T);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10r6kqi\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"WiuQw0_CV\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WiuQw0_CV\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"WiuQw0_CV\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"WiuQw0_CV\",name:\"id\",type:\"Identifier\"},{alias:\"mWEZiaApf\",arguments:[{from:{alias:\"mWEZiaApf\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"mWEZiaApf\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"mWEZiaApf\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"mWEZiaApf\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"WiuQw0_CV\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"WiuQw0_CV\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WiuQw0_CV\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WiuQw0_CV\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A7\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection35,paginationInfo17,loadMore17)=>/*#__PURE__*/_jsx(_Fragment,{children:collection35?.map(({iAHomRPW9:iAHomRPW9WiuQw0_CV,id:idWiuQw0_CV,kFLvvfggD:kFLvvfggDWiuQw0_CV,kwa5SmhPn:kwa5SmhPnWiuQw0_CV,mWEZiaApf:collection34,O8SkeTdRO:O8SkeTdROWiuQw0_CV,saeex7UoW:saeex7UoWWiuQw0_CV},index35)=>{saeex7UoWWiuQw0_CV??=0;iAHomRPW9WiuQw0_CV??=0;O8SkeTdROWiuQw0_CV??=\"\";kFLvvfggDWiuQw0_CV??=\"\";kwa5SmhPnWiuQw0_CV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WiuQw0_CV-${idWiuQw0_CV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnWiuQw0_CV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cgl7gc\",layoutDependency:layoutDependency,layoutId:\"yVf5mlp6j\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kkmrij\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"t6M_qDMq6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fpm98y\",layoutDependency:layoutDependency,layoutId:\"GT1Bpae3A\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wkr19o\",layoutDependency:layoutDependency,layoutId:\"BsgvCr4VG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"07\"})}),className:\"framer-1dm8s9f\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LhIaaYJJA\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15fgtbi\",layoutDependency:layoutDependency,layoutId:\"AqQkIK3_O\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eaxvjw-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"l7EBaFlwt-container\",nodeId:\"l7EBaFlwt\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"l7EBaFlwt\",layoutId:\"l7EBaFlwt\",serialNumber:toString(saeex7UoWWiuQw0_CV),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iooru7\",layoutDependency:layoutDependency,layoutId:\"LcXW9lB_c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mup3n3-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cEcf3kDp2-container\",nodeId:\"cEcf3kDp2\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"cEcf3kDp2\",layoutId:\"cEcf3kDp2\",serialNumber:toString(saeex7UoWWiuQw0_CV),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1m931th\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a4iUFJoac\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mrg0zg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ddPM9FxB6-container\",nodeId:\"ddPM9FxB6\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"ddPM9FxB6\",layoutId:\"ddPM9FxB6\",serialNumber:toString(iAHomRPW9WiuQw0_CV),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Space Therapies: Accelerating Biotech Solutions for Health Beyond Earth\"})}),className:\"framer-ka4vt2\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KC9d1s2mI\",text:O8SkeTdROWiuQw0_CV,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-evin7\",layoutDependency:layoutDependency,layoutId:\"uN4zuHDUf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12q7zvv\",layoutDependency:layoutDependency,layoutId:\"ilHX_izLH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Space is among the harshest and least hospitable environments for humans. Every human biological system is affected by the space environment. The biological stress has a deleterious impact on health and physical capabilities, and the extreme conditions and isolation take a significant toll on mental performance and behavior. By 2040, hundreds of people will be in space at any given time, and more than 80% of those are predicted to be private citizens; for the reliability, safety, health, and enjoyment of those private participants, new solutions and therapeutics are needed to maintain health and wellbeing.\"})}),className:\"framer-1gc7rlk\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xC_Hr8JXF\",text:kFLvvfggDWiuQw0_CV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vhg92d\",layoutDependency:layoutDependency,layoutId:\"mWEZiaApf\",children:collection34?.map(({b9KiniA39:b9KiniA39mWEZiaApf,eoNm9cDSA:eoNm9cDSAmWEZiaApf,ER_Czfpu7:ER_Czfpu7mWEZiaApf,id:idmWEZiaApf,spH3BjGqf:spH3BjGqfmWEZiaApf,xWMZXIfAr:xWMZXIfArmWEZiaApf},index34)=>{ER_Czfpu7mWEZiaApf??=\"\";spH3BjGqfmWEZiaApf??=\"\";xWMZXIfArmWEZiaApf??=\"\";b9KiniA39mWEZiaApf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mWEZiaApf-${idmWEZiaApf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7mWEZiaApf},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14f5n3t\",layoutDependency:layoutDependency,layoutId:\"MXqH354WM\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7mWEZiaApf},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tlbqvg-container\",layoutDependency:layoutDependency,layoutId:\"gqvF6Ndv9-container\",nodeId:\"gqvF6Ndv9\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArmWEZiaApf,bmvNKeCaT:toResponsiveImage(eoNm9cDSAmWEZiaApf),gOyyTkmTp:spH3BjGqfmWEZiaApf,height:\"100%\",id:\"gqvF6Ndv9\",layoutId:\"gqvF6Ndv9\",uKYCERcEt:b9KiniA39mWEZiaApf,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks17[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks17[1]}},baseVariant,gestureVariant)})})})})})})},idmWEZiaApf);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fasb5b\",layoutDependency:layoutDependency,layoutId:\"fpLzwiEoG\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idWiuQw0_CV);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ux5pii\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"lkASnAbUh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lkASnAbUh\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"lkASnAbUh\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"lkASnAbUh\",name:\"id\",type:\"Identifier\"},{alias:\"N0iRYK_e5\",arguments:[{from:{alias:\"N0iRYK_e5\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"N0iRYK_e5\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"N0iRYK_e5\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"N0iRYK_e5\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"lkASnAbUh\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"lkASnAbUh\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"lkASnAbUh\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"lkASnAbUh\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A8\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection37,paginationInfo18,loadMore18)=>/*#__PURE__*/_jsx(_Fragment,{children:collection37?.map(({iAHomRPW9:iAHomRPW9lkASnAbUh,id:idlkASnAbUh,kFLvvfggD:kFLvvfggDlkASnAbUh,kwa5SmhPn:kwa5SmhPnlkASnAbUh,N0iRYK_e5:collection36,O8SkeTdRO:O8SkeTdROlkASnAbUh,saeex7UoW:saeex7UoWlkASnAbUh},index37)=>{saeex7UoWlkASnAbUh??=0;iAHomRPW9lkASnAbUh??=0;O8SkeTdROlkASnAbUh??=\"\";kFLvvfggDlkASnAbUh??=\"\";kwa5SmhPnlkASnAbUh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lkASnAbUh-${idlkASnAbUh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnlkASnAbUh},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fias1u\",layoutDependency:layoutDependency,layoutId:\"aIA2yQGR3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t2ed3z\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"KhlwRNSr3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sm2l93\",layoutDependency:layoutDependency,layoutId:\"JamR3As8K\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kgleto\",layoutDependency:layoutDependency,layoutId:\"QfuQ9iABG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"08\"})}),className:\"framer-8db9q5\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hiChMcKHR\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jz018o\",layoutDependency:layoutDependency,layoutId:\"PosxfUXUb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lc0gi1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"FEDDsximT-container\",nodeId:\"FEDDsximT\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"FEDDsximT\",layoutId:\"FEDDsximT\",serialNumber:toString(saeex7UoWlkASnAbUh),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c465be\",layoutDependency:layoutDependency,layoutId:\"FmsOdUki3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5gcg04-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"m4hMVcNTT-container\",nodeId:\"m4hMVcNTT\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"m4hMVcNTT\",layoutId:\"m4hMVcNTT\",serialNumber:toString(saeex7UoWlkASnAbUh),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-1ngdhms\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HlNzOCc_h\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f8g4rk-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Ht3oysGQs-container\",nodeId:\"Ht3oysGQs\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"Ht3oysGQs\",layoutId:\"Ht3oysGQs\",serialNumber:toString(iAHomRPW9lkASnAbUh),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Synthetic Biology Frontiers in Transplantation: Engineering Durable Therapeutic Solutions\"})}),className:\"framer-1osevkr\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kdewm4Blx\",text:O8SkeTdROlkASnAbUh,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mbaou3\",layoutDependency:layoutDependency,layoutId:\"CbSUE5Ty3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12q8pek\",layoutDependency:layoutDependency,layoutId:\"YVs7Bzbwa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"This cutting-edge session explores the intersection of synthetic biology, materials science, and transplantation medicine to address key challenges in cell, tissue, and organ transplantation. We'll examine innovative approaches to enhance transplant durability, improve integration with host systems, and advance the field of regenerative medicine. Examples include: genetically engineered cells for enhanced survival, 3d-printed scaffolds and organoids, advances in xenotransplantation, and others.\"})}),className:\"framer-jxy7ca\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QTKUV0NJr\",text:kFLvvfggDlkASnAbUh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ua6wvn\",layoutDependency:layoutDependency,layoutId:\"N0iRYK_e5\",children:collection36?.map(({b9KiniA39:b9KiniA39N0iRYK_e5,eoNm9cDSA:eoNm9cDSAN0iRYK_e5,ER_Czfpu7:ER_Czfpu7N0iRYK_e5,id:idN0iRYK_e5,spH3BjGqf:spH3BjGqfN0iRYK_e5,xWMZXIfAr:xWMZXIfArN0iRYK_e5},index36)=>{ER_Czfpu7N0iRYK_e5??=\"\";spH3BjGqfN0iRYK_e5??=\"\";xWMZXIfArN0iRYK_e5??=\"\";b9KiniA39N0iRYK_e5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`N0iRYK_e5-${idN0iRYK_e5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7N0iRYK_e5},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11d9i1w\",layoutDependency:layoutDependency,layoutId:\"sI5BdRSOK\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7N0iRYK_e5},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8qmnfh-container\",layoutDependency:layoutDependency,layoutId:\"ZKze1fQZO-container\",nodeId:\"ZKze1fQZO\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArN0iRYK_e5,bmvNKeCaT:toResponsiveImage(eoNm9cDSAN0iRYK_e5),gOyyTkmTp:spH3BjGqfN0iRYK_e5,height:\"100%\",id:\"ZKze1fQZO\",layoutId:\"ZKze1fQZO\",uKYCERcEt:b9KiniA39N0iRYK_e5,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks18[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks18[1]}},baseVariant,gestureVariant)})})})})})})},idN0iRYK_e5);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fvi5kv\",layoutDependency:layoutDependency,layoutId:\"ODTR975Cw\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idlkASnAbUh);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16awi6i\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"rbxsfN9DX\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rbxsfN9DX\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"rbxsfN9DX\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"rbxsfN9DX\",name:\"id\",type:\"Identifier\"},{alias:\"bY5cyYbDC\",arguments:[{from:{alias:\"bY5cyYbDC\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"bY5cyYbDC\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"bY5cyYbDC\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"bY5cyYbDC\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"rbxsfN9DX\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"rbxsfN9DX\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"rbxsfN9DX\",name:\"U2R672rPx\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"rbxsfN9DX\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A9\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection39,paginationInfo19,loadMore19)=>/*#__PURE__*/_jsx(_Fragment,{children:collection39?.map(({bY5cyYbDC:collection38,iAHomRPW9:iAHomRPW9rbxsfN9DX,id:idrbxsfN9DX,kFLvvfggD:kFLvvfggDrbxsfN9DX,kwa5SmhPn:kwa5SmhPnrbxsfN9DX,O8SkeTdRO:O8SkeTdROrbxsfN9DX,saeex7UoW:saeex7UoWrbxsfN9DX},index39)=>{saeex7UoWrbxsfN9DX??=0;iAHomRPW9rbxsfN9DX??=0;O8SkeTdROrbxsfN9DX??=\"\";kFLvvfggDrbxsfN9DX??=\"\";kwa5SmhPnrbxsfN9DX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rbxsfN9DX-${idrbxsfN9DX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnrbxsfN9DX},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-102bt0b\",layoutDependency:layoutDependency,layoutId:\"CQLlt9C3M\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14608gs\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"B_Mk7aecp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gehrct\",layoutDependency:layoutDependency,layoutId:\"Qw1WCiymk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uk3vl\",layoutDependency:layoutDependency,layoutId:\"kdCcBjr2q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"09\"})}),className:\"framer-1m99n5s\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Qww5xD__w\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84qz5b\",layoutDependency:layoutDependency,layoutId:\"i_Qwxsw5j\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mkqob4-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"qlhwsxmhm-container\",nodeId:\"qlhwsxmhm\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"qlhwsxmhm\",layoutId:\"qlhwsxmhm\",serialNumber:toString(saeex7UoWrbxsfN9DX),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m214i\",layoutDependency:layoutDependency,layoutId:\"GMnEE1kxv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qrovmy-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"itjOqPdbC-container\",nodeId:\"itjOqPdbC\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"itjOqPdbC\",layoutId:\"itjOqPdbC\",serialNumber:toString(saeex7UoWrbxsfN9DX),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-b5116o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ojuRtuT1_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pt3l57-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"TUylApqMP-container\",nodeId:\"TUylApqMP\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"TUylApqMP\",layoutId:\"TUylApqMP\",serialNumber:toString(iAHomRPW9rbxsfN9DX),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"Bio/acc and Biohack: The Science Behind the Hype\"})}),className:\"framer-dw6o7k\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Goh1NxLeW\",text:O8SkeTdROrbxsfN9DX,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2cysln\",layoutDependency:layoutDependency,layoutId:\"wOilHZQeK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vf0038\",layoutDependency:layoutDependency,layoutId:\"QDu_aWJIH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Bio/acc and Biohacking have both become popular movements on Twitter of late. This session brings together people who 'hype' them up and people who temper these sectors with science and point out flawed approaches. Get ready for a spicy conversation.\"})}),className:\"framer-12no63u\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WwXk9dVo2\",text:kFLvvfggDrbxsfN9DX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lc4ebj\",layoutDependency:layoutDependency,layoutId:\"bY5cyYbDC\",children:collection38?.map(({b9KiniA39:b9KiniA39bY5cyYbDC,eoNm9cDSA:eoNm9cDSAbY5cyYbDC,ER_Czfpu7:ER_Czfpu7bY5cyYbDC,id:idbY5cyYbDC,spH3BjGqf:spH3BjGqfbY5cyYbDC,xWMZXIfAr:xWMZXIfArbY5cyYbDC},index38)=>{ER_Czfpu7bY5cyYbDC??=\"\";spH3BjGqfbY5cyYbDC??=\"\";xWMZXIfArbY5cyYbDC??=\"\";b9KiniA39bY5cyYbDC??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bY5cyYbDC-${idbY5cyYbDC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7bY5cyYbDC},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-o9j4wh\",layoutDependency:layoutDependency,layoutId:\"gmaVioVsE\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7bY5cyYbDC},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vkofuf-container\",layoutDependency:layoutDependency,layoutId:\"s_KRCoCoi-container\",nodeId:\"s_KRCoCoi\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArbY5cyYbDC,bmvNKeCaT:toResponsiveImage(eoNm9cDSAbY5cyYbDC),gOyyTkmTp:spH3BjGqfbY5cyYbDC,height:\"100%\",id:\"s_KRCoCoi\",layoutId:\"s_KRCoCoi\",uKYCERcEt:b9KiniA39bY5cyYbDC,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks19[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks19[1]}},baseVariant,gestureVariant)})})})})})})},idbY5cyYbDC);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0bi5h\",layoutDependency:layoutDependency,layoutId:\"eD7RG0N0g\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idrbxsfN9DX);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rmjfa6\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"xfT_IRylU\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xfT_IRylU\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"xfT_IRylU\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"xfT_IRylU\",name:\"id\",type:\"Identifier\"},{alias:\"RL3uSVOOY\",arguments:[{from:{alias:\"RL3uSVOOY\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"RL3uSVOOY\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"RL3uSVOOY\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"RL3uSVOOY\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"xfT_IRylU\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"xfT_IRylU\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xfT_IRylU\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"xfT_IRylU\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A10\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection41,paginationInfo20,loadMore20)=>/*#__PURE__*/_jsx(_Fragment,{children:collection41?.map(({iAHomRPW9:iAHomRPW9xfT_IRylU,id:idxfT_IRylU,kFLvvfggD:kFLvvfggDxfT_IRylU,kwa5SmhPn:kwa5SmhPnxfT_IRylU,O8SkeTdRO:O8SkeTdROxfT_IRylU,RL3uSVOOY:collection40,saeex7UoW:saeex7UoWxfT_IRylU},index41)=>{saeex7UoWxfT_IRylU??=0;iAHomRPW9xfT_IRylU??=0;O8SkeTdROxfT_IRylU??=\"\";kFLvvfggDxfT_IRylU??=\"\";kwa5SmhPnxfT_IRylU??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xfT_IRylU-${idxfT_IRylU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnxfT_IRylU},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dqri7h\",layoutDependency:layoutDependency,layoutId:\"V2clTXoip\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1andeyu\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"aEmvVw4Iq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nhwvam\",layoutDependency:layoutDependency,layoutId:\"AmL7qSYRu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ydibo8\",layoutDependency:layoutDependency,layoutId:\"JcM69rEAs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"10\"})}),className:\"framer-txcd3s\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LboRKaS7E\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yej6a3\",layoutDependency:layoutDependency,layoutId:\"GCZQaQI30\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ecbrhu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"E_aLX3jr8-container\",nodeId:\"E_aLX3jr8\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"E_aLX3jr8\",layoutId:\"E_aLX3jr8\",serialNumber:toString(saeex7UoWxfT_IRylU),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mrmkxi\",layoutDependency:layoutDependency,layoutId:\"fEVeh6lnQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gx9no1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"f_mgeiCWQ-container\",nodeId:\"f_mgeiCWQ\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"f_mgeiCWQ\",layoutId:\"f_mgeiCWQ\",serialNumber:toString(saeex7UoWxfT_IRylU),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-18n0bo5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vwoMReAas\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17zkpsn-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"b6ooagcYb-container\",nodeId:\"b6ooagcYb\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"b6ooagcYb\",layoutId:\"b6ooagcYb\",serialNumber:toString(iAHomRPW9xfT_IRylU),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Living Future: How SynBio, Genomics, and Regenerative Medicine are Transforming Human Health\"})}),className:\"framer-11x69bt\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BgpdQCtvR\",text:O8SkeTdROxfT_IRylU,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oj1pyu\",layoutDependency:layoutDependency,layoutId:\"vXAjyrpNb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6gytlu\",layoutDependency:layoutDependency,layoutId:\"ssiINV8T4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Synthetic biology is blurring the lines between biology and technology, unlocking breakthroughs in regenerative medicine, biofabrication, and personalized healthcare. This panel brings together leading innovators who are shaping the future of human health. Join this session to explore the role of multidisciplinary technologies in healthcare. Understand how genomics, synthetic biology, and regenerative medicine are personalizing treatment and examine the ethical and practical challenges in deploying next-gen biotechnologies.\"})}),className:\"framer-85k627\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YbbOwa0jP\",text:kFLvvfggDxfT_IRylU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojkmeq\",layoutDependency:layoutDependency,layoutId:\"RL3uSVOOY\",children:collection40?.map(({b9KiniA39:b9KiniA39RL3uSVOOY,eoNm9cDSA:eoNm9cDSARL3uSVOOY,ER_Czfpu7:ER_Czfpu7RL3uSVOOY,id:idRL3uSVOOY,spH3BjGqf:spH3BjGqfRL3uSVOOY,xWMZXIfAr:xWMZXIfArRL3uSVOOY},index40)=>{ER_Czfpu7RL3uSVOOY??=\"\";spH3BjGqfRL3uSVOOY??=\"\";xWMZXIfArRL3uSVOOY??=\"\";b9KiniA39RL3uSVOOY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RL3uSVOOY-${idRL3uSVOOY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7RL3uSVOOY},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ohmq0u\",layoutDependency:layoutDependency,layoutId:\"Fnm7mqFRA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7RL3uSVOOY},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks20=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jhqhz6-container\",layoutDependency:layoutDependency,layoutId:\"DmshCdEMC-container\",nodeId:\"DmshCdEMC\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArRL3uSVOOY,bmvNKeCaT:toResponsiveImage(eoNm9cDSARL3uSVOOY),gOyyTkmTp:spH3BjGqfRL3uSVOOY,height:\"100%\",id:\"DmshCdEMC\",layoutId:\"DmshCdEMC\",uKYCERcEt:b9KiniA39RL3uSVOOY,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks20[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks20[1]}},baseVariant,gestureVariant)})})})})})})},idRL3uSVOOY);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1h1io\",layoutDependency:layoutDependency,layoutId:\"kxpk2Zn6U\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idxfT_IRylU);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxu6xp\",\"data-framer-name\":\"11\",layoutDependency:layoutDependency,layoutId:\"hzOPlEeKz\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hzOPlEeKz\",data:GSBC2025CventUpload,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"hzOPlEeKz\",name:\"saeex7UoW\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"iAHomRPW9\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"O8SkeTdRO\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"kFLvvfggD\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"kwa5SmhPn\",type:\"Identifier\"},{collection:\"hzOPlEeKz\",name:\"id\",type:\"Identifier\"},{alias:\"w81b6idhp\",arguments:[{from:{alias:\"w81b6idhp\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:20},select:[{collection:\"w81b6idhp\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"w81b6idhp\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"sta7Gdr7j\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"lYjBV3xYl\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"rNaPW3wa6\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"qAuNxxISS\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"LxtjVSh8T\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"Udbnkgzib\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"kKELMwVfA\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"w81b6idhp\",name:\"spH3BjGqf\",type:\"Identifier\"},operator:\"==\",right:{collection:\"hzOPlEeKz\",name:\"upfz7fbI1\",type:\"Identifier\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}],functionName:\"ARRAY\",type:\"FunctionCall\"}],where:{left:{left:{left:{collection:\"hzOPlEeKz\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hzOPlEeKz\",name:\"aq2qtBklU\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"hzOPlEeKz\",name:\"GvjeSx82K\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"A11\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection43,paginationInfo21,loadMore21)=>/*#__PURE__*/_jsx(_Fragment,{children:collection43?.map(({iAHomRPW9:iAHomRPW9hzOPlEeKz,id:idhzOPlEeKz,kFLvvfggD:kFLvvfggDhzOPlEeKz,kwa5SmhPn:kwa5SmhPnhzOPlEeKz,O8SkeTdRO:O8SkeTdROhzOPlEeKz,saeex7UoW:saeex7UoWhzOPlEeKz,w81b6idhp:collection42},index43)=>{saeex7UoWhzOPlEeKz??=0;iAHomRPW9hzOPlEeKz??=0;O8SkeTdROhzOPlEeKz??=\"\";kFLvvfggDhzOPlEeKz??=\"\";kwa5SmhPnhzOPlEeKz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hzOPlEeKz-${idhzOPlEeKz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kwa5SmhPn:kwa5SmhPnhzOPlEeKz},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpmg50\",layoutDependency:layoutDependency,layoutId:\"s32r5mH_D\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p3tyjs\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"c1eE7n9xu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1opi4fx\",layoutDependency:layoutDependency,layoutId:\"u8aQhYOHa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-spv21x\",layoutDependency:layoutDependency,layoutId:\"dKf69kA7A\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30)))\"},children:\"11\"})}),className:\"framer-16e35yz\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fQiIL9Lp7\",style:{\"--extracted-gdpscs\":\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p55oox\",layoutDependency:layoutDependency,layoutId:\"LgKt1YU15\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-coizke-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"dVrGULrMs-container\",nodeId:\"dVrGULrMs\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelDateDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"dVrGULrMs\",layoutId:\"dVrGULrMs\",serialNumber:toString(saeex7UoWhzOPlEeKz),width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hfkz3t\",layoutDependency:layoutDependency,layoutId:\"iLVaOJU1m\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14q6uef-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"EnmAo7EsY-container\",nodeId:\"EnmAo7EsY\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"EnmAo7EsY\",layoutId:\"EnmAo7EsY\",serialNumber:toString(saeex7UoWhzOPlEeKz),width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",children:\"-\"})}),className:\"framer-lhlejv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ieUQBe9Nk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k6vnl0-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"zeMp_KDro-container\",nodeId:\"zeMp_KDro\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",children:/*#__PURE__*/_jsx(ExcelTimeDisplay,{color:\"rgb(0, 0, 0)\",fontSize:19,height:\"100%\",id:\"zeMp_KDro\",layoutId:\"zeMp_KDro\",serialNumber:toString(iAHomRPW9hzOPlEeKz),width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-7ubh2e\",\"data-styles-preset\":\"BJ7Nayh9V\",children:\"The Living Future: How SynBio, Genomics, and Regenerative Medicine are Transforming Human Health\"})}),className:\"framer-14e88p\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v0uPYRQaY\",text:O8SkeTdROhzOPlEeKz,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-197tkvv\",layoutDependency:layoutDependency,layoutId:\"mKCMNSLZC\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a992mx\",layoutDependency:layoutDependency,layoutId:\"Lke2oKH0C\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-aalybl\",\"data-styles-preset\":\"yOQUMjA6G\",children:\"Synthetic biology is blurring the lines between biology and technology, unlocking breakthroughs in regenerative medicine, biofabrication, and personalized healthcare. This panel brings together leading innovators who are shaping the future of human health. Join this session to explore the role of multidisciplinary technologies in healthcare. Understand how genomics, synthetic biology, and regenerative medicine are personalizing treatment and examine the ethical and practical challenges in deploying next-gen biotechnologies.\"})}),className:\"framer-tt60rs\",\"data-framer-name\":\"Session Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t9Weo_KDY\",text:kFLvvfggDhzOPlEeKz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-40nu99\",layoutDependency:layoutDependency,layoutId:\"w81b6idhp\",children:collection42?.map(({b9KiniA39:b9KiniA39w81b6idhp,eoNm9cDSA:eoNm9cDSAw81b6idhp,ER_Czfpu7:ER_Czfpu7w81b6idhp,id:idw81b6idhp,spH3BjGqf:spH3BjGqfw81b6idhp,xWMZXIfAr:xWMZXIfArw81b6idhp},index42)=>{ER_Czfpu7w81b6idhp??=\"\";spH3BjGqfw81b6idhp??=\"\";xWMZXIfArw81b6idhp??=\"\";b9KiniA39w81b6idhp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`w81b6idhp-${idw81b6idhp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7w81b6idhp},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1aetfau\",layoutDependency:layoutDependency,layoutId:\"cGMZjb408\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7gSJbGipgv},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7w81b6idhp},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks21=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wu5djb-container\",layoutDependency:layoutDependency,layoutId:\"GGny4iwc5-container\",nodeId:\"GGny4iwc5\",rendersWithMotion:true,scopeId:\"S9ELcZ8Oe\",whileHover:animation1,children:/*#__PURE__*/_jsx(SpeakerCard,{BHOdYPHwH:xWMZXIfArw81b6idhp,bmvNKeCaT:toResponsiveImage(eoNm9cDSAw81b6idhp),gOyyTkmTp:spH3BjGqfw81b6idhp,height:\"100%\",id:\"GGny4iwc5\",layoutId:\"GGny4iwc5\",uKYCERcEt:b9KiniA39w81b6idhp,variant:\"dVM3ONoOm\",width:\"100%\",wubGTdVEN:resolvedLinks21[0],...addPropertyOverrides({kvtobwPOJ:{wubGTdVEN:resolvedLinks21[1]}},baseVariant,gestureVariant)})})})})})})},idw81b6idhp);})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k5tend\",layoutDependency:layoutDependency,layoutId:\"EOZySxGLh\",style:{backgroundColor:\"var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, rgb(30, 30, 30))\"}})]})})})},idhzOPlEeKz);})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XRUDg.framer-1kogrz4, .framer-XRUDg .framer-1kogrz4 { display: block; }\",\".framer-XRUDg.framer-ptn5eq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1360px; }\",\".framer-XRUDg .framer-5u4qqx { 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; position: relative; width: 100%; }\",\".framer-XRUDg .framer-1qo5u7b, .framer-XRUDg .framer-mcj0tt { flex: none; height: 3px; overflow: hidden; position: relative; width: 100%; }\",\".framer-XRUDg .framer-jq11zp, .framer-XRUDg .framer-rv971o, .framer-XRUDg .framer-szge2, .framer-XRUDg .framer-1s5vpw8, .framer-XRUDg .framer-c7o0i4, .framer-XRUDg .framer-b8c1ec, .framer-XRUDg .framer-zwaw6h, .framer-XRUDg .framer-z33idx, .framer-XRUDg .framer-znewc3, .framer-XRUDg .framer-1ji2mxk, .framer-XRUDg .framer-5drmyu, .framer-XRUDg .framer-dn33q2, .framer-XRUDg .framer-98vun0, .framer-XRUDg .framer-pruj6x, .framer-XRUDg .framer-uhfs5q, .framer-XRUDg .framer-18i5xga, .framer-XRUDg .framer-kry30t, .framer-XRUDg .framer-10r6kqi, .framer-XRUDg .framer-ux5pii, .framer-XRUDg .framer-16awi6i, .framer-XRUDg .framer-rmjfa6, .framer-XRUDg .framer-nxu6xp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-1k7h37o, .framer-XRUDg .framer-10b85wd, .framer-XRUDg .framer-1lj1o4x, .framer-XRUDg .framer-1bvs5db, .framer-XRUDg .framer-182587i, .framer-XRUDg .framer-1cp5nkm, .framer-XRUDg .framer-ibwm29, .framer-XRUDg .framer-j0wch5, .framer-XRUDg .framer-cgkp2h, .framer-XRUDg .framer-r1vgkd, .framer-XRUDg .framer-zz3hed, .framer-XRUDg .framer-4t4ram, .framer-XRUDg .framer-1f5qy2i, .framer-XRUDg .framer-121dlgr, .framer-XRUDg .framer-1gece6h, .framer-XRUDg .framer-lk5xhn, .framer-XRUDg .framer-u5j7zg, .framer-XRUDg .framer-1cgl7gc, .framer-XRUDg .framer-1fias1u, .framer-XRUDg .framer-102bt0b, .framer-XRUDg .framer-dqri7h, .framer-XRUDg .framer-1rpmg50 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-xnrif5, .framer-XRUDg .framer-11ctp0t, .framer-XRUDg .framer-vgx5yv, .framer-XRUDg .framer-1ba2ix3, .framer-XRUDg .framer-1d9lct4, .framer-XRUDg .framer-19ql636, .framer-XRUDg .framer-mt6vv6, .framer-XRUDg .framer-103p9wl, .framer-XRUDg .framer-o8oga1, .framer-XRUDg .framer-26av9x, .framer-XRUDg .framer-zooqeo, .framer-XRUDg .framer-fiaeag, .framer-XRUDg .framer-dhhve3, .framer-XRUDg .framer-lp6ccr, .framer-XRUDg .framer-23bsgl, .framer-XRUDg .framer-g3shk3, .framer-XRUDg .framer-1u78rb4, .framer-XRUDg .framer-1dt700d, .framer-XRUDg .framer-1s95upt, .framer-XRUDg .framer-1utwtox, .framer-XRUDg .framer-1qgfjt6, .framer-XRUDg .framer-nvc6m6, .framer-XRUDg .framer-ybvrf6, .framer-XRUDg .framer-xmafj7, .framer-XRUDg .framer-1ga4itg, .framer-XRUDg .framer-dzohoy, .framer-XRUDg .framer-15edp06, .framer-XRUDg .framer-17ry6hs, .framer-XRUDg .framer-8ap1tt, .framer-XRUDg .framer-1mq41fu, .framer-XRUDg .framer-1ve0xo5, .framer-XRUDg .framer-gqd7xd, .framer-XRUDg .framer-1oayqqz, .framer-XRUDg .framer-acu6gq, .framer-XRUDg .framer-q2c8db, .framer-XRUDg .framer-t0qbde, .framer-XRUDg .framer-ss2sx2, .framer-XRUDg .framer-1dr0tcx, .framer-XRUDg .framer-mei75v, .framer-XRUDg .framer-1sf1fge, .framer-XRUDg .framer-1kkmrij, .framer-XRUDg .framer-1fpm98y, .framer-XRUDg .framer-12q7zvv, .framer-XRUDg .framer-1t2ed3z, .framer-XRUDg .framer-1sm2l93, .framer-XRUDg .framer-12q8pek, .framer-XRUDg .framer-14608gs, .framer-XRUDg .framer-gehrct, .framer-XRUDg .framer-vf0038, .framer-XRUDg .framer-1andeyu, .framer-XRUDg .framer-1nhwvam, .framer-XRUDg .framer-6gytlu, .framer-XRUDg .framer-1p3tyjs, .framer-XRUDg .framer-1opi4fx, .framer-XRUDg .framer-a992mx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-vozgh0, .framer-XRUDg .framer-15jyuvp, .framer-XRUDg .framer-hmg9ha, .framer-XRUDg .framer-3gf7x9, .framer-XRUDg .framer-1ijptv6, .framer-XRUDg .framer-17oqk7l, .framer-XRUDg .framer-1togz8f, .framer-XRUDg .framer-18vutq0, .framer-XRUDg .framer-etbqel, .framer-XRUDg .framer-1htblaq, .framer-XRUDg .framer-19fpdak, .framer-XRUDg .framer-15zg6oq, .framer-XRUDg .framer-h2ietx, .framer-XRUDg .framer-ncwc5k, .framer-XRUDg .framer-f3j7ry, .framer-XRUDg .framer-schtw2, .framer-XRUDg .framer-12okwlu, .framer-XRUDg .framer-1ik9ic, .framer-XRUDg .framer-17592ev, .framer-XRUDg .framer-ouv43g, .framer-XRUDg .framer-z6ywvz, .framer-XRUDg .framer-1lb2p13, .framer-XRUDg .framer-w270ei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-1nwc55w, .framer-XRUDg .framer-uo1pb5, .framer-XRUDg .framer-4l2pyh, .framer-XRUDg .framer-1hmpaoa, .framer-XRUDg .framer-qaaag3, .framer-XRUDg .framer-138wuaz, .framer-XRUDg .framer-19oa1br, .framer-XRUDg .framer-1xukvx4, .framer-XRUDg .framer-1hb6s1p, .framer-XRUDg .framer-811vtp, .framer-XRUDg .framer-lapgff, .framer-XRUDg .framer-m40zee, .framer-XRUDg .framer-frnx7k, .framer-XRUDg .framer-4ifiys, .framer-XRUDg .framer-1n3gjvt, .framer-XRUDg .framer-mkib4b, .framer-XRUDg .framer-cd20oa, .framer-XRUDg .framer-13p08o, .framer-XRUDg .framer-dsp9i, .framer-XRUDg .framer-8il74p, .framer-XRUDg .framer-rj3dha, .framer-XRUDg .framer-1ylvxfb, .framer-XRUDg .framer-84fswd, .framer-XRUDg .framer-tmtvoz, .framer-XRUDg .framer-v2e3mg, .framer-XRUDg .framer-7msre0, .framer-XRUDg .framer-282i54, .framer-XRUDg .framer-1dm8s9f, .framer-XRUDg .framer-8db9q5, .framer-XRUDg .framer-1m99n5s, .framer-XRUDg .framer-txcd3s, .framer-XRUDg .framer-16e35yz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-XRUDg .framer-15jwtln, .framer-XRUDg .framer-dqpgr6, .framer-XRUDg .framer-tk1yqw, .framer-XRUDg .framer-twgmmu, .framer-XRUDg .framer-nuynw9, .framer-XRUDg .framer-1r25wmx, .framer-XRUDg .framer-1ski4v5, .framer-XRUDg .framer-1ecyxbj, .framer-XRUDg .framer-rzkhhg, .framer-XRUDg .framer-3hsael, .framer-XRUDg .framer-1dcp57a, .framer-XRUDg .framer-ktfxok, .framer-XRUDg .framer-xfd89e, .framer-XRUDg .framer-9mglnl, .framer-XRUDg .framer-17i367l, .framer-XRUDg .framer-1jiap4b, .framer-XRUDg .framer-1eu51pz, .framer-XRUDg .framer-zmz095, .framer-XRUDg .framer-rfqp1a, .framer-XRUDg .framer-19pi0x4, .framer-XRUDg .framer-1a33m09, .framer-XRUDg .framer-165f8do { flex: none; height: 65px; overflow: hidden; position: relative; width: 1px; }\",\".framer-XRUDg .framer-16rxprp, .framer-XRUDg .framer-l5rxu4, .framer-XRUDg .framer-1o1cu96, .framer-XRUDg .framer-6sda48, .framer-XRUDg .framer-1jajeor, .framer-XRUDg .framer-pq12dz, .framer-XRUDg .framer-kihubh, .framer-XRUDg .framer-oyyoyk, .framer-XRUDg .framer-103i2n3, .framer-XRUDg .framer-cn0amu, .framer-XRUDg .framer-10p7hud { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XRUDg .framer-1h7vh60-container, .framer-XRUDg .framer-sbaoej-container, .framer-XRUDg .framer-17djgot-container, .framer-XRUDg .framer-bgxmj2-container, .framer-XRUDg .framer-3w6frs-container, .framer-XRUDg .framer-1yt8jz6-container, .framer-XRUDg .framer-13wtl82-container, .framer-XRUDg .framer-8vodj7-container, .framer-XRUDg .framer-m07vtg-container, .framer-XRUDg .framer-7g1aon-container, .framer-XRUDg .framer-481eik-container, .framer-XRUDg .framer-px65yv-container, .framer-XRUDg .framer-1h2eu7a-container, .framer-XRUDg .framer-7w0obn-container, .framer-XRUDg .framer-16zjvjt-container, .framer-XRUDg .framer-16idxkg-container, .framer-XRUDg .framer-1p9s3d0-container, .framer-XRUDg .framer-jdk3vf-container, .framer-XRUDg .framer-1nz4vle-container, .framer-XRUDg .framer-1fhvoo1-container, .framer-XRUDg .framer-lk5azo-container, .framer-XRUDg .framer-1k51no2-container, .framer-XRUDg .framer-7y6m23-container, .framer-XRUDg .framer-zfvg5c-container, .framer-XRUDg .framer-1majpal-container, .framer-XRUDg .framer-18y0tq-container, .framer-XRUDg .framer-1m6es12-container, .framer-XRUDg .framer-q7pjru-container, .framer-XRUDg .framer-kmikp6-container, .framer-XRUDg .framer-tsswjo-container, .framer-XRUDg .framer-1bxcagd-container, .framer-XRUDg .framer-1clql4a-container, .framer-XRUDg .framer-qtuo2a-container, .framer-XRUDg .framer-209igw-container, .framer-XRUDg .framer-3ruthm-container, .framer-XRUDg .framer-nv80wx-container, .framer-XRUDg .framer-1dadcsf-container, .framer-XRUDg .framer-gmi4a3-container, .framer-XRUDg .framer-1ce6r61-container, .framer-XRUDg .framer-23o040-container, .framer-XRUDg .framer-1cdcubo-container, .framer-XRUDg .framer-kxbujy-container, .framer-XRUDg .framer-1thatrf-container, .framer-XRUDg .framer-1h99d9j-container, .framer-XRUDg .framer-r4x3oc-container, .framer-XRUDg .framer-13gzi8m-container, .framer-XRUDg .framer-540wwr-container, .framer-XRUDg .framer-135dgw0-container, .framer-XRUDg .framer-zk6c7w-container, .framer-XRUDg .framer-1ocvosv-container, .framer-XRUDg .framer-t9xrmu-container, .framer-XRUDg .framer-eaxvjw-container, .framer-XRUDg .framer-mup3n3-container, .framer-XRUDg .framer-mrg0zg-container, .framer-XRUDg .framer-lc0gi1-container, .framer-XRUDg .framer-5gcg04-container, .framer-XRUDg .framer-f8g4rk-container, .framer-XRUDg .framer-mkqob4-container, .framer-XRUDg .framer-qrovmy-container, .framer-XRUDg .framer-1pt3l57-container, .framer-XRUDg .framer-1ecbrhu-container, .framer-XRUDg .framer-1gx9no1-container, .framer-XRUDg .framer-17zkpsn-container, .framer-XRUDg .framer-coizke-container, .framer-XRUDg .framer-14q6uef-container, .framer-XRUDg .framer-k6vnl0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XRUDg .framer-1mpxd66, .framer-XRUDg .framer-2vy8pc, .framer-XRUDg .framer-12x4h6b, .framer-XRUDg .framer-i1p68v, .framer-XRUDg .framer-156g12a, .framer-XRUDg .framer-c1phpz, .framer-XRUDg .framer-g4visg, .framer-XRUDg .framer-1phemhm, .framer-XRUDg .framer-ywv96x { 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: hidden; padding: 0px; position: relative; width: 96px; }\",\".framer-XRUDg .framer-1j3gru2, .framer-XRUDg .framer-d6fk5e, .framer-XRUDg .framer-im430s, .framer-XRUDg .framer-1hfu96l, .framer-XRUDg .framer-sabwgd, .framer-XRUDg .framer-z3331k, .framer-XRUDg .framer-1rll1z4, .framer-XRUDg .framer-1e1qaze, .framer-XRUDg .framer-1wx6mwv, .framer-XRUDg .framer-p0zt75, .framer-XRUDg .framer-1tus20o, .framer-XRUDg .framer-1gyzipi, .framer-XRUDg .framer-93l5mj, .framer-XRUDg .framer-1o6u5sa, .framer-XRUDg .framer-kjmieh, .framer-XRUDg .framer-1soie9r, .framer-XRUDg .framer-ilx40e, .framer-XRUDg .framer-1m931th, .framer-XRUDg .framer-1ngdhms, .framer-XRUDg .framer-b5116o, .framer-XRUDg .framer-18n0bo5, .framer-XRUDg .framer-lhlejv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XRUDg .framer-7szogz, .framer-XRUDg .framer-1ltxy21, .framer-XRUDg .framer-163fnxu, .framer-XRUDg .framer-1u00hp1, .framer-XRUDg .framer-z311u4, .framer-XRUDg .framer-1pl2enl, .framer-XRUDg .framer-15wuz31, .framer-XRUDg .framer-8du34g, .framer-XRUDg .framer-e6w3nc, .framer-XRUDg .framer-1gd3d7a, .framer-XRUDg .framer-kvz9es { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XRUDg .framer-1568cu3, .framer-XRUDg .framer-1u4g4m1, .framer-XRUDg .framer-g6c48a, .framer-XRUDg .framer-1xvp42i, .framer-XRUDg .framer-o0ssub, .framer-XRUDg .framer-lasfg2, .framer-XRUDg .framer-1ie00g4, .framer-XRUDg .framer-pflucs, .framer-XRUDg .framer-14l1s46, .framer-XRUDg .framer-5ixl1i, .framer-XRUDg .framer-ifqf54 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; min-width: 106px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XRUDg .framer-1bm2pi, .framer-XRUDg .framer-1l3upa6, .framer-XRUDg .framer-8co6qp, .framer-XRUDg .framer-1v54g8d, .framer-XRUDg .framer-ad3o6w, .framer-XRUDg .framer-1xxn42t, .framer-XRUDg .framer-1wbtubc, .framer-XRUDg .framer-5u8fdz, .framer-XRUDg .framer-1skprhh, .framer-XRUDg .framer-61ru3o, .framer-XRUDg .framer-1v2jpby, .framer-XRUDg .framer-15q1f99 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-XRUDg .framer-glpyq6, .framer-XRUDg .framer-2aoihi, .framer-XRUDg .framer-1q26d22, .framer-XRUDg .framer-jmfn43, .framer-XRUDg .framer-gza7lg, .framer-XRUDg .framer-zffemg, .framer-XRUDg .framer-1sza1s6, .framer-XRUDg .framer-1ylgj2t, .framer-XRUDg .framer-1w15dr9, .framer-XRUDg .framer-jzt3w4, .framer-XRUDg .framer-16vxbqz, .framer-XRUDg .framer-fx7isj, .framer-XRUDg .framer-11zecp1, .framer-XRUDg .framer-atsdj6, .framer-XRUDg .framer-1wvie3y, .framer-XRUDg .framer-11a3u10, .framer-XRUDg .framer-7s1p8r, .framer-XRUDg .framer-ku0oom, .framer-XRUDg .framer-vexqha, .framer-XRUDg .framer-t3fehx, .framer-XRUDg .framer-1leghkw, .framer-XRUDg .framer-w14gdn, .framer-XRUDg .framer-1pa8x37, .framer-XRUDg .framer-ka4vt2, .framer-XRUDg .framer-1gc7rlk, .framer-XRUDg .framer-1osevkr, .framer-XRUDg .framer-jxy7ca, .framer-XRUDg .framer-dw6o7k, .framer-XRUDg .framer-12no63u, .framer-XRUDg .framer-11x69bt, .framer-XRUDg .framer-85k627, .framer-XRUDg .framer-14e88p, .framer-XRUDg .framer-tt60rs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XRUDg .framer-1mrb0bw, .framer-XRUDg .framer-fqee54, .framer-XRUDg .framer-o4o867, .framer-XRUDg .framer-1qxv4yg, .framer-XRUDg .framer-1oeal8h, .framer-XRUDg .framer-1ys4dwe, .framer-XRUDg .framer-1arrbme, .framer-XRUDg .framer-1t8he3c, .framer-XRUDg .framer-1xvr4d0, .framer-XRUDg .framer-p69w3g, .framer-XRUDg .framer-q46db6, .framer-XRUDg .framer-krt8xz, .framer-XRUDg .framer-1i8hbxx, .framer-XRUDg .framer-9q9e81, .framer-XRUDg .framer-1vnrdyk, .framer-XRUDg .framer-d6uayx, .framer-XRUDg .framer-pw06wd, .framer-XRUDg .framer-1vhg92d, .framer-XRUDg .framer-1ua6wvn, .framer-XRUDg .framer-lc4ebj, .framer-XRUDg .framer-1ojkmeq, .framer-XRUDg .framer-40nu99 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 26px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-1yh4qpb, .framer-XRUDg .framer-14z0xuj, .framer-XRUDg .framer-1nw2ukf, .framer-XRUDg .framer-1416q4s, .framer-XRUDg .framer-107gy9t, .framer-XRUDg .framer-qrsm3, .framer-XRUDg .framer-eh23c, .framer-XRUDg .framer-cgmqvq, .framer-XRUDg .framer-1taip60, .framer-XRUDg .framer-jb2awu, .framer-XRUDg .framer-1l8ree, .framer-XRUDg .framer-4yfkmu, .framer-XRUDg .framer-yd5dzw, .framer-XRUDg .framer-1d29sj, .framer-XRUDg .framer-1nsa6tv, .framer-XRUDg .framer-14f5n3t, .framer-XRUDg .framer-11d9i1w, .framer-XRUDg .framer-o9j4wh, .framer-XRUDg .framer-1ohmq0u, .framer-XRUDg .framer-1aetfau { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-XRUDg .framer-3yh1be-container, .framer-XRUDg .framer-17h8b9q-container, .framer-XRUDg .framer-o6mxpx-container, .framer-XRUDg .framer-8uz25q-container, .framer-XRUDg .framer-1ch1kz5-container, .framer-XRUDg .framer-1g53g9g-container, .framer-XRUDg .framer-thpp3j-container, .framer-XRUDg .framer-uev57v-container, .framer-XRUDg .framer-x8xbqb-container, .framer-XRUDg .framer-1d27tq8-container, .framer-XRUDg .framer-1vjskeq-container, .framer-XRUDg .framer-1qmb8qf-container, .framer-XRUDg .framer-1vxwbuf-container, .framer-XRUDg .framer-1oigac0-container, .framer-XRUDg .framer-uffa5p-container, .framer-XRUDg .framer-33wip4-container, .framer-XRUDg .framer-myfzh5-container, .framer-XRUDg .framer-tlbqvg-container, .framer-XRUDg .framer-8qmnfh-container, .framer-XRUDg .framer-vkofuf-container, .framer-XRUDg .framer-1jhqhz6-container, .framer-XRUDg .framer-wu5djb-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XRUDg .framer-9sjhnw, .framer-XRUDg .framer-ysbmuj, .framer-XRUDg .framer-1rshm4i, .framer-XRUDg .framer-rabd20, .framer-XRUDg .framer-1wfx3up, .framer-XRUDg .framer-12caik4, .framer-XRUDg .framer-h6pfkv, .framer-XRUDg .framer-1uvqz40, .framer-XRUDg .framer-b8x38f, .framer-XRUDg .framer-62iwoo, .framer-XRUDg .framer-y3ld44 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 95px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XRUDg .framer-ixerca, .framer-XRUDg .framer-1t0imx1, .framer-XRUDg .framer-edcjf6, .framer-XRUDg .framer-1dqm5bc, .framer-XRUDg .framer-1bw42l7, .framer-XRUDg .framer-vkc2nt, .framer-XRUDg .framer-1m9jfvr, .framer-XRUDg .framer-kcajt9, .framer-XRUDg .framer-189ivq2, .framer-XRUDg .framer-jge4ng, .framer-XRUDg .framer-1drgfs8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 51px; }\",\".framer-XRUDg .framer-hfpjnz, .framer-XRUDg .framer-ji7rle, .framer-XRUDg .framer-4o4ybf, .framer-XRUDg .framer-mew18i, .framer-XRUDg .framer-nz56vp, .framer-XRUDg .framer-12o0y12, .framer-XRUDg .framer-1utwp6i, .framer-XRUDg .framer-gk5xuc, .framer-XRUDg .framer-1qzg1ky, .framer-XRUDg .framer-vamcs1, .framer-XRUDg .framer-zninik, .framer-XRUDg .framer-1n2zdyl, .framer-XRUDg .framer-zykd3f, .framer-XRUDg .framer-o29mha, .framer-XRUDg .framer-1qz5btk, .framer-XRUDg .framer-13uweb8, .framer-XRUDg .framer-11lcmlu, .framer-XRUDg .framer-1fasb5b, .framer-XRUDg .framer-fvi5kv, .framer-XRUDg .framer-1l0bi5h, .framer-XRUDg .framer-1t1h1io, .framer-XRUDg .framer-1k5tend { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-XRUDg .framer-108onrs, .framer-XRUDg .framer-1g3x7rj { 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; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-XRUDg .framer-12d1gy6 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-XRUDg .framer-1y8pfyf, .framer-XRUDg .framer-1h8w4et { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 96px; }\",\".framer-XRUDg .framer-19qilmt, .framer-XRUDg .framer-27wdp3, .framer-XRUDg .framer-adtt6o, .framer-XRUDg .framer-oic5rj, .framer-XRUDg .framer-z7xaeu, .framer-XRUDg .framer-10ojfdk, .framer-XRUDg .framer-1pd68yu, .framer-XRUDg .framer-sm7hl4, .framer-XRUDg .framer-wkr19o, .framer-XRUDg .framer-kgleto, .framer-XRUDg .framer-1uk3vl, .framer-XRUDg .framer-1ydibo8, .framer-XRUDg .framer-spv21x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XRUDg .framer-6x852a, .framer-XRUDg .framer-178ahte, .framer-XRUDg .framer-y1nfr8, .framer-XRUDg .framer-1e373sx, .framer-XRUDg .framer-ujaqqr, .framer-XRUDg .framer-1tawxe1, .framer-XRUDg .framer-15fgtbi, .framer-XRUDg .framer-1jz018o, .framer-XRUDg .framer-84qz5b, .framer-XRUDg .framer-1yej6a3, .framer-XRUDg .framer-1p55oox { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XRUDg .framer-g0eiem, .framer-XRUDg .framer-1h2g5am, .framer-XRUDg .framer-1vkpf4l, .framer-XRUDg .framer-1flpmhn, .framer-XRUDg .framer-bpfff3, .framer-XRUDg .framer-55p984, .framer-XRUDg .framer-1iooru7, .framer-XRUDg .framer-1c465be, .framer-XRUDg .framer-7m214i, .framer-XRUDg .framer-1mrmkxi, .framer-XRUDg .framer-hfkz3t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XRUDg .framer-43ze4q, .framer-XRUDg .framer-qz3f11, .framer-XRUDg .framer-2ugm9z, .framer-XRUDg .framer-evin7, .framer-XRUDg .framer-mbaou3, .framer-XRUDg .framer-2cysln, .framer-XRUDg .framer-oj1pyu, .framer-XRUDg .framer-197tkvv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XRUDg.framer-ptn5eq, .framer-XRUDg .framer-5u4qqx, .framer-XRUDg .framer-jq11zp, .framer-XRUDg .framer-1k7h37o, .framer-XRUDg .framer-xnrif5, .framer-XRUDg .framer-11ctp0t, .framer-XRUDg .framer-vozgh0, .framer-XRUDg .framer-16rxprp, .framer-XRUDg .framer-1mpxd66, .framer-XRUDg .framer-15jyuvp, .framer-XRUDg .framer-1568cu3, .framer-XRUDg .framer-1bm2pi, .framer-XRUDg .framer-1mrb0bw, .framer-XRUDg .framer-1yh4qpb, .framer-XRUDg .framer-9sjhnw, .framer-XRUDg .framer-rv971o, .framer-XRUDg .framer-10b85wd, .framer-XRUDg .framer-vgx5yv, .framer-XRUDg .framer-1ba2ix3, .framer-XRUDg .framer-hmg9ha, .framer-XRUDg .framer-l5rxu4, .framer-XRUDg .framer-2vy8pc, .framer-XRUDg .framer-3gf7x9, .framer-XRUDg .framer-1u4g4m1, .framer-XRUDg .framer-1l3upa6, .framer-XRUDg .framer-fqee54, .framer-XRUDg .framer-108onrs, .framer-XRUDg .framer-ysbmuj, .framer-XRUDg .framer-szge2, .framer-XRUDg .framer-1lj1o4x, .framer-XRUDg .framer-1d9lct4, .framer-XRUDg .framer-19ql636, .framer-XRUDg .framer-1ijptv6, .framer-XRUDg .framer-1o1cu96, .framer-XRUDg .framer-12x4h6b, .framer-XRUDg .framer-17oqk7l, .framer-XRUDg .framer-g6c48a, .framer-XRUDg .framer-8co6qp, .framer-XRUDg .framer-o4o867, .framer-XRUDg .framer-14z0xuj, .framer-XRUDg .framer-1rshm4i, .framer-XRUDg .framer-1s5vpw8, .framer-XRUDg .framer-1bvs5db, .framer-XRUDg .framer-mt6vv6, .framer-XRUDg .framer-103p9wl, .framer-XRUDg .framer-1togz8f, .framer-XRUDg .framer-6sda48, .framer-XRUDg .framer-i1p68v, .framer-XRUDg .framer-18vutq0, .framer-XRUDg .framer-1xvp42i, .framer-XRUDg .framer-1v54g8d, .framer-XRUDg .framer-1qxv4yg, .framer-XRUDg .framer-1nw2ukf, .framer-XRUDg .framer-rabd20, .framer-XRUDg .framer-c7o0i4, .framer-XRUDg .framer-182587i, .framer-XRUDg .framer-o8oga1, .framer-XRUDg .framer-26av9x, .framer-XRUDg .framer-etbqel, .framer-XRUDg .framer-1jajeor, .framer-XRUDg .framer-156g12a, .framer-XRUDg .framer-1htblaq, .framer-XRUDg .framer-o0ssub, .framer-XRUDg .framer-ad3o6w, .framer-XRUDg .framer-1oeal8h, .framer-XRUDg .framer-1416q4s, .framer-XRUDg .framer-1wfx3up, .framer-XRUDg .framer-b8c1ec, .framer-XRUDg .framer-1cp5nkm, .framer-XRUDg .framer-zooqeo, .framer-XRUDg .framer-fiaeag, .framer-XRUDg .framer-19fpdak, .framer-XRUDg .framer-pq12dz, .framer-XRUDg .framer-c1phpz, .framer-XRUDg .framer-15zg6oq, .framer-XRUDg .framer-lasfg2, .framer-XRUDg .framer-1xxn42t, .framer-XRUDg .framer-1ys4dwe, .framer-XRUDg .framer-107gy9t, .framer-XRUDg .framer-12caik4, .framer-XRUDg .framer-zwaw6h, .framer-XRUDg .framer-ibwm29, .framer-XRUDg .framer-dhhve3, .framer-XRUDg .framer-lp6ccr, .framer-XRUDg .framer-h2ietx, .framer-XRUDg .framer-kihubh, .framer-XRUDg .framer-g4visg, .framer-XRUDg .framer-ncwc5k, .framer-XRUDg .framer-1ie00g4, .framer-XRUDg .framer-1wbtubc, .framer-XRUDg .framer-1arrbme, .framer-XRUDg .framer-qrsm3, .framer-XRUDg .framer-h6pfkv, .framer-XRUDg .framer-z33idx, .framer-XRUDg .framer-j0wch5, .framer-XRUDg .framer-23bsgl, .framer-XRUDg .framer-g3shk3, .framer-XRUDg .framer-f3j7ry, .framer-XRUDg .framer-oyyoyk, .framer-XRUDg .framer-1y8pfyf, .framer-XRUDg .framer-schtw2, .framer-XRUDg .framer-pflucs, .framer-XRUDg .framer-5u8fdz, .framer-XRUDg .framer-1t8he3c, .framer-XRUDg .framer-eh23c, .framer-XRUDg .framer-1uvqz40, .framer-XRUDg .framer-znewc3, .framer-XRUDg .framer-cgkp2h, .framer-XRUDg .framer-1u78rb4, .framer-XRUDg .framer-1dt700d, .framer-XRUDg .framer-12okwlu, .framer-XRUDg .framer-103i2n3, .framer-XRUDg .framer-1h8w4et, .framer-XRUDg .framer-1ik9ic, .framer-XRUDg .framer-14l1s46, .framer-XRUDg .framer-1skprhh, .framer-XRUDg .framer-1xvr4d0, .framer-XRUDg .framer-cgmqvq, .framer-XRUDg .framer-b8x38f, .framer-XRUDg .framer-1ji2mxk, .framer-XRUDg .framer-r1vgkd, .framer-XRUDg .framer-1s95upt, .framer-XRUDg .framer-1utwtox, .framer-XRUDg .framer-17592ev, .framer-XRUDg .framer-cn0amu, .framer-XRUDg .framer-1phemhm, .framer-XRUDg .framer-ouv43g, .framer-XRUDg .framer-5ixl1i, .framer-XRUDg .framer-61ru3o, .framer-XRUDg .framer-p69w3g, .framer-XRUDg .framer-1taip60, .framer-XRUDg .framer-62iwoo, .framer-XRUDg .framer-5drmyu, .framer-XRUDg .framer-zz3hed, .framer-XRUDg .framer-1qgfjt6, .framer-XRUDg .framer-nvc6m6, .framer-XRUDg .framer-z6ywvz, .framer-XRUDg .framer-10p7hud, .framer-XRUDg .framer-ywv96x, .framer-XRUDg .framer-1lb2p13, .framer-XRUDg .framer-ifqf54, .framer-XRUDg .framer-1v2jpby, .framer-XRUDg .framer-q46db6, .framer-XRUDg .framer-1g3x7rj, .framer-XRUDg .framer-y3ld44, .framer-XRUDg .framer-ybvrf6, .framer-XRUDg .framer-dn33q2, .framer-XRUDg .framer-4t4ram, .framer-XRUDg .framer-xmafj7, .framer-XRUDg .framer-1ga4itg, .framer-XRUDg .framer-19qilmt, .framer-XRUDg .framer-6x852a, .framer-XRUDg .framer-g0eiem, .framer-XRUDg .framer-43ze4q, .framer-XRUDg .framer-dzohoy, .framer-XRUDg .framer-krt8xz, .framer-XRUDg .framer-jb2awu, .framer-XRUDg .framer-98vun0, .framer-XRUDg .framer-1f5qy2i, .framer-XRUDg .framer-15edp06, .framer-XRUDg .framer-17ry6hs, .framer-XRUDg .framer-27wdp3, .framer-XRUDg .framer-178ahte, .framer-XRUDg .framer-1h2g5am, .framer-XRUDg .framer-adtt6o, .framer-XRUDg .framer-8ap1tt, .framer-XRUDg .framer-1i8hbxx, .framer-XRUDg .framer-1l8ree, .framer-XRUDg .framer-pruj6x, .framer-XRUDg .framer-121dlgr, .framer-XRUDg .framer-1mq41fu, .framer-XRUDg .framer-1ve0xo5, .framer-XRUDg .framer-oic5rj, .framer-XRUDg .framer-y1nfr8, .framer-XRUDg .framer-1vkpf4l, .framer-XRUDg .framer-z7xaeu, .framer-XRUDg .framer-gqd7xd, .framer-XRUDg .framer-9q9e81, .framer-XRUDg .framer-4yfkmu, .framer-XRUDg .framer-uhfs5q, .framer-XRUDg .framer-1gece6h, .framer-XRUDg .framer-1oayqqz, .framer-XRUDg .framer-acu6gq, .framer-XRUDg .framer-10ojfdk, .framer-XRUDg .framer-1e373sx, .framer-XRUDg .framer-1flpmhn, .framer-XRUDg .framer-qz3f11, .framer-XRUDg .framer-q2c8db, .framer-XRUDg .framer-1vnrdyk, .framer-XRUDg .framer-yd5dzw, .framer-XRUDg .framer-18i5xga, .framer-XRUDg .framer-lk5xhn, .framer-XRUDg .framer-t0qbde, .framer-XRUDg .framer-ss2sx2, .framer-XRUDg .framer-1pd68yu, .framer-XRUDg .framer-ujaqqr, .framer-XRUDg .framer-bpfff3, .framer-XRUDg .framer-w270ei, .framer-XRUDg .framer-15q1f99, .framer-XRUDg .framer-d6uayx, .framer-XRUDg .framer-1d29sj, .framer-XRUDg .framer-kry30t, .framer-XRUDg .framer-u5j7zg, .framer-XRUDg .framer-1dr0tcx, .framer-XRUDg .framer-mei75v, .framer-XRUDg .framer-sm7hl4, .framer-XRUDg .framer-1tawxe1, .framer-XRUDg .framer-55p984, .framer-XRUDg .framer-2ugm9z, .framer-XRUDg .framer-1sf1fge, .framer-XRUDg .framer-pw06wd, .framer-XRUDg .framer-1nsa6tv, .framer-XRUDg .framer-10r6kqi, .framer-XRUDg .framer-1cgl7gc, .framer-XRUDg .framer-1kkmrij, .framer-XRUDg .framer-1fpm98y, .framer-XRUDg .framer-wkr19o, .framer-XRUDg .framer-15fgtbi, .framer-XRUDg .framer-1iooru7, .framer-XRUDg .framer-evin7, .framer-XRUDg .framer-12q7zvv, .framer-XRUDg .framer-1vhg92d, .framer-XRUDg .framer-14f5n3t, .framer-XRUDg .framer-ux5pii, .framer-XRUDg .framer-1fias1u, .framer-XRUDg .framer-1t2ed3z, .framer-XRUDg .framer-1sm2l93, .framer-XRUDg .framer-kgleto, .framer-XRUDg .framer-1jz018o, .framer-XRUDg .framer-1c465be, .framer-XRUDg .framer-mbaou3, .framer-XRUDg .framer-12q8pek, .framer-XRUDg .framer-1ua6wvn, .framer-XRUDg .framer-11d9i1w, .framer-XRUDg .framer-16awi6i, .framer-XRUDg .framer-102bt0b, .framer-XRUDg .framer-14608gs, .framer-XRUDg .framer-gehrct, .framer-XRUDg .framer-1uk3vl, .framer-XRUDg .framer-84qz5b, .framer-XRUDg .framer-7m214i, .framer-XRUDg .framer-2cysln, .framer-XRUDg .framer-vf0038, .framer-XRUDg .framer-lc4ebj, .framer-XRUDg .framer-o9j4wh, .framer-XRUDg .framer-rmjfa6, .framer-XRUDg .framer-dqri7h, .framer-XRUDg .framer-1andeyu, .framer-XRUDg .framer-1nhwvam, .framer-XRUDg .framer-1ydibo8, .framer-XRUDg .framer-1yej6a3, .framer-XRUDg .framer-1mrmkxi, .framer-XRUDg .framer-oj1pyu, .framer-XRUDg .framer-6gytlu, .framer-XRUDg .framer-1ojkmeq, .framer-XRUDg .framer-1ohmq0u, .framer-XRUDg .framer-nxu6xp, .framer-XRUDg .framer-1rpmg50, .framer-XRUDg .framer-1p3tyjs, .framer-XRUDg .framer-1opi4fx, .framer-XRUDg .framer-spv21x, .framer-XRUDg .framer-1p55oox, .framer-XRUDg .framer-hfkz3t, .framer-XRUDg .framer-197tkvv, .framer-XRUDg .framer-a992mx, .framer-XRUDg .framer-40nu99, .framer-XRUDg .framer-1aetfau { gap: 0px; } .framer-XRUDg.framer-ptn5eq > *, .framer-XRUDg .framer-5u4qqx > *, .framer-XRUDg .framer-1k7h37o > *, .framer-XRUDg .framer-xnrif5 > *, .framer-XRUDg .framer-11ctp0t > *, .framer-XRUDg .framer-16rxprp > *, .framer-XRUDg .framer-1568cu3 > *, .framer-XRUDg .framer-1bm2pi > *, .framer-XRUDg .framer-10b85wd > *, .framer-XRUDg .framer-vgx5yv > *, .framer-XRUDg .framer-1ba2ix3 > *, .framer-XRUDg .framer-l5rxu4 > *, .framer-XRUDg .framer-1u4g4m1 > *, .framer-XRUDg .framer-1l3upa6 > *, .framer-XRUDg .framer-1lj1o4x > *, .framer-XRUDg .framer-1d9lct4 > *, .framer-XRUDg .framer-19ql636 > *, .framer-XRUDg .framer-1o1cu96 > *, .framer-XRUDg .framer-g6c48a > *, .framer-XRUDg .framer-8co6qp > *, .framer-XRUDg .framer-1bvs5db > *, .framer-XRUDg .framer-mt6vv6 > *, .framer-XRUDg .framer-103p9wl > *, .framer-XRUDg .framer-6sda48 > *, .framer-XRUDg .framer-1xvp42i > *, .framer-XRUDg .framer-1v54g8d > *, .framer-XRUDg .framer-182587i > *, .framer-XRUDg .framer-o8oga1 > *, .framer-XRUDg .framer-26av9x > *, .framer-XRUDg .framer-1jajeor > *, .framer-XRUDg .framer-o0ssub > *, .framer-XRUDg .framer-ad3o6w > *, .framer-XRUDg .framer-1cp5nkm > *, .framer-XRUDg .framer-zooqeo > *, .framer-XRUDg .framer-fiaeag > *, .framer-XRUDg .framer-pq12dz > *, .framer-XRUDg .framer-lasfg2 > *, .framer-XRUDg .framer-1xxn42t > *, .framer-XRUDg .framer-ibwm29 > *, .framer-XRUDg .framer-dhhve3 > *, .framer-XRUDg .framer-lp6ccr > *, .framer-XRUDg .framer-kihubh > *, .framer-XRUDg .framer-1ie00g4 > *, .framer-XRUDg .framer-1wbtubc > *, .framer-XRUDg .framer-j0wch5 > *, .framer-XRUDg .framer-23bsgl > *, .framer-XRUDg .framer-g3shk3 > *, .framer-XRUDg .framer-oyyoyk > *, .framer-XRUDg .framer-pflucs > *, .framer-XRUDg .framer-5u8fdz > *, .framer-XRUDg .framer-cgkp2h > *, .framer-XRUDg .framer-1u78rb4 > *, .framer-XRUDg .framer-1dt700d > *, .framer-XRUDg .framer-103i2n3 > *, .framer-XRUDg .framer-14l1s46 > *, .framer-XRUDg .framer-1skprhh > *, .framer-XRUDg .framer-r1vgkd > *, .framer-XRUDg .framer-1s95upt > *, .framer-XRUDg .framer-1utwtox > *, .framer-XRUDg .framer-cn0amu > *, .framer-XRUDg .framer-5ixl1i > *, .framer-XRUDg .framer-61ru3o > *, .framer-XRUDg .framer-zz3hed > *, .framer-XRUDg .framer-1qgfjt6 > *, .framer-XRUDg .framer-nvc6m6 > *, .framer-XRUDg .framer-10p7hud > *, .framer-XRUDg .framer-ifqf54 > *, .framer-XRUDg .framer-1v2jpby > *, .framer-XRUDg .framer-ybvrf6 > *, .framer-XRUDg .framer-4t4ram > *, .framer-XRUDg .framer-xmafj7 > *, .framer-XRUDg .framer-1ga4itg > *, .framer-XRUDg .framer-6x852a > *, .framer-XRUDg .framer-dzohoy > *, .framer-XRUDg .framer-1f5qy2i > *, .framer-XRUDg .framer-15edp06 > *, .framer-XRUDg .framer-17ry6hs > *, .framer-XRUDg .framer-178ahte > *, .framer-XRUDg .framer-8ap1tt > *, .framer-XRUDg .framer-121dlgr > *, .framer-XRUDg .framer-1mq41fu > *, .framer-XRUDg .framer-1ve0xo5 > *, .framer-XRUDg .framer-y1nfr8 > *, .framer-XRUDg .framer-gqd7xd > *, .framer-XRUDg .framer-1gece6h > *, .framer-XRUDg .framer-1oayqqz > *, .framer-XRUDg .framer-acu6gq > *, .framer-XRUDg .framer-1e373sx > *, .framer-XRUDg .framer-q2c8db > *, .framer-XRUDg .framer-lk5xhn > *, .framer-XRUDg .framer-t0qbde > *, .framer-XRUDg .framer-ss2sx2 > *, .framer-XRUDg .framer-ujaqqr > *, .framer-XRUDg .framer-15q1f99 > *, .framer-XRUDg .framer-u5j7zg > *, .framer-XRUDg .framer-1dr0tcx > *, .framer-XRUDg .framer-mei75v > *, .framer-XRUDg .framer-1tawxe1 > *, .framer-XRUDg .framer-1sf1fge > *, .framer-XRUDg .framer-1cgl7gc > *, .framer-XRUDg .framer-1kkmrij > *, .framer-XRUDg .framer-1fpm98y > *, .framer-XRUDg .framer-15fgtbi > *, .framer-XRUDg .framer-12q7zvv > *, .framer-XRUDg .framer-1fias1u > *, .framer-XRUDg .framer-1t2ed3z > *, .framer-XRUDg .framer-1sm2l93 > *, .framer-XRUDg .framer-1jz018o > *, .framer-XRUDg .framer-12q8pek > *, .framer-XRUDg .framer-102bt0b > *, .framer-XRUDg .framer-14608gs > *, .framer-XRUDg .framer-gehrct > *, .framer-XRUDg .framer-84qz5b > *, .framer-XRUDg .framer-vf0038 > *, .framer-XRUDg .framer-dqri7h > *, .framer-XRUDg .framer-1andeyu > *, .framer-XRUDg .framer-1nhwvam > *, .framer-XRUDg .framer-1yej6a3 > *, .framer-XRUDg .framer-6gytlu > *, .framer-XRUDg .framer-1rpmg50 > *, .framer-XRUDg .framer-1p3tyjs > *, .framer-XRUDg .framer-1opi4fx > *, .framer-XRUDg .framer-1p55oox > *, .framer-XRUDg .framer-a992mx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XRUDg.framer-ptn5eq > :first-child, .framer-XRUDg .framer-5u4qqx > :first-child, .framer-XRUDg .framer-jq11zp > :first-child, .framer-XRUDg .framer-1k7h37o > :first-child, .framer-XRUDg .framer-xnrif5 > :first-child, .framer-XRUDg .framer-11ctp0t > :first-child, .framer-XRUDg .framer-16rxprp > :first-child, .framer-XRUDg .framer-1mpxd66 > :first-child, .framer-XRUDg .framer-1568cu3 > :first-child, .framer-XRUDg .framer-1bm2pi > :first-child, .framer-XRUDg .framer-rv971o > :first-child, .framer-XRUDg .framer-10b85wd > :first-child, .framer-XRUDg .framer-vgx5yv > :first-child, .framer-XRUDg .framer-1ba2ix3 > :first-child, .framer-XRUDg .framer-l5rxu4 > :first-child, .framer-XRUDg .framer-2vy8pc > :first-child, .framer-XRUDg .framer-1u4g4m1 > :first-child, .framer-XRUDg .framer-1l3upa6 > :first-child, .framer-XRUDg .framer-szge2 > :first-child, .framer-XRUDg .framer-1lj1o4x > :first-child, .framer-XRUDg .framer-1d9lct4 > :first-child, .framer-XRUDg .framer-19ql636 > :first-child, .framer-XRUDg .framer-1o1cu96 > :first-child, .framer-XRUDg .framer-12x4h6b > :first-child, .framer-XRUDg .framer-g6c48a > :first-child, .framer-XRUDg .framer-8co6qp > :first-child, .framer-XRUDg .framer-1s5vpw8 > :first-child, .framer-XRUDg .framer-1bvs5db > :first-child, .framer-XRUDg .framer-mt6vv6 > :first-child, .framer-XRUDg .framer-103p9wl > :first-child, .framer-XRUDg .framer-6sda48 > :first-child, .framer-XRUDg .framer-i1p68v > :first-child, .framer-XRUDg .framer-1xvp42i > :first-child, .framer-XRUDg .framer-1v54g8d > :first-child, .framer-XRUDg .framer-c7o0i4 > :first-child, .framer-XRUDg .framer-182587i > :first-child, .framer-XRUDg .framer-o8oga1 > :first-child, .framer-XRUDg .framer-26av9x > :first-child, .framer-XRUDg .framer-1jajeor > :first-child, .framer-XRUDg .framer-156g12a > :first-child, .framer-XRUDg .framer-o0ssub > :first-child, .framer-XRUDg .framer-ad3o6w > :first-child, .framer-XRUDg .framer-b8c1ec > :first-child, .framer-XRUDg .framer-1cp5nkm > :first-child, .framer-XRUDg .framer-zooqeo > :first-child, .framer-XRUDg .framer-fiaeag > :first-child, .framer-XRUDg .framer-pq12dz > :first-child, .framer-XRUDg .framer-c1phpz > :first-child, .framer-XRUDg .framer-lasfg2 > :first-child, .framer-XRUDg .framer-1xxn42t > :first-child, .framer-XRUDg .framer-zwaw6h > :first-child, .framer-XRUDg .framer-ibwm29 > :first-child, .framer-XRUDg .framer-dhhve3 > :first-child, .framer-XRUDg .framer-lp6ccr > :first-child, .framer-XRUDg .framer-kihubh > :first-child, .framer-XRUDg .framer-g4visg > :first-child, .framer-XRUDg .framer-1ie00g4 > :first-child, .framer-XRUDg .framer-1wbtubc > :first-child, .framer-XRUDg .framer-z33idx > :first-child, .framer-XRUDg .framer-j0wch5 > :first-child, .framer-XRUDg .framer-23bsgl > :first-child, .framer-XRUDg .framer-g3shk3 > :first-child, .framer-XRUDg .framer-oyyoyk > :first-child, .framer-XRUDg .framer-1y8pfyf > :first-child, .framer-XRUDg .framer-pflucs > :first-child, .framer-XRUDg .framer-5u8fdz > :first-child, .framer-XRUDg .framer-znewc3 > :first-child, .framer-XRUDg .framer-cgkp2h > :first-child, .framer-XRUDg .framer-1u78rb4 > :first-child, .framer-XRUDg .framer-1dt700d > :first-child, .framer-XRUDg .framer-103i2n3 > :first-child, .framer-XRUDg .framer-1h8w4et > :first-child, .framer-XRUDg .framer-14l1s46 > :first-child, .framer-XRUDg .framer-1skprhh > :first-child, .framer-XRUDg .framer-1ji2mxk > :first-child, .framer-XRUDg .framer-r1vgkd > :first-child, .framer-XRUDg .framer-1s95upt > :first-child, .framer-XRUDg .framer-1utwtox > :first-child, .framer-XRUDg .framer-cn0amu > :first-child, .framer-XRUDg .framer-1phemhm > :first-child, .framer-XRUDg .framer-5ixl1i > :first-child, .framer-XRUDg .framer-61ru3o > :first-child, .framer-XRUDg .framer-5drmyu > :first-child, .framer-XRUDg .framer-zz3hed > :first-child, .framer-XRUDg .framer-1qgfjt6 > :first-child, .framer-XRUDg .framer-nvc6m6 > :first-child, .framer-XRUDg .framer-10p7hud > :first-child, .framer-XRUDg .framer-ywv96x > :first-child, .framer-XRUDg .framer-ifqf54 > :first-child, .framer-XRUDg .framer-1v2jpby > :first-child, .framer-XRUDg .framer-ybvrf6 > :first-child, .framer-XRUDg .framer-dn33q2 > :first-child, .framer-XRUDg .framer-4t4ram > :first-child, .framer-XRUDg .framer-xmafj7 > :first-child, .framer-XRUDg .framer-1ga4itg > :first-child, .framer-XRUDg .framer-19qilmt > :first-child, .framer-XRUDg .framer-6x852a > :first-child, .framer-XRUDg .framer-43ze4q > :first-child, .framer-XRUDg .framer-dzohoy > :first-child, .framer-XRUDg .framer-98vun0 > :first-child, .framer-XRUDg .framer-1f5qy2i > :first-child, .framer-XRUDg .framer-15edp06 > :first-child, .framer-XRUDg .framer-17ry6hs > :first-child, .framer-XRUDg .framer-27wdp3 > :first-child, .framer-XRUDg .framer-178ahte > :first-child, .framer-XRUDg .framer-adtt6o > :first-child, .framer-XRUDg .framer-8ap1tt > :first-child, .framer-XRUDg .framer-pruj6x > :first-child, .framer-XRUDg .framer-121dlgr > :first-child, .framer-XRUDg .framer-1mq41fu > :first-child, .framer-XRUDg .framer-1ve0xo5 > :first-child, .framer-XRUDg .framer-oic5rj > :first-child, .framer-XRUDg .framer-y1nfr8 > :first-child, .framer-XRUDg .framer-z7xaeu > :first-child, .framer-XRUDg .framer-gqd7xd > :first-child, .framer-XRUDg .framer-uhfs5q > :first-child, .framer-XRUDg .framer-1gece6h > :first-child, .framer-XRUDg .framer-1oayqqz > :first-child, .framer-XRUDg .framer-acu6gq > :first-child, .framer-XRUDg .framer-10ojfdk > :first-child, .framer-XRUDg .framer-1e373sx > :first-child, .framer-XRUDg .framer-qz3f11 > :first-child, .framer-XRUDg .framer-q2c8db > :first-child, .framer-XRUDg .framer-18i5xga > :first-child, .framer-XRUDg .framer-lk5xhn > :first-child, .framer-XRUDg .framer-t0qbde > :first-child, .framer-XRUDg .framer-ss2sx2 > :first-child, .framer-XRUDg .framer-1pd68yu > :first-child, .framer-XRUDg .framer-ujaqqr > :first-child, .framer-XRUDg .framer-15q1f99 > :first-child, .framer-XRUDg .framer-kry30t > :first-child, .framer-XRUDg .framer-u5j7zg > :first-child, .framer-XRUDg .framer-1dr0tcx > :first-child, .framer-XRUDg .framer-mei75v > :first-child, .framer-XRUDg .framer-sm7hl4 > :first-child, .framer-XRUDg .framer-1tawxe1 > :first-child, .framer-XRUDg .framer-2ugm9z > :first-child, .framer-XRUDg .framer-1sf1fge > :first-child, .framer-XRUDg .framer-10r6kqi > :first-child, .framer-XRUDg .framer-1cgl7gc > :first-child, .framer-XRUDg .framer-1kkmrij > :first-child, .framer-XRUDg .framer-1fpm98y > :first-child, .framer-XRUDg .framer-wkr19o > :first-child, .framer-XRUDg .framer-15fgtbi > :first-child, .framer-XRUDg .framer-evin7 > :first-child, .framer-XRUDg .framer-12q7zvv > :first-child, .framer-XRUDg .framer-ux5pii > :first-child, .framer-XRUDg .framer-1fias1u > :first-child, .framer-XRUDg .framer-1t2ed3z > :first-child, .framer-XRUDg .framer-1sm2l93 > :first-child, .framer-XRUDg .framer-kgleto > :first-child, .framer-XRUDg .framer-1jz018o > :first-child, .framer-XRUDg .framer-mbaou3 > :first-child, .framer-XRUDg .framer-12q8pek > :first-child, .framer-XRUDg .framer-16awi6i > :first-child, .framer-XRUDg .framer-102bt0b > :first-child, .framer-XRUDg .framer-14608gs > :first-child, .framer-XRUDg .framer-gehrct > :first-child, .framer-XRUDg .framer-1uk3vl > :first-child, .framer-XRUDg .framer-84qz5b > :first-child, .framer-XRUDg .framer-2cysln > :first-child, .framer-XRUDg .framer-vf0038 > :first-child, .framer-XRUDg .framer-rmjfa6 > :first-child, .framer-XRUDg .framer-dqri7h > :first-child, .framer-XRUDg .framer-1andeyu > :first-child, .framer-XRUDg .framer-1nhwvam > :first-child, .framer-XRUDg .framer-1ydibo8 > :first-child, .framer-XRUDg .framer-1yej6a3 > :first-child, .framer-XRUDg .framer-oj1pyu > :first-child, .framer-XRUDg .framer-6gytlu > :first-child, .framer-XRUDg .framer-nxu6xp > :first-child, .framer-XRUDg .framer-1rpmg50 > :first-child, .framer-XRUDg .framer-1p3tyjs > :first-child, .framer-XRUDg .framer-1opi4fx > :first-child, .framer-XRUDg .framer-spv21x > :first-child, .framer-XRUDg .framer-1p55oox > :first-child, .framer-XRUDg .framer-197tkvv > :first-child, .framer-XRUDg .framer-a992mx > :first-child { margin-top: 0px; } .framer-XRUDg.framer-ptn5eq > :last-child, .framer-XRUDg .framer-5u4qqx > :last-child, .framer-XRUDg .framer-jq11zp > :last-child, .framer-XRUDg .framer-1k7h37o > :last-child, .framer-XRUDg .framer-xnrif5 > :last-child, .framer-XRUDg .framer-11ctp0t > :last-child, .framer-XRUDg .framer-16rxprp > :last-child, .framer-XRUDg .framer-1mpxd66 > :last-child, .framer-XRUDg .framer-1568cu3 > :last-child, .framer-XRUDg .framer-1bm2pi > :last-child, .framer-XRUDg .framer-rv971o > :last-child, .framer-XRUDg .framer-10b85wd > :last-child, .framer-XRUDg .framer-vgx5yv > :last-child, .framer-XRUDg .framer-1ba2ix3 > :last-child, .framer-XRUDg .framer-l5rxu4 > :last-child, .framer-XRUDg .framer-2vy8pc > :last-child, .framer-XRUDg .framer-1u4g4m1 > :last-child, .framer-XRUDg .framer-1l3upa6 > :last-child, .framer-XRUDg .framer-szge2 > :last-child, .framer-XRUDg .framer-1lj1o4x > :last-child, .framer-XRUDg .framer-1d9lct4 > :last-child, .framer-XRUDg .framer-19ql636 > :last-child, .framer-XRUDg .framer-1o1cu96 > :last-child, .framer-XRUDg .framer-12x4h6b > :last-child, .framer-XRUDg .framer-g6c48a > :last-child, .framer-XRUDg .framer-8co6qp > :last-child, .framer-XRUDg .framer-1s5vpw8 > :last-child, .framer-XRUDg .framer-1bvs5db > :last-child, .framer-XRUDg .framer-mt6vv6 > :last-child, .framer-XRUDg .framer-103p9wl > :last-child, .framer-XRUDg .framer-6sda48 > :last-child, .framer-XRUDg .framer-i1p68v > :last-child, .framer-XRUDg .framer-1xvp42i > :last-child, .framer-XRUDg .framer-1v54g8d > :last-child, .framer-XRUDg .framer-c7o0i4 > :last-child, .framer-XRUDg .framer-182587i > :last-child, .framer-XRUDg .framer-o8oga1 > :last-child, .framer-XRUDg .framer-26av9x > :last-child, .framer-XRUDg .framer-1jajeor > :last-child, .framer-XRUDg .framer-156g12a > :last-child, .framer-XRUDg .framer-o0ssub > :last-child, .framer-XRUDg .framer-ad3o6w > :last-child, .framer-XRUDg .framer-b8c1ec > :last-child, .framer-XRUDg .framer-1cp5nkm > :last-child, .framer-XRUDg .framer-zooqeo > :last-child, .framer-XRUDg .framer-fiaeag > :last-child, .framer-XRUDg .framer-pq12dz > :last-child, .framer-XRUDg .framer-c1phpz > :last-child, .framer-XRUDg .framer-lasfg2 > :last-child, .framer-XRUDg .framer-1xxn42t > :last-child, .framer-XRUDg .framer-zwaw6h > :last-child, .framer-XRUDg .framer-ibwm29 > :last-child, .framer-XRUDg .framer-dhhve3 > :last-child, .framer-XRUDg .framer-lp6ccr > :last-child, .framer-XRUDg .framer-kihubh > :last-child, .framer-XRUDg .framer-g4visg > :last-child, .framer-XRUDg .framer-1ie00g4 > :last-child, .framer-XRUDg .framer-1wbtubc > :last-child, .framer-XRUDg .framer-z33idx > :last-child, .framer-XRUDg .framer-j0wch5 > :last-child, .framer-XRUDg .framer-23bsgl > :last-child, .framer-XRUDg .framer-g3shk3 > :last-child, .framer-XRUDg .framer-oyyoyk > :last-child, .framer-XRUDg .framer-1y8pfyf > :last-child, .framer-XRUDg .framer-pflucs > :last-child, .framer-XRUDg .framer-5u8fdz > :last-child, .framer-XRUDg .framer-znewc3 > :last-child, .framer-XRUDg .framer-cgkp2h > :last-child, .framer-XRUDg .framer-1u78rb4 > :last-child, .framer-XRUDg .framer-1dt700d > :last-child, .framer-XRUDg .framer-103i2n3 > :last-child, .framer-XRUDg .framer-1h8w4et > :last-child, .framer-XRUDg .framer-14l1s46 > :last-child, .framer-XRUDg .framer-1skprhh > :last-child, .framer-XRUDg .framer-1ji2mxk > :last-child, .framer-XRUDg .framer-r1vgkd > :last-child, .framer-XRUDg .framer-1s95upt > :last-child, .framer-XRUDg .framer-1utwtox > :last-child, .framer-XRUDg .framer-cn0amu > :last-child, .framer-XRUDg .framer-1phemhm > :last-child, .framer-XRUDg .framer-5ixl1i > :last-child, .framer-XRUDg .framer-61ru3o > :last-child, .framer-XRUDg .framer-5drmyu > :last-child, .framer-XRUDg .framer-zz3hed > :last-child, .framer-XRUDg .framer-1qgfjt6 > :last-child, .framer-XRUDg .framer-nvc6m6 > :last-child, .framer-XRUDg .framer-10p7hud > :last-child, .framer-XRUDg .framer-ywv96x > :last-child, .framer-XRUDg .framer-ifqf54 > :last-child, .framer-XRUDg .framer-1v2jpby > :last-child, .framer-XRUDg .framer-ybvrf6 > :last-child, .framer-XRUDg .framer-dn33q2 > :last-child, .framer-XRUDg .framer-4t4ram > :last-child, .framer-XRUDg .framer-xmafj7 > :last-child, .framer-XRUDg .framer-1ga4itg > :last-child, .framer-XRUDg .framer-19qilmt > :last-child, .framer-XRUDg .framer-6x852a > :last-child, .framer-XRUDg .framer-43ze4q > :last-child, .framer-XRUDg .framer-dzohoy > :last-child, .framer-XRUDg .framer-98vun0 > :last-child, .framer-XRUDg .framer-1f5qy2i > :last-child, .framer-XRUDg .framer-15edp06 > :last-child, .framer-XRUDg .framer-17ry6hs > :last-child, .framer-XRUDg .framer-27wdp3 > :last-child, .framer-XRUDg .framer-178ahte > :last-child, .framer-XRUDg .framer-adtt6o > :last-child, .framer-XRUDg .framer-8ap1tt > :last-child, .framer-XRUDg .framer-pruj6x > :last-child, .framer-XRUDg .framer-121dlgr > :last-child, .framer-XRUDg .framer-1mq41fu > :last-child, .framer-XRUDg .framer-1ve0xo5 > :last-child, .framer-XRUDg .framer-oic5rj > :last-child, .framer-XRUDg .framer-y1nfr8 > :last-child, .framer-XRUDg .framer-z7xaeu > :last-child, .framer-XRUDg .framer-gqd7xd > :last-child, .framer-XRUDg .framer-uhfs5q > :last-child, .framer-XRUDg .framer-1gece6h > :last-child, .framer-XRUDg .framer-1oayqqz > :last-child, .framer-XRUDg .framer-acu6gq > :last-child, .framer-XRUDg .framer-10ojfdk > :last-child, .framer-XRUDg .framer-1e373sx > :last-child, .framer-XRUDg .framer-qz3f11 > :last-child, .framer-XRUDg .framer-q2c8db > :last-child, .framer-XRUDg .framer-18i5xga > :last-child, .framer-XRUDg .framer-lk5xhn > :last-child, .framer-XRUDg .framer-t0qbde > :last-child, .framer-XRUDg .framer-ss2sx2 > :last-child, .framer-XRUDg .framer-1pd68yu > :last-child, .framer-XRUDg .framer-ujaqqr > :last-child, .framer-XRUDg .framer-15q1f99 > :last-child, .framer-XRUDg .framer-kry30t > :last-child, .framer-XRUDg .framer-u5j7zg > :last-child, .framer-XRUDg .framer-1dr0tcx > :last-child, .framer-XRUDg .framer-mei75v > :last-child, .framer-XRUDg .framer-sm7hl4 > :last-child, .framer-XRUDg .framer-1tawxe1 > :last-child, .framer-XRUDg .framer-2ugm9z > :last-child, .framer-XRUDg .framer-1sf1fge > :last-child, .framer-XRUDg .framer-10r6kqi > :last-child, .framer-XRUDg .framer-1cgl7gc > :last-child, .framer-XRUDg .framer-1kkmrij > :last-child, .framer-XRUDg .framer-1fpm98y > :last-child, .framer-XRUDg .framer-wkr19o > :last-child, .framer-XRUDg .framer-15fgtbi > :last-child, .framer-XRUDg .framer-evin7 > :last-child, .framer-XRUDg .framer-12q7zvv > :last-child, .framer-XRUDg .framer-ux5pii > :last-child, .framer-XRUDg .framer-1fias1u > :last-child, .framer-XRUDg .framer-1t2ed3z > :last-child, .framer-XRUDg .framer-1sm2l93 > :last-child, .framer-XRUDg .framer-kgleto > :last-child, .framer-XRUDg .framer-1jz018o > :last-child, .framer-XRUDg .framer-mbaou3 > :last-child, .framer-XRUDg .framer-12q8pek > :last-child, .framer-XRUDg .framer-16awi6i > :last-child, .framer-XRUDg .framer-102bt0b > :last-child, .framer-XRUDg .framer-14608gs > :last-child, .framer-XRUDg .framer-gehrct > :last-child, .framer-XRUDg .framer-1uk3vl > :last-child, .framer-XRUDg .framer-84qz5b > :last-child, .framer-XRUDg .framer-2cysln > :last-child, .framer-XRUDg .framer-vf0038 > :last-child, .framer-XRUDg .framer-rmjfa6 > :last-child, .framer-XRUDg .framer-dqri7h > :last-child, .framer-XRUDg .framer-1andeyu > :last-child, .framer-XRUDg .framer-1nhwvam > :last-child, .framer-XRUDg .framer-1ydibo8 > :last-child, .framer-XRUDg .framer-1yej6a3 > :last-child, .framer-XRUDg .framer-oj1pyu > :last-child, .framer-XRUDg .framer-6gytlu > :last-child, .framer-XRUDg .framer-nxu6xp > :last-child, .framer-XRUDg .framer-1rpmg50 > :last-child, .framer-XRUDg .framer-1p3tyjs > :last-child, .framer-XRUDg .framer-1opi4fx > :last-child, .framer-XRUDg .framer-spv21x > :last-child, .framer-XRUDg .framer-1p55oox > :last-child, .framer-XRUDg .framer-197tkvv > :last-child, .framer-XRUDg .framer-a992mx > :last-child { margin-bottom: 0px; } .framer-XRUDg .framer-jq11zp > *, .framer-XRUDg .framer-rv971o > *, .framer-XRUDg .framer-szge2 > *, .framer-XRUDg .framer-1s5vpw8 > *, .framer-XRUDg .framer-c7o0i4 > *, .framer-XRUDg .framer-b8c1ec > *, .framer-XRUDg .framer-zwaw6h > *, .framer-XRUDg .framer-z33idx > *, .framer-XRUDg .framer-znewc3 > *, .framer-XRUDg .framer-1ji2mxk > *, .framer-XRUDg .framer-5drmyu > *, .framer-XRUDg .framer-dn33q2 > *, .framer-XRUDg .framer-98vun0 > *, .framer-XRUDg .framer-pruj6x > *, .framer-XRUDg .framer-uhfs5q > *, .framer-XRUDg .framer-18i5xga > *, .framer-XRUDg .framer-kry30t > *, .framer-XRUDg .framer-10r6kqi > *, .framer-XRUDg .framer-ux5pii > *, .framer-XRUDg .framer-16awi6i > *, .framer-XRUDg .framer-rmjfa6 > *, .framer-XRUDg .framer-nxu6xp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-XRUDg .framer-vozgh0 > *, .framer-XRUDg .framer-15jyuvp > *, .framer-XRUDg .framer-hmg9ha > *, .framer-XRUDg .framer-3gf7x9 > *, .framer-XRUDg .framer-1ijptv6 > *, .framer-XRUDg .framer-17oqk7l > *, .framer-XRUDg .framer-1togz8f > *, .framer-XRUDg .framer-18vutq0 > *, .framer-XRUDg .framer-etbqel > *, .framer-XRUDg .framer-1htblaq > *, .framer-XRUDg .framer-19fpdak > *, .framer-XRUDg .framer-15zg6oq > *, .framer-XRUDg .framer-h2ietx > *, .framer-XRUDg .framer-ncwc5k > *, .framer-XRUDg .framer-f3j7ry > *, .framer-XRUDg .framer-schtw2 > *, .framer-XRUDg .framer-12okwlu > *, .framer-XRUDg .framer-1ik9ic > *, .framer-XRUDg .framer-17592ev > *, .framer-XRUDg .framer-ouv43g > *, .framer-XRUDg .framer-z6ywvz > *, .framer-XRUDg .framer-1lb2p13 > *, .framer-XRUDg .framer-w270ei > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-XRUDg .framer-vozgh0 > :first-child, .framer-XRUDg .framer-15jyuvp > :first-child, .framer-XRUDg .framer-1mrb0bw > :first-child, .framer-XRUDg .framer-1yh4qpb > :first-child, .framer-XRUDg .framer-9sjhnw > :first-child, .framer-XRUDg .framer-hmg9ha > :first-child, .framer-XRUDg .framer-3gf7x9 > :first-child, .framer-XRUDg .framer-fqee54 > :first-child, .framer-XRUDg .framer-108onrs > :first-child, .framer-XRUDg .framer-ysbmuj > :first-child, .framer-XRUDg .framer-1ijptv6 > :first-child, .framer-XRUDg .framer-17oqk7l > :first-child, .framer-XRUDg .framer-o4o867 > :first-child, .framer-XRUDg .framer-14z0xuj > :first-child, .framer-XRUDg .framer-1rshm4i > :first-child, .framer-XRUDg .framer-1togz8f > :first-child, .framer-XRUDg .framer-18vutq0 > :first-child, .framer-XRUDg .framer-1qxv4yg > :first-child, .framer-XRUDg .framer-1nw2ukf > :first-child, .framer-XRUDg .framer-rabd20 > :first-child, .framer-XRUDg .framer-etbqel > :first-child, .framer-XRUDg .framer-1htblaq > :first-child, .framer-XRUDg .framer-1oeal8h > :first-child, .framer-XRUDg .framer-1416q4s > :first-child, .framer-XRUDg .framer-1wfx3up > :first-child, .framer-XRUDg .framer-19fpdak > :first-child, .framer-XRUDg .framer-15zg6oq > :first-child, .framer-XRUDg .framer-1ys4dwe > :first-child, .framer-XRUDg .framer-107gy9t > :first-child, .framer-XRUDg .framer-12caik4 > :first-child, .framer-XRUDg .framer-h2ietx > :first-child, .framer-XRUDg .framer-ncwc5k > :first-child, .framer-XRUDg .framer-1arrbme > :first-child, .framer-XRUDg .framer-qrsm3 > :first-child, .framer-XRUDg .framer-h6pfkv > :first-child, .framer-XRUDg .framer-f3j7ry > :first-child, .framer-XRUDg .framer-schtw2 > :first-child, .framer-XRUDg .framer-1t8he3c > :first-child, .framer-XRUDg .framer-eh23c > :first-child, .framer-XRUDg .framer-1uvqz40 > :first-child, .framer-XRUDg .framer-12okwlu > :first-child, .framer-XRUDg .framer-1ik9ic > :first-child, .framer-XRUDg .framer-1xvr4d0 > :first-child, .framer-XRUDg .framer-cgmqvq > :first-child, .framer-XRUDg .framer-b8x38f > :first-child, .framer-XRUDg .framer-17592ev > :first-child, .framer-XRUDg .framer-ouv43g > :first-child, .framer-XRUDg .framer-p69w3g > :first-child, .framer-XRUDg .framer-1taip60 > :first-child, .framer-XRUDg .framer-62iwoo > :first-child, .framer-XRUDg .framer-z6ywvz > :first-child, .framer-XRUDg .framer-1lb2p13 > :first-child, .framer-XRUDg .framer-q46db6 > :first-child, .framer-XRUDg .framer-1g3x7rj > :first-child, .framer-XRUDg .framer-y3ld44 > :first-child, .framer-XRUDg .framer-g0eiem > :first-child, .framer-XRUDg .framer-krt8xz > :first-child, .framer-XRUDg .framer-jb2awu > :first-child, .framer-XRUDg .framer-1h2g5am > :first-child, .framer-XRUDg .framer-1i8hbxx > :first-child, .framer-XRUDg .framer-1l8ree > :first-child, .framer-XRUDg .framer-1vkpf4l > :first-child, .framer-XRUDg .framer-9q9e81 > :first-child, .framer-XRUDg .framer-4yfkmu > :first-child, .framer-XRUDg .framer-1flpmhn > :first-child, .framer-XRUDg .framer-1vnrdyk > :first-child, .framer-XRUDg .framer-yd5dzw > :first-child, .framer-XRUDg .framer-bpfff3 > :first-child, .framer-XRUDg .framer-w270ei > :first-child, .framer-XRUDg .framer-d6uayx > :first-child, .framer-XRUDg .framer-1d29sj > :first-child, .framer-XRUDg .framer-55p984 > :first-child, .framer-XRUDg .framer-pw06wd > :first-child, .framer-XRUDg .framer-1nsa6tv > :first-child, .framer-XRUDg .framer-1iooru7 > :first-child, .framer-XRUDg .framer-1vhg92d > :first-child, .framer-XRUDg .framer-14f5n3t > :first-child, .framer-XRUDg .framer-1c465be > :first-child, .framer-XRUDg .framer-1ua6wvn > :first-child, .framer-XRUDg .framer-11d9i1w > :first-child, .framer-XRUDg .framer-7m214i > :first-child, .framer-XRUDg .framer-lc4ebj > :first-child, .framer-XRUDg .framer-o9j4wh > :first-child, .framer-XRUDg .framer-1mrmkxi > :first-child, .framer-XRUDg .framer-1ojkmeq > :first-child, .framer-XRUDg .framer-1ohmq0u > :first-child, .framer-XRUDg .framer-hfkz3t > :first-child, .framer-XRUDg .framer-40nu99 > :first-child, .framer-XRUDg .framer-1aetfau > :first-child { margin-left: 0px; } .framer-XRUDg .framer-vozgh0 > :last-child, .framer-XRUDg .framer-15jyuvp > :last-child, .framer-XRUDg .framer-1mrb0bw > :last-child, .framer-XRUDg .framer-1yh4qpb > :last-child, .framer-XRUDg .framer-9sjhnw > :last-child, .framer-XRUDg .framer-hmg9ha > :last-child, .framer-XRUDg .framer-3gf7x9 > :last-child, .framer-XRUDg .framer-fqee54 > :last-child, .framer-XRUDg .framer-108onrs > :last-child, .framer-XRUDg .framer-ysbmuj > :last-child, .framer-XRUDg .framer-1ijptv6 > :last-child, .framer-XRUDg .framer-17oqk7l > :last-child, .framer-XRUDg .framer-o4o867 > :last-child, .framer-XRUDg .framer-14z0xuj > :last-child, .framer-XRUDg .framer-1rshm4i > :last-child, .framer-XRUDg .framer-1togz8f > :last-child, .framer-XRUDg .framer-18vutq0 > :last-child, .framer-XRUDg .framer-1qxv4yg > :last-child, .framer-XRUDg .framer-1nw2ukf > :last-child, .framer-XRUDg .framer-rabd20 > :last-child, .framer-XRUDg .framer-etbqel > :last-child, .framer-XRUDg .framer-1htblaq > :last-child, .framer-XRUDg .framer-1oeal8h > :last-child, .framer-XRUDg .framer-1416q4s > :last-child, .framer-XRUDg .framer-1wfx3up > :last-child, .framer-XRUDg .framer-19fpdak > :last-child, .framer-XRUDg .framer-15zg6oq > :last-child, .framer-XRUDg .framer-1ys4dwe > :last-child, .framer-XRUDg .framer-107gy9t > :last-child, .framer-XRUDg .framer-12caik4 > :last-child, .framer-XRUDg .framer-h2ietx > :last-child, .framer-XRUDg .framer-ncwc5k > :last-child, .framer-XRUDg .framer-1arrbme > :last-child, .framer-XRUDg .framer-qrsm3 > :last-child, .framer-XRUDg .framer-h6pfkv > :last-child, .framer-XRUDg .framer-f3j7ry > :last-child, .framer-XRUDg .framer-schtw2 > :last-child, .framer-XRUDg .framer-1t8he3c > :last-child, .framer-XRUDg .framer-eh23c > :last-child, .framer-XRUDg .framer-1uvqz40 > :last-child, .framer-XRUDg .framer-12okwlu > :last-child, .framer-XRUDg .framer-1ik9ic > :last-child, .framer-XRUDg .framer-1xvr4d0 > :last-child, .framer-XRUDg .framer-cgmqvq > :last-child, .framer-XRUDg .framer-b8x38f > :last-child, .framer-XRUDg .framer-17592ev > :last-child, .framer-XRUDg .framer-ouv43g > :last-child, .framer-XRUDg .framer-p69w3g > :last-child, .framer-XRUDg .framer-1taip60 > :last-child, .framer-XRUDg .framer-62iwoo > :last-child, .framer-XRUDg .framer-z6ywvz > :last-child, .framer-XRUDg .framer-1lb2p13 > :last-child, .framer-XRUDg .framer-q46db6 > :last-child, .framer-XRUDg .framer-1g3x7rj > :last-child, .framer-XRUDg .framer-y3ld44 > :last-child, .framer-XRUDg .framer-g0eiem > :last-child, .framer-XRUDg .framer-krt8xz > :last-child, .framer-XRUDg .framer-jb2awu > :last-child, .framer-XRUDg .framer-1h2g5am > :last-child, .framer-XRUDg .framer-1i8hbxx > :last-child, .framer-XRUDg .framer-1l8ree > :last-child, .framer-XRUDg .framer-1vkpf4l > :last-child, .framer-XRUDg .framer-9q9e81 > :last-child, .framer-XRUDg .framer-4yfkmu > :last-child, .framer-XRUDg .framer-1flpmhn > :last-child, .framer-XRUDg .framer-1vnrdyk > :last-child, .framer-XRUDg .framer-yd5dzw > :last-child, .framer-XRUDg .framer-bpfff3 > :last-child, .framer-XRUDg .framer-w270ei > :last-child, .framer-XRUDg .framer-d6uayx > :last-child, .framer-XRUDg .framer-1d29sj > :last-child, .framer-XRUDg .framer-55p984 > :last-child, .framer-XRUDg .framer-pw06wd > :last-child, .framer-XRUDg .framer-1nsa6tv > :last-child, .framer-XRUDg .framer-1iooru7 > :last-child, .framer-XRUDg .framer-1vhg92d > :last-child, .framer-XRUDg .framer-14f5n3t > :last-child, .framer-XRUDg .framer-1c465be > :last-child, .framer-XRUDg .framer-1ua6wvn > :last-child, .framer-XRUDg .framer-11d9i1w > :last-child, .framer-XRUDg .framer-7m214i > :last-child, .framer-XRUDg .framer-lc4ebj > :last-child, .framer-XRUDg .framer-o9j4wh > :last-child, .framer-XRUDg .framer-1mrmkxi > :last-child, .framer-XRUDg .framer-1ojkmeq > :last-child, .framer-XRUDg .framer-1ohmq0u > :last-child, .framer-XRUDg .framer-hfkz3t > :last-child, .framer-XRUDg .framer-40nu99 > :last-child, .framer-XRUDg .framer-1aetfau > :last-child { margin-right: 0px; } .framer-XRUDg .framer-1mpxd66 > *, .framer-XRUDg .framer-2vy8pc > *, .framer-XRUDg .framer-12x4h6b > *, .framer-XRUDg .framer-i1p68v > *, .framer-XRUDg .framer-156g12a > *, .framer-XRUDg .framer-c1phpz > *, .framer-XRUDg .framer-g4visg > *, .framer-XRUDg .framer-1phemhm > *, .framer-XRUDg .framer-ywv96x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XRUDg .framer-1mrb0bw > *, .framer-XRUDg .framer-fqee54 > *, .framer-XRUDg .framer-o4o867 > *, .framer-XRUDg .framer-1qxv4yg > *, .framer-XRUDg .framer-1oeal8h > *, .framer-XRUDg .framer-1ys4dwe > *, .framer-XRUDg .framer-1arrbme > *, .framer-XRUDg .framer-1t8he3c > *, .framer-XRUDg .framer-1xvr4d0 > *, .framer-XRUDg .framer-p69w3g > *, .framer-XRUDg .framer-q46db6 > *, .framer-XRUDg .framer-krt8xz > *, .framer-XRUDg .framer-1i8hbxx > *, .framer-XRUDg .framer-9q9e81 > *, .framer-XRUDg .framer-1vnrdyk > *, .framer-XRUDg .framer-d6uayx > *, .framer-XRUDg .framer-pw06wd > *, .framer-XRUDg .framer-1vhg92d > *, .framer-XRUDg .framer-1ua6wvn > *, .framer-XRUDg .framer-lc4ebj > *, .framer-XRUDg .framer-1ojkmeq > *, .framer-XRUDg .framer-40nu99 > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-XRUDg .framer-1yh4qpb > *, .framer-XRUDg .framer-9sjhnw > *, .framer-XRUDg .framer-108onrs > *, .framer-XRUDg .framer-ysbmuj > *, .framer-XRUDg .framer-14z0xuj > *, .framer-XRUDg .framer-1rshm4i > *, .framer-XRUDg .framer-1nw2ukf > *, .framer-XRUDg .framer-rabd20 > *, .framer-XRUDg .framer-1416q4s > *, .framer-XRUDg .framer-1wfx3up > *, .framer-XRUDg .framer-107gy9t > *, .framer-XRUDg .framer-12caik4 > *, .framer-XRUDg .framer-qrsm3 > *, .framer-XRUDg .framer-h6pfkv > *, .framer-XRUDg .framer-eh23c > *, .framer-XRUDg .framer-1uvqz40 > *, .framer-XRUDg .framer-cgmqvq > *, .framer-XRUDg .framer-b8x38f > *, .framer-XRUDg .framer-1taip60 > *, .framer-XRUDg .framer-62iwoo > *, .framer-XRUDg .framer-1g3x7rj > *, .framer-XRUDg .framer-y3ld44 > *, .framer-XRUDg .framer-jb2awu > *, .framer-XRUDg .framer-1l8ree > *, .framer-XRUDg .framer-4yfkmu > *, .framer-XRUDg .framer-yd5dzw > *, .framer-XRUDg .framer-1d29sj > *, .framer-XRUDg .framer-1nsa6tv > *, .framer-XRUDg .framer-14f5n3t > *, .framer-XRUDg .framer-11d9i1w > *, .framer-XRUDg .framer-o9j4wh > *, .framer-XRUDg .framer-1ohmq0u > *, .framer-XRUDg .framer-1aetfau > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XRUDg .framer-1y8pfyf > *, .framer-XRUDg .framer-1h8w4et > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-XRUDg .framer-19qilmt > *, .framer-XRUDg .framer-43ze4q > *, .framer-XRUDg .framer-27wdp3 > *, .framer-XRUDg .framer-adtt6o > *, .framer-XRUDg .framer-oic5rj > *, .framer-XRUDg .framer-z7xaeu > *, .framer-XRUDg .framer-10ojfdk > *, .framer-XRUDg .framer-qz3f11 > *, .framer-XRUDg .framer-1pd68yu > *, .framer-XRUDg .framer-sm7hl4 > *, .framer-XRUDg .framer-2ugm9z > *, .framer-XRUDg .framer-wkr19o > *, .framer-XRUDg .framer-evin7 > *, .framer-XRUDg .framer-kgleto > *, .framer-XRUDg .framer-mbaou3 > *, .framer-XRUDg .framer-1uk3vl > *, .framer-XRUDg .framer-2cysln > *, .framer-XRUDg .framer-1ydibo8 > *, .framer-XRUDg .framer-oj1pyu > *, .framer-XRUDg .framer-spv21x > *, .framer-XRUDg .framer-197tkvv > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-XRUDg .framer-g0eiem > *, .framer-XRUDg .framer-1h2g5am > *, .framer-XRUDg .framer-1vkpf4l > *, .framer-XRUDg .framer-1flpmhn > *, .framer-XRUDg .framer-bpfff3 > *, .framer-XRUDg .framer-55p984 > *, .framer-XRUDg .framer-1iooru7 > *, .framer-XRUDg .framer-1c465be > *, .framer-XRUDg .framer-7m214i > *, .framer-XRUDg .framer-1mrmkxi > *, .framer-XRUDg .framer-hfkz3t > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-XRUDg.framer-v-ypxyel.framer-ptn5eq { width: 380px; }\",\".framer-XRUDg.framer-v-ypxyel .framer-6x852a, .framer-XRUDg.framer-v-ypxyel .framer-g0eiem, .framer-XRUDg.framer-v-ypxyel .framer-178ahte, .framer-XRUDg.framer-v-ypxyel .framer-1h2g5am, .framer-XRUDg.framer-v-ypxyel .framer-y1nfr8, .framer-XRUDg.framer-v-ypxyel .framer-1vkpf4l, .framer-XRUDg.framer-v-ypxyel .framer-1e373sx, .framer-XRUDg.framer-v-ypxyel .framer-1flpmhn, .framer-XRUDg.framer-v-ypxyel .framer-ujaqqr, .framer-XRUDg.framer-v-ypxyel .framer-bpfff3, .framer-XRUDg.framer-v-ypxyel .framer-1tawxe1, .framer-XRUDg.framer-v-ypxyel .framer-55p984, .framer-XRUDg.framer-v-ypxyel .framer-15fgtbi, .framer-XRUDg.framer-v-ypxyel .framer-1iooru7, .framer-XRUDg.framer-v-ypxyel .framer-1jz018o, .framer-XRUDg.framer-v-ypxyel .framer-1c465be, .framer-XRUDg.framer-v-ypxyel .framer-84qz5b, .framer-XRUDg.framer-v-ypxyel .framer-7m214i, .framer-XRUDg.framer-v-ypxyel .framer-1yej6a3, .framer-XRUDg.framer-v-ypxyel .framer-1mrmkxi, .framer-XRUDg.framer-v-ypxyel .framer-1p55oox, .framer-XRUDg.framer-v-ypxyel .framer-hfkz3t { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1602\n * @framerIntrinsicWidth 1360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Je9Yzn4I3\":{\"layout\":[\"fixed\",\"auto\"]},\"kvtobwPOJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerS9ELcZ8Oe=withCSS(Component,css,\"framer-XRUDg\");export default FramerS9ELcZ8Oe;FramerS9ELcZ8Oe.displayName=\"Top Session_Main Page\";FramerS9ELcZ8Oe.defaultProps={height:1602,width:1360};addPropertyControls(FramerS9ELcZ8Oe,{variant:{options:[\"sxD1ZRhdn\",\"Je9Yzn4I3\",\"kvtobwPOJ\"],optionTitles:[\"Default\",\"All open\",\"Phone all open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerS9ELcZ8Oe,[{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:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...ExcelDateDisplayFonts,...ExcelTimeDisplayFonts,...SpeakerCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS9ELcZ8Oe\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Je9Yzn4I3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kvtobwPOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1602\",\"framerIntrinsicWidth\":\"1360\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99efa6a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import HeroInfo from\"#framer/local/canvasComponent/a7kp98UZ8/a7kp98UZ8.js\";import PaymenntButton from\"#framer/local/canvasComponent/b5u13Cj_n/b5u13Cj_n.js\";import FAQ from\"#framer/local/canvasComponent/BPG5WxXh0/BPG5WxXh0.js\";import ConferencePass from\"#framer/local/canvasComponent/FJ05TjjTP/FJ05TjjTP.js\";import TestimonialCard from\"#framer/local/canvasComponent/FrIt4osAo/FrIt4osAo.js\";import Stats from\"#framer/local/canvasComponent/Gc4FbP15A/Gc4FbP15A.js\";import TicketAvailability from\"#framer/local/canvasComponent/IQ2Yqs4jR/IQ2Yqs4jR.js\";import Accommodation from\"#framer/local/canvasComponent/jZlUU8kFA/jZlUU8kFA.js\";import PreFooter from\"#framer/local/canvasComponent/K8eW_2sQ4/K8eW_2sQ4.js\";import New_IntegratedSchedule from\"#framer/local/canvasComponent/MsQHD9tZ9/MsQHD9tZ9.js\";import Visibiloity from\"#framer/local/canvasComponent/OkmtWwQ19/OkmtWwQ19.js\";import TopSession_MainPage from\"#framer/local/canvasComponent/S9ELcZ8Oe/S9ELcZ8Oe.js\";import SpeakerCardWithLink from\"#framer/local/canvasComponent/UYGwVziyY/UYGwVziyY.js\";import Button from\"#framer/local/canvasComponent/VBHeHAvzh/VBHeHAvzh.js\";import Categories2 from\"#framer/local/canvasComponent/w9xAxqEro/w9xAxqEro.js\";import HighlighterTag from\"#framer/local/canvasComponent/yX3de6qnH/yX3de6qnH.js\";import SynBioBeta2025Speakers49 from\"#framer/local/collection/uVIAFNi9C/uVIAFNi9C.js\";import SponsorsExhibitors from\"#framer/local/collection/uXBJceJ1N/uXBJceJ1N.js\";import ConferenceTestimonial from\"#framer/local/collection/wrqyR8Yjo/wrqyR8Yjo.js\";import*as sharedStyle2 from\"#framer/local/css/aFWdWP_HM/aFWdWP_HM.js\";import*as sharedStyle1 from\"#framer/local/css/blQym7mZN/blQym7mZN.js\";import*as sharedStyle6 from\"#framer/local/css/BnkxSgUnh/BnkxSgUnh.js\";import*as sharedStyle5 from\"#framer/local/css/cWQEiKhnk/cWQEiKhnk.js\";import*as sharedStyle4 from\"#framer/local/css/F7QeHft3j/F7QeHft3j.js\";import*as sharedStyle from\"#framer/local/css/n2uuTnkoi/n2uuTnkoi.js\";import*as sharedStyle8 from\"#framer/local/css/n6ArcaajH/n6ArcaajH.js\";import*as sharedStyle7 from\"#framer/local/css/qNzgYnw5_/qNzgYnw5_.js\";import*as sharedStyle3 from\"#framer/local/css/W6aOGiGxk/W6aOGiGxk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TicketAvailabilityFonts=getFonts(TicketAvailability);const RichTextWithFX=withFX(RichText);const PaymenntButtonFonts=getFonts(PaymenntButton);const ContainerWithFX=withFX(Container);const HeroInfoFonts=getFonts(HeroInfo);const HighlighterTagFonts=getFonts(HighlighterTag);const StatsFonts=getFonts(Stats);const MotionDivWithFX=withFX(motion.div);const Categories2Fonts=getFonts(Categories2);const SpeakerCardWithLinkFonts=getFonts(SpeakerCardWithLink);const ButtonFonts=getFonts(Button);const TopSession_MainPageFonts=getFonts(TopSession_MainPage);const New_IntegratedScheduleFonts=getFonts(New_IntegratedSchedule);const ConferencePassFonts=getFonts(ConferencePass);const MaterialFonts=getFonts(Material);const VisibiloityFonts=getFonts(Visibiloity);const ImageWithFX=withFX(Image);const TestimonialCardFonts=getFonts(TestimonialCard);const TickerFonts=getFonts(Ticker);const AccommodationFonts=getFonts(Accommodation);const FAQFonts=getFonts(FAQ);const PreFooterFonts=getFonts(PreFooter);const breakpoints={GGNA874AY:\"(max-width: 809px)\",HTiJLXXPf:\"(min-width: 810px) and (max-width: 1199px)\",JUBU1FCPj:\"(min-width: 1200px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-33seF\";const variantClassNames={GGNA874AY:\"framer-v-sc5jeo\",HTiJLXXPf:\"framer-v-17jvqki\",JUBU1FCPj:\"framer-v-wems4f\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const transition1={delay:.1,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:.15,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition4={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition5};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Big Desktop\":\"WQLkyLRf1\",Desktop:\"JUBU1FCPj\",Phone:\"GGNA874AY\",Tablet:\"HTiJLXXPf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ER_Czfpu7iKyzylfo4,eoNm9cDSAiKyzylfo4,spH3BjGqfiKyzylfo4,xWMZXIfAriKyzylfo4,b9KiniA39iKyzylfo4,idiKyzylfo4,XiSkPAlCUpBL0AAbxT,ryFX9X0p0pBL0AAbxT,YAsUr6VeYpBL0AAbxT,idpBL0AAbxT,XiSkPAlCUAxZstNLsb,ryFX9X0p0AxZstNLsb,YAsUr6VeYAxZstNLsb,idAxZstNLsb,XiSkPAlCURJLJ5GcJW,YAsUr6VeYRJLJ5GcJW,idRJLJ5GcJW,G2ID3mOM6rDPtfmf9x,cWZpSWSDqrDPtfmf9x,GaYwXqvEBrDPtfmf9x,dzQY7MENzrDPtfmf9x,rTtuMdpdXrDPtfmf9x,idrDPtfmf9x,G2ID3mOM6p_4slrUkm,cWZpSWSDqp_4slrUkm,GaYwXqvEBp_4slrUkm,dzQY7MENzp_4slrUkm,rTtuMdpdXp_4slrUkm,idp_4slrUkm,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"dn4AulaID\");const dynamicRef=useSiteRefs();const elementId1=useRouteElementId(\"Q6IwxllIb\");const router=useRouter();const elementId2=useRouteElementId(\"z_YrWZYEW\");const ref1=React.useRef(null);const elementId3=useRouteElementId(\"F_2LHkNBM\");const ref2=React.useRef(null);const elementId4=useRouteElementId(\"sMXmdKs0f\");const ref3=React.useRef(null);const elementId5=useRouteElementId(\"G0skUExLB\");const ref4=React.useRef(null);const elementId6=useRouteElementId(\"tVuNoUgmP\");const ref5=React.useRef(null);const elementId7=useRouteElementId(\"gW5T0GEaH\");const ref6=React.useRef(null);const elementId8=useRouteElementId(\"TwVtKrdwT\");const ref7=React.useRef(null);const elementId9=useRouteElementId(\"UXwqD67Zg\");const ref8=React.useRef(null);const elementId10=useRouteElementId(\"fBhd9yVMw\");const ref9=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GGNA874AY\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"GGNA874AY\")return true;return false;};const elementId11=useRouteElementId(\"o7gUG5sTW\");const ref10=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112cdoh\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125acib\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ykliu7\",\"data-framer-name\":\"Conatiner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy3jup\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ts9n3-container\",nodeId:\"Nm1DYpvF0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TicketAvailability,{height:\"100%\",id:\"Nm1DYpvF0\",layoutId:\"Nm1DYpvF0\",variant:\"H9x9gR1jb\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16656c2\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",children:[\"Get ready \",/*#__PURE__*/_jsx(\"br\",{}),\"for the future of Hyperscale Biology\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1n5xc9\",\"data-styles-preset\":\"n2uuTnkoi\",children:[\"Get ready for the future\",/*#__PURE__*/_jsx(\"br\",{}),\"of Hyperscale Biology\"]})}),className:\"framer-124n9yx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-127lyzu\",\"data-styles-preset\":\"blQym7mZN\",children:\"AI is Rewriting the Rules of Biology and The Future is Programmable\"})}),className:\"framer-1oeo2j\",fonts:[\"Inter\"],id:elementId,ref:dynamicRef(elementId),verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dg819s\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-119152l-container\",nodeId:\"ndTqcDvYv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PaymenntButton,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",height:\"100%\",id:\"ndTqcDvYv\",layoutId:\"ndTqcDvYv\",variant:\"btbawnD3j\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18zc0x1-container\",nodeId:\"lEFTPBWyT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"w3DnwkeC1\"}},children:/*#__PURE__*/_jsx(HeroInfo,{height:\"100%\",id:\"lEFTPBWyT\",layoutId:\"lEFTPBWyT\",style:{width:\"100%\"},variant:\"IJEk15lCS\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-riotqf\",\"data-framer-name\":\"BG Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtd456\",\"data-framer-name\":\"gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:2659,pixelWidth:3731,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 790px)`,src:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp 3731w\"}},HTiJLXXPf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:2659,pixelWidth:3731,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 750px)`,src:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp 3731w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1200,pixelHeight:2659,pixelWidth:3731,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 120px)`,src:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vNWT2pr52hK01T0km1912mZKNY.webp 3731w\"},className:\"framer-1fryx52\",\"data-framer-name\":\"BG\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19t6kb5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g52xqx\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mwnyf5\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lmaqv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wep3ym\",id:elementId1,ref:dynamicRef(elementId1)})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1613qa2\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcif1p\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11gpcr-container\",nodeId:\"i1buUhGXr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HighlighterTag,{height:\"100%\",id:\"i1buUhGXr\",layoutId:\"i1buUhGXr\",OtDEdWy8z:\"About the event\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvi5jx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uy6f2c\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ihd641\",\"data-styles-preset\":\"aFWdWP_HM\",children:\"Welcome to the Global Synthetic Biology Conference.\"})}),className:\"framer-896n1g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bu4pg7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-15fwxou\",\"data-styles-preset\":\"W6aOGiGxk\",children:\"Be part of a dynamic community of the world\u2019s top innovators, thought leaders, entrepreneurs, and investors who are using synthetic biology to build a better world. From healthcare and agriculture to chemicals, materials, consumer goods, and biomanufacturing\u2014discover how synbio is transforming entire industries.\"})}),className:\"framer-e0fk9k\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-15fwxou\",\"data-styles-preset\":\"W6aOGiGxk\",children:[\"This year, we\u2019re shining a spotlight on one of the most exciting frontiers: the convergence of synthetic biology and AI. Explore how advanced computation is accelerating biological discovery and unlocking new possibilities. Don\u2019t miss this opportunity to be at the forefront of innovation. \",/*#__PURE__*/_jsx(Link,{href:\"https://www.synbiobeta.com/events/synbiobeta-2025/pricing\",motionChild:true,nodeId:\"wHiYh0Rpx\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Register now\"})}),\" and join us for a transformative experience.\"]})}),className:\"framer-11ag8g8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xjgc98-container\",nodeId:\"PVA_9EgD5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PaymenntButton,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",height:\"100%\",id:\"PVA_9EgD5\",layoutId:\"PVA_9EgD5\",variant:\"btbawnD3j\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vk7gaz\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:\"170.9091px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nqwtqb-container\",nodeId:\"AaEjWokmS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Stats,{aFMg27Z52:\"Attendees\",height:\"100%\",id:\"AaEjWokmS\",ixRE_HRvM:\"+\",Kphoa2ytH:52,layoutId:\"AaEjWokmS\",NSfqpS8dr:1970,qPZUsIF_r:2e3,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:\"170.9091px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ers365-container\",nodeId:\"VfzEHDHpU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Stats,{aFMg27Z52:\"Speakers\",height:\"100%\",id:\"VfzEHDHpU\",ixRE_HRvM:\"+\",Kphoa2ytH:52,layoutId:\"VfzEHDHpU\",NSfqpS8dr:170,qPZUsIF_r:200,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:\"170.9091px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1so676l-container\",nodeId:\"nLOsmRPBH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Stats,{aFMg27Z52:\"Sponsors & Exhibitors\",height:\"100%\",id:\"nLOsmRPBH\",ixRE_HRvM:\"+\",Kphoa2ytH:52,layoutId:\"nLOsmRPBH\",NSfqpS8dr:70,qPZUsIF_r:100,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:\"170.9091px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1f16r-container\",nodeId:\"DK0UQN2d3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Stats,{aFMg27Z52:\"1 to 1 Meetings\",height:\"100%\",id:\"DK0UQN2d3\",ixRE_HRvM:\"+\",Kphoa2ytH:52,layoutId:\"DK0UQN2d3\",NSfqpS8dr:5970,qPZUsIF_r:6e3,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:\"170.9091px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5dd393-container\",nodeId:\"Lf8QWHO5q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Stats,{aFMg27Z52:\"Countries\",height:\"100%\",id:\"Lf8QWHO5q\",ixRE_HRvM:\"+\",Kphoa2ytH:52,layoutId:\"Lf8QWHO5q\",NSfqpS8dr:20,qPZUsIF_r:50,width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xl4udy\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lkT3XjkxA\"},implicitPathVariables:undefined},{href:{webPageId:\"lkT3XjkxA\"},implicitPathVariables:undefined},{href:{webPageId:\"lkT3XjkxA\"},implicitPathVariables:undefined},{href:{webPageId:\"lkT3XjkxA\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:componentViewport?.width||\"100vw\"},HTiJLXXPf:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bffeg2-container\",nodeId:\"PQWBCBJQo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"PjPy70epl\",Z_7e1Lne2:resolvedLinks[2]},HTiJLXXPf:{Z_7e1Lne2:resolvedLinks[1]},JUBU1FCPj:{Z_7e1Lne2:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Categories2,{bN_jk9aYc:\"AI is Rewriting the Rules of Biology and The Future is Programmable\",height:\"100%\",id:\"PQWBCBJQo\",l27mD0hsR:\"AIxBIO\",layoutId:\"PQWBCBJQo\",qHxIFB7kc:\"var(--token-be6cb4c0-7215-43a9-be01-3453038bea9d, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"ldx8onx0L\",Vh9ekOTHl:addImageAlt({pixelHeight:1552,pixelWidth:2328,src:\"https://framerusercontent.com/images/MZQfgxZIkKNA2kb2lxGHAtK34NE.webp\",srcSet:\"https://framerusercontent.com/images/MZQfgxZIkKNA2kb2lxGHAtK34NE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MZQfgxZIkKNA2kb2lxGHAtK34NE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/MZQfgxZIkKNA2kb2lxGHAtK34NE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/MZQfgxZIkKNA2kb2lxGHAtK34NE.webp 2328w\"},\"Fragrance Bottle\"),width:\"100%\",Z_7e1Lne2:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"K53gh1cHh\"},implicitPathVariables:undefined},{href:{webPageId:\"K53gh1cHh\"},implicitPathVariables:undefined},{href:{webPageId:\"K53gh1cHh\"},implicitPathVariables:undefined},{href:{webPageId:\"K53gh1cHh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:componentViewport?.width||\"100vw\"},HTiJLXXPf:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ax90ib-container\",nodeId:\"gEiA175pA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"JMSPwQTCu\",Z_7e1Lne2:resolvedLinks1[2]},HTiJLXXPf:{Z_7e1Lne2:resolvedLinks1[1]},JUBU1FCPj:{Z_7e1Lne2:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Categories2,{bN_jk9aYc:\"Engineering the Future of Human Health and Transforming Medicine\",height:\"100%\",id:\"gEiA175pA\",l27mD0hsR:\"Human Health\",layoutId:\"gEiA175pA\",qHxIFB7kc:\"var(--token-be6cb4c0-7215-43a9-be01-3453038bea9d, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"BWsTuTCEJ\",Vh9ekOTHl:addImageAlt({pixelHeight:3884,pixelWidth:5826,src:\"https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp\",srcSet:\"https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp?scale-down-to=512 512w,https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/one11ztM8KnQ4cGuIWtO2Sh7f4Q.webp 5826w\"},\"Fragrance Bottle\"),width:\"100%\",Z_7e1Lne2:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gNm9lRChx\"},implicitPathVariables:undefined},{href:{webPageId:\"gNm9lRChx\"},implicitPathVariables:undefined},{href:{webPageId:\"gNm9lRChx\"},implicitPathVariables:undefined},{href:{webPageId:\"gNm9lRChx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:componentViewport?.width||\"100vw\"},HTiJLXXPf:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m732ab-container\",nodeId:\"LVAapt2fE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"PjPy70epl\",Z_7e1Lne2:resolvedLinks2[2]},HTiJLXXPf:{Z_7e1Lne2:resolvedLinks2[1]},JUBU1FCPj:{Z_7e1Lne2:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Categories2,{bN_jk9aYc:\"Rewriting the Code of Biology and Unlocking Longer, Healthier Lives.\",height:\"100%\",id:\"LVAapt2fE\",l27mD0hsR:\"Longevity\",layoutId:\"LVAapt2fE\",qHxIFB7kc:\"var(--token-be6cb4c0-7215-43a9-be01-3453038bea9d, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"ldx8onx0L\",Vh9ekOTHl:addImageAlt({pixelHeight:828,pixelWidth:1695,src:\"https://framerusercontent.com/images/3i6sIO6pvKdfYnMN4GqFQqjA5g.webp\",srcSet:\"https://framerusercontent.com/images/3i6sIO6pvKdfYnMN4GqFQqjA5g.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3i6sIO6pvKdfYnMN4GqFQqjA5g.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3i6sIO6pvKdfYnMN4GqFQqjA5g.webp 1695w\"},\"Fragrance Bottle\"),width:\"100%\",Z_7e1Lne2:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F5ozXCKmD\"},implicitPathVariables:undefined},{href:{webPageId:\"F5ozXCKmD\"},implicitPathVariables:undefined},{href:{webPageId:\"F5ozXCKmD\"},implicitPathVariables:undefined},{href:{webPageId:\"F5ozXCKmD\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:componentViewport?.width||\"100vw\"},HTiJLXXPf:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"} / 4, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zg11gf-container\",nodeId:\"JoTR6rhEX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"ox6aBE5iK\",Z_7e1Lne2:resolvedLinks3[2]},HTiJLXXPf:{Z_7e1Lne2:resolvedLinks3[1]},JUBU1FCPj:{Z_7e1Lne2:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Categories2,{bN_jk9aYc:\"Designing and Scaling Biology for a Sustainable Bioeconomy\",height:\"100%\",id:\"JoTR6rhEX\",l27mD0hsR:\"Planetary Health\",layoutId:\"JoTR6rhEX\",qHxIFB7kc:\"var(--token-be6cb4c0-7215-43a9-be01-3453038bea9d, rgb(255, 255, 255))\",style:{height:\"100%\",width:\"100%\"},variant:\"bSfzFySYz\",Vh9ekOTHl:addImageAlt({pixelHeight:4024,pixelWidth:6048,src:\"https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp\",srcSet:\"https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp?scale-down-to=512 512w,https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/7vbJ55KiQu8ijICtfrZIY6nIW4I.webp 6048w\"},\"Fragrance Bottle\"),width:\"100%\",Z_7e1Lne2:resolvedLinks3[0]})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kx0070\",\"data-framer-name\":\"Speaker\",id:elementId2,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjsd21\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u45xk3\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1itzqdt\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u19geu\",\"data-framer-name\":\"Title/Body Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:\"Event Speakers\"})}),className:\"framer-uwvb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wapb33\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 127, 128)\"},children:\"Over 200 speakers are coming.\"})}),className:\"framer-8svmko\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hx9xhv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iKyzylfo4\",data:SynBioBeta2025Speakers49,type:\"Collection\"},limit:{type:\"LiteralValue\",value:42},orderBy:[{collection:\"iKyzylfo4\",name:\"g8mlQB7h4\",type:\"Identifier\"}],select:[{collection:\"iKyzylfo4\",name:\"ER_Czfpu7\",type:\"Identifier\"},{collection:\"iKyzylfo4\",name:\"eoNm9cDSA\",type:\"Identifier\"},{collection:\"iKyzylfo4\",name:\"spH3BjGqf\",type:\"Identifier\"},{collection:\"iKyzylfo4\",name:\"xWMZXIfAr\",type:\"Identifier\"},{collection:\"iKyzylfo4\",name:\"b9KiniA39\",type:\"Identifier\"},{collection:\"iKyzylfo4\",name:\"id\",type:\"Identifier\"}],where:{collection:\"iKyzylfo4\",name:\"l5WWxHQ27\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({b9KiniA39:b9KiniA39iKyzylfo4,eoNm9cDSA:eoNm9cDSAiKyzylfo4,ER_Czfpu7:ER_Czfpu7iKyzylfo4,id:idiKyzylfo4,spH3BjGqf:spH3BjGqfiKyzylfo4,xWMZXIfAr:xWMZXIfAriKyzylfo4},index)=>{ER_Czfpu7iKyzylfo4??=\"\";spH3BjGqfiKyzylfo4??=\"\";xWMZXIfAriKyzylfo4??=\"\";b9KiniA39iKyzylfo4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iKyzylfo4-${idiKyzylfo4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ER_Czfpu7:ER_Czfpu7iKyzylfo4},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jrzof8\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7iKyzylfo4},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7iKyzylfo4},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7iKyzylfo4},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined},{href:{pathVariables:{ER_Czfpu7:ER_Czfpu7iKyzylfo4},webPageId:\"BtT6SVenj\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16l8t51-container\",nodeId:\"K3WdWgHKH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{wubGTdVEN:resolvedLinks4[2]},HTiJLXXPf:{wubGTdVEN:resolvedLinks4[1]},JUBU1FCPj:{wubGTdVEN:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(SpeakerCardWithLink,{BHOdYPHwH:xWMZXIfAriKyzylfo4,bmvNKeCaT:toResponsiveImage(eoNm9cDSAiKyzylfo4),gOyyTkmTp:spH3BjGqfiKyzylfo4,height:\"100%\",id:\"K3WdWgHKH\",layoutId:\"K3WdWgHKH\",uKYCERcEt:b9KiniA39iKyzylfo4,variant:\"TRZOubDYe\",width:\"100%\",wubGTdVEN:resolvedLinks4[0]})})})})})})})},idiKyzylfo4);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w1nxsn\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GIiAMmhlr\"},implicitPathVariables:undefined},{href:{webPageId:\"GIiAMmhlr\"},implicitPathVariables:undefined},{href:{webPageId:\"GIiAMmhlr\"},implicitPathVariables:undefined},{href:{webPageId:\"GIiAMmhlr\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aat3et-container\",nodeId:\"H00iYkFjs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{hEpG3uCce:resolvedLinks5[2]},HTiJLXXPf:{hEpG3uCce:resolvedLinks5[1]},JUBU1FCPj:{hEpG3uCce:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"View all\",height:\"100%\",hEpG3uCce:resolvedLinks5[0],id:\"H00iYkFjs\",layoutId:\"H00iYkFjs\",variant:\"lhdUtmFea\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-fvs7hx\",\"data-framer-name\":\"Speaker\",id:elementId4,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36355a\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gw23xv\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ssvfrp\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eg5au5\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ose9jp\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yz2d8g\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sw9tt6\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7cte7\",\"data-framer-name\":\"Container\",id:elementId5,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m2p08e\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y51e66\",\"data-framer-name\":\"Title/Body Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:\"Top Sessions\"})}),className:\"framer-16db58\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:`min(${componentViewport?.width||\"100vw\"} - 41px, 1200px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1602,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nuhzhr-container\",nodeId:\"ucQtMYwKP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"kvtobwPOJ\"},HTiJLXXPf:{variant:\"kvtobwPOJ\"}},children:/*#__PURE__*/_jsx(TopSession_MainPage,{height:\"100%\",id:\"ucQtMYwKP\",layoutId:\"ucQtMYwKP\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Je9Yzn4I3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hb8us6\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tVuNoUgmP\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVuNoUgmP\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVuNoUgmP\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":tVuNoUgmP\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ptutaw-container\",nodeId:\"RLBIiNwhU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{hEpG3uCce:resolvedLinks6[2]},HTiJLXXPf:{hEpG3uCce:resolvedLinks6[1]},JUBU1FCPj:{hEpG3uCce:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(Button,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Full Schedule\",height:\"100%\",hEpG3uCce:resolvedLinks6[0],id:\"RLBIiNwhU\",layoutId:\"RLBIiNwhU\",variant:\"lhdUtmFea\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-rg16ue\",\"data-framer-name\":\"Agenda\",id:elementId6,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tf389d\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjuks\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6fb88\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1orkqwy\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-945anh\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wo883f\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cl8wlb\",\"data-framer-name\":\"Container\",id:elementId7,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f99ms3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o9iac5\",\"data-framer-name\":\"Title/Body Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:\"Agenda\"})}),className:\"framer-j2owsq\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ju4po4\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3w85i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1obv4gs-container\",nodeId:\"w5jpybVVX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HighlighterTag,{height:\"100%\",id:\"w5jpybVVX\",layoutId:\"w5jpybVVX\",OtDEdWy8z:\"Agenda\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-srlhfk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175ccts\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-15fwxou\",\"data-styles-preset\":\"W6aOGiGxk\",children:[\"Join us for three dynamic days showcasing the best in synthetic biology. Our carefully curated program features cutting-edge presentations, interactive workshops, and thought-provoking panels.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Explore how synthetic biology is transforming health, agriculture, materials, and energy sectors through emerging trends and breakthrough technologies. Experience innovative exhibits that bring concepts to life, and take advantage of dedicated networking sessions designed for meaningful 1:1 connections.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Whether you're an industry leader, researcher, or innovator, this conference offers unparalleled opportunities to learn, collaborate, and shape the future of synthetic biology.\"]})}),className:\"framer-1os8mac\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfjzbu\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W3AAyToZa\"},implicitPathVariables:undefined},{href:{webPageId:\"W3AAyToZa\"},implicitPathVariables:undefined},{href:{webPageId:\"W3AAyToZa\"},implicitPathVariables:undefined},{href:{webPageId:\"W3AAyToZa\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-phofnu-container\",nodeId:\"dyWLxB16f\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{hEpG3uCce:resolvedLinks7[2]},HTiJLXXPf:{fTIE5iaFM:\"Explore Tracks\",hEpG3uCce:resolvedLinks7[1]},JUBU1FCPj:{hEpG3uCce:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(Button,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Explore Themes\",height:\"100%\",hEpG3uCce:resolvedLinks7[0],id:\"dyWLxB16f\",layoutId:\"dyWLxB16f\",variant:\"lhdUtmFea\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hixZtbwYT\"},implicitPathVariables:undefined},{href:{webPageId:\"JrvetL0ZN\"},implicitPathVariables:undefined},{href:{webPageId:\"hixZtbwYT\"},implicitPathVariables:undefined},{href:{webPageId:\"hixZtbwYT\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fyx5ge-container\",nodeId:\"ne7E_Y8Pe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{hEpG3uCce:resolvedLinks8[2]},HTiJLXXPf:{hEpG3uCce:resolvedLinks8[1]},JUBU1FCPj:{hEpG3uCce:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(Button,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Customize your schedule\",height:\"100%\",hEpG3uCce:resolvedLinks8[0],id:\"ne7E_Y8Pe\",layoutId:\"ne7E_Y8Pe\",variant:\"lhdUtmFea\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1800px)`},HTiJLXXPf:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1272,width:`calc((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 80px) * 0.7151)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45xdat-container\",nodeId:\"qIoa0byjt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(New_IntegratedSchedule,{height:\"100%\",id:\"qIoa0byjt\",layoutId:\"qIoa0byjt\",style:{height:\"100%\",width:\"100%\"},variant:\"OfCXUpdyn\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jp9qez\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tidf6x\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ah0sip\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtx1p\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yr50br\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-z936h2\",\"data-framer-name\":\"Pass\",id:elementId8,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkquuy\",\"data-framer-name\":\"Conference Pass\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e0u871-container\",nodeId:\"i1YUi4jYm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ConferencePass,{height:\"100%\",id:\"i1YUi4jYm\",layoutId:\"i1YUi4jYm\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n7zosx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gz7f8v\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":bmR56HhX5\",webPageId:\"jMH2HxkmU\"},motionChild:true,nodeId:\"EWXGr6dMB\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jb698m framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jr665n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yFTCZL0eu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(102, 102, 102, 0.71)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Info\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"yFTCZL0eu\",layoutId:\"yFTCZL0eu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(102, 102, 102, 0.71)\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bmR56HhX5\",webPageId:\"jMH2HxkmU\"},motionChild:true,nodeId:\"hLbKINvGg\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sjanni\",\"data-styles-preset\":\"BnkxSgUnh\",children:\"Startups, Non-Profit & Students\"})})})}),className:\"framer-g37dgn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:\"413px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10bn8ox-container\",nodeId:\"fSFDa2FzE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"W5_uD97WW\"}},children:/*#__PURE__*/_jsx(Visibiloity,{height:\"100%\",id:\"fSFDa2FzE\",layoutId:\"fSFDa2FzE\",style:{width:\"100%\"},variant:\"WfxBq3sqm\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hb2tyo\",\"data-framer-name\":\"Sponsors & Exhibitors\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14dbuhw\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3o602\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3b7wc\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xufda\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7exwt\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12k82ul\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p6jgpu\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lgvdgw\",\"data-framer-name\":\"Container\",id:elementId9,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijrfjk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlxs3y\",\"data-framer-name\":\"Title/Body Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:[\"Sponsors &\",/*#__PURE__*/_jsx(\"br\",{}),\"Exhibitors\"]})}),className:\"framer-817zu5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qespk\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 127, 128)\"},children:[\"For more information contact \",/*#__PURE__*/_jsx(Link,{href:\"mailto:sales@synbiobeta.com\",motionChild:true,nodeId:\"jLVC4XXt9\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-77eirk\",\"data-styles-preset\":\"qNzgYnw5_\",children:\"Anissa Cooke\"})})]})}),className:\"framer-tg205i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 127, 128)\"},children:[\"Explore the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PeAfJG9l0\"},motionChild:true,nodeId:\"wz3UyCBwl\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-q3cma5\",\"data-styles-preset\":\"n6ArcaajH\",children:\"floor plan.\"})})]})}),className:\"framer-o8rd89\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hi00d3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t47tj2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c77v3m\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pBL0AAbxT\",data:SponsorsExhibitors,type:\"Collection\"},orderBy:[{collection:\"pBL0AAbxT\",name:\"A5yG_69wL\",type:\"Identifier\"}],select:[{collection:\"pBL0AAbxT\",name:\"XiSkPAlCU\",type:\"Identifier\"},{collection:\"pBL0AAbxT\",name:\"ryFX9X0p0\",type:\"Identifier\"},{collection:\"pBL0AAbxT\",name:\"YAsUr6VeY\",type:\"Identifier\"},{collection:\"pBL0AAbxT\",name:\"id\",type:\"Identifier\"}],where:{collection:\"pBL0AAbxT\",name:\"Ni9_do5TA\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idpBL0AAbxT,ryFX9X0p0:ryFX9X0p0pBL0AAbxT,XiSkPAlCU:XiSkPAlCUpBL0AAbxT,YAsUr6VeY:YAsUr6VeYpBL0AAbxT},index1)=>{ryFX9X0p0pBL0AAbxT??=\"\";YAsUr6VeYpBL0AAbxT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pBL0AAbxT-${idpBL0AAbxT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YAsUr6VeY:YAsUr6VeYpBL0AAbxT},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bxsw7u\",children:/*#__PURE__*/_jsx(Link,{href:ryFX9X0p0pBL0AAbxT,motionChild:true,nodeId:\"cOzco7obD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{background:{alt:\"\",fit:\"fit\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 1200px) - 46px) / 3, 50px) + 27px)`,...toResponsiveImage(XiSkPAlCUpBL0AAbxT),...{positionX:\"center\",positionY:\"center\"}}},HTiJLXXPf:{background:{alt:\"\",fit:\"fit\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px), 1200px) - 132px) / 4, 50px) + 35.5px)`,...toResponsiveImage(XiSkPAlCUpBL0AAbxT),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fit\",sizes:\"246px\",...toResponsiveImage(XiSkPAlCUpBL0AAbxT),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1wzcooy framer-lux5qc\",whileHover:animation1})})})})})},idpBL0AAbxT);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qzdlm8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AxZstNLsb\",data:SponsorsExhibitors,type:\"Collection\"},orderBy:[{collection:\"AxZstNLsb\",name:\"DKLLKyLpf\",type:\"Identifier\"}],select:[{collection:\"AxZstNLsb\",name:\"XiSkPAlCU\",type:\"Identifier\"},{collection:\"AxZstNLsb\",name:\"ryFX9X0p0\",type:\"Identifier\"},{collection:\"AxZstNLsb\",name:\"YAsUr6VeY\",type:\"Identifier\"},{collection:\"AxZstNLsb\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"AxZstNLsb\",name:\"DKLLKyLpf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"True\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"AxZstNLsb\",name:\"Ni9_do5TA\",type:\"Identifier\"}},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idAxZstNLsb,ryFX9X0p0:ryFX9X0p0AxZstNLsb,XiSkPAlCU:XiSkPAlCUAxZstNLsb,YAsUr6VeY:YAsUr6VeYAxZstNLsb},index2)=>{ryFX9X0p0AxZstNLsb??=\"\";YAsUr6VeYAxZstNLsb??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AxZstNLsb-${idAxZstNLsb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YAsUr6VeY:YAsUr6VeYAxZstNLsb},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdl2hs\",children:/*#__PURE__*/_jsx(Link,{href:ryFX9X0p0AxZstNLsb,motionChild:true,nodeId:\"i20pwVrgc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{background:{alt:\"\",fit:\"fit\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 1200px) - 46px) / 3, 50px) + 27px)`,...toResponsiveImage(XiSkPAlCUAxZstNLsb),...{positionX:\"center\",positionY:\"center\"}}},HTiJLXXPf:{background:{alt:\"\",fit:\"fit\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px), 1200px) - 132px) / 4, 50px) + 35.5px)`,...toResponsiveImage(XiSkPAlCUAxZstNLsb),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"a\",background:{alt:\"\",fit:\"fit\",sizes:\"246px\",...toResponsiveImage(XiSkPAlCUAxZstNLsb),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ix03wr framer-lux5qc\",whileHover:animation1})})})})})},idAxZstNLsb);})})})})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xveu9j\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10mgtmm\",\"data-framer-name\":\"Container\",id:elementId10,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pn07ox\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s62tqg\",\"data-framer-name\":\"Title/Body Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:\"Partners\"})}),className:\"framer-i5gnrp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12cflpe\",\"data-styles-preset\":\"cWQEiKhnk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 127, 128)\"},children:[\"For more information contact \",/*#__PURE__*/_jsx(Link,{href:\"mailto:sales@synbiobeta.com\",motionChild:true,nodeId:\"dTToXHEZu\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-77eirk\",\"data-styles-preset\":\"qNzgYnw5_\",children:\"Anissa Cooke\"})})]})}),className:\"framer-ogdte8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8co0h\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12siw0p\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z2n15g\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RJLJ5GcJW\",data:SponsorsExhibitors,type:\"Collection\"},orderBy:[{collection:\"RJLJ5GcJW\",name:\"A5yG_69wL\",type:\"Identifier\"}],select:[{collection:\"RJLJ5GcJW\",name:\"XiSkPAlCU\",type:\"Identifier\"},{collection:\"RJLJ5GcJW\",name:\"YAsUr6VeY\",type:\"Identifier\"},{collection:\"RJLJ5GcJW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RJLJ5GcJW\",name:\"nnfBEKKeV\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"TRUE\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idRJLJ5GcJW,XiSkPAlCU:XiSkPAlCURJLJ5GcJW,YAsUr6VeY:YAsUr6VeYRJLJ5GcJW},index3)=>{YAsUr6VeYRJLJ5GcJW??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RJLJ5GcJW-${idRJLJ5GcJW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YAsUr6VeY:YAsUr6VeYRJLJ5GcJW},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18oakw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{background:{alt:\"\",fit:\"fit\",sizes:\"185px\",...toResponsiveImage(XiSkPAlCURJLJ5GcJW),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",sizes:\"246px\",...toResponsiveImage(XiSkPAlCURJLJ5GcJW),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-v1whxq\",whileHover:animation1})})})})},idRJLJ5GcJW);})})})})})})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlv9oo\",\"data-framer-name\":\"Why Attend?\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o71uem\",\"data-framer-name\":\"Title/Body Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1hux662\",\"data-styles-preset\":\"F7QeHft3j\",children:\"Why people love SynBioBeta\"})}),className:\"framer-bq19mr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a0sbvw-container hidden-sc5jeo\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hNECF9XiO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"hNECF9XiO\",layoutId:\"hNECF9XiO\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r45bgo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rDPtfmf9x\",data:ConferenceTestimonial,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"rDPtfmf9x\",name:\"G2ID3mOM6\",type:\"Identifier\"},{collection:\"rDPtfmf9x\",name:\"cWZpSWSDq\",type:\"Identifier\"},{collection:\"rDPtfmf9x\",name:\"GaYwXqvEB\",type:\"Identifier\"},{collection:\"rDPtfmf9x\",name:\"dzQY7MENz\",type:\"Identifier\"},{collection:\"rDPtfmf9x\",name:\"rTtuMdpdX\",type:\"Identifier\"},{collection:\"rDPtfmf9x\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"rDPtfmf9x\",name:\"eFGGnMwPC\",type:\"Identifier\"}}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({cWZpSWSDq:cWZpSWSDqrDPtfmf9x,dzQY7MENz:dzQY7MENzrDPtfmf9x,G2ID3mOM6:G2ID3mOM6rDPtfmf9x,GaYwXqvEB:GaYwXqvEBrDPtfmf9x,id:idrDPtfmf9x,rTtuMdpdX:rTtuMdpdXrDPtfmf9x},index4)=>{cWZpSWSDqrDPtfmf9x??=\"\";GaYwXqvEBrDPtfmf9x??=\"\";dzQY7MENzrDPtfmf9x??=\"\";rTtuMdpdXrDPtfmf9x??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rDPtfmf9x-${idrDPtfmf9x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rTtuMdpdX:rTtuMdpdXrDPtfmf9x},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12polea\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"440px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sypekt-container\",inComponentSlot:true,nodeId:\"eBLsZeCWj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",iaP0Vm1Ah:toResponsiveImage(G2ID3mOM6rDPtfmf9x),id:\"eBLsZeCWj\",jGhggQ38a:dzQY7MENzrDPtfmf9x,K2l1ZE7iq:cWZpSWSDqrDPtfmf9x,layoutId:\"eBLsZeCWj\",style:{width:\"100%\"},ulGSuwhVs:GaYwXqvEBrDPtfmf9x,variant:\"vHmhOb0B4\",width:\"100%\"})})})})})},idrDPtfmf9x);})})})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13gehx7-container hidden-72rtr7 hidden-17jvqki hidden-wems4f\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZYET8lKsA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ZYET8lKsA\",layoutId:\"ZYET8lKsA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1veqpxg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"p_4slrUkm\",data:ConferenceTestimonial,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"p_4slrUkm\",name:\"G2ID3mOM6\",type:\"Identifier\"},{collection:\"p_4slrUkm\",name:\"cWZpSWSDq\",type:\"Identifier\"},{collection:\"p_4slrUkm\",name:\"GaYwXqvEB\",type:\"Identifier\"},{collection:\"p_4slrUkm\",name:\"dzQY7MENz\",type:\"Identifier\"},{collection:\"p_4slrUkm\",name:\"rTtuMdpdX\",type:\"Identifier\"},{collection:\"p_4slrUkm\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"p_4slrUkm\",name:\"eFGGnMwPC\",type:\"Identifier\"}}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({cWZpSWSDq:cWZpSWSDqp_4slrUkm,dzQY7MENz:dzQY7MENzp_4slrUkm,G2ID3mOM6:G2ID3mOM6p_4slrUkm,GaYwXqvEB:GaYwXqvEBp_4slrUkm,id:idp_4slrUkm,rTtuMdpdX:rTtuMdpdXp_4slrUkm},index5)=>{cWZpSWSDqp_4slrUkm??=\"\";GaYwXqvEBp_4slrUkm??=\"\";dzQY7MENzp_4slrUkm??=\"\";rTtuMdpdXp_4slrUkm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`p_4slrUkm-${idp_4slrUkm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rTtuMdpdX:rTtuMdpdXp_4slrUkm},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wxj6tr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"286px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xrvxsh-container\",inComponentSlot:true,nodeId:\"zifUz8iSd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",iaP0Vm1Ah:toResponsiveImage(G2ID3mOM6p_4slrUkm),id:\"zifUz8iSd\",jGhggQ38a:dzQY7MENzp_4slrUkm,K2l1ZE7iq:cWZpSWSDqp_4slrUkm,layoutId:\"zifUz8iSd\",style:{width:\"100%\"},ulGSuwhVs:GaYwXqvEBp_4slrUkm,variant:\"eHXknfYqm\",width:\"100%\"})})})})})},idp_4slrUkm);})})})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1225,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h42hu7-container\",id:elementId11,nodeId:\"o7gUG5sTW\",ref:ref10,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"QW1U9yU1H\"},HTiJLXXPf:{variant:\"lECdmaPQG\"}},children:/*#__PURE__*/_jsx(Accommodation,{height:\"100%\",id:\"o7gUG5sTW\",layoutId:\"o7gUG5sTW\",style:{width:\"100%\"},variant:\"nOxkKlqJ3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:828,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1am1oot-container\",nodeId:\"CXXDeVXlQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"wCy2AJ1Ng\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"CXXDeVXlQ\",layoutId:\"CXXDeVXlQ\",style:{width:\"100%\"},variant:\"o3MtUDiHP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:692,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oflhn1-container\",nodeId:\"K40ofwFfT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GGNA874AY:{variant:\"eWyeu2HvG\"}},children:/*#__PURE__*/_jsx(PreFooter,{height:\"100%\",id:\"K40ofwFfT\",layoutId:\"K40ofwFfT\",style:{width:\"100%\"},variant:\"ecJRmXRU6\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-33seF.framer-lux5qc, .framer-33seF .framer-lux5qc { display: block; }\",\".framer-33seF.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-33seF .framer-112cdoh { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-125acib { align-content: flex-end; align-items: flex-end; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-33seF .framer-1ykliu7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-33seF .framer-1fy3jup, .framer-33seF .framer-16656c2 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-ts9n3-container, .framer-33seF .framer-119152l-container, .framer-33seF .framer-11gpcr-container, .framer-33seF .framer-1xjgc98-container, .framer-33seF .framer-16l8t51-container, .framer-33seF .framer-aat3et-container, .framer-33seF .framer-1ptutaw-container, .framer-33seF .framer-1obv4gs-container, .framer-33seF .framer-phofnu-container, .framer-33seF .framer-1fyx5ge-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-33seF .framer-124n9yx, .framer-33seF .framer-1oeo2j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-33seF .framer-dg819s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-18zc0x1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-33seF .framer-riotqf { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 23.421663851351354%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 23.421663851351354%) add; min-height: 917px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: -117px; z-index: 1; }\",\".framer-33seF .framer-rtd456 { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 65.66195101351352%); bottom: 0px; flex: none; height: 73%; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 3; }\",\".framer-33seF .framer-1fryx52 { bottom: -210px; flex: none; height: 1110px; left: -5px; overflow: visible; position: absolute; right: -114px; z-index: 2; }\",\".framer-33seF .framer-19t6kb5 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 50%; opacity: 0; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; top: 0px; transform: translateX(-50%); user-select: none; width: 100%; z-index: 1; }\",\".framer-33seF .framer-1g52xqx { background-color: #ffffff; flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-33seF .framer-mwnyf5 { background-color: #ffffff; bottom: -284px; flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-33seF .framer-13lmaqv { background-color: #ffffff; flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-33seF .framer-1wep3ym { background-color: #ffffff; flex: none; height: 2px; left: calc(50.00000000000002% - 1440px / 2); overflow: hidden; position: absolute; top: 3px; width: 1440px; z-index: 1; }\",\".framer-33seF .framer-1613qa2 { align-content: center; align-items: center; background-color: var(--token-9c3cbba7-21c9-46d9-addf-aedd2010f035, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-fcif1p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1800px; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-33seF .framer-gvi5jx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 72%; }\",\".framer-33seF .framer-1uy6f2c, .framer-33seF .framer-175ccts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-896n1g, .framer-33seF .framer-e0fk9k, .framer-33seF .framer-11ag8g8, .framer-33seF .framer-uwvb, .framer-33seF .framer-16db58, .framer-33seF .framer-j2owsq, .framer-33seF .framer-1os8mac, .framer-33seF .framer-817zu5, .framer-33seF .framer-tg205i, .framer-33seF .framer-o8rd89, .framer-33seF .framer-i5gnrp, .framer-33seF .framer-ogdte8, .framer-33seF .framer-bq19mr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-33seF .framer-1bu4pg7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-vk7gaz { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-nqwtqb-container, .framer-33seF .framer-1ers365-container, .framer-33seF .framer-1so676l-container, .framer-33seF .framer-b1f16r-container, .framer-33seF .framer-5dd393-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-33seF .framer-xl4udy { align-content: center; align-items: center; background-color: var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, #191919); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-bffeg2-container, .framer-33seF .framer-1ax90ib-container, .framer-33seF .framer-m732ab-container, .framer-33seF .framer-zg11gf-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-33seF .framer-kx0070 { align-content: center; align-items: center; background-color: var(--token-9c3cbba7-21c9-46d9-addf-aedd2010f035, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 23px 40px 0px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-1kjsd21, .framer-33seF .framer-36355a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-33seF .framer-1u45xk3, .framer-33seF .framer-j7cte7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1itzqdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1u19geu, .framer-33seF .framer-1y51e66, .framer-33seF .framer-1o71uem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-wapb33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-8svmko { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-33seF .framer-1hx9xhv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 26px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-jrzof8, .framer-33seF .framer-1n7zosx, .framer-33seF .framer-1gz7f8v { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-33seF .framer-w1nxsn { 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: hidden; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-33seF .framer-fvs7hx { align-content: center; align-items: center; background-color: var(--token-9c3cbba7-21c9-46d9-addf-aedd2010f035, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 40px 0px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-gw23xv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-ssvfrp { 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; position: relative; width: 100%; }\",\".framer-33seF .framer-1eg5au5 { background-color: var(--token-262ddf77-3c18-4772-a1f1-615cbc9acce6, #eaeaea); flex: 1 0 0px; height: 1px; opacity: 0.65; position: relative; width: 1px; }\",\".framer-33seF .framer-1ose9jp, .framer-33seF .framer-j6fb88, .framer-33seF .framer-ah0sip, .framer-33seF .framer-2xufda { aspect-ratio: 1 / 1; bottom: -4px; flex: none; left: 50%; overflow: visible; position: absolute; top: -4px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 9px); z-index: 1; }\",\".framer-33seF .framer-1yz2d8g, .framer-33seF .framer-1sw9tt6 { background-color: var(--token-947d1ac3-10e9-4dde-84ff-9edb0469d0af, #1e1e1e); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 9px; left: 4px; position: absolute; top: 0px; width: 1px; }\",\".framer-33seF .framer-m2p08e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-nuhzhr-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-33seF .framer-1hb8us6 { 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: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-33seF .framer-rg16ue { align-content: center; align-items: center; background-color: var(--token-9c3cbba7-21c9-46d9-addf-aedd2010f035, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 40px 100px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-tf389d, .framer-33seF .framer-1jp9qez, .framer-33seF .framer-3o602 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1mjuks, .framer-33seF .framer-1tidf6x, .framer-33seF .framer-y3b7wc { background-color: var(--token-99488b8f-9045-47b0-b111-e67e4fa79475, #eaeaea); flex: 1 0 0px; height: 1px; opacity: 0.65; position: relative; width: 1px; }\",\".framer-33seF .framer-1orkqwy, .framer-33seF .framer-945anh, .framer-33seF .framer-rtx1p, .framer-33seF .framer-yr50br, .framer-33seF .framer-f7exwt, .framer-33seF .framer-12k82ul { background-color: var(--token-33ea2f5d-78fc-4db9-8345-be69975ea102, #1e1e1e); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 9px; left: 4px; position: absolute; top: 0px; width: 1px; }\",\".framer-33seF .framer-1wo883f, .framer-33seF .framer-p6jgpu, .framer-33seF .framer-1xveu9j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1800px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-cl8wlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1f99ms3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-o9iac5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1ju4po4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1800px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-33seF .framer-z3w85i { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-33seF .framer-srlhfk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 72%; }\",\".framer-33seF .framer-hfjzbu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-45xdat-container { flex: none; height: 1272px; position: relative; width: 100%; }\",\".framer-33seF .framer-z936h2 { align-content: center; align-items: center; background-color: var(--token-f690539a-a521-4682-8b7c-08b2d2fbe10e, #1e1e1e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-zkquuy { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-33seF .framer-e0u871-container { flex: none; height: auto; position: relative; width: 320px; }\",\".framer-33seF .framer-1jb698m { 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: hidden; padding: 2px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-33seF .framer-1jr665n-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 23px; }\",\".framer-33seF .framer-g37dgn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-33seF .framer-10bn8ox-container { flex: none; height: auto; position: relative; width: 413px; }\",\".framer-33seF .framer-hb2tyo { 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: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-14dbuhw { align-content: center; align-items: center; background-color: var(--token-9c3cbba7-21c9-46d9-addf-aedd2010f035, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-33seF .framer-lgvdgw, .framer-33seF .framer-10mgtmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-ijrfjk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1jlxs3y, .framer-33seF .framer-s62tqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-18qespk { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-hi00d3, .framer-33seF .framer-a8co0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1t47tj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1c77v3m, .framer-33seF .framer-1qzdlm8 { display: grid; flex: none; gap: 44px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1bxsw7u, .framer-33seF .framer-kdl2hs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1wzcooy, .framer-33seF .framer-ix03wr { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -31px; flex: none; left: calc(49.70414201183434% - 246px / 2); position: absolute; text-decoration: none; top: -31px; width: 246px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-33seF .framer-1pn07ox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-12siw0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-z2n15g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 54px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-33seF .framer-18oakw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; padding: 0px; position: relative; width: 197px; }\",\".framer-33seF .framer-v1whxq { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -31px; flex: none; left: calc(49.70414201183434% - 246px / 2); position: absolute; top: -31px; width: 246px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-33seF .framer-rlv9oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-33seF .framer-1a0sbvw-container { flex: none; height: 446px; position: relative; width: 100%; }\",\".framer-33seF .framer-r45bgo, .framer-33seF .framer-1veqpxg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-33seF .framer-12polea, .framer-33seF .framer-wxj6tr { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-33seF .framer-sypekt-container { flex: none; height: auto; position: relative; width: 440px; }\",\".framer-33seF .framer-13gehx7-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-33seF .framer-xrvxsh-container { flex: none; height: auto; position: relative; width: 286px; }\",\".framer-33seF .framer-h42hu7-container, .framer-33seF .framer-oflhn1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-33seF .framer-1am1oot-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-33seF.framer-72rtr7, .framer-33seF .framer-112cdoh, .framer-33seF .framer-125acib, .framer-33seF .framer-1ykliu7, .framer-33seF .framer-1fy3jup, .framer-33seF .framer-16656c2, .framer-33seF .framer-dg819s, .framer-33seF .framer-riotqf, .framer-33seF .framer-19t6kb5, .framer-33seF .framer-1613qa2, .framer-33seF .framer-gvi5jx, .framer-33seF .framer-1uy6f2c, .framer-33seF .framer-1bu4pg7, .framer-33seF .framer-xl4udy, .framer-33seF .framer-kx0070, .framer-33seF .framer-1kjsd21, .framer-33seF .framer-1u45xk3, .framer-33seF .framer-1itzqdt, .framer-33seF .framer-1u19geu, .framer-33seF .framer-wapb33, .framer-33seF .framer-1hx9xhv, .framer-33seF .framer-jrzof8, .framer-33seF .framer-w1nxsn, .framer-33seF .framer-fvs7hx, .framer-33seF .framer-36355a, .framer-33seF .framer-gw23xv, .framer-33seF .framer-ssvfrp, .framer-33seF .framer-j7cte7, .framer-33seF .framer-m2p08e, .framer-33seF .framer-1y51e66, .framer-33seF .framer-1hb8us6, .framer-33seF .framer-rg16ue, .framer-33seF .framer-tf389d, .framer-33seF .framer-cl8wlb, .framer-33seF .framer-1f99ms3, .framer-33seF .framer-o9iac5, .framer-33seF .framer-srlhfk, .framer-33seF .framer-175ccts, .framer-33seF .framer-hfjzbu, .framer-33seF .framer-1jp9qez, .framer-33seF .framer-z936h2, .framer-33seF .framer-zkquuy, .framer-33seF .framer-1n7zosx, .framer-33seF .framer-1gz7f8v, .framer-33seF .framer-1jb698m, .framer-33seF .framer-hb2tyo, .framer-33seF .framer-14dbuhw, .framer-33seF .framer-3o602, .framer-33seF .framer-lgvdgw, .framer-33seF .framer-ijrfjk, .framer-33seF .framer-1jlxs3y, .framer-33seF .framer-18qespk, .framer-33seF .framer-hi00d3, .framer-33seF .framer-1t47tj2, .framer-33seF .framer-1bxsw7u, .framer-33seF .framer-kdl2hs, .framer-33seF .framer-10mgtmm, .framer-33seF .framer-1pn07ox, .framer-33seF .framer-s62tqg, .framer-33seF .framer-a8co0h, .framer-33seF .framer-12siw0p, .framer-33seF .framer-z2n15g, .framer-33seF .framer-18oakw, .framer-33seF .framer-rlv9oo, .framer-33seF .framer-1o71uem, .framer-33seF .framer-r45bgo, .framer-33seF .framer-12polea, .framer-33seF .framer-1veqpxg, .framer-33seF .framer-wxj6tr { gap: 0px; } .framer-33seF.framer-72rtr7 > *, .framer-33seF .framer-112cdoh > *, .framer-33seF .framer-hb2tyo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-33seF.framer-72rtr7 > :first-child, .framer-33seF .framer-112cdoh > :first-child, .framer-33seF .framer-1ykliu7 > :first-child, .framer-33seF .framer-1fy3jup > :first-child, .framer-33seF .framer-16656c2 > :first-child, .framer-33seF .framer-riotqf > :first-child, .framer-33seF .framer-19t6kb5 > :first-child, .framer-33seF .framer-1613qa2 > :first-child, .framer-33seF .framer-gvi5jx > :first-child, .framer-33seF .framer-1uy6f2c > :first-child, .framer-33seF .framer-1bu4pg7 > :first-child, .framer-33seF .framer-kx0070 > :first-child, .framer-33seF .framer-1kjsd21 > :first-child, .framer-33seF .framer-1u45xk3 > :first-child, .framer-33seF .framer-1itzqdt > :first-child, .framer-33seF .framer-1u19geu > :first-child, .framer-33seF .framer-fvs7hx > :first-child, .framer-33seF .framer-36355a > :first-child, .framer-33seF .framer-gw23xv > :first-child, .framer-33seF .framer-j7cte7 > :first-child, .framer-33seF .framer-m2p08e > :first-child, .framer-33seF .framer-1y51e66 > :first-child, .framer-33seF .framer-1hb8us6 > :first-child, .framer-33seF .framer-rg16ue > :first-child, .framer-33seF .framer-cl8wlb > :first-child, .framer-33seF .framer-1f99ms3 > :first-child, .framer-33seF .framer-o9iac5 > :first-child, .framer-33seF .framer-srlhfk > :first-child, .framer-33seF .framer-175ccts > :first-child, .framer-33seF .framer-zkquuy > :first-child, .framer-33seF .framer-hb2tyo > :first-child, .framer-33seF .framer-14dbuhw > :first-child, .framer-33seF .framer-lgvdgw > :first-child, .framer-33seF .framer-ijrfjk > :first-child, .framer-33seF .framer-1jlxs3y > :first-child, .framer-33seF .framer-18qespk > :first-child, .framer-33seF .framer-hi00d3 > :first-child, .framer-33seF .framer-1t47tj2 > :first-child, .framer-33seF .framer-10mgtmm > :first-child, .framer-33seF .framer-1pn07ox > :first-child, .framer-33seF .framer-s62tqg > :first-child, .framer-33seF .framer-a8co0h > :first-child, .framer-33seF .framer-rlv9oo > :first-child, .framer-33seF .framer-1o71uem > :first-child { margin-top: 0px; } .framer-33seF.framer-72rtr7 > :last-child, .framer-33seF .framer-112cdoh > :last-child, .framer-33seF .framer-1ykliu7 > :last-child, .framer-33seF .framer-1fy3jup > :last-child, .framer-33seF .framer-16656c2 > :last-child, .framer-33seF .framer-riotqf > :last-child, .framer-33seF .framer-19t6kb5 > :last-child, .framer-33seF .framer-1613qa2 > :last-child, .framer-33seF .framer-gvi5jx > :last-child, .framer-33seF .framer-1uy6f2c > :last-child, .framer-33seF .framer-1bu4pg7 > :last-child, .framer-33seF .framer-kx0070 > :last-child, .framer-33seF .framer-1kjsd21 > :last-child, .framer-33seF .framer-1u45xk3 > :last-child, .framer-33seF .framer-1itzqdt > :last-child, .framer-33seF .framer-1u19geu > :last-child, .framer-33seF .framer-fvs7hx > :last-child, .framer-33seF .framer-36355a > :last-child, .framer-33seF .framer-gw23xv > :last-child, .framer-33seF .framer-j7cte7 > :last-child, .framer-33seF .framer-m2p08e > :last-child, .framer-33seF .framer-1y51e66 > :last-child, .framer-33seF .framer-1hb8us6 > :last-child, .framer-33seF .framer-rg16ue > :last-child, .framer-33seF .framer-cl8wlb > :last-child, .framer-33seF .framer-1f99ms3 > :last-child, .framer-33seF .framer-o9iac5 > :last-child, .framer-33seF .framer-srlhfk > :last-child, .framer-33seF .framer-175ccts > :last-child, .framer-33seF .framer-zkquuy > :last-child, .framer-33seF .framer-hb2tyo > :last-child, .framer-33seF .framer-14dbuhw > :last-child, .framer-33seF .framer-lgvdgw > :last-child, .framer-33seF .framer-ijrfjk > :last-child, .framer-33seF .framer-1jlxs3y > :last-child, .framer-33seF .framer-18qespk > :last-child, .framer-33seF .framer-hi00d3 > :last-child, .framer-33seF .framer-1t47tj2 > :last-child, .framer-33seF .framer-10mgtmm > :last-child, .framer-33seF .framer-1pn07ox > :last-child, .framer-33seF .framer-s62tqg > :last-child, .framer-33seF .framer-a8co0h > :last-child, .framer-33seF .framer-rlv9oo > :last-child, .framer-33seF .framer-1o71uem > :last-child { margin-bottom: 0px; } .framer-33seF .framer-125acib > *, .framer-33seF .framer-wapb33 > *, .framer-33seF .framer-jrzof8 > *, .framer-33seF .framer-w1nxsn > *, .framer-33seF .framer-ssvfrp > *, .framer-33seF .framer-tf389d > *, .framer-33seF .framer-hfjzbu > *, .framer-33seF .framer-1jp9qez > *, .framer-33seF .framer-1n7zosx > *, .framer-33seF .framer-1gz7f8v > *, .framer-33seF .framer-1jb698m > *, .framer-33seF .framer-3o602 > *, .framer-33seF .framer-1bxsw7u > *, .framer-33seF .framer-kdl2hs > *, .framer-33seF .framer-12siw0p > *, .framer-33seF .framer-18oakw > *, .framer-33seF .framer-12polea > *, .framer-33seF .framer-wxj6tr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-33seF .framer-125acib > :first-child, .framer-33seF .framer-dg819s > :first-child, .framer-33seF .framer-xl4udy > :first-child, .framer-33seF .framer-wapb33 > :first-child, .framer-33seF .framer-1hx9xhv > :first-child, .framer-33seF .framer-jrzof8 > :first-child, .framer-33seF .framer-w1nxsn > :first-child, .framer-33seF .framer-ssvfrp > :first-child, .framer-33seF .framer-tf389d > :first-child, .framer-33seF .framer-hfjzbu > :first-child, .framer-33seF .framer-1jp9qez > :first-child, .framer-33seF .framer-z936h2 > :first-child, .framer-33seF .framer-1n7zosx > :first-child, .framer-33seF .framer-1gz7f8v > :first-child, .framer-33seF .framer-1jb698m > :first-child, .framer-33seF .framer-3o602 > :first-child, .framer-33seF .framer-1bxsw7u > :first-child, .framer-33seF .framer-kdl2hs > :first-child, .framer-33seF .framer-12siw0p > :first-child, .framer-33seF .framer-z2n15g > :first-child, .framer-33seF .framer-18oakw > :first-child, .framer-33seF .framer-r45bgo > :first-child, .framer-33seF .framer-12polea > :first-child, .framer-33seF .framer-1veqpxg > :first-child, .framer-33seF .framer-wxj6tr > :first-child { margin-left: 0px; } .framer-33seF .framer-125acib > :last-child, .framer-33seF .framer-dg819s > :last-child, .framer-33seF .framer-xl4udy > :last-child, .framer-33seF .framer-wapb33 > :last-child, .framer-33seF .framer-1hx9xhv > :last-child, .framer-33seF .framer-jrzof8 > :last-child, .framer-33seF .framer-w1nxsn > :last-child, .framer-33seF .framer-ssvfrp > :last-child, .framer-33seF .framer-tf389d > :last-child, .framer-33seF .framer-hfjzbu > :last-child, .framer-33seF .framer-1jp9qez > :last-child, .framer-33seF .framer-z936h2 > :last-child, .framer-33seF .framer-1n7zosx > :last-child, .framer-33seF .framer-1gz7f8v > :last-child, .framer-33seF .framer-1jb698m > :last-child, .framer-33seF .framer-3o602 > :last-child, .framer-33seF .framer-1bxsw7u > :last-child, .framer-33seF .framer-kdl2hs > :last-child, .framer-33seF .framer-12siw0p > :last-child, .framer-33seF .framer-z2n15g > :last-child, .framer-33seF .framer-18oakw > :last-child, .framer-33seF .framer-r45bgo > :last-child, .framer-33seF .framer-12polea > :last-child, .framer-33seF .framer-1veqpxg > :last-child, .framer-33seF .framer-wxj6tr > :last-child { margin-right: 0px; } .framer-33seF .framer-1ykliu7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-33seF .framer-1fy3jup > *, .framer-33seF .framer-16656c2 > *, .framer-33seF .framer-riotqf > *, .framer-33seF .framer-1613qa2 > *, .framer-33seF .framer-kx0070 > *, .framer-33seF .framer-fvs7hx > *, .framer-33seF .framer-1hb8us6 > *, .framer-33seF .framer-rg16ue > *, .framer-33seF .framer-zkquuy > *, .framer-33seF .framer-14dbuhw > *, .framer-33seF .framer-18qespk > *, .framer-33seF .framer-hi00d3 > *, .framer-33seF .framer-1t47tj2 > *, .framer-33seF .framer-a8co0h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-33seF .framer-dg819s > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-33seF .framer-19t6kb5 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-33seF .framer-gvi5jx > *, .framer-33seF .framer-1kjsd21 > *, .framer-33seF .framer-36355a > *, .framer-33seF .framer-srlhfk > *, .framer-33seF .framer-lgvdgw > *, .framer-33seF .framer-ijrfjk > *, .framer-33seF .framer-10mgtmm > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-33seF .framer-1uy6f2c > *, .framer-33seF .framer-175ccts > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-33seF .framer-1bu4pg7 > *, .framer-33seF .framer-1u45xk3 > *, .framer-33seF .framer-1u19geu > *, .framer-33seF .framer-j7cte7 > *, .framer-33seF .framer-1y51e66 > *, .framer-33seF .framer-cl8wlb > *, .framer-33seF .framer-o9iac5 > *, .framer-33seF .framer-1jlxs3y > *, .framer-33seF .framer-s62tqg > *, .framer-33seF .framer-rlv9oo > *, .framer-33seF .framer-1o71uem > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-33seF .framer-xl4udy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-33seF .framer-1itzqdt > *, .framer-33seF .framer-m2p08e > *, .framer-33seF .framer-1f99ms3 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-33seF .framer-1hx9xhv > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-33seF .framer-gw23xv > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-33seF .framer-z936h2 > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-33seF .framer-1pn07ox > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-33seF .framer-z2n15g > * { margin: 0px; margin-left: calc(54px / 2); margin-right: calc(54px / 2); } .framer-33seF .framer-r45bgo > *, .framer-33seF .framer-1veqpxg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-33seF.framer-72rtr7 { width: 810px; } .framer-33seF .framer-1fryx52 { left: -658px; right: -92px; } .framer-33seF .framer-fcif1p { flex-direction: column; gap: 50px; justify-content: flex-start; } .framer-33seF .framer-gvi5jx, .framer-33seF .framer-srlhfk { width: 100%; } .framer-33seF .framer-xl4udy { flex-direction: column; height: min-content; } .framer-33seF .framer-bffeg2-container, .framer-33seF .framer-1ax90ib-container, .framer-33seF .framer-m732ab-container, .framer-33seF .framer-zg11gf-container { flex: none; height: 600px; width: 100%; } .framer-33seF .framer-1ju4po4 { flex-direction: column; gap: 50px; justify-content: flex-start; padding: 40px 0px 40px 0px; } .framer-33seF .framer-z3w85i { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-33seF .framer-phofnu-container { order: 0; } .framer-33seF .framer-1fyx5ge-container { order: 1; } .framer-33seF .framer-z936h2 { flex-direction: column; gap: 168px; } .framer-33seF .framer-zkquuy { order: 4; } .framer-33seF .framer-10bn8ox-container { -webkit-user-select: none; order: 3; pointer-events: none; user-select: none; } .framer-33seF .framer-hb2tyo { padding: 0px; } .framer-33seF .framer-1wzcooy { aspect-ratio: 1.6551724137931034 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 112px); left: -21px; right: -14px; top: -15px; width: unset; } .framer-33seF .framer-ix03wr { aspect-ratio: 1.6636363636363636 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 111px); left: -17px; right: -18px; top: -12px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-33seF .framer-fcif1p, .framer-33seF .framer-xl4udy, .framer-33seF .framer-1ju4po4, .framer-33seF .framer-z3w85i, .framer-33seF .framer-z936h2 { gap: 0px; } .framer-33seF .framer-fcif1p > *, .framer-33seF .framer-1ju4po4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-33seF .framer-fcif1p > :first-child, .framer-33seF .framer-xl4udy > :first-child, .framer-33seF .framer-1ju4po4 > :first-child, .framer-33seF .framer-z3w85i > :first-child, .framer-33seF .framer-z936h2 > :first-child { margin-top: 0px; } .framer-33seF .framer-fcif1p > :last-child, .framer-33seF .framer-xl4udy > :last-child, .framer-33seF .framer-1ju4po4 > :last-child, .framer-33seF .framer-z3w85i > :last-child, .framer-33seF .framer-z936h2 > :last-child { margin-bottom: 0px; } .framer-33seF .framer-xl4udy > *, .framer-33seF .framer-z3w85i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-33seF .framer-z936h2 > * { margin: 0px; margin-bottom: calc(168px / 2); margin-top: calc(168px / 2); } }}\",\"@media (max-width: 809px) { .framer-33seF.framer-72rtr7 { width: 390px; } .framer-33seF .framer-125acib { order: 0; padding: 20px 20px 50px 20px; } .framer-33seF .framer-1ykliu7 { gap: 5px; } .framer-33seF .framer-dg819s { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; } .framer-33seF .framer-119152l-container, .framer-33seF .framer-1613qa2 { order: 1; } .framer-33seF .framer-18zc0x1-container { flex: none; order: 0; width: 100%; } .framer-33seF .framer-1fryx52 { bottom: -86px; height: 1024px; left: -780px; right: -10px; } .framer-33seF .framer-fcif1p { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px 20px 40px 20px; } .framer-33seF .framer-gvi5jx, .framer-33seF .framer-srlhfk { width: 100%; } .framer-33seF .framer-vk7gaz { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-33seF .framer-nqwtqb-container, .framer-33seF .framer-1ers365-container, .framer-33seF .framer-1so676l-container, .framer-33seF .framer-b1f16r-container, .framer-33seF .framer-5dd393-container { width: 171px; } .framer-33seF .framer-xl4udy { flex-direction: column; height: min-content; order: 2; } .framer-33seF .framer-bffeg2-container, .framer-33seF .framer-1ax90ib-container, .framer-33seF .framer-m732ab-container, .framer-33seF .framer-zg11gf-container { flex: none; height: 600px; width: 100%; } .framer-33seF .framer-kx0070 { order: 3; padding: 23px 20px 0px 20px; } .framer-33seF .framer-fvs7hx { order: 4; padding: 50px 20px 0px 21px; } .framer-33seF .framer-rg16ue { order: 5; padding: 0px 20px 100px 20px; } .framer-33seF .framer-1ju4po4 { flex-direction: column; gap: 50px; justify-content: flex-start; padding: 40px 0px 40px 0px; } .framer-33seF .framer-z3w85i { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-33seF .framer-hfjzbu { flex-direction: column; gap: 25px; } .framer-33seF .framer-z936h2 { flex-direction: column; order: 6; padding: 100px 40px 50px 40px; } .framer-33seF .framer-zkquuy { order: 4; } .framer-33seF .framer-10bn8ox-container { -webkit-user-select: none; order: 3; pointer-events: none; user-select: none; width: 100%; } .framer-33seF .framer-hb2tyo { order: 7; padding: 0px; } .framer-33seF .framer-14dbuhw { padding: 0px 20px 50px 20px; } .framer-33seF .framer-1c77v3m, .framer-33seF .framer-1qzdlm8 { gap: 23px; grid-template-columns: repeat(3, minmax(50px, 1fr)); } .framer-33seF .framer-1bxsw7u, .framer-33seF .framer-kdl2hs { height: 48px; } .framer-33seF .framer-1wzcooy, .framer-33seF .framer-ix03wr { bottom: -11px; left: -14px; right: -13px; top: -11px; width: unset; } .framer-33seF .framer-1pn07ox { gap: 50px; } .framer-33seF .framer-z2n15g { gap: 23px; } .framer-33seF .framer-18oakw { height: 48px; width: 91px; } .framer-33seF .framer-v1whxq { bottom: -15px; left: -47px; right: -46px; top: -15px; width: unset; } .framer-33seF .framer-rlv9oo { order: 8; } .framer-33seF .framer-h42hu7-container { order: 9; } .framer-33seF .framer-1am1oot-container { order: 10; } .framer-33seF .framer-oflhn1-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-33seF .framer-1ykliu7, .framer-33seF .framer-dg819s, .framer-33seF .framer-fcif1p, .framer-33seF .framer-xl4udy, .framer-33seF .framer-1ju4po4, .framer-33seF .framer-z3w85i, .framer-33seF .framer-hfjzbu, .framer-33seF .framer-z936h2, .framer-33seF .framer-1c77v3m, .framer-33seF .framer-1qzdlm8, .framer-33seF .framer-1pn07ox, .framer-33seF .framer-z2n15g { gap: 0px; } .framer-33seF .framer-1ykliu7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-33seF .framer-1ykliu7 > :first-child, .framer-33seF .framer-dg819s > :first-child, .framer-33seF .framer-fcif1p > :first-child, .framer-33seF .framer-xl4udy > :first-child, .framer-33seF .framer-1ju4po4 > :first-child, .framer-33seF .framer-z3w85i > :first-child, .framer-33seF .framer-hfjzbu > :first-child, .framer-33seF .framer-z936h2 > :first-child, .framer-33seF .framer-1pn07ox > :first-child { margin-top: 0px; } .framer-33seF .framer-1ykliu7 > :last-child, .framer-33seF .framer-dg819s > :last-child, .framer-33seF .framer-fcif1p > :last-child, .framer-33seF .framer-xl4udy > :last-child, .framer-33seF .framer-1ju4po4 > :last-child, .framer-33seF .framer-z3w85i > :last-child, .framer-33seF .framer-hfjzbu > :last-child, .framer-33seF .framer-z936h2 > :last-child, .framer-33seF .framer-1pn07ox > :last-child { margin-bottom: 0px; } .framer-33seF .framer-dg819s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-33seF .framer-fcif1p > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-33seF .framer-xl4udy > *, .framer-33seF .framer-z3w85i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-33seF .framer-1ju4po4 > *, .framer-33seF .framer-1pn07ox > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-33seF .framer-hfjzbu > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-33seF .framer-z936h2 > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-33seF .framer-1c77v3m > *, .framer-33seF .framer-1c77v3m > :first-child, .framer-33seF .framer-1c77v3m > :last-child, .framer-33seF .framer-1qzdlm8 > *, .framer-33seF .framer-1qzdlm8 > :first-child, .framer-33seF .framer-1qzdlm8 > :last-child { margin: 0px; } .framer-33seF .framer-z2n15g > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-33seF .framer-z2n15g > :first-child { margin-left: 0px; } .framer-33seF .framer-z2n15g > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-33seF.framer-72rtr7 { width: 1200px; } .framer-33seF .framer-125acib { order: 0; } .framer-33seF .framer-1613qa2 { order: 1; } .framer-33seF .framer-xl4udy { order: 2; } .framer-33seF .framer-kx0070, .framer-33seF .framer-zkquuy { order: 3; } .framer-33seF .framer-fvs7hx, .framer-33seF .framer-10bn8ox-container { order: 4; } .framer-33seF .framer-rg16ue { order: 5; } .framer-33seF .framer-z936h2 { gap: 40px; order: 6; } .framer-33seF .framer-hb2tyo { order: 8; } .framer-33seF .framer-1t47tj2, .framer-33seF .framer-12siw0p { max-width: 1000px; } .framer-33seF .framer-rlv9oo { order: 7; } .framer-33seF .framer-h42hu7-container { order: 9; } .framer-33seF .framer-1am1oot-container { order: 10; } .framer-33seF .framer-oflhn1-container { order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-33seF .framer-z936h2 { gap: 0px; } .framer-33seF .framer-z936h2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-33seF .framer-z936h2 > :first-child { margin-left: 0px; } .framer-33seF .framer-z936h2 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23959.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HTiJLXXPf\":{\"layout\":[\"fixed\",\"auto\"]},\"GGNA874AY\":{\"layout\":[\"fixed\",\"auto\"]},\"JUBU1FCPj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"dn4AulaID\":{\"pattern\":\":dn4AulaID\",\"name\":\"trigger-2\"},\"Q6IwxllIb\":{\"pattern\":\":Q6IwxllIb\",\"name\":\"trigger-1\"},\"z_YrWZYEW\":{\"pattern\":\":z_YrWZYEW\",\"name\":\"event-speakers\"},\"F_2LHkNBM\":{\"pattern\":\":F_2LHkNBM\",\"name\":\"image-3\"},\"sMXmdKs0f\":{\"pattern\":\":sMXmdKs0f\",\"name\":\"event-speakers\"},\"G0skUExLB\":{\"pattern\":\":G0skUExLB\",\"name\":\"image-3\"},\"tVuNoUgmP\":{\"pattern\":\":tVuNoUgmP\",\"name\":\"agenda\"},\"gW5T0GEaH\":{\"pattern\":\":gW5T0GEaH\",\"name\":\"image-3\"},\"TwVtKrdwT\":{\"pattern\":\":TwVtKrdwT\",\"name\":\"ticket\"},\"UXwqD67Zg\":{\"pattern\":\":UXwqD67Zg\",\"name\":\"image-3\"},\"fBhd9yVMw\":{\"pattern\":\":fBhd9yVMw\",\"name\":\"image-3\"},\"o7gUG5sTW\":{\"pattern\":\":o7gUG5sTW\",\"name\":\"accommodation\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-33seF\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:23959.5,width:1440};addFonts(FrameraugiA20Il,[{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\"}]},...TicketAvailabilityFonts,...PaymenntButtonFonts,...HeroInfoFonts,...HighlighterTagFonts,...StatsFonts,...Categories2Fonts,...SpeakerCardWithLinkFonts,...ButtonFonts,...TopSession_MainPageFonts,...New_IntegratedScheduleFonts,...ConferencePassFonts,...MaterialFonts,...VisibiloityFonts,...TestimonialCardFonts,...TickerFonts,...AccommodationFonts,...FAQFonts,...PreFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"23959.5\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HTiJLXXPf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GGNA874AY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JUBU1FCPj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"dn4AulaID\\\":{\\\"pattern\\\":\\\":dn4AulaID\\\",\\\"name\\\":\\\"trigger-2\\\"},\\\"Q6IwxllIb\\\":{\\\"pattern\\\":\\\":Q6IwxllIb\\\",\\\"name\\\":\\\"trigger-1\\\"},\\\"z_YrWZYEW\\\":{\\\"pattern\\\":\\\":z_YrWZYEW\\\",\\\"name\\\":\\\"event-speakers\\\"},\\\"F_2LHkNBM\\\":{\\\"pattern\\\":\\\":F_2LHkNBM\\\",\\\"name\\\":\\\"image-3\\\"},\\\"sMXmdKs0f\\\":{\\\"pattern\\\":\\\":sMXmdKs0f\\\",\\\"name\\\":\\\"event-speakers\\\"},\\\"G0skUExLB\\\":{\\\"pattern\\\":\\\":G0skUExLB\\\",\\\"name\\\":\\\"image-3\\\"},\\\"tVuNoUgmP\\\":{\\\"pattern\\\":\\\":tVuNoUgmP\\\",\\\"name\\\":\\\"agenda\\\"},\\\"gW5T0GEaH\\\":{\\\"pattern\\\":\\\":gW5T0GEaH\\\",\\\"name\\\":\\\"image-3\\\"},\\\"TwVtKrdwT\\\":{\\\"pattern\\\":\\\":TwVtKrdwT\\\",\\\"name\\\":\\\"ticket\\\"},\\\"UXwqD67Zg\\\":{\\\"pattern\\\":\\\":UXwqD67Zg\\\",\\\"name\\\":\\\"image-3\\\"},\\\"fBhd9yVMw\\\":{\\\"pattern\\\":\\\":fBhd9yVMw\\\",\\\"name\\\":\\\"image-3\\\"},\\\"o7gUG5sTW\\\":{\\\"pattern\\\":\\\":o7gUG5sTW\\\",\\\"name\\\":\\\"accommodation\\\"}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAA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AC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAA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AAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAA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,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAA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AAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,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,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,KAAK,SAAS,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KA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AC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,WAAW,YAAY,K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",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "CounterFonts", "getFonts", "Counter", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "endNumber", "fontSize", "height", "id", "startNumber", "suffix", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "NSfqpS8dr", "qPZUsIF_r", "ixRE_HRvM", "Kphoa2ytH", "aFMg27Z52", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Counter", "RichText2", "css", "FramerGc4FbP15A", "withCSS", "Gc4FbP15A_default", "addPropertyControls", "ControlType", "addFonts", "CounterFonts", "ExcelDateDisplayFonts", "getFonts", "ExcelDateDisplay", "ExcelTimeDisplayFonts", "ExcelTimeDisplay", "SpeakerCardFonts", "cD1QeGf7t_default", "MotionDivWithFX", "withFX", "motion", "MotionAWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toString", "value", "animation", "transition2", "transition3", "animation1", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "saeex7UoWAdBM0PNO6", "iAHomRPW9AdBM0PNO6", "O8SkeTdROAdBM0PNO6", "kFLvvfggDAdBM0PNO6", "ER_Czfpu7gSJbGipgv", "ER_Czfpu7VQGzmnmy4", "eoNm9cDSAVQGzmnmy4", "spH3BjGqfVQGzmnmy4", "xWMZXIfArVQGzmnmy4", "b9KiniA39VQGzmnmy4", "idVQGzmnmy4", "kwa5SmhPnAdBM0PNO6", "idAdBM0PNO6", "saeex7UoWLJ5JvDVs0", "iAHomRPW9LJ5JvDVs0", "O8SkeTdROLJ5JvDVs0", "kFLvvfggDLJ5JvDVs0", "ER_Czfpu7auX4IGK7s", "eoNm9cDSAauX4IGK7s", "spH3BjGqfauX4IGK7s", "xWMZXIfArauX4IGK7s", "b9KiniA39auX4IGK7s", "idauX4IGK7s", "kwa5SmhPnLJ5JvDVs0", "idLJ5JvDVs0", "saeex7UoWQjPOVvo6Z", "iAHomRPW9QjPOVvo6Z", "O8SkeTdROQjPOVvo6Z", "kFLvvfggDQjPOVvo6Z", "ER_Czfpu7bGw5WBCAV", "eoNm9cDSAbGw5WBCAV", "spH3BjGqfbGw5WBCAV", "xWMZXIfArbGw5WBCAV", "b9KiniA39bGw5WBCAV", "idbGw5WBCAV", "kwa5SmhPnQjPOVvo6Z", "idQjPOVvo6Z", "saeex7UoWxXtcbig9O", "iAHomRPW9xXtcbig9O", "O8SkeTdROxXtcbig9O", "kFLvvfggDxXtcbig9O", "ER_Czfpu7S8ZZU0ln1", "eoNm9cDSAS8ZZU0ln1", "spH3BjGqfS8ZZU0ln1", "xWMZXIfArS8ZZU0ln1", "b9KiniA39S8ZZU0ln1", "idS8ZZU0ln1", "kwa5SmhPnxXtcbig9O", "idxXtcbig9O", "saeex7UoWX39X9_SQS", "iAHomRPW9X39X9_SQS", "O8SkeTdROX39X9_SQS", "kFLvvfggDX39X9_SQS", "ER_Czfpu7jFiydSx3E", "eoNm9cDSAjFiydSx3E", "spH3BjGqfjFiydSx3E", "xWMZXIfArjFiydSx3E", "b9KiniA39jFiydSx3E", "idjFiydSx3E", "kwa5SmhPnX39X9_SQS", "idX39X9_SQS", "saeex7UoWwbEIC3OA2", "iAHomRPW9wbEIC3OA2", "O8SkeTdROwbEIC3OA2", "kFLvvfggDwbEIC3OA2", "ER_Czfpu7Q6OCiQJf6", "eoNm9cDSAQ6OCiQJf6", "spH3BjGqfQ6OCiQJf6", "xWMZXIfArQ6OCiQJf6", "b9KiniA39Q6OCiQJf6", "idQ6OCiQJf6", "kwa5SmhPnwbEIC3OA2", "idwbEIC3OA2", "saeex7UoWKOdFzXAZr", "iAHomRPW9KOdFzXAZr", "O8SkeTdROKOdFzXAZr", "kFLvvfggDKOdFzXAZr", "ER_Czfpu7XqOD2fSHQ", "eoNm9cDSAXqOD2fSHQ", "spH3BjGqfXqOD2fSHQ", "xWMZXIfArXqOD2fSHQ", "b9KiniA39XqOD2fSHQ", "idXqOD2fSHQ", "kwa5SmhPnKOdFzXAZr", "idKOdFzXAZr", "saeex7UoWbet53hnsw", "iAHomRPW9bet53hnsw", "O8SkeTdRObet53hnsw", "kFLvvfggDbet53hnsw", "ER_Czfpu7Pw_dWDUpn", "eoNm9cDSAPw_dWDUpn", "spH3BjGqfPw_dWDUpn", "xWMZXIfArPw_dWDUpn", "b9KiniA39Pw_dWDUpn", "idPw_dWDUpn", "kwa5SmhPnbet53hnsw", "idbet53hnsw", "saeex7UoWAUS8mZTOI", "iAHomRPW9AUS8mZTOI", "O8SkeTdROAUS8mZTOI", "kFLvvfggDAUS8mZTOI", "ER_Czfpu7Q1nDE0c_n", "eoNm9cDSAQ1nDE0c_n", "spH3BjGqfQ1nDE0c_n", "xWMZXIfArQ1nDE0c_n", "b9KiniA39Q1nDE0c_n", "idQ1nDE0c_n", "kwa5SmhPnAUS8mZTOI", "idAUS8mZTOI", "saeex7UoWhGcKB5EOx", "iAHomRPW9hGcKB5EOx", "O8SkeTdROhGcKB5EOx", "kFLvvfggDhGcKB5EOx", "ER_Czfpu7SdM2uChXF", "eoNm9cDSASdM2uChXF", "spH3BjGqfSdM2uChXF", "xWMZXIfArSdM2uChXF", "b9KiniA39SdM2uChXF", "idSdM2uChXF", "kwa5SmhPnhGcKB5EOx", "idhGcKB5EOx", "saeex7UoWktbkv0bVb", "iAHomRPW9ktbkv0bVb", "O8SkeTdROktbkv0bVb", "kFLvvfggDktbkv0bVb", "ER_Czfpu7DNCDuCiBW", "eoNm9cDSADNCDuCiBW", "spH3BjGqfDNCDuCiBW", "xWMZXIfArDNCDuCiBW", "b9KiniA39DNCDuCiBW", "idDNCDuCiBW", "kwa5SmhPnktbkv0bVb", "idktbkv0bVb", "saeex7UoWqQyyL9NfS", "iAHomRPW9qQyyL9NfS", "O8SkeTdROqQyyL9NfS", "kFLvvfggDqQyyL9NfS", "ER_Czfpu7hlnYryy2G", "eoNm9cDSAhlnYryy2G", "spH3BjGqfhlnYryy2G", "xWMZXIfArhlnYryy2G", "b9KiniA39hlnYryy2G", "idhlnYryy2G", "kwa5SmhPnqQyyL9NfS", "idqQyyL9NfS", "saeex7UoWH_8iurV9J", "iAHomRPW9H_8iurV9J", "O8SkeTdROH_8iurV9J", "kFLvvfggDH_8iurV9J", "ER_Czfpu7g8s0B_Jyl", "eoNm9cDSAg8s0B_Jyl", "spH3BjGqfg8s0B_Jyl", "xWMZXIfArg8s0B_Jyl", "b9KiniA39g8s0B_Jyl", "idg8s0B_Jyl", "kwa5SmhPnH_8iurV9J", "idH_8iurV9J", "saeex7UoWSC_cLnidY", "iAHomRPW9SC_cLnidY", "O8SkeTdROSC_cLnidY", "kFLvvfggDSC_cLnidY", "ER_Czfpu7UUfY28kvG", "eoNm9cDSAUUfY28kvG", "spH3BjGqfUUfY28kvG", "xWMZXIfArUUfY28kvG", "b9KiniA39UUfY28kvG", "idUUfY28kvG", "kwa5SmhPnSC_cLnidY", "idSC_cLnidY", "saeex7UoWXTmJOmF51", "iAHomRPW9XTmJOmF51", "O8SkeTdROXTmJOmF51", "kFLvvfggDXTmJOmF51", "ER_Czfpu7WGjjrOCzi", "eoNm9cDSAWGjjrOCzi", "spH3BjGqfWGjjrOCzi", "xWMZXIfArWGjjrOCzi", "b9KiniA39WGjjrOCzi", "idWGjjrOCzi", "kwa5SmhPnXTmJOmF51", "idXTmJOmF51", "saeex7UoWpHXLC7ZD9", "iAHomRPW9pHXLC7ZD9", "O8SkeTdROpHXLC7ZD9", "kFLvvfggDpHXLC7ZD9", "ER_Czfpu7cCQtnQBAY", "eoNm9cDSAcCQtnQBAY", "spH3BjGqfcCQtnQBAY", "xWMZXIfArcCQtnQBAY", "b9KiniA39cCQtnQBAY", "idcCQtnQBAY", "kwa5SmhPnpHXLC7ZD9", "idpHXLC7ZD9", "saeex7UoWXG9kN08_T", "iAHomRPW9XG9kN08_T", "O8SkeTdROXG9kN08_T", "kFLvvfggDXG9kN08_T", "ER_Czfpu7bYwjzpLae", "eoNm9cDSAbYwjzpLae", "spH3BjGqfbYwjzpLae", "xWMZXIfArbYwjzpLae", "b9KiniA39bYwjzpLae", "idbYwjzpLae", "kwa5SmhPnXG9kN08_T", "idXG9kN08_T", "saeex7UoWWiuQw0_CV", "iAHomRPW9WiuQw0_CV", "O8SkeTdROWiuQw0_CV", "kFLvvfggDWiuQw0_CV", "ER_Czfpu7mWEZiaApf", "eoNm9cDSAmWEZiaApf", "spH3BjGqfmWEZiaApf", "xWMZXIfArmWEZiaApf", "b9KiniA39mWEZiaApf", "idmWEZiaApf", "kwa5SmhPnWiuQw0_CV", "idWiuQw0_CV", "saeex7UoWlkASnAbUh", "iAHomRPW9lkASnAbUh", "O8SkeTdROlkASnAbUh", "kFLvvfggDlkASnAbUh", "ER_Czfpu7N0iRYK_e5", "eoNm9cDSAN0iRYK_e5", "spH3BjGqfN0iRYK_e5", "xWMZXIfArN0iRYK_e5", "b9KiniA39N0iRYK_e5", "idN0iRYK_e5", "kwa5SmhPnlkASnAbUh", "idlkASnAbUh", "saeex7UoWrbxsfN9DX", "iAHomRPW9rbxsfN9DX", "O8SkeTdROrbxsfN9DX", "kFLvvfggDrbxsfN9DX", "ER_Czfpu7bY5cyYbDC", "eoNm9cDSAbY5cyYbDC", "spH3BjGqfbY5cyYbDC", "xWMZXIfArbY5cyYbDC", "b9KiniA39bY5cyYbDC", "idbY5cyYbDC", "kwa5SmhPnrbxsfN9DX", "idrbxsfN9DX", "saeex7UoWxfT_IRylU", "iAHomRPW9xfT_IRylU", "O8SkeTdROxfT_IRylU", "kFLvvfggDxfT_IRylU", "ER_Czfpu7RL3uSVOOY", "eoNm9cDSARL3uSVOOY", "spH3BjGqfRL3uSVOOY", "xWMZXIfArRL3uSVOOY", "b9KiniA39RL3uSVOOY", "idRL3uSVOOY", "kwa5SmhPnxfT_IRylU", "idxfT_IRylU", "saeex7UoWhzOPlEeKz", "iAHomRPW9hzOPlEeKz", "O8SkeTdROhzOPlEeKz", "kFLvvfggDhzOPlEeKz", "ER_Czfpu7w81b6idhp", "eoNm9cDSAw81b6idhp", "spH3BjGqfw81b6idhp", "xWMZXIfArw81b6idhp", "b9KiniA39w81b6idhp", "idw81b6idhp", "kwa5SmhPnhzOPlEeKz", "idhzOPlEeKz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sa674t", "args", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ChildrenCanSuspend", "QueryData", "WN1gMaP21_default", "uVIAFNi9C_default", "collection1", "paginationInfo", "loadMore", "l", "collection", "index1", "PathVariablesContext", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ExcelDateDisplay", "toString", "ExcelTimeDisplay", "index", "MotionDivWithFX", "transition2", "animation", "ResolveLinks", "resolvedLinks", "animation1", "cD1QeGf7t_default", "toResponsiveImage", "collection3", "paginationInfo1", "loadMore1", "collection2", "index3", "index2", "Link", "MotionAWithFX", "resolvedLinks1", "collection5", "paginationInfo2", "loadMore2", "collection4", "index5", "index4", "resolvedLinks2", "collection7", "paginationInfo3", "loadMore3", "collection6", "index7", "index6", "resolvedLinks3", "collection9", "paginationInfo4", "loadMore4", "collection8", "index9", "index8", "resolvedLinks4", "collection11", "paginationInfo5", "loadMore5", "collection10", "index11", "index10", "resolvedLinks5", "collection13", "paginationInfo6", "loadMore6", "collection12", "index13", "index12", "resolvedLinks6", "collection15", "paginationInfo7", "loadMore7", "collection14", "index15", "index14", "resolvedLinks7", "collection17", "paginationInfo8", "loadMore8", "collection16", "index17", "index16", "resolvedLinks8", "collection19", "paginationInfo9", "loadMore9", "collection18", "index19", "index18", "resolvedLinks9", "collection21", "paginationInfo10", "loadMore10", "collection20", "index21", "index20", "resolvedLinks10", "collection23", "paginationInfo11", "loadMore11", "collection22", "index23", "index22", "resolvedLinks11", "collection25", "paginationInfo12", "loadMore12", "collection24", "index25", "index24", "resolvedLinks12", "collection27", "paginationInfo13", "loadMore13", "collection26", "index27", "index26", "resolvedLinks13", "collection29", "paginationInfo14", "loadMore14", "collection28", "index29", "index28", "resolvedLinks14", "collection31", "paginationInfo15", "loadMore15", "collection30", "index31", "index30", "resolvedLinks15", "collection33", "paginationInfo16", "loadMore16", "collection32", "index33", "index32", "resolvedLinks16", "collection35", "paginationInfo17", "loadMore17", "collection34", "index35", "index34", "resolvedLinks17", "collection37", "paginationInfo18", "loadMore18", "collection36", "index37", "index36", "resolvedLinks18", "collection39", "paginationInfo19", "loadMore19", "collection38", "index39", "index38", "resolvedLinks19", "collection41", "paginationInfo20", "loadMore20", "collection40", "index41", "index40", "resolvedLinks20", "collection43", "paginationInfo21", "loadMore21", "collection42", "index43", "index42", "resolvedLinks21", "css", "FramerS9ELcZ8Oe", "withCSS", "S9ELcZ8Oe_default", "addPropertyControls", "ControlType", "addFonts", "ExcelDateDisplayFonts", "ExcelTimeDisplayFonts", "SpeakerCardFonts", "getFontsFromSharedStyle", "fonts", "TicketAvailabilityFonts", "getFonts", "IQ2Yqs4jR_default", "RichTextWithFX", "withFX", "RichText2", "PaymenntButtonFonts", "b5u13Cj_n_default", "ContainerWithFX", "Container", "HeroInfoFonts", "a7kp98UZ8_default", "HighlighterTagFonts", "yX3de6qnH_default", "StatsFonts", "Gc4FbP15A_default", "MotionDivWithFX", "motion", "Categories2Fonts", "w9xAxqEro_default", "SpeakerCardWithLinkFonts", "UYGwVziyY_default", "ButtonFonts", "VBHeHAvzh_default", "TopSession_MainPageFonts", "S9ELcZ8Oe_default", "New_IntegratedScheduleFonts", "MsQHD9tZ9_default", "ConferencePassFonts", "FJ05TjjTP_default", "MaterialFonts", "Icon", "VisibiloityFonts", "OkmtWwQ19_default", "ImageWithFX", "Image2", "TestimonialCardFonts", "FrIt4osAo_default", "TickerFonts", "Ticker", "AccommodationFonts", "jZlUU8kFA_default", "FAQFonts", "BPG5WxXh0_default", "PreFooterFonts", "K8eW_2sQ4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "transition4", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition5", "animation1", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ER_Czfpu7iKyzylfo4", "eoNm9cDSAiKyzylfo4", "spH3BjGqfiKyzylfo4", "xWMZXIfAriKyzylfo4", "b9KiniA39iKyzylfo4", "idiKyzylfo4", "XiSkPAlCUpBL0AAbxT", "ryFX9X0p0pBL0AAbxT", "YAsUr6VeYpBL0AAbxT", "idpBL0AAbxT", "XiSkPAlCUAxZstNLsb", "ryFX9X0p0AxZstNLsb", "YAsUr6VeYAxZstNLsb", "idAxZstNLsb", "XiSkPAlCURJLJ5GcJW", "YAsUr6VeYRJLJ5GcJW", "idRJLJ5GcJW", "G2ID3mOM6rDPtfmf9x", "cWZpSWSDqrDPtfmf9x", "GaYwXqvEBrDPtfmf9x", "dzQY7MENzrDPtfmf9x", "rTtuMdpdXrDPtfmf9x", "idrDPtfmf9x", "G2ID3mOM6p_4slrUkm", "cWZpSWSDqp_4slrUkm", "GaYwXqvEBp_4slrUkm", "dzQY7MENzp_4slrUkm", "rTtuMdpdXp_4slrUkm", "idp_4slrUkm", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "elementId1", "router", "useRouter", "elementId2", "ref1", "elementId3", "ref2", "elementId4", "ref3", "elementId5", "ref4", "elementId6", "ref5", "elementId7", "ref6", "elementId8", "ref7", "elementId9", "ref8", "elementId10", "ref9", "isDisplayed", "isDisplayed1", "elementId11", "ref10", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "uVIAFNi9C_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "uXBJceJ1N_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "wrqyR8Yjo_default", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
