{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/jlFxTJzAsM7enhdB9YJ0/Rsd4wwVColCWpxbyQ3an/jRXzTKEh2.js", "ssg:https://framerusercontent.com/modules/kIxYZss5kypviobHR1Md/zmvmxe8M4lyi3FlzSc4r/V3EjteYMK.js", "ssg:https://framerusercontent.com/modules/lB3IqBXAS0gNS93QB6t2/QwJPu6XvH1Vt9WAsJ6tS/SmkNoZhed.js", "ssg:https://framerusercontent.com/modules/mXpwhSbnTeN8X6eWHGyp/O5Sn9M8ADwrSWfHmNCto/yGfvD64UY.js", "ssg:https://framerusercontent.com/modules/VGwqaDobtJghLSoidXRM/x96j4LCA8WSLoaEjk3BV/iux_1P4dx.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (334e254)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JCEI5hzRV\",\"Z4V6ICLXS\"];const serializationHash=\"framer-vbALC\";const variantClassNames={JCEI5hzRV:\"framer-v-d7p8lh\",Z4V6ICLXS:\"framer-v-16mxeps\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Black:\"Z4V6ICLXS\",White:\"JCEI5hzRV\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CINbpXIT7:(_ref=title!==null&&title!==void 0?title:props.CINbpXIT7)!==null&&_ref!==void 0?_ref:\"Jacob Turner\",pStQrnGpz:link!==null&&link!==void 0?link:props.pStQrnGpz,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"JCEI5hzRV\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CINbpXIT7,pStQrnGpz,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"JCEI5hzRV\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:pStQrnGpz,children:/*#__PURE__*/_jsx(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-d7p8lh\",className,classNames)} framer-16ajx7x`,\"data-framer-name\":\"White\",initial:variant,layoutDependency:layoutDependency,layoutId:\"JCEI5hzRV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Z4V6ICLXS:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Jacob Turner\"})}),className:\"framer-1y3ohui\",\"data-framer-name\":\"Jacob Turner\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"i4JqF0e8H\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:CINbpXIT7,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Z4V6ICLXS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-transform\":\"uppercase\"},children:\"Jacob Turner\"})})}},baseVariant,gestureVariant)})})})})});});const css=['.framer-vbALC[data-border=\"true\"]::after, .framer-vbALC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vbALC.framer-16ajx7x, .framer-vbALC .framer-16ajx7x { display: block; }\",\".framer-vbALC.framer-d7p8lh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 275px; }\",\".framer-vbALC .framer-1y3ohui { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vbALC.framer-d7p8lh { gap: 0px; } .framer-vbALC.framer-d7p8lh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vbALC.framer-d7p8lh > :first-child { margin-left: 0px; } .framer-vbALC.framer-d7p8lh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Z4V6ICLXS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CINbpXIT7\":\"title\",\"pStQrnGpz\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerjRXzTKEh2=withCSS(Component,css,\"framer-vbALC\");export default FramerjRXzTKEh2;FramerjRXzTKEh2.displayName=\"Logo Link\";FramerjRXzTKEh2.defaultProps={height:13,width:275};addPropertyControls(FramerjRXzTKEh2,{variant:{options:[\"JCEI5hzRV\",\"Z4V6ICLXS\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum},CINbpXIT7:{defaultValue:\"Jacob Turner\",displayTextArea:false,title:\"Title\",type:ControlType.String},pStQrnGpz:{title:\"Link\",type:ControlType.Link}});addFonts(FramerjRXzTKEh2,[{family:\"Azeret Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjRXzTKEh2\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"275\",\"framerVariables\":\"{\\\"CINbpXIT7\\\":\\\"title\\\",\\\"pStQrnGpz\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z4V6ICLXS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"13\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jRXzTKEh2.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"hgGgywLPq\",\"ormJuBxCO\",\"kFaMqi8iH\"];const serializationHash=\"framer-bFB5L\";const variantClassNames={hgGgywLPq:\"framer-v-y9huqu\",kFaMqi8iH:\"framer-v-1jtv0a9\",ormJuBxCO:\"framer-v-4ox7uk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Link Active\":\"ormJuBxCO\",\"Link Mobile\":\"kFaMqi8iH\",Link:\"hgGgywLPq\"};const getProps=({color,height,id,link,tap,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,aAL3Kk_ub:tap!==null&&tap!==void 0?tap:props.aAL3Kk_ub,b89VyIKsR:(_ref=color!==null&&color!==void 0?color:props.b89VyIKsR)!==null&&_ref!==void 0?_ref:'var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)) /* {\"name\":\"JT White\"} */',fHKDDMhyL:link!==null&&link!==void 0?link:props.fHKDDMhyL,pmLxJr3U4:(_ref1=title!==null&&title!==void 0?title:props.pmLxJr3U4)!==null&&_ref1!==void 0?_ref1:\"PROFILE\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"hgGgywLPq\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pmLxJr3U4,fHKDDMhyL,b89VyIKsR,aAL3Kk_ub,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"hgGgywLPq\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1jq8al6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aAL3Kk_ub){const res=await aAL3Kk_ub(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:fHKDDMhyL,children:/*#__PURE__*/_jsx(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-y9huqu\",className,classNames)} framer-266xis`,\"data-framer-name\":\"Link\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"hgGgywLPq\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1jq8al6,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({kFaMqi8iH:{\"data-framer-name\":\"Link Mobile\",\"data-highlight\":undefined,onTap:()=>setGestureState({isPressed:false})},ormJuBxCO:{\"data-framer-name\":\"Link Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-b89VyIKsR-V3EjteYMK))\",\"--framer-text-transform\":\"uppercase\"},children:\"PROFILE\"})}),className:\"framer-1wmsz6h\",\"data-framer-name\":\"PROFILE\",fonts:[\"FS;Switzer-regular\"],layoutDependency:layoutDependency,layoutId:\"dANCe82ja\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-b89VyIKsR-V3EjteYMK)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-b89VyIKsR-V3EjteYMK\":b89VyIKsR,opacity:1},text:pmLxJr3U4,variants:{ormJuBxCO:{opacity:.4}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kFaMqi8iH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-b89VyIKsR-V3EjteYMK))\",\"--framer-text-transform\":\"uppercase\"},children:\"PROFILE\"})})}},baseVariant,gestureVariant)})})})})});});const css=['.framer-bFB5L[data-border=\"true\"]::after, .framer-bFB5L [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bFB5L.framer-266xis, .framer-bFB5L .framer-266xis { display: block; }\",\".framer-bFB5L.framer-y9huqu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bFB5L .framer-1wmsz6h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bFB5L.framer-y9huqu { gap: 0px; } .framer-bFB5L.framer-y9huqu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bFB5L.framer-y9huqu > :first-child { margin-left: 0px; } .framer-bFB5L.framer-y9huqu > :last-child { margin-right: 0px; } }\",\".framer-bFB5L.framer-v-1jtv0a9.framer-y9huqu { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 297\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ormJuBxCO\":{\"layout\":[\"auto\",\"auto\"]},\"kFaMqi8iH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pmLxJr3U4\":\"title\",\"fHKDDMhyL\":\"link\",\"b89VyIKsR\":\"color\",\"aAL3Kk_ub\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerV3EjteYMK=withCSS(Component,css,\"framer-bFB5L\");export default FramerV3EjteYMK;FramerV3EjteYMK.displayName=\"Open Navigation Link\";FramerV3EjteYMK.defaultProps={height:80,width:297};addPropertyControls(FramerV3EjteYMK,{variant:{options:[\"hgGgywLPq\",\"ormJuBxCO\",\"kFaMqi8iH\"],optionTitles:[\"Link\",\"Link Active\",\"Link Mobile\"],title:\"Variant\",type:ControlType.Enum},pmLxJr3U4:{defaultValue:\"PROFILE\",displayTextArea:false,title:\"Title\",type:ControlType.String},fHKDDMhyL:{title:\"Link\",type:ControlType.Link},b89VyIKsR:{defaultValue:'var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)) /* {\"name\":\"JT White\"} */',title:\"Color\",type:ControlType.Color},aAL3Kk_ub:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerV3EjteYMK,[{family:\"Switzer\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV3EjteYMK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ormJuBxCO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kFaMqi8iH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"297\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"pmLxJr3U4\\\":\\\"title\\\",\\\"fHKDDMhyL\\\":\\\"link\\\",\\\"b89VyIKsR\\\":\\\"color\\\",\\\"aAL3Kk_ub\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"80\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V3EjteYMK.map", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,optimizeAppear,optimizeAppearTransformTemplate,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{AutoCopyrightStatement}from\"https://framerusercontent.com/modules/ahXe7snYzy0WL4UMRHol/AU91rgWjZvbN9Z4LyPVM/Copyright_year.js\";import TextEncryptionEffect from\"https://framerusercontent.com/modules/c41C1MTDHwfM90X7dNdw/8lpW3zPGAs3qJzLiCKj3/TextEncryptionEffect.js\";import TextLink from\"https://framerusercontent.com/modules/n2MaA48zcanGubnZo5Lk/RAbhtq4ZqryIpupoATrx/dVTZgYLeH.js\";import LogoLink from\"https://framerusercontent.com/modules/jlFxTJzAsM7enhdB9YJ0/Rsd4wwVColCWpxbyQ3an/jRXzTKEh2.js\";import OpenNavigationLink from\"https://framerusercontent.com/modules/kIxYZss5kypviobHR1Md/zmvmxe8M4lyi3FlzSc4r/V3EjteYMK.js\";const LogoLinkFonts=getFonts(LogoLink);const TextLinkFonts=getFonts(TextLink);const OpenNavigationLinkFonts=getFonts(OpenNavigationLink);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const TextEncryptionEffectFonts=getFonts(TextEncryptionEffect);const RichTextWithFX=withFX(RichText);const RichTextAutoCopyrightStatementWithFX=withFX(AutoCopyrightStatement(RichText));const cycleOrder=[\"I2DiMKo8W\",\"Pvro3rvUj\",\"HClsCcfQz\",\"bK7vL0KSp\",\"nndHF1d3J\",\"CdiCFOBlP\",\"JjVk8IP6t\"];const serializationHash=\"framer-N4EiR\";const variantClassNames={bK7vL0KSp:\"framer-v-1e8s9ne\",CdiCFOBlP:\"framer-v-4c5epr\",HClsCcfQz:\"framer-v-18ak3ot\",I2DiMKo8W:\"framer-v-clbh7i\",JjVk8IP6t:\"framer-v-1vjdru\",nndHF1d3J:\"framer-v-g18r89\",Pvro3rvUj:\"framer-v-1q5r6ld\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:.1,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,scale:1,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,x:0,y:0};const transition3={delay:.2,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:0,rotate:0,scale:1,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition3,x:0,y:0};const transition4={delay:.3,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:0,rotate:0,scale:1,transition:transition4,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition4,x:0,y:0};const transition5={delay:.5,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:0,rotate:0,scale:1,transition:transition5,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition5,x:0,y:0};const transition6={delay:.6,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation9={opacity:0,rotate:0,scale:1,transition:transition6,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition6,x:0,y:0};const transition7={delay:.7,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation11={opacity:0,rotate:0,scale:1,transition:transition7,x:0,y:0};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition7,x:0,y:0};const transition8={delay:.8,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation13={opacity:0,rotate:0,scale:1,transition:transition8,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition8,x:0,y:0};const transition9={delay:1,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation15={opacity:0,rotate:0,scale:1,transition:transition9,x:0,y:0};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition9,x:0,y:0};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(React.Fragment);const humanReadableVariantMap={\"Case Studies\":\"HClsCcfQz\",\"Mobile Full Navigation \":\"JjVk8IP6t\",Contact:\"bK7vL0KSp\",Index:\"nndHF1d3J\",Journal:\"CdiCFOBlP\",Profile:\"Pvro3rvUj\",Unhovered:\"I2DiMKo8W\"};const getProps=({height,id,tap,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I2DiMKo8W\",ZnO4gEEiP:tap??props.ZnO4gEEiP};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZnO4gEEiP,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I2DiMKo8W\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap13eo57c=activeVariantCallback(async(...args)=>{if(ZnO4gEEiP){const res=await ZnO4gEEiP(...args);if(res===false)return false;}});const onMouseEnterbkbs62=activeVariantCallback(async(...args)=>{setVariant(\"Pvro3rvUj\");});const onMouseLeave6wal2l=activeVariantCallback(async(...args)=>{setVariant(\"I2DiMKo8W\");});const onMouseEnterx99192=activeVariantCallback(async(...args)=>{setVariant(\"HClsCcfQz\");});const onMouseEnter10dh9qc=activeVariantCallback(async(...args)=>{setVariant(\"bK7vL0KSp\");});const onMouseEnter12b6fck=activeVariantCallback(async(...args)=>{setVariant(\"nndHF1d3J\");});const onMouseLeavej1jt39=activeVariantCallback(async(...args)=>{setVariant(\"CdiCFOBlP\");});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"JjVk8IP6t\")return false;return true;};const isDisplayed1=()=>{if([\"Pvro3rvUj\",\"HClsCcfQz\",\"bK7vL0KSp\",\"nndHF1d3J\",\"CdiCFOBlP\",\"JjVk8IP6t\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Pvro3rvUj\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"HClsCcfQz\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"bK7vL0KSp\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"CdiCFOBlP\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"nndHF1d3J\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-clbh7i\",className,classNames),\"data-framer-name\":\"Unhovered\",layoutDependency:layoutDependency,layoutId:\"I2DiMKo8W\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",...style},...addPropertyOverrides({bK7vL0KSp:{\"data-framer-name\":\"Contact\"},CdiCFOBlP:{\"data-framer-name\":\"Journal\"},HClsCcfQz:{\"data-framer-name\":\"Case Studies\"},JjVk8IP6t:{\"data-framer-name\":\"Mobile Full Navigation \"},nndHF1d3J:{\"data-framer-name\":\"Index\"},Pvro3rvUj:{\"data-framer-name\":\"Profile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wg6fpf\",\"data-framer-name\":\"Nav Row\",layoutDependency:layoutDependency,layoutId:\"yNOmX2k3F\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined},{href:{webPageId:\"YIWFDAfhW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eeoabu-container\",layoutDependency:layoutDependency,layoutId:\"u5_L6OTQ6-container\",children:/*#__PURE__*/_jsx(LogoLink,{CINbpXIT7:\"dylan peteli\",height:\"100%\",id:\"u5_L6OTQ6\",layoutId:\"u5_L6OTQ6\",pStQrnGpz:resolvedLinks[0],style:{width:\"100%\"},variant:\"JCEI5hzRV\",width:\"100%\",...addPropertyOverrides({bK7vL0KSp:{pStQrnGpz:resolvedLinks[3]},CdiCFOBlP:{pStQrnGpz:resolvedLinks[5]},HClsCcfQz:{pStQrnGpz:resolvedLinks[2]},JjVk8IP6t:{pStQrnGpz:resolvedLinks[6]},nndHF1d3J:{pStQrnGpz:resolvedLinks[4]},Pvro3rvUj:{pStQrnGpz:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rra6dr\",layoutDependency:layoutDependency,layoutId:\"OeM2mDVBu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)))\",\"--framer-text-transform\":\"uppercase\"},children:\"motion designer\"})}),className:\"framer-1es7uml\",\"data-framer-name\":\"art director\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"Ccp4age6W\",style:{\"--extracted-r6o4lv\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236))\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxwtk5\",layoutDependency:layoutDependency,layoutId:\"mr2O6VxWN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236)))\",\"--framer-text-transform\":\"uppercase\"},children:\"auckland, new zealand\"})}),className:\"framer-1czujja\",\"data-framer-name\":\"LA, CALIFORNIA\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"O82wUHi7B\",style:{\"--extracted-r6o4lv\":\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tz5eey\",\"data-framer-name\":\"Menu Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ozQE3CvpA\",onTap:onTap13eo57c,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17h0677-container\",layoutDependency:layoutDependency,layoutId:\"ZnNcKmUCA-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"ZnNcKmUCA\",Kpveh2Q8O:\"close\",layoutId:\"ZnNcKmUCA\",MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",variant:\"eyytyxpGy\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ok8kv\",\"data-framer-name\":\"Menu Content\",layoutDependency:layoutDependency,layoutId:\"z8nxI_8NR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ojejqj\",\"data-framer-name\":\"Link Wrapper\",layoutDependency:layoutDependency,layoutId:\"cfWpkRfAB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hox8kl\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XHgqWzT_B\",onMouseEnter:onMouseEnterbkbs62,...addPropertyOverrides({JjVk8IP6t:{\"data-highlight\":undefined,onMouseEnter:undefined},Pvro3rvUj:{onMouseLeave:onMouseLeave6wal2l}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined},{href:{webPageId:\"fxz_zRIyp\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"6f1a9b\",animation1,\"clbh7i\"),className:\"framer-6f1a9b-container\",\"data-framer-appear-id\":\"6f1a9b\",exit:animation,initial:optimizeAppear(\"initial\",\"6f1a9b\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"I6JcZjEpt-container\",transformTemplate:optimizeAppearTransformTemplate(\"6f1a9b\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"x1u9gu\",animate:optimizeAppear(\"animate\",\"x1u9gu\",animation1,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"x1u9gu\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"x1u9gu\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"s0qfw9\",animate:optimizeAppear(\"animate\",\"s0qfw9\",animation1,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"s0qfw9\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"s0qfw9\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"8xr5m3\",animate:optimizeAppear(\"animate\",\"8xr5m3\",animation1,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"8xr5m3\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"8xr5m3\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"1jsqehs\",animate:optimizeAppear(\"animate\",\"1jsqehs\",animation1,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"1jsqehs\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"1jsqehs\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"1431vib\",animate:optimizeAppear(\"animate\",\"1431vib\",animation1,\"g18r89\"),initial:optimizeAppear(\"initial\",\"1431vib\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"1431vib\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"biizb8\",animate:optimizeAppear(\"animate\",\"biizb8\",animation1,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"biizb8\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"biizb8\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OpenNavigationLink,{b89VyIKsR:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",fHKDDMhyL:resolvedLinks1[0],height:\"100%\",id:\"I6JcZjEpt\",layoutId:\"I6JcZjEpt\",pmLxJr3U4:\"PROFILE\",variant:\"hgGgywLPq\",width:\"100%\",...addPropertyOverrides({bK7vL0KSp:{fHKDDMhyL:resolvedLinks1[3]},CdiCFOBlP:{fHKDDMhyL:resolvedLinks1[5]},HClsCcfQz:{fHKDDMhyL:resolvedLinks1[2]},JjVk8IP6t:{fHKDDMhyL:resolvedLinks1[6],variant:\"kFaMqi8iH\"},nndHF1d3J:{fHKDDMhyL:resolvedLinks1[4]},Pvro3rvUj:{fHKDDMhyL:resolvedLinks1[1],variant:\"ormJuBxCO\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-erzo0q\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FZezUXyps\",onMouseEnter:onMouseEnterx99192,...addPropertyOverrides({HClsCcfQz:{onMouseLeave:onMouseLeave6wal2l},JjVk8IP6t:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined},{href:{webPageId:\"Rnw1WO1jS\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1v9x7x2\",animation4,\"clbh7i\"),className:\"framer-1v9x7x2-container\",\"data-framer-appear-id\":\"1v9x7x2\",exit:animation3,initial:optimizeAppear(\"initial\",\"1v9x7x2\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"cHlALm0ui-container\",transformTemplate:optimizeAppearTransformTemplate(\"1v9x7x2\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"172ohdj\",animate:optimizeAppear(\"animate\",\"172ohdj\",animation4,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"172ohdj\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"172ohdj\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"12y7zap\",animate:optimizeAppear(\"animate\",\"12y7zap\",animation4,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"12y7zap\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"12y7zap\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"m0zy01\",animate:optimizeAppear(\"animate\",\"m0zy01\",animation4,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"m0zy01\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"m0zy01\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"1psqb46\",animate:optimizeAppear(\"animate\",\"1psqb46\",animation4,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"1psqb46\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"1psqb46\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"qydux5\",animate:optimizeAppear(\"animate\",\"qydux5\",animation4,\"g18r89\"),initial:optimizeAppear(\"initial\",\"qydux5\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"qydux5\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"1jjnz3q\",animate:optimizeAppear(\"animate\",\"1jjnz3q\",animation4,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"1jjnz3q\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"1jjnz3q\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OpenNavigationLink,{b89VyIKsR:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",fHKDDMhyL:resolvedLinks2[0],height:\"100%\",id:\"cHlALm0ui\",layoutId:\"cHlALm0ui\",pmLxJr3U4:\"CASE STUDIES\",variant:\"hgGgywLPq\",width:\"100%\",...addPropertyOverrides({bK7vL0KSp:{fHKDDMhyL:resolvedLinks2[3]},CdiCFOBlP:{fHKDDMhyL:resolvedLinks2[5]},HClsCcfQz:{fHKDDMhyL:resolvedLinks2[2],variant:\"ormJuBxCO\"},JjVk8IP6t:{fHKDDMhyL:resolvedLinks2[6],pmLxJr3U4:\"WORK\",variant:\"kFaMqi8iH\"},nndHF1d3J:{fHKDDMhyL:resolvedLinks2[4]},Pvro3rvUj:{fHKDDMhyL:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nmu7lx\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p8O2rIjto\",onMouseEnter:onMouseEnter10dh9qc,...addPropertyOverrides({bK7vL0KSp:{onMouseLeave:onMouseLeave6wal2l},JjVk8IP6t:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined},{href:{webPageId:\"gmXtVnIzJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1ytcif4\",animation6,\"clbh7i\"),className:\"framer-1ytcif4-container\",\"data-framer-appear-id\":\"1ytcif4\",exit:animation5,initial:optimizeAppear(\"initial\",\"1ytcif4\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"w9ILZoAzT-container\",transformTemplate:optimizeAppearTransformTemplate(\"1ytcif4\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"337834\",animate:optimizeAppear(\"animate\",\"337834\",animation6,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"337834\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"337834\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"rszcur\",animate:optimizeAppear(\"animate\",\"rszcur\",animation6,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"rszcur\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"rszcur\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"fjru8o\",animate:optimizeAppear(\"animate\",\"fjru8o\",animation6,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"fjru8o\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"fjru8o\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"1o9w53j\",animate:optimizeAppear(\"animate\",\"1o9w53j\",animation6,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"1o9w53j\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"1o9w53j\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"7cs9s5\",animate:optimizeAppear(\"animate\",\"7cs9s5\",animation6,\"g18r89\"),initial:optimizeAppear(\"initial\",\"7cs9s5\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"7cs9s5\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"11gmem6\",animate:optimizeAppear(\"animate\",\"11gmem6\",animation6,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"11gmem6\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"11gmem6\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OpenNavigationLink,{b89VyIKsR:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",fHKDDMhyL:resolvedLinks3[0],height:\"100%\",id:\"w9ILZoAzT\",layoutId:\"w9ILZoAzT\",pmLxJr3U4:\"CONTACT\",variant:\"hgGgywLPq\",width:\"100%\",...addPropertyOverrides({bK7vL0KSp:{fHKDDMhyL:resolvedLinks3[3],variant:\"ormJuBxCO\"},CdiCFOBlP:{fHKDDMhyL:resolvedLinks3[5]},HClsCcfQz:{fHKDDMhyL:resolvedLinks3[2]},JjVk8IP6t:{fHKDDMhyL:resolvedLinks3[6],variant:\"kFaMqi8iH\"},nndHF1d3J:{fHKDDMhyL:resolvedLinks3[4]},Pvro3rvUj:{fHKDDMhyL:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wfzzep\",\"data-framer-name\":\"Individual Link Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sSdLY8_JS\",onMouseEnter:onMouseEnter12b6fck,...addPropertyOverrides({CdiCFOBlP:{onMouseLeave:onMouseLeavej1jt39},JjVk8IP6t:{\"data-highlight\":undefined,onMouseEnter:undefined},nndHF1d3J:{onMouseLeave:onMouseLeave6wal2l}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined},{href:{webPageId:\"mxLvvDy2b\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1rwjzxl\",animation8,\"clbh7i\"),className:\"framer-1rwjzxl-container\",\"data-framer-appear-id\":\"1rwjzxl\",exit:animation7,initial:optimizeAppear(\"initial\",\"1rwjzxl\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"bb_eIw9_m-container\",transformTemplate:optimizeAppearTransformTemplate(\"1rwjzxl\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"h0ct52\",animate:optimizeAppear(\"animate\",\"h0ct52\",animation8,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"h0ct52\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"h0ct52\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"10l3yfl\",animate:optimizeAppear(\"animate\",\"10l3yfl\",animation8,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"10l3yfl\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"10l3yfl\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"vtjhe5\",animate:optimizeAppear(\"animate\",\"vtjhe5\",animation8,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"vtjhe5\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"vtjhe5\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"au43vb\",animate:optimizeAppear(\"animate\",\"au43vb\",animation8,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"au43vb\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"au43vb\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"1rz3w6j\",animate:optimizeAppear(\"animate\",\"1rz3w6j\",animation8,\"g18r89\"),initial:optimizeAppear(\"initial\",\"1rz3w6j\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"1rz3w6j\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"10nhamm\",animate:optimizeAppear(\"animate\",\"10nhamm\",animation8,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"10nhamm\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"10nhamm\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(OpenNavigationLink,{b89VyIKsR:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",fHKDDMhyL:resolvedLinks4[0],height:\"100%\",id:\"bb_eIw9_m\",layoutId:\"bb_eIw9_m\",pmLxJr3U4:\"INDEX\",variant:\"hgGgywLPq\",width:\"100%\",...addPropertyOverrides({bK7vL0KSp:{fHKDDMhyL:resolvedLinks4[3]},CdiCFOBlP:{fHKDDMhyL:resolvedLinks4[5]},HClsCcfQz:{fHKDDMhyL:resolvedLinks4[2]},JjVk8IP6t:{fHKDDMhyL:resolvedLinks4[6],variant:\"kFaMqi8iH\"},nndHF1d3J:{fHKDDMhyL:resolvedLinks4[4],variant:\"ormJuBxCO\"},Pvro3rvUj:{fHKDDMhyL:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1v532ah\",animation1,\"clbh7i\"),className:\"framer-1v532ah-container\",\"data-framer-appear-id\":\"1v532ah\",\"data-framer-name\":\"Video Neutral\",exit:animation,initial:optimizeAppear(\"initial\",\"1v532ah\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"y10SA0Liq-container\",name:\"Video Neutral\",transformTemplate:optimizeAppearTransformTemplate(\"1v532ah\",transformTemplate1),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"y10SA0Liq\",isMixedBorderRadius:false,layoutId:\"y10SA0Liq\",loop:true,muted:true,name:\"Video Neutral\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/04TUTmj6IAls2LUFjsxSj6qtY.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/DTS%20I.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1ym0jai\",animation1,\"clbh7i\"),className:\"framer-1ym0jai-container\",\"data-framer-appear-id\":\"1ym0jai\",\"data-framer-name\":\"Video Profile\",exit:animation,initial:optimizeAppear(\"initial\",\"1ym0jai\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"Gc4qmeKtI-container\",name:\"Video Profile\",transformTemplate:optimizeAppearTransformTemplate(\"1ym0jai\",transformTemplate1),...addPropertyOverrides({Pvro3rvUj:{\"data-framer-appear-id\":\"lgpw86\",animate:optimizeAppear(\"animate\",\"lgpw86\",animation1,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"lgpw86\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"lgpw86\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Gc4qmeKtI\",isMixedBorderRadius:false,layoutId:\"Gc4qmeKtI\",loop:true,muted:true,name:\"Video Profile\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/iJcvLyor5WuQhVf7I60YbriphD0.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/Dress%20video.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"lwhzpa\",animation1,\"clbh7i\"),className:\"framer-lwhzpa-container\",\"data-framer-appear-id\":\"lwhzpa\",\"data-framer-name\":\"Video Case Studies\",exit:animation,initial:optimizeAppear(\"initial\",\"lwhzpa\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"FafzizZ9n-container\",name:\"Video Case Studies\",transformTemplate:optimizeAppearTransformTemplate(\"lwhzpa\",transformTemplate1),...addPropertyOverrides({HClsCcfQz:{\"data-framer-appear-id\":\"hj0roy\",animate:optimizeAppear(\"animate\",\"hj0roy\",animation1,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"hj0roy\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"hj0roy\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FafzizZ9n\",isMixedBorderRadius:false,layoutId:\"FafzizZ9n\",loop:true,muted:true,name:\"Video Case Studies\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/rvjFLy4Jf7xDmnvpCF70kmomg.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/Compressed%20car%20video.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"19welhm\",animation1,\"clbh7i\"),className:\"framer-19welhm-container\",\"data-framer-appear-id\":\"19welhm\",\"data-framer-name\":\"Video Contact\",exit:animation,initial:optimizeAppear(\"initial\",\"19welhm\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"N0Yac4m9m-container\",name:\"Video Contact\",transformTemplate:optimizeAppearTransformTemplate(\"19welhm\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"cmdih1\",animate:optimizeAppear(\"animate\",\"cmdih1\",animation1,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"cmdih1\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"cmdih1\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"N0Yac4m9m\",isMixedBorderRadius:false,layoutId:\"N0Yac4m9m\",loop:true,muted:true,name:\"Video Contact\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/DTOFJzyXF3CwHRmtlv0JjNhcLA.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/Bleached%20Model%20Cinematic.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1d9w0i1\",animation1,\"clbh7i\"),className:\"framer-1d9w0i1-container\",\"data-framer-appear-id\":\"1d9w0i1\",\"data-framer-name\":\"Video Journal\",exit:animation,initial:optimizeAppear(\"initial\",\"1d9w0i1\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"X575JJX2S-container\",name:\"Video Journal\",transformTemplate:optimizeAppearTransformTemplate(\"1d9w0i1\",transformTemplate1),...addPropertyOverrides({CdiCFOBlP:{\"data-framer-appear-id\":\"231o5j\",animate:optimizeAppear(\"animate\",\"231o5j\",animation1,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"231o5j\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"231o5j\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"X575JJX2S\",isMixedBorderRadius:false,layoutId:\"X575JJX2S\",loop:true,muted:true,name:\"Video Journal\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/0B07QxzYA1Y91eqfyBB7212egDo.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/pexels-cottonbro-9956587%20(1080p)%20(1).mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1rpzgzi\",animation1,\"clbh7i\"),className:\"framer-1rpzgzi-container\",\"data-framer-appear-id\":\"1rpzgzi\",\"data-framer-name\":\"Video Index\",exit:animation,initial:optimizeAppear(\"initial\",\"1rpzgzi\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"Xk31FJvap-container\",name:\"Video Index\",transformTemplate:optimizeAppearTransformTemplate(\"1rpzgzi\",transformTemplate1),...addPropertyOverrides({nndHF1d3J:{\"data-framer-appear-id\":\"1dxlr5d\",animate:optimizeAppear(\"animate\",\"1dxlr5d\",animation1,\"g18r89\"),initial:optimizeAppear(\"initial\",\"1dxlr5d\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"1dxlr5d\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Xk31FJvap\",isMixedBorderRadius:false,layoutId:\"Xk31FJvap\",loop:true,muted:true,name:\"Video Index\",objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/xvTShHgombQAa1mkGcKpDsJbw.jpg\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://ena-supply.b-cdn.net/Jacob%20Turner/Mustang-compressed.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvsq5r\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"kwoPksvls\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fokj9c\",layoutDependency:layoutDependency,layoutId:\"vsTikeeup\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bo3pgv\",\"data-framer-name\":\"Contact Wrapper\",layoutDependency:layoutDependency,layoutId:\"UNM2pSQuu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1p8umz7\",animation8,\"clbh7i\"),className:\"framer-1p8umz7-container\",\"data-framer-appear-id\":\"1p8umz7\",exit:animation7,initial:optimizeAppear(\"initial\",\"1p8umz7\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"l4ZrvYO8k-container\",transformTemplate:optimizeAppearTransformTemplate(\"1p8umz7\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"15621i3\",animate:optimizeAppear(\"animate\",\"15621i3\",animation8,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"15621i3\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"15621i3\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"1f0abxw\",animate:optimizeAppear(\"animate\",\"1f0abxw\",animation8,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"1f0abxw\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"1f0abxw\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"7s6ajr\",animate:optimizeAppear(\"animate\",\"7s6ajr\",animation8,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"7s6ajr\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"7s6ajr\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"kjrka7\",animate:optimizeAppear(\"animate\",\"kjrka7\",animation8,\"g18r89\"),initial:optimizeAppear(\"initial\",\"kjrka7\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"kjrka7\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"12llv3g\",animate:optimizeAppear(\"animate\",\"12llv3g\",animation8,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"12llv3g\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"12llv3g\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TextLink,{bwVWMSt6G:\"mailto:somebody@email.com\",height:\"100%\",id:\"l4ZrvYO8k\",Kpveh2Q8O:\"AVAILABLE FOR WORK\",layoutId:\"l4ZrvYO8k\",MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",variant:\"eyytyxpGy\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szuo94\",layoutDependency:layoutDependency,layoutId:\"J1DE8017r\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/ena.supply/\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1mz53kg framer-15ab43b\",\"data-framer-name\":\"Social Link\",layoutDependency:layoutDependency,layoutId:\"chE56HCu1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"195k6dq\",animation10,\"clbh7i\"),className:\"framer-195k6dq-container\",\"data-framer-appear-id\":\"195k6dq\",exit:animation9,initial:optimizeAppear(\"initial\",\"195k6dq\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"MQoVEflnh-container\",transformTemplate:optimizeAppearTransformTemplate(\"195k6dq\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"1fz4xj5\",animate:optimizeAppear(\"animate\",\"1fz4xj5\",animation10,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"1fz4xj5\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"1fz4xj5\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"19j9c2g\",animate:optimizeAppear(\"animate\",\"19j9c2g\",animation10,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"19j9c2g\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"19j9c2g\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"1cy22x1\",animate:optimizeAppear(\"animate\",\"1cy22x1\",animation10,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"1cy22x1\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"1cy22x1\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"n685nv\",animate:optimizeAppear(\"animate\",\"n685nv\",animation10,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"n685nv\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"n685nv\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"m76z0c\",animate:optimizeAppear(\"animate\",\"m76z0c\",animation10,\"g18r89\"),initial:optimizeAppear(\"initial\",\"m76z0c\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"m76z0c\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"1gbnua1\",animate:optimizeAppear(\"animate\",\"1gbnua1\",animation10,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"1gbnua1\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"1gbnua1\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TextEncryptionEffect,{activators:{hover:true,press:false,replay:true,trigger:\"none\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",font:{fontFamily:'\"Azeret Mono\", monospace',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",height:\"100%\",id:\"MQoVEflnh\",interval:.07,layoutId:\"MQoVEflnh\",text:\"IN\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"fh86sj\",animation10,\"clbh7i\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\",\"})}),className:\"framer-fh86sj\",\"data-framer-appear-id\":\"fh86sj\",exit:animation9,fonts:[\"GF;Azeret Mono-regular\"],initial:optimizeAppear(\"initial\",\"fh86sj\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"YvwmEgsp9\",style:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},transformTemplate:optimizeAppearTransformTemplate(\"fh86sj\",transformTemplate1),verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"cd546o\",animate:optimizeAppear(\"animate\",\"cd546o\",animation10,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"cd546o\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"cd546o\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"6wquwn\",animate:optimizeAppear(\"animate\",\"6wquwn\",animation10,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"6wquwn\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"6wquwn\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"auczsc\",animate:optimizeAppear(\"animate\",\"auczsc\",animation10,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"auczsc\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"auczsc\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"190z3zh\",animate:optimizeAppear(\"animate\",\"190z3zh\",animation10,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"190z3zh\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"190z3zh\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"1vzzmo8\",animate:optimizeAppear(\"animate\",\"1vzzmo8\",animation10,\"g18r89\"),initial:optimizeAppear(\"initial\",\"1vzzmo8\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"1vzzmo8\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"1ck7jet\",animate:optimizeAppear(\"animate\",\"1ck7jet\",animation10,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"1ck7jet\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"1ck7jet\",transformTemplate1)}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/ena_supply\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-vqrt2x framer-15ab43b\",\"data-framer-name\":\"Social Link\",layoutDependency:layoutDependency,layoutId:\"nuaghukDW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1053xfs\",animation12,\"clbh7i\"),className:\"framer-1053xfs-container\",\"data-framer-appear-id\":\"1053xfs\",exit:animation11,initial:optimizeAppear(\"initial\",\"1053xfs\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"Qlh5UjmPU-container\",transformTemplate:optimizeAppearTransformTemplate(\"1053xfs\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"1kmt7pq\",animate:optimizeAppear(\"animate\",\"1kmt7pq\",animation12,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"1kmt7pq\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"1kmt7pq\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"ijoppy\",animate:optimizeAppear(\"animate\",\"ijoppy\",animation12,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"ijoppy\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"ijoppy\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"uep61k\",animate:optimizeAppear(\"animate\",\"uep61k\",animation12,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"uep61k\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"uep61k\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"cszw6s\",animate:optimizeAppear(\"animate\",\"cszw6s\",animation12,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"cszw6s\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"cszw6s\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"7t32i5\",animate:optimizeAppear(\"animate\",\"7t32i5\",animation12,\"g18r89\"),initial:optimizeAppear(\"initial\",\"7t32i5\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"7t32i5\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"1s5fyi1\",animate:optimizeAppear(\"animate\",\"1s5fyi1\",animation12,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"1s5fyi1\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"1s5fyi1\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TextEncryptionEffect,{activators:{hover:true,press:false,replay:true,trigger:\"none\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",font:{fontFamily:'\"Azeret Mono\", monospace',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",height:\"100%\",id:\"Qlh5UjmPU\",interval:.07,layoutId:\"Qlh5UjmPU\",text:\"TW\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"w99brx\",animation12,\"clbh7i\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\",\"})}),className:\"framer-w99brx\",\"data-framer-appear-id\":\"w99brx\",exit:animation11,fonts:[\"GF;Azeret Mono-regular\"],initial:optimizeAppear(\"initial\",\"w99brx\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"eIG5xxgxc\",style:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},transformTemplate:optimizeAppearTransformTemplate(\"w99brx\",transformTemplate1),verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"28g8ar\",animate:optimizeAppear(\"animate\",\"28g8ar\",animation12,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"28g8ar\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"28g8ar\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"zbohp1\",animate:optimizeAppear(\"animate\",\"zbohp1\",animation12,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"zbohp1\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"zbohp1\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"1p3mxsq\",animate:optimizeAppear(\"animate\",\"1p3mxsq\",animation12,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"1p3mxsq\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"1p3mxsq\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"houkn\",animate:optimizeAppear(\"animate\",\"houkn\",animation12,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"houkn\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"houkn\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"wawsbz\",animate:optimizeAppear(\"animate\",\"wawsbz\",animation12,\"g18r89\"),initial:optimizeAppear(\"initial\",\"wawsbz\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"wawsbz\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"6izskh\",animate:optimizeAppear(\"animate\",\"6izskh\",animation12,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"6izskh\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"6izskh\",transformTemplate1)}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://savee.it/e_n_a/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o7ug9a framer-15ab43b\",\"data-framer-name\":\"Social Link\",layoutDependency:layoutDependency,layoutId:\"Z99qGIWi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"wxviik\",animation14,\"clbh7i\"),className:\"framer-wxviik-container\",\"data-framer-appear-id\":\"wxviik\",exit:animation13,initial:optimizeAppear(\"initial\",\"wxviik\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"QOyi2QDrh-container\",transformTemplate:optimizeAppearTransformTemplate(\"wxviik\",transformTemplate1),...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"vkxrpx\",animate:optimizeAppear(\"animate\",\"vkxrpx\",animation14,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"vkxrpx\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"vkxrpx\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"1fy6mie\",animate:optimizeAppear(\"animate\",\"1fy6mie\",animation14,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"1fy6mie\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"1fy6mie\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"1rbl5e4\",animate:optimizeAppear(\"animate\",\"1rbl5e4\",animation14,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"1rbl5e4\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"1rbl5e4\",transformTemplate1)},JjVk8IP6t:{\"data-framer-appear-id\":\"euxpvb\",animate:optimizeAppear(\"animate\",\"euxpvb\",animation14,\"1vjdru\"),initial:optimizeAppear(\"initial\",\"euxpvb\",animation2,\"1vjdru\"),transformTemplate:optimizeAppearTransformTemplate(\"euxpvb\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"aeaanv\",animate:optimizeAppear(\"animate\",\"aeaanv\",animation14,\"g18r89\"),initial:optimizeAppear(\"initial\",\"aeaanv\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"aeaanv\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"w8nx9s\",animate:optimizeAppear(\"animate\",\"w8nx9s\",animation14,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"w8nx9s\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"w8nx9s\",transformTemplate1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TextEncryptionEffect,{activators:{hover:true,press:false,replay:true,trigger:\"none\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",font:{fontFamily:'\"Azeret Mono\", monospace',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\",height:\"100%\",id:\"QOyi2QDrh\",interval:.07,layoutId:\"QOyi2QDrh\",text:\"SV\",textSelect:true,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://ena.supply/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6o0x6s framer-15ab43b\",layoutDependency:layoutDependency,layoutId:\"UPRO_om9f\"})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s3azwp\",layoutDependency:layoutDependency,layoutId:\"n2gIyTXXn\",children:/*#__PURE__*/_jsx(RichTextAutoCopyrightStatementWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1r1rf9z\",animation16,\"clbh7i\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"\\xa92024\"})}),className:\"framer-1r1rf9z\",\"data-framer-appear-id\":\"1r1rf9z\",\"data-framer-name\":\"\\xa9 Studio B 2023\",exit:animation15,fonts:[\"GF;Azeret Mono-regular\"],initial:optimizeAppear(\"initial\",\"1r1rf9z\",animation2,\"clbh7i\"),layoutDependency:layoutDependency,layoutId:\"GkkkbWUfe\",style:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},transformTemplate:optimizeAppearTransformTemplate(\"1r1rf9z\",transformTemplate1),verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bK7vL0KSp:{\"data-framer-appear-id\":\"vxtz59\",animate:optimizeAppear(\"animate\",\"vxtz59\",animation16,\"1e8s9ne\"),initial:optimizeAppear(\"initial\",\"vxtz59\",animation2,\"1e8s9ne\"),transformTemplate:optimizeAppearTransformTemplate(\"vxtz59\",transformTemplate1)},CdiCFOBlP:{\"data-framer-appear-id\":\"1yerbzj\",animate:optimizeAppear(\"animate\",\"1yerbzj\",animation16,\"4c5epr\"),initial:optimizeAppear(\"initial\",\"1yerbzj\",animation2,\"4c5epr\"),transformTemplate:optimizeAppearTransformTemplate(\"1yerbzj\",transformTemplate1)},HClsCcfQz:{\"data-framer-appear-id\":\"1snv9uc\",animate:optimizeAppear(\"animate\",\"1snv9uc\",animation16,\"18ak3ot\"),initial:optimizeAppear(\"initial\",\"1snv9uc\",animation2,\"18ak3ot\"),transformTemplate:optimizeAppearTransformTemplate(\"1snv9uc\",transformTemplate1)},nndHF1d3J:{\"data-framer-appear-id\":\"5ebral\",animate:optimizeAppear(\"animate\",\"5ebral\",animation16,\"g18r89\"),initial:optimizeAppear(\"initial\",\"5ebral\",animation2,\"g18r89\"),transformTemplate:optimizeAppearTransformTemplate(\"5ebral\",transformTemplate1)},Pvro3rvUj:{\"data-framer-appear-id\":\"7dyhjb\",animate:optimizeAppear(\"animate\",\"7dyhjb\",animation16,\"1q5r6ld\"),initial:optimizeAppear(\"initial\",\"7dyhjb\",animation2,\"1q5r6ld\"),transformTemplate:optimizeAppearTransformTemplate(\"7dyhjb\",transformTemplate1)}},baseVariant,gestureVariant)})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N4EiR.framer-15ab43b, .framer-N4EiR .framer-15ab43b { display: block; }\",\".framer-N4EiR.framer-clbh7i { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 800px; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-N4EiR .framer-wg6fpf { 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; left: 0px; overflow: visible; padding: 20px 20px 0px 20px; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-N4EiR .framer-1eeoabu-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-N4EiR .framer-1rra6dr, .framer-N4EiR .framer-szuo94 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-N4EiR .framer-1es7uml, .framer-N4EiR .framer-1czujja, .framer-N4EiR .framer-fh86sj, .framer-N4EiR .framer-w99brx, .framer-N4EiR .framer-1r1rf9z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-N4EiR .framer-dxwtk5 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-N4EiR .framer-1tz5eey { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-N4EiR .framer-17h0677-container, .framer-N4EiR .framer-6f1a9b-container, .framer-N4EiR .framer-1v9x7x2-container, .framer-N4EiR .framer-1ytcif4-container, .framer-N4EiR .framer-1rwjzxl-container, .framer-N4EiR .framer-1p8umz7-container, .framer-N4EiR .framer-195k6dq-container, .framer-N4EiR .framer-1053xfs-container, .framer-N4EiR .framer-wxviik-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-N4EiR .framer-15ok8kv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-N4EiR .framer-ojejqj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-N4EiR .framer-1hox8kl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: min-content; }\",\".framer-N4EiR .framer-erzo0q, .framer-N4EiR .framer-nmu7lx, .framer-N4EiR .framer-wfzzep { 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 0px 0px 20px; position: relative; width: min-content; }\",\".framer-N4EiR .framer-1v532ah-container, .framer-N4EiR .framer-1ym0jai-container, .framer-N4EiR .framer-lwhzpa-container, .framer-N4EiR .framer-19welhm-container, .framer-N4EiR .framer-1rpzgzi-container { flex: none; height: 100%; position: absolute; right: 0px; top: 0px; width: 50%; z-index: 1; }\",\".framer-N4EiR .framer-1d9w0i1-container { flex: none; height: 100%; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 50%; z-index: 1; }\",\".framer-N4EiR .framer-1xvsq5r { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 20px 20px 20px; position: absolute; right: 0px; z-index: 1; }\",\".framer-N4EiR .framer-fokj9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 13px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-N4EiR .framer-1bo3pgv { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-N4EiR .framer-1mz53kg, .framer-N4EiR .framer-vqrt2x, .framer-N4EiR .framer-o7ug9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-N4EiR .framer-6o0x6s { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 13px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-N4EiR .framer-1s3azwp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N4EiR .framer-wg6fpf, .framer-N4EiR .framer-1rra6dr, .framer-N4EiR .framer-dxwtk5, .framer-N4EiR .framer-1tz5eey, .framer-N4EiR .framer-15ok8kv, .framer-N4EiR .framer-ojejqj, .framer-N4EiR .framer-1hox8kl, .framer-N4EiR .framer-erzo0q, .framer-N4EiR .framer-nmu7lx, .framer-N4EiR .framer-wfzzep, .framer-N4EiR .framer-1xvsq5r, .framer-N4EiR .framer-fokj9c, .framer-N4EiR .framer-1bo3pgv, .framer-N4EiR .framer-szuo94, .framer-N4EiR .framer-1mz53kg, .framer-N4EiR .framer-vqrt2x, .framer-N4EiR .framer-o7ug9a, .framer-N4EiR .framer-6o0x6s, .framer-N4EiR .framer-1s3azwp { gap: 0px; } .framer-N4EiR .framer-wg6fpf > *, .framer-N4EiR .framer-1rra6dr > *, .framer-N4EiR .framer-1tz5eey > *, .framer-N4EiR .framer-erzo0q > *, .framer-N4EiR .framer-nmu7lx > *, .framer-N4EiR .framer-wfzzep > *, .framer-N4EiR .framer-fokj9c > *, .framer-N4EiR .framer-1bo3pgv > *, .framer-N4EiR .framer-szuo94 > *, .framer-N4EiR .framer-6o0x6s > *, .framer-N4EiR .framer-1s3azwp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-N4EiR .framer-wg6fpf > :first-child, .framer-N4EiR .framer-1rra6dr > :first-child, .framer-N4EiR .framer-dxwtk5 > :first-child, .framer-N4EiR .framer-1tz5eey > :first-child, .framer-N4EiR .framer-15ok8kv > :first-child, .framer-N4EiR .framer-erzo0q > :first-child, .framer-N4EiR .framer-nmu7lx > :first-child, .framer-N4EiR .framer-wfzzep > :first-child, .framer-N4EiR .framer-fokj9c > :first-child, .framer-N4EiR .framer-1bo3pgv > :first-child, .framer-N4EiR .framer-szuo94 > :first-child, .framer-N4EiR .framer-1mz53kg > :first-child, .framer-N4EiR .framer-vqrt2x > :first-child, .framer-N4EiR .framer-o7ug9a > :first-child, .framer-N4EiR .framer-6o0x6s > :first-child, .framer-N4EiR .framer-1s3azwp > :first-child { margin-left: 0px; } .framer-N4EiR .framer-wg6fpf > :last-child, .framer-N4EiR .framer-1rra6dr > :last-child, .framer-N4EiR .framer-dxwtk5 > :last-child, .framer-N4EiR .framer-1tz5eey > :last-child, .framer-N4EiR .framer-15ok8kv > :last-child, .framer-N4EiR .framer-erzo0q > :last-child, .framer-N4EiR .framer-nmu7lx > :last-child, .framer-N4EiR .framer-wfzzep > :last-child, .framer-N4EiR .framer-fokj9c > :last-child, .framer-N4EiR .framer-1bo3pgv > :last-child, .framer-N4EiR .framer-szuo94 > :last-child, .framer-N4EiR .framer-1mz53kg > :last-child, .framer-N4EiR .framer-vqrt2x > :last-child, .framer-N4EiR .framer-o7ug9a > :last-child, .framer-N4EiR .framer-6o0x6s > :last-child, .framer-N4EiR .framer-1s3azwp > :last-child { margin-right: 0px; } .framer-N4EiR .framer-dxwtk5 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-N4EiR .framer-15ok8kv > *, .framer-N4EiR .framer-1mz53kg > *, .framer-N4EiR .framer-vqrt2x > *, .framer-N4EiR .framer-o7ug9a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-N4EiR .framer-ojejqj > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-N4EiR .framer-ojejqj > :first-child, .framer-N4EiR .framer-1hox8kl > :first-child, .framer-N4EiR .framer-1xvsq5r > :first-child { margin-top: 0px; } .framer-N4EiR .framer-ojejqj > :last-child, .framer-N4EiR .framer-1hox8kl > :last-child, .framer-N4EiR .framer-1xvsq5r > :last-child { margin-bottom: 0px; } .framer-N4EiR .framer-1hox8kl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-N4EiR .framer-1xvsq5r > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-N4EiR.framer-v-1vjdru.framer-clbh7i { width: 390px; }\",\".framer-N4EiR.framer-v-1vjdru .framer-wg6fpf { padding: 20px 15px 0px 15px; }\",\".framer-N4EiR.framer-v-1vjdru .framer-1hox8kl, .framer-N4EiR.framer-v-1vjdru .framer-erzo0q, .framer-N4EiR.framer-v-1vjdru .framer-nmu7lx, .framer-N4EiR.framer-v-1vjdru .framer-wfzzep { padding: 0px 0px 0px 15px; }\",\".framer-N4EiR.framer-v-1vjdru .framer-1xvsq5r { padding: 0px 15px 20px 15px; }\",\".framer-N4EiR.framer-v-1vjdru .framer-szuo94 { flex: 1 0 0px; }\",\".framer-N4EiR.framer-v-1vjdru .framer-6o0x6s { flex: 1 0 0px; justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pvro3rvUj\":{\"layout\":[\"fixed\",\"fixed\"]},\"HClsCcfQz\":{\"layout\":[\"fixed\",\"fixed\"]},\"bK7vL0KSp\":{\"layout\":[\"fixed\",\"fixed\"]},\"nndHF1d3J\":{\"layout\":[\"fixed\",\"fixed\"]},\"CdiCFOBlP\":{\"layout\":[\"fixed\",\"fixed\"]},\"JjVk8IP6t\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ZnO4gEEiP\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSmkNoZhed=withCSS(Component,css,\"framer-N4EiR\");export default FramerSmkNoZhed;FramerSmkNoZhed.displayName=\"Menu Open Overlay\";FramerSmkNoZhed.defaultProps={height:800,width:1200};addPropertyControls(FramerSmkNoZhed,{variant:{options:[\"I2DiMKo8W\",\"Pvro3rvUj\",\"HClsCcfQz\",\"bK7vL0KSp\",\"nndHF1d3J\",\"CdiCFOBlP\",\"JjVk8IP6t\"],optionTitles:[\"Unhovered\",\"Profile\",\"Case Studies\",\"Contact\",\"Index\",\"Journal\",\"Mobile Full Navigation \"],title:\"Variant\",type:ControlType.Enum},ZnO4gEEiP:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerSmkNoZhed,[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"}]},...LogoLinkFonts,...TextLinkFonts,...OpenNavigationLinkFonts,...VideoFonts,...TextEncryptionEffectFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSmkNoZhed\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pvro3rvUj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HClsCcfQz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bK7vL0KSp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nndHF1d3J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CdiCFOBlP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JjVk8IP6t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"ZnO4gEEiP\\\":\\\"tap\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TextLink from\"https://framerusercontent.com/modules/n2MaA48zcanGubnZo5Lk/RAbhtq4ZqryIpupoATrx/dVTZgYLeH.js\";import LogoLink from\"https://framerusercontent.com/modules/jlFxTJzAsM7enhdB9YJ0/Rsd4wwVColCWpxbyQ3an/jRXzTKEh2.js\";const LogoLinkFonts=getFonts(LogoLink);const TextLinkFonts=getFonts(TextLink);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"FeKwNXxsb\",\"uyF164vS7\",\"jcCoQwoAa\",\"IZofKJ4e0\",\"KCRveuxVb\",\"OBAYI94ML\"];const serializationHash=\"framer-FE4T2\";const variantClassNames={FeKwNXxsb:\"framer-v-3qp4s6\",IZofKJ4e0:\"framer-v-1kkd832\",jcCoQwoAa:\"framer-v-1b8ee3m\",KCRveuxVb:\"framer-v-wje25z\",OBAYI94ML:\"framer-v-14146bv\",uyF164vS7:\"framer-v-7828to\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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={\"Navigation Black Mobile\":\"IZofKJ4e0\",\"Navigation Black\":\"FeKwNXxsb\",\"Navigation Clear Mobile\":\"OBAYI94ML\",\"Navigation Clear\":\"jcCoQwoAa\",\"Navigation White Mobile\":\"KCRveuxVb\",\"Navigation White\":\"uyF164vS7\"};const getProps=({height,id,tap,width,...props})=>{return{...props,EHMhKGDpT:tap??props.EHMhKGDpT,variant:humanReadableVariantMap[props.variant]??props.variant??\"FeKwNXxsb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EHMhKGDpT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FeKwNXxsb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12t3iox=activeVariantCallback(async(...args)=>{if(EHMhKGDpT){const res=await EHMhKGDpT(...args);if(res===false)return false;}});const GWlqcVA32txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"IZofKJ4e0\",\"KCRveuxVb\",\"OBAYI94ML\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3qp4s6\",className,classNames),\"data-framer-name\":\"Navigation Black\",layoutDependency:layoutDependency,layoutId:\"FeKwNXxsb\",ref:ref??ref1,style:{backgroundColor:\"var(--token-faf217ee-812d-4474-8131-b934f8e4dc1f, rgb(246, 243, 236))\",...style},variants:{jcCoQwoAa:{backgroundColor:\"rgba(0, 0, 0, 0)\"},KCRveuxVb:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},OBAYI94ML:{backgroundColor:\"rgba(0, 0, 0, 0)\"},uyF164vS7:{backgroundColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"}},...addPropertyOverrides({IZofKJ4e0:{\"data-framer-name\":\"Navigation Black Mobile\"},jcCoQwoAa:{\"data-framer-name\":\"Navigation Clear\"},KCRveuxVb:{\"data-framer-name\":\"Navigation White Mobile\"},OBAYI94ML:{\"data-framer-name\":\"Navigation Clear Mobile\"},uyF164vS7:{\"data-framer-name\":\"Navigation White\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1awtpsu\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pO6YK4B1r\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-51a3hu\",\"data-framer-name\":\"Nav Row\",layoutDependency:layoutDependency,layoutId:\"fpGbSz7ON\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined},{href:{webPageId:\"R6_F7xjGZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qg0t45-container\",layoutDependency:layoutDependency,layoutId:\"fqF9Q1c13-container\",children:/*#__PURE__*/_jsx(LogoLink,{CINbpXIT7:\"Dylan Peteli\",height:\"100%\",id:\"fqF9Q1c13\",layoutId:\"fqF9Q1c13\",pStQrnGpz:resolvedLinks[0],style:{width:\"100%\"},variant:\"Z4V6ICLXS\",width:\"100%\",...addPropertyOverrides({IZofKJ4e0:{pStQrnGpz:resolvedLinks[3]},jcCoQwoAa:{pStQrnGpz:resolvedLinks[2],variant:\"JCEI5hzRV\"},KCRveuxVb:{pStQrnGpz:resolvedLinks[4],variant:\"JCEI5hzRV\"},OBAYI94ML:{pStQrnGpz:resolvedLinks[5],variant:\"JCEI5hzRV\"},uyF164vS7:{pStQrnGpz:resolvedLinks[1],variant:\"JCEI5hzRV\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nps3ep\",layoutDependency:layoutDependency,layoutId:\"XQPjY57F1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)))\",\"--framer-text-transform\":\"uppercase\"},children:\"GRAphic, brand & motion Design\"})}),className:\"framer-hndwab\",\"data-framer-name\":\"art director\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"CdR5ZRsGc\",style:{\"--extracted-r6o4lv\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},variants:{jcCoQwoAa:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},uyF164vS7:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jcCoQwoAa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"GRAphic, brand & motion Design\"})})},uyF164vS7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"GRAphic, brand & motion Design\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16hfba8\",layoutDependency:layoutDependency,layoutId:\"PYztneNCT\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3)))\",\"--framer-text-transform\":\"uppercase\"},children:\"auckland, new zealand\"})}),className:\"framer-6fdyte\",\"data-framer-name\":\"LA, CALIFORNIA\",fonts:[\"GF;Azeret Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"N_LPr6qR9\",style:{\"--extracted-r6o4lv\":\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\"},variants:{jcCoQwoAa:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},uyF164vS7:{\"--extracted-r6o4lv\":\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jcCoQwoAa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"auckland, new zealand\"})})},uyF164vS7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"auckland, new zealand\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o541l4\",\"data-framer-name\":\"Menu Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"z5d6L9HXi\",onTap:onTap12t3iox,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:13,y:(componentViewport?.y||0)+(20+((componentViewport?.height||53)-40-13)/2)+0+0+0,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176d5ko-container\",id:`${layoutId}-176d5ko`,layoutDependency:layoutDependency,layoutId:\"p0mdHnoOe-container\",ref:ref2,children:[/*#__PURE__*/_jsx(TextLink,{GWlqcVA32:GWlqcVA32txyyif({overlay}),height:\"100%\",id:\"p0mdHnoOe\",Kpveh2Q8O:\"menu\",layoutId:\"p0mdHnoOe\",MOYsDPIsL:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",variant:\"eyytyxpGy\",width:\"100%\",...addPropertyOverrides({jcCoQwoAa:{MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},KCRveuxVb:{MOYsDPIsL:\"rgb(255, 255, 255)\"},OBAYI94ML:{MOYsDPIsL:\"var(--token-6fd3dded-9be8-4471-a82c-6f46144951d0, rgb(255, 255, 255))\"},uyF164vS7:{MOYsDPIsL:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-176d5ko`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-j4vzsa\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"s3tPv0bUU\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})]})})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FE4T2.framer-bs3puo, .framer-FE4T2 .framer-bs3puo { display: block; }\",\".framer-FE4T2.framer-3qp4s6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1200px; }\",\".framer-FE4T2 .framer-1awtpsu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-51a3hu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-qg0t45-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-1nps3ep { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-hndwab, .framer-FE4T2 .framer-6fdyte { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FE4T2 .framer-16hfba8 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-1o541l4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FE4T2 .framer-176d5ko-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FE4T2 .framer-j4vzsa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FE4T2.framer-3qp4s6, .framer-FE4T2 .framer-1awtpsu, .framer-FE4T2 .framer-51a3hu, .framer-FE4T2 .framer-1nps3ep, .framer-FE4T2 .framer-16hfba8, .framer-FE4T2 .framer-1o541l4, .framer-FE4T2 .framer-j4vzsa { gap: 0px; } .framer-FE4T2.framer-3qp4s6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-FE4T2.framer-3qp4s6 > :first-child, .framer-FE4T2 .framer-1awtpsu > :first-child, .framer-FE4T2 .framer-51a3hu > :first-child, .framer-FE4T2 .framer-1nps3ep > :first-child, .framer-FE4T2 .framer-16hfba8 > :first-child, .framer-FE4T2 .framer-1o541l4 > :first-child, .framer-FE4T2 .framer-j4vzsa > :first-child { margin-left: 0px; } .framer-FE4T2.framer-3qp4s6 > :last-child, .framer-FE4T2 .framer-1awtpsu > :last-child, .framer-FE4T2 .framer-51a3hu > :last-child, .framer-FE4T2 .framer-1nps3ep > :last-child, .framer-FE4T2 .framer-16hfba8 > :last-child, .framer-FE4T2 .framer-1o541l4 > :last-child, .framer-FE4T2 .framer-j4vzsa > :last-child { margin-right: 0px; } .framer-FE4T2 .framer-1awtpsu > *, .framer-FE4T2 .framer-51a3hu > *, .framer-FE4T2 .framer-1nps3ep > *, .framer-FE4T2 .framer-1o541l4 > *, .framer-FE4T2 .framer-j4vzsa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FE4T2 .framer-16hfba8 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-FE4T2.framer-v-1kkd832.framer-3qp4s6, .framer-FE4T2.framer-v-wje25z.framer-3qp4s6, .framer-FE4T2.framer-v-14146bv.framer-3qp4s6 { padding: 20px 15px 20px 15px; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uyF164vS7\":{\"layout\":[\"fixed\",\"auto\"]},\"jcCoQwoAa\":{\"layout\":[\"fixed\",\"auto\"]},\"IZofKJ4e0\":{\"layout\":[\"fixed\",\"auto\"]},\"KCRveuxVb\":{\"layout\":[\"fixed\",\"auto\"]},\"OBAYI94ML\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"EHMhKGDpT\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryGfvD64UY=withCSS(Component,css,\"framer-FE4T2\");export default FrameryGfvD64UY;FrameryGfvD64UY.displayName=\"Navigation\";FrameryGfvD64UY.defaultProps={height:53,width:1200};addPropertyControls(FrameryGfvD64UY,{variant:{options:[\"FeKwNXxsb\",\"uyF164vS7\",\"jcCoQwoAa\",\"IZofKJ4e0\",\"KCRveuxVb\",\"OBAYI94ML\"],optionTitles:[\"Navigation Black\",\"Navigation White\",\"Navigation Clear\",\"Navigation Black Mobile\",\"Navigation White Mobile\",\"Navigation Clear Mobile\"],title:\"Variant\",type:ControlType.Enum},EHMhKGDpT:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FrameryGfvD64UY,[{explicitInter:true,fonts:[{family:\"Azeret Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/azeretmono/v17/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh17aa-5s3AA.woff2\",weight:\"400\"}]},...LogoLinkFonts,...TextLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryGfvD64UY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uyF164vS7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jcCoQwoAa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IZofKJ4e0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KCRveuxVb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OBAYI94ML\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"53\",\"framerVariables\":\"{\\\"EHMhKGDpT\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yGfvD64UY.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/OFLvr3IWlfA5vu11hpCS/UsimxLXbJlTg4f76HBbU/Zc4rlgUye.js\";const cycleOrder=[\"PpJgzYKY9\",\"TKVyLtuTt\"];const serializationHash=\"framer-oKUXd\";const variantClassNames={PpJgzYKY9:\"framer-v-nc30qn\",TKVyLtuTt:\"framer-v-10fa460\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"View project  - active\":\"TKVyLtuTt\",\"View project \":\"PpJgzYKY9\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PpJgzYKY9\",VmojfvIIh:(_ref1=title!==null&&title!==void 0?title:props.VmojfvIIh)!==null&&_ref1!==void 0?_ref1:\"Project Title\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,VmojfvIIh,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"PpJgzYKY9\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nc30qn\",className,classNames),\"data-framer-name\":\"View project \",initial:variant,layoutDependency:layoutDependency,layoutId:\"PpJgzYKY9\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({TKVyLtuTt:{\"data-framer-name\":\"View project  - active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-74qsu7\",layoutDependency:layoutDependency,layoutId:\"Ff94ra_fE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",children:\"Project Title\"})}),className:\"framer-1pl7mxn\",layoutDependency:layoutDependency,layoutId:\"GcuAA6VUI\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:VmojfvIIh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1uc0dg7\",\"data-styles-preset\":\"Zc4rlgUye\",children:\"vIEW PROJECT\"})}),className:\"framer-qr1xou\",layoutDependency:layoutDependency,layoutId:\"klQUKzLPs\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-oKUXd[data-border=\"true\"]::after, .framer-oKUXd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oKUXd.framer-1ltzkl9, .framer-oKUXd .framer-1ltzkl9 { display: block; }\",\".framer-oKUXd.framer-nc30qn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 330px; }\",\".framer-oKUXd .framer-74qsu7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 13px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-oKUXd .framer-1pl7mxn, .framer-oKUXd .framer-qr1xou { 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-oKUXd.framer-nc30qn, .framer-oKUXd .framer-74qsu7 { gap: 0px; } .framer-oKUXd.framer-nc30qn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oKUXd.framer-nc30qn > :first-child { margin-left: 0px; } .framer-oKUXd.framer-nc30qn > :last-child { margin-right: 0px; } .framer-oKUXd .framer-74qsu7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-oKUXd .framer-74qsu7 > :first-child { margin-top: 0px; } .framer-oKUXd .framer-74qsu7 > :last-child { margin-bottom: 0px; } }\",\".framer-oKUXd.framer-v-10fa460 .framer-74qsu7 { justify-content: flex-end; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TKVyLtuTt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VmojfvIIh\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const Frameriux_1P4dx=withCSS(Component,css,\"framer-oKUXd\");export default Frameriux_1P4dx;Frameriux_1P4dx.displayName=\"View project\";Frameriux_1P4dx.defaultProps={height:13,width:330};addPropertyControls(Frameriux_1P4dx,{variant:{options:[\"PpJgzYKY9\",\"TKVyLtuTt\"],optionTitles:[\"View project \",\"View project  - active\"],title:\"Variant\",type:ControlType.Enum},VmojfvIIh:{defaultValue:\"Project Title\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Frameriux_1P4dx,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameriux_1P4dx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TKVyLtuTt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"330\",\"framerIntrinsicHeight\":\"13\",\"framerVariables\":\"{\\\"VmojfvIIh\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iux_1P4dx.map"],
  "mappings": "yiBAA2Z,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,EAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC76B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,GAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY3B,GAAuB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,OAAAC,EAAO,cAAAC,GAAc,UAAUC,GAAc,OAAAC,GAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,GAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,GAAgB7C,EAAO,IAAI,EAAQ8C,GAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGnjBqE,EAAiBJ,GAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,EAAaL,GAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAAlC,GAAK,MAAAE,GAAM,YAAAP,EAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,GAAU,IAAI,CAAIR,KAAqBpC,EAAYJ,GAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,GAAU,IAAI,CAAIR,IAAqBI,IAAmB,gBAAwBC,EAAa7C,GAAK,EAAOE,GAAM,EAAE,EAAE,CAAC0C,EAAiBC,CAAY,CAAC,EAEpJG,GAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,OAAQ,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,IAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,GAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,GAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,IAAiBjC,GAAM,CAACgC,EAAiB,UAAQtC,GAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,GAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,QAAQhD,EAAS,QAAQ,OAAOY,GAAM,EAAG,CAAC,EAAE,IAAMoD,EAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU,MAAM,OAAOE,EAAOqC,EAAS,GAAGvC,IAAU,SAAS,OAAOC,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EAC5H,OAAAC,GAAU,IAAI,CAAIZ,IAAU9C,EAAS,SAASsD,IAAmB,YAAY,WAAW,IAAI5C,GAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,GAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,IAAsC,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC6FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,IAAIuB,EAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,IAAmB,WAAW,OAAOX,GAAcD,EAAO,OAAU,aAA1mB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,IAAaoD,GAA+C,GAAG,GAAG,EAAKH,IAAmB,YAAW5C,GAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,GAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,EAAM,YAAY,QAAQA,EAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMwE,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,EAAoB5E,EAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKuF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKuF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMpqF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpErL,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,eAAe,UAAUJ,GAAgCG,EAAM,UAAU,SAASG,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMrB,IAAWA,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAuBK,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,UAAAiC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAhC,EAAW,SAAAV,CAAQ,EAAE2C,GAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBnB,GAAuBJ,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAsB,GAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBnC,EAAKoC,GAAY,CAAC,GAAGf,GAA4Ca,EAAgB,SAAsBlC,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKqC,GAAK,CAAC,KAAKd,EAAU,SAAsBvB,EAAKsC,EAAO,EAAE,CAAC,GAAGd,EAAU,QAAQrC,EAAS,UAAU,GAAGoD,EAAGxD,GAAkB,GAAGoD,EAAsB,gBAAgBf,EAAUM,CAAU,mBAAmB,mBAAmB,QAAQ,QAAQrC,EAAQ,iBAAiB0C,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIb,GAA6BiB,EAAK,MAAM,CAAC,GAAGb,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsB3B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWyC,EAAS,CAAC,SAAsBzC,EAAKsC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,8CAA8C,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,wBAAwB,EAAE,iBAAiBP,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,KAAKT,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWyC,EAAS,CAAC,SAAsBzC,EAAKsC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEb,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,uSAAuS,iHAAiH,0WAA0W,EAQjqLC,GAAgBC,GAAQ/B,GAAU6B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,OAAO,cAAc,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,CAAC,ECRrY,IAAMM,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,cAAc,YAAY,cAAc,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,IAAAC,EAAI,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGJ,EAAM,UAAUH,GAA6BG,EAAM,UAAU,WAAWC,EAAKR,GAAmCO,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kGAAkG,UAAUL,GAAgCI,EAAM,UAAU,WAAWE,EAAMJ,GAAmCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,UAAU,SAASE,GAAOD,EAAuCZ,GAAwBS,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACL,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBM,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE3B,GAASQ,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAArC,EAAW,SAAAV,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBrB,GAAuBL,EAAMvB,CAAQ,EAAO,CAAC,sBAAAkD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBT,CAAW,EAAQU,GAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,GAAqB,MAAMA,EAAU,GAAGa,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAWC,EAAO,IAAI,EAAQC,EAAsB,GAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoB7C,EAAK8C,GAAY,CAAC,GAAGtB,GAA4CoB,EAAgB,SAAsB5C,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAK+C,GAAK,CAAC,KAAKrB,EAAU,SAAsB1B,EAAKgD,EAAO,EAAE,CAAC,GAAGnB,EAAU,QAAQ1C,EAAS,UAAU,GAAG8D,EAAGlE,GAAkB,GAAG8D,EAAsB,gBAAgBtB,EAAUQ,CAAU,kBAAkB,mBAAmB,OAAO,iBAAiB,GAAK,QAAQ1C,EAAQ,iBAAiB+C,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAMO,GAAa,YAAY,IAAIP,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIf,GAA6BwB,GAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,iBAAiB,OAAU,MAAM,IAAIgD,EAAgB,CAAC,UAAU,EAAK,CAAC,CAAC,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAEH,EAAYE,CAAc,EAAE,SAAsBhC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAKgD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,yEAAyE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,oBAAoB,EAAE,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2CT,EAAU,QAAQ,CAAC,EAAE,KAAKF,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWmD,EAAS,CAAC,SAAsBnD,EAAKgD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,yEAAyE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,gcAAgc,kFAAkF,gFAAgF,2TAA2T,iHAAiH,2WAA2W,iEAAiE,EAQ9xNC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,cAAc,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kGAAkG,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,OAAO,UAAU,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,ECRmL,IAAMM,GAAcC,GAASC,EAAQ,EAAQC,GAAcF,GAASG,EAAQ,EAAQC,GAAwBJ,GAASK,EAAkB,EAAQC,EAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAWT,GAASU,CAAK,EAAQC,GAA0BX,GAASY,EAAoB,EAAQC,GAAeN,GAAOO,CAAQ,EAAQC,GAAqCR,GAAOS,GAAuBF,CAAQ,CAAC,EAAQG,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAmB,CAACC,EAAEC,IAAI,uBAAuBA,IAAUC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWL,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQM,EAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASxD,EAAayD,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,0BAA0B,YAAY,QAAQ,YAAY,MAAM,YAAY,QAAQ,YAAY,QAAQ,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAKE,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMlD,IAAWA,EAAS,KAAK,GAAG,EAAEkD,EAAM,iBAAuBE,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1D,EAAQ,UAAA2D,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnE,CAAQ,EAAEoE,GAAgB,CAAC,WAAAzE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwE,EAAiBlB,GAAuBD,EAAMlD,CAAQ,EAAO,CAAC,sBAAAsE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAaH,EAAsB,SAASI,IAAO,CAAC,GAAGb,GAAqB,MAAMA,EAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAmBL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAmBN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAmBP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAoBR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAoBT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAmBV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAWC,EAAO,IAAI,EAAQC,GAAOC,GAAU,EAAQC,EAAY,IAAQtB,IAAc,YAA6CuB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAa,IAAQxB,IAAc,YAA6CyB,GAAa,IAAQzB,IAAc,YAA6C0B,EAAa,IAAQ1B,IAAc,YAA6C2B,EAAa,IAAQ3B,IAAc,YAA6C4B,EAAa,IAAQ5B,IAAc,YAA6C6B,GAAsB,GAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBtD,EAAKuD,GAAY,CAAC,GAAGpC,GAAUgC,GAAgB,SAAsBnD,EAAKC,GAAS,CAAC,QAAQ1C,EAAS,QAAQ,GAAM,SAAsByC,EAAKT,GAAW,CAAC,MAAM7B,GAAY,SAAsB8F,EAAM/G,EAAO,IAAI,CAAC,GAAG4E,EAAU,UAAUoC,EAAGtG,GAAkB,GAAGiG,GAAsB,gBAAgBlC,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAAK2B,EAAK,MAAM,CAAC,gBAAgB,kEAAkE,GAAGvB,CAAK,EAAE,GAAG5D,EAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,CAAC,EAAEiE,EAAYE,CAAc,EAAE,SAAS,CAAcgC,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B3D,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKvD,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBmF,EAAiB,SAAS,sBAAsB,SAAsB5B,EAAK9D,GAAS,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyH,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGtG,EAAqB,CAAC,UAAU,CAAC,UAAUsG,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAErC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,EAAY,GAAgB5C,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB5B,EAAKjD,EAAS,CAAC,sBAAsB,GAAK,SAAsBiD,EAAWE,EAAS,CAAC,SAAsBF,EAAKvD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,wBAAwB,EAAE,iBAAiBmF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEgB,EAAY,GAAgB5C,EAAKvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB5B,EAAKjD,EAAS,CAAC,sBAAsB,GAAK,SAAsBiD,EAAWE,EAAS,CAAC,SAAsBF,EAAKvD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiBmF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5B,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB,GAAK,iBAAiBmF,EAAiB,SAAS,YAAY,MAAMI,EAAa,SAAsBhC,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKvD,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBmF,EAAiB,SAAS,sBAAsB,SAAsB5B,EAAK5D,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,QAAQ,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoH,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc4B,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,iBAAiB,GAAK,iBAAiBmF,EAAiB,SAAS,YAAY,aAAaM,EAAmB,GAAG7E,EAAqB,CAAC,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,aAAa8E,CAAkB,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAsBxB,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B7D,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,SAAS9F,EAAW,QAAQ,EAAE,UAAU,0BAA0B,wBAAwB,SAAS,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,SAASlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9F,EAAW,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAK1D,GAAmB,CAAC,UAAU,wEAAwE,UAAUuH,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGxG,EAAqB,CAAC,UAAU,CAAC,UAAUwG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAEvC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiB,GAAK,iBAAiBmF,EAAiB,SAAS,YAAY,aAAaQ,GAAmB,GAAG/E,EAAqB,CAAC,UAAU,CAAC,aAAa8E,CAAkB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAsBxB,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BhE,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU1F,GAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAW,QAAQ2F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQyG,EAAe,UAAU,UAAU1F,GAAW,SAAS,EAAE,QAAQ0F,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU1F,GAAW,QAAQ,EAAE,QAAQ0F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS1F,GAAW,SAAS,EAAE,QAAQ0F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU1F,GAAW,QAAQ,EAAE,QAAQ0F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS1F,GAAW,QAAQ,EAAE,QAAQ0F,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU1F,GAAW,SAAS,EAAE,QAAQ0F,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAK1D,GAAmB,CAAC,UAAU,wEAAwE,UAAU0H,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,QAAQ,YAAY,MAAM,OAAO,GAAG3G,EAAqB,CAAC,UAAU,CAAC,UAAU2G,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,OAAO,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE1C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiB,GAAK,iBAAiBmF,EAAiB,SAAS,YAAY,aAAaS,GAAoB,GAAGhF,EAAqB,CAAC,UAAU,CAAC,aAAa8E,CAAkB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAsBxB,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BjE,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAUvF,GAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAW,QAAQwF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAASvF,GAAW,SAAS,EAAE,QAAQuF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASvF,GAAW,QAAQ,EAAE,QAAQuF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASvF,GAAW,SAAS,EAAE,QAAQuF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUvF,GAAW,QAAQ,EAAE,QAAQuF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASvF,GAAW,QAAQ,EAAE,QAAQuF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUvF,GAAW,SAAS,EAAE,QAAQuF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAK1D,GAAmB,CAAC,UAAU,wEAAwE,UAAU2H,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAG5G,EAAqB,CAAC,UAAU,CAAC,UAAU4G,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE3C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiB,GAAK,iBAAiBmF,EAAiB,SAAS,YAAY,aAAaU,GAAoB,GAAGjF,EAAqB,CAAC,UAAU,CAAC,aAAakF,CAAkB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,aAAaJ,CAAkB,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAsBxB,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BlE,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAUpF,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAW,QAAQqF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAASpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUpF,EAAW,QAAQ,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASpF,EAAW,QAAQ,EAAE,QAAQoF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUpF,EAAW,QAAQ,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAK1D,GAAmB,CAAC,UAAU,wEAAwE,UAAU4H,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,QAAQ,YAAY,MAAM,OAAO,GAAG7G,EAAqB,CAAC,UAAU,CAAC,UAAU6G,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE5C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAa,GAAgB7C,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,gBAAgB,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,SAAsBmC,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,gBAAgB,UAAU,QAAQ,QAAQ,GAAK,OAAO,qEAAqE,cAAc,GAAK,QAAQ,MAAM,OAAO,0DAA0D,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmG,GAAa,GAAgB9C,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,gBAAgB,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,gBAAgB,UAAU,QAAQ,QAAQ,GAAK,OAAO,uEAAuE,cAAc,GAAK,QAAQ,MAAM,OAAO,gEAAgE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoG,GAAa,GAAgB/C,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,SAAS9F,EAAW,QAAQ,EAAE,UAAU,0BAA0B,wBAAwB,SAAS,mBAAmB,qBAAqB,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,qBAAqB,kBAAkBmC,EAAgC,SAASlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,qBAAqB,UAAU,QAAQ,QAAQ,GAAK,OAAO,qEAAqE,cAAc,GAAK,QAAQ,MAAM,OAAO,2EAA2E,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqG,EAAa,GAAgBhD,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,gBAAgB,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9F,EAAW,SAAS,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,gBAAgB,UAAU,QAAQ,QAAQ,GAAK,OAAO,sEAAsE,cAAc,GAAK,QAAQ,MAAM,OAAO,+EAA+E,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,EAAa,GAAgBjD,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,gBAAgB,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9F,EAAW,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,gBAAgB,UAAU,QAAQ,QAAQ,GAAK,OAAO,uEAAuE,cAAc,GAAK,QAAQ,MAAM,OAAO,2FAA2F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuG,EAAa,GAAgBlD,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,cAAc,KAAKJ,GAAU,QAAQkG,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,KAAK,cAAc,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQyG,EAAe,UAAU,UAAU9F,EAAW,QAAQ,EAAE,QAAQ8F,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKrD,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,cAAc,UAAU,QAAQ,QAAQ,GAAK,OAAO,qEAAqE,cAAc,GAAK,QAAQ,MAAM,OAAO,qEAAqE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB4B,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAACgB,EAAY,GAAgB5C,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB5B,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAUpF,EAAW,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAW,QAAQqF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQyG,EAAe,UAAU,UAAUpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUpF,EAAW,QAAQ,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASpF,EAAW,QAAQ,EAAE,QAAQoF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUpF,EAAW,SAAS,EAAE,QAAQoF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAK5D,GAAS,CAAC,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,wEAAwE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoH,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAKmE,GAAK,CAAC,KAAK,wCAAwC,aAAa,GAAK,SAAsBX,EAAM/G,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,cAAc,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAUjF,EAAY,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAW,QAAQkF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQyG,EAAe,UAAU,UAAUjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKnD,GAAqB,CAAC,WAAW,CAAC,MAAM,GAAK,MAAM,GAAM,OAAO,GAAK,QAAQ,MAAM,EAAE,WAAW,6BAA6B,KAAK,CAAC,WAAW,2BAA2B,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,IAAI,SAAS,YAAY,KAAK,KAAK,WAAW,GAAK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAKlD,GAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQgH,EAAe,UAAU,SAASjF,EAAY,QAAQ,EAAE,SAAsBmB,EAAWE,EAAS,CAAC,SAAsBF,EAAKvD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,KAAKmC,GAAW,MAAM,CAAC,wBAAwB,EAAE,QAAQkF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkBmC,EAAgC,SAASlG,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAASjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,QAAQ,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUjF,EAAY,SAAS,EAAE,QAAQiF,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKmE,GAAK,CAAC,KAAK,iCAAiC,SAAsBX,EAAM/G,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,cAAc,iBAAiBmF,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,UAAU9E,EAAY,QAAQ,EAAE,UAAU,2BAA2B,wBAAwB,UAAU,KAAKD,GAAY,QAAQ+E,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,UAAU,QAAQyG,EAAe,UAAU,UAAU9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKnD,GAAqB,CAAC,WAAW,CAAC,MAAM,GAAK,MAAM,GAAM,OAAO,GAAK,QAAQ,MAAM,EAAE,WAAW,6BAA6B,KAAK,CAAC,WAAW,2BAA2B,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,IAAI,SAAS,YAAY,KAAK,KAAK,WAAW,GAAK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAKlD,GAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQgH,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAKvD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,KAAKsC,GAAY,MAAM,CAAC,wBAAwB,EAAE,QAAQ+E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkBmC,EAAgC,SAASlG,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,QAAQiG,EAAe,UAAU,QAAQ9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,QAAQ7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,QAAQlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,QAAQ,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS9E,EAAY,SAAS,EAAE,QAAQ8E,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKmE,GAAK,CAAC,KAAK,0BAA0B,SAAsBnE,EAAKvD,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,cAAc,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB5B,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKzD,EAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuH,EAAe,UAAU,SAAS3E,GAAY,QAAQ,EAAE,UAAU,0BAA0B,wBAAwB,SAAS,KAAKD,GAAY,QAAQ4E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,sBAAsB,kBAAkBmC,EAAgC,SAASlG,CAAkB,EAAE,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAAS3E,GAAY,SAAS,EAAE,QAAQ2E,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU3E,GAAY,QAAQ,EAAE,QAAQ2E,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAU3E,GAAY,SAAS,EAAE,QAAQ2E,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS3E,GAAY,QAAQ,EAAE,QAAQ2E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS3E,GAAY,QAAQ,EAAE,QAAQ2E,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAAS3E,GAAY,SAAS,EAAE,QAAQ2E,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBxB,EAAKnD,GAAqB,CAAC,WAAW,CAAC,MAAM,GAAK,MAAM,GAAM,OAAO,GAAK,QAAQ,MAAM,EAAE,WAAW,6BAA6B,KAAK,CAAC,WAAW,2BAA2B,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,IAAI,SAAS,YAAY,KAAK,KAAK,WAAW,GAAK,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAKmE,GAAK,CAAC,KAAK,sBAAsB,aAAa,GAAK,SAAsBnE,EAAKvD,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiBmF,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAEgB,EAAY,GAAgB5C,EAAKvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmF,EAAiB,SAAS,YAAY,SAAsB5B,EAAKhD,GAAqC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ8G,EAAe,UAAU,UAAUxE,GAAY,QAAQ,EAAE,SAAsBU,EAAWE,EAAS,CAAC,SAAsBF,EAAKvD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,qBAAqB,KAAK4C,GAAY,MAAM,CAAC,wBAAwB,EAAE,QAAQyE,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkBmC,EAAgC,UAAUlG,CAAkB,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGR,EAAqB,CAAC,UAAU,CAAC,wBAAwB,SAAS,QAAQyG,EAAe,UAAU,SAASxE,GAAY,SAAS,EAAE,QAAQwE,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUxE,GAAY,QAAQ,EAAE,QAAQwE,EAAe,UAAU,UAAU7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,UAAU,QAAQiG,EAAe,UAAU,UAAUxE,GAAY,SAAS,EAAE,QAAQwE,EAAe,UAAU,UAAU7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,UAAUlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASxE,GAAY,QAAQ,EAAE,QAAQwE,EAAe,UAAU,SAAS7F,EAAW,QAAQ,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,EAAE,UAAU,CAAC,wBAAwB,SAAS,QAAQiG,EAAe,UAAU,SAASxE,GAAY,SAAS,EAAE,QAAQwE,EAAe,UAAU,SAAS7F,EAAW,SAAS,EAAE,kBAAkB8F,EAAgC,SAASlG,CAAkB,CAAC,CAAC,EAAEyD,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4C,GAAI,CAAC,kFAAkF,kFAAkF,8QAA8Q,gUAAgU,2GAA2G,6TAA6T,2OAA2O,6RAA6R,2TAA2T,+aAA+a,gSAAgS,8RAA8R,qSAAqS,6VAA6V,6SAA6S,0KAA0K,uUAAuU,kRAAkR,+RAA+R,kXAAkX,uUAAuU,6RAA6R,6+GAA6+G,gEAAgE,gFAAgF,yNAAyN,iFAAiF,kEAAkE,4FAA4F,EASvx+DC,GAAgBC,GAAQ3D,GAAUyD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,UAAU,eAAe,UAAU,QAAQ,UAAU,yBAAyB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrI,GAAc,GAAGG,GAAc,GAAGE,GAAwB,GAAGK,GAAW,GAAGE,EAAyB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT9O,IAAM+H,GAAcC,GAASC,EAAQ,EAAQC,GAAcF,GAASG,EAAQ,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAP,CAAQ,IAAI,CAAC,IAAMQ,EAAaC,GAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASZ,CAAQ,CAAC,CAAE,EAAQe,GAAS9B,EAAO,OAAa+B,CAAQ,EAAQC,GAAwB,CAAC,0BAA0B,YAAY,mBAAmB,YAAY,0BAA0B,YAAY,mBAAmB,YAAY,0BAA0B,YAAY,mBAAmB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAKE,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMhC,IAAegC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAEgC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAUkC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiBrB,GAAuBD,EAAMhC,CAAQ,EAAO,CAAC,sBAAAuD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIP,EAAsB,SAASI,KAAO,CAACE,EAAQ,KAAK,CAAE,CAAC,EAAuCE,EAAkBC,EAAGpE,GAAkB,GAAhD,CAAC,CAAuE,EAAQqE,EAAWC,EAAO,IAAI,EAAQC,GAAOC,GAAU,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAWJ,EAAO,IAAI,EAAQK,GAAWL,EAAO,IAAI,EAAQM,GAAsB,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBnD,EAAKoD,GAAY,CAAC,GAAGjC,GAAU8B,GAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQxB,EAAS,QAAQ,GAAM,SAAsBuB,EAAKR,GAAW,CAAC,MAAMZ,GAAY,SAAsBoB,EAAK7B,EAAO,IAAI,CAAC,GAAGkD,EAAU,GAAGI,EAAgB,UAAUgB,EAAGD,EAAkB,gBAAgBtB,EAAUK,CAAU,EAAE,mBAAmB,mBAAmB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAAK6B,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,GAAGzB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,iEAAiE,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,iEAAiE,CAAC,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAsB1B,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB4D,EAAiB,SAAS,YAAY,SAAsBsB,EAAMlF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB4D,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKsD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BvD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAK7B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKlC,GAAS,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyF,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhF,GAAqB,CAAC,UAAU,CAAC,UAAUgF,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAEjC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,EAAY,GAAgB9C,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4D,EAAiB,SAAS,YAAY,SAAsB/B,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,2FAA2F,0BAA0B,WAAW,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,wBAAwB,EAAE,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,iEAAiE,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxD,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB6B,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEoB,EAAY,GAAgB9C,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4D,EAAiB,SAAS,YAAY,SAAsB/B,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,2FAA2F,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,iEAAiE,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxD,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB6B,EAAWE,EAAS,CAAC,SAAsBF,EAAK7B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK7B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB,GAAK,iBAAiB4D,EAAiB,SAAS,YAAY,MAAMI,GAAa,SAAsBnC,EAAKf,GAAQ,CAAC,uBAAuB,GAAM,SAASqD,GAAsBtC,EAAK0D,GAAU,CAAC,SAAsB1D,EAAKwD,EAA0B,CAAC,OAAO,GAAG,GAAGN,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,SAAsBG,EAAMlF,EAAO,IAAI,CAAC,UAAU,2BAA2B,GAAG,GAAGgD,YAAmB,iBAAiBY,EAAiB,SAAS,sBAAsB,IAAIgB,GAAK,SAAS,CAAc/C,EAAKhC,GAAS,CAAC,UAAUqE,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,OAAO,SAAS,YAAY,UAAU,kEAAkE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,GAAqB,CAAC,UAAU,CAAC,UAAU,uEAAuE,EAAE,UAAU,CAAC,UAAU,oBAAoB,EAAE,UAAU,CAAC,UAAU,uEAAuE,EAAE,UAAU,CAAC,UAAU,oBAAoB,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,EAAe1B,EAAK2D,GAAgB,CAAC,SAASrB,EAAQ,SAAsBtC,EAAK4D,GAAS,CAAC,UAAU,SAAS,UAAUb,GAAK,UAAUN,EAAGD,EAAkBjB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGJ,YAAmB,QAAQ,EAAE,QAAQ,GAAG,UAAUmB,EAAQ,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBtC,EAAK/B,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQc,GAAW,UAAU,gBAAgB,KAAKD,GAAU,QAAQE,GAAW,iBAAiB+C,EAAiB,SAAS,YAAY,IAAIiB,GAAK,KAAK,SAAS,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,gFAAgF,uQAAuQ,+QAA+Q,+QAA+Q,0GAA0G,mRAAmR,8IAA8I,kRAAkR,kSAAkS,yGAAyG,uTAAuT,q6CAAq6C,yLAAyL,EASx7hBC,GAAgBC,GAAQpD,GAAUkD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,mBAAmB,mBAAmB,mBAAmB,0BAA0B,0BAA0B,yBAAyB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlG,GAAc,GAAGG,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3d,IAAMqG,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,yBAAyB,YAAY,gBAAgB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAKC,EAAM,MAAM,CAAC,GAAGH,EAAM,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,YAAY,WAAWC,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,eAAe,CAAE,EAAQC,GAAuB,CAACJ,EAAMpB,IAAWA,EAAS,KAAK,GAAG,EAAEoB,EAAM,iBAAuBK,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,UAAAgC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,GAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBlB,GAAuBJ,EAAMpB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsB,GAAM,EAAQC,EAAsB,CAAad,EAAS,EAAE,OAAoBnB,EAAKkC,GAAY,CAAC,GAAGd,GAA4CY,EAAgB,SAAsBhC,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKmC,EAAO,IAAI,CAAC,GAAGb,EAAU,QAAQnC,EAAS,UAAUiD,EAAGrD,GAAkB,GAAGkD,EAAsB,gBAAgBd,EAAUK,CAAU,EAAE,mBAAmB,gBAAgB,QAAQnC,EAAQ,iBAAiBwC,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BgB,EAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,wBAAwB,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBY,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBN,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKsC,EAAS,CAAC,sBAAsB,GAAK,SAAsBtC,EAAWuC,EAAS,CAAC,SAAsBvC,EAAKmC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiBN,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKR,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerB,EAAKsC,EAAS,CAAC,sBAAsB,GAAK,SAAsBtC,EAAWuC,EAAS,CAAC,SAAsBvC,EAAKmC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiBN,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,6QAA6Q,yRAAyR,mMAAmM,wnBAAwnB,+EAA+E,GAAeA,EAAG,EAQ5rMC,GAAgBC,GAAQ9B,GAAU4B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,wBAAwB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,gBAAgB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAeM,EAAK,CAAC",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CINbpXIT7", "pStQrnGpz", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "Link", "motion", "cx", "RichText2", "x", "css", "FramerjRXzTKEh2", "withCSS", "jRXzTKEh2_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pmLxJr3U4", "fHKDDMhyL", "b89VyIKsR", "aAL3Kk_ub", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1jq8al6", "args", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "Link", "motion", "cx", "RichText2", "x", "css", "FramerV3EjteYMK", "withCSS", "V3EjteYMK_default", "addPropertyControls", "ControlType", "addFonts", "LogoLinkFonts", "getFonts", "jRXzTKEh2_default", "TextLinkFonts", "dVTZgYLeH_default", "OpenNavigationLinkFonts", "V3EjteYMK_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "TextEncryptionEffectFonts", "TextEncryptionEffect", "RichTextWithFX", "RichText2", "RichTextAutoCopyrightStatementWithFX", "AutoCopyrightStatement", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "transition9", "animation15", "animation16", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZnO4gEEiP", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap13eo57c", "args", "onMouseEnterbkbs62", "onMouseLeave6wal2l", "onMouseEnterx99192", "onMouseEnter10dh9qc", "onMouseEnter12b6fck", "onMouseLeavej1jt39", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "optimizeAppear", "optimizeAppearTransformTemplate", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "Link", "css", "FramerSmkNoZhed", "withCSS", "SmkNoZhed_default", "addPropertyControls", "ControlType", "addFonts", "LogoLinkFonts", "getFonts", "jRXzTKEh2_default", "TextLinkFonts", "dVTZgYLeH_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "EHMhKGDpT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12t3iox", "args", "GWlqcVA32txyyif", "overlay", "loadMore", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "isDisplayed", "ref2", "ref3", "defaultLayoutId", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "RichText2", "l", "AnimatePresence", "Floating", "css", "FrameryGfvD64UY", "withCSS", "yGfvD64UY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VmojfvIIh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "Frameriux_1P4dx", "withCSS", "iux_1P4dx_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
