{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/uD8QzK9D4LG30bVXvuTF/3KGrIYUc5yRhIJeJup8O/vq7sFmuLW.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addPropertyControls as a,ComponentPresetsConsumer as r,ControlType as s,Link as m}from\"framer\";import{motion as o}from\"framer-motion\";import*as c from\"react\";import{Youtube as n}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";let i=\"sniWqimKq\",g=\"ZW_uoaPIP\",h=\"dEDC4Iqzz\",p=\"JM0RGexYl\",d=\"HQrn8G52I\",f=\"ULY70DeWM\",l=(e,t)=>{if(e&&\"object\"==typeof e)return{...e,alt:t};},w=[{index:0,id:\"Pg2CLljOo\",[i]:\"Timeless Elegance | Raksha Bandhan for Parker\",[g]:\"hw9RjsBlx\",[p]:\"timeless-elegance-raksha-bandhan-for-parker\",[d]:l(void 0,\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Raksha Bandhan Campaign for Parker Pens\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Client- Fastrack\"}),/*#__PURE__*/e(\"p\",{children:\"Agency- Buffalo Soldiers \"}),/*#__PURE__*/e(\"p\",{children:\"Illustrations - Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:\"Animation- Abhishek Upadhyay\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",loop:!0,muted:!0,playsInline:!0,src:\"failed-asset-upload-placeholder\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:1,id:\"nVwyatXAL\",[i]:\"Growing Smiles - pediatric dentistry\",[g]:\"bL4l0eVBe\",[p]:\"growing-smiles-pediatric-desntistry\",[d]:l({src:\"https://framerusercontent.com/images/hsUFkA4DCwrnhJHr07jzlbiBvIE.png\",srcSet:\"https://framerusercontent.com/images/hsUFkA4DCwrnhJHr07jzlbiBvIE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hsUFkA4DCwrnhJHr07jzlbiBvIE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hsUFkA4DCwrnhJHr07jzlbiBvIE.png 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Brand Identity and Marketing | 2024\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Client- Growing Smiles Pediatric Dentistry\"}),/*#__PURE__*/e(\"p\",{children:\"Design- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- January 2024\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Growing Smiles is a Pediatric Dentistry located in Powai, Mumbai. This project focused on creating a brand identity for the clinic to establish a visual language that exudes warmth and professionalism while maintaining a child-friendly appeal. \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,byH2xA16HavwJZPTILtM5xIcb1g.png\",\"data-framer-height\":\"400\",\"data-framer-width\":\"1920\",height:\"200\",src:\"https://framerusercontent.com/images/byH2xA16HavwJZPTILtM5xIcb1g.png\",srcSet:\"https://framerusercontent.com/images/byH2xA16HavwJZPTILtM5xIcb1g.png?scale-down-to=512 512w,https://framerusercontent.com/images/byH2xA16HavwJZPTILtM5xIcb1g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/byH2xA16HavwJZPTILtM5xIcb1g.png 1920w\",style:{aspectRatio:\"1920 / 400\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Brand Voice- \"})}),/*#__PURE__*/e(\"p\",{children:\"Child-friendly, Playful\"}),/*#__PURE__*/e(\"p\",{children:\"Quirky and Cheerful\"}),/*#__PURE__*/e(\"p\",{children:\"Nurturing and Trustworthy\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Branding\"}),\" \"]}),/*#__PURE__*/e(\"p\",{children:\"The Logotype for 'Growing Smiles' is a custom Typeface with incorporated visual elements. This is done to increase brand awareness and recognition. The quirky yet easy to read letters make it perfect for the younger target audience and swiftly catches their attention.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zawTGbhv0UhY5ReEyVXzO9caCgk.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/zawTGbhv0UhY5ReEyVXzO9caCgk.png\",srcSet:\"https://framerusercontent.com/images/zawTGbhv0UhY5ReEyVXzO9caCgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zawTGbhv0UhY5ReEyVXzO9caCgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zawTGbhv0UhY5ReEyVXzO9caCgk.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"The Typography is a fine balance between a bold display font and a lighter, high-legibility font which is clean, modern, and simple. \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,mTQBeD9ZHomWR6n3FPuForGwa68.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/mTQBeD9ZHomWR6n3FPuForGwa68.png\",srcSet:\"https://framerusercontent.com/images/mTQBeD9ZHomWR6n3FPuForGwa68.png?scale-down-to=512 512w,https://framerusercontent.com/images/mTQBeD9ZHomWR6n3FPuForGwa68.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mTQBeD9ZHomWR6n3FPuForGwa68.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"The Colour Scheme is selected considering the clinic's kid-first nature. The overall theme revolves around the jungle, and this combination of bright, colourful colours is used with green as the primary colour. The colours when put together have a high contrast and tonal value, which helps aid kids' cognitive development.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,1MBsrK5SB5nKQQruqUs7zYJsvYI.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/1MBsrK5SB5nKQQruqUs7zYJsvYI.png\",srcSet:\"https://framerusercontent.com/images/1MBsrK5SB5nKQQruqUs7zYJsvYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1MBsrK5SB5nKQQruqUs7zYJsvYI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MBsrK5SB5nKQQruqUs7zYJsvYI.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"These vector illustrations are used as primary focal points in the branding. Adhering to the jungle theme, it includes illustrations of various animals, flora and fauna.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jvKJLuZsqKZAc77dqsIG4QAJODI.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/jvKJLuZsqKZAc77dqsIG4QAJODI.png\",srcSet:\"https://framerusercontent.com/images/jvKJLuZsqKZAc77dqsIG4QAJODI.png?scale-down-to=512 512w,https://framerusercontent.com/images/jvKJLuZsqKZAc77dqsIG4QAJODI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvKJLuZsqKZAc77dqsIG4QAJODI.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Marketing Collaterals\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Uur9tUCicoJCk1tawM9Dnvmxx1c.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/Uur9tUCicoJCk1tawM9Dnvmxx1c.jpg\",srcSet:\"https://framerusercontent.com/images/Uur9tUCicoJCk1tawM9Dnvmxx1c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Uur9tUCicoJCk1tawM9Dnvmxx1c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uur9tUCicoJCk1tawM9Dnvmxx1c.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BrhQ6aCwzzKY1iHPKCAHICz8rI.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/BrhQ6aCwzzKY1iHPKCAHICz8rI.jpg\",srcSet:\"https://framerusercontent.com/images/BrhQ6aCwzzKY1iHPKCAHICz8rI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BrhQ6aCwzzKY1iHPKCAHICz8rI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BrhQ6aCwzzKY1iHPKCAHICz8rI.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,U5EfNaBTjf6czEhLbQtilpk7wE.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/U5EfNaBTjf6czEhLbQtilpk7wE.png\",srcSet:\"https://framerusercontent.com/images/U5EfNaBTjf6czEhLbQtilpk7wE.png?scale-down-to=512 512w,https://framerusercontent.com/images/U5EfNaBTjf6czEhLbQtilpk7wE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5EfNaBTjf6czEhLbQtilpk7wE.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,R7qOVPDoBcmsI31qggPCDIdqiE.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/R7qOVPDoBcmsI31qggPCDIdqiE.png\",srcSet:\"https://framerusercontent.com/images/R7qOVPDoBcmsI31qggPCDIdqiE.png?scale-down-to=512 512w,https://framerusercontent.com/images/R7qOVPDoBcmsI31qggPCDIdqiE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R7qOVPDoBcmsI31qggPCDIdqiE.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,SWMpKyJOeUbnaH8fTxSfAEe7hE.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/SWMpKyJOeUbnaH8fTxSfAEe7hE.png\",srcSet:\"https://framerusercontent.com/images/SWMpKyJOeUbnaH8fTxSfAEe7hE.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWMpKyJOeUbnaH8fTxSfAEe7hE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SWMpKyJOeUbnaH8fTxSfAEe7hE.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,r3pfUim1qSDNauBE0M0fR6OEN0.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/r3pfUim1qSDNauBE0M0fR6OEN0.jpg\",srcSet:\"https://framerusercontent.com/images/r3pfUim1qSDNauBE0M0fR6OEN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/r3pfUim1qSDNauBE0M0fR6OEN0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/r3pfUim1qSDNauBE0M0fR6OEN0.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JkI0NUbRnF7WZapT3Ofwv04gw4.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/JkI0NUbRnF7WZapT3Ofwv04gw4.jpg\",srcSet:\"https://framerusercontent.com/images/JkI0NUbRnF7WZapT3Ofwv04gw4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JkI0NUbRnF7WZapT3Ofwv04gw4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JkI0NUbRnF7WZapT3Ofwv04gw4.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9rVYEkw8Hr0WiDutgUIdK62CGcY.png\",\"data-framer-height\":\"400\",\"data-framer-width\":\"1920\",height:\"200\",src:\"https://framerusercontent.com/images/9rVYEkw8Hr0WiDutgUIdK62CGcY.png\",srcSet:\"https://framerusercontent.com/images/9rVYEkw8Hr0WiDutgUIdK62CGcY.png?scale-down-to=512 512w,https://framerusercontent.com/images/9rVYEkw8Hr0WiDutgUIdK62CGcY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9rVYEkw8Hr0WiDutgUIdK62CGcY.png 1920w\",style:{aspectRatio:\"1920 / 400\"},width:\"960\"})]})},{index:2,id:\"vUw8GTUYq\",[i]:\"Shrians \",[g]:\"bL4l0eVBe\",[p]:\"shrians\",[d]:l({src:\"https://framerusercontent.com/images/pvWF79CUTcJJsxAFp0PtRevy7ak.jpg\",srcSet:\"https://framerusercontent.com/images/pvWF79CUTcJJsxAFp0PtRevy7ak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pvWF79CUTcJJsxAFp0PtRevy7ak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pvWF79CUTcJJsxAFp0PtRevy7ak.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pvWF79CUTcJJsxAFp0PtRevy7ak.jpg 3600w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Visual Identity and Social Media |2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Project Done for-\\xa0Bifrost Studios\"}),/*#__PURE__*/e(\"p\",{children:\"Client- Shrians Jewels\"}),/*#__PURE__*/e(\"p\",{children:\"Logo Design- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Mentor- Tejal Tunge, Tarunika Gaur\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- September- November 2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Founded in the latter half of the 1980s, Shrians Jewels has earned distinction as creators of exceptional Diamond and Royal Polki Jewelry. Situated in Defense Colony, Delhi, Shrians has gained prominence for its remarkable collection of designer creations, captivating enthusiasts in South India, the UAE, and worldwide.\"}),/*#__PURE__*/e(\"p\",{children:\"Drawing inspiration from the sophistication embedded in the jewelry designs and the magnetic aura of the brand's founders, we crafted an identity that seamlessly blends modernity with a representation of the brand's core values.\"}),/*#__PURE__*/e(\"p\",{children:\"Embodying the charm of every female that wears Shrians, we created the \u201CLady of Shrians\u201D. Pairing it with a serif font and a sophisticated bronze gradient, she is all about confidence and effortless style.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LLJSffZn3KGhH6QBLYoO3kzaup8.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/LLJSffZn3KGhH6QBLYoO3kzaup8.jpg\",srcSet:\"https://framerusercontent.com/images/LLJSffZn3KGhH6QBLYoO3kzaup8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LLJSffZn3KGhH6QBLYoO3kzaup8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LLJSffZn3KGhH6QBLYoO3kzaup8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LLJSffZn3KGhH6QBLYoO3kzaup8.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Project Brief\"}),/*#__PURE__*/e(\"p\",{children:\"To create a new brand identity for the brand, and create Social Media collaterals for the brand.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,s555foqdtS7KKNQYAoCs7JjDjI.jpg\",\"data-framer-height\":\"1454\",\"data-framer-width\":\"2200\",height:\"727\",src:\"https://framerusercontent.com/images/s555foqdtS7KKNQYAoCs7JjDjI.jpg\",srcSet:\"https://framerusercontent.com/images/s555foqdtS7KKNQYAoCs7JjDjI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s555foqdtS7KKNQYAoCs7JjDjI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s555foqdtS7KKNQYAoCs7JjDjI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s555foqdtS7KKNQYAoCs7JjDjI.jpg 2200w\",style:{aspectRatio:\"2200 / 1454\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:\"Brand's existing logo\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Rebranded Logo and Collaterals\"}),/*#__PURE__*/e(\"p\",{children:\"The Keywords provided by the brand were Elegant, Sleek, Modern and sophisticated.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xwbB5qz26DMSpYoJoDO67eGY34.jpg\",\"data-framer-height\":\"2834\",\"data-framer-width\":\"2200\",height:\"1417\",src:\"https://framerusercontent.com/images/xwbB5qz26DMSpYoJoDO67eGY34.jpg\",srcSet:\"https://framerusercontent.com/images/xwbB5qz26DMSpYoJoDO67eGY34.jpg?scale-down-to=1024 794w,https://framerusercontent.com/images/xwbB5qz26DMSpYoJoDO67eGY34.jpg?scale-down-to=2048 1589w,https://framerusercontent.com/images/xwbB5qz26DMSpYoJoDO67eGY34.jpg 2200w\",style:{aspectRatio:\"2200 / 2834\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg\",srcSet:\"https://framerusercontent.com/images/7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7vTBnBUWQuMQ8GSh7nmoSnwPFWs.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Assets\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JSjzXsUcRekcRu1U0sXqXWC6kY.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/JSjzXsUcRekcRu1U0sXqXWC6kY.jpg\",srcSet:\"https://framerusercontent.com/images/JSjzXsUcRekcRu1U0sXqXWC6kY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JSjzXsUcRekcRu1U0sXqXWC6kY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JSjzXsUcRekcRu1U0sXqXWC6kY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JSjzXsUcRekcRu1U0sXqXWC6kY.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jYsA51oZi229pyFCgm98Q0X74.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/jYsA51oZi229pyFCgm98Q0X74.jpg\",srcSet:\"https://framerusercontent.com/images/jYsA51oZi229pyFCgm98Q0X74.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jYsA51oZi229pyFCgm98Q0X74.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jYsA51oZi229pyFCgm98Q0X74.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jYsA51oZi229pyFCgm98Q0X74.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg\",srcSet:\"https://framerusercontent.com/images/oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oF8yRWGT8IpBcVqNiWP9jlCI5yk.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ije7PmQWIAwDsv2QdARhgoHk.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Ije7PmQWIAwDsv2QdARhgoHk.jpg\",srcSet:\"https://framerusercontent.com/images/Ije7PmQWIAwDsv2QdARhgoHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ije7PmQWIAwDsv2QdARhgoHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ije7PmQWIAwDsv2QdARhgoHk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ije7PmQWIAwDsv2QdARhgoHk.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Patterns \"}),/*#__PURE__*/e(\"p\",{children:\"Seamless patterns were created from the logo motif to be used as Branding assets for Social Media, Product Packaging and other Collaterals.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JmJVSSATz1hiNIirK7eEfnIYo.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/JmJVSSATz1hiNIirK7eEfnIYo.jpg\",srcSet:\"https://framerusercontent.com/images/JmJVSSATz1hiNIirK7eEfnIYo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JmJVSSATz1hiNIirK7eEfnIYo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JmJVSSATz1hiNIirK7eEfnIYo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JmJVSSATz1hiNIirK7eEfnIYo.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,juWbiO9FxMylDsRA7O7FnV0OZrE.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/juWbiO9FxMylDsRA7O7FnV0OZrE.jpg\",srcSet:\"https://framerusercontent.com/images/juWbiO9FxMylDsRA7O7FnV0OZrE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/juWbiO9FxMylDsRA7O7FnV0OZrE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/juWbiO9FxMylDsRA7O7FnV0OZrE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/juWbiO9FxMylDsRA7O7FnV0OZrE.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nFhXtq3403Q9K38pyOtGpctayQ.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/nFhXtq3403Q9K38pyOtGpctayQ.jpg\",srcSet:\"https://framerusercontent.com/images/nFhXtq3403Q9K38pyOtGpctayQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nFhXtq3403Q9K38pyOtGpctayQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFhXtq3403Q9K38pyOtGpctayQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nFhXtq3403Q9K38pyOtGpctayQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,NyGsCSErCECjaAhcjWtZUsMLGc.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/NyGsCSErCECjaAhcjWtZUsMLGc.jpg\",srcSet:\"https://framerusercontent.com/images/NyGsCSErCECjaAhcjWtZUsMLGc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NyGsCSErCECjaAhcjWtZUsMLGc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NyGsCSErCECjaAhcjWtZUsMLGc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NyGsCSErCECjaAhcjWtZUsMLGc.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xkWDlkuKfU4xzU2fJn4f7jCG8.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/xkWDlkuKfU4xzU2fJn4f7jCG8.jpg\",srcSet:\"https://framerusercontent.com/images/xkWDlkuKfU4xzU2fJn4f7jCG8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xkWDlkuKfU4xzU2fJn4f7jCG8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xkWDlkuKfU4xzU2fJn4f7jCG8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xkWDlkuKfU4xzU2fJn4f7jCG8.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Creative Retainership- Social Media Posts \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,t3JoCTnSRg1fLFrmLzvPBwERLVE.jpg\",\"data-framer-height\":\"3696\",\"data-framer-width\":\"2200\",height:\"1848\",src:\"https://framerusercontent.com/images/t3JoCTnSRg1fLFrmLzvPBwERLVE.jpg\",srcSet:\"https://framerusercontent.com/images/t3JoCTnSRg1fLFrmLzvPBwERLVE.jpg?scale-down-to=1024 609w,https://framerusercontent.com/images/t3JoCTnSRg1fLFrmLzvPBwERLVE.jpg?scale-down-to=2048 1219w,https://framerusercontent.com/images/t3JoCTnSRg1fLFrmLzvPBwERLVE.jpg 2200w\",style:{aspectRatio:\"2200 / 3696\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Exhibit Collaterals \"}),/*#__PURE__*/e(\"p\",{children:\"Show Invite \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BICnr8CFLH2McjbD6YrFXutppls.jpg\",\"data-framer-height\":\"1650\",\"data-framer-width\":\"2200\",height:\"825\",src:\"https://framerusercontent.com/images/BICnr8CFLH2McjbD6YrFXutppls.jpg\",srcSet:\"https://framerusercontent.com/images/BICnr8CFLH2McjbD6YrFXutppls.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BICnr8CFLH2McjbD6YrFXutppls.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BICnr8CFLH2McjbD6YrFXutppls.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BICnr8CFLH2McjbD6YrFXutppls.jpg 2200w\",style:{aspectRatio:\"2200 / 1650\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"View the Live Project \",/*#__PURE__*/e(m,{href:\"https://www.wearebifrost.com/shrians-jewels\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\"!\"]})]})},{index:3,id:\"dW_Pf1D3E\",[i]:\"ThisDay - History Redefined\",[g]:\"bL4l0eVBe\",[p]:\"thisday-history-redefined\",[d]:l({src:\"https://framerusercontent.com/images/E8WH7odhDYESSDe4C7JpXrlE8Y.jpg\",srcSet:\"https://framerusercontent.com/images/E8WH7odhDYESSDe4C7JpXrlE8Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/E8WH7odhDYESSDe4C7JpXrlE8Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E8WH7odhDYESSDe4C7JpXrlE8Y.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Brand Identity Design | 2022\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Client- ThisDay by Ekank\"}),/*#__PURE__*/e(\"p\",{children:\"Design- Riya Kumari, Gowri Suresh, Dishani Goswami\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"ThisDay is an online platform built by people passionate about history and storytelling. The mission behind the platform is to make history accessible to the masses. Often, people associate History with numbers, figures and dates\\xa0making it dull and prone to be rote-learned. At ThisDay, we as storytellers aim to change this narrative. Putting on our green thinking hats, we are here to make history fun. For us, dates are just an excuse to tell a story.\"}),/*#__PURE__*/e(\"p\",{children:\"To align our brand with our mission, we embarked on a 360-degree brand redesign process. From brainstorming to ideating and coming up with the final designs, it was a journey of learning, making mistakes and re-building. \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",src:\"blob:https://framer.com/bd41fc73-cea5-419d-9fcc-9f9dc5510420\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,objzyrE84EgU6UntDVyKTHlTBs.jpg\",\"data-framer-height\":\"952\",\"data-framer-width\":\"2200\",height:\"476\",src:\"https://framerusercontent.com/images/objzyrE84EgU6UntDVyKTHlTBs.jpg\",srcSet:\"https://framerusercontent.com/images/objzyrE84EgU6UntDVyKTHlTBs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/objzyrE84EgU6UntDVyKTHlTBs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/objzyrE84EgU6UntDVyKTHlTBs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/objzyrE84EgU6UntDVyKTHlTBs.jpg 2200w\",style:{aspectRatio:\"2200 / 952\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lGpYcx19QiLIyxQEA7e53ACirow.jpg\",\"data-framer-height\":\"1095\",\"data-framer-width\":\"2200\",height:\"547\",src:\"https://framerusercontent.com/images/lGpYcx19QiLIyxQEA7e53ACirow.jpg\",srcSet:\"https://framerusercontent.com/images/lGpYcx19QiLIyxQEA7e53ACirow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lGpYcx19QiLIyxQEA7e53ACirow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lGpYcx19QiLIyxQEA7e53ACirow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lGpYcx19QiLIyxQEA7e53ACirow.jpg 2200w\",style:{aspectRatio:\"2200 / 1095\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg\",\"data-framer-height\":\"974\",\"data-framer-width\":\"2200\",height:\"487\",src:\"https://framerusercontent.com/images/CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg\",srcSet:\"https://framerusercontent.com/images/CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CXJKFSC7HOWo5Iq1oT6zQCbxBHI.jpg 2200w\",style:{aspectRatio:\"2200 / 974\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,kscQFjVyZDMjN4VvDyzj7tUs.jpg\",\"data-framer-height\":\"835\",\"data-framer-width\":\"2200\",height:\"417\",src:\"https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg\",srcSet:\"https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg 2200w\",style:{aspectRatio:\"2200 / 835\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg\",\"data-framer-height\":\"1191\",\"data-framer-width\":\"2200\",height:\"595\",src:\"https://framerusercontent.com/images/nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg\",srcSet:\"https://framerusercontent.com/images/nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nNTO5Pz6uExHzIvOe2bSgnuy0q0.jpg 2200w\",style:{aspectRatio:\"2200 / 1191\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg\",\"data-framer-height\":\"1104\",\"data-framer-width\":\"2200\",height:\"552\",src:\"https://framerusercontent.com/images/3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg\",srcSet:\"https://framerusercontent.com/images/3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3ZlDwiCXxW0P5wynFSlWfMK8hco.jpg 2200w\",style:{aspectRatio:\"2200 / 1104\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,GpuRJYg0iS57yGbG4WJ3JwPFg.jpg\",\"data-framer-height\":\"974\",\"data-framer-width\":\"2200\",height:\"487\",src:\"https://framerusercontent.com/images/GpuRJYg0iS57yGbG4WJ3JwPFg.jpg\",srcSet:\"https://framerusercontent.com/images/GpuRJYg0iS57yGbG4WJ3JwPFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GpuRJYg0iS57yGbG4WJ3JwPFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpuRJYg0iS57yGbG4WJ3JwPFg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpuRJYg0iS57yGbG4WJ3JwPFg.jpg 2200w\",style:{aspectRatio:\"2200 / 974\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4UxiYmuQEZFghWHJGZ704vl8mQ.jpg\",\"data-framer-height\":\"1057\",\"data-framer-width\":\"2200\",height:\"528\",src:\"https://framerusercontent.com/images/4UxiYmuQEZFghWHJGZ704vl8mQ.jpg\",srcSet:\"https://framerusercontent.com/images/4UxiYmuQEZFghWHJGZ704vl8mQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4UxiYmuQEZFghWHJGZ704vl8mQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4UxiYmuQEZFghWHJGZ704vl8mQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4UxiYmuQEZFghWHJGZ704vl8mQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1057\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,obHpqJ602Qqc6JOtaiWHh5dT4.jpg\",\"data-framer-height\":\"1245\",\"data-framer-width\":\"2200\",height:\"622\",src:\"https://framerusercontent.com/images/obHpqJ602Qqc6JOtaiWHh5dT4.jpg\",srcSet:\"https://framerusercontent.com/images/obHpqJ602Qqc6JOtaiWHh5dT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/obHpqJ602Qqc6JOtaiWHh5dT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/obHpqJ602Qqc6JOtaiWHh5dT4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/obHpqJ602Qqc6JOtaiWHh5dT4.jpg 2200w\",style:{aspectRatio:\"2200 / 1245\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,taksN5rESP4ZBfEbss1nlCexBFg.jpg\",\"data-framer-height\":\"702\",\"data-framer-width\":\"2200\",height:\"351\",src:\"https://framerusercontent.com/images/taksN5rESP4ZBfEbss1nlCexBFg.jpg\",srcSet:\"https://framerusercontent.com/images/taksN5rESP4ZBfEbss1nlCexBFg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/taksN5rESP4ZBfEbss1nlCexBFg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/taksN5rESP4ZBfEbss1nlCexBFg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/taksN5rESP4ZBfEbss1nlCexBFg.jpg 2200w\",style:{aspectRatio:\"2200 / 702\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,5GWaCsmP9bjJfzrmBMDDJtyuk.jpg\",\"data-framer-height\":\"974\",\"data-framer-width\":\"2200\",height:\"487\",src:\"https://framerusercontent.com/images/5GWaCsmP9bjJfzrmBMDDJtyuk.jpg\",srcSet:\"https://framerusercontent.com/images/5GWaCsmP9bjJfzrmBMDDJtyuk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5GWaCsmP9bjJfzrmBMDDJtyuk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5GWaCsmP9bjJfzrmBMDDJtyuk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5GWaCsmP9bjJfzrmBMDDJtyuk.jpg 2200w\",style:{aspectRatio:\"2200 / 974\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,we3QfSWjoMsNOltPRLJxthfwQ.jpg\",\"data-framer-height\":\"1273\",\"data-framer-width\":\"2200\",height:\"636\",src:\"https://framerusercontent.com/images/we3QfSWjoMsNOltPRLJxthfwQ.jpg\",srcSet:\"https://framerusercontent.com/images/we3QfSWjoMsNOltPRLJxthfwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/we3QfSWjoMsNOltPRLJxthfwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/we3QfSWjoMsNOltPRLJxthfwQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/we3QfSWjoMsNOltPRLJxthfwQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1273\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,woeidVQkY29MVNq9AKoMmGK2dw.jpg\",\"data-framer-height\":\"1252\",\"data-framer-width\":\"2200\",height:\"626\",src:\"https://framerusercontent.com/images/woeidVQkY29MVNq9AKoMmGK2dw.jpg\",srcSet:\"https://framerusercontent.com/images/woeidVQkY29MVNq9AKoMmGK2dw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/woeidVQkY29MVNq9AKoMmGK2dw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/woeidVQkY29MVNq9AKoMmGK2dw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/woeidVQkY29MVNq9AKoMmGK2dw.jpg 2200w\",style:{aspectRatio:\"2200 / 1252\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,chmPB99LSH8LXGkkkGHQnrxpS3c.gif\",\"data-framer-height\":\"450\",\"data-framer-width\":\"800\",height:\"225\",src:\"https://framerusercontent.com/images/chmPB99LSH8LXGkkkGHQnrxpS3c.gif\",srcSet:\"https://framerusercontent.com/images/chmPB99LSH8LXGkkkGHQnrxpS3c.gif?scale-down-to=512 512w,https://framerusercontent.com/images/chmPB99LSH8LXGkkkGHQnrxpS3c.gif 800w\",style:{aspectRatio:\"800 / 450\"},width:\"400\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,R6r1NA33KC5hpFXOqpIsyE77Mc.jpg\",\"data-framer-height\":\"974\",\"data-framer-width\":\"2200\",height:\"487\",src:\"https://framerusercontent.com/images/R6r1NA33KC5hpFXOqpIsyE77Mc.jpg\",srcSet:\"https://framerusercontent.com/images/R6r1NA33KC5hpFXOqpIsyE77Mc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/R6r1NA33KC5hpFXOqpIsyE77Mc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/R6r1NA33KC5hpFXOqpIsyE77Mc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/R6r1NA33KC5hpFXOqpIsyE77Mc.jpg 2200w\",style:{aspectRatio:\"2200 / 974\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zouE8ULRs0sJmYr6WeFsdUDwNc.jpg\",\"data-framer-height\":\"974\",\"data-framer-width\":\"2200\",height:\"487\",src:\"https://framerusercontent.com/images/zouE8ULRs0sJmYr6WeFsdUDwNc.jpg\",srcSet:\"https://framerusercontent.com/images/zouE8ULRs0sJmYr6WeFsdUDwNc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zouE8ULRs0sJmYr6WeFsdUDwNc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zouE8ULRs0sJmYr6WeFsdUDwNc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zouE8ULRs0sJmYr6WeFsdUDwNc.jpg 2200w\",style:{aspectRatio:\"2200 / 974\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Happy Learning!\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,kscQFjVyZDMjN4VvDyzj7tUs.jpg\",\"data-framer-height\":\"835\",\"data-framer-width\":\"2200\",height:\"417\",src:\"https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg\",srcSet:\"https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kscQFjVyZDMjN4VvDyzj7tUs.jpg 2200w\",style:{aspectRatio:\"2200 / 835\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:4,id:\"pm4Q2tWb0\",[i]:\"Sujani Mahila Jeevan \",[g]:\"hw9RjsBlx\",[p]:\"sujani-mahila-jeevan\",[d]:l({src:\"https://framerusercontent.com/images/ROdCVc8HyYKrxuWF7M817FK778.jpg\",srcSet:\"https://framerusercontent.com/images/ROdCVc8HyYKrxuWF7M817FK778.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ROdCVc8HyYKrxuWF7M817FK778.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ROdCVc8HyYKrxuWF7M817FK778.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Project Domain- \"}),/*#__PURE__*/e(\"p\",{children:\"Identity Design- Branding, Illutrations, Collaterals\"}),/*#__PURE__*/e(\"p\",{children:\"Website Design- UI/UX\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,0n8aUvANPNqqHghhSsUOZ4I.jpg\",\"data-framer-height\":\"1553\",\"data-framer-width\":\"1920\",height:\"776\",src:\"https://framerusercontent.com/images/0n8aUvANPNqqHghhSsUOZ4I.jpg\",srcSet:\"https://framerusercontent.com/images/0n8aUvANPNqqHghhSsUOZ4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0n8aUvANPNqqHghhSsUOZ4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0n8aUvANPNqqHghhSsUOZ4I.jpg 1920w\",style:{aspectRatio:\"1920 / 1553\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,emNGw7il1vhhSSGSrxlmewinzpo.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/emNGw7il1vhhSSGSrxlmewinzpo.jpg\",srcSet:\"https://framerusercontent.com/images/emNGw7il1vhhSSGSrxlmewinzpo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/emNGw7il1vhhSSGSrxlmewinzpo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/emNGw7il1vhhSSGSrxlmewinzpo.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Research\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UF67DgvxPmdmVeUD2W4eh7YXwhI.jpg\",\"data-framer-height\":\"912\",\"data-framer-width\":\"1920\",height:\"456\",src:\"https://framerusercontent.com/images/UF67DgvxPmdmVeUD2W4eh7YXwhI.jpg\",srcSet:\"https://framerusercontent.com/images/UF67DgvxPmdmVeUD2W4eh7YXwhI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UF67DgvxPmdmVeUD2W4eh7YXwhI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UF67DgvxPmdmVeUD2W4eh7YXwhI.jpg 1920w\",style:{aspectRatio:\"1920 / 912\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rmN3mnj7BDMP3fCNTWsJr9d0.jpg\",\"data-framer-height\":\"850\",\"data-framer-width\":\"1920\",height:\"425\",src:\"https://framerusercontent.com/images/rmN3mnj7BDMP3fCNTWsJr9d0.jpg\",srcSet:\"https://framerusercontent.com/images/rmN3mnj7BDMP3fCNTWsJr9d0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rmN3mnj7BDMP3fCNTWsJr9d0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rmN3mnj7BDMP3fCNTWsJr9d0.jpg 1920w\",style:{aspectRatio:\"1920 / 850\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,01yPMZ21J2A5uryQNB0D7jfvT4.jpg\",\"data-framer-height\":\"689\",\"data-framer-width\":\"1920\",height:\"344\",src:\"https://framerusercontent.com/images/01yPMZ21J2A5uryQNB0D7jfvT4.jpg\",srcSet:\"https://framerusercontent.com/images/01yPMZ21J2A5uryQNB0D7jfvT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/01yPMZ21J2A5uryQNB0D7jfvT4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/01yPMZ21J2A5uryQNB0D7jfvT4.jpg 1920w\",style:{aspectRatio:\"1920 / 689\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Visual Identity Design\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,bkaAma3gSQMuX7lGjLTyDKHKslY.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/bkaAma3gSQMuX7lGjLTyDKHKslY.jpg\",srcSet:\"https://framerusercontent.com/images/bkaAma3gSQMuX7lGjLTyDKHKslY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bkaAma3gSQMuX7lGjLTyDKHKslY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bkaAma3gSQMuX7lGjLTyDKHKslY.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,u96XfDt0xgqASRFJZZnquH4aJcY.jpg\",\"data-framer-height\":\"1610\",\"data-framer-width\":\"1920\",height:\"805\",src:\"https://framerusercontent.com/images/u96XfDt0xgqASRFJZZnquH4aJcY.jpg\",srcSet:\"https://framerusercontent.com/images/u96XfDt0xgqASRFJZZnquH4aJcY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/u96XfDt0xgqASRFJZZnquH4aJcY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/u96XfDt0xgqASRFJZZnquH4aJcY.jpg 1920w\",style:{aspectRatio:\"1920 / 1610\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PxJRP1QTQvsRLrUahVIsksgoX9Y.jpg\",\"data-framer-height\":\"1344\",\"data-framer-width\":\"1920\",height:\"672\",src:\"https://framerusercontent.com/images/PxJRP1QTQvsRLrUahVIsksgoX9Y.jpg\",srcSet:\"https://framerusercontent.com/images/PxJRP1QTQvsRLrUahVIsksgoX9Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PxJRP1QTQvsRLrUahVIsksgoX9Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PxJRP1QTQvsRLrUahVIsksgoX9Y.jpg 1920w\",style:{aspectRatio:\"1920 / 1344\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Website Design\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yt7AsBe0kSN8douIe3EVCUQzzu4.jpg\",\"data-framer-height\":\"8856\",\"data-framer-width\":\"1920\",height:\"4428\",src:\"https://framerusercontent.com/images/yt7AsBe0kSN8douIe3EVCUQzzu4.jpg\",srcSet:\"https://framerusercontent.com/images/yt7AsBe0kSN8douIe3EVCUQzzu4.jpg?scale-down-to=4096 888w,https://framerusercontent.com/images/yt7AsBe0kSN8douIe3EVCUQzzu4.jpg 1920w\",style:{aspectRatio:\"1920 / 8856\"},width:\"960\"})]})},{index:5,id:\"EySiVjjda\",[i]:\"ThisDay at JLF\",[g]:\"a8XaVA_Qz\",[p]:\"thisday-at-jlf\",[d]:l({src:\"https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png\",srcSet:\"https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png 1912w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Event Photgraphy and Videography | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"ThisDay's stall at the \",/*#__PURE__*/e(m,{href:\"https://jaipurliteraturefestival.org/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Jaipur Literature Festival\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Shot and Edited by- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- January 2023\"}),/*#__PURE__*/e(\"p\",{children:\"Shot on a Nikon D5200, handheld\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZufqdTzuQd9iD5bA7wlOiGsJVA.jpg\",\"data-framer-height\":\"1365\",\"data-framer-width\":\"2048\",height:\"682\",src:\"https://framerusercontent.com/images/ZufqdTzuQd9iD5bA7wlOiGsJVA.jpg\",srcSet:\"https://framerusercontent.com/images/ZufqdTzuQd9iD5bA7wlOiGsJVA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZufqdTzuQd9iD5bA7wlOiGsJVA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZufqdTzuQd9iD5bA7wlOiGsJVA.jpg 2048w\",style:{aspectRatio:\"2048 / 1365\"},width:\"1024\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Film\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/vnf0-k6Nxdc\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Booth\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WZtwQsI3DBRVpeBQYswAIYM.png\",\"data-framer-height\":\"972\",\"data-framer-width\":\"1972\",height:\"486\",src:\"https://framerusercontent.com/images/WZtwQsI3DBRVpeBQYswAIYM.png\",srcSet:\"https://framerusercontent.com/images/WZtwQsI3DBRVpeBQYswAIYM.png?scale-down-to=512 512w,https://framerusercontent.com/images/WZtwQsI3DBRVpeBQYswAIYM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WZtwQsI3DBRVpeBQYswAIYM.png 1972w\",style:{aspectRatio:\"1972 / 972\"},width:\"986\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Merch\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,AOPqOiK5d7fyD5LQ70svcdAKYYE.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1912\",height:\"540\",src:\"https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png\",srcSet:\"https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AOPqOiK5d7fyD5LQ70svcdAKYYE.png 1912w\",style:{aspectRatio:\"1912 / 1080\"},width:\"956\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Activities\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,STmu12TduXlBN5mz9HxB9dd2no.png\",\"data-framer-height\":\"1126\",\"data-framer-width\":\"1906\",height:\"563\",src:\"https://framerusercontent.com/images/STmu12TduXlBN5mz9HxB9dd2no.png\",srcSet:\"https://framerusercontent.com/images/STmu12TduXlBN5mz9HxB9dd2no.png?scale-down-to=512 512w,https://framerusercontent.com/images/STmu12TduXlBN5mz9HxB9dd2no.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/STmu12TduXlBN5mz9HxB9dd2no.png 1906w\",style:{aspectRatio:\"1906 / 1126\"},width:\"953\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The People\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cufnWXGo24YgXcSE1znDVRJnKJ4.png\",\"data-framer-height\":\"906\",\"data-framer-width\":\"1908\",height:\"453\",src:\"https://framerusercontent.com/images/cufnWXGo24YgXcSE1znDVRJnKJ4.png\",srcSet:\"https://framerusercontent.com/images/cufnWXGo24YgXcSE1znDVRJnKJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cufnWXGo24YgXcSE1znDVRJnKJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cufnWXGo24YgXcSE1znDVRJnKJ4.png 1908w\",style:{aspectRatio:\"1908 / 906\"},width:\"954\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Emotional Support Kitty\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,blRt4b55TaHWVoErkLdpAAHcoA.png\",\"data-framer-height\":\"702\",\"data-framer-width\":\"1906\",height:\"351\",src:\"https://framerusercontent.com/images/blRt4b55TaHWVoErkLdpAAHcoA.png\",srcSet:\"https://framerusercontent.com/images/blRt4b55TaHWVoErkLdpAAHcoA.png?scale-down-to=512 512w,https://framerusercontent.com/images/blRt4b55TaHWVoErkLdpAAHcoA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/blRt4b55TaHWVoErkLdpAAHcoA.png 1906w\",style:{aspectRatio:\"1906 / 702\"},width:\"953\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:6,id:\"cNAc0hm1v\",[i]:\"Reader's Room  Podcast\",[g]:\"a8XaVA_Qz\",[h]:\"https://youtu.be/OA_a_zdZ2lk\",[p]:\"reader-s-room-launch-film\",[d]:l({src:\"https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png\",srcSet:\"https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=512 512w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png 2352w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Podcast Launch Film | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Podcast by- \",/*#__PURE__*/e(m,{href:\"http://thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"ThisDay\"})})}),\", hosted by \",/*#__PURE__*/e(m,{href:\"https://twitter.com/mohitsatyanand?lang=en\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Mohit Satyanand\"})})})]}),/*#__PURE__*/e(\"p\",{children:\"Shot and Edited by- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Audio Editing- Aditya Worah\"}),/*#__PURE__*/e(\"p\",{children:\"Team- Siddharth Tiwari and Aditya Worah\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- February to March 2023\"}),/*#__PURE__*/e(\"p\",{children:\"Shot on a Nikon D5200, handheld\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,kfTRFmEOV2jb1AL9027wYyGDTs.png\",\"data-framer-height\":\"1568\",\"data-framer-width\":\"2352\",height:\"784\",src:\"https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png\",srcSet:\"https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=512 512w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kfTRFmEOV2jb1AL9027wYyGDTs.png 2352w\",style:{aspectRatio:\"2352 / 1568\"},width:\"1176\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Jc03J6FgYdrnJRH6RqfTlEtg.png\",\"data-framer-height\":\"1568\",\"data-framer-width\":\"2352\",height:\"784\",src:\"https://framerusercontent.com/images/Jc03J6FgYdrnJRH6RqfTlEtg.png\",srcSet:\"https://framerusercontent.com/images/Jc03J6FgYdrnJRH6RqfTlEtg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jc03J6FgYdrnJRH6RqfTlEtg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jc03J6FgYdrnJRH6RqfTlEtg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jc03J6FgYdrnJRH6RqfTlEtg.png 2352w\",style:{aspectRatio:\"2352 / 1568\"},width:\"1176\"}),/*#__PURE__*/t(\"p\",{children:[\"This was a launch film I worked on for \",/*#__PURE__*/e(m,{href:\"http://thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"ThisDay's\"})})}),\" Podcast '\",/*#__PURE__*/e(m,{href:\"https://open.spotify.com/show/1evzLzyowh7Xj61hNux3Cl?si=j-lyXjFxRb2oK9eEM8ZFpQ&nd=1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"The Reader's Room\"})})}),/*#__PURE__*/e(\"strong\",{children:\"'\"}),\" hosted by\\xa0\",/*#__PURE__*/e(m,{href:\"https://twitter.com/mohitsatyanand?lang=en\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Mohit Satyanand- \"})}),\"entrepreneur, investor, mentor, and the Chairperson of Teamwork Arts\",/*#__PURE__*/e(m,{href:\"https://twitter.com/mohitsatyanand?lang=en\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\".\"})})]}),/*#__PURE__*/e(\"p\",{children:\"The Reader's Room features conversations with authors that take you into the world of non-fiction literature.\\xa0\"}),/*#__PURE__*/e(\"h6\",{children:\"The\\xa0Film\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/OA_a_zdZ2lk\"})})}),/*#__PURE__*/e(\"p\",{children:\"This podcast gives a ringside view of what goes on in an author's mind. The Reader's Room is a podcast that every bibliophile will enjoy, as it takes them closer to their favorite authors.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,OT1UyG3ReyXbC2zLMGnboRWDE.png\",\"data-framer-height\":\"1846\",\"data-framer-width\":\"3104\",height:\"923\",src:\"https://framerusercontent.com/images/OT1UyG3ReyXbC2zLMGnboRWDE.png\",srcSet:\"https://framerusercontent.com/images/OT1UyG3ReyXbC2zLMGnboRWDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/OT1UyG3ReyXbC2zLMGnboRWDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OT1UyG3ReyXbC2zLMGnboRWDE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OT1UyG3ReyXbC2zLMGnboRWDE.png 3104w\",style:{aspectRatio:\"3104 / 1846\"},width:\"1552\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ztAS5xEJ59e59FEWEAKGLmYlbE.png\",\"data-framer-height\":\"1846\",\"data-framer-width\":\"3104\",height:\"923\",src:\"https://framerusercontent.com/images/ztAS5xEJ59e59FEWEAKGLmYlbE.png\",srcSet:\"https://framerusercontent.com/images/ztAS5xEJ59e59FEWEAKGLmYlbE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ztAS5xEJ59e59FEWEAKGLmYlbE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ztAS5xEJ59e59FEWEAKGLmYlbE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ztAS5xEJ59e59FEWEAKGLmYlbE.png 3104w\",style:{aspectRatio:\"3104 / 1846\"},width:\"1552\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,bQKBwigoQ4hqjTbo9qkIqU6bWc.png\",\"data-framer-height\":\"1846\",\"data-framer-width\":\"3104\",height:\"923\",src:\"https://framerusercontent.com/images/bQKBwigoQ4hqjTbo9qkIqU6bWc.png\",srcSet:\"https://framerusercontent.com/images/bQKBwigoQ4hqjTbo9qkIqU6bWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQKBwigoQ4hqjTbo9qkIqU6bWc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bQKBwigoQ4hqjTbo9qkIqU6bWc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bQKBwigoQ4hqjTbo9qkIqU6bWc.png 3104w\",style:{aspectRatio:\"3104 / 1846\"},width:\"1552\"}),/*#__PURE__*/e(\"h6\",{children:\"Day of the Launch\"}),/*#__PURE__*/t(\"p\",{children:[\"The Podcast was launched at ThisDay's Stall at \",/*#__PURE__*/e(\"strong\",{children:\"Jaipur Literature Festival.\\xa0\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uC3qNPpS6W0cN6wR8q2IaAARhSs.png\",\"data-framer-height\":\"1122\",\"data-framer-width\":\"716\",height:\"561\",src:\"https://framerusercontent.com/images/uC3qNPpS6W0cN6wR8q2IaAARhSs.png\",srcSet:\"https://framerusercontent.com/images/uC3qNPpS6W0cN6wR8q2IaAARhSs.png?scale-down-to=1024 653w,https://framerusercontent.com/images/uC3qNPpS6W0cN6wR8q2IaAARhSs.png 716w\",style:{aspectRatio:\"716 / 1122\"},width:\"358\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7MWncwQWfGXKkDnWj7SNnM0XuLE.png\",\"data-framer-height\":\"1440\",\"data-framer-width\":\"2308\",height:\"720\",src:\"https://framerusercontent.com/images/7MWncwQWfGXKkDnWj7SNnM0XuLE.png\",srcSet:\"https://framerusercontent.com/images/7MWncwQWfGXKkDnWj7SNnM0XuLE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MWncwQWfGXKkDnWj7SNnM0XuLE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MWncwQWfGXKkDnWj7SNnM0XuLE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MWncwQWfGXKkDnWj7SNnM0XuLE.png 2308w\",style:{aspectRatio:\"2308 / 1440\"},width:\"1154\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,bb5Srs1Pq4K0Y0THXxNUJp10CSI.png\",\"data-framer-height\":\"938\",\"data-framer-width\":\"1904\",height:\"469\",src:\"https://framerusercontent.com/images/bb5Srs1Pq4K0Y0THXxNUJp10CSI.png\",srcSet:\"https://framerusercontent.com/images/bb5Srs1Pq4K0Y0THXxNUJp10CSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bb5Srs1Pq4K0Y0THXxNUJp10CSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bb5Srs1Pq4K0Y0THXxNUJp10CSI.png 1904w\",style:{aspectRatio:\"1904 / 938\"},width:\"952\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:7,id:\"qwDo3Np8R\",[i]:\"In conversation with P-Tal\",[g]:\"a8XaVA_Qz\",[p]:\"in-conversation-with-p-tal\",[d]:l({src:\"https://framerusercontent.com/images/WJK0xmVrXF7FKWQXpEAkYwo.jpg\",srcSet:\"https://framerusercontent.com/images/WJK0xmVrXF7FKWQXpEAkYwo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WJK0xmVrXF7FKWQXpEAkYwo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WJK0xmVrXF7FKWQXpEAkYwo.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"ThisDay X P-Tal | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Interviewing Aditya Agrawal, Founder and CEO of \",/*#__PURE__*/e(m,{href:\"https://ptal.in/collections/popular-products?gclid=CjwKCAjw3dCnBhBCEiwAVvLcuzmI9xKhreNRAAijVIY2R0PAATPEmZLfvuHJ6clz8713mIOFTtJ6gRoC-0EQAvD_BwE\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"P-tal\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Interview by- \",/*#__PURE__*/e(m,{href:\"http://thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"ThisDay\"})})})]}),/*#__PURE__*/e(\"p\",{children:\"Shot by- Riya Kumari and Siddharth Tiwari \"}),/*#__PURE__*/e(\"p\",{children:\"Edited by- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Audio Editing- Aditya Worah\"}),/*#__PURE__*/e(\"p\",{children:\"Content- Dhriti Chopra\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- April 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Video\"}),/*#__PURE__*/e(\"p\",{children:\"In culinary practices, it\u2019s not just food but also the utensils and processes used that form part of the entire culture. Team ThisDay visited the P-Tal store to find the fascinating story behind the brand, its cultural roots, and how they connect tradition to trends.\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=xw2nqUJay-0&ab_channel=ThisDay\"})})}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Cover Thumbnail\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3hB7K62YxP8mTHpdRI45dcJzM.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1080\",height:\"540\",src:\"https://framerusercontent.com/images/3hB7K62YxP8mTHpdRI45dcJzM.jpg\",srcSet:\"https://framerusercontent.com/images/3hB7K62YxP8mTHpdRI45dcJzM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3hB7K62YxP8mTHpdRI45dcJzM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3hB7K62YxP8mTHpdRI45dcJzM.jpg 1080w\",style:{aspectRatio:\"1080 / 1080\"},width:\"540\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Snapshots\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zc2RIC70k5O78dRWtprtjy3nM.jpg\",\"data-framer-height\":\"1320\",\"data-framer-width\":\"1980\",height:\"660\",src:\"https://framerusercontent.com/images/zc2RIC70k5O78dRWtprtjy3nM.jpg\",srcSet:\"https://framerusercontent.com/images/zc2RIC70k5O78dRWtprtjy3nM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zc2RIC70k5O78dRWtprtjy3nM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zc2RIC70k5O78dRWtprtjy3nM.jpg 1980w\",style:{aspectRatio:\"1980 / 1320\"},width:\"990\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,vb0tmOrpH657FNkoUZfUPca4qI.jpg\",\"data-framer-height\":\"1320\",\"data-framer-width\":\"1980\",height:\"660\",src:\"https://framerusercontent.com/images/vb0tmOrpH657FNkoUZfUPca4qI.jpg\",srcSet:\"https://framerusercontent.com/images/vb0tmOrpH657FNkoUZfUPca4qI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vb0tmOrpH657FNkoUZfUPca4qI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vb0tmOrpH657FNkoUZfUPca4qI.jpg 1980w\",style:{aspectRatio:\"1980 / 1320\"},width:\"990\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9OdjR1CngVebUHhI96HGogZz70.jpg\",\"data-framer-height\":\"1320\",\"data-framer-width\":\"1980\",height:\"660\",src:\"https://framerusercontent.com/images/9OdjR1CngVebUHhI96HGogZz70.jpg\",srcSet:\"https://framerusercontent.com/images/9OdjR1CngVebUHhI96HGogZz70.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9OdjR1CngVebUHhI96HGogZz70.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9OdjR1CngVebUHhI96HGogZz70.jpg 1980w\",style:{aspectRatio:\"1980 / 1320\"},width:\"990\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:8,id:\"duWTzJ5py\",[i]:\"The Dior Connection\",[g]:\"ZX39c9fMl\",[p]:\"the-dior-connection\",[d]:l({src:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg\",srcSet:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg 2000w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Storytelling and Illustration | 2023\"}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Story- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Design- Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:\"Editor - Srishti Gupta\"}),/*#__PURE__*/e(\"p\",{children:\"Special Thanks to Siddharth Tiwari for reviewing the story.\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg\",srcSet:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"p\",{children:\"In this project undertaken during my time at ThisDay, I delved into the remarkable narrative behind the creative fusion of Mumbai-based Chanakya Ateliers and the esteemed international fashion icon, Dior.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Process\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,VvCYUpAVQMMeZnNaHx7jReZEJ3E.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/VvCYUpAVQMMeZnNaHx7jReZEJ3E.jpg\",srcSet:\"https://framerusercontent.com/images/VvCYUpAVQMMeZnNaHx7jReZEJ3E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VvCYUpAVQMMeZnNaHx7jReZEJ3E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VvCYUpAVQMMeZnNaHx7jReZEJ3E.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Initial Rough Sketch\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,c2iuIpdCQjG2m0TDpQhO9yXok.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/c2iuIpdCQjG2m0TDpQhO9yXok.jpg\",srcSet:\"https://framerusercontent.com/images/c2iuIpdCQjG2m0TDpQhO9yXok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c2iuIpdCQjG2m0TDpQhO9yXok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c2iuIpdCQjG2m0TDpQhO9yXok.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"ol\",{start:\"2\",children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Color Script\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UavelyIVbylXas2wj6AJBSg.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/UavelyIVbylXas2wj6AJBSg.jpg\",srcSet:\"https://framerusercontent.com/images/UavelyIVbylXas2wj6AJBSg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UavelyIVbylXas2wj6AJBSg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UavelyIVbylXas2wj6AJBSg.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"ol\",{start:\"3\",children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Inking\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LcB7FkSjEm7CCMA86SLJ9iPlY.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/LcB7FkSjEm7CCMA86SLJ9iPlY.jpg\",srcSet:\"https://framerusercontent.com/images/LcB7FkSjEm7CCMA86SLJ9iPlY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LcB7FkSjEm7CCMA86SLJ9iPlY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LcB7FkSjEm7CCMA86SLJ9iPlY.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"ol\",{start:\"4\",children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Detailed Colouring\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg\",\"data-framer-height\":\"2000\",\"data-framer-width\":\"2000\",height:\"1000\",src:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg\",srcSet:\"https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GqfS2EbzIML8iURo2Q1mY7NOpGE.jpg 2000w\",style:{aspectRatio:\"2000 / 2000\"},width:\"1000\"}),/*#__PURE__*/e(\"ol\",{start:\"5\",children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Lighting and effects\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"h6\",{children:[\"View the live project \",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/story/the-dior-connection-crafting-cross-cultural-couture-27750\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\"!\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\" Article\"}),/*#__PURE__*/e(\"h6\",{children:\"Crafting Cross-Cultural Couture\"}),/*#__PURE__*/e(\"p\",{children:\"On the morning of 12 February 1947, Christian Dior presented his first-ever haute couture fashion show in Paris. For context, \u2018haute couture\u2019 is the French term for high fashion. These garments are handmade and created as one-of-a-kind pieces for a specific client. Dior\u2019s post-World-War-II collection was famously known as \u2018The New Look\u2019, a term given by the then editor-in-chief of Harper\u2019s Bazaar, Carmel Snow. Everything in the collection \u2014 from petite waists to the gentle shoulder and exaggerated hips \u2014 was in direct, striking contrast with the dull, utilitarian military garments people had become accustomed to.\"}),/*#__PURE__*/e(\"p\",{children:'Seven decades and six art directors later, the Dior legacy lives on. Currently, Dior is being helmed by Maria Grazia Chiuri, who is committed to using art and handicraft to bridge global communities. The scale at which she produces these works brings artisans who are otherwise considered the \"back office\u201D of a fashion label to the forefront. For her Haute Couture Spring Summer 2023 show, Chiuri worked with Mickalene Thomas, a contemporary African-American visual artist, to explore themes related to the journeys of path-breaking mixed-race women who became exemplary by making the choice to think differently. Thomas created collages based on thirteen such women using archival images and overlaid them on pixellated grids with a colour palette of the traditional CMYK printing process. The collage was then printed on textile at an enormous scale and ornamented with elaborate embroidery.'}),/*#__PURE__*/e(\"p\",{children:\"This is where Dior\u2019s connection to India comes in \u2014 Chanakya Ateliers. Painstakingly embroidered with sequins by the artisans at this Mumbai-based nonprofit school and atelier, the tapestry came alive with minute details crafted to perfection. Displayed prominently as the backdrop of the ramp, the bespoke tapestry was a notable feature of the show, along with the sleek garments, ornamentation, artfully creased satins, and structured midi suits.\"}),/*#__PURE__*/e(\"p\",{children:\"Chanakya Ateliers is a global export house based in Mumbai, with a non-profit school dedicated to craft, culture, and women\u2019s empowerment. Known for their extraordinary hand-embroidered designs, Chanakya is on a journey to preserve and showcase this age-old tradition. Over the years, Chanakya has acquired multiple international clients, including Christian Dior, Fendi, Valentino, Versace, Moschino, and Yves Saint Laurent. For the Haute Couture SS 2023, Dior\u2019s use of Chanakya Ateliers was another addition to their long-term collaboration with them. Artisans at Chanakya School of Craft had earlier created pieces for Dior for its ready-to-wear collections and worked on Dior\u2019s couture show for the first time in Spring 2020. They went on to create mesmerising tapestries for the Fall 2021, Spring 2022, and Spring 2023 couture shows, and most recently for the much-hyped Pre-Fall 2023 show that took place at Gateway of India earlier this year.\"}),/*#__PURE__*/e(\"p\",{children:\"Chanakya International, the atelier and export house, was launched in 1982 by Vinod Maganlal Shah. Taking a detour from the family\u2019s iron and steel business, Vinod went on to explore the country\u2019s craft clusters and brought with him master craftsmen from Kutch, Lucknow, Varanasi, and Kashmir. He started the export house, providing surface ornamentation in a detail- and quality-oriented work ethic. His children Swali and Nehal Shah went on to take over the operation of the atelier.\"}),/*#__PURE__*/e(\"p\",{children:\"Chanakya\u2019s non-profit school was founded in 2016, and has since then educated over 1000 women. They focus on social and environmental sustainability while preserving traditional craftsmanship techniques. The school\u2019s one-year program consists of master artisans teaching over 300 techniques of hand embroidery. The women also learn business management and receive training in starting new ventures. It concludes with an internship that offers experience in global luxury craft-making. Chanakya, with its fine craftsmanship and meticulously embroidered pieces, has set the mise-en-sc\\xe8ne for the global audience to discern India\u2019s vast repository of art and craft.\"})]})},{index:9,id:\"WInw9pbiL\",[i]:\"Panchtantra\",[g]:\"ZX39c9fMl\",[p]:\"panchatantra\",[d]:l({src:\"https://framerusercontent.com/images/MvAhlIt6Zx2lQHhENEiwoXACO8.jpg\",srcSet:\"https://framerusercontent.com/images/MvAhlIt6Zx2lQHhENEiwoXACO8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MvAhlIt6Zx2lQHhENEiwoXACO8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MvAhlIt6Zx2lQHhENEiwoXACO8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MvAhlIt6Zx2lQHhENEiwoXACO8.jpg 3830w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Storytelling and Illustrated Zine | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jBooJZfYH9rOUfDwUawqSqGqyw.jpg\",\"data-framer-height\":\"6021\",\"data-framer-width\":\"8000\",height:\"3010\",src:\"https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg\",srcSet:\"https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/jBooJZfYH9rOUfDwUawqSqGqyw.jpg 8000w\",style:{aspectRatio:\"8000 / 6021\"},width:\"4000\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"About the Story\"}),/*#__PURE__*/e(\"p\",{children:\"A 6th-century Persian physician travels to India looking for a sanjeevani. It is said to have revived the dead. He ended up doing the first translation of the supposedly most translated literary product of India- The Panchatantra.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg\",\"data-framer-height\":\"7213\",\"data-framer-width\":\"8000\",height:\"3606\",src:\"https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg\",srcSet:\"https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ghRHj8CrGA6RRc9b7qO9sVQBFw.jpg 8000w\",style:{aspectRatio:\"8000 / 7213\"},width:\"4000\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Writing\"}),/*#__PURE__*/e(\"p\",{children:\"I started by drafting the story by combining all the different existing tales around the book and its initial translation into a narrative. There are not many concrete records of any of the events, and the events vary according to the sources. While drafting the story, it was important to acknowledge this.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Storyboarding and Colour Script\"}),/*#__PURE__*/e(\"p\",{children:\"For storyboarding, it was important to maintain historical accuracy along with creative liberty. Since there were not many resources available, some generalisation had to be done while creating the visuals. \"}),/*#__PURE__*/e(\"p\",{children:\"After the storyboarding, I did a rough colour script to figure out the colour scheme to be followed.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,VM7166IyNkmEq72gz0UkN5j2WY.jpg\",\"data-framer-height\":\"5659\",\"data-framer-width\":\"8000\",height:\"2829\",src:\"https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg\",srcSet:\"https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VM7166IyNkmEq72gz0UkN5j2WY.jpg 8000w\",style:{aspectRatio:\"8000 / 5659\"},width:\"4000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Illustration\"}),/*#__PURE__*/e(\"p\",{children:\"The storyboard was then turned into the final illustrations.\"}),/*#__PURE__*/e(\"p\",{children:\"Before that, there were multiple rounds of rough drafts to explore the texture and refine the colour palette.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,O7QxJCLCRHBojTkd3fhaEqRuH4.jpg\",\"data-framer-height\":\"5659\",\"data-framer-width\":\"8000\",height:\"2829\",src:\"https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg\",srcSet:\"https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/O7QxJCLCRHBojTkd3fhaEqRuH4.jpg 8000w\",style:{aspectRatio:\"8000 / 5659\"},width:\"4000\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,dhaEjDQpck02vf7Ae5OSf2NZsc.jpg\",\"data-framer-height\":\"5659\",\"data-framer-width\":\"8000\",height:\"2829\",src:\"https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg\",srcSet:\"https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dhaEjDQpck02vf7Ae5OSf2NZsc.jpg 8000w\",style:{aspectRatio:\"8000 / 5659\"},width:\"4000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"h5\",{children:[\"View The Full Zine \",/*#__PURE__*/e(m,{href:\"https://online.fliphtml5.com/jtluf/cncd/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\"!\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Zine Placement\"}),/*#__PURE__*/e(\"p\",{children:\"The zine was presented and given away as a limited collectible at the Jaipur Literature Festival at ThisDay's Stall.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg\",\"data-framer-height\":\"5659\",\"data-framer-width\":\"8001\",height:\"2829\",src:\"https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg\",srcSet:\"https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VDEP13GZrhr0flEF7Z8hhgvUr4Y.jpg 8001w\",style:{aspectRatio:\"8001 / 5659\"},width:\"4000\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,CUpxTQwOx2JXs4O4ypcrgLPDc.jpg\",\"data-framer-height\":\"5659\",\"data-framer-width\":\"8001\",height:\"2829\",src:\"https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg\",srcSet:\"https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CUpxTQwOx2JXs4O4ypcrgLPDc.jpg 8001w\",style:{aspectRatio:\"8001 / 5659\"},width:\"4000\"})]})},{index:10,id:\"X3sdYEaTz\",[i]:\"Gogola- The Lost film\",[g]:\"wVLvRU2iU\",[h]:\"https://youtu.be/aAGqgHnlD4I\",[p]:\"gogola-the-lost-film\",[d]:l({src:\"https://framerusercontent.com/images/iuhoTTf9ZrDFbt1tDTUxKvvb80.png\",srcSet:\"https://framerusercontent.com/images/iuhoTTf9ZrDFbt1tDTUxKvvb80.png?scale-down-to=512 512w,https://framerusercontent.com/images/iuhoTTf9ZrDFbt1tDTUxKvvb80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iuhoTTf9ZrDFbt1tDTUxKvvb80.png 1628w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustrations and Animation- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,EdtRd3Tjp49cA2zAA4uFLJ9a8.png\",\"data-framer-height\":\"548\",\"data-framer-width\":\"2324\",height:\"274\",src:\"https://framerusercontent.com/images/EdtRd3Tjp49cA2zAA4uFLJ9a8.png\",srcSet:\"https://framerusercontent.com/images/EdtRd3Tjp49cA2zAA4uFLJ9a8.png?scale-down-to=512 512w,https://framerusercontent.com/images/EdtRd3Tjp49cA2zAA4uFLJ9a8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdtRd3Tjp49cA2zAA4uFLJ9a8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EdtRd3Tjp49cA2zAA4uFLJ9a8.png 2324w\",style:{aspectRatio:\"2324 / 548\"},width:\"1162\"}),/*#__PURE__*/e(\"p\",{children:'Introducing \"Gogola\" - India\\'s sole entry into the Kaiju monster genre, a cinematic realm dominated by the likes of Godzilla, renowned globally for depicting colossal creatures laying cities to waste. Within this film, various sequences unfold featuring the flame-spewing Gogola rampaging through the SoBo region. Astonishingly, Gogola even seizes and raises the Gateway of India, an iconic monument. A promotional poster playfully portrays Gogola beside the famed Marine Drive, its appearance leaning more towards a character from Sesame Street rather than the conventional Kaiju aesthetic. At a certain juncture, the narrative takes an unexpected twist as Gogola triggers a city-wide deluge, leaving an unforgettable mark.'}),/*#__PURE__*/t(\"p\",{children:[\"But how was this monster stopped? Gogola was eventually injected with a deadly virus that eventually put him down. Sadly, despite its popularity among those who enjoy the Kaiju genre of films all over the world, Gogola continues to be a lost film.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"While no print of the movie survives today, we thankfully have a soundtrack that has survived. This includes the hilarious \u2018Nacho Nacho Nacho Gogola!\u2019\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Animated Video\"}),/*#__PURE__*/e(\"p\",{children:\"(Sound On for full effect)\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/aAGqgHnlD4I\"})})}),/*#__PURE__*/t(\"p\",{children:[\"The Animation was created for \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/reel/CpM7_p5oLOg/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ThisDay for Social Media\"})}),\". \"]}),/*#__PURE__*/e(\"h6\",{children:\"Illustrated Frames\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,hf9BRh24m89jBOSrH0owyN9LyY.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/hf9BRh24m89jBOSrH0owyN9LyY.png\",srcSet:\"https://framerusercontent.com/images/hf9BRh24m89jBOSrH0owyN9LyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hf9BRh24m89jBOSrH0owyN9LyY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hf9BRh24m89jBOSrH0owyN9LyY.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pZeuoyDn7fFybGnrd4dxFClm0g.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/pZeuoyDn7fFybGnrd4dxFClm0g.png\",srcSet:\"https://framerusercontent.com/images/pZeuoyDn7fFybGnrd4dxFClm0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/pZeuoyDn7fFybGnrd4dxFClm0g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pZeuoyDn7fFybGnrd4dxFClm0g.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Typography\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wms3NHsFPsaoaHpbdBv46dnXqE.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/wms3NHsFPsaoaHpbdBv46dnXqE.png\",srcSet:\"https://framerusercontent.com/images/wms3NHsFPsaoaHpbdBv46dnXqE.png?scale-down-to=512 512w,https://framerusercontent.com/images/wms3NHsFPsaoaHpbdBv46dnXqE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wms3NHsFPsaoaHpbdBv46dnXqE.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4NO4GDxZB3PaLSglEaPUz0VprA.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/4NO4GDxZB3PaLSglEaPUz0VprA.png\",srcSet:\"https://framerusercontent.com/images/4NO4GDxZB3PaLSglEaPUz0VprA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4NO4GDxZB3PaLSglEaPUz0VprA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4NO4GDxZB3PaLSglEaPUz0VprA.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,dDhF88oEIWQyeuDF17plymwlck.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/dDhF88oEIWQyeuDF17plymwlck.png\",srcSet:\"https://framerusercontent.com/images/dDhF88oEIWQyeuDF17plymwlck.png?scale-down-to=512 512w,https://framerusercontent.com/images/dDhF88oEIWQyeuDF17plymwlck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDhF88oEIWQyeuDF17plymwlck.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Problems Faced\"}),/*#__PURE__*/e(\"p\",{children:\"Since this is a lost film with only two movie posters, a couple of snapshots from the film, and a lone song in existence, the resources for our project were incredibly scarce. Faced with this challenge, we  decided to inject humour into the situation. We employed the movie's dialogues to craft a compelling narrative, offering a creative solution to the constraints at hand.\"})]})},{index:11,id:\"uqA9aYEQK\",[i]:\"26/11 Mumbai Attacks\",[g]:\"wVLvRU2iU\",[p]:\"26-11-mumbai-attacks\",[d]:l({src:\"https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg\",srcSet:\"https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2021\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustration, Animation and Sound- Riya Kumari \"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,knCxZWVB9remqF4gHv5rbK2wqkE.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg\",srcSet:\"https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/knCxZWVB9remqF4gHv5rbK2wqkE.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"26/11 Mumbai Attacks is an animated video paying homage to the victims of the attacks carried out by 10 terrorists in the financial capital of India- Mumbai, in 2008.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Ten men were assigned to shake the city of Mumbai, which was linked to the terror group based in Pakistan, Lashkare-Taiba. Of the ten, nine were dead and one was caught alive during an encounter.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Animation\"}),/*#__PURE__*/e(\"p\",{children:\"(Sound On for full effect)\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/8M7wxSk9GbY\"})})}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Illustrations\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PxpoouhO2ny7CApiKeSzPYMdRSk.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/PxpoouhO2ny7CApiKeSzPYMdRSk.jpg\",srcSet:\"https://framerusercontent.com/images/PxpoouhO2ny7CApiKeSzPYMdRSk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PxpoouhO2ny7CApiKeSzPYMdRSk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PxpoouhO2ny7CApiKeSzPYMdRSk.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UFH59FEsGizZCoB2hAE5XYiu8.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/UFH59FEsGizZCoB2hAE5XYiu8.jpg\",srcSet:\"https://framerusercontent.com/images/UFH59FEsGizZCoB2hAE5XYiu8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UFH59FEsGizZCoB2hAE5XYiu8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UFH59FEsGizZCoB2hAE5XYiu8.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oxe4oninbtAdKmQXHcEtbw9yjGI.jpg\",\"data-framer-height\":\"875\",\"data-framer-width\":\"1915\",height:\"437\",src:\"https://framerusercontent.com/images/oxe4oninbtAdKmQXHcEtbw9yjGI.jpg\",srcSet:\"https://framerusercontent.com/images/oxe4oninbtAdKmQXHcEtbw9yjGI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxe4oninbtAdKmQXHcEtbw9yjGI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxe4oninbtAdKmQXHcEtbw9yjGI.jpg 1915w\",style:{aspectRatio:\"1915 / 875\"},width:\"957\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:12,id:\"DbXqLwDyz\",[i]:\"Jab Badhe Kadam Azadi Ki Oor\",[g]:\"wVLvRU2iU\",[p]:\"independence-day\",[d]:l({src:\"https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg\",srcSet:\"https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2022\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"India Celebrates\\xa075 Years of Independence\"}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Chronicle- Kabyashree Sarma\"}),/*#__PURE__*/e(\"p\",{children:\"Illustrations and Animation- Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:\"July-August 2022\"}),/*#__PURE__*/t(\"p\",{children:[\"This is the series of illustrations created and animated by me for \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ThisDay's\"})}),\" Chronicle titled \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/jab-badhe-kadam-azadi-ki-oor-4207\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'Jab Badhe Kadam Azadi Ki Oor\"'})}),\" by Kabyashree Sarma. This Chronicle beautifully encapsulates the theme of 'Instruments of Indian Freedom Struggle' and encompasses a collection of 15 compelling stories from the era of independence, serving as a wellspring of inspiration.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Animation\"}),/*#__PURE__*/e(\"p\",{children:\"(Sound On for full effect)\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/ZUPBHyAO5JM\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201CDushman ki goliyon ka Hum samna karenge Azad hee rahe hain Azad hee rahenge\u201D- Chandra Shekhar Azad\"})}),/*#__PURE__*/e(\"p\",{children:\"Even today, a phrase like this can raise the spirit of patriotism in the hearts and minds of the common Indians. Have you ever wondered how the common masses must have felt when someone in their community or area took up the courage to raise their voice against the tormenting rule of the British Raj? Our history books have provided us with basic details of India\u2019s thriving towards her \u2018azaadi.\u2019 But, there is more to them. There were certain devices or tools which helped in the creation of political awareness among the Indians.\"}),/*#__PURE__*/e(\"h6\",{children:\"Illustrations\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7NBb7IYgvYpzxBpBO5T8stmBplk.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg\",srcSet:\"https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7NBb7IYgvYpzxBpBO5T8stmBplk.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"The creative idea behind the illustration series involved crafting distinct visual narratives for each story, with the fascinating twist that these compositions seamlessly come together to form the map of India when displayed collectively.\"}),/*#__PURE__*/e(\"h6\",{children:\"Ideation Sketches\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ju9NfJXAoxd6qmpPwiHfef9AsEk.png?originalFilename=unknown.png\",\"data-framer-height\":\"1920\",\"data-framer-width\":\"1800\",height:\"960\",src:\"https://framerusercontent.com/images/Ju9NfJXAoxd6qmpPwiHfef9AsEk.png\",srcSet:\"https://framerusercontent.com/images/Ju9NfJXAoxd6qmpPwiHfef9AsEk.png?scale-down-to=1024 960w,https://framerusercontent.com/images/Ju9NfJXAoxd6qmpPwiHfef9AsEk.png 1800w\",style:{aspectRatio:\"1800 / 1920\"},width:\"900\"}),/*#__PURE__*/e(\"p\",{children:\"Ideation sketch to figure out the composition and placement of elements and how they'll fit inside the map of India.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cFoPFKxTEdCshWwgR4rpLs9caE.png?originalFilename=unknown.png\",\"data-framer-height\":\"1920\",\"data-framer-width\":\"1800\",height:\"960\",src:\"https://framerusercontent.com/images/cFoPFKxTEdCshWwgR4rpLs9caE.png\",srcSet:\"https://framerusercontent.com/images/cFoPFKxTEdCshWwgR4rpLs9caE.png?scale-down-to=1024 960w,https://framerusercontent.com/images/cFoPFKxTEdCshWwgR4rpLs9caE.png 1800w\",style:{aspectRatio:\"1800 / 1920\"},width:\"900\"}),/*#__PURE__*/e(\"p\",{children:\"Rough sketch to decide the elements and other details.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,N2tW3AJRTwpfVGA9Ic8NAf4JQ.png\",\"data-framer-height\":\"1440\",\"data-framer-width\":\"1160\",height:\"720\",src:\"https://framerusercontent.com/images/N2tW3AJRTwpfVGA9Ic8NAf4JQ.png\",srcSet:\"https://framerusercontent.com/images/N2tW3AJRTwpfVGA9Ic8NAf4JQ.png?scale-down-to=1024 824w,https://framerusercontent.com/images/N2tW3AJRTwpfVGA9Ic8NAf4JQ.png 1160w\",style:{aspectRatio:\"1160 / 1440\"},width:\"580\"}),/*#__PURE__*/e(\"p\",{children:\"Cleaner, refined sketch to be used as the base for the visuals\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Articles\"}),/*#__PURE__*/t(\"p\",{children:[\"// \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/jab-badhe-kadam-azadi-ki-oor-4207\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Jab Badhe Kadam Azadi Ki Oor\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/when-the-indian-flatbread-spreads-fear-4176\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"When The Indian Flatbread Spreads Fear\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"// \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/when-ganpati-utsav-brought-people-together-4215\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"When Ganpati Utsav brought people together\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/thakumar-jhuli-means-of-anticolonial-struggle-4211\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Thakumar Jhuli aur anya kahaniya\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/when-a-pinch-of-salt-reminded-britishers-a-taste-of-their-own-medicine-4208\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"When A Pinch Of Salt Reminded Britishers A Taste Of Their Own Medicine\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"// \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/the-undeniable-charm-of-khadi-4209\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Undeniable Charm of Khadi\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"// \",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/the-goddess-who-mothered-india-in-the-th-century-bharat-mata-4210\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"The Goddess who Mothered India in the 20th Century\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/radioactive-freedom-when-underground-voices-could-be-heard-4247\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Radio-active Freedom: When underground voices could be heard\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/breaking-the-biased-mirror-of-indias-past-4240\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Breaking the Biased Mirror of India's Past\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/when-print-became-sharper-than-the-sword-4242\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"When print became sharper than the sword\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/jhanda-uncha-rahe-hamara-when-our-flag-was-our-pride-4248\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Jhanda Uncha Rahe Hamara: When our flag was our pride\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"//\\xa0\",/*#__PURE__*/e(m,{href:\"https://web.thisday.app/story/sarfaroshi-ki-tamanna-a-soulstirring-ode-to-every-patriot-at-heart-4245\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Sarfaroshi ki Tamanna: A soul-stirring ode to every patriot at heart\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:13,id:\"ZTCzKVcPv\",[i]:\"The Mythological Origins of Madhubani\",[g]:\"wVLvRU2iU\",[p]:\"the-mythological-origins-of-madhubani\",[d]:l({src:\"https://framerusercontent.com/images/pe9xJOFhsaDijZm02IXy0mOxQKQ.jpg\",srcSet:\"https://framerusercontent.com/images/pe9xJOFhsaDijZm02IXy0mOxQKQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pe9xJOFhsaDijZm02IXy0mOxQKQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pe9xJOFhsaDijZm02IXy0mOxQKQ.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2022\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustration and Animation- Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:\"Story- Kabyashree Sarma\"}),/*#__PURE__*/t(\"p\",{children:[\"This is an\\xa0Animation I made for\",/*#__PURE__*/e(\"strong\",{children:\" \"}),/*#__PURE__*/e(m,{href:\"https://www.instagram.com/thisday.app/?hl=en\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"ThisDay's\"})})}),\" collaboration with \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/zwendedesign/?hl=en\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Zwende Design\"})})}),\". This animation narrates the tale of Madhubani, a traditional art form originating from Bihar. My intention was to showcase the authentic artistic essence of this traditional style through animation.\"]}),/*#__PURE__*/e(\"h6\",{children:\"Animation\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xyLblEPTIFjyaNbkKLQRWwOMDm8.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/xyLblEPTIFjyaNbkKLQRWwOMDm8.mp4\"}),/*#__PURE__*/e(\"p\",{children:\"The animation tells the mythological origin of Madhubani. \"}),/*#__PURE__*/t(\"p\",{children:[\"View the Animation on \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/reel/CexwSTNqo6r/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"ThisDay and Zwende Design's Instagram Page!\"})})]}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Illustrated Frames\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jnYWBV5jU3XwUV82BsoV28ggOA.png\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/jnYWBV5jU3XwUV82BsoV28ggOA.png\",srcSet:\"https://framerusercontent.com/images/jnYWBV5jU3XwUV82BsoV28ggOA.png?scale-down-to=512 512w,https://framerusercontent.com/images/jnYWBV5jU3XwUV82BsoV28ggOA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jnYWBV5jU3XwUV82BsoV28ggOA.png 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Article\"}),/*#__PURE__*/t(\"p\",{children:[\"Read the story \",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/en/details/discovery-amidst-ruins\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"here\"})})}),/*#__PURE__*/e(\"strong\",{children:\"!\"})]})]})},{index:14,id:\"eQ2xf1paN\",[i]:\"Death and Little Blossom \",[g]:\"wVLvRU2iU\",[p]:\"death-and-little-blossom\",[d]:l({src:\"https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg\",srcSet:\"https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg 2200w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2023\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustrations and Animation- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"This project is an animated video narrating an exciting story from the Panchatantra- the book of ancient Indian animal fables. The surviving work from the book is dated to about 200 BCE, but the fables are likely much more ancient.\"}),/*#__PURE__*/e(\"p\",{children:\"The story follows the events after Indra's parrot Blossom encounters Yama, the lord of death.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg\",srcSet:\"https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rEjYru1tKPpiJ8vjIA6IfUnLq4c.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:'<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5ow6fHycO6M?si=DNkCyuo6q2yUbLDj\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,tToDORvXsddnKzQt5dqFk1ihqao.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/tToDORvXsddnKzQt5dqFk1ihqao.jpg\",srcSet:\"https://framerusercontent.com/images/tToDORvXsddnKzQt5dqFk1ihqao.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tToDORvXsddnKzQt5dqFk1ihqao.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tToDORvXsddnKzQt5dqFk1ihqao.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tToDORvXsddnKzQt5dqFk1ihqao.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JMZ7sAK5roOanDBNQiiKpmvMjg.jpg\",\"data-framer-height\":\"1723\",\"data-framer-width\":\"2200\",height:\"861\",src:\"https://framerusercontent.com/images/JMZ7sAK5roOanDBNQiiKpmvMjg.jpg\",srcSet:\"https://framerusercontent.com/images/JMZ7sAK5roOanDBNQiiKpmvMjg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMZ7sAK5roOanDBNQiiKpmvMjg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JMZ7sAK5roOanDBNQiiKpmvMjg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JMZ7sAK5roOanDBNQiiKpmvMjg.jpg 2200w\",style:{aspectRatio:\"2200 / 1723\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,vanqO5plpni3hMgVZW8NmIOm0Go.jpg\",\"data-framer-height\":\"1493\",\"data-framer-width\":\"2200\",height:\"746\",src:\"https://framerusercontent.com/images/vanqO5plpni3hMgVZW8NmIOm0Go.jpg\",srcSet:\"https://framerusercontent.com/images/vanqO5plpni3hMgVZW8NmIOm0Go.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vanqO5plpni3hMgVZW8NmIOm0Go.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vanqO5plpni3hMgVZW8NmIOm0Go.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vanqO5plpni3hMgVZW8NmIOm0Go.jpg 2200w\",style:{aspectRatio:\"2200 / 1493\"},width:\"1100\"})]})},{index:15,id:\"L7gvh1_5R\",[i]:\"Quit India\",[g]:\"hw9RjsBlx\",[p]:\"quit-india\",[d]:l({src:\"https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg\",srcSet:\"https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg 2200w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Animation Design | 2022\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Quit India Movement\"}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustrations and Animation- Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Short Animated GIFs for Quit India Movement. The clips makes use of photo editing, typography, and hand-drawn animation.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(m,{href:\"https://www.thisday.app/story/an-august-revolution-made-in-july-1705\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Read the Article here\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KUb4NGBw0TSv6X0F5JNBuZw.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/KUb4NGBw0TSv6X0F5JNBuZw.jpg\",srcSet:\"https://framerusercontent.com/images/KUb4NGBw0TSv6X0F5JNBuZw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KUb4NGBw0TSv6X0F5JNBuZw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KUb4NGBw0TSv6X0F5JNBuZw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KUb4NGBw0TSv6X0F5JNBuZw.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:\"As the British colonialists' bin of sin got the better of them, the pressure mounted both from within India and outside of it. On July 14, 1942, a draft of the Quit India Resolution was passed by the Congress Working Committee before declaring a non-violent war on the Raj.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/-fd0HxHbkKE\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg\",srcSet:\"https://framerusercontent.com/images/mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mg4T2yiO9nJPatQbjSN5yL6aGrM.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg\",srcSet:\"https://framerusercontent.com/images/XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XcT1smgW3RNhf4zsk2XMZQdfd7I.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Nu1RW7oHxrDf99KE8osTgCvi7M.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg\",srcSet:\"https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nu1RW7oHxrDf99KE8osTgCvi7M.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:16,id:\"xzc8MQ8nB\",[i]:\"Storyboard for Parker Pens TVC- Unwrap friendship\",[g]:\"hw9RjsBlx\",[p]:\"storyboard-for-parker-pens-tvc\",[d]:l({src:\"https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg\",srcSet:\"https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg 2180w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Storyboarding | 2023\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Project Done for-\\xa0Parker Pens\"}),/*#__PURE__*/e(\"p\",{children:\"Agency- Buffalo Soldiers\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2180\",height:\"615\",src:\"https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg\",srcSet:\"https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MtBDjZjbXfvq0V6wyzs5BX3ZX0.jpg 2180w\",style:{aspectRatio:\"2180 / 1230\"},width:\"1090\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=xRdCfm-t2Fs\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg\",srcSet:\"https://framerusercontent.com/images/Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ve8s2MDeIrEgKJVZcE4kS5qocs.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zpvoVVfsmLSyOWqSCEnsfMjo8.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/zpvoVVfsmLSyOWqSCEnsfMjo8.jpg\",srcSet:\"https://framerusercontent.com/images/zpvoVVfsmLSyOWqSCEnsfMjo8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zpvoVVfsmLSyOWqSCEnsfMjo8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zpvoVVfsmLSyOWqSCEnsfMjo8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zpvoVVfsmLSyOWqSCEnsfMjo8.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg\",\"data-framer-height\":\"611\",\"data-framer-width\":\"2180\",height:\"305\",src:\"https://framerusercontent.com/images/ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg\",srcSet:\"https://framerusercontent.com/images/ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZzV7auWpRsqkPomgKxoQgYG8MS0.jpg 2180w\",style:{aspectRatio:\"2180 / 611\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg\",\"data-framer-height\":\"617\",\"data-framer-width\":\"2180\",height:\"308\",src:\"https://framerusercontent.com/images/KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg\",srcSet:\"https://framerusercontent.com/images/KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KpbMJIZ4VWqdCpAn74Q4rGM0EY.jpg 2180w\",style:{aspectRatio:\"2180 / 617\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg\",srcSet:\"https://framerusercontent.com/images/drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/drNvTx5AFpOgJ4CzUwQLhcynZRg.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg\",srcSet:\"https://framerusercontent.com/images/HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HsGAI3DQMFf8Z60iFWf50gDOWW0.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg\",srcSet:\"https://framerusercontent.com/images/sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sF5iA1KlcwnkjmjrVHT5mwITeBE.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wjp9FhgK958CunDhUT3v2A9cvFM.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/wjp9FhgK958CunDhUT3v2A9cvFM.jpg\",srcSet:\"https://framerusercontent.com/images/wjp9FhgK958CunDhUT3v2A9cvFM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wjp9FhgK958CunDhUT3v2A9cvFM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wjp9FhgK958CunDhUT3v2A9cvFM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wjp9FhgK958CunDhUT3v2A9cvFM.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg\",\"data-framer-height\":\"612\",\"data-framer-width\":\"2180\",height:\"306\",src:\"https://framerusercontent.com/images/7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg\",srcSet:\"https://framerusercontent.com/images/7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7Rb1Ghcf8HSKn4vQdGdeCVRTIA.jpg 2180w\",style:{aspectRatio:\"2180 / 612\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg\",srcSet:\"https://framerusercontent.com/images/pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pFlWHHtLZrZX4pUcB63W5T4mmwU.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,es9Mrhy9iySMW4y5mX5aj8k6j8.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/es9Mrhy9iySMW4y5mX5aj8k6j8.jpg\",srcSet:\"https://framerusercontent.com/images/es9Mrhy9iySMW4y5mX5aj8k6j8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/es9Mrhy9iySMW4y5mX5aj8k6j8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/es9Mrhy9iySMW4y5mX5aj8k6j8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/es9Mrhy9iySMW4y5mX5aj8k6j8.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,m6tWEkbnuEFLCPSouHxO0g4aoE.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/m6tWEkbnuEFLCPSouHxO0g4aoE.jpg\",srcSet:\"https://framerusercontent.com/images/m6tWEkbnuEFLCPSouHxO0g4aoE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m6tWEkbnuEFLCPSouHxO0g4aoE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m6tWEkbnuEFLCPSouHxO0g4aoE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m6tWEkbnuEFLCPSouHxO0g4aoE.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,sXihDN02lvTJREaDvN2wbofvU.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/sXihDN02lvTJREaDvN2wbofvU.jpg\",srcSet:\"https://framerusercontent.com/images/sXihDN02lvTJREaDvN2wbofvU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sXihDN02lvTJREaDvN2wbofvU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sXihDN02lvTJREaDvN2wbofvU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sXihDN02lvTJREaDvN2wbofvU.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4NzHKupgJvNNrUBpeVRCpGC9E.jpg\",\"data-framer-height\":\"615\",\"data-framer-width\":\"2180\",height:\"307\",src:\"https://framerusercontent.com/images/4NzHKupgJvNNrUBpeVRCpGC9E.jpg\",srcSet:\"https://framerusercontent.com/images/4NzHKupgJvNNrUBpeVRCpGC9E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4NzHKupgJvNNrUBpeVRCpGC9E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4NzHKupgJvNNrUBpeVRCpGC9E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4NzHKupgJvNNrUBpeVRCpGC9E.jpg 2180w\",style:{aspectRatio:\"2180 / 615\"},width:\"1090\"})]})},{index:17,id:\"untZzwS68\",[i]:\"Royal Green - Packaging Design\",[g]:\"hw9RjsBlx\",[p]:\"royal-green\",[d]:l({src:\"https://framerusercontent.com/images/U5yatjPMdkLksN2bYX43fpPBadQ.png\",srcSet:\"https://framerusercontent.com/images/U5yatjPMdkLksN2bYX43fpPBadQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/U5yatjPMdkLksN2bYX43fpPBadQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U5yatjPMdkLksN2bYX43fpPBadQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/U5yatjPMdkLksN2bYX43fpPBadQ.png 2248w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Packaging Design | 2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Project Done for-\\xa0Bifrost Studios\"}),/*#__PURE__*/e(\"p\",{children:\"Client- Royal Green\"}),/*#__PURE__*/e(\"p\",{children:\"Packaging Design- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Mentor- Tejal Tunge, Tarunika Gaur\"}),/*#__PURE__*/e(\"p\",{children:\"September 2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xOVnGG5NWNA8zDG6esDJ2ujYts.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/xOVnGG5NWNA8zDG6esDJ2ujYts.jpg\",srcSet:\"https://framerusercontent.com/images/xOVnGG5NWNA8zDG6esDJ2ujYts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xOVnGG5NWNA8zDG6esDJ2ujYts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xOVnGG5NWNA8zDG6esDJ2ujYts.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xOVnGG5NWNA8zDG6esDJ2ujYts.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:\"Hailing from Gurugram, ADS Spirit's stands as a prominent indigenous liqueur brand in India. Renowned for their signature blends like Royal Green and The Generation, they have carved a niche in the market.\"}),/*#__PURE__*/e(\"p\",{children:\"In celebration of Diwali '20, ADS embarked on crafting an exclusive Limited Edition Gift Box for Royal Green. The theme was to embrace the \\\"Vocal For Local\\\". With this concept at the forefront, the decision was made to integrate  kalamkari art into the packaging. This artistic approach aimed to maintain a hand-drawn aesthetic, serving as a homage to the brand's roots and its homegrown essence.\"}),/*#__PURE__*/e(\"p\",{children:\"Attention-grabbing, flamboyant and remarkable were a few attributes that the client was looking for, which is exactly the kind of character we tried to bring to the design.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Illustration\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qIvIjFJhJxTFsejDYZu3qEzxSM.jpg\",\"data-framer-height\":\"1476\",\"data-framer-width\":\"2200\",height:\"738\",src:\"https://framerusercontent.com/images/qIvIjFJhJxTFsejDYZu3qEzxSM.jpg\",srcSet:\"https://framerusercontent.com/images/qIvIjFJhJxTFsejDYZu3qEzxSM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qIvIjFJhJxTFsejDYZu3qEzxSM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qIvIjFJhJxTFsejDYZu3qEzxSM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qIvIjFJhJxTFsejDYZu3qEzxSM.jpg 2200w\",style:{aspectRatio:\"2200 / 1476\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,DHPXcTlEKOvlgXMqVr2kxTkII.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg\",srcSet:\"https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,DHPXcTlEKOvlgXMqVr2kxTkII.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg\",srcSet:\"https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DHPXcTlEKOvlgXMqVr2kxTkII.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"View the live project \",/*#__PURE__*/e(m,{href:\"https://www.wearebifrost.com/royal-green\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\"!\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:18,id:\"WLHfQdwv7\",[i]:\"Parker Pens | TVC Storyboard\",[g]:\"uU3UnLqIH\",[p]:\"storyboard-for-parker-pens-tvc2\",[d]:l({positionX:\"50%\",positionY:\"50%\",src:\"https://framerusercontent.com/images/1YgnBFkVlpfwpfTjBTmb79PmAg.jpg\",srcSet:\"https://framerusercontent.com/images/1YgnBFkVlpfwpfTjBTmb79PmAg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1YgnBFkVlpfwpfTjBTmb79PmAg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YgnBFkVlpfwpfTjBTmb79PmAg.jpg 1728w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9SJukK9vj7kDJMRzfbmlXKQI.jpg\",\"data-framer-height\":\"1208\",\"data-framer-width\":\"2180\",height:\"604\",src:\"https://framerusercontent.com/images/9SJukK9vj7kDJMRzfbmlXKQI.jpg\",srcSet:\"https://framerusercontent.com/images/9SJukK9vj7kDJMRzfbmlXKQI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9SJukK9vj7kDJMRzfbmlXKQI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9SJukK9vj7kDJMRzfbmlXKQI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9SJukK9vj7kDJMRzfbmlXKQI.jpg 2180w\",style:{aspectRatio:\"2180 / 1208\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg\",\"data-framer-height\":\"1025\",\"data-framer-width\":\"2180\",height:\"512\",src:\"https://framerusercontent.com/images/AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg\",srcSet:\"https://framerusercontent.com/images/AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AVDjoaCzD9PpLGn9JSM1xu4T6g.jpg 2180w\",style:{aspectRatio:\"2180 / 1025\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,apaalgC2hE1IQ8w3TIkuBVujUzA.jpg\",\"data-framer-height\":\"429\",\"data-framer-width\":\"2180\",height:\"214\",src:\"https://framerusercontent.com/images/apaalgC2hE1IQ8w3TIkuBVujUzA.jpg\",srcSet:\"https://framerusercontent.com/images/apaalgC2hE1IQ8w3TIkuBVujUzA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/apaalgC2hE1IQ8w3TIkuBVujUzA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/apaalgC2hE1IQ8w3TIkuBVujUzA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/apaalgC2hE1IQ8w3TIkuBVujUzA.jpg 2180w\",style:{aspectRatio:\"2180 / 429\"},width:\"1090\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=N5iTwyLN85s\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FGyGmkFxl7YyUWnDk7BJe0RxnFE.jpg\",\"data-framer-height\":\"2784\",\"data-framer-width\":\"2180\",height:\"1392\",src:\"https://framerusercontent.com/images/FGyGmkFxl7YyUWnDk7BJe0RxnFE.jpg\",srcSet:\"https://framerusercontent.com/images/FGyGmkFxl7YyUWnDk7BJe0RxnFE.jpg?scale-down-to=1024 801w,https://framerusercontent.com/images/FGyGmkFxl7YyUWnDk7BJe0RxnFE.jpg?scale-down-to=2048 1603w,https://framerusercontent.com/images/FGyGmkFxl7YyUWnDk7BJe0RxnFE.jpg 2180w\",style:{aspectRatio:\"2180 / 2784\"},width:\"1090\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,hQVopnp8YC4Jz6thAaeTw5UJFk.jpg\",\"data-framer-height\":\"429\",\"data-framer-width\":\"2180\",height:\"214\",src:\"https://framerusercontent.com/images/hQVopnp8YC4Jz6thAaeTw5UJFk.jpg\",srcSet:\"https://framerusercontent.com/images/hQVopnp8YC4Jz6thAaeTw5UJFk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hQVopnp8YC4Jz6thAaeTw5UJFk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hQVopnp8YC4Jz6thAaeTw5UJFk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hQVopnp8YC4Jz6thAaeTw5UJFk.jpg 2180w\",style:{aspectRatio:\"2180 / 429\"},width:\"1090\"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=xRdCfm-t2Fs\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,1hXUho6zBVRC0ZUy7i1ALpn0Vvg.jpg\",\"data-framer-height\":\"2784\",\"data-framer-width\":\"2180\",height:\"1392\",src:\"https://framerusercontent.com/images/1hXUho6zBVRC0ZUy7i1ALpn0Vvg.jpg\",srcSet:\"https://framerusercontent.com/images/1hXUho6zBVRC0ZUy7i1ALpn0Vvg.jpg?scale-down-to=1024 801w,https://framerusercontent.com/images/1hXUho6zBVRC0ZUy7i1ALpn0Vvg.jpg?scale-down-to=2048 1603w,https://framerusercontent.com/images/1hXUho6zBVRC0ZUy7i1ALpn0Vvg.jpg 2180w\",style:{aspectRatio:\"2180 / 2784\"},width:\"1090\"})]})},{index:19,id:\"cCjFqP4KW\",[i]:\"Battle of Plassey | A zine by ThisDay\",[g]:\"uU3UnLqIH\",[p]:\"battle-of-plassey\",[d]:l({src:\"https://framerusercontent.com/images/4oruOFbBJeQdnBcTA4lqW6TCWqY.png\",srcSet:\"https://framerusercontent.com/images/4oruOFbBJeQdnBcTA4lqW6TCWqY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4oruOFbBJeQdnBcTA4lqW6TCWqY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4oruOFbBJeQdnBcTA4lqW6TCWqY.png 1254w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustration and Publication Design | 2021\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustration- Riya Kumari and Dishani Goswami\"}),/*#__PURE__*/e(\"p\",{children:\"Product Photography- Riya Kumari\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- March- April 2021\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,OKxCYOosusuzCooCR5M3siacJA.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/OKxCYOosusuzCooCR5M3siacJA.jpg\",srcSet:\"https://framerusercontent.com/images/OKxCYOosusuzCooCR5M3siacJA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OKxCYOosusuzCooCR5M3siacJA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKxCYOosusuzCooCR5M3siacJA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OKxCYOosusuzCooCR5M3siacJA.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg\",\"data-framer-height\":\"1372\",\"data-framer-width\":\"2200\",height:\"686\",src:\"https://framerusercontent.com/images/sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg\",srcSet:\"https://framerusercontent.com/images/sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sPFOLp9WFZfvfNxqpIzQQvoNjw.jpg 2200w\",style:{aspectRatio:\"2200 / 1372\"},width:\"1100\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Abstract\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"British East India Company. Robert Clive. The Nawab of Bengal. Some more names. Some Dates. A Looming Battle. Some facts.\\xa0Victory. Defeat. Betrayal. Some more Dates and Names and Facts.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"Sounds familiar?\"]}),/*#__PURE__*/e(\"p\",{children:\"This is all that we remember of the History Lesson on \u201CBattle of Plassey\u201D, the battle that eventually led to the EIC taking control of the eastern part of the Indian Subcontinent. An important event is reduced to facts and figures making it boring to read and prone to be rote-learned. We as storytellers aim to change this narrative. Putting on our green thinking hats, we are here to make history fun.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"\u201CBattle of Plassey\u201D, the Zine, is the brainchild of the Content Team and the Design Team at Ekank. Using Visual Storytelling as our medium, we are creating a narrative that\u2019s memorable and caters to an audience vulnerable to getting distracted while reading long, boring paragraphs in history textbooks (Read- Ekank Design Team. Been there, done that \\xa0:\u2019))\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"To sum it up, this project is our way of making history fun, one day at a time.\"}),/*#__PURE__*/e(\"p\",{children:\"____________________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Referencing\"}),/*#__PURE__*/e(\"p\",{children:\"We collected paintings, artworks, and interpretations from various sources which were later used as a guide while storyboarding and sketching. This is done to keep the visuals as historically accurate as possible while still maintaining an acceptable level of creative freedom.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg\",srcSet:\"https://framerusercontent.com/images/pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pa2eVuG35JyEOC8o3dNVOdN2ywI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Storyboards\"}),/*#__PURE__*/e(\"p\",{children:\"The storyboards were\\xa0created with the purpose of giving\\xa0a direction to the overall narration and\\xa0drafting out how the final product would look like.\\xa0It includes\\xa0defining the compositions, camera angles, pacing and overall visual flow of the story.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7oqga3ZAmsHDRFYv8Z77i51Y1fA.jpg\",\"data-framer-height\":\"6876\",\"data-framer-width\":\"2200\",height:\"3438\",src:\"https://framerusercontent.com/images/7oqga3ZAmsHDRFYv8Z77i51Y1fA.jpg\",srcSet:\"https://framerusercontent.com/images/7oqga3ZAmsHDRFYv8Z77i51Y1fA.jpg?scale-down-to=2048 655w,https://framerusercontent.com/images/7oqga3ZAmsHDRFYv8Z77i51Y1fA.jpg?scale-down-to=4096 1310w,https://framerusercontent.com/images/7oqga3ZAmsHDRFYv8Z77i51Y1fA.jpg 2200w\",style:{aspectRatio:\"2200 / 6876\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Final Designs\"}),/*#__PURE__*/e(\"p\",{children:\"The illustration style is fairly detailed with slight stylisation while the compositions are relatively\\xa0simple and direct.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"The colour scheme\\xa0is\\xa0a balance of earthy, muted and deep colours. It helps in making the overall visual look vibrant and lively without the colours themselves being too saturated.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg\",\"data-framer-height\":\"1870\",\"data-framer-width\":\"2200\",height:\"935\",src:\"https://framerusercontent.com/images/KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg\",srcSet:\"https://framerusercontent.com/images/KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KYt2qnRzmHX3smyz2DWvPLHtbM8.jpg 2200w\",style:{aspectRatio:\"2200 / 1870\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg\",\"data-framer-height\":\"1277\",\"data-framer-width\":\"2200\",height:\"638\",src:\"https://framerusercontent.com/images/FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg\",srcSet:\"https://framerusercontent.com/images/FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FzJn0XSxi3Xd7vLuxyWaRLpdU.jpg 2200w\",style:{aspectRatio:\"2200 / 1277\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg\",\"data-framer-height\":\"1277\",\"data-framer-width\":\"2200\",height:\"638\",src:\"https://framerusercontent.com/images/BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg\",srcSet:\"https://framerusercontent.com/images/BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BHlVOQ5zMWeKIQHyUeJZ92LYs8I.jpg 2200w\",style:{aspectRatio:\"2200 / 1277\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg\",\"data-framer-height\":\"1277\",\"data-framer-width\":\"2200\",height:\"638\",src:\"https://framerusercontent.com/images/6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg\",srcSet:\"https://framerusercontent.com/images/6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6YmYgO4AWNUVSOSlnrAz8StH6I4.jpg 2200w\",style:{aspectRatio:\"2200 / 1277\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,L8t7xA6f8YsaU7ryONrsn2evbA.jpg\",\"data-framer-height\":\"1277\",\"data-framer-width\":\"2200\",height:\"638\",src:\"https://framerusercontent.com/images/L8t7xA6f8YsaU7ryONrsn2evbA.jpg\",srcSet:\"https://framerusercontent.com/images/L8t7xA6f8YsaU7ryONrsn2evbA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L8t7xA6f8YsaU7ryONrsn2evbA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L8t7xA6f8YsaU7ryONrsn2evbA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L8t7xA6f8YsaU7ryONrsn2evbA.jpg 2200w\",style:{aspectRatio:\"2200 / 1277\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg\",\"data-framer-height\":\"1277\",\"data-framer-width\":\"2200\",height:\"638\",src:\"https://framerusercontent.com/images/uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg\",srcSet:\"https://framerusercontent.com/images/uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uJamb3Ydkr6gDZXkpAOkkMilhBo.jpg 2200w\",style:{aspectRatio:\"2200 / 1277\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"The Zine\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg\",srcSet:\"https://framerusercontent.com/images/g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/g9K4LKuaDMfkZ1T0bwEWZcEL7Vs.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,SFafm36dyiRPK8l8tLMIecwtKU8.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/SFafm36dyiRPK8l8tLMIecwtKU8.jpg\",srcSet:\"https://framerusercontent.com/images/SFafm36dyiRPK8l8tLMIecwtKU8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SFafm36dyiRPK8l8tLMIecwtKU8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFafm36dyiRPK8l8tLMIecwtKU8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SFafm36dyiRPK8l8tLMIecwtKU8.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lkXlVd2iY0v95LhszZENOOMdOJI.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/lkXlVd2iY0v95LhszZENOOMdOJI.jpg\",srcSet:\"https://framerusercontent.com/images/lkXlVd2iY0v95LhszZENOOMdOJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lkXlVd2iY0v95LhszZENOOMdOJI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lkXlVd2iY0v95LhszZENOOMdOJI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lkXlVd2iY0v95LhszZENOOMdOJI.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wFP4adfosn5xUWqR8z5d5iCgU.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/wFP4adfosn5xUWqR8z5d5iCgU.jpg\",srcSet:\"https://framerusercontent.com/images/wFP4adfosn5xUWqR8z5d5iCgU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wFP4adfosn5xUWqR8z5d5iCgU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wFP4adfosn5xUWqR8z5d5iCgU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wFP4adfosn5xUWqR8z5d5iCgU.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KOszqIvLhjFKk4WoJxfunfDwY.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/KOszqIvLhjFKk4WoJxfunfDwY.jpg\",srcSet:\"https://framerusercontent.com/images/KOszqIvLhjFKk4WoJxfunfDwY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KOszqIvLhjFKk4WoJxfunfDwY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KOszqIvLhjFKk4WoJxfunfDwY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KOszqIvLhjFKk4WoJxfunfDwY.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:\" \"}),/*#__PURE__*/t(\"p\",{children:[\"Read the Whole Story Here -\",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/thisday.app/guide/battle-of-plassey/18033896758339832/?utm_campaign=&utm_medium=&utm_source=ig_web_copy_link\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\" Battle of Plassey on ThisDay \"})})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg\",\"data-framer-height\":\"1375\",\"data-framer-width\":\"2200\",height:\"687\",src:\"https://framerusercontent.com/images/ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg\",srcSet:\"https://framerusercontent.com/images/ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ERBmzTsxGG44oVhMWjwBM8n9rS8.jpg 2200w\",style:{aspectRatio:\"2200 / 1375\"},width:\"1100\"})]})},{index:20,id:\"IimnjTtWM\",[i]:\"Collected Portraits \",[g]:\"uU3UnLqIH\",[p]:\"collected-works-for-thisday\",[d]:l({src:\"https://framerusercontent.com/images/AsgNy4alaDz1A87NdIhbpKIIS2g.jpg\",srcSet:\"https://framerusercontent.com/images/AsgNy4alaDz1A87NdIhbpKIIS2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AsgNy4alaDz1A87NdIhbpKIIS2g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AsgNy4alaDz1A87NdIhbpKIIS2g.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Illustrations | 2021-23\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustrations - Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:\"A collection of editorials portraits illustrated by me for Ekank's platform named ThisDay. These pieces centre around narratives delving into the realms of Indian History, Art, Culture, and Heritage. \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Illustrations\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg\",srcSet:\"https://framerusercontent.com/images/Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Oztm3gE2iTwbtrRFPO7ztpSBe5s.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,N48yugQ3fsES0wAhBWvixvkYK7s.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/N48yugQ3fsES0wAhBWvixvkYK7s.jpg\",srcSet:\"https://framerusercontent.com/images/N48yugQ3fsES0wAhBWvixvkYK7s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N48yugQ3fsES0wAhBWvixvkYK7s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N48yugQ3fsES0wAhBWvixvkYK7s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N48yugQ3fsES0wAhBWvixvkYK7s.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg\",srcSet:\"https://framerusercontent.com/images/CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CQFW7CyIf3kLm3QLu0USZaDEG5Y.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pS5CBJQhNTjToJvrzpPsP4Mno.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/pS5CBJQhNTjToJvrzpPsP4Mno.jpg\",srcSet:\"https://framerusercontent.com/images/pS5CBJQhNTjToJvrzpPsP4Mno.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pS5CBJQhNTjToJvrzpPsP4Mno.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pS5CBJQhNTjToJvrzpPsP4Mno.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pS5CBJQhNTjToJvrzpPsP4Mno.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg\",srcSet:\"https://framerusercontent.com/images/CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CiMFXDMkHSmy2YnL9GRSt0aIeg.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg\",srcSet:\"https://framerusercontent.com/images/Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y2mw5e1XsHxDOlIhB6rPZoYjciE.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg\",srcSet:\"https://framerusercontent.com/images/pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pIv8vPhtFmGr0dAqgDIH1cR4xhU.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,2r473X8d1rhcXUs4GJC9eA51BoE.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/2r473X8d1rhcXUs4GJC9eA51BoE.jpg\",srcSet:\"https://framerusercontent.com/images/2r473X8d1rhcXUs4GJC9eA51BoE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2r473X8d1rhcXUs4GJC9eA51BoE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2r473X8d1rhcXUs4GJC9eA51BoE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2r473X8d1rhcXUs4GJC9eA51BoE.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg\",srcSet:\"https://framerusercontent.com/images/Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qz1rB8QeC5NtCwtlCjqIHOF3xAI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg\",srcSet:\"https://framerusercontent.com/images/9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9sQtrMXXOVn5kE9KsNrPgLjBPvo.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UrbykKV3KdY8cSyF9CdfUyZQ.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/UrbykKV3KdY8cSyF9CdfUyZQ.jpg\",srcSet:\"https://framerusercontent.com/images/UrbykKV3KdY8cSyF9CdfUyZQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UrbykKV3KdY8cSyF9CdfUyZQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UrbykKV3KdY8cSyF9CdfUyZQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UrbykKV3KdY8cSyF9CdfUyZQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg\",srcSet:\"https://framerusercontent.com/images/PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PvTwOLqIjcrEDSXyPhL5GjCaV4.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,s802vpiAJgaExrfoXgTdJ3Decho.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/s802vpiAJgaExrfoXgTdJ3Decho.jpg\",srcSet:\"https://framerusercontent.com/images/s802vpiAJgaExrfoXgTdJ3Decho.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s802vpiAJgaExrfoXgTdJ3Decho.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s802vpiAJgaExrfoXgTdJ3Decho.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s802vpiAJgaExrfoXgTdJ3Decho.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lunA77BpFPXcfQzsEnLgPZzZLU.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/lunA77BpFPXcfQzsEnLgPZzZLU.jpg\",srcSet:\"https://framerusercontent.com/images/lunA77BpFPXcfQzsEnLgPZzZLU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lunA77BpFPXcfQzsEnLgPZzZLU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lunA77BpFPXcfQzsEnLgPZzZLU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lunA77BpFPXcfQzsEnLgPZzZLU.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YZsGY34NMjcWo2Vc8G2mfHptk.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/YZsGY34NMjcWo2Vc8G2mfHptk.jpg\",srcSet:\"https://framerusercontent.com/images/YZsGY34NMjcWo2Vc8G2mfHptk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YZsGY34NMjcWo2Vc8G2mfHptk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YZsGY34NMjcWo2Vc8G2mfHptk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YZsGY34NMjcWo2Vc8G2mfHptk.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg\",srcSet:\"https://framerusercontent.com/images/pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pQ1vfKIu99r9hVHcQ0j0kmsYGvI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:21,id:\"OvO_mMkD4\",[i]:\"Fastrack Advertorial | Storyboards\",[g]:\"uU3UnLqIH\",[p]:\"fastrack-storyboards\",[d]:l({src:\"https://framerusercontent.com/images/M7oIHqMOsXmZyXY9RuZx9tzlges.jpg\",srcSet:\"https://framerusercontent.com/images/M7oIHqMOsXmZyXY9RuZx9tzlges.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M7oIHqMOsXmZyXY9RuZx9tzlges.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M7oIHqMOsXmZyXY9RuZx9tzlges.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg\",\"data-framer-height\":\"1208\",\"data-framer-width\":\"2180\",height:\"604\",src:\"https://framerusercontent.com/images/rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg\",srcSet:\"https://framerusercontent.com/images/rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rgaKknSC2i7xGg7PuSzTT1h4rnQ.jpg 2180w\",style:{aspectRatio:\"2180 / 1208\"},width:\"1090\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(m,{href:\"https://www.fastrack.in/shop/be-both-collection?page=2\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:'View the live Campaign -\"BeBoth\".  '})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lYV7S6BspvUigvgPRys5zXuaIqI.jpg\",\"data-framer-height\":\"1025\",\"data-framer-width\":\"2180\",height:\"512\",src:\"https://framerusercontent.com/images/lYV7S6BspvUigvgPRys5zXuaIqI.jpg\",srcSet:\"https://framerusercontent.com/images/lYV7S6BspvUigvgPRys5zXuaIqI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lYV7S6BspvUigvgPRys5zXuaIqI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lYV7S6BspvUigvgPRys5zXuaIqI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lYV7S6BspvUigvgPRys5zXuaIqI.jpg 2180w\",style:{aspectRatio:\"2180 / 1025\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,0o88WjYmxjA17t4p5qF6aKgfHU.jpg\",\"data-framer-height\":\"429\",\"data-framer-width\":\"2180\",height:\"214\",src:\"https://framerusercontent.com/images/0o88WjYmxjA17t4p5qF6aKgfHU.jpg\",srcSet:\"https://framerusercontent.com/images/0o88WjYmxjA17t4p5qF6aKgfHU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0o88WjYmxjA17t4p5qF6aKgfHU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0o88WjYmxjA17t4p5qF6aKgfHU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0o88WjYmxjA17t4p5qF6aKgfHU.jpg 2180w\",style:{aspectRatio:\"2180 / 429\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wcPXvoPQKCASP4sTUDdranXjthE.jpg\",\"data-framer-height\":\"2373\",\"data-framer-width\":\"2180\",height:\"1186\",src:\"https://framerusercontent.com/images/wcPXvoPQKCASP4sTUDdranXjthE.jpg\",srcSet:\"https://framerusercontent.com/images/wcPXvoPQKCASP4sTUDdranXjthE.jpg?scale-down-to=1024 940w,https://framerusercontent.com/images/wcPXvoPQKCASP4sTUDdranXjthE.jpg?scale-down-to=2048 1881w,https://framerusercontent.com/images/wcPXvoPQKCASP4sTUDdranXjthE.jpg 2180w\",style:{aspectRatio:\"2180 / 2373\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WMOXciopBIpUjCDrS2GefuqVu14.jpg\",\"data-framer-height\":\"429\",\"data-framer-width\":\"2180\",height:\"214\",src:\"https://framerusercontent.com/images/WMOXciopBIpUjCDrS2GefuqVu14.jpg\",srcSet:\"https://framerusercontent.com/images/WMOXciopBIpUjCDrS2GefuqVu14.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WMOXciopBIpUjCDrS2GefuqVu14.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WMOXciopBIpUjCDrS2GefuqVu14.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WMOXciopBIpUjCDrS2GefuqVu14.jpg 2180w\",style:{aspectRatio:\"2180 / 429\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BQcLT3xL2Im74FZIfiUpZUt8.jpg\",\"data-framer-height\":\"2373\",\"data-framer-width\":\"2180\",height:\"1186\",src:\"https://framerusercontent.com/images/BQcLT3xL2Im74FZIfiUpZUt8.jpg\",srcSet:\"https://framerusercontent.com/images/BQcLT3xL2Im74FZIfiUpZUt8.jpg?scale-down-to=1024 940w,https://framerusercontent.com/images/BQcLT3xL2Im74FZIfiUpZUt8.jpg?scale-down-to=2048 1881w,https://framerusercontent.com/images/BQcLT3xL2Im74FZIfiUpZUt8.jpg 2180w\",style:{aspectRatio:\"2180 / 2373\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LNWiXi6RLsj98NEe6dWwdv5YGxk.jpg\",\"data-framer-height\":\"2373\",\"data-framer-width\":\"2180\",height:\"1186\",src:\"https://framerusercontent.com/images/LNWiXi6RLsj98NEe6dWwdv5YGxk.jpg\",srcSet:\"https://framerusercontent.com/images/LNWiXi6RLsj98NEe6dWwdv5YGxk.jpg?scale-down-to=1024 940w,https://framerusercontent.com/images/LNWiXi6RLsj98NEe6dWwdv5YGxk.jpg?scale-down-to=2048 1881w,https://framerusercontent.com/images/LNWiXi6RLsj98NEe6dWwdv5YGxk.jpg 2180w\",style:{aspectRatio:\"2180 / 2373\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HhZyK4ZuCCDFSVwZidOalcLpqE.jpg\",\"data-framer-height\":\"2373\",\"data-framer-width\":\"2180\",height:\"1186\",src:\"https://framerusercontent.com/images/HhZyK4ZuCCDFSVwZidOalcLpqE.jpg\",srcSet:\"https://framerusercontent.com/images/HhZyK4ZuCCDFSVwZidOalcLpqE.jpg?scale-down-to=1024 940w,https://framerusercontent.com/images/HhZyK4ZuCCDFSVwZidOalcLpqE.jpg?scale-down-to=2048 1881w,https://framerusercontent.com/images/HhZyK4ZuCCDFSVwZidOalcLpqE.jpg 2180w\",style:{aspectRatio:\"2180 / 2373\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4kdmikATrXgKXi5f2FeMpMMrH34.jpg\",\"data-framer-height\":\"2373\",\"data-framer-width\":\"2180\",height:\"1186\",src:\"https://framerusercontent.com/images/4kdmikATrXgKXi5f2FeMpMMrH34.jpg\",srcSet:\"https://framerusercontent.com/images/4kdmikATrXgKXi5f2FeMpMMrH34.jpg?scale-down-to=1024 940w,https://framerusercontent.com/images/4kdmikATrXgKXi5f2FeMpMMrH34.jpg?scale-down-to=2048 1881w,https://framerusercontent.com/images/4kdmikATrXgKXi5f2FeMpMMrH34.jpg 2180w\",style:{aspectRatio:\"2180 / 2373\"},width:\"1090\"})]})},{index:22,id:\"dtdQbOVi2\",[i]:\"Native Picks | Packaging Design\",[g]:\"uU3UnLqIH\",[p]:\"native-picks\",[d]:l({src:\"https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg\",srcSet:\"https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PdqR2RUNlvQe2XrjXXuX1xwuiY.jpg 8000w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg\",\"data-framer-height\":\"1208\",\"data-framer-width\":\"2180\",height:\"604\",src:\"https://framerusercontent.com/images/DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg\",srcSet:\"https://framerusercontent.com/images/DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DIUQdKwTNUrnyDRdAXdoCtaF6gw.jpg 2180w\",style:{aspectRatio:\"2180 / 1208\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg\",\"data-framer-height\":\"1025\",\"data-framer-width\":\"2180\",height:\"512\",src:\"https://framerusercontent.com/images/v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg\",srcSet:\"https://framerusercontent.com/images/v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/v6EWAzoPQtTAM1j3EyF1fZcwfk.jpg 2180w\",style:{aspectRatio:\"2180 / 1025\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lAgf2EORg8wXcPCjWz1Nw29Kw.jpg\",\"data-framer-height\":\"905\",\"data-framer-width\":\"2180\",height:\"452\",src:\"https://framerusercontent.com/images/lAgf2EORg8wXcPCjWz1Nw29Kw.jpg\",srcSet:\"https://framerusercontent.com/images/lAgf2EORg8wXcPCjWz1Nw29Kw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lAgf2EORg8wXcPCjWz1Nw29Kw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lAgf2EORg8wXcPCjWz1Nw29Kw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lAgf2EORg8wXcPCjWz1Nw29Kw.jpg 2180w\",style:{aspectRatio:\"2180 / 905\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,VkJTOJFVgDjUBvgCK5hKBa24WVU.gif\",\"data-framer-height\":\"2013\",\"data-framer-width\":\"2013\",height:\"1006\",src:\"https://framerusercontent.com/images/VkJTOJFVgDjUBvgCK5hKBa24WVU.gif\",srcSet:\"https://framerusercontent.com/images/VkJTOJFVgDjUBvgCK5hKBa24WVU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/VkJTOJFVgDjUBvgCK5hKBa24WVU.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/VkJTOJFVgDjUBvgCK5hKBa24WVU.gif 2013w\",style:{aspectRatio:\"2013 / 2013\"},width:\"1006\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg\",\"data-framer-height\":\"1300\",\"data-framer-width\":\"2180\",height:\"650\",src:\"https://framerusercontent.com/images/HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg\",srcSet:\"https://framerusercontent.com/images/HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HaqpzJqHG8ZIWmG8Ym2Ye7mlmKo.jpg 2180w\",style:{aspectRatio:\"2180 / 1300\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg\",\"data-framer-height\":\"1300\",\"data-framer-width\":\"2180\",height:\"650\",src:\"https://framerusercontent.com/images/yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg\",srcSet:\"https://framerusercontent.com/images/yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yk1WSRLTrqwvaPDWNRDzjlMHJt0.jpg 2180w\",style:{aspectRatio:\"2180 / 1300\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg\",\"data-framer-height\":\"1300\",\"data-framer-width\":\"2180\",height:\"650\",src:\"https://framerusercontent.com/images/bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg\",srcSet:\"https://framerusercontent.com/images/bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bWV2O3f6AsjCz2Ht27m3YAfZuNk.jpg 2180w\",style:{aspectRatio:\"2180 / 1300\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,63kj40vtVjqnSF2j4ccuSM6Ep90.png\",\"data-framer-height\":\"1800\",\"data-framer-width\":\"2880\",height:\"900\",src:\"https://framerusercontent.com/images/63kj40vtVjqnSF2j4ccuSM6Ep90.png\",srcSet:\"https://framerusercontent.com/images/63kj40vtVjqnSF2j4ccuSM6Ep90.png?scale-down-to=512 512w,https://framerusercontent.com/images/63kj40vtVjqnSF2j4ccuSM6Ep90.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/63kj40vtVjqnSF2j4ccuSM6Ep90.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/63kj40vtVjqnSF2j4ccuSM6Ep90.png 2880w\",style:{aspectRatio:\"2880 / 1800\"},width:\"1440\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ybUuA8jNAPdEnKlUfOt51IfghE.png\",\"data-framer-height\":\"1972\",\"data-framer-width\":\"3098\",height:\"986\",src:\"https://framerusercontent.com/images/ybUuA8jNAPdEnKlUfOt51IfghE.png\",srcSet:\"https://framerusercontent.com/images/ybUuA8jNAPdEnKlUfOt51IfghE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ybUuA8jNAPdEnKlUfOt51IfghE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ybUuA8jNAPdEnKlUfOt51IfghE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ybUuA8jNAPdEnKlUfOt51IfghE.png 3098w\",style:{aspectRatio:\"3098 / 1972\"},width:\"1549\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uZw6DSRtvZ4KJUyGyhGvgaUClP0.png\",\"data-framer-height\":\"1972\",\"data-framer-width\":\"3098\",height:\"986\",src:\"https://framerusercontent.com/images/uZw6DSRtvZ4KJUyGyhGvgaUClP0.png\",srcSet:\"https://framerusercontent.com/images/uZw6DSRtvZ4KJUyGyhGvgaUClP0.png?scale-down-to=512 512w,https://framerusercontent.com/images/uZw6DSRtvZ4KJUyGyhGvgaUClP0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uZw6DSRtvZ4KJUyGyhGvgaUClP0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uZw6DSRtvZ4KJUyGyhGvgaUClP0.png 3098w\",style:{aspectRatio:\"3098 / 1972\"},width:\"1549\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:23,id:\"eIMyEa3M9\",[i]:\"Collected Works on Indian History and Culture\",[g]:\"uU3UnLqIH\",[p]:\"collected-works-on-indian-history-and-culture\",[d]:l({src:\"https://framerusercontent.com/images/XGQ5cKKEOZQOzQMdLTXgUtQdzOM.png\",srcSet:\"https://framerusercontent.com/images/XGQ5cKKEOZQOzQMdLTXgUtQdzOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGQ5cKKEOZQOzQMdLTXgUtQdzOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XGQ5cKKEOZQOzQMdLTXgUtQdzOM.png 1122w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Editorial Illustrations | 2021-23\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Illustrations - Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"This is a collection of my editorial pieces illustrated for Ekank's platform, ThisDay. Dedicated to exploring the rich tapestry of Indian History, Art, Culture, and Heritage, ThisDay is a platform for enthusiasts to share their passion through engaging stories and illustrations.\"}),/*#__PURE__*/e(\"p\",{children:\"My contributions to ThisDay reflect a range of topics and styles, demonstrating my versatility as an illustrator. These stories have reached a wide audience from ThisDay's partnerships with leading platforms such as JioTV, Airtel, Xiaomi, Redmi, and others.\"}),/*#__PURE__*/e(\"p\",{children:\"I had a great time working on these illustration as it made me learn something new about these stories and I also got to experiment with my work.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,icaDtvisEJNbaomaUXKdxNQpMQ.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/icaDtvisEJNbaomaUXKdxNQpMQ.jpg\",srcSet:\"https://framerusercontent.com/images/icaDtvisEJNbaomaUXKdxNQpMQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/icaDtvisEJNbaomaUXKdxNQpMQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/icaDtvisEJNbaomaUXKdxNQpMQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/icaDtvisEJNbaomaUXKdxNQpMQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg\",srcSet:\"https://framerusercontent.com/images/ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ulT0g4tLyREkUCLqKqsmMiTXHt4.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg\",srcSet:\"https://framerusercontent.com/images/HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HBSMTpFn5vYlk3Z9zWZezy4oMA.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wF2LgQxSg6xdNPikhuGk3P7bXII.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/wF2LgQxSg6xdNPikhuGk3P7bXII.jpg\",srcSet:\"https://framerusercontent.com/images/wF2LgQxSg6xdNPikhuGk3P7bXII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wF2LgQxSg6xdNPikhuGk3P7bXII.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wF2LgQxSg6xdNPikhuGk3P7bXII.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wF2LgQxSg6xdNPikhuGk3P7bXII.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg\",srcSet:\"https://framerusercontent.com/images/wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wcp3tVNrQMrZoCFfl8q4YGcepdw.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg\",srcSet:\"https://framerusercontent.com/images/n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n6mp8C7h3DlV4wKhgUYzgFiHLb0.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg\",srcSet:\"https://framerusercontent.com/images/BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BLDZfwzOZ0IdPXaSf84BYtqQQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cqwS7ad5l3OK33FRxDltpmn3k.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/cqwS7ad5l3OK33FRxDltpmn3k.jpg\",srcSet:\"https://framerusercontent.com/images/cqwS7ad5l3OK33FRxDltpmn3k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cqwS7ad5l3OK33FRxDltpmn3k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cqwS7ad5l3OK33FRxDltpmn3k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cqwS7ad5l3OK33FRxDltpmn3k.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WLwBOyWI5RncJbqMSWkbryGcg.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/WLwBOyWI5RncJbqMSWkbryGcg.jpg\",srcSet:\"https://framerusercontent.com/images/WLwBOyWI5RncJbqMSWkbryGcg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WLwBOyWI5RncJbqMSWkbryGcg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WLwBOyWI5RncJbqMSWkbryGcg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WLwBOyWI5RncJbqMSWkbryGcg.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LOj1X8uStaVQXMMvXGRnkXsI6w.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/LOj1X8uStaVQXMMvXGRnkXsI6w.jpg\",srcSet:\"https://framerusercontent.com/images/LOj1X8uStaVQXMMvXGRnkXsI6w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LOj1X8uStaVQXMMvXGRnkXsI6w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LOj1X8uStaVQXMMvXGRnkXsI6w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LOj1X8uStaVQXMMvXGRnkXsI6w.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JKK1C7CtbCyq622mZOmticHaQg.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/JKK1C7CtbCyq622mZOmticHaQg.jpg\",srcSet:\"https://framerusercontent.com/images/JKK1C7CtbCyq622mZOmticHaQg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JKK1C7CtbCyq622mZOmticHaQg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKK1C7CtbCyq622mZOmticHaQg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JKK1C7CtbCyq622mZOmticHaQg.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,NO8lgZslcKmaYfZa8gyo468N0.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/NO8lgZslcKmaYfZa8gyo468N0.jpg\",srcSet:\"https://framerusercontent.com/images/NO8lgZslcKmaYfZa8gyo468N0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NO8lgZslcKmaYfZa8gyo468N0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NO8lgZslcKmaYfZa8gyo468N0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NO8lgZslcKmaYfZa8gyo468N0.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg\",srcSet:\"https://framerusercontent.com/images/OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OtCCKI5kUHEcn6unUKGaLsjPIRA.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7ampT3Q5S5IdMifBsJWDcGfLw.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/7ampT3Q5S5IdMifBsJWDcGfLw.jpg\",srcSet:\"https://framerusercontent.com/images/7ampT3Q5S5IdMifBsJWDcGfLw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7ampT3Q5S5IdMifBsJWDcGfLw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ampT3Q5S5IdMifBsJWDcGfLw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7ampT3Q5S5IdMifBsJWDcGfLw.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KRsYy4EHDmR71ZTrg1lemwe9iE.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/KRsYy4EHDmR71ZTrg1lemwe9iE.jpg\",srcSet:\"https://framerusercontent.com/images/KRsYy4EHDmR71ZTrg1lemwe9iE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KRsYy4EHDmR71ZTrg1lemwe9iE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KRsYy4EHDmR71ZTrg1lemwe9iE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KRsYy4EHDmR71ZTrg1lemwe9iE.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,mt1yWI22NqfttjBoP96WLSW0FSc.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/mt1yWI22NqfttjBoP96WLSW0FSc.jpg\",srcSet:\"https://framerusercontent.com/images/mt1yWI22NqfttjBoP96WLSW0FSc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mt1yWI22NqfttjBoP96WLSW0FSc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mt1yWI22NqfttjBoP96WLSW0FSc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mt1yWI22NqfttjBoP96WLSW0FSc.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"})]})},{index:24,id:\"sEnz3mQRz\",[i]:\"The Year Project | Stationery Design\",[g]:\"uU3UnLqIH\",[p]:\"the-year-project\",[d]:l({src:\"https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg\",srcSet:\"https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Io2ec3i96HzZGCZofCyEGRITPI.jpg 4439w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Small Business Promoting Sustainable Fashion | 2020\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Ran a small business through Instagram with 4 colleagues. We created illustrated stationery (Diaries, Calendars, Stickers and Sketchbooks) promoting Sustainable Fashion.\"}),/*#__PURE__*/e(\"p\",{children:\"Merchandise- Diaries, Sketchbooks Calendars, Bookmarks, and Stickers\"}),/*#__PURE__*/e(\"p\",{children:\"Timeline- November 2020- April 2021\"}),/*#__PURE__*/e(\"p\",{children:\"Team- Riya Kumari, Shreyanshi Mishra, Dishani Goswami, Shruti Roy\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KoMT1Peep5FvUD0wTtvV65N9I.jpg\",\"data-framer-height\":\"1454\",\"data-framer-width\":\"2200\",height:\"727\",src:\"https://framerusercontent.com/images/KoMT1Peep5FvUD0wTtvV65N9I.jpg\",srcSet:\"https://framerusercontent.com/images/KoMT1Peep5FvUD0wTtvV65N9I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KoMT1Peep5FvUD0wTtvV65N9I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KoMT1Peep5FvUD0wTtvV65N9I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KoMT1Peep5FvUD0wTtvV65N9I.jpg 2200w\",style:{aspectRatio:\"2200 / 1454\"},width:\"1100\"}),/*#__PURE__*/t(\"p\",{children:[\"Visit the Instagram Page \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/the.year.project/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\"!\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Design\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,j9QIvMSChjF84xQTYk7uB2cAw0.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/j9QIvMSChjF84xQTYk7uB2cAw0.jpg\",srcSet:\"https://framerusercontent.com/images/j9QIvMSChjF84xQTYk7uB2cAw0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/j9QIvMSChjF84xQTYk7uB2cAw0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/j9QIvMSChjF84xQTYk7uB2cAw0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/j9QIvMSChjF84xQTYk7uB2cAw0.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MDSfXkCNaDEarFkHMsndpgoOP4.jpg\",\"data-framer-height\":\"1425\",\"data-framer-width\":\"2200\",height:\"712\",src:\"https://framerusercontent.com/images/MDSfXkCNaDEarFkHMsndpgoOP4.jpg\",srcSet:\"https://framerusercontent.com/images/MDSfXkCNaDEarFkHMsndpgoOP4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MDSfXkCNaDEarFkHMsndpgoOP4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MDSfXkCNaDEarFkHMsndpgoOP4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MDSfXkCNaDEarFkHMsndpgoOP4.jpg 2200w\",style:{aspectRatio:\"2200 / 1425\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zylvEq8Utr1zPYQRCEbgEkOfI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/zylvEq8Utr1zPYQRCEbgEkOfI.jpg\",srcSet:\"https://framerusercontent.com/images/zylvEq8Utr1zPYQRCEbgEkOfI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zylvEq8Utr1zPYQRCEbgEkOfI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zylvEq8Utr1zPYQRCEbgEkOfI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zylvEq8Utr1zPYQRCEbgEkOfI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,k7BgtHgCRBNskWAhzj5y08pYVo.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/k7BgtHgCRBNskWAhzj5y08pYVo.jpg\",srcSet:\"https://framerusercontent.com/images/k7BgtHgCRBNskWAhzj5y08pYVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k7BgtHgCRBNskWAhzj5y08pYVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k7BgtHgCRBNskWAhzj5y08pYVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k7BgtHgCRBNskWAhzj5y08pYVo.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KWW2lStv1eULc3ewd9es7kKPU.jpg\",\"data-framer-height\":\"2634\",\"data-framer-width\":\"2200\",height:\"1317\",src:\"https://framerusercontent.com/images/KWW2lStv1eULc3ewd9es7kKPU.jpg\",srcSet:\"https://framerusercontent.com/images/KWW2lStv1eULc3ewd9es7kKPU.jpg?scale-down-to=1024 855w,https://framerusercontent.com/images/KWW2lStv1eULc3ewd9es7kKPU.jpg?scale-down-to=2048 1710w,https://framerusercontent.com/images/KWW2lStv1eULc3ewd9es7kKPU.jpg 2200w\",style:{aspectRatio:\"2200 / 2634\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9MOv5kQaDEAczg6QEDybmkv9yw.jpg\",\"data-framer-height\":\"1959\",\"data-framer-width\":\"2200\",height:\"979\",src:\"https://framerusercontent.com/images/9MOv5kQaDEAczg6QEDybmkv9yw.jpg\",srcSet:\"https://framerusercontent.com/images/9MOv5kQaDEAczg6QEDybmkv9yw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9MOv5kQaDEAczg6QEDybmkv9yw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9MOv5kQaDEAczg6QEDybmkv9yw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9MOv5kQaDEAczg6QEDybmkv9yw.jpg 2200w\",style:{aspectRatio:\"2200 / 1959\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg\",\"data-framer-height\":\"1595\",\"data-framer-width\":\"2200\",height:\"797\",src:\"https://framerusercontent.com/images/fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg\",srcSet:\"https://framerusercontent.com/images/fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fAo9dyNIEXeJIl9ITQicqOj4Yf8.jpg 2200w\",style:{aspectRatio:\"2200 / 1595\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg\",\"data-framer-height\":\"1533\",\"data-framer-width\":\"2200\",height:\"766\",src:\"https://framerusercontent.com/images/pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg\",srcSet:\"https://framerusercontent.com/images/pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pbCt0VOZtndrRVWI3D4EfhTd6Us.jpg 2200w\",style:{aspectRatio:\"2200 / 1533\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg\",\"data-framer-height\":\"1533\",\"data-framer-width\":\"2200\",height:\"766\",src:\"https://framerusercontent.com/images/ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg\",srcSet:\"https://framerusercontent.com/images/ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZcmY13d3ZFIvfKOvZpZWvLSNsps.jpg 2200w\",style:{aspectRatio:\"2200 / 1533\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg\",\"data-framer-height\":\"1867\",\"data-framer-width\":\"2200\",height:\"933\",src:\"https://framerusercontent.com/images/SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg\",srcSet:\"https://framerusercontent.com/images/SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SEdq3izlP9u9PTu1hLbZkJyyEQg.jpg 2200w\",style:{aspectRatio:\"2200 / 1867\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lI8NK16opPv4lbzA1vUfZUc7784.gif\",\"data-framer-height\":\"2311\",\"data-framer-width\":\"3500\",height:\"1155\",src:\"https://framerusercontent.com/images/lI8NK16opPv4lbzA1vUfZUc7784.gif\",srcSet:\"https://framerusercontent.com/images/lI8NK16opPv4lbzA1vUfZUc7784.gif?scale-down-to=512 512w,https://framerusercontent.com/images/lI8NK16opPv4lbzA1vUfZUc7784.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/lI8NK16opPv4lbzA1vUfZUc7784.gif?scale-down-to=2048 2048w,https://framerusercontent.com/images/lI8NK16opPv4lbzA1vUfZUc7784.gif 3500w\",style:{aspectRatio:\"3500 / 2311\"},width:\"1750\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Promotional Posts\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MQHvahnfGyAatsG9a7MSckmVyI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/MQHvahnfGyAatsG9a7MSckmVyI.jpg\",srcSet:\"https://framerusercontent.com/images/MQHvahnfGyAatsG9a7MSckmVyI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MQHvahnfGyAatsG9a7MSckmVyI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MQHvahnfGyAatsG9a7MSckmVyI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MQHvahnfGyAatsG9a7MSckmVyI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg\",srcSet:\"https://framerusercontent.com/images/WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WxQcThlUKYYJe8K7ZpqIMpM7uA.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Product Photography\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BIGXTTq0IhMesGfAQYUBdWRAAw.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/BIGXTTq0IhMesGfAQYUBdWRAAw.jpg\",srcSet:\"https://framerusercontent.com/images/BIGXTTq0IhMesGfAQYUBdWRAAw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BIGXTTq0IhMesGfAQYUBdWRAAw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIGXTTq0IhMesGfAQYUBdWRAAw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BIGXTTq0IhMesGfAQYUBdWRAAw.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg\",srcSet:\"https://framerusercontent.com/images/9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9UYiHoUFtnSoyw3dT24jcF7CtGc.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cwkB42e4kejvQx7QcZzFmYZWapc.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/cwkB42e4kejvQx7QcZzFmYZWapc.jpg\",srcSet:\"https://framerusercontent.com/images/cwkB42e4kejvQx7QcZzFmYZWapc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cwkB42e4kejvQx7QcZzFmYZWapc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cwkB42e4kejvQx7QcZzFmYZWapc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cwkB42e4kejvQx7QcZzFmYZWapc.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg\",srcSet:\"https://framerusercontent.com/images/Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ry8Qb4MX9IKY7wnQhpHcFVTGxiQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg\",srcSet:\"https://framerusercontent.com/images/LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYvc7HvYgtsmEM1lbsHKDirFiMQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"2200\",height:\"692\",src:\"https://framerusercontent.com/images/UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg\",srcSet:\"https://framerusercontent.com/images/UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UJzOq5GUAgAQIKtPu45l06WNsTQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1385\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:\" \"})]})},{index:25,id:\"D5CqQfe0t\",[i]:\"Anand Dhankoti | Comic \",[g]:\"uU3UnLqIH\",[p]:\"anand-dhankoti-dancing-to-his-tune\",[d]:l({src:\"https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg\",srcSet:\"https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg 2180w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,OD6FsUK3hfKC54tz7PeK5qSfYE.jpg\",\"data-framer-height\":\"1208\",\"data-framer-width\":\"2180\",height:\"604\",src:\"https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg\",srcSet:\"https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OD6FsUK3hfKC54tz7PeK5qSfYE.jpg 2180w\",style:{aspectRatio:\"2180 / 1208\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg\",\"data-framer-height\":\"1025\",\"data-framer-width\":\"2180\",height:\"512\",src:\"https://framerusercontent.com/images/ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg\",srcSet:\"https://framerusercontent.com/images/ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZDou0KYsOJHKXvswg6E9lsz3Fs.jpg 2180w\",style:{aspectRatio:\"2180 / 1025\"},width:\"1090\"}),/*#__PURE__*/t(\"p\",{children:[\"View the live \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/p/CjIg33JvD_h/?utm_source=ig_web_copy_link&igsh=MzRlODBiNWFlZA==\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"project\"})}),\"!\"]}),/*#__PURE__*/t(\"p\",{children:[\"Read the \",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/story/dancing-to-his-tune-4974\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Story\"})}),\"!\"]}),/*#__PURE__*/t(\"p\",{children:[\"Check out the amazing work of \",/*#__PURE__*/e(m,{href:\"https://www.instagram.com/ananddhanakoti/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Anand Dhankoti\"})}),\"!\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FXatM28z4bBdG5PfWMB1VPMI7k.jpg\",\"data-framer-height\":\"1112\",\"data-framer-width\":\"2180\",height:\"556\",src:\"https://framerusercontent.com/images/FXatM28z4bBdG5PfWMB1VPMI7k.jpg\",srcSet:\"https://framerusercontent.com/images/FXatM28z4bBdG5PfWMB1VPMI7k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FXatM28z4bBdG5PfWMB1VPMI7k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FXatM28z4bBdG5PfWMB1VPMI7k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FXatM28z4bBdG5PfWMB1VPMI7k.jpg 2180w\",style:{aspectRatio:\"2180 / 1112\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg\",\"data-framer-height\":\"1112\",\"data-framer-width\":\"2180\",height:\"556\",src:\"https://framerusercontent.com/images/BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg\",srcSet:\"https://framerusercontent.com/images/BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BAlvywJYjk7O2cYwQ2qfeVdCSg0.jpg 2180w\",style:{aspectRatio:\"2180 / 1112\"},width:\"1090\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,pI471OZyAabNp5B1PmEOO6SpyZI.jpg\",\"data-framer-height\":\"1112\",\"data-framer-width\":\"2180\",height:\"556\",src:\"https://framerusercontent.com/images/pI471OZyAabNp5B1PmEOO6SpyZI.jpg\",srcSet:\"https://framerusercontent.com/images/pI471OZyAabNp5B1PmEOO6SpyZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pI471OZyAabNp5B1PmEOO6SpyZI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pI471OZyAabNp5B1PmEOO6SpyZI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pI471OZyAabNp5B1PmEOO6SpyZI.jpg 2180w\",style:{aspectRatio:\"2180 / 1112\"},width:\"1090\"})]})},{index:26,id:\"euaERkmVw\",[i]:\"Collected Works on Religion and Festivals\",[g]:\"uU3UnLqIH\",[p]:\"religion-and-festivals\",[d]:l({src:\"https://framerusercontent.com/images/izqHqj8u1ZAQ5x5fEPebupGqivQ.jpg\",srcSet:\"https://framerusercontent.com/images/izqHqj8u1ZAQ5x5fEPebupGqivQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/izqHqj8u1ZAQ5x5fEPebupGqivQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/izqHqj8u1ZAQ5x5fEPebupGqivQ.jpg 2000w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Editorial Illustrations | 2021-23\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for-\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"A collection of Illustrations for various religious and cultural celebrations across India\"}),/*#__PURE__*/e(\"p\",{children:\"Illustrations - Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3Go2XNpKowauq2u1k5NfIYsS4PE.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/3Go2XNpKowauq2u1k5NfIYsS4PE.jpg\",srcSet:\"https://framerusercontent.com/images/3Go2XNpKowauq2u1k5NfIYsS4PE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3Go2XNpKowauq2u1k5NfIYsS4PE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Go2XNpKowauq2u1k5NfIYsS4PE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3Go2XNpKowauq2u1k5NfIYsS4PE.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jomBtGb1WEF9FZEd5zUjXG6x4.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/jomBtGb1WEF9FZEd5zUjXG6x4.jpg\",srcSet:\"https://framerusercontent.com/images/jomBtGb1WEF9FZEd5zUjXG6x4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jomBtGb1WEF9FZEd5zUjXG6x4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jomBtGb1WEF9FZEd5zUjXG6x4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jomBtGb1WEF9FZEd5zUjXG6x4.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg\",srcSet:\"https://framerusercontent.com/images/ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ITzqeeG1Zxu2v2nZ5tGCNfHDog.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9Or3YP9vXgCpNFLSzz8SjeE4s.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/9Or3YP9vXgCpNFLSzz8SjeE4s.jpg\",srcSet:\"https://framerusercontent.com/images/9Or3YP9vXgCpNFLSzz8SjeE4s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9Or3YP9vXgCpNFLSzz8SjeE4s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Or3YP9vXgCpNFLSzz8SjeE4s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9Or3YP9vXgCpNFLSzz8SjeE4s.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,0QvTNOzXSUQX3z1nbr6eXClwJc.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/0QvTNOzXSUQX3z1nbr6eXClwJc.jpg\",srcSet:\"https://framerusercontent.com/images/0QvTNOzXSUQX3z1nbr6eXClwJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0QvTNOzXSUQX3z1nbr6eXClwJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0QvTNOzXSUQX3z1nbr6eXClwJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0QvTNOzXSUQX3z1nbr6eXClwJc.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qgo87xsYSNqfrrTBRlolgn0hMk.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/qgo87xsYSNqfrrTBRlolgn0hMk.jpg\",srcSet:\"https://framerusercontent.com/images/qgo87xsYSNqfrrTBRlolgn0hMk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qgo87xsYSNqfrrTBRlolgn0hMk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qgo87xsYSNqfrrTBRlolgn0hMk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qgo87xsYSNqfrrTBRlolgn0hMk.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg\",srcSet:\"https://framerusercontent.com/images/7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7dofy3dUZnkCqVZ7wCfQr4rtjEc.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg\",srcSet:\"https://framerusercontent.com/images/dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dKXqQihQ3vmZZkTMJu3CqW1V5rM.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,n0vMBPxxORkdp41UUlPfK9BW1w.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/n0vMBPxxORkdp41UUlPfK9BW1w.jpg\",srcSet:\"https://framerusercontent.com/images/n0vMBPxxORkdp41UUlPfK9BW1w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n0vMBPxxORkdp41UUlPfK9BW1w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n0vMBPxxORkdp41UUlPfK9BW1w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n0vMBPxxORkdp41UUlPfK9BW1w.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg\",srcSet:\"https://framerusercontent.com/images/2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2xlGqJ6sDHJD6ZYqfbEcWL31QFI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:27,id:\"LBhGPwAcy\",[i]:\"Collected Works on Science and Technology\",[g]:\"uU3UnLqIH\",[p]:\"science-and-technology\",[d]:l({src:\"https://framerusercontent.com/images/BrVq8TOdU2lyAqj94FgNFmmdoDU.jpg\",srcSet:\"https://framerusercontent.com/images/BrVq8TOdU2lyAqj94FgNFmmdoDU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BrVq8TOdU2lyAqj94FgNFmmdoDU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BrVq8TOdU2lyAqj94FgNFmmdoDU.jpg 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Editorial Illustrations | 2021-23\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/t(\"p\",{children:[\"Project Done for\\xa0\",/*#__PURE__*/e(m,{href:\"https://www.thisday.app/\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"THISDAY.APP\"})})]}),/*#__PURE__*/e(\"p\",{children:\"A collection of Illustrations for stories on science, technology and innovation.\"}),/*#__PURE__*/e(\"p\",{children:\"Illustrations - Riya Kumari \"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,iUzOKkorogsDRvuzkD5gqWUHXa4.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/iUzOKkorogsDRvuzkD5gqWUHXa4.jpg\",srcSet:\"https://framerusercontent.com/images/iUzOKkorogsDRvuzkD5gqWUHXa4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iUzOKkorogsDRvuzkD5gqWUHXa4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iUzOKkorogsDRvuzkD5gqWUHXa4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iUzOKkorogsDRvuzkD5gqWUHXa4.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zEza42YxuMgYMYpQSwu7xN7KVo.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/zEza42YxuMgYMYpQSwu7xN7KVo.jpg\",srcSet:\"https://framerusercontent.com/images/zEza42YxuMgYMYpQSwu7xN7KVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zEza42YxuMgYMYpQSwu7xN7KVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zEza42YxuMgYMYpQSwu7xN7KVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zEza42YxuMgYMYpQSwu7xN7KVo.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Bb58SO51g4lkCfGv9TLM8Igsj4.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Bb58SO51g4lkCfGv9TLM8Igsj4.jpg\",srcSet:\"https://framerusercontent.com/images/Bb58SO51g4lkCfGv9TLM8Igsj4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bb58SO51g4lkCfGv9TLM8Igsj4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bb58SO51g4lkCfGv9TLM8Igsj4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bb58SO51g4lkCfGv9TLM8Igsj4.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rcBhesAVz13WETzA4yu2KBB04I.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/rcBhesAVz13WETzA4yu2KBB04I.jpg\",srcSet:\"https://framerusercontent.com/images/rcBhesAVz13WETzA4yu2KBB04I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rcBhesAVz13WETzA4yu2KBB04I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rcBhesAVz13WETzA4yu2KBB04I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rcBhesAVz13WETzA4yu2KBB04I.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg\",srcSet:\"https://framerusercontent.com/images/gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gQECJ8cDb3LjOyuEEwmj3D1SUo.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yvh57xTl1bmehhCLmjoD1t7bM.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/yvh57xTl1bmehhCLmjoD1t7bM.jpg\",srcSet:\"https://framerusercontent.com/images/yvh57xTl1bmehhCLmjoD1t7bM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yvh57xTl1bmehhCLmjoD1t7bM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yvh57xTl1bmehhCLmjoD1t7bM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yvh57xTl1bmehhCLmjoD1t7bM.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg\",srcSet:\"https://framerusercontent.com/images/OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OoOmDRO8ugvfK4QlBhQSL6bUcc.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LfYuERwQ2u1HrslWGEbThOVY4rI.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/LfYuERwQ2u1HrslWGEbThOVY4rI.jpg\",srcSet:\"https://framerusercontent.com/images/LfYuERwQ2u1HrslWGEbThOVY4rI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LfYuERwQ2u1HrslWGEbThOVY4rI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LfYuERwQ2u1HrslWGEbThOVY4rI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LfYuERwQ2u1HrslWGEbThOVY4rI.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg\",srcSet:\"https://framerusercontent.com/images/Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bw3hHIjMC2UGh3AinyOOJR1zZrw.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yDstUFlZswThMtsS5SZFyPvuE1s.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/yDstUFlZswThMtsS5SZFyPvuE1s.jpg\",srcSet:\"https://framerusercontent.com/images/yDstUFlZswThMtsS5SZFyPvuE1s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yDstUFlZswThMtsS5SZFyPvuE1s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yDstUFlZswThMtsS5SZFyPvuE1s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yDstUFlZswThMtsS5SZFyPvuE1s.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,vLZxSLdG3FRauMiwuKQt1nbTfU.jpg\",\"data-framer-height\":\"1230\",\"data-framer-width\":\"2200\",height:\"615\",src:\"https://framerusercontent.com/images/vLZxSLdG3FRauMiwuKQt1nbTfU.jpg\",srcSet:\"https://framerusercontent.com/images/vLZxSLdG3FRauMiwuKQt1nbTfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vLZxSLdG3FRauMiwuKQt1nbTfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vLZxSLdG3FRauMiwuKQt1nbTfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vLZxSLdG3FRauMiwuKQt1nbTfU.jpg 2200w\",style:{aspectRatio:\"2200 / 1230\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:28,id:\"uAQxNXRcx\",[i]:\"Mimic | A Comic\",[g]:\"yxJyUEvbF\",[p]:\"mimic-a-comic\",[d]:l({src:\"https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg\",srcSet:\"https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/h4sPfUYbHdmNgLKdc39gqmfE7g.jpg 4192w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2024\"}),/*#__PURE__*/t(\"p\",{children:[\"This mini-comic is inspired from my recent travels to the southern Indian state of Kerala, also known as 'God's own country'. The Place is a kaleidoscope of varied landscape. From luscious mountains to sandy beaches, crispy air-fried tapioca chips to firm and juicy fish curry, Kerala has something to offer to everyone.\\xa0\\xa0\uD83C\uDF2B\uFE0F\u2708\uFE0F\",/*#__PURE__*/e(\"br\",{}),\"This comic was inspired by the various coincidental similarities I observed during the trip, with some real conversations and some stories cooked up in my brain.\\xa0From accidentally twinning with the view, to imagining an orchestrator directing a show, ocean waves being the musicians, this comic was a fun way to sum up my trip.\",/*#__PURE__*/e(\"br\",{}),\"Happy travels!\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,KLkiZy3ETzldwzS17YV8zT98DaE.jpg\",\"data-framer-height\":\"4447\",\"data-framer-width\":\"6038\",height:\"2223\",src:\"https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg\",srcSet:\"https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KLkiZy3ETzldwzS17YV8zT98DaE.jpg 6038w\",style:{aspectRatio:\"6038 / 4447\"},width:\"3019\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg\",srcSet:\"https://framerusercontent.com/images/Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/Dgbn1DV9msrFrxuRXqK2Qm0Pno.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg\",srcSet:\"https://framerusercontent.com/images/2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/2Uivuj6smg6Af81Ol2tw4AmrZSc.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gNB33GIi0znNOTYgeU3bsxkw5I.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/gNB33GIi0znNOTYgeU3bsxkw5I.jpg\",srcSet:\"https://framerusercontent.com/images/gNB33GIi0znNOTYgeU3bsxkw5I.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/gNB33GIi0znNOTYgeU3bsxkw5I.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/gNB33GIi0znNOTYgeU3bsxkw5I.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/gNB33GIi0znNOTYgeU3bsxkw5I.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg\",srcSet:\"https://framerusercontent.com/images/lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/lQDXFAaqYHy9AYjkLhGAoDJd5A.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,mQcTPXgGzhax8oNr9KKCd2Yp0.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/mQcTPXgGzhax8oNr9KKCd2Yp0.jpg\",srcSet:\"https://framerusercontent.com/images/mQcTPXgGzhax8oNr9KKCd2Yp0.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/mQcTPXgGzhax8oNr9KKCd2Yp0.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/mQcTPXgGzhax8oNr9KKCd2Yp0.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/mQcTPXgGzhax8oNr9KKCd2Yp0.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg\",\"data-framer-height\":\"8598\",\"data-framer-width\":\"6071\",height:\"4299\",src:\"https://framerusercontent.com/images/nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg\",srcSet:\"https://framerusercontent.com/images/nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg?scale-down-to=1024 723w,https://framerusercontent.com/images/nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg?scale-down-to=2048 1446w,https://framerusercontent.com/images/nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg?scale-down-to=4096 2892w,https://framerusercontent.com/images/nY0VxjXhT1rpogRtjP4zCuQPdQ.jpg 6071w\",style:{aspectRatio:\"6071 / 8598\"},width:\"3035\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9MD5Q0ryay7d91VDP0HWcPrb1I.jpg\",\"data-framer-height\":\"2805\",\"data-framer-width\":\"2289\",height:\"1402\",src:\"https://framerusercontent.com/images/9MD5Q0ryay7d91VDP0HWcPrb1I.jpg\",srcSet:\"https://framerusercontent.com/images/9MD5Q0ryay7d91VDP0HWcPrb1I.jpg?scale-down-to=1024 835w,https://framerusercontent.com/images/9MD5Q0ryay7d91VDP0HWcPrb1I.jpg?scale-down-to=2048 1671w,https://framerusercontent.com/images/9MD5Q0ryay7d91VDP0HWcPrb1I.jpg 2289w\",style:{aspectRatio:\"2289 / 2805\"},width:\"1144\"})]})},{index:29,id:\"r0s9C5YcU\",[i]:\"Friedmann and Feelings | Comic\",[g]:\"yxJyUEvbF\",[p]:\"friedmann-and-feelings\",[d]:l({src:\"https://framerusercontent.com/images/6Uig3rkmrNHjuuc4P5tqHGu6E.jpg\",srcSet:\"https://framerusercontent.com/images/6Uig3rkmrNHjuuc4P5tqHGu6E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6Uig3rkmrNHjuuc4P5tqHGu6E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Uig3rkmrNHjuuc4P5tqHGu6E.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2023\"}),/*#__PURE__*/e(\"p\",{children:\"This comic was inspired by an excerpt in the chapter 'The Expanding Universe' in A Brief History of Time by Stephen Hawking. The goal is to relate scientific observations with human emotions and feelings.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7Bw8ruG2IvyOtrsuHtDyrCLpwA.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/7Bw8ruG2IvyOtrsuHtDyrCLpwA.jpg\",srcSet:\"https://framerusercontent.com/images/7Bw8ruG2IvyOtrsuHtDyrCLpwA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7Bw8ruG2IvyOtrsuHtDyrCLpwA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Bw8ruG2IvyOtrsuHtDyrCLpwA.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,lAFbIn7b9si6CTi9G33Lk4YnPhM.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/lAFbIn7b9si6CTi9G33Lk4YnPhM.jpg\",srcSet:\"https://framerusercontent.com/images/lAFbIn7b9si6CTi9G33Lk4YnPhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lAFbIn7b9si6CTi9G33Lk4YnPhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lAFbIn7b9si6CTi9G33Lk4YnPhM.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,fcMBRb4meAY3QLO4JtNMtTHeU.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/fcMBRb4meAY3QLO4JtNMtTHeU.jpg\",srcSet:\"https://framerusercontent.com/images/fcMBRb4meAY3QLO4JtNMtTHeU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fcMBRb4meAY3QLO4JtNMtTHeU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fcMBRb4meAY3QLO4JtNMtTHeU.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Ideation Process \"}),/*#__PURE__*/e(o.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(r,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/DKOai0SAUlI\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,v3jxkyJTFM2C0KvtcZXWn6Xg.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/v3jxkyJTFM2C0KvtcZXWn6Xg.jpg\",srcSet:\"https://framerusercontent.com/images/v3jxkyJTFM2C0KvtcZXWn6Xg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v3jxkyJTFM2C0KvtcZXWn6Xg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v3jxkyJTFM2C0KvtcZXWn6Xg.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:30,id:\"y3OP6By21\",[i]:\"Stay Home, Watch Memes, Stay Safe | Poster\",[g]:\"yxJyUEvbF\",[p]:\"stay-home-watch-memes-stay-safe\",[d]:l({src:\"https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg\",srcSet:\"https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg 2000w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Stay Home | Watch Memes | Stay Safe\"}),/*#__PURE__*/e(\"p\",{children:\"Coronavirus Awareness Poster- D'Source Corona Design Challenge Winner\"}),/*#__PURE__*/e(\"p\",{children:\"Personal Project\"}),/*#__PURE__*/e(\"p\",{children:\"One of the selected entries\\xa0available for free download and use as part of the Open Design initiative in\\xa0D'Source Corona Design Challenge conducted by\\xa0IDC School of Design, IIT\\xa0Bombay\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,D9B77VmLqdwdIO3Moqk9wko1qY.jpg\",\"data-framer-height\":\"1500\",\"data-framer-width\":\"2000\",height:\"750\",src:\"https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg\",srcSet:\"https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D9B77VmLqdwdIO3Moqk9wko1qY.jpg 2000w\",style:{aspectRatio:\"2000 / 1500\"},width:\"1000\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"Design Ideation\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HVwa6WIiEBhITHuCJfyhBxL8bo.jpg\",\"data-framer-height\":\"1329\",\"data-framer-width\":\"1270\",height:\"664\",src:\"https://framerusercontent.com/images/HVwa6WIiEBhITHuCJfyhBxL8bo.jpg\",srcSet:\"https://framerusercontent.com/images/HVwa6WIiEBhITHuCJfyhBxL8bo.jpg?scale-down-to=1024 978w,https://framerusercontent.com/images/HVwa6WIiEBhITHuCJfyhBxL8bo.jpg 1270w\",style:{aspectRatio:\"1270 / 1329\"},width:\"635\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"As Seen on D'Source Challenge Website\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HhIjBOuRQTLWT9uGdeob5cXS47g.gif\",\"data-framer-height\":\"2092\",\"data-framer-width\":\"2034\",height:\"1046\",src:\"https://framerusercontent.com/images/HhIjBOuRQTLWT9uGdeob5cXS47g.gif\",srcSet:\"https://framerusercontent.com/images/HhIjBOuRQTLWT9uGdeob5cXS47g.gif?scale-down-to=1024 995w,https://framerusercontent.com/images/HhIjBOuRQTLWT9uGdeob5cXS47g.gif?scale-down-to=2048 1991w,https://framerusercontent.com/images/HhIjBOuRQTLWT9uGdeob5cXS47g.gif 2034w\",style:{aspectRatio:\"2034 / 2092\"},width:\"1017\"}),/*#__PURE__*/t(\"p\",{children:[\"You can find other winning entries of D'source Corona Design Challenge \",/*#__PURE__*/e(m,{href:\"https://dsourcechallenge.org/results.html#results\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]})]})},{index:31,id:\"FLKH2XqXg\",[i]:\"The Stray Cat and Her Bell | Comic\",[g]:\"yxJyUEvbF\",[p]:\"the-stray-cat-and-her-bell\",[d]:l({src:\"https://framerusercontent.com/images/cXedCAuwngXKQvasFUVXPuzgQZw.jpg\",srcSet:\"https://framerusercontent.com/images/cXedCAuwngXKQvasFUVXPuzgQZw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cXedCAuwngXKQvasFUVXPuzgQZw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cXedCAuwngXKQvasFUVXPuzgQZw.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2022\"}),/*#__PURE__*/e(\"p\",{children:\"A mini comic\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,SN4YTnbo0Bx2NgOv2EcMozgpQ.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/SN4YTnbo0Bx2NgOv2EcMozgpQ.jpg\",srcSet:\"https://framerusercontent.com/images/SN4YTnbo0Bx2NgOv2EcMozgpQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SN4YTnbo0Bx2NgOv2EcMozgpQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SN4YTnbo0Bx2NgOv2EcMozgpQ.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,S0Bccnq3GyrXrF2KFPC5hIVc5TY.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/S0Bccnq3GyrXrF2KFPC5hIVc5TY.jpg\",srcSet:\"https://framerusercontent.com/images/S0Bccnq3GyrXrF2KFPC5hIVc5TY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S0Bccnq3GyrXrF2KFPC5hIVc5TY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/S0Bccnq3GyrXrF2KFPC5hIVc5TY.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,vJX0GMmE6HUPyQJnlWhvk2aO3o.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/vJX0GMmE6HUPyQJnlWhvk2aO3o.jpg\",srcSet:\"https://framerusercontent.com/images/vJX0GMmE6HUPyQJnlWhvk2aO3o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vJX0GMmE6HUPyQJnlWhvk2aO3o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vJX0GMmE6HUPyQJnlWhvk2aO3o.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qN9Qr3GJMchw6XZy2fqqKce4p8.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/qN9Qr3GJMchw6XZy2fqqKce4p8.jpg\",srcSet:\"https://framerusercontent.com/images/qN9Qr3GJMchw6XZy2fqqKce4p8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qN9Qr3GJMchw6XZy2fqqKce4p8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qN9Qr3GJMchw6XZy2fqqKce4p8.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zaddQKTCWzVTu030sold9Zyz1U.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/zaddQKTCWzVTu030sold9Zyz1U.jpg\",srcSet:\"https://framerusercontent.com/images/zaddQKTCWzVTu030sold9Zyz1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zaddQKTCWzVTu030sold9Zyz1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zaddQKTCWzVTu030sold9Zyz1U.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"})]})},{index:32,id:\"eIKOWviX7\",[i]:\"Empty Bottles | Comic\",[g]:\"yxJyUEvbF\",[p]:\"empty-bottles\",[d]:l({src:\"https://framerusercontent.com/images/9wMpZhMFHfLMbUpSVr8QYF4u28.jpg\",srcSet:\"https://framerusercontent.com/images/9wMpZhMFHfLMbUpSVr8QYF4u28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9wMpZhMFHfLMbUpSVr8QYF4u28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wMpZhMFHfLMbUpSVr8QYF4u28.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2022\"}),/*#__PURE__*/e(\"p\",{children:\"A mini comic\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JKvaqiE5M2hzFMH7XhzgB0hAhJI.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/JKvaqiE5M2hzFMH7XhzgB0hAhJI.jpg\",srcSet:\"https://framerusercontent.com/images/JKvaqiE5M2hzFMH7XhzgB0hAhJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JKvaqiE5M2hzFMH7XhzgB0hAhJI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKvaqiE5M2hzFMH7XhzgB0hAhJI.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LWiBqCbc7vAXuRQEYPkFBRdJl0.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/LWiBqCbc7vAXuRQEYPkFBRdJl0.jpg\",srcSet:\"https://framerusercontent.com/images/LWiBqCbc7vAXuRQEYPkFBRdJl0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWiBqCbc7vAXuRQEYPkFBRdJl0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWiBqCbc7vAXuRQEYPkFBRdJl0.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,eTbKDVvXoVP4Rk0NUgmWHnA9P6E.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/eTbKDVvXoVP4Rk0NUgmWHnA9P6E.jpg\",srcSet:\"https://framerusercontent.com/images/eTbKDVvXoVP4Rk0NUgmWHnA9P6E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eTbKDVvXoVP4Rk0NUgmWHnA9P6E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eTbKDVvXoVP4Rk0NUgmWHnA9P6E.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qUqxAufkId0wd7DSnr1TSXzKs.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/qUqxAufkId0wd7DSnr1TSXzKs.jpg\",srcSet:\"https://framerusercontent.com/images/qUqxAufkId0wd7DSnr1TSXzKs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qUqxAufkId0wd7DSnr1TSXzKs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qUqxAufkId0wd7DSnr1TSXzKs.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"})]})},{index:33,id:\"OzTPM4YiQ\",[i]:\"Inside/Outside | Comic\",[g]:\"yxJyUEvbF\",[p]:\"inside-outside\",[d]:l({src:\"https://framerusercontent.com/images/RcZzkUp9CSg2zyLE45FwKJ0YBJU.jpg\",srcSet:\"https://framerusercontent.com/images/RcZzkUp9CSg2zyLE45FwKJ0YBJU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RcZzkUp9CSg2zyLE45FwKJ0YBJU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RcZzkUp9CSg2zyLE45FwKJ0YBJU.jpg 1080w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2022\"}),/*#__PURE__*/e(\"p\",{children:\"A mini comic\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LBZ0p2ow1idriklCHTIXPz6aDac.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/LBZ0p2ow1idriklCHTIXPz6aDac.jpg\",srcSet:\"https://framerusercontent.com/images/LBZ0p2ow1idriklCHTIXPz6aDac.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LBZ0p2ow1idriklCHTIXPz6aDac.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LBZ0p2ow1idriklCHTIXPz6aDac.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PeidUUmVaV1uayYN8a9QxPzhQ.jpg\",\"data-framer-height\":\"1010\",\"data-framer-width\":\"2010\",height:\"505\",src:\"https://framerusercontent.com/images/PeidUUmVaV1uayYN8a9QxPzhQ.jpg\",srcSet:\"https://framerusercontent.com/images/PeidUUmVaV1uayYN8a9QxPzhQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PeidUUmVaV1uayYN8a9QxPzhQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PeidUUmVaV1uayYN8a9QxPzhQ.jpg 2010w\",style:{aspectRatio:\"2010 / 1010\"},width:\"1005\"})]})},{index:34,id:\"mULvcWTkE\",[i]:\"Hope | Poster\",[g]:\"yxJyUEvbF\",[p]:\"hope\",[d]:l({src:\"https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg\",srcSet:\"https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg 3289w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Project | 2021\"}),/*#__PURE__*/e(\"p\",{children:\"Poster Series\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg\",\"data-framer-height\":\"2769\",\"data-framer-width\":\"3289\",height:\"1384\",src:\"https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg\",srcSet:\"https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7WSgd8LkWJVYvQga3MlCBsRRQvI.jpg 3289w\",style:{aspectRatio:\"3289 / 2769\"},width:\"1644\"}),/*#__PURE__*/e(\"p\",{children:'A set of Posters I\\xa0designed\\xa0with the prompt \"Hope and Typography\"'}),/*#__PURE__*/e(\"p\",{children:\"My theme for this project is 'Mental Health' and I've tried to portray the theme in an abstract way using values, textures,\\xa0and contrast and their progression through the series.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Disclaimer\"}),/*#__PURE__*/e(\"p\",{children:\"Mental Health Illnesses\\xa0are serious conditions and\\xa0should be treated professionally.\\xa0These are promotional posters meant to create awareness and are in no way intended to be used as advice, medically/professionally or in any other way whatsoever.\"}),/*#__PURE__*/e(\"p\",{children:\"The contents of the posters are meant to be taken positively. I'm still in the process of learning and sensitising myself towards mental health issues. If you find any content of this project that comes out in a negative or\\xa0hurtful way, it was never intended to be so and\\xa0I apologise in advance and request you to bring to my notice any such mistakes.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Poster 1\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rcUbUqZiBGHcxh8n3RzbaMYt8.jpg\",\"data-framer-height\":\"1868\",\"data-framer-width\":\"1494\",height:\"934\",src:\"https://framerusercontent.com/images/rcUbUqZiBGHcxh8n3RzbaMYt8.jpg\",srcSet:\"https://framerusercontent.com/images/rcUbUqZiBGHcxh8n3RzbaMYt8.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/rcUbUqZiBGHcxh8n3RzbaMYt8.jpg 1494w\",style:{aspectRatio:\"1494 / 1868\"},width:\"747\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Ue2nbHeue95zqPAUdf2HXoprVl0.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/Ue2nbHeue95zqPAUdf2HXoprVl0.png\",srcSet:\"https://framerusercontent.com/images/Ue2nbHeue95zqPAUdf2HXoprVl0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/Ue2nbHeue95zqPAUdf2HXoprVl0.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZTLsiRCTPEdGNE9mYsXE8XpgLzY.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/ZTLsiRCTPEdGNE9mYsXE8XpgLzY.png\",srcSet:\"https://framerusercontent.com/images/ZTLsiRCTPEdGNE9mYsXE8XpgLzY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/ZTLsiRCTPEdGNE9mYsXE8XpgLzY.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Poster 2\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oEnjLOpz4kWJJX5RkbBg2oKT6l0.jpg\",\"data-framer-height\":\"1873\",\"data-framer-width\":\"1498\",height:\"936\",src:\"https://framerusercontent.com/images/oEnjLOpz4kWJJX5RkbBg2oKT6l0.jpg\",srcSet:\"https://framerusercontent.com/images/oEnjLOpz4kWJJX5RkbBg2oKT6l0.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/oEnjLOpz4kWJJX5RkbBg2oKT6l0.jpg 1498w\",style:{aspectRatio:\"1498 / 1873\"},width:\"749\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oV8Un16aFAkasSk3Mlx2ItdD2Y.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/oV8Un16aFAkasSk3Mlx2ItdD2Y.png\",srcSet:\"https://framerusercontent.com/images/oV8Un16aFAkasSk3Mlx2ItdD2Y.png?scale-down-to=1024 682w,https://framerusercontent.com/images/oV8Un16aFAkasSk3Mlx2ItdD2Y.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZbDx0bIEr8l0sCTPfbP8tbuYyA.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/ZbDx0bIEr8l0sCTPfbP8tbuYyA.png\",srcSet:\"https://framerusercontent.com/images/ZbDx0bIEr8l0sCTPfbP8tbuYyA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/ZbDx0bIEr8l0sCTPfbP8tbuYyA.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"h6\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h6\",{children:\"Poster 3\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,TMvI8IMcmYf75jEb07aIn1JhaPw.jpg\",\"data-framer-height\":\"1877\",\"data-framer-width\":\"1502\",height:\"938\",src:\"https://framerusercontent.com/images/TMvI8IMcmYf75jEb07aIn1JhaPw.jpg\",srcSet:\"https://framerusercontent.com/images/TMvI8IMcmYf75jEb07aIn1JhaPw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/TMvI8IMcmYf75jEb07aIn1JhaPw.jpg 1502w\",style:{aspectRatio:\"1502 / 1877\"},width:\"751\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YTgOC9sHTAGZwgf5YOEARGBluY.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/YTgOC9sHTAGZwgf5YOEARGBluY.png\",srcSet:\"https://framerusercontent.com/images/YTgOC9sHTAGZwgf5YOEARGBluY.png?scale-down-to=1024 682w,https://framerusercontent.com/images/YTgOC9sHTAGZwgf5YOEARGBluY.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"p\",{children:\".\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6fkI0j2gdinHVn5kwVlNe6YcCDQ.png\",\"data-framer-height\":\"1876\",\"data-framer-width\":\"1251\",height:\"938\",src:\"https://framerusercontent.com/images/6fkI0j2gdinHVn5kwVlNe6YcCDQ.png\",srcSet:\"https://framerusercontent.com/images/6fkI0j2gdinHVn5kwVlNe6YcCDQ.png?scale-down-to=1024 682w,https://framerusercontent.com/images/6fkI0j2gdinHVn5kwVlNe6YcCDQ.png 1251w\",style:{aspectRatio:\"1251 / 1876\"},width:\"625\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"The series transitions from being almost completely dark to light slowly bleeding in, and\\xa0\\\"Hope\\\" becomes more prominent with each poster,\\xa0a visual\\xa0depiction of\\xa0'healing' through time.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yBvCi03LTqfrbyXhiFJccyEKumM.jpg\",\"data-framer-height\":\"1645\",\"data-framer-width\":\"3289\",height:\"822\",src:\"https://framerusercontent.com/images/yBvCi03LTqfrbyXhiFJccyEKumM.jpg\",srcSet:\"https://framerusercontent.com/images/yBvCi03LTqfrbyXhiFJccyEKumM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yBvCi03LTqfrbyXhiFJccyEKumM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yBvCi03LTqfrbyXhiFJccyEKumM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yBvCi03LTqfrbyXhiFJccyEKumM.jpg 3289w\",style:{aspectRatio:\"3289 / 1645\"},width:\"1644\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:35,id:\"U_sVOPR27\",[i]:\"Digital Paintings | 2022-23\",[g]:\"yxJyUEvbF\",[p]:\"quick-sketches\",[d]:l({src:\"https://framerusercontent.com/images/el99ZXlndDSKRvWjdPW5nYAo.png\",srcSet:\"https://framerusercontent.com/images/el99ZXlndDSKRvWjdPW5nYAo.png?scale-down-to=512 512w,https://framerusercontent.com/images/el99ZXlndDSKRvWjdPW5nYAo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/el99ZXlndDSKRvWjdPW5nYAo.png 1920w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Works | 2022-23\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3uftQ9ihXFcKhSRkzRp2AC94.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/3uftQ9ihXFcKhSRkzRp2AC94.jpg\",srcSet:\"https://framerusercontent.com/images/3uftQ9ihXFcKhSRkzRp2AC94.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3uftQ9ihXFcKhSRkzRp2AC94.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3uftQ9ihXFcKhSRkzRp2AC94.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3uftQ9ihXFcKhSRkzRp2AC94.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg\",srcSet:\"https://framerusercontent.com/images/qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qf4nvU2QwZN4Gvd9o0crRSQuFQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ECwvohUOudHb1DrAOjYRFsrIkAw.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/ECwvohUOudHb1DrAOjYRFsrIkAw.jpg\",srcSet:\"https://framerusercontent.com/images/ECwvohUOudHb1DrAOjYRFsrIkAw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ECwvohUOudHb1DrAOjYRFsrIkAw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ECwvohUOudHb1DrAOjYRFsrIkAw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ECwvohUOudHb1DrAOjYRFsrIkAw.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,X0mirOFHuUXTT1fzLfVkoeosGVk.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/X0mirOFHuUXTT1fzLfVkoeosGVk.jpg\",srcSet:\"https://framerusercontent.com/images/X0mirOFHuUXTT1fzLfVkoeosGVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X0mirOFHuUXTT1fzLfVkoeosGVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X0mirOFHuUXTT1fzLfVkoeosGVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X0mirOFHuUXTT1fzLfVkoeosGVk.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg\",srcSet:\"https://framerusercontent.com/images/xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xvbKTPXRC7eKfWkYywyW9GJo5WE.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg\",srcSet:\"https://framerusercontent.com/images/Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bqwk7iuzWBsx4lCRDwgmpOZt9o.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,48p9KOGzXWMnWwvsxfe31RboyQ.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/48p9KOGzXWMnWwvsxfe31RboyQ.jpg\",srcSet:\"https://framerusercontent.com/images/48p9KOGzXWMnWwvsxfe31RboyQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/48p9KOGzXWMnWwvsxfe31RboyQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/48p9KOGzXWMnWwvsxfe31RboyQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/48p9KOGzXWMnWwvsxfe31RboyQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,N8ch0gANp5rHDQ989woVH0x5ruU.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/N8ch0gANp5rHDQ989woVH0x5ruU.jpg\",srcSet:\"https://framerusercontent.com/images/N8ch0gANp5rHDQ989woVH0x5ruU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N8ch0gANp5rHDQ989woVH0x5ruU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N8ch0gANp5rHDQ989woVH0x5ruU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N8ch0gANp5rHDQ989woVH0x5ruU.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg\",srcSet:\"https://framerusercontent.com/images/Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wbu5C6QfdHPs1ONEsKLZtTsSo.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uL7fXnoN5wjupVjPcltiKlE3D8.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/uL7fXnoN5wjupVjPcltiKlE3D8.jpg\",srcSet:\"https://framerusercontent.com/images/uL7fXnoN5wjupVjPcltiKlE3D8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uL7fXnoN5wjupVjPcltiKlE3D8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uL7fXnoN5wjupVjPcltiKlE3D8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uL7fXnoN5wjupVjPcltiKlE3D8.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg\",srcSet:\"https://framerusercontent.com/images/4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4r4TTzNt7Ba87SW4NTCxHPUs7LE.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg\",srcSet:\"https://framerusercontent.com/images/a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a3UxYupqZ9NoyVqYTTBR8ZdcezY.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uZ45mFj1U6kkvF4h20LCiWtok.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/uZ45mFj1U6kkvF4h20LCiWtok.jpg\",srcSet:\"https://framerusercontent.com/images/uZ45mFj1U6kkvF4h20LCiWtok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uZ45mFj1U6kkvF4h20LCiWtok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uZ45mFj1U6kkvF4h20LCiWtok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uZ45mFj1U6kkvF4h20LCiWtok.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6okPCJeEDMKDrHvjjPwji7tri4.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/6okPCJeEDMKDrHvjjPwji7tri4.jpg\",srcSet:\"https://framerusercontent.com/images/6okPCJeEDMKDrHvjjPwji7tri4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6okPCJeEDMKDrHvjjPwji7tri4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6okPCJeEDMKDrHvjjPwji7tri4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6okPCJeEDMKDrHvjjPwji7tri4.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg\",srcSet:\"https://framerusercontent.com/images/ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ORJ67rXqdLGy8rr4VohxTIU9rOo.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:36,id:\"UjrB_KxpA\",[i]:\"Digital Paintings | 2021\",[g]:\"yxJyUEvbF\",[p]:\"personal-work-2020\",[d]:l({src:\"https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg\",srcSet:\"https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/GTRihP7ayN2IFHSVMqAaWfsqI.jpg 4960w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Works | 2021\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,8s5AvaiwtRAQHIWuOmJj5DfkU.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/8s5AvaiwtRAQHIWuOmJj5DfkU.jpg\",srcSet:\"https://framerusercontent.com/images/8s5AvaiwtRAQHIWuOmJj5DfkU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8s5AvaiwtRAQHIWuOmJj5DfkU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8s5AvaiwtRAQHIWuOmJj5DfkU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8s5AvaiwtRAQHIWuOmJj5DfkU.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WQifKwycyCKJRNIMk3obVErBJYg.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/WQifKwycyCKJRNIMk3obVErBJYg.jpg\",srcSet:\"https://framerusercontent.com/images/WQifKwycyCKJRNIMk3obVErBJYg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WQifKwycyCKJRNIMk3obVErBJYg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WQifKwycyCKJRNIMk3obVErBJYg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WQifKwycyCKJRNIMk3obVErBJYg.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,vlKC1MkCBKExTtilGegh2FPaaCQ.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/vlKC1MkCBKExTtilGegh2FPaaCQ.jpg\",srcSet:\"https://framerusercontent.com/images/vlKC1MkCBKExTtilGegh2FPaaCQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vlKC1MkCBKExTtilGegh2FPaaCQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vlKC1MkCBKExTtilGegh2FPaaCQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vlKC1MkCBKExTtilGegh2FPaaCQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ezxh0kO0nZvkAYam1MUb6A2OV74.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/ezxh0kO0nZvkAYam1MUb6A2OV74.jpg\",srcSet:\"https://framerusercontent.com/images/ezxh0kO0nZvkAYam1MUb6A2OV74.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ezxh0kO0nZvkAYam1MUb6A2OV74.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ezxh0kO0nZvkAYam1MUb6A2OV74.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ezxh0kO0nZvkAYam1MUb6A2OV74.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4AYr7ExQfzMGcesz0UGjT6FFyI.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/4AYr7ExQfzMGcesz0UGjT6FFyI.jpg\",srcSet:\"https://framerusercontent.com/images/4AYr7ExQfzMGcesz0UGjT6FFyI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4AYr7ExQfzMGcesz0UGjT6FFyI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4AYr7ExQfzMGcesz0UGjT6FFyI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4AYr7ExQfzMGcesz0UGjT6FFyI.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nKJO1v9S2EmvUzacj2AzcWJC2s.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/nKJO1v9S2EmvUzacj2AzcWJC2s.jpg\",srcSet:\"https://framerusercontent.com/images/nKJO1v9S2EmvUzacj2AzcWJC2s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKJO1v9S2EmvUzacj2AzcWJC2s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKJO1v9S2EmvUzacj2AzcWJC2s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nKJO1v9S2EmvUzacj2AzcWJC2s.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg\",srcSet:\"https://framerusercontent.com/images/LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LjZ0CNGNnR8J8YVrUtk2LaSzans.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,zZgoeFzhQMFVizD5u62H1ZyLNc.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/zZgoeFzhQMFVizD5u62H1ZyLNc.jpg\",srcSet:\"https://framerusercontent.com/images/zZgoeFzhQMFVizD5u62H1ZyLNc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zZgoeFzhQMFVizD5u62H1ZyLNc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zZgoeFzhQMFVizD5u62H1ZyLNc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zZgoeFzhQMFVizD5u62H1ZyLNc.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,GqVRbrDBg01fdcOfEOn77UMzsCM.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/GqVRbrDBg01fdcOfEOn77UMzsCM.jpg\",srcSet:\"https://framerusercontent.com/images/GqVRbrDBg01fdcOfEOn77UMzsCM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GqVRbrDBg01fdcOfEOn77UMzsCM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GqVRbrDBg01fdcOfEOn77UMzsCM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GqVRbrDBg01fdcOfEOn77UMzsCM.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MBQkIxk3a9pIdGWNq76ucPZUI.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/MBQkIxk3a9pIdGWNq76ucPZUI.jpg\",srcSet:\"https://framerusercontent.com/images/MBQkIxk3a9pIdGWNq76ucPZUI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MBQkIxk3a9pIdGWNq76ucPZUI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MBQkIxk3a9pIdGWNq76ucPZUI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MBQkIxk3a9pIdGWNq76ucPZUI.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WbbwaBI0tpmDnSFN9WsyVyu0.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/WbbwaBI0tpmDnSFN9WsyVyu0.jpg\",srcSet:\"https://framerusercontent.com/images/WbbwaBI0tpmDnSFN9WsyVyu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WbbwaBI0tpmDnSFN9WsyVyu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WbbwaBI0tpmDnSFN9WsyVyu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WbbwaBI0tpmDnSFN9WsyVyu0.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:37,id:\"myjYLAe70\",[i]:\"Microsoft Freshpaint Studies  | 2020\",[g]:\"yxJyUEvbF\",[p]:\"microsoft-freshpaint-studies\",[d]:l({src:\"https://framerusercontent.com/images/a2CkzDLM8XoNlod0KRbV1pHv0tU.jpg\",srcSet:\"https://framerusercontent.com/images/a2CkzDLM8XoNlod0KRbV1pHv0tU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a2CkzDLM8XoNlod0KRbV1pHv0tU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a2CkzDLM8XoNlod0KRbV1pHv0tU.jpg 1365w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Works | 2020\"}),/*#__PURE__*/e(\"p\",{children:\"During the pandemic, stuck indoors and with very less to do, I started doing paint studies referencing different photographs and film snapshots. Unfortunately, one day my laptop broke down and I couldn't get it repaired because, well, the pandemic! \"}),/*#__PURE__*/e(\"p\",{children:\"So I was stuck indoors, without a working laptop. There was my father's work laptop at home tho. Sadly, due to restrictions, I couldn't install any software on it, because of which I couldn't even connect my Wacom to the laptop. So to make do with the situation, I started using the pre-installed software 'Microsoft Freshpaint' and created these works with a mouse.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YsSjALt20fJgcPaZQWCTZr930GI.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/YsSjALt20fJgcPaZQWCTZr930GI.jpg\",srcSet:\"https://framerusercontent.com/images/YsSjALt20fJgcPaZQWCTZr930GI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YsSjALt20fJgcPaZQWCTZr930GI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YsSjALt20fJgcPaZQWCTZr930GI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YsSjALt20fJgcPaZQWCTZr930GI.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg\",srcSet:\"https://framerusercontent.com/images/HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HSk2eTwknyaJ82raJ2HBJUaeqPM.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BLsQZKoZeFkihWQ8SWWL50nR58.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/BLsQZKoZeFkihWQ8SWWL50nR58.jpg\",srcSet:\"https://framerusercontent.com/images/BLsQZKoZeFkihWQ8SWWL50nR58.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BLsQZKoZeFkihWQ8SWWL50nR58.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BLsQZKoZeFkihWQ8SWWL50nR58.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BLsQZKoZeFkihWQ8SWWL50nR58.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YytzJxl2DyTOPdYf72dcKAyuc.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/YytzJxl2DyTOPdYf72dcKAyuc.jpg\",srcSet:\"https://framerusercontent.com/images/YytzJxl2DyTOPdYf72dcKAyuc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YytzJxl2DyTOPdYf72dcKAyuc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YytzJxl2DyTOPdYf72dcKAyuc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YytzJxl2DyTOPdYf72dcKAyuc.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,R6frDtOBoOIFLV8awq3m5B7A0rw.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/R6frDtOBoOIFLV8awq3m5B7A0rw.jpg\",srcSet:\"https://framerusercontent.com/images/R6frDtOBoOIFLV8awq3m5B7A0rw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/R6frDtOBoOIFLV8awq3m5B7A0rw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/R6frDtOBoOIFLV8awq3m5B7A0rw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/R6frDtOBoOIFLV8awq3m5B7A0rw.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,CjNAOEG20zS82LwGBgE2ncnYvQ.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/CjNAOEG20zS82LwGBgE2ncnYvQ.jpg\",srcSet:\"https://framerusercontent.com/images/CjNAOEG20zS82LwGBgE2ncnYvQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CjNAOEG20zS82LwGBgE2ncnYvQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CjNAOEG20zS82LwGBgE2ncnYvQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CjNAOEG20zS82LwGBgE2ncnYvQ.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,p6AtDBoydZr7I6EBUnAAp5Jek.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/p6AtDBoydZr7I6EBUnAAp5Jek.jpg\",srcSet:\"https://framerusercontent.com/images/p6AtDBoydZr7I6EBUnAAp5Jek.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p6AtDBoydZr7I6EBUnAAp5Jek.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6AtDBoydZr7I6EBUnAAp5Jek.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p6AtDBoydZr7I6EBUnAAp5Jek.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg\",\"data-framer-height\":\"1260\",\"data-framer-width\":\"2200\",height:\"630\",src:\"https://framerusercontent.com/images/QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg\",srcSet:\"https://framerusercontent.com/images/QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QQnpM4V7DfrVFmBQkDIdnQ7I6mc.jpg 2200w\",style:{aspectRatio:\"2200 / 1260\"},width:\"1100\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})},{index:38,id:\"ROlq60VGx\",[i]:\"Sketch a Movie | 2020\",[g]:\"yxJyUEvbF\",[p]:\"sketch-a-movie\",[d]:l({src:\"https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg\",srcSet:\"https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg 2000w\"},\"\"),[f]:/*#__PURE__*/t(c.Fragment,{children:[/*#__PURE__*/e(\"h6\",{children:\"Personal Works | 2020-21\"}),/*#__PURE__*/e(\"p\",{children:\"A project where I would do studies referencing from snapshots for movies\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,TdOm7ytigXkAK5iBLFuwcsRajnk.jpg\",\"data-framer-height\":\"1000\",\"data-framer-width\":\"2000\",height:\"500\",src:\"https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg\",srcSet:\"https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdOm7ytigXkAK5iBLFuwcsRajnk.jpg 2000w\",style:{aspectRatio:\"2000 / 1000\"},width:\"1000\"}),/*#__PURE__*/e(\"p\",{children:\"Raazi\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,QpPZFen4NqO2r7hUvWbiPeoAgXc.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/QpPZFen4NqO2r7hUvWbiPeoAgXc.jpg\",srcSet:\"https://framerusercontent.com/images/QpPZFen4NqO2r7hUvWbiPeoAgXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QpPZFen4NqO2r7hUvWbiPeoAgXc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QpPZFen4NqO2r7hUvWbiPeoAgXc.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Manto\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rKD3XXE4uwdf2MmKxniy9NQkqg.jpg\",\"data-framer-height\":\"779\",\"data-framer-width\":\"1920\",height:\"389\",src:\"https://framerusercontent.com/images/rKD3XXE4uwdf2MmKxniy9NQkqg.jpg\",srcSet:\"https://framerusercontent.com/images/rKD3XXE4uwdf2MmKxniy9NQkqg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rKD3XXE4uwdf2MmKxniy9NQkqg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rKD3XXE4uwdf2MmKxniy9NQkqg.jpg 1920w\",style:{aspectRatio:\"1920 / 779\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"1917\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4duAraStWERMBhQ4MgyJrW3Hdmk.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/4duAraStWERMBhQ4MgyJrW3Hdmk.jpg\",srcSet:\"https://framerusercontent.com/images/4duAraStWERMBhQ4MgyJrW3Hdmk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4duAraStWERMBhQ4MgyJrW3Hdmk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4duAraStWERMBhQ4MgyJrW3Hdmk.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Dunkirk\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,kmr6yLiWkWs28PaPVgjk1y1Ii5c.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/kmr6yLiWkWs28PaPVgjk1y1Ii5c.jpg\",srcSet:\"https://framerusercontent.com/images/kmr6yLiWkWs28PaPVgjk1y1Ii5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kmr6yLiWkWs28PaPVgjk1y1Ii5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmr6yLiWkWs28PaPVgjk1y1Ii5c.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Atonement\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,EqlJV9Z8hoWPI30hUHGBhdJJB1Y.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/EqlJV9Z8hoWPI30hUHGBhdJJB1Y.jpg\",srcSet:\"https://framerusercontent.com/images/EqlJV9Z8hoWPI30hUHGBhdJJB1Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EqlJV9Z8hoWPI30hUHGBhdJJB1Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EqlJV9Z8hoWPI30hUHGBhdJJB1Y.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Beautiful Boy\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gKFcrOx3wTGTl1qBYsiw0EUHs.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/gKFcrOx3wTGTl1qBYsiw0EUHs.jpg\",srcSet:\"https://framerusercontent.com/images/gKFcrOx3wTGTl1qBYsiw0EUHs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gKFcrOx3wTGTl1qBYsiw0EUHs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gKFcrOx3wTGTl1qBYsiw0EUHs.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Dil Bechara\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4WK7SwTgPvdf0afkSNns6gxCrSM.jpg\",\"data-framer-height\":\"936\",\"data-framer-width\":\"1920\",height:\"468\",src:\"https://framerusercontent.com/images/4WK7SwTgPvdf0afkSNns6gxCrSM.jpg\",srcSet:\"https://framerusercontent.com/images/4WK7SwTgPvdf0afkSNns6gxCrSM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4WK7SwTgPvdf0afkSNns6gxCrSM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4WK7SwTgPvdf0afkSNns6gxCrSM.jpg 1920w\",style:{aspectRatio:\"1920 / 936\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Insomnia\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,fIbluEE1w7TiD4zfVs2AlsMlOhk.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/fIbluEE1w7TiD4zfVs2AlsMlOhk.jpg\",srcSet:\"https://framerusercontent.com/images/fIbluEE1w7TiD4zfVs2AlsMlOhk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fIbluEE1w7TiD4zfVs2AlsMlOhk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fIbluEE1w7TiD4zfVs2AlsMlOhk.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"Ship of Thesus\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,2kher32LOgtiRDryl4j3Iz03Q7g.jpg\",\"data-framer-height\":\"1080\",\"data-framer-width\":\"1920\",height:\"540\",src:\"https://framerusercontent.com/images/2kher32LOgtiRDryl4j3Iz03Q7g.jpg\",srcSet:\"https://framerusercontent.com/images/2kher32LOgtiRDryl4j3Iz03Q7g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2kher32LOgtiRDryl4j3Iz03Q7g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2kher32LOgtiRDryl4j3Iz03Q7g.jpg 1920w\",style:{aspectRatio:\"1920 / 1080\"},width:\"960\"}),/*#__PURE__*/e(\"p\",{children:\"My Neighbor Totoro\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}];for(let e of w)Object.freeze(e);a(w,{sniWqimKq:{defaultValue:\"\",title:\"Title\",type:s.String},ZW_uoaPIP:{defaultValue:\"uU3UnLqIH\",options:[\"uU3UnLqIH\",\"wVLvRU2iU\",\"bL4l0eVBe\",\"a8XaVA_Qz\",\"ZX39c9fMl\",\"yxJyUEvbF\",\"HEJfVoJIZ\",\"CD4iadofG\",\"hw9RjsBlx\"],optionTitles:[\"Illustration\",\"Animation\",\"Branding\",\"Videography\",\"Writings\",\"Exploration\",\"User Interface Design\",\"Photography\",\"discard\"],title:\"Category\",type:s.Enum},dEDC4Iqzz:{title:\"video link\",type:s.Link},JM0RGexYl:{title:\"Slug\",type:s.String},HQrn8G52I:{title:\"Image\",type:s.ResponsiveImage},ULY70DeWM:{defaultValue:\"\",title:\"Content\",type:s.RichText}}),w.displayName=\"Blog\";export default w;export const ZW_uoaPIPToDisplayName=(e,t)=>{switch(null==t||t.fallback,e){case\"uU3UnLqIH\":return\"Illustration\";case\"wVLvRU2iU\":return\"Animation\";case\"bL4l0eVBe\":return\"Branding\";case\"a8XaVA_Qz\":return\"Videography\";case\"ZX39c9fMl\":return\"Writings\";case\"yxJyUEvbF\":return\"Exploration\";case\"HEJfVoJIZ\":return\"User Interface Design\";case\"CD4iadofG\":return\"Photography\";case\"hw9RjsBlx\":return\"discard\";default:return\"\";}};export const enumToDisplayNameFunctions={ZW_uoaPIP:ZW_uoaPIPToDisplayName};export const utils={async getSlugByRecordId(e,t){var a;return null===(a=w.find(t=>t.id===e))||void 0===a?void 0:a[p];},async getRecordIdBySlug(e,t){var a;return null===(a=w.find(t=>t[p]===e))||void 0===a?void 0:a.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ZW_uoaPIPToDisplayName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerSlug\":\"JM0RGexYl\",\"framerContractVersion\":\"1\",\"framerRecordIndexKey\":\"index\",\"framerData\":\"\",\"framerRecordIdKey\":\"id\",\"framerCollectionId\":\"vq7sFmuLW\",\"framerEnumToDisplayNameUtils\":\"2\",\"framerCollectionUtils\":\"1\",\"framerRecordIncludedLocalesKey\":\"includedLocales\"}},\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "8NAAgT,IAAIA,GAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,IAAcA,EAAY,CAAC,EAAE,EAAE,IAAIC,GAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,IAAmBA,EAAiB,CAAC,EAAE,EAAE,IAAIC,GAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,IAAkBA,EAAgB,CAAC,EAAE,EAQt0B,SAASC,EAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,GAAU,GAAGC,EAAK,EAAE,CAAC,IAAMC,EAASC,EAAc,EAAQC,EAAWZ,IAAOL,EAAY,OAAakB,EAAcH,GAAUR,IAAYN,EAAiB,KAAK,CAACgB,EAAgB,CAACE,EAAaC,EAAY,EAAEC,EAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,EAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,GAAUC,CAAU,EAAEC,EAAS,EAAK,EAAQC,EAAaC,EAAUd,EAAK,EAAQe,GAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGvB,IAAM,GAAI,OAAqB0B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc7B,CAAG,EAAE,GAAG4B,IAAY,OAAW,OAAqBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EACrwBK,GAAaC,GAAgBH,EAAQ5B,EAAUgC,GAAiB,EAAErC,EAAgB,KAAKA,EAAgB,GAAG,EAC1GsC,EAAaJ,EAAS,aAAa,OAAAI,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,GAAKvB,GAAYC,IAAesB,EAAa,IAAI,WAAW,GAAG,EAAMvB,GAAYX,GAAYkC,EAAa,IAAI,OAAO,GAAG,EAAMnC,IAAOL,EAAY,OAAMwC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWL,CAAO,GAAO3B,GAAOgC,EAAa,IAAI,QAAQ,OAAO,EAAwBC,EAAM,UAAU,CAAC,eAAe,IAAIhB,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,GAAa,QAAQG,EAAW,MAAM,CAAC,GAAGmB,GAAa,aAAAf,EAAa,UAG9nBE,KAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,SAAS,CAACI,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA4BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAgBA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,EAAW,WAAWzB,EAAc,sBAAsBmB,gBAA0B,MAAS,CAAC,CAAC,EAAEf,EAAwBQ,EAAK,SAAS,CAAC,MAAMa,EAAW,IAAIP,EAAS,KAAK,YAAY,IAAI,MAAM,oGAAoG,QAAQ3B,EAAQ,aAAaC,EAAa,aAAaC,EAAa,YAAYC,EAAY,UAAUC,EAAS,CAAC,EAAgBiB,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,GAAU,MAAMhB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,EAAQ,YAAY,UAAU0C,EAAoB1C,EAAQ,CAAC,IAAI,CAAC,KAAK2C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO9C,CAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAK8C,EAAY,KAAK,QAAQ,OAAO,OAAO7C,CAAgB,EAAE,OAAOa,EAAM,CAAC,OAAOA,EAAM,OAAOd,EAAY,MAAO,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAK8C,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,EAAoB,GAAGC,CAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAKjD,EAAY,OAAO,WAAW,GAAK,UAAUC,EAAiB,OAAO,MAAM,EAAI,EAAEE,EAAQ,aAAa8C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI9C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI8C,CAAS,CAAE,MAAC,CAAM,IAAMd,EAASe,EAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGhC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMgD,EAAahD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACv9D,GAAGgD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQ/B,EAAI,aAAa,IAAI,GAAG,EAAQiD,EAAUF,EAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQkB,CAAS,EACnI,GAAGD,EAAa,CAAC,IAAI,QAAwC,MAAM,CAAtBA,EAAa,CAAC,EAAkBhD,CAAG,EAChF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMkD,EAASlD,EAAI,SAAS,MAAM,CAAC,EAAQmD,EAAUJ,EAAYG,CAAQ,EAAE,MAAM,CAACA,EAASC,CAAS,EAAG,CAAC,SAASJ,EAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAAE,CAAC,SAASG,GAAgBH,EAAQqB,EAAIC,EAAOvD,EAAgB,IAAI,CAChS,IAAMwD,EAAIxD,EAAgB,KAAK,+BAA+B,0BAAgCyD,EAAIzD,EAAgB,KAAK,OAAO,MAAM,OAAOsD,EAAI,CAAC,KAAKvD,EAAiB,IAAI,MAAM,GAAGyD,IAAMvB,eAAqBwB,IAAM,KAAK1D,EAAiB,OAAO,MAAM,GAAGyD,IAAMvB,eAAqBwB,IAAM,KAAK1D,EAAiB,KAAK,MAAM,GAAGyD,IAAMvB,mBAAyBwB,IAAM,QAAQ,MAAM,GAAGD,IAAMvB,OAAawB,GAAM,CAAC,CAAC,IAAIC,EACpZ,SAASrB,IAAkB,CAC3B,GAAG,CAACsB,EAAQ,MAAO,GAAM,GAAGD,IAAoB,OAAW,OAAOA,EAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAMA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC9KA,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,GAAG,EAC5D,EAAO,CACd,SAAS/B,IAAc,CAAC,OAAqBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGiC,EAAgB,SAAS,QAAQ,EAAE,SAAuBjC,EAAK,MAAM,CAAC,MAAMkC,EAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS9B,GAAa,CAAC,QAAA+B,CAAO,EAAE,CAAC,OAAqBnC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGoC,EAAgB,SAAS,QAAQ,EAAE,SAAuBzB,EAAM,MAAM,CAAC,MAAMuB,EAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,GAAW,CAAC,QAAAnC,EAAQ,UAAAe,EAAU,MAAAhB,CAAK,EAAE,CAAC,OAAqBsB,EAAK,SAAS,CAAC,QAAQrB,EAAQ,aAAa,OAAO,MAAM0D,GAAY,SAAuB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAeX,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUhB,EAAM,OAAO,OAAO,UAAU,YAAYgB,GAAUhB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAgBsB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMqC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,EAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,EAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECtBp2C,IAAIyB,EAAE,YAAYC,EAAE,YAAYC,EAAE,YAAYC,EAAE,YAAYC,EAAE,YAAYC,EAAE,YAAYC,EAAE,CAACC,EAAEC,IAAI,CAAC,GAAGD,GAAa,OAAOA,GAAjB,SAAmB,MAAM,CAAC,GAAGA,EAAE,IAAIC,CAAC,CAAE,EAAEC,EAAE,CAAC,CAAC,MAAM,EAAE,GAAG,YAAY,CAACT,CAAC,EAAE,gDAAgD,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,8CAA8C,CAACC,CAAC,EAAEE,EAAE,OAAO,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yCAAyC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kBAAkB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2BAA2B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,QAAQ,CAAC,SAAS,GAAG,UAAU,eAAe,KAAK,GAAG,MAAM,GAAG,YAAY,GAAG,IAAI,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,uCAAuC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,sCAAsC,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,qCAAqC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4CAA4C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qBAAqB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sPAAsP,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qBAAqB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2BAA2B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAcP,EAAE,SAAS,CAAC,SAAS,UAAU,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8QAA8Q,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uIAAuI,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qUAAqU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2KAA2K,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,WAAW,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,UAAU,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,wCAAwC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sCAAsC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oCAAoC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oCAAoC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kUAAkU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sOAAsO,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yNAA+M,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kGAAkG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uBAAuB,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gCAAgC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mFAAmF,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,qQAAqQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,QAAQ,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6IAA6I,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,4CAA4C,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,yBAAsCP,EAAES,EAAE,CAAC,KAAK,8CAA8C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,8BAA8B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,4BAA4B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oDAAoD,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2cAA2c,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+NAA+N,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,IAAI,8DAA8D,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,uEAAuE,OAAO,wKAAwK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,wBAAwB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kBAAkB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sDAAsD,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uBAAuB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,0DAA0D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,mEAAmE,OAAO,2PAA2P,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,8PAA8P,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,iBAAiB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,iBAAiB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yCAAyC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,0BAAuCP,EAAES,EAAE,CAAC,KAAK,wCAAwC,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,0DAA0D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,mEAAmE,OAAO,2PAA2P,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,YAAY,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,6BAA6B,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,yBAAyB,CAACC,CAAC,EAAE,YAAY,CAACC,CAAC,EAAE,+BAA+B,CAACC,CAAC,EAAE,4BAA4B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,4BAA4B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,eAA4BP,EAAES,EAAE,CAAC,KAAK,sBAAsB,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,eAA4BA,EAAES,EAAE,CAAC,KAAK,6CAA6C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6BAA6B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yCAAyC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kCAAkC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,0CAAuDP,EAAES,EAAE,CAAC,KAAK,sBAAsB,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,aAA0BA,EAAES,EAAE,CAAC,KAAK,sFAAsF,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAE,iBAA8BA,EAAES,EAAE,CAAC,KAAK,6CAA6C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,uEAAoFA,EAAES,EAAE,CAAC,KAAK,6CAA6C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mHAAmH,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,aAAa,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,KAAK,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAS,8LAA8L,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,mBAAmB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,kDAA+DP,EAAE,SAAS,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,MAAM,OAAO,MAAM,IAAI,uEAAuE,OAAO,yKAAyK,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,6BAA6B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,6BAA6B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,mEAAmE,OAAO,0PAA0P,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,mDAAgEP,EAAES,EAAE,CAAC,KAAK,iJAAiJ,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,iBAA8BP,EAAES,EAAE,CAAC,KAAK,sBAAsB,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4CAA4C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6BAA6B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kRAA6Q,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,iBAAiB,IAAI,gEAAgE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,iBAAiB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,sBAAsB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,sBAAsB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,sCAAsC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wBAAwB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6DAA6D,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8MAA8M,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,aAAa,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBO,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAS,CAAcP,EAAE,IAAI,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,MAAM,IAAI,SAAsBO,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAS,CAAcP,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,0DAA0D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,mEAAmE,OAAO,2PAA2P,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,MAAM,IAAI,SAAsBO,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAS,CAAcP,EAAE,IAAI,CAAC,SAAS,QAAQ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,MAAM,IAAI,SAAsBO,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAS,CAAcP,EAAE,IAAI,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,MAAM,IAAI,SAAsBO,EAAE,KAAK,CAAC,kBAAkB,IAAI,SAAS,CAAcP,EAAE,IAAI,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,KAAK,CAAC,SAAS,CAAC,yBAAsCP,EAAES,EAAE,CAAC,KAAK,0FAA0F,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,spBAA8mB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,q4BAAg4B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4cAAkc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,s8BAAu7B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,ifAAue,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0qBAA2pB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,YAAY,CAACH,CAAC,EAAE,cAAc,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,eAAe,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,8bAA8b,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,iBAAiB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wOAAwO,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,8bAA8b,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,SAAS,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qTAAqT,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,iCAAiC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iNAAiN,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sGAAsG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,8bAA8b,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8DAA8D,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+GAA+G,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,8bAA8b,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,8bAA8b,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,KAAK,CAAC,SAAS,CAAC,sBAAmCP,EAAES,EAAE,CAAC,KAAK,2CAA2C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sHAAsH,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,mcAAmc,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,qEAAqE,OAAO,ybAAyb,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,wBAAwB,CAACC,CAAC,EAAE,YAAY,CAACC,CAAC,EAAE,+BAA+B,CAACC,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,stBAAutB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,0PAAuQP,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAE,mKAAsKA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4BAA4B,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,OAAO,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CP,EAAES,EAAE,CAAC,KAAK,kGAAkG,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,YAAY,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yXAAyX,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iDAAiD,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4KAA4K,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qMAAqM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4BAA4B,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,+BAA+B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,mBAAmB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,8CAA8C,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6BAA6B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2CAA2C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kBAAkB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,sEAAmFP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,qBAAkCA,EAAES,EAAE,CAAC,KAAK,kEAAkE,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,iPAAiP,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4BAA4B,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,KAAK,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,SAAS,+GAAqG,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qiBAAshB,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iPAAiP,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,mBAAmB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2FAA2F,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sHAAsH,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,0FAA0F,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wDAAwD,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,sKAAsK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gEAAgE,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBP,EAAES,EAAE,CAAC,KAAK,kEAAkE,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,4EAA4E,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBP,EAAES,EAAE,CAAC,KAAK,gFAAgF,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,mFAAmF,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,4GAA4G,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBP,EAAES,EAAE,CAAC,KAAK,mEAAmE,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,MAAmBP,EAAES,EAAE,CAAC,KAAK,kGAAkG,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,oDAAoD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,gGAAgG,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,+EAA+E,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,8EAA8E,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,0FAA0F,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,SAAsBP,EAAES,EAAE,CAAC,KAAK,wGAAwG,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,sEAAsE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,wCAAwC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,wCAAwC,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yBAAyB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,qCAAkDP,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAES,EAAE,CAAC,KAAK,+CAA+C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,uBAAoCA,EAAES,EAAE,CAAC,KAAK,gDAAgD,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,0MAA0M,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,QAAQ,CAAC,SAAS,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,KAAK,GAAG,MAAM,GAAG,YAAY,GAAG,IAAI,sEAAsE,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4DAA4D,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,yBAAsCP,EAAES,EAAE,CAAC,KAAK,kGAAkG,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,SAAS,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,kBAA+BP,EAAES,EAAE,CAAC,KAAK,4DAA4D,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAsBA,EAAE,SAAS,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,4BAA4B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,2BAA2B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yOAAyO,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+FAA+F,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,OAAO,WAAW,GAAG,UAAU,iBAAiB,IAAI,0UAA0U,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,aAAa,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,aAAa,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0CAA0C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,qBAAqB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2CAA2C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0HAA0H,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAES,EAAE,CAAC,KAAK,uEAAuE,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,0DAA0D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,mEAAmE,OAAO,qVAAqV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mRAAmR,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,OAAO,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,oDAAoD,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,iCAAiC,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kCAAkC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,KAAK,WAAW,GAAG,UAAU,iBAAiB,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,iCAAiC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,cAAc,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sCAAsC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qBAAqB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+BAA+B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oCAAoC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+MAA+M,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8YAAgZ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8KAA8K,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,yBAAsCP,EAAES,EAAE,CAAC,KAAK,2CAA2C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,+BAA+B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,kCAAkC,CAACC,CAAC,EAAEE,EAAE,CAAC,UAAU,MAAM,UAAU,MAAM,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,OAAO,WAAW,GAAG,UAAU,iBAAiB,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,KAAK,WAAW,GAAG,UAAU,iBAAiB,IAAI,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,wCAAwC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,oBAAoB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,4CAA4C,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+CAA+C,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kCAAkC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,6BAA6B,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8LAA8L,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAcP,EAAE,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,+ZAAqZ,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAcP,EAAE,KAAK,CAAC,CAAC,EAAE,6XAAyW,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iFAAiF,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sBAAsB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,aAAa,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uRAAuR,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,aAAa,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,wQAAwQ,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mIAAmI,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2LAA2L,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,8BAA2CP,EAAES,EAAE,CAAC,KAAK,yIAAyI,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,8BAA8B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,uBAAoCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0MAA0M,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,qCAAqC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,uBAAuB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAES,EAAE,CAAC,KAAK,yDAAyD,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,oEAAoE,OAAO,+PAA+P,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,qQAAqQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,kCAAkC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,eAAe,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,gDAAgD,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,gDAAgD,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,mCAAmC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yRAAyR,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mQAAmQ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mJAAmJ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,uCAAuC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,mBAAmB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,qDAAqD,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2KAA2K,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,sEAAsE,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qCAAqC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,mEAAmE,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,4BAAyCP,EAAES,EAAE,CAAC,KAAK,8CAA8C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,QAAQ,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,qEAAqE,OAAO,kQAAkQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,mBAAmB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qBAAqB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,0BAA0B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,qCAAqC,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,iBAA8BP,EAAES,EAAE,CAAC,KAAK,6FAA6F,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,YAAyBP,EAAES,EAAE,CAAC,KAAK,yDAAyD,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,iCAA8CP,EAAES,EAAE,CAAC,KAAK,4CAA4C,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,4CAA4C,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,yBAAyB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,mCAAmC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,wBAAqCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,4FAA4F,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,4CAA4C,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,yBAAyB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,mCAAmC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,uBAAoCP,EAAES,EAAE,CAAC,KAAK,2BAA2B,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kFAAkF,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8BAA8B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,kBAAkB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,gBAAgB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,sWAA6VP,EAAE,KAAK,CAAC,CAAC,EAAE,6UAA0VA,EAAE,KAAK,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,mcAAmc,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,kWAAkW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,sWAAsW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,kWAAkW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,kWAAkW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,qEAAqE,OAAO,8VAA8V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,kWAAkW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,sEAAsE,OAAO,qQAAqQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,iCAAiC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,yBAAyB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,8MAA8M,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,mBAAmB,CAAC,EAAeA,EAAEU,EAAE,IAAI,CAAC,UAAU,qBAAqB,MAAM,CAAC,iBAAiB,YAAY,YAAY,sBAAsB,OAAO,OAAO,MAAM,MAAM,EAAE,SAAsBV,EAAEW,EAAE,CAAC,oBAAoB,sEAAsE,SAASN,GAAgBL,EAAEY,EAAE,CAAC,GAAGP,EAAE,KAAK,MAAM,WAAW,GAAG,UAAU,iBAAiB,IAAI,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeL,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,8PAA8P,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,6CAA6C,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,kCAAkC,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,qCAAqC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uEAAuE,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,kBAAkB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qMAAqM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iBAAiB,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uCAAuC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,wQAAwQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeO,EAAE,IAAI,CAAC,SAAS,CAAC,0EAAuFP,EAAES,EAAE,CAAC,KAAK,oDAAoD,aAAa,GAAG,aAAa,GAAG,SAAsBT,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,qCAAqC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,6BAA6B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,wBAAwB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,gBAAgB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,yBAAyB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,iBAAiB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,cAAc,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,gBAAgB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,OAAO,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,yBAAyB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,yEAAyE,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uLAAuL,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,YAAY,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,iQAAiQ,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,uWAAuW,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,sKAAsK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,KAAK,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,wKAAwK,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,GAAG,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,0KAA0K,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,qMAAuM,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,8BAA8B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,iBAAiB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,oEAAoE,OAAO,6PAA6P,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,2BAA2B,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,qBAAqB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,qEAAqE,OAAO,wbAAwb,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,uBAAuB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,2DAA2D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,oEAAoE,OAAO,yVAAyV,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,uCAAuC,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,+BAA+B,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,uBAAuB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,2PAA2P,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gXAAgX,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,iWAAiW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,6VAA6V,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,qWAAqW,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,GAAG,GAAG,YAAY,CAACH,CAAC,EAAE,wBAAwB,CAACC,CAAC,EAAE,YAAY,CAACE,CAAC,EAAE,iBAAiB,CAACC,CAAC,EAAEE,EAAE,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,CAACD,CAAC,EAAeK,EAAIC,EAAS,CAAC,SAAS,CAAcR,EAAE,KAAK,CAAC,SAAS,0BAA0B,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,0EAA0E,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,OAAO,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,OAAO,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,sEAAsE,OAAO,oQAAoQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,MAAM,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,SAAS,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,WAAW,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,eAAe,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,qEAAqE,OAAO,iQAAiQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,aAAa,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,MAAM,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,YAAY,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,UAAU,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,gBAAgB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAE,MAAM,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,8DAA8D,qBAAqB,OAAO,oBAAoB,OAAO,OAAO,MAAM,IAAI,uEAAuE,OAAO,uQAAuQ,MAAM,CAAC,YAAY,aAAa,EAAE,MAAM,KAAK,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAS,oBAAoB,CAAC,EAAeA,EAAE,IAAI,CAAC,SAAsBA,EAAE,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQI,KAAKE,EAAE,OAAO,OAAOF,CAAC,EAAES,EAAEP,EAAE,CAAC,UAAU,CAAC,aAAa,GAAG,MAAM,QAAQ,KAAKQ,EAAE,MAAM,EAAE,UAAU,CAAC,aAAa,YAAY,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,eAAe,YAAY,WAAW,cAAc,WAAW,cAAc,wBAAwB,cAAc,SAAS,EAAE,MAAM,WAAW,KAAKA,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAE,eAAe,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,UAAU,KAAKA,EAAE,QAAQ,CAAC,CAAC,EAAER,EAAE,YAAY,OAAO,IAAOS,GAAQT,EAAeU,GAAuB,CAACZ,EAAEC,IAAI,CAAC,OAAgBA,GAAE,SAASD,EAAE,CAAC,IAAI,YAAY,MAAM,eAAe,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,WAAW,IAAI,YAAY,MAAM,cAAc,IAAI,YAAY,MAAM,WAAW,IAAI,YAAY,MAAM,cAAc,IAAI,YAAY,MAAM,wBAAwB,IAAI,YAAY,MAAM,cAAc,IAAI,YAAY,MAAM,UAAU,QAAQ,MAAM,EAAG,CAAC,EAAea,GAA2B,CAAC,UAAUD,EAAsB,EAAeE,GAAM,CAAC,MAAM,kBAAkBd,EAAEC,EAAE,CAAC,IAAIc,EAAE,OAAeA,EAAEb,EAAE,KAAKD,GAAGA,EAAE,KAAKD,CAAC,KAA5B,MAAyCe,IAAT,OAAW,OAAOA,EAAEnB,CAAC,CAAE,EAAE,MAAM,kBAAkBI,EAAEC,EAAE,CAAC,IAAIc,EAAE,OAAeA,EAAEb,EAAE,KAAKD,GAAGA,EAAEL,CAAC,IAAII,CAAC,KAA5B,MAAyCe,IAAT,OAAW,OAAOA,EAAE,EAAG,CAAC,EAChm4SC,GAAqB,CAAC,QAAU,CAAC,2BAA6B,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,uBAAyB,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,OAAO,KAAO,OAAO,YAAc,CAAC,WAAa,YAAY,sBAAwB,IAAI,qBAAuB,QAAQ,WAAa,GAAG,kBAAoB,KAAK,mBAAqB,YAAY,6BAA+B,IAAI,sBAAwB,IAAI,+BAAiC,iBAAiB,CAAC,EAAE,MAAQ,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "i", "g", "h", "p", "d", "f", "l", "e", "t", "w", "u", "x", "Link", "motion", "ComponentPresetsConsumer", "Youtube", "addPropertyControls", "ControlType", "vq7sFmuLW_default", "ZW_uoaPIPToDisplayName", "enumToDisplayNameFunctions", "utils", "a", "__FramerMetadata__"]
}
