{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framer.com/m/framer/audio-assets.js@0.2.0", "ssg:https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/kDypoRR2B1GRROQ0uGdY/Audio.js", "ssg:https://framerusercontent.com/modules/6D2YvylxH3mbTvqd2mlv/Q2UonhXIEiTJYQe45tIb/F5ZuO9TC7.js", "ssg:https://framerusercontent.com/modules/njenIqtshAHUo4cktnkS/oRIxY57hCH4n4vYZPin1/KbzleoWWK.js", "ssg:https://framerusercontent.com/modules/4nvUc5ltafvcttdtnF88/Xn5274g7wWrq8tbXsXfK/DXUYrbVWs.js", "ssg:https://framerusercontent.com/modules/1LCrsZF2RtvQ9Gzepww0/HYbl9DBRUR5lrKcFGUum/bCf7CMwoS.js", "ssg:https://framerusercontent.com/modules/hd4hiLe4GQAThH3UAbJF/52ppWkajgvp4Q7myK98O/RlhZ9SOvj.js", "ssg:https://framerusercontent.com/modules/yBEv9Ijzhnsrh6a2gzXz/pzMaNA2MlCLxtFltcWLU/JiQV64msE.js", "ssg:https://framerusercontent.com/modules/zVjYwryPCLA1fEtmqLdX/7VXuzBjpM3v7VT47Vbdu/b2IKiGNOZ.js", "ssg:https://framerusercontent.com/modules/y6VdN8cS3oEHvwsJU4qB/kWQEPj8970YKOVtQhY59/VodD0VKf9.js", "ssg:https://framerusercontent.com/modules/2N9OebGq0oQMavHHWNiO/9GdsXZbhg7TjyY6GFPWl/LBtgo2SmF.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { motion } from \"framer\";\nexport function PlayIcon(props) {\n    return(/*#__PURE__*/ _jsx(motion.svg, {\n        ...props,\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 16 16\",\n        children: /*#__PURE__*/ _jsx(\"path\", {\n            d: \"M 5.379 1.292 C 4.968 1.033 4.449 1.017 4.023 1.251 C 3.598 1.486 3.334 1.933 3.333 2.419 L 3.333 13.581 C 3.334 14.067 3.598 14.514 4.023 14.749 C 4.449 14.983 4.968 14.967 5.379 14.708 L 14.215 9.127 C 14.602 8.883 14.836 8.457 14.836 8 C 14.836 7.543 14.602 7.117 14.215 6.873 Z\",\n            fill: \"#333\"\n        })\n    }));\n}\nexport function PauseIcon(props) {\n    return(/*#__PURE__*/ _jsxs(motion.svg, {\n        ...props,\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 16 16\",\n        children: [\n            /*#__PURE__*/ _jsx(\"path\", {\n                d: \"M 3 3 C 3 2.448 3.448 2 4 2 L 6 2 C 6.552 2 7 2.448 7 3 L 7 13 C 7 13.552 6.552 14 6 14 L 4 14 C 3.448 14 3 13.552 3 13 Z\",\n                fill: \"#343434\"\n            }),\n            /*#__PURE__*/ _jsx(\"path\", {\n                d: \"M 9 3 C 9 2.448 9.448 2 10 2 L 12 2 C 12.552 2 13 2.448 13 3 L 13 13 C 13 13.552 12.552 14 12 14 L 10 14 C 9.448 14 9 13.552 9 13 Z\",\n                fill: \"#343434\"\n            })\n        ]\n    }));\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"PauseIcon\":{\"type\":\"reactComponent\",\"name\":\"PauseIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"PlayIcon\":{\"type\":\"reactComponent\",\"name\":\"PlayIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./audio.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useRef,useState,useMemo,useEffect,useCallback}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{MotionValue,animate,useMotionValueEvent}from\"framer-motion\";import{useOnEnter,usePadding,useRadius,paddingControl,borderRadiusControl,useOnChange,containerStyles,secondsToMinutes,useAutoMotionValue,useOnExit,fontStack,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{PlayIcon,PauseIcon}from\"https://framer.com/m/framer/audio-assets.js@0.2.0\";import{Slider}from\"https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js\";const isMotionValue=v=>v instanceof MotionValue;var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));function PlayTime(props){const{currentTime,startTime}=props;const[playTime,setPlayTime]=useState(\"0:00\");useEffect(()=>{setPlayTime(secondsToMinutes(startTime));},[startTime]);useOnChange(currentTime,latest=>{setPlayTime(secondsToMinutes(latest));});return /*#__PURE__*/ _jsx(_Fragment,{children:playTime});}const checkIfPlaying=player=>player.current&&!player.current.paused&&!player.current.ended&&player.current.readyState>2;/**\n * AUDIO\n *\n * Audio player component optimized for smart components.\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Audio(props){const{playing,background,progressColor,trackHeight,gap,trackColor,srcUrl,srcType,srcFile,loop,font,autoPlay,progress,volume,showTime,showTrack,playPauseCursor,showPlayPause,onTimeUpdate,onMetadata,onPlay,onPause,onEnd,pauseOnExit,onPlayGlobalPauseOption}=props;// Defaults to false, only switches to play if possible\nconst[isPlaying,setIsPlaying]=useState(false);const[duration,setDuration]=useState(0);// Audio element ref and non-state info\nconst player=useRef();const playerInfo=useRef({ready:false,animation:null});// Track progress in ms, always in sync with audio element\nconst trackProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{if(player.current.duration){player.current.currentTime=newValue*player.current.duration;handlePlayStateUpdate(\"motionHook\");}}});const padding=usePadding(props);const borderRadius=useRadius(props);const{fontSize}=useFontControls(props);const shouldPlay=RenderTarget.current()===RenderTarget.preview;const shouldPausePlayers=onPlayGlobalPauseOption===\"pause\";const url=srcType===SrcType.Url?srcUrl:srcFile;const shouldAutoPlay=shouldPlay&&playing;// Sync UI with state of the audio element\n// TODO look into better more performant ways of doing this\nconst handlePlayStateUpdate=useCallback(_=>{var ref,ref1;const currentDuration=player.current.duration;const currentTime=player.current.currentTime;(ref=playerInfo.current)===null||ref===void 0?void 0:(ref1=ref.animation)===null||ref1===void 0?void 0:ref1.stop();if(Math.abs(currentTime-trackProgress.get())>.5){trackProgress.set(currentTime);}if(!shouldPlay)return;const isNowPlaying=checkIfPlaying(player);if(isPlaying!==isNowPlaying)setIsPlaying(isNowPlaying);if(isNowPlaying&&shouldPlay){playerInfo.current.animation=animate(trackProgress,currentDuration,{type:\"tween\",ease:\"linear\",duration:currentDuration-currentTime});}},[shouldPlay,isPlaying]);const pauseAllAudioPlayers=()=>{const audioPlayerElements=document.querySelectorAll(\".framer-audio\");audioPlayerElements.forEach(el=>{el.pause();});};// Always use this for playing audio\n// No logic in here as it is async & can fail\nconst playAudio=()=>{if(shouldPlay)player.current.play().catch(e=>{}) // It's likely fine, swallow error\n;};const pauseAudio=()=>{var ref,ref1;player.current.pause();(ref=playerInfo.current)===null||ref===void 0?void 0:(ref1=ref.animation)===null||ref1===void 0?void 0:ref1.stop();};const handleMetadata=()=>{if(onMetadata)onMetadata({duration:player.current.duration});setDuration(player.current.duration);};const initProgress=()=>{if(!isMotionValue(progress))player.current.currentTime=progress*.01*player.current.duration;};const handleReady=()=>{// This tries to run on every pause\n// We use playerInfo.ready to only call on initial load of a source\nif(!playerInfo.current.ready){if(shouldAutoPlay)playAudio();playerInfo.current.ready=true;initProgress();}};// Handle seek event from slider\nconst handleSeek=val=>{if(player.current.currentTime){player.current.currentTime=val;handlePlayStateUpdate(\"handleSeek\");}};const handleEnd=()=>{if(onEnd)onEnd();};const handlePlayClick=()=>{if(shouldPausePlayers)pauseAllAudioPlayers();playAudio();};// Control audio via props\nuseEffect(()=>{if(shouldPlay){// In preview when prop changes, pause/play\nif(playing===true)playAudio();else pauseAudio();}else{// Only set the state for canvas use\nif(playing===true)setIsPlaying(true);else setIsPlaying(false);}},[playing]);useEffect(()=>{var ref;// Do this in an effect to correct on optimised sites\nif((ref=player.current)===null||ref===void 0?void 0:ref.duration)setDuration(player.current.duration);},[]);// Call event callbacks\nuseEffect(()=>{if(playerInfo.current.ready&&isPlaying&&onPlay)onPlay();else if(playerInfo.current.ready&&onPause)onPause();},[isPlaying]);// Volume Control\nuseEffect(()=>{player.current.volume=volume/100;},[volume]);// Reset ready state when src changes\nuseEffect(()=>{playerInfo.current.ready=false;},[srcFile,srcType,srcUrl]);// Play on navigation\nuseOnEnter(()=>{if(shouldAutoPlay)playAudio();});useOnExit(()=>{if(pauseOnExit)player.current.pause();});useMotionValueEvent(trackProgress,\"change\",val=>{var ref;const progressPercent=((ref=player.current)===null||ref===void 0?void 0:ref.duration)?val/player.current.duration*100:null;if(onTimeUpdate){onTimeUpdate(val,progressPercent,secondsToMinutes(val));}});const iconStyles=useMemo(()=>({marginRight:showTime||showTrack?gap:0,flexShrink:0,cursor:playPauseCursor}),[playPauseCursor,showTime,showTrack,gap]);return /*#__PURE__*/ _jsxs(\"div\",{style:{...containerStyles,position:\"relative\",overflow:\"hidden\",background,padding,borderRadius},children:[/*#__PURE__*/ _jsx(\"audio\",{src:url,loop:loop,className:\"framer-audio\",ref:player,preload:\"metadata\",autoPlay:shouldAutoPlay,onLoadedMetadata:handleMetadata,onCanPlayThrough:handleReady,// Listen to all events for status changes\nonPlaying:()=>handlePlayStateUpdate(\"playingEvent\"),onPlay:()=>handlePlayStateUpdate(\"playEvent\"),onSeeked:()=>handlePlayStateUpdate(\"seekEvent\"),onPause:()=>handlePlayStateUpdate(\"pauseEvent\"),onEnded:()=>handleEnd()}),showPlayPause&&/*#__PURE__*/ _jsx(_Fragment,{children:isPlaying?/*#__PURE__*/ _jsx(PauseIcon,{width:16,whileTap:{scale:.9},onClick:()=>pauseAudio(),style:iconStyles,\"aria-label\":\"pause audio\"}):/*#__PURE__*/ _jsx(PlayIcon,{width:16,whileTap:{scale:.9},onClick:handlePlayClick,style:iconStyles,\"aria-label\":\"play audio\"})}),showTime&&/*#__PURE__*/ _jsxs(\"p\",{style:{userSelect:\"none\",color:\"#333\",fontWeight:500,letterSpacing:-.25,margin:0,flexShrink:0,fontFamily:fontStack,fontVariantNumeric:\"tabular-nums\",marginRight:showTrack?gap:0,...font},children:[/*#__PURE__*/ _jsx(PlayTime,{startTime:duration*(isMotionValue(progress)?progress.get():progress*.01),currentTime:trackProgress}),/*#__PURE__*/ _jsx(\"span\",{style:{padding:\"0 2px\"},children:\"/\"}),duration>0?secondsToMinutes(duration):\"1:34\"]}),showTrack&&/*#__PURE__*/ _jsx(Slider,{style:{width:\"100%\"},value:trackProgress,fillColor:progressColor,knobSetting:\"Hover\",shadow:`rgba(0,0,0,0)`,knobSize:10,knobColor:progressColor,onChange:handleSeek,shouldAnimateChange:false,min:0,max:duration,trackColor:trackColor})]});}Audio.defaultProps={background:\"#EBEBEB\",trackColor:\"#FFFFFF\",font:{fontSize:12},progressColor:\"#333333\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",srcType:SrcType.Url,pauseOnExit:true,borderRadius:8,padding:15,progress:0,volume:25,loop:false,playing:true,autoPlay:true,showTime:true,showTrack:true,showPlayPause:true,onPlayGlobalPauseOption:\"continue\",trackHeight:4,gap:15,height:50,width:240};addPropertyControls(Audio,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\".../example.mp4\",hidden(props){return props.srcType===SrcType.Video;}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\",\"mp3\",\"wav\",\"m4a\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{title:\"Playing\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// autoPlay: {\n//     type: ControlType.Boolean,\n//     title: \"Autoplay\",\n//     enabledTitle: \"Yes\",\n//     disabledTitle: \"No\",\n// },\nprogress:{title:\"Progress\",type:ControlType.Number,max:100,min:0,unit:\"%\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\"},progressColor:{title:\"Progress\",type:ControlType.Color,defaultValue:Audio.defaultProps.progressColor},trackColor:{title:\"Track\",type:ControlType.Color,defaultValue:Audio.defaultProps.trackColor},background:{title:\"Player\",type:ControlType.Color,defaultValue:Audio.defaultProps.background},font:{title:\"Font\",// @ts-ignore \u2013 Internal\ntype:ControlType.Font,displayFontSize:true},...paddingControl,...borderRadiusControl,gap:{type:ControlType.Number,min:0,max:100,displayStepper:true},showPlayPause:{type:ControlType.Boolean,title:\"Play/Pause\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},playPauseCursor:{type:ControlType.Enum,title:\"Cursor\",options:[\"default\",\"pointer\"],optionTitles:[\"Default\",\"Pointer\"],defaultValue:\"default\",hidden(props){return!props.showPlayPause;}},showTrack:{type:ControlType.Boolean,title:\"Track\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTime:{type:ControlType.Boolean,title:\"Time\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},pauseOnExit:{type:ControlType.Boolean,title:\"On Leave\",enabledTitle:\"Pause\",disabledTitle:\"Continue\"},onPlayGlobalPauseOption:{type:ControlType.Enum,title:\"On Play\",options:[\"continue\",\"pause\"],optionTitles:[\"Continue All\",\"Pause All\"]},onPlay:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler},onTimeUpdate:{type:ControlType.EventHandler}});const trackStyle={borderRadius:10,width:\"100%\",overflow:\"hidden\"};const trackParentStyle={position:\"relative\",border:\"1px solid red\",display:\"flex\",alignItems:\"center\",height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Audio\":{\"type\":\"reactComponent\",\"name\":\"Audio\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Audio.map", "// Generated by Framer (71a06be)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/kDypoRR2B1GRROQ0uGdY/Audio.js\";import AudioPlay from\"https://framerusercontent.com/modules/1bo7fBcM8Z89lKJnKFXN/0FoikSau2wwF7zWoIpWX/XzhEfsN9U.js\";const AudioPlayFonts=getFonts(AudioPlay);const ImageWithFX=withFX(Image);const AudioFonts=getFonts(Audio);const cycleOrder=[\"sDeOjDzyo\",\"dkVJil1Lf\"];const serializationHash=\"framer-IRWoY\";const variantClassNames={dkVJil1Lf:\"framer-v-mmzdzw\",sDeOjDzyo:\"framer-v-p5abke\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Sound off\":\"sDeOjDzyo\",\"Sound on\":\"dkVJil1Lf\"};const getProps=({click,height,id,image,nameSample,sample,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,eEmqgQIzY:image!==null&&image!==void 0?image:props.eEmqgQIzY,O3eRyukny:(_ref=nameSample!==null&&nameSample!==void 0?nameSample:props.O3eRyukny)!==null&&_ref!==void 0?_ref:\"Audio Sample 1\",Qd0vg9Zj2:click!==null&&click!==void 0?click:props.Qd0vg9Zj2,UdytUfbmx:(_ref1=sample!==null&&sample!==void 0?sample:props.UdytUfbmx)!==null&&_ref1!==void 0?_ref1:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"sDeOjDzyo\"};};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,UdytUfbmx,O3eRyukny,Qd0vg9Zj2,eEmqgQIzY,T0IZ3RxW7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sDeOjDzyo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mbryzm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Qd0vg9Zj2){const res=await Qd0vg9Zj2(...args);if(res===false)return false;}});const AXaZw2eon15vduvm=activeVariantCallback(async(...args)=>{if(T0IZ3RxW7){const res=await T0IZ3RxW7(...args);if(res===false)return false;}setVariant(\"yO0j3CS0e\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p5abke\",className,classNames),\"data-framer-name\":\"Sound off\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sDeOjDzyo\",onTap:onTap1mbryzm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3), inset 0px 1px 0px 0px rgba(228, 234, 237, 0.1)\",...style},variants:{dkVJil1Lf:{backgroundColor:\"var(--token-91c5cd65-a37e-4bc9-bdf9-f2bed8e641ab, rgb(234, 187, 22))\"}},...addPropertyOverrides({dkVJil1Lf:{\"data-framer-name\":\"Sound on\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jz6qgt\",layoutDependency:layoutDependency,layoutId:\"PAp4R4OwU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"40px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n0knda-container\",layoutDependency:layoutDependency,layoutId:\"amNgZQ3yK-container\",children:/*#__PURE__*/_jsx(AudioPlay,{AXaZw2eon:AXaZw2eon15vduvm,height:\"100%\",id:\"amNgZQ3yK\",layoutId:\"amNgZQ3yK\",style:{height:\"100%\",width:\"100%\"},variant:\"tgRzhspBf\",width:\"100%\",...addPropertyOverrides({dkVJil1Lf:{variant:\"U3RhKQ3PN\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:1001,pixelWidth:1500,sizes:\"34px\",...toResponsiveImage(eEmqgQIzY)},className:\"framer-1k07xyi\",layoutDependency:layoutDependency,layoutId:\"ZCcDtd0Bt\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3), 0px 0px 0px 1px rgba(228, 234, 237, 0.3)\"},...addPropertyOverrides({dkVJil1Lf:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18rupv2-container\",layoutDependency:layoutDependency,layoutId:\"AbLLMPHGS-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Audio,{background:\"rgb(235, 235, 235)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,font:{},gap:15,height:\"100%\",id:\"AbLLMPHGS\",isMixedBorderRadius:false,layoutId:\"AbLLMPHGS\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,playPauseCursor:\"default\",progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcType:\"URL\",srcUrl:UdytUfbmx,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,trackColor:\"rgb(255, 255, 255)\",volume:100,width:\"100%\",...addPropertyOverrides({dkVJil1Lf:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1830zdx\",layoutDependency:layoutDependency,layoutId:\"y3cBXZ5Jn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255)))\"},children:\"Audio Sample 1\"})}),className:\"framer-sxb2o1\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"EnyhE9SnT\",style:{\"--extracted-r6o4lv\":\"var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:O3eRyukny,variants:{dkVJil1Lf:{\"--extracted-r6o4lv\":\"var(--token-57f65919-bcc7-439a-9f49-6b8dc1cefcf0, rgb(14, 15, 18))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dkVJil1Lf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-57f65919-bcc7-439a-9f49-6b8dc1cefcf0, rgb(14, 15, 18)))\"},children:\"Audio Sample 1\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IRWoY.framer-ixtxko, .framer-IRWoY .framer-ixtxko { display: block; }\",\".framer-IRWoY.framer-p5abke { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; width: 534px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IRWoY .framer-jz6qgt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IRWoY .framer-1n0knda-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-IRWoY .framer-1k07xyi { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 34px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IRWoY .framer-18rupv2-container { flex: none; height: 50px; left: calc(50.20242914979759% - 240px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 240px; z-index: 0; }\",\".framer-IRWoY .framer-1830zdx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IRWoY .framer-sxb2o1 { flex: none; height: auto; max-width: 900px; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IRWoY.framer-p5abke, .framer-IRWoY .framer-jz6qgt, .framer-IRWoY .framer-1k07xyi, .framer-IRWoY .framer-1830zdx { gap: 0px; } .framer-IRWoY.framer-p5abke > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-IRWoY.framer-p5abke > :first-child, .framer-IRWoY .framer-1830zdx > :first-child { margin-top: 0px; } .framer-IRWoY.framer-p5abke > :last-child, .framer-IRWoY .framer-1830zdx > :last-child { margin-bottom: 0px; } .framer-IRWoY .framer-jz6qgt > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-IRWoY .framer-jz6qgt > :first-child, .framer-IRWoY .framer-1k07xyi > :first-child { margin-left: 0px; } .framer-IRWoY .framer-jz6qgt > :last-child, .framer-IRWoY .framer-1k07xyi > :last-child { margin-right: 0px; } .framer-IRWoY .framer-1k07xyi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IRWoY .framer-1830zdx > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 534\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dkVJil1Lf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UdytUfbmx\":\"sample\",\"O3eRyukny\":\"nameSample\",\"Qd0vg9Zj2\":\"click\",\"eEmqgQIzY\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF5ZuO9TC7=withCSS(Component,css,\"framer-IRWoY\");export default FramerF5ZuO9TC7;FramerF5ZuO9TC7.displayName=\"Audio/Playlist Item\";FramerF5ZuO9TC7.defaultProps={height:70,width:534};addPropertyControls(FramerF5ZuO9TC7,{variant:{options:[\"sDeOjDzyo\",\"dkVJil1Lf\"],optionTitles:[\"Sound off\",\"Sound on\"],title:\"Variant\",type:ControlType.Enum},UdytUfbmx:{defaultValue:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",placeholder:\".../example.mp4\",title:\"Sample\",type:ControlType.String},O3eRyukny:{defaultValue:\"Audio Sample 1\",displayTextArea:false,title:\"Name Sample\",type:ControlType.String},Qd0vg9Zj2:{title:\"Click\",type:ControlType.EventHandler},eEmqgQIzY:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerF5ZuO9TC7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...AudioPlayFonts,...AudioFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF5ZuO9TC7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"70\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dkVJil1Lf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"UdytUfbmx\\\":\\\"sample\\\",\\\"O3eRyukny\\\":\\\"nameSample\\\",\\\"Qd0vg9Zj2\\\":\\\"click\\\",\\\"eEmqgQIzY\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"534\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F5ZuO9TC7.map", "// Generated by Framer (71a06be)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AudioPlaylistItem from\"https://framerusercontent.com/modules/6D2YvylxH3mbTvqd2mlv/Q2UonhXIEiTJYQe45tIb/F5ZuO9TC7.js\";const AudioPlaylistItemFonts=getFonts(AudioPlaylistItem);const cycleOrder=[\"CQVwVWnIv\",\"FeJ6ZqV6l\",\"zN65qkXUY\",\"wN1S4ln4E\",\"trxJ6na26\",\"woLz3Sku7\"];const serializationHash=\"framer-sbgyi\";const variantClassNames={CQVwVWnIv:\"framer-v-1hsqumd\",FeJ6ZqV6l:\"framer-v-aqwu2w\",trxJ6na26:\"framer-v-f4n3km\",wN1S4ln4E:\"framer-v-b3kdj4\",woLz3Sku7:\"framer-v-1szd9yf\",zN65qkXUY:\"framer-v-1tqu7iy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"All off\":\"CQVwVWnIv\",\"Play 1\":\"FeJ6ZqV6l\",\"Play 2\":\"zN65qkXUY\",\"Play 3\":\"wN1S4ln4E\",\"Play 4\":\"trxJ6na26\",\"Play 5\":\"woLz3Sku7\"};const getProps=({height,id,sample1Image,sample1Name,sample1URL,sample2Image,sample2Name,sample2URL,sample3Image,sample3Name,sample3URL,sample4Name,sample4URL,sample5Name,sample5URL,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9,_ref10;return{...props,DA1qqIxB9:sample2Image!==null&&sample2Image!==void 0?sample2Image:props.DA1qqIxB9,EM3MzG3sX:(_ref=sample2Name!==null&&sample2Name!==void 0?sample2Name:props.EM3MzG3sX)!==null&&_ref!==void 0?_ref:\"Song Title (Prod. by KXVI)\",eqRSCl69j:sample1Image!==null&&sample1Image!==void 0?sample1Image:props.eqRSCl69j,FHEy_iHJg:(_ref1=sample4Name!==null&&sample4Name!==void 0?sample4Name:props.FHEy_iHJg)!==null&&_ref1!==void 0?_ref1:\"Song Title (Prod. by DJ Pain 1)\",gbQHpS2qA:(_ref2=sample5Name!==null&&sample5Name!==void 0?sample5Name:props.gbQHpS2qA)!==null&&_ref2!==void 0?_ref2:\"Song Title (Prod. by Busy Works Beats)\",hcogW6yay:(_ref3=sample1URL!==null&&sample1URL!==void 0?sample1URL:props.hcogW6yay)!==null&&_ref3!==void 0?_ref3:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Washing_Drum_Break_80bpm.wav?v=1718957062\",Hw6WfsiHd:(_ref4=sample4URL!==null&&sample4URL!==void 0?sample4URL:props.Hw6WfsiHd)!==null&&_ref4!==void 0?_ref4:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_NY_Drum_Break_90bpm.wav?v=1718957009 \",LUwg0hvt9:(_ref5=sample1Name!==null&&sample1Name!==void 0?sample1Name:props.LUwg0hvt9)!==null&&_ref5!==void 0?_ref5:\"Song TItle (Prod. by Kato)\",NNZ559RGG:sample3Image!==null&&sample3Image!==void 0?sample3Image:props.NNZ559RGG,QfK9LmN_h:(_ref6=sample2URL!==null&&sample2URL!==void 0?sample2URL:props.QfK9LmN_h)!==null&&_ref6!==void 0?_ref6:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Super_Drum_Break_94bpm.wav?v=1718959251\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"CQVwVWnIv\",WjrbXvOIi:(_ref8=sample3URL!==null&&sample3URL!==void 0?sample3URL:props.WjrbXvOIi)!==null&&_ref8!==void 0?_ref8:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Wet_Plate_Drum_Break_80bpm.wav?v=1718959230\",yffkUQphU:(_ref9=sample5URL!==null&&sample5URL!==void 0?sample5URL:props.yffkUQphU)!==null&&_ref9!==void 0?_ref9:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",zh24KX0w1:(_ref10=sample3Name!==null&&sample3Name!==void 0?sample3Name:props.zh24KX0w1)!==null&&_ref10!==void 0?_ref10:\"Song Title (Prod. by Mantra)\"};};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,eqRSCl69j,LUwg0hvt9,hcogW6yay,DA1qqIxB9,EM3MzG3sX,QfK9LmN_h,NNZ559RGG,zh24KX0w1,WjrbXvOIi,FHEy_iHJg,Hw6WfsiHd,gbQHpS2qA,yffkUQphU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CQVwVWnIv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Qd0vg9Zj2uz7itz=activeVariantCallback(async(...args)=>{setVariant(\"FeJ6ZqV6l\");});const Qd0vg9Zj211nu701=activeVariantCallback(async(...args)=>{setVariant(\"CQVwVWnIv\");});const Qd0vg9Zj2ybozz7=activeVariantCallback(async(...args)=>{setVariant(\"zN65qkXUY\");});const Qd0vg9Zj2mxw6eb=activeVariantCallback(async(...args)=>{setVariant(\"wN1S4ln4E\");});const Qd0vg9Zj21kys8kw=activeVariantCallback(async(...args)=>{setVariant(\"trxJ6na26\");});const Qd0vg9Zj2qpbzwq=activeVariantCallback(async(...args)=>{setVariant(\"woLz3Sku7\");});const ref1=React.useRef(null);const visible=isSet(hcogW6yay);const visible1=isSet(QfK9LmN_h);const visible2=isSet(WjrbXvOIi);const visible3=isSet(Hw6WfsiHd);const visible4=isSet(yffkUQphU);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hsqumd\",className,classNames),\"data-framer-name\":\"All off\",layoutDependency:layoutDependency,layoutId:\"CQVwVWnIv\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({FeJ6ZqV6l:{\"data-framer-name\":\"Play 1\"},trxJ6na26:{\"data-framer-name\":\"Play 4\"},wN1S4ln4E:{\"data-framer-name\":\"Play 3\"},woLz3Sku7:{\"data-framer-name\":\"Play 5\"},zN65qkXUY:{\"data-framer-name\":\"Play 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xc7drg\",layoutDependency:layoutDependency,layoutId:\"iG1YqelH1\",style:{backgroundColor:\"rgb(19, 20, 23)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 0.6021873017743928px 1.083937143193907px -1.3333333333333333px rgba(0, 0, 0, 0.19097), inset 0px 2.288533303243457px 4.119359945838223px -2.6666666666666665px rgba(0, 0, 0, 0.16567), inset 0px 10px 18px -4px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-14l3jyc\",layoutDependency:layoutDependency,layoutId:\"itys4tRQi\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kpd8sf\",layoutDependency:layoutDependency,layoutId:\"Asnko_h3l\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yg8t6u-container\",layoutDependency:layoutDependency,layoutId:\"lmv3TUK2q-container\",children:/*#__PURE__*/_jsx(AudioPlaylistItem,{eEmqgQIzY:toResponsiveImage(eqRSCl69j),height:\"100%\",id:\"lmv3TUK2q\",layoutId:\"lmv3TUK2q\",O3eRyukny:LUwg0hvt9,Qd0vg9Zj2:Qd0vg9Zj2uz7itz,style:{width:\"100%\"},UdytUfbmx:hcogW6yay,variant:\"sDeOjDzyo\",width:\"100%\",...addPropertyOverrides({FeJ6ZqV6l:{Qd0vg9Zj2:Qd0vg9Zj211nu701,variant:\"dkVJil1Lf\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tyerlb-container\",layoutDependency:layoutDependency,layoutId:\"mdCQp9rny-container\",children:/*#__PURE__*/_jsx(AudioPlaylistItem,{eEmqgQIzY:toResponsiveImage(DA1qqIxB9),height:\"100%\",id:\"mdCQp9rny\",layoutId:\"mdCQp9rny\",O3eRyukny:EM3MzG3sX,Qd0vg9Zj2:Qd0vg9Zj2ybozz7,style:{width:\"100%\"},UdytUfbmx:QfK9LmN_h,variant:\"sDeOjDzyo\",width:\"100%\",...addPropertyOverrides({zN65qkXUY:{Qd0vg9Zj2:Qd0vg9Zj211nu701,variant:\"dkVJil1Lf\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jupux3-container\",layoutDependency:layoutDependency,layoutId:\"XqGl2ru9N-container\",children:/*#__PURE__*/_jsx(AudioPlaylistItem,{eEmqgQIzY:toResponsiveImage(NNZ559RGG),height:\"100%\",id:\"XqGl2ru9N\",layoutId:\"XqGl2ru9N\",O3eRyukny:zh24KX0w1,Qd0vg9Zj2:Qd0vg9Zj2mxw6eb,style:{width:\"100%\"},UdytUfbmx:WjrbXvOIi,variant:\"sDeOjDzyo\",width:\"100%\",...addPropertyOverrides({wN1S4ln4E:{Qd0vg9Zj2:Qd0vg9Zj211nu701,variant:\"dkVJil1Lf\"}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18trnpi-container\",layoutDependency:layoutDependency,layoutId:\"i52AJnHOC-container\",children:/*#__PURE__*/_jsx(AudioPlaylistItem,{height:\"100%\",id:\"i52AJnHOC\",layoutId:\"i52AJnHOC\",O3eRyukny:FHEy_iHJg,Qd0vg9Zj2:Qd0vg9Zj21kys8kw,style:{width:\"100%\"},UdytUfbmx:Hw6WfsiHd,variant:\"sDeOjDzyo\",width:\"100%\",...addPropertyOverrides({trxJ6na26:{Qd0vg9Zj2:Qd0vg9Zj211nu701,variant:\"dkVJil1Lf\"}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkgr4j-container\",layoutDependency:layoutDependency,layoutId:\"vUwm6HlRY-container\",children:/*#__PURE__*/_jsx(AudioPlaylistItem,{height:\"100%\",id:\"vUwm6HlRY\",layoutId:\"vUwm6HlRY\",O3eRyukny:gbQHpS2qA,Qd0vg9Zj2:Qd0vg9Zj2qpbzwq,style:{width:\"100%\"},UdytUfbmx:yffkUQphU,variant:\"sDeOjDzyo\",width:\"100%\",...addPropertyOverrides({woLz3Sku7:{Qd0vg9Zj2:Qd0vg9Zj211nu701,variant:\"dkVJil1Lf\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sbgyi.framer-1tt7jml, .framer-sbgyi .framer-1tt7jml { display: block; }\",\".framer-sbgyi.framer-1hsqumd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 574px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sbgyi .framer-1xc7drg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sbgyi .framer-14l3jyc { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-sbgyi .framer-kpd8sf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-sbgyi .framer-yg8t6u-container, .framer-sbgyi .framer-1tyerlb-container, .framer-sbgyi .framer-jupux3-container, .framer-sbgyi .framer-18trnpi-container, .framer-sbgyi .framer-1rkgr4j-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sbgyi.framer-1hsqumd, .framer-sbgyi .framer-1xc7drg, .framer-sbgyi .framer-kpd8sf { gap: 0px; } .framer-sbgyi.framer-1hsqumd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sbgyi.framer-1hsqumd > :first-child, .framer-sbgyi .framer-1xc7drg > :first-child, .framer-sbgyi .framer-kpd8sf > :first-child { margin-top: 0px; } .framer-sbgyi.framer-1hsqumd > :last-child, .framer-sbgyi .framer-1xc7drg > :last-child, .framer-sbgyi .framer-kpd8sf > :last-child { margin-bottom: 0px; } .framer-sbgyi .framer-1xc7drg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sbgyi .framer-kpd8sf > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 386\n * @framerIntrinsicWidth 574\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FeJ6ZqV6l\":{\"layout\":[\"fixed\",\"auto\"]},\"zN65qkXUY\":{\"layout\":[\"fixed\",\"auto\"]},\"wN1S4ln4E\":{\"layout\":[\"fixed\",\"auto\"]},\"trxJ6na26\":{\"layout\":[\"fixed\",\"auto\"]},\"woLz3Sku7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eqRSCl69j\":\"sample1Image\",\"LUwg0hvt9\":\"sample1Name\",\"hcogW6yay\":\"sample1URL\",\"DA1qqIxB9\":\"sample2Image\",\"EM3MzG3sX\":\"sample2Name\",\"QfK9LmN_h\":\"sample2URL\",\"NNZ559RGG\":\"sample3Image\",\"zh24KX0w1\":\"sample3Name\",\"WjrbXvOIi\":\"sample3URL\",\"FHEy_iHJg\":\"sample4Name\",\"Hw6WfsiHd\":\"sample4URL\",\"gbQHpS2qA\":\"sample5Name\",\"yffkUQphU\":\"sample5URL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKbzleoWWK=withCSS(Component,css,\"framer-sbgyi\");export default FramerKbzleoWWK;FramerKbzleoWWK.displayName=\"Audio/Audio player\";FramerKbzleoWWK.defaultProps={height:386,width:574};addPropertyControls(FramerKbzleoWWK,{variant:{options:[\"CQVwVWnIv\",\"FeJ6ZqV6l\",\"zN65qkXUY\",\"wN1S4ln4E\",\"trxJ6na26\",\"woLz3Sku7\"],optionTitles:[\"All off\",\"Play 1\",\"Play 2\",\"Play 3\",\"Play 4\",\"Play 5\"],title:\"Variant\",type:ControlType.Enum},eqRSCl69j:{title:\"Sample #1 image\",type:ControlType.ResponsiveImage},LUwg0hvt9:{defaultValue:\"Song TItle (Prod. by Kato)\",displayTextArea:false,title:\"Sample #1 Name\",type:ControlType.String},hcogW6yay:{defaultValue:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Washing_Drum_Break_80bpm.wav?v=1718957062\",placeholder:\".../example.mp4\",title:\"Sample #1 URL\",type:ControlType.String},DA1qqIxB9:{title:\"Sample #2 image\",type:ControlType.ResponsiveImage},EM3MzG3sX:{defaultValue:\"Song Title (Prod. by KXVI)\",displayTextArea:false,title:\"Sample #2 Name\",type:ControlType.String},QfK9LmN_h:{defaultValue:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Super_Drum_Break_94bpm.wav?v=1718959251\",placeholder:\".../example.mp4\",title:\"Sample #2 URL\",type:ControlType.String},NNZ559RGG:{title:\"Sample #3 image\",type:ControlType.ResponsiveImage},zh24KX0w1:{defaultValue:\"Song Title (Prod. by Mantra)\",displayTextArea:false,title:\"Sample #3 name\",type:ControlType.String},WjrbXvOIi:{defaultValue:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_Wet_Plate_Drum_Break_80bpm.wav?v=1718959230\",placeholder:\".../example.mp4\",title:\"Sample #3 URL\",type:ControlType.String},FHEy_iHJg:{defaultValue:\"Song Title (Prod. by DJ Pain 1)\",displayTextArea:false,title:\"Sample #4 name\",type:ControlType.String},Hw6WfsiHd:{defaultValue:\"https://cdn.shopify.com/s/files/1/0381/5188/0835/files/Jay_Cactus_-_NY_Drum_Break_90bpm.wav?v=1718957009 \",placeholder:\".../example.mp4\",title:\"Sample #4 URL\",type:ControlType.String},gbQHpS2qA:{defaultValue:\"Song Title (Prod. by Busy Works Beats)\",displayTextArea:false,title:\"Sample #5 Name\",type:ControlType.String},yffkUQphU:{defaultValue:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",placeholder:\".../example.mp4\",title:\"Sample #5 URL\",type:ControlType.String}});addFonts(FramerKbzleoWWK,[{explicitInter:true,fonts:[]},...AudioPlaylistItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKbzleoWWK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FeJ6ZqV6l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zN65qkXUY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wN1S4ln4E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"trxJ6na26\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"woLz3Sku7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"eqRSCl69j\\\":\\\"sample1Image\\\",\\\"LUwg0hvt9\\\":\\\"sample1Name\\\",\\\"hcogW6yay\\\":\\\"sample1URL\\\",\\\"DA1qqIxB9\\\":\\\"sample2Image\\\",\\\"EM3MzG3sX\\\":\\\"sample2Name\\\",\\\"QfK9LmN_h\\\":\\\"sample2URL\\\",\\\"NNZ559RGG\\\":\\\"sample3Image\\\",\\\"zh24KX0w1\\\":\\\"sample3Name\\\",\\\"WjrbXvOIi\\\":\\\"sample3URL\\\",\\\"FHEy_iHJg\\\":\\\"sample4Name\\\",\\\"Hw6WfsiHd\\\":\\\"sample4URL\\\",\\\"gbQHpS2qA\\\":\\\"sample5Name\\\",\\\"yffkUQphU\\\":\\\"sample5URL\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"574\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"386\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,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/cLEto5TP4UjEtRR7hHOK/8PbZro530cTaO75oJYlx/oqZ_lfAvF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lFhVsbqgUMb4CWuAmddm/ypQ8NqNr8VZpQMTgKw0L/PliPf6PbE.js\";import AudioAudioPlayer from\"https://framerusercontent.com/modules/njenIqtshAHUo4cktnkS/oRIxY57hCH4n4vYZPin1/KbzleoWWK.js\";import Rivit from\"https://framerusercontent.com/modules/ltlHxEUC7OBjdybu5usT/Sj0H9kJo9TLMYOyF4jLm/peDQfUhI7.js\";const AudioAudioPlayerFonts=getFonts(AudioAudioPlayer);const RivitFonts=getFonts(Rivit);const cycleOrder=[\"RisTnONVu\",\"I2P2rv9B_\"];const serializationHash=\"framer-fciQq\";const variantClassNames={I2P2rv9B_:\"framer-v-1ba7s04\",RisTnONVu:\"framer-v-a0aan9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"RisTnONVu\",Mobile:\"I2P2rv9B_\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,R8Qaqjknr:(_ref=padding!==null&&padding!==void 0?padding:props.R8Qaqjknr)!==null&&_ref!==void 0?_ref:\"16px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"RisTnONVu\"};};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,R8Qaqjknr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RisTnONVu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a0aan9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RisTnONVu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c7a56416-886e-4a25-a64b-0fee3c77e9e4, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({I2P2rv9B_:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dudgma\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"x15otG374\",style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.42474), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.37499), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.1475)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rpo2d6\",\"data-framer-name\":\"Player\",layoutDependency:layoutDependency,layoutId:\"F2SwR53dH\",style:{backgroundColor:\"rgb(19, 20, 23)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 0.6021873017743928px 1.083937143193907px -1.3333333333333333px rgba(0, 0, 0, 0.19097), inset 0px 2.288533303243457px 4.119359945838223px -2.6666666666666665px rgba(0, 0, 0, 0.16567), inset 0px 10px 18px -4px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-ppmppu\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"BuOUpqcjW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.2}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 24px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qcp6bn-container\",\"data-framer-name\":\"Audio player\",layoutDependency:layoutDependency,layoutId:\"v0xHhhZ2A-container\",name:\"Audio player\",children:/*#__PURE__*/_jsx(AudioAudioPlayer,{DA1qqIxB9:addImageAlt({src:\"https://framerusercontent.com/images/N6EM7w9dAGfo3BkxdDACTWnnAc.jpg\"},\"\"),EM3MzG3sX:\"Ordinary\",eqRSCl69j:addImageAlt({src:\"https://framerusercontent.com/images/nf3he2fCMl4eQ9Ts0BIIX3rXE.jpg\"},\"\"),FHEy_iHJg:\"\",gbQHpS2qA:\"\",hcogW6yay:\"https://cdn.shopify.com/s/files/1/0638/8731/1077/files/Busy-obsolete_nor_mute_bb_major_158bpm.wav?v=1722503902\",height:\"100%\",Hw6WfsiHd:\"\",id:\"v0xHhhZ2A\",layoutId:\"v0xHhhZ2A\",LUwg0hvt9:\"Obsolete\",name:\"Audio player\",NNZ559RGG:addImageAlt({src:\"https://framerusercontent.com/images/UesxqKlrywCwYN2MWTQNpFcmOhQ.jpg\"},\"\"),QfK9LmN_h:\"https://cdn.shopify.com/s/files/1/0638/8731/1077/files/Mantra-ordinary_nor_brief_bb_major_140bpm.wav?v=1722503901\",style:{width:\"100%\"},variant:\"CQVwVWnIv\",width:\"100%\",WjrbXvOIi:\"https://cdn.shopify.com/s/files/1/0638/8731/1077/files/Busy-shivering_nor_excellent_c__minor_155bpm.wav?v=1722503900\",yffkUQphU:\"\",zh24KX0w1:\"Shivering\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14op4y1\",layoutDependency:layoutDependency,layoutId:\"QOlvjHTVb\",style:{\"--11nl1nm\":numberToPixelString(R8Qaqjknr),borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-jbogn2\",\"data-styles-preset\":\"oqZ_lfAvF\",children:\"Generate an infinite amount of ideas\"})}),className:\"framer-hanvvz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y3auQ1q0_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b6z7w7\",\"data-styles-preset\":\"PliPf6PbE\",children:\"Through cutting-edge AI technology, we've created generative models that capture the distinctive musical signatures of iconic producers.\"})}),className:\"framer-jexajl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lX9fJhwc1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cnao5v-container\",layoutDependency:layoutDependency,layoutId:\"LRSv8rbZE-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"LRSv8rbZE\",layoutId:\"LRSv8rbZE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2s5sn4-container\",layoutDependency:layoutDependency,layoutId:\"PXPmDMiY3-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"PXPmDMiY3\",layoutId:\"PXPmDMiY3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1rbz8-container\",layoutDependency:layoutDependency,layoutId:\"WcjMKNWEn-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"WcjMKNWEn\",layoutId:\"WcjMKNWEn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dmaurv-container\",layoutDependency:layoutDependency,layoutId:\"AHlXV_IC7-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"AHlXV_IC7\",layoutId:\"AHlXV_IC7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fciQq.framer-ipnred, .framer-fciQq .framer-ipnred { display: block; }\",\".framer-fciQq.framer-a0aan9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 485px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fciQq .framer-dudgma { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fciQq .framer-rpo2d6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fciQq .framer-ppmppu { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fciQq .framer-1qcp6bn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-fciQq .framer-14op4y1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fciQq .framer-hanvvz, .framer-fciQq .framer-jexajl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fciQq .framer-1cnao5v-container { flex: none; height: 6px; left: 6px; position: absolute; top: 6px; width: 6px; z-index: 1; }\",\".framer-fciQq .framer-2s5sn4-container { flex: none; height: 6px; position: absolute; right: 6px; top: 6px; width: 6px; z-index: 1; }\",\".framer-fciQq .framer-y1rbz8-container { bottom: 6px; flex: none; height: 6px; position: absolute; right: 6px; width: 6px; z-index: 1; }\",\".framer-fciQq .framer-dmaurv-container { bottom: 6px; flex: none; height: 6px; left: 6px; position: absolute; width: 6px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fciQq.framer-a0aan9, .framer-fciQq .framer-dudgma, .framer-fciQq .framer-rpo2d6, .framer-fciQq .framer-14op4y1 { gap: 0px; } .framer-fciQq.framer-a0aan9 > *, .framer-fciQq .framer-rpo2d6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fciQq.framer-a0aan9 > :first-child, .framer-fciQq .framer-dudgma > :first-child, .framer-fciQq .framer-rpo2d6 > :first-child, .framer-fciQq .framer-14op4y1 > :first-child { margin-top: 0px; } .framer-fciQq.framer-a0aan9 > :last-child, .framer-fciQq .framer-dudgma > :last-child, .framer-fciQq .framer-rpo2d6 > :last-child, .framer-fciQq .framer-14op4y1 > :last-child { margin-bottom: 0px; } .framer-fciQq .framer-dudgma > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-fciQq .framer-14op4y1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-fciQq.framer-v-1ba7s04.framer-a0aan9 { height: min-content; }\",\".framer-fciQq.framer-v-1ba7s04 .framer-dudgma { flex: none; height: min-content; }\",\".framer-fciQq.framer-v-1ba7s04 .framer-14op4y1 { padding: var(--11nl1nm); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-fciQq[data-border=\"true\"]::after, .framer-fciQq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 485\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"I2P2rv9B_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"R8Qaqjknr\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDXUYrbVWs=withCSS(Component,css,\"framer-fciQq\");export default FramerDXUYrbVWs;FramerDXUYrbVWs.displayName=\"Audio/Sound\";FramerDXUYrbVWs.defaultProps={height:400,width:485};addPropertyControls(FramerDXUYrbVWs,{variant:{options:[\"RisTnONVu\",\"I2P2rv9B_\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},R8Qaqjknr:{defaultValue:\"16px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerDXUYrbVWs,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...AudioAudioPlayerFonts,...RivitFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDXUYrbVWs\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I2P2rv9B_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"485\",\"framerVariables\":\"{\\\"R8Qaqjknr\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OeVztDOfB\",\"Z085GekDn\"];const serializationHash=\"framer-vw5d8\";const variantClassNames={OeVztDOfB:\"framer-v-1kxin9w\",Z085GekDn:\"framer-v-1w8azug\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"OeVztDOfB\",\"Variant 2\":\"Z085GekDn\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,fgUPP4ile:(_ref=title!==null&&title!==void 0?title:props.fgUPP4ile)!==null&&_ref!==void 0?_ref:\"AB\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"OeVztDOfB\"};};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,fgUPP4ile,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OeVztDOfB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterydst1m=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Z085GekDn\");});const onMouseLeavetwb80f=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"OeVztDOfB\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kxin9w\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OeVztDOfB\",onMouseEnter:onMouseEnterydst1m,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.5), inset 0.2px 0.2px 0px 0.5px rgba(228, 234, 237, 0.4)\",...style},variants:{Z085GekDn:{boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.5), inset 0.2px 0.2px 0px 0.5px rgba(228, 234, 237, 0.47)\"}},...addPropertyOverrides({Z085GekDn:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavetwb80f}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(135, 135, 135, 0.7))\"},children:\"AB\"})}),className:\"framer-1uyju3i\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"ocE5fEZkO\",style:{\"--extracted-r6o4lv\":\"rgba(135, 135, 135, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fgUPP4ile,variants:{Z085GekDn:{\"--extracted-r6o4lv\":\"rgb(191, 191, 191)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Z085GekDn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(191, 191, 191))\"},children:\"AB\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vw5d8.framer-15lbpcb, .framer-vw5d8 .framer-15lbpcb { display: block; }\",\".framer-vw5d8.framer-1kxin9w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 30px; min-width: 30px; padding: 6px; position: relative; width: min-content; }\",\".framer-vw5d8 .framer-1uyju3i { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vw5d8.framer-1kxin9w { gap: 0px; } .framer-vw5d8.framer-1kxin9w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vw5d8.framer-1kxin9w > :first-child { margin-left: 0px; } .framer-vw5d8.framer-1kxin9w > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"30px\",null,\"30px\",null]},\"Z085GekDn\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"30px\",null,\"30px\",null]}}}\n * @framerVariables {\"fgUPP4ile\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbCf7CMwoS=withCSS(Component,css,\"framer-vw5d8\");export default FramerbCf7CMwoS;FramerbCf7CMwoS.displayName=\"Bento/Nob\";FramerbCf7CMwoS.defaultProps={height:30,width:30};addPropertyControls(FramerbCf7CMwoS,{variant:{options:[\"OeVztDOfB\",\"Z085GekDn\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},fgUPP4ile:{defaultValue:\"AB\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerbCf7CMwoS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbCf7CMwoS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"30px\\\",null,\\\"30px\\\",null]},\\\"Z085GekDn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"30px\\\",null,\\\"30px\\\",null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"fgUPP4ile\\\":\\\"title\\\"}\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bCf7CMwoS.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"o3MZ3e7uP\",\"KLt6CO9M8\",\"HJgQX8Jhj\",\"ygjqxmtyu\"];const serializationHash=\"framer-MvgFm\";const variantClassNames={HJgQX8Jhj:\"framer-v-4yb7zb\",KLt6CO9M8:\"framer-v-14ljmq2\",o3MZ3e7uP:\"framer-v-1ohwa5y\",ygjqxmtyu:\"framer-v-16jl13a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={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 Variants=motion(React.Fragment);const humanReadableVariantMap={\"Toggle 1 - left\":\"o3MZ3e7uP\",\"Toggle 1 - right\":\"KLt6CO9M8\",\"Toggle 2 - left\":\"HJgQX8Jhj\",\"Toggle 2 - right\":\"ygjqxmtyu\"};const getProps=({click,click2,height,id,switch1,switch2,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,IxLcT0Jqx:(_ref=switch1!==null&&switch1!==void 0?switch1:props.IxLcT0Jqx)!==null&&_ref!==void 0?_ref:\"KEY/SCALE\",pfOgeBRyy:click2!==null&&click2!==void 0?click2:props.pfOgeBRyy,v1r2udCpL:click!==null&&click!==void 0?click:props.v1r2udCpL,va9rdmGKG:(_ref1=switch2!==null&&switch2!==void 0?switch2:props.va9rdmGKG)!==null&&_ref1!==void 0?_ref1:\"MOODS\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"o3MZ3e7uP\"};};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,IxLcT0Jqx,va9rdmGKG,v1r2udCpL,pfOgeBRyy,FmhCldJVY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o3MZ3e7uP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17uj2zv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(v1r2udCpL){const res=await v1r2udCpL(...args);if(res===false)return false;}if(pfOgeBRyy){const res=await pfOgeBRyy(...args);if(res===false)return false;}});const onTap1dmovm4=activeVariantCallback(async(...args)=>{setVariant(\"obhKTW7kA\");});const onTap1yfv60z=activeVariantCallback(async(...args)=>{if(FmhCldJVY){const res=await FmhCldJVY(...args);if(res===false)return false;}setVariant(\"qoodQOukj\");});const onTapp3xlix=activeVariantCallback(async(...args)=>{if(FmhCldJVY){const res=await FmhCldJVY(...args);if(res===false)return false;}setVariant(\"RsvWZNc_5\");});const onTap11lqis8=activeVariantCallback(async(...args)=>{if(FmhCldJVY){const res=await FmhCldJVY(...args);if(res===false)return false;}setVariant(\"EBkj3kblF\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ohwa5y\",className,classNames),\"data-framer-name\":\"Toggle 1 - left\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"o3MZ3e7uP\",onTap:onTap17uj2zv,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({HJgQX8Jhj:{\"data-framer-name\":\"Toggle 2 - left\"},KLt6CO9M8:{\"data-framer-name\":\"Toggle 1 - right\"},ygjqxmtyu:{\"data-framer-name\":\"Toggle 2 - right\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"KEY/SCALE\"})}),className:\"framer-a47axe\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"JMqqvZdF7\",style:{\"--extracted-r6o4lv\":\"var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IxLcT0Jqx,variants:{KLt6CO9M8:{\"--extracted-r6o4lv\":\"var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135))\"},ygjqxmtyu:{\"--extracted-r6o4lv\":\"var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HJgQX8Jhj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255)))\"},children:\"MAJOR\"})})},KLt6CO9M8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135)))\",\"--framer-text-transform\":\"uppercase\"},children:\"KEY/SCALE\"})})},ygjqxmtyu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135)))\"},children:\"MAJOR\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ha62o\",\"data-framer-name\":\"Toggle Copy 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SwCV6AzTJ\",onTap:onTap1dmovm4,style:{backgroundColor:\"rgb(48, 48, 50)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({HJgQX8Jhj:{onTap:onTapp3xlix},KLt6CO9M8:{onTap:onTap1yfv60z},ygjqxmtyu:{onTap:onTap11lqis8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l2kzqa\",layoutDependency:layoutDependency,layoutId:\"wiZkD51gJ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-91c5cd65-a37e-4bc9-bdf9-f2bed8e641ab, rgb(234, 187, 22))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3), inset 0px 1px 0px 0px rgba(228, 234, 237, 0.5)\"},variants:{HJgQX8Jhj:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(51, 51, 51)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-57f65919-bcc7-439a-9f49-6b8dc1cefcf0, rgb(14, 15, 18))\",boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3)\"},ygjqxmtyu:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(51, 51, 51)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-57f65919-bcc7-439a-9f49-6b8dc1cefcf0, rgb(14, 15, 18))\",boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3)\"}},...addPropertyOverrides({HJgQX8Jhj:{\"data-border\":true},ygjqxmtyu:{\"data-border\":true}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135)))\",\"--framer-text-transform\":\"uppercase\"},children:\"MOODS\"})}),className:\"framer-s2qfgg\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"gSu79sXAq\",style:{\"--extracted-r6o4lv\":\"var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:va9rdmGKG,variants:{KLt6CO9M8:{\"--extracted-r6o4lv\":\"var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255))\"},ygjqxmtyu:{\"--extracted-r6o4lv\":\"var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HJgQX8Jhj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-62d2f679-39bf-4bfd-bbdc-8e37216f7fb4, rgb(135, 135, 135)))\"},children:\"MINOR\"})})},KLt6CO9M8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"MOODS\"})})},ygjqxmtyu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e361e75-afe5-4193-bfd8-be5a1f966a0f, rgb(255, 255, 255)))\"},children:\"MINOR\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MvgFm.framer-zmbv8g, .framer-MvgFm .framer-zmbv8g { display: block; }\",\".framer-MvgFm.framer-1ohwa5y { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MvgFm .framer-a47axe, .framer-MvgFm .framer-s2qfgg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MvgFm .framer-10ha62o { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 27px; justify-content: flex-start; overflow: hidden; padding: 2px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MvgFm .framer-1l2kzqa { aspect-ratio: 1 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 23px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MvgFm.framer-1ohwa5y, .framer-MvgFm .framer-10ha62o { gap: 0px; } .framer-MvgFm.framer-1ohwa5y > *, .framer-MvgFm .framer-10ha62o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MvgFm.framer-1ohwa5y > :first-child, .framer-MvgFm .framer-10ha62o > :first-child { margin-left: 0px; } .framer-MvgFm.framer-1ohwa5y > :last-child, .framer-MvgFm .framer-10ha62o > :last-child { margin-right: 0px; } }\",\".framer-MvgFm.framer-v-14ljmq2 .framer-10ha62o { justify-content: flex-end; }\",\".framer-MvgFm.framer-v-4yb7zb .framer-10ha62o { height: 20px; padding: 4px; width: 32px; }\",\".framer-MvgFm.framer-v-4yb7zb .framer-1l2kzqa, .framer-MvgFm.framer-v-16jl13a .framer-1l2kzqa { width: var(--framer-aspect-ratio-supported, 12px); }\",\".framer-MvgFm.framer-v-16jl13a .framer-10ha62o { height: 20px; justify-content: flex-end; padding: 4px; width: 32px; }\",'.framer-MvgFm[data-border=\"true\"]::after, .framer-MvgFm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KLt6CO9M8\":{\"layout\":[\"auto\",\"auto\"]},\"HJgQX8Jhj\":{\"layout\":[\"auto\",\"auto\"]},\"ygjqxmtyu\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"IxLcT0Jqx\":\"switch1\",\"va9rdmGKG\":\"switch2\",\"v1r2udCpL\":\"click\",\"pfOgeBRyy\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRlhZ9SOvj=withCSS(Component,css,\"framer-MvgFm\");export default FramerRlhZ9SOvj;FramerRlhZ9SOvj.displayName=\"Toggles/Toggle use\";FramerRlhZ9SOvj.defaultProps={height:27,width:186};addPropertyControls(FramerRlhZ9SOvj,{variant:{options:[\"o3MZ3e7uP\",\"KLt6CO9M8\",\"HJgQX8Jhj\",\"ygjqxmtyu\"],optionTitles:[\"Toggle 1 - left\",\"Toggle 1 - right\",\"Toggle 2 - left\",\"Toggle 2 - right\"],title:\"Variant\",type:ControlType.Enum},IxLcT0Jqx:{defaultValue:\"KEY/SCALE\",displayTextArea:false,title:\"Switch 1\",type:ControlType.String},va9rdmGKG:{defaultValue:\"MOODS\",displayTextArea:false,title:\"Switch 2\",type:ControlType.String},v1r2udCpL:{title:\"Click\",type:ControlType.EventHandler},pfOgeBRyy:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerRlhZ9SOvj,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRlhZ9SOvj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"186\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"27\",\"framerVariables\":\"{\\\"IxLcT0Jqx\\\":\\\"switch1\\\",\\\"va9rdmGKG\\\":\\\"switch2\\\",\\\"v1r2udCpL\\\":\\\"click\\\",\\\"pfOgeBRyy\\\":\\\"click2\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KLt6CO9M8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HJgQX8Jhj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ygjqxmtyu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RlhZ9SOvj.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,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/fLBKyunZqom50fxgjnqt/GwL3WQoDtYvSddoio7YE/O1pCU9aLA.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/cLEto5TP4UjEtRR7hHOK/8PbZro530cTaO75oJYlx/oqZ_lfAvF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lFhVsbqgUMb4CWuAmddm/ypQ8NqNr8VZpQMTgKw0L/PliPf6PbE.js\";import BentoNob from\"https://framerusercontent.com/modules/1LCrsZF2RtvQ9Gzepww0/HYbl9DBRUR5lrKcFGUum/bCf7CMwoS.js\";import Rivit from\"https://framerusercontent.com/modules/ltlHxEUC7OBjdybu5usT/Sj0H9kJo9TLMYOyF4jLm/peDQfUhI7.js\";import TogglesToggleUse from\"https://framerusercontent.com/modules/hd4hiLe4GQAThH3UAbJF/52ppWkajgvp4Q7myK98O/RlhZ9SOvj.js\";const TogglesToggleUseFonts=getFonts(TogglesToggleUse);const BentoNobFonts=getFonts(BentoNob);const RivitFonts=getFonts(Rivit);const cycleOrder=[\"Fi0XyvUbe\",\"dgFXEGs8X\"];const serializationHash=\"framer-cmHEp\";const variantClassNames={dgFXEGs8X:\"framer-v-osff3u\",Fi0XyvUbe:\"framer-v-cllal6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Inspire me\":\"dgFXEGs8X\",\"KEY/SCALE\":\"Fi0XyvUbe\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,RiVHJe99F:(_ref=padding!==null&&padding!==void 0?padding:props.RiVHJe99F)!==null&&_ref!==void 0?_ref:\"16px 16px 16px 16px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Fi0XyvUbe\"};};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,RiVHJe99F,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Fi0XyvUbe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const v1r2udCpL1g36ehx=activeVariantCallback(async(...args)=>{setVariant(\"dgFXEGs8X\");});const pfOgeBRyy1er0zm6=activeVariantCallback(async(...args)=>{setVariant(\"Fi0XyvUbe\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"dgFXEGs8X\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"dgFXEGs8X\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cllal6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"KEY/SCALE\",layoutDependency:layoutDependency,layoutId:\"Fi0XyvUbe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c7a56416-886e-4a25-a64b-0fee3c77e9e4, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.42474), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.37499), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.1475)\",...style},...addPropertyOverrides({dgFXEGs8X:{\"data-framer-name\":\"Inspire me\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtkucc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"b_dUMr_NN\",style:{backgroundColor:\"rgb(19, 20, 23)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 0.6021873017743928px 1.083937143193907px -1.3333333333333333px rgba(0, 0, 0, 0.19097), inset 0px 2.288533303243457px 4.119359945838223px -2.6666666666666665px rgba(0, 0, 0, 0.16567), inset 0px 10px 18px -4px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-1gi17t7\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"jA9vPftic\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h54czp\",layoutDependency:layoutDependency,layoutId:\"eUk6L6FvU\",style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.42474), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.37499), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.1475)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w1flsu\",\"data-framer-name\":\"Toggle\",layoutDependency:layoutDependency,layoutId:\"ApESGnMax\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14o0zdd-container\",layoutDependency:layoutDependency,layoutId:\"ZOUu3r2gJ-container\",children:/*#__PURE__*/_jsx(TogglesToggleUse,{height:\"100%\",id:\"ZOUu3r2gJ\",IxLcT0Jqx:\"Key/Scale\",layoutId:\"ZOUu3r2gJ\",v1r2udCpL:v1r2udCpL1g36ehx,va9rdmGKG:\"inspire me\",variant:\"o3MZ3e7uP\",width:\"100%\",...addPropertyOverrides({dgFXEGs8X:{pfOgeBRyy:pfOgeBRyy1er0zm6,variant:\"KLt6CO9M8\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hk0hed\",\"data-framer-name\":\"Keys\",layoutDependency:layoutDependency,layoutId:\"tfcqzLb5g\",style:{backgroundColor:\"rgb(19, 20, 23)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"inset 0px 0.6021873017743928px 1.083937143193907px -1.3333333333333333px rgba(0, 0, 0, 0.19097), inset 0px 2.288533303243457px 4.119359945838223px -2.6666666666666665px rgba(0, 0, 0, 0.16567), inset 0px 10px 18px -4px rgba(0, 0, 0, 0.05)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-24b913-container\",layoutDependency:layoutDependency,layoutId:\"FA_YVGPj2-container\",children:/*#__PURE__*/_jsx(TogglesToggleUse,{height:\"100%\",id:\"FA_YVGPj2\",IxLcT0Jqx:\"MAJOR\",layoutId:\"FA_YVGPj2\",va9rdmGKG:\"MINOR\",variant:\"HJgQX8Jhj\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qvdsxy\",\"data-framer-name\":\"Keys\",layoutDependency:layoutDependency,layoutId:\"Jp7KpQN15\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o7rp7s-container\",layoutDependency:layoutDependency,layoutId:\"op0NxJbOY-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"A\",height:\"100%\",id:\"op0NxJbOY\",layoutId:\"op0NxJbOY\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rqrdl1-container\",layoutDependency:layoutDependency,layoutId:\"fBDalOh_F-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"A#/B#\",height:\"100%\",id:\"fBDalOh_F\",layoutId:\"fBDalOh_F\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amznko-container\",layoutDependency:layoutDependency,layoutId:\"biHFX4Gue-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"B\",height:\"100%\",id:\"biHFX4Gue\",layoutId:\"biHFX4Gue\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vhdhib-container\",layoutDependency:layoutDependency,layoutId:\"VNeeouzXE-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"C\",height:\"100%\",id:\"VNeeouzXE\",layoutId:\"VNeeouzXE\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-151laal-container\",layoutDependency:layoutDependency,layoutId:\"pKiYaYnIg-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"C#/Db\",height:\"100%\",id:\"pKiYaYnIg\",layoutId:\"pKiYaYnIg\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q9gbc6-container\",layoutDependency:layoutDependency,layoutId:\"aINs_48_D-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"D\",height:\"100%\",id:\"aINs_48_D\",layoutId:\"aINs_48_D\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-blzg1d-container\",layoutDependency:layoutDependency,layoutId:\"IDcU9BlLx-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"D#/Eb\",height:\"100%\",id:\"IDcU9BlLx\",layoutId:\"IDcU9BlLx\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3y2w2-container\",layoutDependency:layoutDependency,layoutId:\"teuZqlFJP-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"E\",height:\"100%\",id:\"teuZqlFJP\",layoutId:\"teuZqlFJP\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gl6rhe-container\",layoutDependency:layoutDependency,layoutId:\"J5gn5i3lw-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"F\",height:\"100%\",id:\"J5gn5i3lw\",layoutId:\"J5gn5i3lw\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y078vr-container\",layoutDependency:layoutDependency,layoutId:\"kkd5_BRt1-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"F#/Gb\",height:\"100%\",id:\"kkd5_BRt1\",layoutId:\"kkd5_BRt1\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16xyxqe-container\",layoutDependency:layoutDependency,layoutId:\"Y6L3xn4Z3-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"G\",height:\"100%\",id:\"Y6L3xn4Z3\",layoutId:\"Y6L3xn4Z3\",variant:\"OeVztDOfB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sq2awc-container\",layoutDependency:layoutDependency,layoutId:\"tW99wkgol-container\",children:/*#__PURE__*/_jsx(BentoNob,{fgUPP4ile:\"G#/Ab\",height:\"100%\",id:\"tW99wkgol\",layoutId:\"tW99wkgol\",variant:\"OeVztDOfB\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-1su7a4r\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"JeD5Ku3c7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.2}}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uaxdhy\",\"data-styles-preset\":\"O1pCU9aLA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91c5cd65-a37e-4bc9-bdf9-f2bed8e641ab, rgb(234, 187, 22)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Creativity with no boundaries\"})})}),className:\"framer-e8q6he\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"eofJTHqby\",style:{\"--extracted-r6o4lv\":\"var(--token-91c5cd65-a37e-4bc9-bdf9-f2bed8e641ab, rgb(234, 187, 22))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b6z7w7\",\"data-styles-preset\":\"PliPf6PbE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Let us do the work. You make the music.\"})}),className:\"framer-djmt1d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tl3V7Onyd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewankm-container\",layoutDependency:layoutDependency,layoutId:\"pVAytvUEE-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"pVAytvUEE\",layoutId:\"pVAytvUEE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1my0zt2-container\",layoutDependency:layoutDependency,layoutId:\"wTtnzJPwg-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"wTtnzJPwg\",layoutId:\"wTtnzJPwg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tll9xb-container\",layoutDependency:layoutDependency,layoutId:\"GNNusoKu1-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"GNNusoKu1\",layoutId:\"GNNusoKu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3ohy-container\",layoutDependency:layoutDependency,layoutId:\"IeptH_jy1-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"IeptH_jy1\",layoutId:\"IeptH_jy1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xua1aw\",\"data-framer-name\":\"Heading & body\",layoutDependency:layoutDependency,layoutId:\"Ti0E2KJ8Q\",style:{\"--1vymifg\":numberToPixelString(RiVHJe99F),borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-jbogn2\",\"data-styles-preset\":\"oqZ_lfAvF\",children:\"Custom Generations for your exact idea\"})}),className:\"framer-90sstg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"llVejyR1W\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b6z7w7\",\"data-styles-preset\":\"PliPf6PbE\",children:\"Set the key, scale of your project and generate \u2018out of the box\u2019 ready loops that you can cook-up with, without any need to transpose or make it \u2018work\u2019 for your project. Ultimate flexibility.\"})}),className:\"framer-cksss7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gCR0I3oBd\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cmHEp.framer-1de84eu, .framer-cmHEp .framer-1de84eu { display: block; }\",\".framer-cmHEp.framer-cllal6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 695px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cmHEp .framer-1mtkucc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 234px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cmHEp .framer-1gi17t7, .framer-cmHEp .framer-1su7a4r { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-cmHEp .framer-h54czp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-cmHEp .framer-1w1flsu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-cmHEp .framer-14o0zdd-container, .framer-cmHEp .framer-24b913-container, .framer-cmHEp .framer-1o7rp7s-container, .framer-cmHEp .framer-1rqrdl1-container, .framer-cmHEp .framer-1amznko-container, .framer-cmHEp .framer-vhdhib-container, .framer-cmHEp .framer-151laal-container, .framer-cmHEp .framer-1q9gbc6-container, .framer-cmHEp .framer-blzg1d-container, .framer-cmHEp .framer-d3y2w2-container, .framer-cmHEp .framer-1gl6rhe-container, .framer-cmHEp .framer-y078vr-container, .framer-cmHEp .framer-16xyxqe-container, .framer-cmHEp .framer-1sq2awc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cmHEp .framer-hk0hed { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 1px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cmHEp .framer-1qvdsxy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-cmHEp .framer-e8q6he, .framer-cmHEp .framer-djmt1d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cmHEp .framer-ewankm-container { flex: none; height: 6px; left: 6px; position: absolute; top: 6px; width: 6px; z-index: 1; }\",\".framer-cmHEp .framer-1my0zt2-container { flex: none; height: 6px; position: absolute; right: 6px; top: 6px; width: 6px; z-index: 1; }\",\".framer-cmHEp .framer-tll9xb-container { bottom: 6px; flex: none; height: 6px; position: absolute; right: 6px; width: 6px; z-index: 1; }\",\".framer-cmHEp .framer-w3ohy-container { bottom: 6px; flex: none; height: 6px; left: 6px; position: absolute; width: 6px; z-index: 1; }\",\".framer-cmHEp .framer-1xua1aw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: var(--1vymifg); position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cmHEp .framer-90sstg, .framer-cmHEp .framer-cksss7 { 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-cmHEp.framer-cllal6, .framer-cmHEp .framer-1mtkucc, .framer-cmHEp .framer-h54czp, .framer-cmHEp .framer-1w1flsu, .framer-cmHEp .framer-hk0hed, .framer-cmHEp .framer-1qvdsxy, .framer-cmHEp .framer-1xua1aw { gap: 0px; } .framer-cmHEp.framer-cllal6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-cmHEp.framer-cllal6 > :first-child, .framer-cmHEp .framer-1mtkucc > :first-child, .framer-cmHEp .framer-h54czp > :first-child, .framer-cmHEp .framer-hk0hed > :first-child, .framer-cmHEp .framer-1xua1aw > :first-child { margin-top: 0px; } .framer-cmHEp.framer-cllal6 > :last-child, .framer-cmHEp .framer-1mtkucc > :last-child, .framer-cmHEp .framer-h54czp > :last-child, .framer-cmHEp .framer-hk0hed > :last-child, .framer-cmHEp .framer-1xua1aw > :last-child { margin-bottom: 0px; } .framer-cmHEp .framer-1mtkucc > *, .framer-cmHEp .framer-1xua1aw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cmHEp .framer-h54czp > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-cmHEp .framer-1w1flsu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cmHEp .framer-1w1flsu > :first-child, .framer-cmHEp .framer-1qvdsxy > :first-child { margin-left: 0px; } .framer-cmHEp .framer-1w1flsu > :last-child, .framer-cmHEp .framer-1qvdsxy > :last-child { margin-right: 0px; } .framer-cmHEp .framer-hk0hed > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-cmHEp .framer-1qvdsxy > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-cmHEp.framer-v-osff3u .framer-hk0hed { gap: 4px; }\",\".framer-cmHEp.framer-v-osff3u .framer-1su7a4r { order: 1; }\",\".framer-cmHEp.framer-v-osff3u .framer-e8q6he { order: 3; }\",\".framer-cmHEp.framer-v-osff3u .framer-djmt1d { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cmHEp.framer-v-osff3u .framer-hk0hed { gap: 0px; } .framer-cmHEp.framer-v-osff3u .framer-hk0hed > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-cmHEp.framer-v-osff3u .framer-hk0hed > :first-child { margin-top: 0px; } .framer-cmHEp.framer-v-osff3u .framer-hk0hed > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-cmHEp[data-border=\"true\"]::after, .framer-cmHEp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 410\n * @framerIntrinsicWidth 695\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dgFXEGs8X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RiVHJe99F\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJiQV64msE=withCSS(Component,css,\"framer-cmHEp\");export default FramerJiQV64msE;FramerJiQV64msE.displayName=\"Bento/Settings\";FramerJiQV64msE.defaultProps={height:410,width:695};addPropertyControls(FramerJiQV64msE,{variant:{options:[\"Fi0XyvUbe\",\"dgFXEGs8X\"],optionTitles:[\"KEY/SCALE\",\"Inspire me\"],title:\"Variant\",type:ControlType.Enum},RiVHJe99F:{defaultValue:\"16px 16px 16px 16px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerJiQV64msE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...TogglesToggleUseFonts,...BentoNobFonts,...RivitFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJiQV64msE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"695\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"RiVHJe99F\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"410\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dgFXEGs8X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"lYaYoQtkn\",\"Q1YoMwQVo\"];const serializationHash=\"framer-thKEt\";const variantClassNames={lYaYoQtkn:\"framer-v-42x7nj\",Q1YoMwQVo:\"framer-v-21g7ea\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={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 Variants=motion(React.Fragment);const humanReadableVariantMap={active:\"lYaYoQtkn\",None:\"Q1YoMwQVo\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"lYaYoQtkn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lYaYoQtkn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-42x7nj\",className,classNames),\"data-framer-name\":\"active\",layoutDependency:layoutDependency,layoutId:\"lYaYoQtkn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-91c5cd65-a37e-4bc9-bdf9-f2bed8e641ab, rgb(234, 187, 22))\",boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 2px 8px 0px rgba(17, 24, 28, 0.3), inset 0px 1px 0px 0px rgba(228, 234, 237, 0.5)\",...style},variants:{Q1YoMwQVo:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"}},...addPropertyOverrides({Q1YoMwQVo:{\"data-framer-name\":\"None\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-thKEt.framer-er3jbk, .framer-thKEt .framer-er3jbk { display: block; }\",\".framer-thKEt.framer-42x7nj { height: 200px; position: relative; width: 200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q1YoMwQVo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb2IKiGNOZ=withCSS(Component,css,\"framer-thKEt\");export default Framerb2IKiGNOZ;Framerb2IKiGNOZ.displayName=\"Audio/Note\";Framerb2IKiGNOZ.defaultProps={height:200,width:200};addPropertyControls(Framerb2IKiGNOZ,{variant:{options:[\"lYaYoQtkn\",\"Q1YoMwQVo\"],optionTitles:[\"active\",\"None\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb2IKiGNOZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb2IKiGNOZ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q1YoMwQVo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b2IKiGNOZ.map", "// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AudioNote from\"https://framerusercontent.com/modules/zVjYwryPCLA1fEtmqLdX/7VXuzBjpM3v7VT47Vbdu/b2IKiGNOZ.js\";const AudioNoteFonts=getFonts(AudioNote);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"V1NN2onlJ\"];const serializationHash=\"framer-xq2zD\";const variantClassNames={V1NN2onlJ:\"framer-v-kzym4f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:30,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:0,duration:20,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1460,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V1NN2onlJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kzym4f\",className,classNames),\"data-framer-name\":\"Start\",layoutDependency:layoutDependency,layoutId:\"V1NN2onlJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1k3uozd\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"wbqz5NiFl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhzit\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"qF4T6dnXQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1myoioy-container\",layoutDependency:layoutDependency,layoutId:\"lzb5ORYvx-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"lzb5ORYvx\",layoutId:\"lzb5ORYvx\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13qml5d-container\",layoutDependency:layoutDependency,layoutId:\"IWDwJLmpE-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"IWDwJLmpE\",layoutId:\"IWDwJLmpE\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19bz7e-container\",layoutDependency:layoutDependency,layoutId:\"xVfDNUK7E-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"xVfDNUK7E\",layoutId:\"xVfDNUK7E\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1540991-container\",layoutDependency:layoutDependency,layoutId:\"bIGgquRgD-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"bIGgquRgD\",layoutId:\"bIGgquRgD\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9yt9rm-container\",layoutDependency:layoutDependency,layoutId:\"snNcD0aKa-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"snNcD0aKa\",layoutId:\"snNcD0aKa\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5atgh5-container\",layoutDependency:layoutDependency,layoutId:\"UaRA0uop7-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"UaRA0uop7\",layoutId:\"UaRA0uop7\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tmp4n9\",\"data-framer-name\":\"4/6\",layoutDependency:layoutDependency,layoutId:\"H1I_MlGnB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q4yd5c-container\",layoutDependency:layoutDependency,layoutId:\"WA56IHQzn-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"WA56IHQzn\",layoutId:\"WA56IHQzn\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-99ayh9-container\",layoutDependency:layoutDependency,layoutId:\"rmoctnEfO-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"rmoctnEfO\",layoutId:\"rmoctnEfO\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1msxbuy-container\",layoutDependency:layoutDependency,layoutId:\"TAbsJRKQt-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"TAbsJRKQt\",layoutId:\"TAbsJRKQt\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdlsvs-container\",layoutDependency:layoutDependency,layoutId:\"qhO_t2zFi-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"qhO_t2zFi\",layoutId:\"qhO_t2zFi\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pca1mo-container\",layoutDependency:layoutDependency,layoutId:\"wgemJGxva-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"wgemJGxva\",layoutId:\"wgemJGxva\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7btsi-container\",layoutDependency:layoutDependency,layoutId:\"JAPTvBs0P-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"JAPTvBs0P\",layoutId:\"JAPTvBs0P\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kjuevm\",\"data-framer-name\":\"1/6\",layoutDependency:layoutDependency,layoutId:\"S_ZE1OnZr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ndfloi-container\",layoutDependency:layoutDependency,layoutId:\"Mp7FB0jLF-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"Mp7FB0jLF\",layoutId:\"Mp7FB0jLF\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p7dvdu-container\",layoutDependency:layoutDependency,layoutId:\"M7CgcLqbb-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"M7CgcLqbb\",layoutId:\"M7CgcLqbb\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eb8gu5-container\",layoutDependency:layoutDependency,layoutId:\"e2Ev9R2LA-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"e2Ev9R2LA\",layoutId:\"e2Ev9R2LA\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r9nb4z-container\",layoutDependency:layoutDependency,layoutId:\"ozwGeTjhP-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"ozwGeTjhP\",layoutId:\"ozwGeTjhP\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mt6rvy-container\",layoutDependency:layoutDependency,layoutId:\"Dsu75sQFA-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"Dsu75sQFA\",layoutId:\"Dsu75sQFA\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r3kql8-container\",layoutDependency:layoutDependency,layoutId:\"sjb2bUSWD-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"sjb2bUSWD\",layoutId:\"sjb2bUSWD\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ptnde3\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"n1yiZfUXL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ozkcqg-container\",layoutDependency:layoutDependency,layoutId:\"JJXx3Up9F-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"JJXx3Up9F\",layoutId:\"JJXx3Up9F\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nf2zqz-container\",layoutDependency:layoutDependency,layoutId:\"bBnQMyDPb-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"bBnQMyDPb\",layoutId:\"bBnQMyDPb\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fm03b2-container\",layoutDependency:layoutDependency,layoutId:\"gAiBSi62_-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"gAiBSi62_\",layoutId:\"gAiBSi62_\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1brqkya-container\",layoutDependency:layoutDependency,layoutId:\"JXCJyfe81-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"JXCJyfe81\",layoutId:\"JXCJyfe81\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t9e5ho-container\",layoutDependency:layoutDependency,layoutId:\"VeFrqX6J3-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"VeFrqX6J3\",layoutId:\"VeFrqX6J3\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lkjx3a-container\",layoutDependency:layoutDependency,layoutId:\"y3klpskB2-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"y3klpskB2\",layoutId:\"y3klpskB2\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mp3uzm\",\"data-framer-name\":\"6/6\",layoutDependency:layoutDependency,layoutId:\"xNKAOF1hi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zja79e-container\",layoutDependency:layoutDependency,layoutId:\"vpMIe1K6n-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"vpMIe1K6n\",layoutId:\"vpMIe1K6n\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxhm3g-container\",layoutDependency:layoutDependency,layoutId:\"BItiRr8qv-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"BItiRr8qv\",layoutId:\"BItiRr8qv\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-msc6xf-container\",layoutDependency:layoutDependency,layoutId:\"pP52FCuo2-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"pP52FCuo2\",layoutId:\"pP52FCuo2\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4h14nq-container\",layoutDependency:layoutDependency,layoutId:\"qvIGexex6-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"qvIGexex6\",layoutId:\"qvIGexex6\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u861r6-container\",layoutDependency:layoutDependency,layoutId:\"Fp5JuF1Ck-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"Fp5JuF1Ck\",layoutId:\"Fp5JuF1Ck\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9bxxh-container\",layoutDependency:layoutDependency,layoutId:\"fJxmYmV_u-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"fJxmYmV_u\",layoutId:\"fJxmYmV_u\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yxn725\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"Vk2SQcPJ6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6yvddl-container\",layoutDependency:layoutDependency,layoutId:\"NmUNg47G2-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"NmUNg47G2\",layoutId:\"NmUNg47G2\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvzs9b-container\",layoutDependency:layoutDependency,layoutId:\"OMHdfss2v-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"OMHdfss2v\",layoutId:\"OMHdfss2v\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tagu93-container\",layoutDependency:layoutDependency,layoutId:\"iybfe4ueb-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"iybfe4ueb\",layoutId:\"iybfe4ueb\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1idz04q-container\",layoutDependency:layoutDependency,layoutId:\"gNJspXe3s-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"gNJspXe3s\",layoutId:\"gNJspXe3s\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6lpeok-container\",layoutDependency:layoutDependency,layoutId:\"RbD39f8rv-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"RbD39f8rv\",layoutId:\"RbD39f8rv\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-105iqt4-container\",layoutDependency:layoutDependency,layoutId:\"Hx6xjhOu7-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"Hx6xjhOu7\",layoutId:\"Hx6xjhOu7\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lhbxdf\",\"data-framer-name\":\"4/6\",layoutDependency:layoutDependency,layoutId:\"LhHB8ZBXj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-138re13-container\",layoutDependency:layoutDependency,layoutId:\"h4WK2Unaf-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"h4WK2Unaf\",layoutId:\"h4WK2Unaf\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s6pm8u-container\",layoutDependency:layoutDependency,layoutId:\"Mx7oSCF_6-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"Mx7oSCF_6\",layoutId:\"Mx7oSCF_6\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x4qwbs-container\",layoutDependency:layoutDependency,layoutId:\"nX4yfIhMI-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"nX4yfIhMI\",layoutId:\"nX4yfIhMI\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekzchc-container\",layoutDependency:layoutDependency,layoutId:\"foHcKrU9E-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"foHcKrU9E\",layoutId:\"foHcKrU9E\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vvyzog-container\",layoutDependency:layoutDependency,layoutId:\"nbIKuRo6w-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"nbIKuRo6w\",layoutId:\"nbIKuRo6w\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2aumw4-container\",layoutDependency:layoutDependency,layoutId:\"ahDuApLpI-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"ahDuApLpI\",layoutId:\"ahDuApLpI\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-89aftd\",\"data-framer-name\":\"1/6\",layoutDependency:layoutDependency,layoutId:\"EEnNtFrSf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1si1isz-container\",layoutDependency:layoutDependency,layoutId:\"g4iEefkG4-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"g4iEefkG4\",layoutId:\"g4iEefkG4\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sqbv5m-container\",layoutDependency:layoutDependency,layoutId:\"R3JPsagyv-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"R3JPsagyv\",layoutId:\"R3JPsagyv\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tj5kin-container\",layoutDependency:layoutDependency,layoutId:\"xYU94rZMn-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"xYU94rZMn\",layoutId:\"xYU94rZMn\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rn9ojl-container\",layoutDependency:layoutDependency,layoutId:\"otLbFBkfJ-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"otLbFBkfJ\",layoutId:\"otLbFBkfJ\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qejimv-container\",layoutDependency:layoutDependency,layoutId:\"BxsFlZAY7-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"BxsFlZAY7\",layoutId:\"BxsFlZAY7\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8sshy-container\",layoutDependency:layoutDependency,layoutId:\"jCr1w0NIY-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"jCr1w0NIY\",layoutId:\"jCr1w0NIY\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-igbtgx\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"F_0cVjOA1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7fhlp1-container\",layoutDependency:layoutDependency,layoutId:\"tE1vGTqHb-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"tE1vGTqHb\",layoutId:\"tE1vGTqHb\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dco1aq-container\",layoutDependency:layoutDependency,layoutId:\"aUiEDlvUR-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"aUiEDlvUR\",layoutId:\"aUiEDlvUR\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l0oqjs-container\",layoutDependency:layoutDependency,layoutId:\"qgV8xXOl2-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"qgV8xXOl2\",layoutId:\"qgV8xXOl2\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ap727h-container\",layoutDependency:layoutDependency,layoutId:\"unjCR4SU4-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"unjCR4SU4\",layoutId:\"unjCR4SU4\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvgayx-container\",layoutDependency:layoutDependency,layoutId:\"f08SHe16f-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"f08SHe16f\",layoutId:\"f08SHe16f\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ap7xpa-container\",layoutDependency:layoutDependency,layoutId:\"m8iD9XyIb-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"m8iD9XyIb\",layoutId:\"m8iD9XyIb\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-66b3oe\",\"data-framer-name\":\"5/6\",layoutDependency:layoutDependency,layoutId:\"RQy2tsqUw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c5it2w-container\",layoutDependency:layoutDependency,layoutId:\"h6OJpL_He-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"h6OJpL_He\",layoutId:\"h6OJpL_He\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ujdl0b-container\",layoutDependency:layoutDependency,layoutId:\"MwjN9EJln-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"MwjN9EJln\",layoutId:\"MwjN9EJln\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qgc54r-container\",layoutDependency:layoutDependency,layoutId:\"J1HcPer8A-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"J1HcPer8A\",layoutId:\"J1HcPer8A\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5vd8l4-container\",layoutDependency:layoutDependency,layoutId:\"dwAKxo8uS-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"dwAKxo8uS\",layoutId:\"dwAKxo8uS\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wqolkt-container\",layoutDependency:layoutDependency,layoutId:\"csSBXwL7M-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"csSBXwL7M\",layoutId:\"csSBXwL7M\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p3h25q-container\",layoutDependency:layoutDependency,layoutId:\"ouPxu8UBL-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"ouPxu8UBL\",layoutId:\"ouPxu8UBL\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yrsn6k\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"URaiVKxon\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iso61t-container\",layoutDependency:layoutDependency,layoutId:\"ASWex54aN-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"ASWex54aN\",layoutId:\"ASWex54aN\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-25vlxx-container\",layoutDependency:layoutDependency,layoutId:\"VIBIWof_M-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"VIBIWof_M\",layoutId:\"VIBIWof_M\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-189rhit-container\",layoutDependency:layoutDependency,layoutId:\"qSTqcCHhc-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"qSTqcCHhc\",layoutId:\"qSTqcCHhc\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o1qegv-container\",layoutDependency:layoutDependency,layoutId:\"nzbR5KEaw-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"nzbR5KEaw\",layoutId:\"nzbR5KEaw\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9me4hk-container\",layoutDependency:layoutDependency,layoutId:\"tajGA7xGX-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"tajGA7xGX\",layoutId:\"tajGA7xGX\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q26y61-container\",layoutDependency:layoutDependency,layoutId:\"P4nUHlz6t-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"P4nUHlz6t\",layoutId:\"P4nUHlz6t\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1shunsw\",\"data-framer-name\":\"3/6\",layoutDependency:layoutDependency,layoutId:\"K6ykUKmIR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nky3k3-container\",layoutDependency:layoutDependency,layoutId:\"jni7eIDuz-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"jni7eIDuz\",layoutId:\"jni7eIDuz\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nk28jl-container\",layoutDependency:layoutDependency,layoutId:\"SRLoVDlOh-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"SRLoVDlOh\",layoutId:\"SRLoVDlOh\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pocyqf-container\",layoutDependency:layoutDependency,layoutId:\"SkkpwJkkp-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"SkkpwJkkp\",layoutId:\"SkkpwJkkp\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ee9lck-container\",layoutDependency:layoutDependency,layoutId:\"NFC60wcLT-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"NFC60wcLT\",layoutId:\"NFC60wcLT\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10hmh8k-container\",layoutDependency:layoutDependency,layoutId:\"YsKDi3K38-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"YsKDi3K38\",layoutId:\"YsKDi3K38\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e313q7-container\",layoutDependency:layoutDependency,layoutId:\"aQYqzOTq3-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"aQYqzOTq3\",layoutId:\"aQYqzOTq3\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ot1te0\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"aBE_VIbGJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-110r8i3-container\",layoutDependency:layoutDependency,layoutId:\"tdSXuWyOd-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"tdSXuWyOd\",layoutId:\"tdSXuWyOd\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qppssp-container\",layoutDependency:layoutDependency,layoutId:\"UGGrBos2O-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"UGGrBos2O\",layoutId:\"UGGrBos2O\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11kx2gz-container\",layoutDependency:layoutDependency,layoutId:\"owRn7ir3l-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"owRn7ir3l\",layoutId:\"owRn7ir3l\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ifxou-container\",layoutDependency:layoutDependency,layoutId:\"cfmo8yp38-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"cfmo8yp38\",layoutId:\"cfmo8yp38\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-69t119-container\",layoutDependency:layoutDependency,layoutId:\"io6NDLN6y-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"io6NDLN6y\",layoutId:\"io6NDLN6y\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dp8ldb-container\",layoutDependency:layoutDependency,layoutId:\"MwBLm3WCR-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"MwBLm3WCR\",layoutId:\"MwBLm3WCR\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-177m1ui\",\"data-framer-name\":\"4/6\",layoutDependency:layoutDependency,layoutId:\"FZ0El9LKf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-stcwpi-container\",layoutDependency:layoutDependency,layoutId:\"fqb76bMDV-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"fqb76bMDV\",layoutId:\"fqb76bMDV\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3trn6-container\",layoutDependency:layoutDependency,layoutId:\"fao4fXYQj-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"fao4fXYQj\",layoutId:\"fao4fXYQj\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r68xj4-container\",layoutDependency:layoutDependency,layoutId:\"EbHxmgAbM-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"EbHxmgAbM\",layoutId:\"EbHxmgAbM\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19wvr8a-container\",layoutDependency:layoutDependency,layoutId:\"WD1uwHv67-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"WD1uwHv67\",layoutId:\"WD1uwHv67\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qtu751-container\",layoutDependency:layoutDependency,layoutId:\"PzyVI3NUx-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"PzyVI3NUx\",layoutId:\"PzyVI3NUx\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n0mvdd-container\",layoutDependency:layoutDependency,layoutId:\"xYSPAfrK4-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"xYSPAfrK4\",layoutId:\"xYSPAfrK4\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o942a6\",\"data-framer-name\":\"1/6\",layoutDependency:layoutDependency,layoutId:\"l_TkUtzRz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-66h2o2-container\",layoutDependency:layoutDependency,layoutId:\"BA8p5cGDm-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"BA8p5cGDm\",layoutId:\"BA8p5cGDm\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yej5ty-container\",layoutDependency:layoutDependency,layoutId:\"QUdrNoic7-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"QUdrNoic7\",layoutId:\"QUdrNoic7\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dyvbsr-container\",layoutDependency:layoutDependency,layoutId:\"loaxkuIF6-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"loaxkuIF6\",layoutId:\"loaxkuIF6\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19enjk9-container\",layoutDependency:layoutDependency,layoutId:\"XIRI0ctye-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"XIRI0ctye\",layoutId:\"XIRI0ctye\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1johqe4-container\",layoutDependency:layoutDependency,layoutId:\"VS6UGK6Gy-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"VS6UGK6Gy\",layoutId:\"VS6UGK6Gy\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pn50a7-container\",layoutDependency:layoutDependency,layoutId:\"sEXe4LMav-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"sEXe4LMav\",layoutId:\"sEXe4LMav\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kqen4\",\"data-framer-name\":\"2/6\",layoutDependency:layoutDependency,layoutId:\"iMkovUaXS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q15e5w-container\",layoutDependency:layoutDependency,layoutId:\"cgBlWv2aP-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"cgBlWv2aP\",layoutId:\"cgBlWv2aP\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1arb75h-container\",layoutDependency:layoutDependency,layoutId:\"FHv63wiVS-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"FHv63wiVS\",layoutId:\"FHv63wiVS\",style:{height:\"100%\",width:\"100%\"},variant:\"lYaYoQtkn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ztrs47-container\",layoutDependency:layoutDependency,layoutId:\"t9KxZOcJ5-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"t9KxZOcJ5\",layoutId:\"t9KxZOcJ5\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-165wjio-container\",layoutDependency:layoutDependency,layoutId:\"PLAHIkNq3-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"PLAHIkNq3\",layoutId:\"PLAHIkNq3\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g7ijsu-container\",layoutDependency:layoutDependency,layoutId:\"ZcuSizaja-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"ZcuSizaja\",layoutId:\"ZcuSizaja\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"122px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kk18c4-container\",layoutDependency:layoutDependency,layoutId:\"tUA87h9Os-container\",children:/*#__PURE__*/_jsx(AudioNote,{height:\"100%\",id:\"tUA87h9Os\",layoutId:\"tUA87h9Os\",style:{height:\"100%\",width:\"100%\"},variant:\"Q1YoMwQVo\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xq2zD.framer-1yvmuvj, .framer-xq2zD .framer-1yvmuvj { display: block; }\",\".framer-xq2zD.framer-kzym4f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 100px; overflow: visible; padding: 0px; position: relative; width: 530px; }\",\".framer-xq2zD .framer-1k3uozd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-xq2zD .framer-hhzit, .framer-xq2zD .framer-1tmp4n9, .framer-xq2zD .framer-kjuevm, .framer-xq2zD .framer-ptnde3, .framer-xq2zD .framer-mp3uzm, .framer-xq2zD .framer-1yxn725, .framer-xq2zD .framer-lhbxdf, .framer-xq2zD .framer-89aftd, .framer-xq2zD .framer-igbtgx, .framer-xq2zD .framer-66b3oe, .framer-xq2zD .framer-1yrsn6k, .framer-xq2zD .framer-1shunsw, .framer-xq2zD .framer-ot1te0, .framer-xq2zD .framer-177m1ui, .framer-xq2zD .framer-1o942a6, .framer-xq2zD .framer-kqen4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 122px; }\",\".framer-xq2zD .framer-1myoioy-container, .framer-xq2zD .framer-13qml5d-container, .framer-xq2zD .framer-19bz7e-container, .framer-xq2zD .framer-1540991-container, .framer-xq2zD .framer-9yt9rm-container, .framer-xq2zD .framer-5atgh5-container, .framer-xq2zD .framer-1q4yd5c-container, .framer-xq2zD .framer-99ayh9-container, .framer-xq2zD .framer-1msxbuy-container, .framer-xq2zD .framer-1mdlsvs-container, .framer-xq2zD .framer-1pca1mo-container, .framer-xq2zD .framer-s7btsi-container, .framer-xq2zD .framer-1ndfloi-container, .framer-xq2zD .framer-1p7dvdu-container, .framer-xq2zD .framer-1eb8gu5-container, .framer-xq2zD .framer-r9nb4z-container, .framer-xq2zD .framer-mt6rvy-container, .framer-xq2zD .framer-1r3kql8-container, .framer-xq2zD .framer-ozkcqg-container, .framer-xq2zD .framer-nf2zqz-container, .framer-xq2zD .framer-1fm03b2-container, .framer-xq2zD .framer-1brqkya-container, .framer-xq2zD .framer-t9e5ho-container, .framer-xq2zD .framer-lkjx3a-container, .framer-xq2zD .framer-zja79e-container, .framer-xq2zD .framer-sxhm3g-container, .framer-xq2zD .framer-msc6xf-container, .framer-xq2zD .framer-4h14nq-container, .framer-xq2zD .framer-u861r6-container, .framer-xq2zD .framer-1o9bxxh-container, .framer-xq2zD .framer-6yvddl-container, .framer-xq2zD .framer-1kvzs9b-container, .framer-xq2zD .framer-tagu93-container, .framer-xq2zD .framer-1idz04q-container, .framer-xq2zD .framer-6lpeok-container, .framer-xq2zD .framer-105iqt4-container, .framer-xq2zD .framer-138re13-container, .framer-xq2zD .framer-s6pm8u-container, .framer-xq2zD .framer-x4qwbs-container, .framer-xq2zD .framer-ekzchc-container, .framer-xq2zD .framer-1vvyzog-container, .framer-xq2zD .framer-2aumw4-container, .framer-xq2zD .framer-1si1isz-container, .framer-xq2zD .framer-1sqbv5m-container, .framer-xq2zD .framer-1tj5kin-container, .framer-xq2zD .framer-1rn9ojl-container, .framer-xq2zD .framer-1qejimv-container, .framer-xq2zD .framer-1p8sshy-container, .framer-xq2zD .framer-7fhlp1-container, .framer-xq2zD .framer-dco1aq-container, .framer-xq2zD .framer-1l0oqjs-container, .framer-xq2zD .framer-ap727h-container, .framer-xq2zD .framer-lvgayx-container, .framer-xq2zD .framer-ap7xpa-container, .framer-xq2zD .framer-1c5it2w-container, .framer-xq2zD .framer-ujdl0b-container, .framer-xq2zD .framer-1qgc54r-container, .framer-xq2zD .framer-5vd8l4-container, .framer-xq2zD .framer-wqolkt-container, .framer-xq2zD .framer-1p3h25q-container, .framer-xq2zD .framer-iso61t-container, .framer-xq2zD .framer-25vlxx-container, .framer-xq2zD .framer-189rhit-container, .framer-xq2zD .framer-1o1qegv-container, .framer-xq2zD .framer-9me4hk-container, .framer-xq2zD .framer-q26y61-container, .framer-xq2zD .framer-1nky3k3-container, .framer-xq2zD .framer-1nk28jl-container, .framer-xq2zD .framer-1pocyqf-container, .framer-xq2zD .framer-ee9lck-container, .framer-xq2zD .framer-10hmh8k-container, .framer-xq2zD .framer-1e313q7-container, .framer-xq2zD .framer-110r8i3-container, .framer-xq2zD .framer-1qppssp-container, .framer-xq2zD .framer-11kx2gz-container, .framer-xq2zD .framer-10ifxou-container, .framer-xq2zD .framer-69t119-container, .framer-xq2zD .framer-dp8ldb-container, .framer-xq2zD .framer-stcwpi-container, .framer-xq2zD .framer-1c3trn6-container, .framer-xq2zD .framer-1r68xj4-container, .framer-xq2zD .framer-19wvr8a-container, .framer-xq2zD .framer-1qtu751-container, .framer-xq2zD .framer-n0mvdd-container, .framer-xq2zD .framer-66h2o2-container, .framer-xq2zD .framer-yej5ty-container, .framer-xq2zD .framer-1dyvbsr-container, .framer-xq2zD .framer-19enjk9-container, .framer-xq2zD .framer-1johqe4-container, .framer-xq2zD .framer-1pn50a7-container, .framer-xq2zD .framer-1q15e5w-container, .framer-xq2zD .framer-1arb75h-container, .framer-xq2zD .framer-ztrs47-container, .framer-xq2zD .framer-165wjio-container, .framer-xq2zD .framer-g7ijsu-container, .framer-xq2zD .framer-1kk18c4-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xq2zD.framer-kzym4f, .framer-xq2zD .framer-1k3uozd, .framer-xq2zD .framer-hhzit, .framer-xq2zD .framer-1tmp4n9, .framer-xq2zD .framer-kjuevm, .framer-xq2zD .framer-ptnde3, .framer-xq2zD .framer-mp3uzm, .framer-xq2zD .framer-1yxn725, .framer-xq2zD .framer-lhbxdf, .framer-xq2zD .framer-89aftd, .framer-xq2zD .framer-igbtgx, .framer-xq2zD .framer-66b3oe, .framer-xq2zD .framer-1yrsn6k, .framer-xq2zD .framer-1shunsw, .framer-xq2zD .framer-ot1te0, .framer-xq2zD .framer-177m1ui, .framer-xq2zD .framer-1o942a6, .framer-xq2zD .framer-kqen4 { gap: 0px; } .framer-xq2zD.framer-kzym4f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xq2zD.framer-kzym4f > :first-child, .framer-xq2zD .framer-1k3uozd > :first-child { margin-left: 0px; } .framer-xq2zD.framer-kzym4f > :last-child, .framer-xq2zD .framer-1k3uozd > :last-child { margin-right: 0px; } .framer-xq2zD .framer-1k3uozd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xq2zD .framer-hhzit > *, .framer-xq2zD .framer-1tmp4n9 > *, .framer-xq2zD .framer-kjuevm > *, .framer-xq2zD .framer-ptnde3 > *, .framer-xq2zD .framer-mp3uzm > *, .framer-xq2zD .framer-1yxn725 > *, .framer-xq2zD .framer-lhbxdf > *, .framer-xq2zD .framer-89aftd > *, .framer-xq2zD .framer-igbtgx > *, .framer-xq2zD .framer-66b3oe > *, .framer-xq2zD .framer-1yrsn6k > *, .framer-xq2zD .framer-1shunsw > *, .framer-xq2zD .framer-ot1te0 > *, .framer-xq2zD .framer-177m1ui > *, .framer-xq2zD .framer-1o942a6 > *, .framer-xq2zD .framer-kqen4 > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-xq2zD .framer-hhzit > :first-child, .framer-xq2zD .framer-1tmp4n9 > :first-child, .framer-xq2zD .framer-kjuevm > :first-child, .framer-xq2zD .framer-ptnde3 > :first-child, .framer-xq2zD .framer-mp3uzm > :first-child, .framer-xq2zD .framer-1yxn725 > :first-child, .framer-xq2zD .framer-lhbxdf > :first-child, .framer-xq2zD .framer-89aftd > :first-child, .framer-xq2zD .framer-igbtgx > :first-child, .framer-xq2zD .framer-66b3oe > :first-child, .framer-xq2zD .framer-1yrsn6k > :first-child, .framer-xq2zD .framer-1shunsw > :first-child, .framer-xq2zD .framer-ot1te0 > :first-child, .framer-xq2zD .framer-177m1ui > :first-child, .framer-xq2zD .framer-1o942a6 > :first-child, .framer-xq2zD .framer-kqen4 > :first-child { margin-top: 0px; } .framer-xq2zD .framer-hhzit > :last-child, .framer-xq2zD .framer-1tmp4n9 > :last-child, .framer-xq2zD .framer-kjuevm > :last-child, .framer-xq2zD .framer-ptnde3 > :last-child, .framer-xq2zD .framer-mp3uzm > :last-child, .framer-xq2zD .framer-1yxn725 > :last-child, .framer-xq2zD .framer-lhbxdf > :last-child, .framer-xq2zD .framer-89aftd > :last-child, .framer-xq2zD .framer-igbtgx > :last-child, .framer-xq2zD .framer-66b3oe > :last-child, .framer-xq2zD .framer-1yrsn6k > :last-child, .framer-xq2zD .framer-1shunsw > :last-child, .framer-xq2zD .framer-ot1te0 > :last-child, .framer-xq2zD .framer-177m1ui > :last-child, .framer-xq2zD .framer-1o942a6 > :last-child, .framer-xq2zD .framer-kqen4 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 530\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100px\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVodD0VKf9=withCSS(Component,css,\"framer-xq2zD\");export default FramerVodD0VKf9;FramerVodD0VKf9.displayName=\"Audio/Midi\";FramerVodD0VKf9.defaultProps={height:100,width:530};addFonts(FramerVodD0VKf9,[{explicitInter:true,fonts:[]},...AudioNoteFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVodD0VKf9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"530\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100px\\\",null]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VodD0VKf9.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,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/cLEto5TP4UjEtRR7hHOK/8PbZro530cTaO75oJYlx/oqZ_lfAvF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lFhVsbqgUMb4CWuAmddm/ypQ8NqNr8VZpQMTgKw0L/PliPf6PbE.js\";import AudioTime from\"https://framerusercontent.com/modules/akUGTqR31QEUENEa1gmT/D2OUerlaxeaTmeneI5el/oywqQjQOW.js\";import Rivit from\"https://framerusercontent.com/modules/ltlHxEUC7OBjdybu5usT/Sj0H9kJo9TLMYOyF4jLm/peDQfUhI7.js\";import TogglesToggleUse from\"https://framerusercontent.com/modules/hd4hiLe4GQAThH3UAbJF/52ppWkajgvp4Q7myK98O/RlhZ9SOvj.js\";import AudioAudioWave from\"https://framerusercontent.com/modules/eYlQ08DlAX2UYrn55Nf9/9ne3tNXD6crLU2jIWAnU/vFEKxwd3D.js\";import AudioMidi from\"https://framerusercontent.com/modules/y6VdN8cS3oEHvwsJU4qB/kWQEPj8970YKOVtQhY59/VodD0VKf9.js\";const TogglesToggleUseFonts=getFonts(TogglesToggleUse);const AudioTimeFonts=getFonts(AudioTime);const AudioAudioWaveFonts=getFonts(AudioAudioWave);const AudioMidiFonts=getFonts(AudioMidi);const RivitFonts=getFonts(Rivit);const cycleOrder=[\"IHdDby6FE\",\"UzpRnnP6F\"];const serializationHash=\"framer-jTlD1\";const variantClassNames={IHdDby6FE:\"framer-v-p6ukqi\",UzpRnnP6F:\"framer-v-dfpngi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Audio:\"IHdDby6FE\",midi:\"UzpRnnP6F\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,pIpl0GRJ3:(_ref=padding!==null&&padding!==void 0?padding:props.pIpl0GRJ3)!==null&&_ref!==void 0?_ref:\"16px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"IHdDby6FE\"};};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,pIpl0GRJ3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IHdDby6FE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const v1r2udCpLoy8fun=activeVariantCallback(async(...args)=>{setVariant(\"UzpRnnP6F\");});const v1r2udCpLr25gr9=activeVariantCallback(async(...args)=>{setVariant(\"IHdDby6FE\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"UzpRnnP6F\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"UzpRnnP6F\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p6ukqi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Audio\",layoutDependency:layoutDependency,layoutId:\"IHdDby6FE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c7a56416-886e-4a25-a64b-0fee3c77e9e4, rgb(51, 51, 51))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(17, 24, 28, 0.07999999821186066), 0px 1px 2px -1px rgba(17, 24, 28, 0.07999999821186066), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.42474), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.37499), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.1475)\",...style},...addPropertyOverrides({UzpRnnP6F:{\"data-framer-name\":\"midi\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ox1pn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ke6jCQKrB\",style:{backgroundColor:\"rgb(19, 20, 23)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 0.6021873017743928px 1.083937143193907px -1.3333333333333333px rgba(0, 0, 0, 0.19097), inset 0px 2.288533303243457px 4.119359945838223px -2.6666666666666665px rgba(0, 0, 0, 0.16567), inset 0px 10px 18px -4px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",pixelHeight:256,pixelWidth:256,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png\"},className:\"framer-kgruk3\",\"data-framer-name\":\"Noise\",layoutDependency:layoutDependency,layoutId:\"T7fnTEtCr\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13fnedp\",\"data-framer-name\":\"Toggle\",layoutDependency:layoutDependency,layoutId:\"d9yM8sDcr\",style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ou32j-container\",layoutDependency:layoutDependency,layoutId:\"ZayI6rsKU-container\",children:/*#__PURE__*/_jsx(TogglesToggleUse,{height:\"100%\",id:\"ZayI6rsKU\",IxLcT0Jqx:\"MIDI\",layoutId:\"ZayI6rsKU\",v1r2udCpL:v1r2udCpLoy8fun,va9rdmGKG:\"WAV\",variant:\"o3MZ3e7uP\",width:\"100%\",...addPropertyOverrides({UzpRnnP6F:{v1r2udCpL:v1r2udCpLr25gr9,variant:\"KLt6CO9M8\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-atiief\",\"data-framer-name\":\"Player\",layoutDependency:layoutDependency,layoutId:\"Da3hhJC49\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hnbg3\",layoutDependency:layoutDependency,layoutId:\"Osu9OjUyS\",style:{backgroundColor:\"rgb(27, 26, 30)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"inset 0px 0.24145061431045178px 0.9175123343797167px -1.25px rgba(0, 0, 0, 0.25), inset 0px 2px 7.6px -2.5px rgba(0, 0, 0, 0.25)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 36px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1422h5v-container\",layoutDependency:layoutDependency,layoutId:\"byEg_P97S-container\",children:/*#__PURE__*/_jsx(AudioTime,{height:\"100%\",id:\"byEg_P97S\",layoutId:\"byEg_P97S\",style:{height:\"100%\",width:\"100%\"},variant:\"OK_A20m8o\",width:\"100%\",...addPropertyOverrides({UzpRnnP6F:{variant:\"OhTYev4iR\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({UzpRnnP6F:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 62px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8x9in-container\",\"data-framer-name\":\"Audio\",layoutDependency:layoutDependency,layoutId:\"UaHJjEHUR-container\",name:\"Audio\",children:/*#__PURE__*/_jsx(AudioAudioWave,{height:\"100%\",id:\"UaHJjEHUR\",k3h2ZTEEK:\"\",layoutId:\"UaHJjEHUR\",name:\"Audio\",style:{height:\"100%\",width:\"100%\"},variant:\"yZQYECW35\",VHWU4rbs2:false,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 62px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hy89fa-container\",layoutDependency:layoutDependency,layoutId:\"cf5VAV_Eq-container\",children:/*#__PURE__*/_jsx(AudioMidi,{height:\"100%\",id:\"cf5VAV_Eq\",layoutId:\"cf5VAV_Eq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h400he\",layoutDependency:layoutDependency,layoutId:\"bP7IT6ylc\",style:{\"--nrygmp\":numberToPixelString(pIpl0GRJ3),borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-jbogn2\",\"data-styles-preset\":\"oqZ_lfAvF\",children:\"Audio and MIDI generated with every loop\"})}),className:\"framer-cwm3n4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i9ltIT9bZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b6z7w7\",\"data-styles-preset\":\"PliPf6PbE\",children:\"Unlike other tools, Lemonaide generates both MIDI, and 48Hz quality audio loops, offering a new level of flexibility. Start with an Audio sample, and build around it with the MIDI and your own sounds.\"})}),className:\"framer-9xa7nq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qXMy2bLne\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sm7czs-container\",layoutDependency:layoutDependency,layoutId:\"tLP8KXbZ2-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"tLP8KXbZ2\",layoutId:\"tLP8KXbZ2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nypzkg-container\",layoutDependency:layoutDependency,layoutId:\"cnG45U59S-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"cnG45U59S\",layoutId:\"cnG45U59S\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gcf1vr-container\",layoutDependency:layoutDependency,layoutId:\"YN98KI7Hq-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"YN98KI7Hq\",layoutId:\"YN98KI7Hq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"6px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19urzat-container\",layoutDependency:layoutDependency,layoutId:\"QawDTFjDC-container\",children:/*#__PURE__*/_jsx(Rivit,{height:\"100%\",id:\"QawDTFjDC\",layoutId:\"QawDTFjDC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jTlD1.framer-ah4pdv, .framer-jTlD1 .framer-ah4pdv { display: block; }\",\".framer-jTlD1.framer-p6ukqi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 592px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jTlD1 .framer-11ox1pn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 234px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jTlD1 .framer-kgruk3 { bottom: 0px; flex: none; left: 0px; mix-blend-mode: overlay; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jTlD1 .framer-13fnedp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 0px 6px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-jTlD1 .framer-15ou32j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jTlD1 .framer-atiief { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-jTlD1 .framer-3hnbg3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 16px 14px 16px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jTlD1 .framer-1422h5v-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jTlD1 .framer-i8x9in-container { flex: none; height: 157px; position: relative; width: 100%; }\",\".framer-jTlD1 .framer-hy89fa-container { flex: none; height: 128px; position: relative; width: 100%; }\",\".framer-jTlD1 .framer-1h400he { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: var(--nrygmp); position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jTlD1 .framer-cwm3n4, .framer-jTlD1 .framer-9xa7nq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jTlD1 .framer-1sm7czs-container { bottom: 6px; flex: none; height: 6px; left: 6px; position: absolute; width: 6px; z-index: 1; }\",\".framer-jTlD1 .framer-nypzkg-container { bottom: 6px; flex: none; height: 6px; position: absolute; right: 6px; width: 6px; z-index: 1; }\",\".framer-jTlD1 .framer-gcf1vr-container { flex: none; height: 6px; position: absolute; right: 6px; top: 6px; width: 6px; z-index: 1; }\",\".framer-jTlD1 .framer-19urzat-container { flex: none; height: 6px; left: 6px; position: absolute; top: 6px; width: 6px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jTlD1.framer-p6ukqi, .framer-jTlD1 .framer-11ox1pn, .framer-jTlD1 .framer-13fnedp, .framer-jTlD1 .framer-atiief, .framer-jTlD1 .framer-3hnbg3, .framer-jTlD1 .framer-1h400he { gap: 0px; } .framer-jTlD1.framer-p6ukqi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jTlD1.framer-p6ukqi > :first-child, .framer-jTlD1 .framer-11ox1pn > :first-child, .framer-jTlD1 .framer-atiief > :first-child, .framer-jTlD1 .framer-3hnbg3 > :first-child, .framer-jTlD1 .framer-1h400he > :first-child { margin-top: 0px; } .framer-jTlD1.framer-p6ukqi > :last-child, .framer-jTlD1 .framer-11ox1pn > :last-child, .framer-jTlD1 .framer-atiief > :last-child, .framer-jTlD1 .framer-3hnbg3 > :last-child, .framer-jTlD1 .framer-1h400he > :last-child { margin-bottom: 0px; } .framer-jTlD1 .framer-11ox1pn > *, .framer-jTlD1 .framer-1h400he > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-jTlD1 .framer-13fnedp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jTlD1 .framer-13fnedp > :first-child { margin-left: 0px; } .framer-jTlD1 .framer-13fnedp > :last-child { margin-right: 0px; } .framer-jTlD1 .framer-atiief > *, .framer-jTlD1 .framer-3hnbg3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-jTlD1.framer-v-dfpngi .framer-1422h5v-container { z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-jTlD1[data-border=\"true\"]::after, .framer-jTlD1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 406\n * @framerIntrinsicWidth 592\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UzpRnnP6F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pIpl0GRJ3\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLBtgo2SmF=withCSS(Component,css,\"framer-jTlD1\");export default FramerLBtgo2SmF;FramerLBtgo2SmF.displayName=\"Bento/midi\";FramerLBtgo2SmF.defaultProps={height:406,width:592};addPropertyControls(FramerLBtgo2SmF,{variant:{options:[\"IHdDby6FE\",\"UzpRnnP6F\"],optionTitles:[\"Audio\",\"midi\"],title:\"Variant\",type:ControlType.Enum},pIpl0GRJ3:{defaultValue:\"16px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerLBtgo2SmF,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TogglesToggleUseFonts,...AudioTimeFonts,...AudioAudioWaveFonts,...AudioMidiFonts,...RivitFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLBtgo2SmF\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"592\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UzpRnnP6F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pIpl0GRJ3\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"406\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "81BAEA,IAAMA,GAAU,KAaE,SAARC,GAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,EAAa,cAAAC,EAAc,mBAAAC,EAAmB,aAAAC,CAAY,EAAEvB,EAAoB,CAAC,YAAAwB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,EAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,GAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,EAAkB,CAAC,iBAAA6B,EAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,EAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAsBsC,GAAajD,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,GAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,GAAc7D,EAAM,OAAO,OAAO,EAAQ8D,GAAYC,GAAS,MAAMF,EAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,GAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAYd,GAAc,IAAIe,GAAoBC,GAAU,CAAC,EAAI,CAAChB,EAAa,CAAC,EAAQiB,GAAWL,EAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAE1iBS,GAAc,CAAC,EAAMC,GAAY,EAAKhC,KAAUgC,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAACC,GAAK,KAAK,IAAI,CAAC,GAAGhC,IAAaU,GAAU,QAAQ,CAAC,IAAMuB,EAAMlC,GAAc,OAAO,EAAQmC,GAAahC,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmByB,GAAMvB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNwB,IAA1MxB,EAAYqB,CAAK,EAAE,QAAQ/B,EAAaU,EAAYqB,CAAK,EAAE,QAAQ,WAAWrB,EAAYqB,CAAK,EAAE,QAAQ,YAAYrB,EAAYqB,CAAK,EAAE,QAAQ,UAAUrB,EAAYqB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAM1F,EAAU4F,GAASzB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQ0B,GAAU1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ2B,GAAW3B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAEM,GAAQ,CAAC,OAAOgB,GAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,EAAU,CAAC,EAAG,CAAC,CAAE,EAAE,CAACvC,EAAW,CAAC,EAG17BwC,GAAgB,IAAI,CAAIxC,IAAY8B,GAAQ,CAAE,EAAE,CAAC9B,GAAYhD,CAAU,CAAC,EAGxE,IAAIyF,GAAc9B,EAAO,EAAI,EAAE+B,GAAU,IAAYC,GAAOjC,GAAU,QAAQ,CAAC,CAAC,YAAAkC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASd,GAAQ,EAAEH,GAAc,EAAI,GAAGc,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGhB,GAAW,CAAC,IAAMmB,EAAM,WAAW,IAAIlB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAakB,CAAK,EAAG,EAAE,CAACnB,EAAU,CAAC,EAExW,IAAMoB,GAA+D/C,IAAc,OAAagD,GAAalD,GAAS,EAAoCoB,GAAK,SAAe+B,GAA+C/B,GAAK,KAAMxE,EAAUwG,GAAW9G,EAAU6G,GAAiB,CAACE,GAAYC,EAAc,EAAEhC,GAAShF,EAAU2G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAElC,GAAS,EAAK,EAAyGmC,GAAUC,GAAkB,EAAQC,GAAOrD,GAAW,EAAE,GAA+CsD,GAAKC,GAAeX,EAAY,EAAuEY,GAAezD,EAAa,CAAC/D,GAA8C8E,GAAK,UAAWxE,GAAK,CAACN,GAA8C8E,GAAK,WAAYxE,GAAsDmH,GAAY,IAAIJ,GAAON,GAAYF,GAAwIa,GAAchE,GAA8H,EAArHiE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,GAAQC,GAAK,CAAClB,GAAa,CAACA,GAAa,EAAEgB,CAAK,EAAE,OAAO,MAAMC,EAAO,EAAE,EAAEA,EAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEnB,GAAWI,EAAW,EAAQiB,GAAqBF,GAAK,EAAE,CAACnB,GAAWI,EAAW,EAAqHV,GAAgB,IAAI,CAAuCvB,GAAK,WAAY,MAG3hD,CAACwB,GAAc,SAASf,IAAY+B,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAAC3C,EAAK8B,GAAaS,GAAOP,GAAWC,GAAYF,GAAYtB,EAAU,CAAC,EAG3G,IAAM0C,GAAY,IAAI,CAAIvE,IAAU,CAACG,IAAa,CAACiB,EAAK,QAAQmC,KAAqBK,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAEzG,CAAiB,EAAMb,GAAiBgF,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACmC,GAAeD,GAAY,CAAC,EAAEkB,GAAY,CAAE,EAAElH,EAAgB,GAAG,GAAG,EAAuCoH,GAASC,GAAO,CAAyDpB,GAApDhD,GAAmE+C,GAAYqB,EAApDrB,GAAYqB,CAA6C,CAAG,EAAQC,GAAQ1D,GAAO,CAAC,IAAM2D,GAAmBR,GAAK,EAAEnB,GAAWI,EAAW,EAAQwB,GAAyBT,GAAK,EAAE,CAACnB,GAAWI,EAAW,EAAQyB,GAAK7D,EAAM2D,GAAyBG,GAAa9D,EAAM,KAAK,IAAI4D,EAAwB,EAAyDvB,GAAnDhD,GAAkE+C,GAAY0B,GAAnD1B,GAAYyB,EAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAACxB,GAAc,EAAI,CAAE,EAAQyB,GAAc,CAACC,EAAM,CAAC,OAAAC,GAAO,SAAAC,EAAQ,IAAI,CAAC5B,GAAc,EAAK,EAAE,IAAM6B,GAAWhF,EAAa8E,GAAO,EAAEA,GAAO,EAAQG,GAAkB,IAC9LC,GAAalF,EAAa+E,GAAS,EAAEA,GAAS,EAAQI,GAAaH,GAAW,CAACjE,EAAK,KAAK,EAAQqE,GAAaJ,GAAWjE,EAAK,KAAK,EAA6DsE,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiBtE,EAAK,IAAI,EAAqFwE,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgE9C,GAAU,IAAI,CAAC,GAAG,GAACY,IAAW5B,IAAkB,OAAA0C,GAAY,EAAQ,IAAIpD,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAc0B,GAAU5B,EAAU,CAAC,EAA8D,IAAIgE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAI3I,QAAiBP,SAAWA,EAAIO,OAInE,QAAQ8D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAIF,GAAc,CAAC6F,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAIlF,EAAY,CAAC,GAAMiF,KAAa9F,GAAc,OAAO,IAAG+F,GAAIlF,EAAY,CAAC,GAAuBN,EAAKyF,GAAM,CAAC,IAAInF,EAAYiF,EAAU,EAAE,SAAS/E,EAAM+E,GAAW,KAAK,MAAM/E,EAAM,MAAMZ,GAAalD,EAAW,EAAE2I,GAAwB,OAAO,OAAQzF,EAAkD,OAArClD,EAAW,EAAE2I,GAAiB,OAAc,KAAK1E,EAAK,MAAM2E,GAAM,YAAgE7F,IAAc,OAAO,aAAa8D,GAAa,aAAa6B,KAAe,IAAIjJ,EAAI,SAASoD,GAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,EAAa,cAAcC,EAAc,SAASoD,EAAM+E,EAAU,EAAE/E,EAAM+E,GAAW,IAAI,CAAE,CAAC,CAAC,EAEhyB,IAAMG,GAAc9F,EAAa,WAAW,YAAkB+F,GAAelI,EAAU,EAAQmI,GAAa,IAAInI,EAAU,EAAQoI,GAAeC,GAAMpI,EAAU,EAAEiI,EAAc,EAAQI,GAAa,IAAIrI,EAAgBsI,GAAS,mBAAmBN,qBAAgC/H,MAAckI,yBAAqCF,yBAAqCC,sBAAgCjI,MAAcoI,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGvH,EAAiB,CAAC,QAAQwH,EAAE,EAAEA,EAAuD1G,IAAc,OAAQ0G,IAAKF,GAAK,KAAkBjG,EAAKoG,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMzH,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAYqH,GAAiB,gBAAgBnH,GAAkB,QAAQC,GAAY,QAAQ,IAAI8E,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMrB,GAAW,MAAM2D,EAAE,IAAInH,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,EAAU,EAAEsG,CAAC,CAAC,EAAM9G,GAAS,IAAG6G,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ7G,SAAgB,IAAMkH,GAAUtK,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAY2E,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAYpI,KAAgB,YAAYA,KAAgB,WAAWA,KAAgB,YAAkBqI,GAAerI,KAAgB,eAAeA,KAAgB,cAAcA,KAAgB,eAAqBsI,GAAatI,KAAgB,YAAYA,KAAgB,cAAoBuI,GAAcvI,KAAgB,aAAaA,KAAgB,eAAqBwI,GAAYxI,KAAgB,WAAWA,KAAgB,cAAcA,KAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAG+G,GAAe,QAAQvH,GAAa,gBAAgB/B,EAAYyI,GAAS,OAAU,aAAazI,EAAYyI,GAAS,OAAU,UAAUzI,EAAYyI,GAAS,OAAU,QAA2CrF,GAAK,OAAQ,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,GAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,GAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAYwD,GAAO,CACtyDA,EAAM,eAAe,EAAEtD,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,SAAS,CAAcnB,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,EAAS,UAAU,SAAS,aAAaT,EAAa,WAAW,OAAO,YAAYwC,GAAS,OAAOlC,CAAkB,EAAE,SAAsB2C,EAAK8G,EAAO,GAAG,CAAC,IAAI1G,GAAU,GAAGmG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAI1K,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,GAAS8D,GAAeE,GAAa,EAAE,EAAG3D,EAAkD,EAArCL,GAAS8D,GAAeE,GAAe,cAAc3D,EAAa,MAAM,SAAS,eAAexC,IAAgB,GAAG,CAACmC,GAAS,cAAc,OAAU,OAAOtD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,CAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGiH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcjH,EAAMgH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAclH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB1C,GAAU,EAAE,WAAW,SAAS,MAAM4C,GAAa,IAAIH,GAAiBG,GAAamI,GAAYjI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAaqI,GAAahI,GAAiBkI,GAAY,EAAE,QAAQ,MAAM1I,GAAiBG,GAAasI,GAAcnI,GAAkBoI,GAAY,EAAE,QAAQ,OAAO1I,GAAiBG,GAAaoI,GAAehI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ2C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcmD,EAAK8G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBvI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIoG,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBhE,EAAK,MAAM,CAAC,MAAMnC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAK8G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBvI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIoG,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBhE,EAAK,MAAM,CAAC,MAAMnC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgI,GAAK,OAAO,EAAejG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgH,GAAmB,KAAKpH,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,EAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGgH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBvK,GAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyBuL,EAAoBvL,GAAU,CAAC,MAAM,CAAC,KAAKwL,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAaxL,GAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKwL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAOvL,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAKuL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAaxL,GAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKwL,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAaxL,GAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKwL,EAAY,OAAO,MAAM,QAAQ,aAAaxL,GAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKwL,EAAY,OAAO,MAAM,cAAc,aAAaxL,GAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKwL,EAAY,OAAO,MAAM,SAAS,aAAaxL,GAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKwL,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAaxL,GAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKwL,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAaxL,GAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKwL,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAaxL,GAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKwL,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuL,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKuL,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAaxL,GAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKwL,EAAY,MAAM,MAAM,OAAO,OAAOvL,GAAO,CAACA,EAAM,kBAAkB,aAAaD,GAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKwL,EAAY,MAAM,MAAM,WAAW,OAAOvL,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKuL,EAAY,MAAM,MAAM,OAAO,OAAOvL,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKuL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAaxL,GAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKuL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOvL,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAKuL,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAOvL,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAKuL,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAaxL,GAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAKuL,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAKuL,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAKuL,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAKuL,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAKuL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKuL,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKuL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKuL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKuL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKuL,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKuL,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKuL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKuL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKuL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKuL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOvL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMkL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8B9G,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA4BmG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,EAAW,SAAmB3L,EAAM6J,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAA3E,EAAK,IAAAxE,EAAI,aAAAoH,EAAa,YAAAqE,EAAY,aAAAxC,EAAa,SAAA7F,EAAS,QAAAsI,EAAQ,eAAA3K,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAkI,EAAO,MAAAtH,CAAK,EAAE7E,EAErjaoM,GAAgDpH,GAAK,KAAMxE,GAAKiJ,EAAmB4C,EAAY,CAAC,CAAoCrH,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMxE,EAAsCwE,GAAK,MAAM,EAAE,IAAIsH,GAAKA,EAAIF,CAAW,EAE1TG,EAAQ,CAAC3I,GAAUiE,GAAaD,EAAayE,EAAY,CAAC,CAAC5K,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQ+K,EAAQ,CAAC5I,GAAUiE,GAAaD,EAAayE,EAAY,CAAC5K,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQgL,EAAQ,CAAC7I,GAAUiE,GAAaD,EAAayE,EAAY,CAAC9K,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQmL,EAAM,CAAC9I,GAAUiE,GAAaD,EAAayE,EAAY,CAAC7K,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQmL,EAAW,CAAC/I,GAAUiE,GAAaD,EAAayE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,EAAU,CAACzD,GAAUiE,GAAaD,EAAagF,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE,OAAA5F,GAAU,IAAI,CAAC,GAAIY,EAAiB,OAAOA,EAAU,SAASwF,GAAU,CAAC,IAAIC,GAAcA,EAAajD,EAAI,WAAW,MAAMiD,IAAe,QAAcA,EAAa,aAAa,cAAc,CAACD,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAsBxI,EAAK0I,EAAY,CAAC,QAAQ,KAAK,SAAsB1I,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,IAAQ,EAAa,SAAsBmI,GAAarD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,EAAQ,MAAMC,EAAM,QAAQzI,EAAa0I,EAAW,GAAG,QAAS1I,EAAwB,GAAX0I,EAAc,QAAQ1I,EAAasI,EAAQ,EAAE,QAAStI,EAAqB,EAARuI,CAAS,EAAE,SAAS7C,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAa9E,EAAM,MAAS,GAAGgH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAAwC,EAAgB,QAAAR,EAAQ,MAAAzG,EAAM,MAAAnB,EAAM,aAAAoD,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAAwC,EAAY,IAAA1M,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,CAAK,EAAE,CAA8C,IAAImN,EAAWlF,IAAepD,EAAuDX,IAAYiJ,EAAW,KAAK,IAAIjF,CAAoB,IAAIrD,GAAO,IAAMuI,EAAc5M,EAAI,EAAM6M,EAAI,CAACpJ,GAAcY,EAAM,EAAEuI,EAAc3M,EAAY6M,EAAO,CAACrJ,GAAcY,IAAQmB,EAAM,EAAEoH,EAAc3M,EAAY8M,EAAMtJ,GAAcY,IAAQmB,EAAM,EAAEoH,EAAc3M,EAAY+M,EAAKvJ,GAAcY,EAAM,EAAEuI,EAAc3M,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG7E,EAAM,MAAM,CAAC,GAAGkN,EAAY,QAAQ,GAAGG,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAsBnJ,EAAK8G,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQyC,EAAWF,EAAgBR,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,EC1D3pF,SAAS+C,GAASC,EAAO,CAC5B,OAAqBC,EAAKC,EAAO,IAAK,CAClC,GAAGF,EACH,MAAO,6BACP,QAAS,YACT,SAAwBC,EAAK,OAAQ,CACjC,EAAG,4RACH,KAAM,MACV,CAAC,CACL,CAAC,CACL,CACO,SAASE,GAAUH,EAAO,CAC7B,OAAqBI,EAAMF,EAAO,IAAK,CACnC,GAAGF,EACH,MAAO,6BACP,QAAS,YACT,SAAU,CACQC,EAAK,OAAQ,CACvB,EAAG,4HACH,KAAM,SACV,CAAC,EACaA,EAAK,OAAQ,CACvB,EAAG,sIACH,KAAM,SACV,CAAC,CACL,CACJ,CAAC,CACL,CC7B6rB,IAAMI,GAAcC,GAAGA,aAAaC,GAAgBC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,YAAAC,EAAY,UAAAC,CAAS,EAAEF,EAAW,CAACG,EAASC,CAAW,EAAEC,GAAS,MAAM,EAAE,OAAAC,GAAU,IAAI,CAACF,EAAYG,GAAiBL,CAAS,CAAC,CAAE,EAAE,CAACA,CAAS,CAAC,EAAEM,GAAYP,EAAYQ,GAAQ,CAACL,EAAYG,GAAiBE,CAAM,CAAC,CAAE,CAAC,EAAuBC,EAAKC,GAAU,CAAC,SAASR,CAAQ,CAAC,CAAE,CAAC,IAAMS,GAAeC,GAAQA,EAAO,SAAS,CAACA,EAAO,QAAQ,QAAQ,CAACA,EAAO,QAAQ,OAAOA,EAAO,QAAQ,WAAW,EAUpvC,SAASC,GAAMd,EAAM,CAAC,GAAK,CAAC,QAAAe,EAAQ,WAAAC,EAAW,cAAAC,EAAc,YAAAC,EAAY,IAAAC,EAAI,WAAAC,EAAW,OAAAC,EAAO,QAAAC,EAAQ,QAAAC,EAAQ,KAAAC,EAAK,KAAAC,EAAK,SAAAC,EAAS,SAAAC,EAAS,OAAAC,EAAO,SAAAC,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,cAAAC,EAAc,aAAAC,EAAa,WAAAC,EAAW,OAAAC,EAAO,QAAAC,EAAQ,MAAAC,EAAM,YAAAC,EAAY,wBAAAC,CAAuB,EAAEvC,EAC3R,CAACwC,EAAUC,CAAY,EAAEpC,GAAS,EAAK,EAAO,CAACqC,EAASC,CAAW,EAAEtC,GAAS,CAAC,EAC9EQ,EAAO+B,EAAO,EAAQC,EAAWD,EAAO,CAAC,MAAM,GAAM,UAAU,IAAI,CAAC,EACpEE,EAAcC,GAAmBpB,EAAS,CAAC,UAAUqB,GAAOA,EAAM,IAAI,SAAS,CAACC,EAASD,KAAQ,CAAInC,EAAO,QAAQ,WAAUA,EAAO,QAAQ,YAAYoC,EAASpC,EAAO,QAAQ,SAASqC,GAAsB,YAAY,EAAG,CAAC,CAAC,EAAQC,GAAQC,GAAWpD,CAAK,EAAQqD,GAAaC,GAAUtD,CAAK,EAAO,CAAC,SAAAuD,CAAQ,EAAEC,GAAgBxD,CAAK,EAAQyD,GAAWC,GAAa,QAAQ,IAAIA,GAAa,QAAcC,GAAmBpB,IAA0B,QAAcqB,GAAItC,IAAUxB,GAAQ,IAAIuB,EAAOE,EAAcsC,GAAeJ,IAAY1C,EAExhBmC,GAAsBY,GAAYC,GAAG,CAAC,IAAIC,GAAIC,GAAK,IAAMC,GAAgBrD,EAAO,QAAQ,SAAeZ,GAAYY,EAAO,QAAQ,YAAgN,IAAnMmD,GAAInB,EAAW,WAAW,MAAMmB,KAAM,SAAeC,GAAKD,GAAI,aAAa,MAAMC,KAAO,QAAcA,GAAK,KAAK,EAAK,KAAK,IAAIhE,GAAY6C,EAAc,IAAI,CAAC,EAAE,IAAIA,EAAc,IAAI7C,EAAW,EAAM,CAACwD,GAAW,OAAO,IAAMU,GAAavD,GAAeC,CAAM,EAAK2B,IAAY2B,IAAa1B,EAAa0B,EAAY,EAAKA,IAAcV,KAAYZ,EAAW,QAAQ,UAAUuB,GAAQtB,EAAcoB,GAAgB,CAAC,KAAK,QAAQ,KAAK,SAAS,SAASA,GAAgBjE,EAAW,CAAC,EAAG,EAAE,CAACwD,GAAWjB,CAAS,CAAC,EAAQ6B,GAAqB,IAAI,CAA2B,SAAS,iBAAiB,eAAe,EAAsB,QAAQC,IAAI,CAACA,GAAG,MAAM,CAAE,CAAC,CAAE,EAE3xBC,GAAU,IAAI,CAAId,IAAW5C,EAAO,QAAQ,KAAK,EAAE,MAAM2D,GAAG,CAAC,CAAC,CACnE,EAAQC,GAAW,IAAI,CAAC,IAAIT,EAAIC,GAAKpD,EAAO,QAAQ,MAAM,GAAGmD,EAAInB,EAAW,WAAW,MAAMmB,IAAM,SAAeC,GAAKD,EAAI,aAAa,MAAMC,KAAO,QAAcA,GAAK,KAAK,CAAE,EAAQS,GAAe,IAAI,CAAIxC,GAAWA,EAAW,CAAC,SAASrB,EAAO,QAAQ,QAAQ,CAAC,EAAE8B,EAAY9B,EAAO,QAAQ,QAAQ,CAAE,EAAQ8D,GAAa,IAAI,CAAKhF,GAAcgC,CAAQ,IAAEd,EAAO,QAAQ,YAAYc,EAAS,IAAId,EAAO,QAAQ,SAAS,EAAQ+D,GAAY,IAAI,CAExb/B,EAAW,QAAQ,QAAUgB,IAAeU,GAAU,EAAE1B,EAAW,QAAQ,MAAM,GAAK8B,GAAa,EAAG,EACpGE,GAAWC,GAAK,CAAIjE,EAAO,QAAQ,cAAaA,EAAO,QAAQ,YAAYiE,EAAI5B,GAAsB,YAAY,EAAG,EAAQ6B,EAAU,IAAI,CAAI1C,GAAMA,EAAM,CAAE,EAAQ2C,GAAgB,IAAI,CAAIrB,IAAmBU,GAAqB,EAAEE,GAAU,CAAE,EACxPjE,GAAU,IAAI,CAAImD,GACf1C,IAAU,GAAKwD,GAAU,EAAOE,GAAW,EAC5BhC,EAAf1B,IAAU,EAAsB,CAA4B,EAAE,CAACA,CAAO,CAAC,EAAET,GAAU,IAAI,CAAC,IAAI0D,EAC3F,GAAAA,EAAInD,EAAO,WAAW,MAAMmD,IAAM,SAAcA,EAAI,UAASrB,EAAY9B,EAAO,QAAQ,QAAQ,CAAE,EAAE,CAAC,CAAC,EAC1GP,GAAU,IAAI,CAAIuC,EAAW,QAAQ,OAAOL,GAAWL,EAAOA,EAAO,EAAUU,EAAW,QAAQ,OAAOT,GAAQA,EAAQ,CAAE,EAAE,CAACI,CAAS,CAAC,EACxIlC,GAAU,IAAI,CAACO,EAAO,QAAQ,OAAOe,EAAO,GAAI,EAAE,CAACA,CAAM,CAAC,EAC1DtB,GAAU,IAAI,CAACuC,EAAW,QAAQ,MAAM,EAAM,EAAE,CAACtB,EAAQD,EAAQD,CAAM,CAAC,EACxE4D,GAAW,IAAI,CAAIpB,IAAeU,GAAU,CAAE,CAAC,EAAEW,GAAU,IAAI,CAAI5C,GAAYzB,EAAO,QAAQ,MAAM,CAAE,CAAC,EAAEsE,GAAoBrC,EAAc,SAASgC,GAAK,CAAC,IAAId,GAAI,IAAMoB,GAAkB,GAAApB,GAAInD,EAAO,WAAW,MAAMmD,KAAM,SAAcA,GAAI,SAAUc,EAAIjE,EAAO,QAAQ,SAAS,IAAI,KAAQoB,GAAcA,EAAa6C,EAAIM,GAAgB7E,GAAiBuE,CAAG,CAAC,CAAG,CAAC,EAAE,IAAMO,GAAWC,EAAQ,KAAK,CAAC,YAAYzD,GAAUC,EAAUX,EAAI,EAAE,WAAW,EAAE,OAAOY,CAAe,GAAG,CAACA,EAAgBF,EAASC,EAAUX,CAAG,CAAC,EAAE,OAAqBoE,EAAM,MAAM,CAAC,MAAM,CAAC,GAAGC,GAAgB,SAAS,WAAW,SAAS,SAAS,WAAAxE,EAAW,QAAAmC,GAAQ,aAAAE,EAAY,EAAE,SAAS,CAAe3C,EAAK,QAAQ,CAAC,IAAIkD,GAAI,KAAKpC,EAAK,UAAU,eAAe,IAAIX,EAAO,QAAQ,WAAW,SAASgD,GAAe,iBAAiBa,GAAe,iBAAiBE,GAC1zB,UAAU,IAAI1B,GAAsB,cAAc,EAAE,OAAO,IAAIA,GAAsB,WAAW,EAAE,SAAS,IAAIA,GAAsB,WAAW,EAAE,QAAQ,IAAIA,GAAsB,YAAY,EAAE,QAAQ,IAAI6B,EAAU,CAAC,CAAC,EAAE/C,GAA6BtB,EAAKC,GAAU,CAAC,SAAS6B,EAAwB9B,EAAK+E,GAAU,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,QAAQ,IAAIhB,GAAW,EAAE,MAAMY,GAAW,aAAa,aAAa,CAAC,EAAgB3E,EAAKgF,GAAS,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,QAAQV,GAAgB,MAAMK,GAAW,aAAa,YAAY,CAAC,CAAC,CAAC,EAAExD,GAAwB0D,EAAM,IAAI,CAAC,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,WAAW,IAAI,cAAc,KAAK,OAAO,EAAE,WAAW,EAAE,WAAWI,GAAU,mBAAmB,eAAe,YAAY7D,EAAUX,EAAI,EAAE,GAAGM,CAAI,EAAE,SAAS,CAAef,EAAKX,GAAS,CAAC,UAAU2C,GAAU/C,GAAcgC,CAAQ,EAAEA,EAAS,IAAI,EAAEA,EAAS,KAAK,YAAYmB,CAAa,CAAC,EAAgBpC,EAAK,OAAO,CAAC,MAAM,CAAC,QAAQ,OAAO,EAAE,SAAS,GAAG,CAAC,EAAEgC,EAAS,EAAEnC,GAAiBmC,CAAQ,EAAE,MAAM,CAAC,CAAC,EAAEZ,GAAyBpB,EAAKkF,GAAO,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM9C,EAAc,UAAU7B,EAAc,YAAY,QAAQ,OAAO,gBAAgB,SAAS,GAAG,UAAUA,EAAc,SAAS4D,GAAW,oBAAoB,GAAM,IAAI,EAAE,IAAInC,EAAS,WAAWtB,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAACN,GAAM,aAAa,CAAC,WAAW,UAAU,WAAW,UAAU,KAAK,CAAC,SAAS,EAAE,EAAE,cAAc,UAAU,OAAO,yEAAyE,QAAQhB,GAAQ,IAAI,YAAY,GAAK,aAAa,EAAE,QAAQ,GAAG,SAAS,EAAE,OAAO,GAAG,KAAK,GAAM,QAAQ,GAAK,SAAS,GAAK,SAAS,GAAK,UAAU,GAAK,cAAc,GAAK,wBAAwB,WAAW,YAAY,EAAE,IAAI,GAAG,OAAO,GAAG,MAAM,GAAG,EAAE+F,EAAoB/E,GAAM,CAAC,QAAQ,CAAC,KAAKgF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAChG,GAAQ,IAAIA,GAAQ,KAAK,CAAC,EAAE,OAAO,CAAC,KAAKgG,EAAY,OAAO,MAAM,IAAI,YAAY,kBAAkB,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAUF,GAAQ,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKgG,EAAY,KAAK,MAAM,IAAI,iBAAiB,CAAC,MAAM,MAAM,MAAM,KAAK,EAAE,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAUF,GAAQ,GAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKgG,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAMxvE,SAAS,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,EAAE,cAAc,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAahF,GAAM,aAAa,aAAa,EAAE,WAAW,CAAC,MAAM,QAAQ,KAAKgF,EAAY,MAAM,aAAahF,GAAM,aAAa,UAAU,EAAE,WAAW,CAAC,MAAM,SAAS,KAAKgF,EAAY,MAAM,aAAahF,GAAM,aAAa,UAAU,EAAE,KAAK,CAAC,MAAM,OAChb,KAAKgF,EAAY,KAAK,gBAAgB,EAAI,EAAE,GAAGC,GAAe,GAAGC,GAAoB,IAAI,CAAC,KAAKF,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,EAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,OAAO,cAAc,MAAM,EAAE,gBAAgB,CAAC,KAAKA,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,UAAU,SAAS,EAAE,aAAa,CAAC,UAAU,SAAS,EAAE,aAAa,UAAU,OAAO9F,EAAM,CAAC,MAAM,CAACA,EAAM,aAAc,CAAC,EAAE,UAAU,CAAC,KAAK8F,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,OAAO,cAAc,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,UAAU,EAAE,wBAAwB,CAAC,KAAKA,EAAY,KAAK,MAAM,UAAU,QAAQ,CAAC,WAAW,OAAO,EAAE,aAAa,CAAC,eAAe,WAAW,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,ECpCrb,IAAMG,GAAeC,EAASC,EAAS,EAAQC,GAAYC,GAAOC,EAAK,EAAQC,GAAWL,EAASM,EAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWR,GAAmCK,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,WAAW,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,WAAAC,EAAW,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGJ,EAAM,UAAUJ,GAAmCI,EAAM,UAAU,WAAWC,EAAKJ,GAAkDG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,iBAAiB,UAAUR,GAAmCO,EAAM,UAAU,WAAWE,EAAMJ,GAAsCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,yEAAyE,SAASE,GAAOD,EAAuCZ,GAAwBS,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACL,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAUmC,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASQ,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,GAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiBzB,GAAuBL,EAAM7B,CAAQ,EAAO,CAAC,sBAAA4D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKV,GAAqB,MAAMA,EAAU,GAAGkB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAiBL,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBxD,EAAKyD,EAAY,CAAC,GAAG9B,GAA4CyB,EAAgB,SAAsBpD,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKR,GAAW,CAAC,MAAML,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUqB,GAAG9E,GAAkB,GAAG0E,EAAsB,gBAAgB5B,EAAUS,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAI1B,GAA6B6B,EAAK,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,uMAAuM,GAAGzB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,sEAAsE,CAAC,EAAE,GAAG3C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAsBqB,EAAMzD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK4D,EAA0B,CAAC,MAAM,OAAO,SAAsB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAK3B,GAAU,CAAC,UAAU4E,EAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGnE,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK1B,GAAY,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAGc,GAAkB2C,CAAS,CAAC,EAAE,UAAU,iBAAiB,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,UAAU,gMAAgM,EAAE,GAAG7D,GAAqB,CAAC,UAAU,CAAC,eAAeS,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,CAAC,CAAC,EAAE4C,EAAYI,CAAc,CAAC,CAAC,EAAetC,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAsB3C,EAAKtB,GAAM,CAAC,WAAW,qBAAqB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,KAAK,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAM,wBAAwB,QAAQ,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,YAAY,GAAK,QAAQ,GAAM,gBAAgB,UAAU,SAAS,EAAE,cAAc,kBAAkB,cAAc,GAAK,SAAS,GAAK,UAAU,GAAK,QAAQ,MAAM,OAAOkD,EAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,WAAW,qBAAqB,OAAO,IAAI,MAAM,OAAO,GAAG9C,GAAqB,CAAC,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAsB3C,EAAK6D,GAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,gFAAgF,wWAAwW,gRAAgR,yGAAyG,6XAA6X,4MAA4M,yRAAyR,yMAAyM,ukCAAukC,EASn0XC,GAAgBC,GAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,yEAAyE,YAAY,kBAAkB,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5F,GAAe,GAAGM,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT9jB,IAAM4F,GAAuBC,EAASC,EAAiB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAMC,GAAkCA,GAAQ,MAAMA,IAAQ,GAAWC,GAAkBD,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBE,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWP,GAAmCI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,UAAU,YAAY,SAAS,YAAY,SAAS,YAAY,SAAS,YAAY,SAAS,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,aAAAC,EAAa,YAAAC,EAAY,WAAAC,EAAW,aAAAC,EAAa,YAAAC,EAAY,WAAAC,EAAW,aAAAC,EAAa,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAMC,EAAMC,EAAMC,EAAO,MAAM,CAAC,GAAGZ,EAAM,UAAUX,GAAwDW,EAAM,UAAU,WAAWC,EAAKX,GAAqDU,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,6BAA6B,UAAUf,GAAwDc,EAAM,UAAU,WAAWE,EAAMP,GAAqDK,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,kCAAkC,WAAWC,EAAMN,GAAqDG,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,yCAAyC,WAAWC,EAAMhB,GAAkDY,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,gHAAgH,WAAWC,EAAMT,GAAkDI,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,4GAA4G,WAAWC,EAAMnB,GAAqDa,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,6BAA6B,UAAUd,GAAwDQ,EAAM,UAAU,WAAWO,EAAMhB,GAAkDS,EAAM,aAAa,MAAMO,IAAQ,OAAOA,EAAM,8GAA8G,SAASE,GAAOD,EAAuC1B,GAAwBkB,EAAM,OAAO,KAAK,MAAMQ,IAAyC,OAAOA,EAAuCR,EAAM,WAAW,MAAMS,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMhB,GAAkDM,EAAM,aAAa,MAAMU,IAAQ,OAAOA,EAAM,kHAAkH,WAAWC,EAAMb,GAAkDE,EAAM,aAAa,MAAMW,IAAQ,OAAOA,EAAM,yEAAyE,WAAWC,EAAOnB,GAAqDO,EAAM,aAAa,MAAMY,IAAS,OAAOA,EAAO,8BAA8B,CAAE,EAAQC,GAAuB,CAACb,EAAMrC,IAAeqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAEqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAUmD,GAA6BC,EAAW,SAASf,EAAMgB,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzD,EAAQ,UAAA0D,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAErD,GAASiB,CAAK,EAAO,CAAC,YAAAqC,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjF,CAAQ,EAAEkF,GAAgB,CAAC,WAAAvF,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsF,EAAiBjC,GAAuBb,EAAMrC,CAAQ,EAAO,CAAC,sBAAAoF,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAgBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAiBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAgBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAgBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAiBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAWC,EAAO,IAAI,EAAQC,GAAQ5F,GAAM0D,CAAS,EAAQmC,GAAS7F,GAAM6D,CAAS,EAAQiC,GAAS9F,GAAMgE,CAAS,EAAQ+B,GAAS/F,GAAMkE,CAAS,EAAQ8B,GAAShG,GAAMoE,CAAS,EAAQ6B,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB1F,EAAK2F,EAAY,CAAC,GAAG/C,GAA4C0C,GAAgB,SAAsBtF,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKR,GAAW,CAAC,MAAMJ,GAAY,SAAsBY,EAAKE,EAAO,IAAI,CAAC,GAAGwD,EAAU,GAAGI,EAAgB,UAAU8B,GAAG/G,GAAkB,GAAG2G,GAAsB,iBAAiB7C,EAAUiB,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI9B,GAA6ByC,GAAK,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGrC,CAAK,EAAE,GAAG3D,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE4E,EAAYI,CAAc,EAAE,SAAsB8B,EAAM3F,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,+OAA+O,EAAE,SAAS,CAAcpE,EAAK8F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiB1B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAeyB,EAAM3F,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAACa,IAAsBjF,EAAK+F,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBkE,EAAiB,SAAS,sBAAsB,SAAsBpE,EAAKrB,GAAkB,CAAC,UAAUY,GAAkBsD,CAAS,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUC,EAAU,UAAU0B,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUzB,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,UAAU2F,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,IAAuBlF,EAAK+F,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBkE,EAAiB,SAAS,sBAAsB,SAAsBpE,EAAKrB,GAAkB,CAAC,UAAUY,GAAkByD,CAAS,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUC,EAAU,UAAU0B,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUzB,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAGnE,GAAqB,CAAC,UAAU,CAAC,UAAU2F,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,IAAuBnF,EAAK+F,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBkE,EAAiB,SAAS,sBAAsB,SAAsBpE,EAAKrB,GAAkB,CAAC,UAAUY,GAAkB4D,CAAS,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUC,EAAU,UAAUwB,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUvB,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAGtE,GAAqB,CAAC,UAAU,CAAC,UAAU2F,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,IAAuBpF,EAAK+F,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBkE,EAAiB,SAAS,sBAAsB,SAAsBpE,EAAKrB,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU2E,EAAU,UAAUuB,GAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUtB,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAGxE,GAAqB,CAAC,UAAU,CAAC,UAAU2F,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,IAAuBrF,EAAK+F,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBkE,EAAiB,SAAS,sBAAsB,SAAsBpE,EAAKrB,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU6E,EAAU,UAAUsB,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUrB,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAG1E,GAAqB,CAAC,UAAU,CAAC,UAAU2F,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiC,GAAI,CAAC,kFAAkF,kFAAkF,gUAAgU,4UAA4U,uJAAuJ,0RAA0R,2QAA2Q,wzBAAwzB,EAS1lbC,GAAgBC,GAAQ9D,GAAU4D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,SAAS,SAAS,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,6BAA6B,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,gHAAgH,YAAY,kBAAkB,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,6BAA6B,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,8GAA8G,YAAY,kBAAkB,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,+BAA+B,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kHAAkH,YAAY,kBAAkB,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kCAAkC,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4GAA4G,YAAY,kBAAkB,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yCAAyC,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yEAAyE,YAAY,kBAAkB,MAAM,gBAAgB,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGxH,EAAsB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTrjD,IAAM8H,GAAsBC,EAASC,EAAgB,EAAQC,GAAWF,EAASG,EAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAyCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,OAAO,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiBrB,GAAuBJ,EAAM3B,CAAQ,EAAQqD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAalB,GAAuBA,EAAS,EAAQmB,EAAkBC,GAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUe,GAAGjE,GAAkB,GAAG6D,EAAsB,gBAAgBlB,EAAUK,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGf,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBe,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,qTAAqT,EAAE,SAAS,CAAcU,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,+OAA+O,EAAE,SAAS,CAAcnC,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAenC,EAAK+C,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,eAAe,iBAAiBiC,EAAiB,SAAS,sBAAsB,KAAK,eAAe,SAAsBnC,EAAKzB,GAAiB,CAAC,UAAUY,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,WAAW,UAAUA,GAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,UAAU,GAAG,UAAU,GAAG,UAAU,iHAAiH,OAAO,OAAO,UAAU,GAAG,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,KAAK,eAAe,UAAUA,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,oHAAoH,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,uHAAuH,UAAU,GAAG,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAY7C,GAAoBkC,CAAS,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcxB,EAAKgD,GAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAKgD,GAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0IAA0I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAK+C,EAA0B,CAAC,MAAM,MAAM,SAAsB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK+C,EAA0B,CAAC,MAAM,MAAM,SAAsB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK+C,EAA0B,CAAC,MAAM,MAAM,SAAsB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAK+C,EAA0B,CAAC,MAAM,MAAM,SAAsB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwE,GAAI,CAAC,kFAAkF,gFAAgF,yTAAyT,0UAA0U,2UAA2U,sJAAsJ,qHAAqH,oVAAoV,kMAAkM,wIAAwI,wIAAwI,2IAA2I,0IAA0I,48BAA48B,wEAAwE,qFAAqF,8EAA8E,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASp2bC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,OAAO,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7E,GAAsB,GAAGG,GAAW,GAAGgF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTz3D,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,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,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,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,KAAK,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBrB,GAAuBJ,EAAMvB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAmBH,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAmBL,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBhD,EAAKiD,EAAY,CAAC,GAAG1B,GAA4CqB,EAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUqB,GAAGnE,GAAkB,GAAG+D,EAAsB,iBAAiBxB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAmB,IAAItB,GAA6ByB,EAAK,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,6MAA6M,GAAGrB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,UAAU,6MAA6M,CAAC,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,aAAawD,CAAkB,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsB9B,EAAKmD,GAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,MAAM,sBAAsB,mDAAmD,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,kFAAkF,wRAAwR,+JAA+J,8WAA8W,EASnkMC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTpY,IAAMM,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,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,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,mBAAmB,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKJ,GAAyCG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,YAAY,UAAUP,GAAsCM,EAAM,UAAU,UAAUP,GAAmCO,EAAM,UAAU,WAAWE,EAAMJ,GAAyCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,QAAQ,SAASE,GAAOD,EAAuCZ,GAAwBS,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACL,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASQ,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiBzB,GAAuBL,EAAM1B,CAAQ,EAAO,CAAC,sBAAAyD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAkH,GAAjHR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKV,GAAqB,MAAMA,EAAU,GAAGkB,CAAI,IAAW,IAAuBjB,GAAqB,MAAMA,EAAU,GAAGiB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAYP,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAaR,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoB3D,EAAK4D,EAAY,CAAC,GAAGjC,GAA4C4B,EAAgB,SAAsBvD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBuE,EAAM3D,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUyB,GAAG/E,GAAkB,GAAG0E,GAAsB,iBAAiB/B,EAAUS,CAAU,EAAE,mBAAmB,kBAAkB,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAI1B,GAA6BgC,EAAK,MAAM,CAAC,GAAG5B,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAActC,EAAK+D,GAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG3C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,EAAYI,CAAc,CAAC,CAAC,EAAetC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB,GAAK,iBAAiByC,EAAiB,SAAS,YAAY,MAAMM,EAAa,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGhE,GAAqB,CAAC,UAAU,CAAC,MAAMkE,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAY,EAAE,UAAU,CAAC,MAAME,CAAY,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,sMAAsM,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,kBAAkB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,qEAAqE,UAAU,sJAAsJ,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,kBAAkB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,qEAAqE,UAAU,sJAAsJ,CAAC,EAAE,GAAG1D,GAAqB,CAAC,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,cAAc,EAAI,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK+D,GAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,wRAAwR,8IAA8I,uVAAuV,0JAA0J,4gBAA4gB,gFAAgF,6FAA6F,uJAAuJ,yHAAyH,+bAA+b,EAS1jcC,GAAgBC,GAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,mBAAmB,kBAAkB,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECToE,IAAMM,GAAsBC,EAASC,EAAgB,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAWJ,EAASK,EAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAyCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,sBAAsB,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBrB,GAAuBJ,EAAMxB,CAAQ,EAAO,CAAC,sBAAAkD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAiBH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAiBL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAsBC,GAAM,EAAQC,EAAsB,CAAa1B,GAAuBA,GAAuBA,EAAS,EAAQ2B,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG5B,GAA4CuB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB+D,EAAMlD,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUwB,GAAGvE,GAAkB,GAAGkE,EAAsB,gBAAgB1B,EAAUK,CAAU,EAAE,cAAc,GAAK,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6ByB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,sTAAsT,GAAGrB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAAcsB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,+OAA+O,EAAE,SAAS,CAAcnC,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAeiB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,qTAAqT,EAAE,SAAS,CAAcnC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKxB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU+D,EAAiB,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGvD,GAAqB,CAAC,UAAU,CAAC,UAAUyD,EAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,+OAA+O,EAAE,SAAS,CAACS,EAAY,GAAgB5C,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKxB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,QAAQ,SAAS,YAAY,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoE,EAAY,GAAgBQ,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBiC,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAS,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAEU,EAAa,GAAgB7C,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAsBF,EAAKE,EAAO,OAAO,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEU,EAAa,GAAgB7C,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAY7C,GAAoBkC,CAAS,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcxB,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qNAAiM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,kFAAkF,mUAAmU,sUAAsU,sLAAsL,qVAAqV,2RAA2R,ynBAAynB,uUAAuU,yRAAyR,8IAA8I,uIAAuI,yIAAyI,2IAA2I,yIAAyI,+VAA+V,kMAAkM,6qDAA6qD,6DAA6D,8DAA8D,6DAA6D,6DAA6D,6aAA6a,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EAS7svBC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,sBAAsB,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpF,GAAsB,GAAGG,GAAc,GAAGE,GAAW,GAAGqF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTlhH,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,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,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUe,GAAG1D,GAAkB,GAAGsD,EAAsB,gBAAgBjB,EAAUI,CAAU,EAAE,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,gBAAgB,uEAAuE,UAAU,uMAAuM,GAAGd,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,gFAAgF,kFAAkF,EAQx8GC,GAAgBC,GAAQ/B,GAAU6B,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR/B,IAAMM,GAAeC,EAASC,CAAS,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,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,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBD,EAAME,CAAQ,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBY,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUiB,GAAGC,GAAkB,GAAGL,EAAsB,gBAAgBpB,EAAUK,CAAU,EAAE,mBAAmB,QAAQ,iBAAiBU,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAsB2B,EAAMC,GAAgB,CAAC,eAAevD,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB4C,EAAiB,SAAS,YAAY,SAAS,CAAcW,EAAM1C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAM1C,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,MAAM,iBAAiB+B,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK8C,EAA0B,CAAC,MAAM,QAAQ,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK+C,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,wRAAwR,iTAAiT,+sBAA+sB,s3HAAs3H,omGAAomG,EAQhw/CC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAc,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR24B,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAeF,EAASG,EAAS,EAAQC,GAAoBJ,EAASK,EAAc,EAAQC,GAAeN,EAASO,EAAS,EAAQC,GAAWR,EAASS,EAAK,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAyCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,OAAO,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBrB,GAAuBJ,EAAMxB,CAAQ,EAAO,CAAC,sBAAAkD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAsBC,GAAM,EAAQC,EAAsB,CAAa1B,GAAuBA,EAAS,EAAQ2B,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG5B,GAA4CuB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB+D,EAAMlD,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUwB,GAAGvE,GAAkB,GAAGkE,EAAsB,gBAAgB1B,EAAUK,CAAU,EAAE,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6ByB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,sTAAsT,GAAGrB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAAcsB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,+OAA+O,EAAE,SAAS,CAAcnC,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBnC,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAK5B,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,OAAO,SAAS,YAAY,UAAUmE,EAAgB,UAAU,MAAM,QAAQ,YAAY,MAAM,OAAO,GAAGvD,GAAqB,CAAC,UAAU,CAAC,UAAUyD,EAAgB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBiB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,kIAAkI,EAAE,SAAS,CAAcnC,EAAKuD,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAK1B,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGU,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,EAAY,GAAgB5C,EAAKuD,EAA0B,CAAC,GAAGvE,GAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEiE,GAAkB,OAAQ,iBAAiB,CAAC,EAAEvB,EAAYI,CAAc,EAAE,SAAsB9B,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,mBAAmB,QAAQ,iBAAiBiC,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,SAAsBnC,EAAKxB,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,KAAK,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqE,EAAa,GAAgB7C,EAAKuD,EAA0B,CAAC,MAAM,QAAqEN,GAAkB,OAAQ,kBAAkB,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKtB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW7C,GAAoBkC,CAAS,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcxB,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAKwD,GAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0MAA0M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKuD,EAA0B,CAAC,MAAM,MAAM,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6E,GAAI,CAAC,kFAAkF,gFAAgF,mUAAmU,qUAAqU,sJAAsJ,iWAAiW,yGAAyG,sRAAsR,sVAAsV,wIAAwI,yGAAyG,yGAAyG,6VAA6V,kMAAkM,2IAA2I,2IAA2I,wIAAwI,wIAAwI,43CAA43C,0EAA0E,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASrziBC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,OAAO,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxF,GAAsB,GAAGG,GAAe,GAAGE,GAAoB,GAAGE,GAAe,GAAGE,GAAW,GAAGqF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PlayIcon", "props", "p", "motion", "PauseIcon", "u", "isMotionValue", "v", "MotionValue", "SrcType", "PlayTime", "props", "currentTime", "startTime", "playTime", "setPlayTime", "ye", "ue", "secondsToMinutes", "useOnChange", "latest", "p", "l", "checkIfPlaying", "player", "Audio", "playing", "background", "progressColor", "trackHeight", "gap", "trackColor", "srcUrl", "srcType", "srcFile", "loop", "font", "autoPlay", "progress", "volume", "showTime", "showTrack", "playPauseCursor", "showPlayPause", "onTimeUpdate", "onMetadata", "onPlay", "onPause", "onEnd", "pauseOnExit", "onPlayGlobalPauseOption", "isPlaying", "setIsPlaying", "duration", "setDuration", "pe", "playerInfo", "trackProgress", "useAutoMotionValue", "value", "newValue", "handlePlayStateUpdate", "padding", "usePadding", "borderRadius", "useRadius", "fontSize", "useFontControls", "shouldPlay", "RenderTarget", "shouldPausePlayers", "url", "shouldAutoPlay", "te", "_", "ref", "ref1", "currentDuration", "isNowPlaying", "animate", "pauseAllAudioPlayers", "el", "playAudio", "e", "pauseAudio", "handleMetadata", "initProgress", "handleReady", "handleSeek", "val", "handleEnd", "handlePlayClick", "useOnEnter", "useOnExit", "useMotionValueEvent", "progressPercent", "iconStyles", "se", "u", "containerStyles", "PauseIcon", "PlayIcon", "fontStack", "Slider", "addPropertyControls", "ControlType", "paddingControl", "borderRadiusControl", "AudioPlayFonts", "getFonts", "XzhEfsN9U_default", "ImageWithFX", "withFX", "Image2", "AudioFonts", "Audio", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "nameSample", "sample", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UdytUfbmx", "O3eRyukny", "Qd0vg9Zj2", "eEmqgQIzY", "T0IZ3RxW7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mbryzm", "args", "AXaZw2eon15vduvm", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerF5ZuO9TC7", "withCSS", "F5ZuO9TC7_default", "addPropertyControls", "ControlType", "addFonts", "AudioPlaylistItemFonts", "getFonts", "F5ZuO9TC7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "sample1Image", "sample1Name", "sample1URL", "sample2Image", "sample2Name", "sample2URL", "sample3Image", "sample3Name", "sample3URL", "sample4Name", "sample4URL", "sample5Name", "sample5URL", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eqRSCl69j", "LUwg0hvt9", "hcogW6yay", "DA1qqIxB9", "EM3MzG3sX", "QfK9LmN_h", "NNZ559RGG", "zh24KX0w1", "WjrbXvOIi", "FHEy_iHJg", "Hw6WfsiHd", "gbQHpS2qA", "yffkUQphU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Qd0vg9Zj2uz7itz", "args", "Qd0vg9Zj211nu701", "Qd0vg9Zj2ybozz7", "Qd0vg9Zj2mxw6eb", "Qd0vg9Zj21kys8kw", "Qd0vg9Zj2qpbzwq", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "ComponentViewportProvider", "css", "FramerKbzleoWWK", "withCSS", "KbzleoWWK_default", "addPropertyControls", "ControlType", "addFonts", "AudioAudioPlayerFonts", "getFonts", "KbzleoWWK_default", "RivitFonts", "peDQfUhI7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "R8Qaqjknr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerDXUYrbVWs", "withCSS", "DXUYrbVWs_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fgUPP4ile", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterydst1m", "args", "onMouseLeavetwb80f", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerbCf7CMwoS", "withCSS", "bCf7CMwoS_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "switch1", "switch2", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IxLcT0Jqx", "va9rdmGKG", "v1r2udCpL", "pfOgeBRyy", "FmhCldJVY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17uj2zv", "args", "onTap1dmovm4", "onTap1yfv60z", "onTapp3xlix", "onTap11lqis8", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerRlhZ9SOvj", "withCSS", "RlhZ9SOvj_default", "addPropertyControls", "ControlType", "addFonts", "TogglesToggleUseFonts", "getFonts", "RlhZ9SOvj_default", "BentoNobFonts", "bCf7CMwoS_default", "RivitFonts", "peDQfUhI7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RiVHJe99F", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "v1r2udCpL1g36ehx", "args", "pfOgeBRyy1er0zm6", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerJiQV64msE", "withCSS", "JiQV64msE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "Framerb2IKiGNOZ", "withCSS", "b2IKiGNOZ_default", "addPropertyControls", "ControlType", "addFonts", "AudioNoteFonts", "getFonts", "b2IKiGNOZ_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "MotionDivWithFX", "ComponentViewportProvider", "b2IKiGNOZ_default", "css", "FramerVodD0VKf9", "withCSS", "VodD0VKf9_default", "addFonts", "AudioNoteFonts", "TogglesToggleUseFonts", "getFonts", "RlhZ9SOvj_default", "AudioTimeFonts", "oywqQjQOW_default", "AudioAudioWaveFonts", "vFEKxwd3D_default", "AudioMidiFonts", "VodD0VKf9_default", "RivitFonts", "peDQfUhI7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pIpl0GRJ3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "v1r2udCpLoy8fun", "args", "v1r2udCpLr25gr9", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ComponentViewportProvider", "RichText2", "css", "FramerLBtgo2SmF", "withCSS", "LBtgo2SmF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
