diff --git a/components/UI/box.tsx b/components/UI/box.tsx new file mode 100644 index 00000000..0490fc60 --- /dev/null +++ b/components/UI/box.tsx @@ -0,0 +1,12 @@ +import React, { FunctionComponent, ReactNode } from "react"; +import styles from "../../styles/components/box.module.css"; + +type BoxProps = { + children: ReactNode; +}; + +const Box: FunctionComponent = ({ children }) => { + return
{children}
; +}; + +export default Box; diff --git a/components/UI/navbar.tsx b/components/UI/navbar.tsx index 06efc977..0f4f924b 100644 --- a/components/UI/navbar.tsx +++ b/components/UI/navbar.tsx @@ -110,6 +110,9 @@ const Navbar: FunctionComponent = () => {
); diff --git a/pages/partnership.tsx b/pages/partnership.tsx new file mode 100644 index 00000000..dc90162b --- /dev/null +++ b/pages/partnership.tsx @@ -0,0 +1,213 @@ +import React, { useEffect } from "react"; +import type { NextPage } from "next"; +import styles from "../styles/partnership.module.css"; +import CategoryTitle from "../components/UI/titles/categoryTitle"; +import Steps from "../components/UI/steps/steps"; +import Crosses from "../components/shapes/crosses"; +import MainTitle from "../components/UI/titles/mainTitle"; +import Cross from "../components/shapes/cross"; +import Stats from "../components/UI/stats/stats"; +import Box from "../components/UI/box"; +import Dots from "../components/shapes/dots"; +import { useLottie } from "lottie-react"; +import JedieSwapLottie from "../public/visuals/JediswapLottie.json"; +import OnScrollIntoView from "../components/animations/onScrollIntoView"; + +const Partnership: NextPage = () => { + const { View: jediSwapBannerLottieView, play: jediSwapBannerLottiePlay } = + useLottie({ + animationData: JedieSwapLottie, + loop: false, + autoplay: false, + }); + + useEffect(() => { + const body = document.body; + const parent = body.parentNode as HTMLElement; + const interval = setInterval(() => { + const scrollTop = body.scrollTop || parent?.scrollTop || 0; + document.documentElement.style.setProperty("--scroll", `${scrollTop}`); + }, 1); + return () => clearInterval(interval); + }, []); + + return ( +
+
+
+
+
+ +
+ +
+
+ +
+
+ +
+
+
+ + +
+
+ + + +
+
+ +
+ + setTimeout(jediSwapBannerLottiePlay, 1000) + } + > +
+ {jediSwapBannerLottieView} +
+ + ), + }, + { + title: "Airdrops are so 2021", + subtitle: "/Authentic engagement, better approach", + description: + "Move beyond ineffective token distribution. Our innovative approach ensures genuine user engagement, leaving behind the flaws of traditional airdrops. Experience a better way to reward authenticity and provide real value to users", + icon: "/icons/user.svg", + banner: "/visuals/airdropsAreSo2021.webp", + }, + { + title: "Meaningful Rewards", + subtitle: "/Empower, captivate, foster loyalty", + description: + "Empower your community with meaningful rewards that hold intrinsic value within the Starknet ecosystem. Cultivate loyalty and unlock new dimensions of engagement through Starknet Quests, offering unique and captivating experiences.", + icon: "/icons/crown.svg", + banner: "/visuals/meaningfulRewards.webp", + }, + { + title: "Sybil-resistant marketing", + subtitle: "/Genuine interactions, fraud protection", + description: + "Ensure genuine user interactions and protect your community from fraudulent activities by leveraging secure Starknet Quests, eliminating bots, and fostering authentic growth and sustainable success.", + icon: "/icons/shield.svg", + banner: "/visuals/sybilResistantMarketing.webp", + }, + { + title: "A Quest that fits your need", + subtitle: "/Customized quests, maximum participation", + description: + "Customize Starknet Quests to meet your project's needs, seamlessly executing captivating quests on the blockchain or integrating with external interactions, maximizing user participation and satisfaction.", + icon: "/icons/verified.svg", + banner: "/visuals/buildYourStarknetLand.webp", + }, + ]} + /> + +
+
+
+ + + +
+
+ + + +
+
+ + +
+ + + + + +
+
+
+ +
+
+
+
+
+ ); +}; + +export default Partnership; diff --git a/public/icons/clipboard.svg b/public/icons/clipboard.svg new file mode 100644 index 00000000..f0e5615b --- /dev/null +++ b/public/icons/clipboard.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/icons/crown.svg b/public/icons/crown.svg new file mode 100644 index 00000000..cd073935 --- /dev/null +++ b/public/icons/crown.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/icons/shield.svg b/public/icons/shield.svg new file mode 100644 index 00000000..a8c72fcf --- /dev/null +++ b/public/icons/shield.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/icons/starknet.svg b/public/icons/starknet.svg new file mode 100644 index 00000000..40957637 --- /dev/null +++ b/public/icons/starknet.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/icons/user.svg b/public/icons/user.svg new file mode 100644 index 00000000..92dc69ee --- /dev/null +++ b/public/icons/user.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/icons/verified.svg b/public/icons/verified.svg new file mode 100644 index 00000000..8b668d9d --- /dev/null +++ b/public/icons/verified.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/masks/verticalBarMask.png b/public/masks/verticalBarMask.png new file mode 100644 index 00000000..0e5dfb41 Binary files /dev/null and b/public/masks/verticalBarMask.png differ diff --git a/public/partners/avnuLogo.svg b/public/partners/avnuLogo.svg new file mode 100644 index 00000000..18443cee --- /dev/null +++ b/public/partners/avnuLogo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/partners/braavosLogo.svg b/public/partners/braavosLogo.svg new file mode 100644 index 00000000..8d1e1f07 --- /dev/null +++ b/public/partners/braavosLogo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/partners/jediswapLogo.svg b/public/partners/jediswapLogo.svg new file mode 100644 index 00000000..339aee93 --- /dev/null +++ b/public/partners/jediswapLogo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/partners/sithswapLogo.svg b/public/partners/sithswapLogo.svg new file mode 100644 index 00000000..e004f652 --- /dev/null +++ b/public/partners/sithswapLogo.svg @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/partners/zklendLogo.svg b/public/partners/zklendLogo.svg new file mode 100644 index 00000000..8a4b6eee --- /dev/null +++ b/public/partners/zklendLogo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/utils/headerDivider.svg b/public/utils/headerDivider.svg new file mode 100644 index 00000000..fb5c6953 --- /dev/null +++ b/public/utils/headerDivider.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/visuals/JediswapLottie.json b/public/visuals/JediswapLottie.json new file mode 100644 index 00000000..47794304 --- /dev/null +++ b/public/visuals/JediswapLottie.json @@ -0,0 +1 @@ +{"ddd":0,"h":100,"w":100,"meta":{"g":"LottieFiles Figma v38"},"layers":[{"ty":4,"sr":1,"st":0,"op":61,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[36,12],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[36,12],"t":30},{"s":[36,12],"t":60}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"s":[100,100],"t":60}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[43,78],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[43,78],"t":30},{"s":[43,78],"t":60}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"s":[0],"t":60}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"s":[100],"t":60}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.56,0.29],[0.31,0.56],[0,0.81],[0,0],[0,0],[0,0],[-0.32,-0.32],[-0.51,0],[-0.31,0.31],[0,0.54],[0,0],[0,0],[0,0],[0.31,-0.56],[0.55,-0.29],[0.75,0]],"o":[[-0.74,0],[-0.56,-0.29],[-0.31,-0.56],[0,0],[0,0],[0,0],[0,0.54],[0.32,0.31],[0.52,0],[0.32,-0.32],[0,0],[0,0],[0,0],[0,0.81],[-0.31,0.56],[-0.55,0.29],[0,0]],"v":[[3.71,10.89],[1.76,10.46],[0.46,9.18],[0,7.13],[0,6.68],[1.97,6.68],[1.97,7.29],[2.45,8.58],[3.7,9.04],[4.94,8.58],[5.42,7.29],[5.42,1.88],[7.41,1.88],[7.41,7.13],[6.94,9.18],[5.66,10.46],[3.71,10.89]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.56,0.29],[0.31,0.56],[0,0.81],[0,0],[0,0],[0,0],[-0.32,-0.32],[-0.51,0],[-0.31,0.31],[0,0.54],[0,0],[0,0],[0,0],[0.31,-0.56],[0.55,-0.29],[0.75,0]],"o":[[-0.74,0],[-0.56,-0.29],[-0.31,-0.56],[0,0],[0,0],[0,0],[0,0.54],[0.32,0.31],[0.52,0],[0.32,-0.32],[0,0],[0,0],[0,0],[0,0.81],[-0.31,0.56],[-0.55,0.29],[0,0]],"v":[[3.71,10.89],[1.76,10.46],[0.46,9.18],[0,7.13],[0,6.68],[1.97,6.68],[1.97,7.29],[2.45,8.58],[3.7,9.04],[4.94,8.58],[5.42,7.29],[5.42,1.88],[7.41,1.88],[7.41,7.13],[6.94,9.18],[5.66,10.46],[3.71,10.89]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.56,0.29],[0.31,0.56],[0,0.81],[0,0],[0,0],[0,0],[-0.32,-0.32],[-0.51,0],[-0.31,0.31],[0,0.54],[0,0],[0,0],[0,0],[0.31,-0.56],[0.55,-0.29],[0.75,0]],"o":[[-0.74,0],[-0.56,-0.29],[-0.31,-0.56],[0,0],[0,0],[0,0],[0,0.54],[0.32,0.31],[0.52,0],[0.32,-0.32],[0,0],[0,0],[0,0],[0,0.81],[-0.31,0.56],[-0.55,0.29],[0,0]],"v":[[3.71,10.89],[1.76,10.46],[0.46,9.18],[0,7.13],[0,6.68],[1.97,6.68],[1.97,7.29],[2.45,8.58],[3.7,9.04],[4.94,8.58],[5.42,7.29],[5.42,1.88],[7.41,1.88],[7.41,7.13],[6.94,9.18],[5.66,10.46],[3.71,10.89]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1.25,2.16],[1.25,0.41],[7.41,0.41],[7.41,2.16],[1.25,2.16]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1.25,2.16],[1.25,0.41],[7.41,0.41],[7.41,2.16],[1.25,2.16]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1.25,2.16],[1.25,0.41],[7.41,0.41],[7.41,2.16],[1.25,2.16]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.49,0.22],[0.33,0.37],[0.17,0.47],[0,0.49],[0,0],[-0.16,0.47],[-0.32,0.36],[-0.48,0.21],[-0.63,0],[-0.55,-0.36],[-0.28,-0.59],[0,-0.67],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,0.35],[0.29,0.19],[0.43,0],[0.3,-0.2],[0.16,-0.37],[0,-0.51],[-0.15,-0.37],[-0.31,-0.21],[-0.48,0],[-0.3,0.19],[-0.08,0.28],[0,0],[0.32,-0.39],[0.49,-0.21],[0.63,0]],"o":[[-0.65,0],[-0.49,-0.22],[-0.32,-0.38],[-0.16,-0.47],[0,0],[0,-0.5],[0.17,-0.48],[0.33,-0.37],[0.48,-0.22],[0.82,0],[0.56,0.35],[0.28,0.58],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.49],[-0.14,-0.35],[-0.28,-0.19],[-0.43,0],[-0.3,0.2],[-0.15,0.36],[0,0.48],[0.15,0.36],[0.31,0.21],[0.48,0],[0.3,-0.2],[0,0],[-0.11,0.52],[-0.32,0.39],[-0.49,0.21],[0,0]],"v":[[13,10.89],[11.28,10.56],[10.06,9.66],[9.33,8.39],[9.09,6.96],[9.09,6.69],[9.33,5.24],[10.06,3.98],[11.26,3.09],[12.92,2.76],[14.97,3.3],[16.23,4.72],[16.65,6.59],[16.65,7.29],[9.92,7.29],[9.92,6.1],[15.44,6.1],[14.83,6.69],[14.62,5.45],[13.98,4.65],[12.92,4.37],[11.82,4.66],[11.14,5.52],[10.91,6.83],[11.14,8.11],[11.82,8.97],[13,9.28],[14.16,9],[14.74,8.29],[16.53,8.29],[15.88,9.66],[14.67,10.57],[13,10.89]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.49,0.22],[0.33,0.37],[0.17,0.47],[0,0.49],[0,0],[-0.16,0.47],[-0.32,0.36],[-0.48,0.21],[-0.63,0],[-0.55,-0.36],[-0.28,-0.59],[0,-0.67],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,0.35],[0.29,0.19],[0.43,0],[0.3,-0.2],[0.16,-0.37],[0,-0.51],[-0.15,-0.37],[-0.31,-0.21],[-0.48,0],[-0.3,0.19],[-0.08,0.28],[0,0],[0.32,-0.39],[0.49,-0.21],[0.63,0]],"o":[[-0.65,0],[-0.49,-0.22],[-0.32,-0.38],[-0.16,-0.47],[0,0],[0,-0.5],[0.17,-0.48],[0.33,-0.37],[0.48,-0.22],[0.82,0],[0.56,0.35],[0.28,0.58],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.49],[-0.14,-0.35],[-0.28,-0.19],[-0.43,0],[-0.3,0.2],[-0.15,0.36],[0,0.48],[0.15,0.36],[0.31,0.21],[0.48,0],[0.3,-0.2],[0,0],[-0.11,0.52],[-0.32,0.39],[-0.49,0.21],[0,0]],"v":[[13,10.89],[11.28,10.56],[10.06,9.66],[9.33,8.39],[9.09,6.96],[9.09,6.69],[9.33,5.24],[10.06,3.98],[11.26,3.09],[12.92,2.76],[14.97,3.3],[16.23,4.72],[16.65,6.59],[16.65,7.29],[9.92,7.29],[9.92,6.1],[15.44,6.1],[14.83,6.69],[14.62,5.45],[13.98,4.65],[12.92,4.37],[11.82,4.66],[11.14,5.52],[10.91,6.83],[11.14,8.11],[11.82,8.97],[13,9.28],[14.16,9],[14.74,8.29],[16.53,8.29],[15.88,9.66],[14.67,10.57],[13,10.89]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.49,0.22],[0.33,0.37],[0.17,0.47],[0,0.49],[0,0],[-0.16,0.47],[-0.32,0.36],[-0.48,0.21],[-0.63,0],[-0.55,-0.36],[-0.28,-0.59],[0,-0.67],[0,0],[0,0],[0,0],[0,0],[0,0],[0.14,0.35],[0.29,0.19],[0.43,0],[0.3,-0.2],[0.16,-0.37],[0,-0.51],[-0.15,-0.37],[-0.31,-0.21],[-0.48,0],[-0.3,0.19],[-0.08,0.28],[0,0],[0.32,-0.39],[0.49,-0.21],[0.63,0]],"o":[[-0.65,0],[-0.49,-0.22],[-0.32,-0.38],[-0.16,-0.47],[0,0],[0,-0.5],[0.17,-0.48],[0.33,-0.37],[0.48,-0.22],[0.82,0],[0.56,0.35],[0.28,0.58],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-0.49],[-0.14,-0.35],[-0.28,-0.19],[-0.43,0],[-0.3,0.2],[-0.15,0.36],[0,0.48],[0.15,0.36],[0.31,0.21],[0.48,0],[0.3,-0.2],[0,0],[-0.11,0.52],[-0.32,0.39],[-0.49,0.21],[0,0]],"v":[[13,10.89],[11.28,10.56],[10.06,9.66],[9.33,8.39],[9.09,6.96],[9.09,6.69],[9.33,5.24],[10.06,3.98],[11.26,3.09],[12.92,2.76],[14.97,3.3],[16.23,4.72],[16.65,6.59],[16.65,7.29],[9.92,7.29],[9.92,6.1],[15.44,6.1],[14.83,6.69],[14.62,5.45],[13.98,4.65],[12.92,4.37],[11.82,4.66],[11.14,5.52],[10.91,6.83],[11.14,8.11],[11.82,8.97],[13,9.28],[14.16,9],[14.74,8.29],[16.53,8.29],[15.88,9.66],[14.67,10.57],[13,10.89]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.45,0.2],[0.33,0.35],[0.18,0.47],[0,0.55],[0,0],[-0.17,0.48],[-0.31,0.35],[-0.44,0.2],[-0.54,0],[-0.45,-0.26],[-0.27,-0.51],[-0.03,-0.77],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.29,-0.52],[0.48,-0.26],[0.6,0]],"o":[[-0.53,0],[-0.45,-0.2],[-0.33,-0.35],[-0.18,-0.48],[0,0],[0,-0.54],[0.18,-0.48],[0.32,-0.35],[0.45,-0.21],[0.6,0],[0.46,0.25],[0.27,0.51],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.03,0.77],[-0.29,0.51],[-0.47,0.25],[0,0]],"v":[[21.43,10.88],[19.96,10.58],[18.8,9.76],[18.04,8.53],[17.78,6.99],[17.78,6.69],[18.03,5.17],[18.76,3.92],[19.89,3.09],[21.37,2.79],[22.94,3.18],[24.03,4.33],[24.48,6.26],[23.91,5.59],[23.91,0.41],[25.85,0.41],[25.85,10.63],[24.31,10.63],[24.31,7.39],[24.65,7.39],[24.17,9.34],[23.03,10.5],[21.43,10.88]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.45,0.2],[0.33,0.35],[0.18,0.47],[0,0.55],[0,0],[-0.17,0.48],[-0.31,0.35],[-0.44,0.2],[-0.54,0],[-0.45,-0.26],[-0.27,-0.51],[-0.03,-0.77],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.29,-0.52],[0.48,-0.26],[0.6,0]],"o":[[-0.53,0],[-0.45,-0.2],[-0.33,-0.35],[-0.18,-0.48],[0,0],[0,-0.54],[0.18,-0.48],[0.32,-0.35],[0.45,-0.21],[0.6,0],[0.46,0.25],[0.27,0.51],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.03,0.77],[-0.29,0.51],[-0.47,0.25],[0,0]],"v":[[21.43,10.88],[19.96,10.58],[18.8,9.76],[18.04,8.53],[17.78,6.99],[17.78,6.69],[18.03,5.17],[18.76,3.92],[19.89,3.09],[21.37,2.79],[22.94,3.18],[24.03,4.33],[24.48,6.26],[23.91,5.59],[23.91,0.41],[25.85,0.41],[25.85,10.63],[24.31,10.63],[24.31,7.39],[24.65,7.39],[24.17,9.34],[23.03,10.5],[21.43,10.88]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.45,0.2],[0.33,0.35],[0.18,0.47],[0,0.55],[0,0],[-0.17,0.48],[-0.31,0.35],[-0.44,0.2],[-0.54,0],[-0.45,-0.26],[-0.27,-0.51],[-0.03,-0.77],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.29,-0.52],[0.48,-0.26],[0.6,0]],"o":[[-0.53,0],[-0.45,-0.2],[-0.33,-0.35],[-0.18,-0.48],[0,0],[0,-0.54],[0.18,-0.48],[0.32,-0.35],[0.45,-0.21],[0.6,0],[0.46,0.25],[0.27,0.51],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.03,0.77],[-0.29,0.51],[-0.47,0.25],[0,0]],"v":[[21.43,10.88],[19.96,10.58],[18.8,9.76],[18.04,8.53],[17.78,6.99],[17.78,6.69],[18.03,5.17],[18.76,3.92],[19.89,3.09],[21.37,2.79],[22.94,3.18],[24.03,4.33],[24.48,6.26],[23.91,5.59],[23.91,0.41],[25.85,0.41],[25.85,10.63],[24.31,10.63],[24.31,7.39],[24.65,7.39],[24.17,9.34],[23.03,10.5],[21.43,10.88]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.32,0.17],[-0.19,0.33],[0,0.45],[0,0],[0.2,0.3],[0.32,0.16],[0.37,0],[0.33,-0.21],[0.19,-0.36],[0,-0.49],[-0.19,-0.36],[-0.32,-0.2],[-0.41,0]],"o":[[0.38,0],[0.32,-0.18],[0.2,-0.34],[0,0],[0,-0.45],[-0.2,-0.31],[-0.32,-0.17],[-0.42,0],[-0.32,0.2],[-0.18,0.36],[0,0.49],[0.19,0.35],[0.33,0.2],[0,0]],"v":[[21.86,9.24],[22.91,8.99],[23.67,8.23],[23.96,7.06],[23.96,6.5],[23.67,5.38],[22.9,4.68],[21.86,4.42],[20.74,4.73],[19.99,5.57],[19.72,6.85],[20,8.12],[20.76,8.95],[21.86,9.24]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.32,0.17],[-0.19,0.33],[0,0.45],[0,0],[0.2,0.3],[0.32,0.16],[0.37,0],[0.33,-0.21],[0.19,-0.36],[0,-0.49],[-0.19,-0.36],[-0.32,-0.2],[-0.41,0]],"o":[[0.38,0],[0.32,-0.18],[0.2,-0.34],[0,0],[0,-0.45],[-0.2,-0.31],[-0.32,-0.17],[-0.42,0],[-0.32,0.2],[-0.18,0.36],[0,0.49],[0.19,0.35],[0.33,0.2],[0,0]],"v":[[21.86,9.24],[22.91,8.99],[23.67,8.23],[23.96,7.06],[23.96,6.5],[23.67,5.38],[22.9,4.68],[21.86,4.42],[20.74,4.73],[19.99,5.57],[19.72,6.85],[20,8.12],[20.76,8.95],[21.86,9.24]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[-0.32,0.17],[-0.19,0.33],[0,0.45],[0,0],[0.2,0.3],[0.32,0.16],[0.37,0],[0.33,-0.21],[0.19,-0.36],[0,-0.49],[-0.19,-0.36],[-0.32,-0.2],[-0.41,0]],"o":[[0.38,0],[0.32,-0.18],[0.2,-0.34],[0,0],[0,-0.45],[-0.2,-0.31],[-0.32,-0.17],[-0.42,0],[-0.32,0.2],[-0.18,0.36],[0,0.49],[0.19,0.35],[0.33,0.2],[0,0]],"v":[[21.86,9.24],[22.91,8.99],[23.67,8.23],[23.96,7.06],[23.96,6.5],[23.67,5.38],[22.9,4.68],[21.86,4.42],[20.74,4.73],[19.99,5.57],[19.72,6.85],[20,8.12],[20.76,8.95],[21.86,9.24]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.43,10.63],[28.43,3.02],[30.38,3.02],[30.38,10.63],[28.43,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.43,10.63],[28.43,3.02],[30.38,3.02],[30.38,10.63],[28.43,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[28.43,10.63],[28.43,3.02],[30.38,3.02],[30.38,10.63],[28.43,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[27.37,4.48],[27.37,3.02],[30.38,3.02],[30.38,4.48],[27.37,4.48]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[27.37,4.48],[27.37,3.02],[30.38,3.02],[30.38,4.48],[27.37,4.48]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[27.37,4.48],[27.37,3.02],[30.38,3.02],[30.38,4.48],[27.37,4.48]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.19,0.2],[0,0.3],[-0.18,0.2],[-0.38,0],[-0.18,-0.2],[0,-0.32],[0.18,-0.21],[0.38,0]],"o":[[-0.38,0],[-0.18,-0.21],[0,-0.32],[0.19,-0.2],[0.38,0],[0.18,0.2],[0,0.3],[-0.18,0.2],[0,0]],"v":[[29.15,2.11],[28.29,1.82],[28.03,1.06],[28.29,0.29],[29.15,0],[29.99,0.29],[30.25,1.06],[29.99,1.82],[29.15,2.11]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.19,0.2],[0,0.3],[-0.18,0.2],[-0.38,0],[-0.18,-0.2],[0,-0.32],[0.18,-0.21],[0.38,0]],"o":[[-0.38,0],[-0.18,-0.21],[0,-0.32],[0.19,-0.2],[0.38,0],[0.18,0.2],[0,0.3],[-0.18,0.2],[0,0]],"v":[[29.15,2.11],[28.29,1.82],[28.03,1.06],[28.29,0.29],[29.15,0],[29.99,0.29],[30.25,1.06],[29.99,1.82],[29.15,2.11]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.19,0.2],[0,0.3],[-0.18,0.2],[-0.38,0],[-0.18,-0.2],[0,-0.32],[0.18,-0.21],[0.38,0]],"o":[[-0.38,0],[-0.18,-0.21],[0,-0.32],[0.19,-0.2],[0.38,0],[0.18,0.2],[0,0.3],[-0.18,0.2],[0,0]],"v":[[29.15,2.11],[28.29,1.82],[28.03,1.06],[28.29,0.29],[29.15,0],[29.99,0.29],[30.25,1.06],[29.99,1.82],[29.15,2.11]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.63,0.29],[0.33,0.5],[0,0.64],[0,0],[-0.15,-0.26],[-0.33,-0.16],[-0.54,0],[-0.33,0.14],[-0.16,0.22],[0,0.29],[0.31,0.21],[0.64,0.06],[0,0],[0.59,0.52],[0,0.87],[-0.31,0.47],[-0.55,0.25],[-0.75,0],[-0.56,-0.27],[-0.31,-0.49],[0,-0.66],[0,0],[0.14,0.23],[0.27,0.14],[0.41,0],[0.26,-0.13],[0.13,-0.22],[0,-0.26],[-0.23,-0.24],[-0.5,-0.04],[0,0],[-0.55,-0.25],[-0.3,-0.43],[0,-0.61],[0.34,-0.49],[0.63,-0.27],[0.84,0]],"o":[[-0.91,0],[-0.62,-0.29],[-0.33,-0.51],[0,0],[0,0.27],[0.15,0.25],[0.34,0.16],[0.49,0],[0.33,-0.14],[0.16,-0.23],[0,-0.36],[-0.31,-0.22],[0,0],[-0.98,-0.08],[-0.58,-0.53],[0,-0.65],[0.31,-0.48],[0.56,-0.26],[0.77,0],[0.56,0.27],[0.31,0.49],[0,0],[0,-0.28],[-0.13,-0.24],[-0.26,-0.15],[-0.39,0],[-0.26,0.13],[-0.13,0.22],[0,0.32],[0.23,0.23],[0,0],[0.73,0.06],[0.55,0.25],[0.31,0.43],[0,0.64],[-0.34,0.49],[-0.62,0.27],[0,0]],"v":[[36.26,10.89],[33.97,10.46],[32.55,9.27],[32.06,7.53],[34.01,7.53],[34.23,8.33],[34.95,8.95],[36.26,9.18],[37.48,8.97],[38.21,8.43],[38.45,7.64],[37.98,6.78],[36.56,6.36],[35.66,6.29],[33.31,5.38],[32.44,3.28],[32.9,1.6],[34.19,0.5],[36.15,0.11],[38.15,0.52],[39.45,1.67],[39.92,3.39],[37.97,3.39],[37.76,2.62],[37.16,2.04],[36.15,1.82],[35.17,2.02],[34.58,2.55],[34.39,3.28],[34.74,4.12],[35.84,4.52],[36.74,4.61],[38.66,5.07],[39.93,6.09],[40.39,7.64],[39.89,9.35],[38.45,10.49],[36.26,10.89]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.63,0.29],[0.33,0.5],[0,0.64],[0,0],[-0.15,-0.26],[-0.33,-0.16],[-0.54,0],[-0.33,0.14],[-0.16,0.22],[0,0.29],[0.31,0.21],[0.64,0.06],[0,0],[0.59,0.52],[0,0.87],[-0.31,0.47],[-0.55,0.25],[-0.75,0],[-0.56,-0.27],[-0.31,-0.49],[0,-0.66],[0,0],[0.14,0.23],[0.27,0.14],[0.41,0],[0.26,-0.13],[0.13,-0.22],[0,-0.26],[-0.23,-0.24],[-0.5,-0.04],[0,0],[-0.55,-0.25],[-0.3,-0.43],[0,-0.61],[0.34,-0.49],[0.63,-0.27],[0.84,0]],"o":[[-0.91,0],[-0.62,-0.29],[-0.33,-0.51],[0,0],[0,0.27],[0.15,0.25],[0.34,0.16],[0.49,0],[0.33,-0.14],[0.16,-0.23],[0,-0.36],[-0.31,-0.22],[0,0],[-0.98,-0.08],[-0.58,-0.53],[0,-0.65],[0.31,-0.48],[0.56,-0.26],[0.77,0],[0.56,0.27],[0.31,0.49],[0,0],[0,-0.28],[-0.13,-0.24],[-0.26,-0.15],[-0.39,0],[-0.26,0.13],[-0.13,0.22],[0,0.32],[0.23,0.23],[0,0],[0.73,0.06],[0.55,0.25],[0.31,0.43],[0,0.64],[-0.34,0.49],[-0.62,0.27],[0,0]],"v":[[36.26,10.89],[33.97,10.46],[32.55,9.27],[32.06,7.53],[34.01,7.53],[34.23,8.33],[34.95,8.95],[36.26,9.18],[37.48,8.97],[38.21,8.43],[38.45,7.64],[37.98,6.78],[36.56,6.36],[35.66,6.29],[33.31,5.38],[32.44,3.28],[32.9,1.6],[34.19,0.5],[36.15,0.11],[38.15,0.52],[39.45,1.67],[39.92,3.39],[37.97,3.39],[37.76,2.62],[37.16,2.04],[36.15,1.82],[35.17,2.02],[34.58,2.55],[34.39,3.28],[34.74,4.12],[35.84,4.52],[36.74,4.61],[38.66,5.07],[39.93,6.09],[40.39,7.64],[39.89,9.35],[38.45,10.49],[36.26,10.89]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.63,0.29],[0.33,0.5],[0,0.64],[0,0],[-0.15,-0.26],[-0.33,-0.16],[-0.54,0],[-0.33,0.14],[-0.16,0.22],[0,0.29],[0.31,0.21],[0.64,0.06],[0,0],[0.59,0.52],[0,0.87],[-0.31,0.47],[-0.55,0.25],[-0.75,0],[-0.56,-0.27],[-0.31,-0.49],[0,-0.66],[0,0],[0.14,0.23],[0.27,0.14],[0.41,0],[0.26,-0.13],[0.13,-0.22],[0,-0.26],[-0.23,-0.24],[-0.5,-0.04],[0,0],[-0.55,-0.25],[-0.3,-0.43],[0,-0.61],[0.34,-0.49],[0.63,-0.27],[0.84,0]],"o":[[-0.91,0],[-0.62,-0.29],[-0.33,-0.51],[0,0],[0,0.27],[0.15,0.25],[0.34,0.16],[0.49,0],[0.33,-0.14],[0.16,-0.23],[0,-0.36],[-0.31,-0.22],[0,0],[-0.98,-0.08],[-0.58,-0.53],[0,-0.65],[0.31,-0.48],[0.56,-0.26],[0.77,0],[0.56,0.27],[0.31,0.49],[0,0],[0,-0.28],[-0.13,-0.24],[-0.26,-0.15],[-0.39,0],[-0.26,0.13],[-0.13,0.22],[0,0.32],[0.23,0.23],[0,0],[0.73,0.06],[0.55,0.25],[0.31,0.43],[0,0.64],[-0.34,0.49],[-0.62,0.27],[0,0]],"v":[[36.26,10.89],[33.97,10.46],[32.55,9.27],[32.06,7.53],[34.01,7.53],[34.23,8.33],[34.95,8.95],[36.26,9.18],[37.48,8.97],[38.21,8.43],[38.45,7.64],[37.98,6.78],[36.56,6.36],[35.66,6.29],[33.31,5.38],[32.44,3.28],[32.9,1.6],[34.19,0.5],[36.15,0.11],[38.15,0.52],[39.45,1.67],[39.92,3.39],[37.97,3.39],[37.76,2.62],[37.16,2.04],[36.15,1.82],[35.17,2.02],[34.58,2.55],[34.39,3.28],[34.74,4.12],[35.84,4.52],[36.74,4.61],[38.66,5.07],[39.93,6.09],[40.39,7.64],[39.89,9.35],[38.45,10.49],[36.26,10.89]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.66,10.63],[46.1,3.28],[48.34,3.28],[50.01,10.63],[48.47,10.63],[46.77,3.32],[47.59,3.32],[46.09,10.63],[44.66,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.66,10.63],[46.1,3.28],[48.34,3.28],[50.01,10.63],[48.47,10.63],[46.77,3.32],[47.59,3.32],[46.09,10.63],[44.66,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.66,10.63],[46.1,3.28],[48.34,3.28],[50.01,10.63],[48.47,10.63],[46.77,3.32],[47.59,3.32],[46.09,10.63],[44.66,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.09,10.63],[44.07,9.03],[45.63,9.03],[45.63,10.63],[44.09,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.09,10.63],[44.07,9.03],[45.63,9.03],[45.63,10.63],[44.09,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[44.09,10.63],[44.07,9.03],[45.63,9.03],[45.63,10.63],[44.09,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.3,10.63],[41.23,3.02],[43.12,3.02],[45.09,10.63],[43.3,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.3,10.63],[41.23,3.02],[43.12,3.02],[45.09,10.63],[43.3,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[43.3,10.63],[41.23,3.02],[43.12,3.02],[45.09,10.63],[43.3,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[48.96,10.63],[48.96,9.03],[50.51,9.03],[50.5,10.63],[48.96,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[48.96,10.63],[48.96,9.03],[50.51,9.03],[50.5,10.63],[48.96,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[48.96,10.63],[48.96,9.03],[50.51,9.03],[50.5,10.63],[48.96,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[49.57,10.63],[51.32,3.02],[53.09,3.02],[51.25,10.63],[49.57,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[49.57,10.63],[51.32,3.02],[53.09,3.02],[51.25,10.63],[49.57,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[49.57,10.63],[51.32,3.02],[53.09,3.02],[51.25,10.63],[49.57,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0.21,0.21],[0.45,0],[0.33,-0.01],[0.34,-0.02],[0.26,-0.02],[0,0],[-0.27,0.02],[-0.28,0],[-0.25,0],[-0.51,-0.21],[-0.26,-0.44],[0,-0.71],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,-0.44],[-0.21,-0.21],[-0.23,0],[-0.33,0.01],[-0.33,0.01],[0,0],[0.21,-0.02],[0.27,-0.02],[0.29,-0.01],[0.78,0],[0.52,0.21],[0.27,0.44],[0,0],[0,0],[0,0]],"v":[[59.13,10.63],[59.13,8.37],[58.81,8.37],[58.81,5.87],[58.49,4.89],[57.49,4.56],[56.65,4.58],[55.66,4.62],[54.78,4.66],[54.78,3.01],[55.5,2.95],[56.33,2.93],[57.14,2.91],[59.09,3.22],[60.26,4.19],[60.67,5.91],[60.67,10.63],[59.13,10.63]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0.21,0.21],[0.45,0],[0.33,-0.01],[0.34,-0.02],[0.26,-0.02],[0,0],[-0.27,0.02],[-0.28,0],[-0.25,0],[-0.51,-0.21],[-0.26,-0.44],[0,-0.71],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,-0.44],[-0.21,-0.21],[-0.23,0],[-0.33,0.01],[-0.33,0.01],[0,0],[0.21,-0.02],[0.27,-0.02],[0.29,-0.01],[0.78,0],[0.52,0.21],[0.27,0.44],[0,0],[0,0],[0,0]],"v":[[59.13,10.63],[59.13,8.37],[58.81,8.37],[58.81,5.87],[58.49,4.89],[57.49,4.56],[56.65,4.58],[55.66,4.62],[54.78,4.66],[54.78,3.01],[55.5,2.95],[56.33,2.93],[57.14,2.91],[59.09,3.22],[60.26,4.19],[60.67,5.91],[60.67,10.63],[59.13,10.63]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0.21,0.21],[0.45,0],[0.33,-0.01],[0.34,-0.02],[0.26,-0.02],[0,0],[-0.27,0.02],[-0.28,0],[-0.25,0],[-0.51,-0.21],[-0.26,-0.44],[0,-0.71],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,-0.44],[-0.21,-0.21],[-0.23,0],[-0.33,0.01],[-0.33,0.01],[0,0],[0.21,-0.02],[0.27,-0.02],[0.29,-0.01],[0.78,0],[0.52,0.21],[0.27,0.44],[0,0],[0,0],[0,0]],"v":[[59.13,10.63],[59.13,8.37],[58.81,8.37],[58.81,5.87],[58.49,4.89],[57.49,4.56],[56.65,4.58],[55.66,4.62],[54.78,4.66],[54.78,3.01],[55.5,2.95],[56.33,2.93],[57.14,2.91],[59.09,3.22],[60.26,4.19],[60.67,5.91],[60.67,10.63],[59.13,10.63]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.42,0.2],[0.23,0.36],[0,0.51],[-0.27,0.35],[-0.49,0.18],[-0.67,0],[0,0],[0,0],[0,0],[0.24,-0.22],[0,-0.35],[-0.23,-0.21],[-0.45,0],[-0.22,0.09],[-0.15,0.23],[-0.02,0.41],[0,0],[0.21,-0.36],[0.37,-0.2],[0.53,0]],"o":[[-0.55,0],[-0.41,-0.2],[-0.22,-0.36],[0,-0.56],[0.28,-0.35],[0.5,-0.18],[0,0],[0,0],[0,0],[-0.45,0],[-0.23,0.21],[0,0.35],[0.24,0.21],[0.27,0],[0.23,-0.1],[0.16,-0.24],[0,0],[-0.05,0.53],[-0.21,0.36],[-0.36,0.19],[0,0]],"v":[[56.68,10.82],[55.22,10.53],[54.26,9.69],[53.92,8.37],[54.33,7],[55.49,6.2],[57.25,5.94],[59.02,5.94],[59.02,7.1],[57.23,7.1],[56.19,7.43],[55.84,8.27],[56.19,9.11],[57.23,9.44],[57.97,9.3],[58.54,8.79],[58.81,7.81],[59.28,8.36],[58.89,9.7],[58.02,10.54],[56.68,10.82]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.42,0.2],[0.23,0.36],[0,0.51],[-0.27,0.35],[-0.49,0.18],[-0.67,0],[0,0],[0,0],[0,0],[0.24,-0.22],[0,-0.35],[-0.23,-0.21],[-0.45,0],[-0.22,0.09],[-0.15,0.23],[-0.02,0.41],[0,0],[0.21,-0.36],[0.37,-0.2],[0.53,0]],"o":[[-0.55,0],[-0.41,-0.2],[-0.22,-0.36],[0,-0.56],[0.28,-0.35],[0.5,-0.18],[0,0],[0,0],[0,0],[-0.45,0],[-0.23,0.21],[0,0.35],[0.24,0.21],[0.27,0],[0.23,-0.1],[0.16,-0.24],[0,0],[-0.05,0.53],[-0.21,0.36],[-0.36,0.19],[0,0]],"v":[[56.68,10.82],[55.22,10.53],[54.26,9.69],[53.92,8.37],[54.33,7],[55.49,6.2],[57.25,5.94],[59.02,5.94],[59.02,7.1],[57.23,7.1],[56.19,7.43],[55.84,8.27],[56.19,9.11],[57.23,9.44],[57.97,9.3],[58.54,8.79],[58.81,7.81],[59.28,8.36],[58.89,9.7],[58.02,10.54],[56.68,10.82]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.42,0.2],[0.23,0.36],[0,0.51],[-0.27,0.35],[-0.49,0.18],[-0.67,0],[0,0],[0,0],[0,0],[0.24,-0.22],[0,-0.35],[-0.23,-0.21],[-0.45,0],[-0.22,0.09],[-0.15,0.23],[-0.02,0.41],[0,0],[0.21,-0.36],[0.37,-0.2],[0.53,0]],"o":[[-0.55,0],[-0.41,-0.2],[-0.22,-0.36],[0,-0.56],[0.28,-0.35],[0.5,-0.18],[0,0],[0,0],[0,0],[-0.45,0],[-0.23,0.21],[0,0.35],[0.24,0.21],[0.27,0],[0.23,-0.1],[0.16,-0.24],[0,0],[-0.05,0.53],[-0.21,0.36],[-0.36,0.19],[0,0]],"v":[[56.68,10.82],[55.22,10.53],[54.26,9.69],[53.92,8.37],[54.33,7],[55.49,6.2],[57.25,5.94],[59.02,5.94],[59.02,7.1],[57.23,7.1],[56.19,7.43],[55.84,8.27],[56.19,9.11],[57.23,9.44],[57.97,9.3],[58.54,8.79],[58.81,7.81],[59.28,8.36],[58.89,9.7],[58.02,10.54],[56.68,10.82]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.28,0.52],[-0.48,0.25],[-0.59,0],[-0.43,-0.2],[-0.31,-0.35],[-0.17,-0.48],[0,-0.54],[0,0],[0.17,-0.48],[0.32,-0.36],[0.44,-0.21],[0.54,0],[0.48,0.23],[0.29,0.49],[0.04,0.79],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.04,-0.77],[0.29,-0.52],[0.48,-0.26],[0.54,0],[0.44,0.2],[0.32,0.35],[0.17,0.47],[0,0],[0,0.55],[-0.16,0.47],[-0.31,0.35],[-0.44,0.2],[-0.57,0],[-0.47,-0.24],[-0.29,-0.5],[0,0],[0,0],[0,0],[0,0]],"v":[[62.75,13.43],[62.75,3.02],[64.29,3.02],[64.29,6.3],[64.06,6.29],[64.53,4.34],[65.68,3.18],[67.28,2.79],[68.73,3.08],[69.85,3.91],[70.58,5.15],[70.83,6.66],[70.83,6.96],[70.58,8.5],[69.87,9.74],[68.75,10.58],[67.28,10.88],[65.71,10.53],[64.57,9.42],[64.08,7.48],[64.7,8.41],[64.7,13.43],[62.75,13.43]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.28,0.52],[-0.48,0.25],[-0.59,0],[-0.43,-0.2],[-0.31,-0.35],[-0.17,-0.48],[0,-0.54],[0,0],[0.17,-0.48],[0.32,-0.36],[0.44,-0.21],[0.54,0],[0.48,0.23],[0.29,0.49],[0.04,0.79],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.04,-0.77],[0.29,-0.52],[0.48,-0.26],[0.54,0],[0.44,0.2],[0.32,0.35],[0.17,0.47],[0,0],[0,0.55],[-0.16,0.47],[-0.31,0.35],[-0.44,0.2],[-0.57,0],[-0.47,-0.24],[-0.29,-0.5],[0,0],[0,0],[0,0],[0,0]],"v":[[62.75,13.43],[62.75,3.02],[64.29,3.02],[64.29,6.3],[64.06,6.29],[64.53,4.34],[65.68,3.18],[67.28,2.79],[68.73,3.08],[69.85,3.91],[70.58,5.15],[70.83,6.66],[70.83,6.96],[70.58,8.5],[69.87,9.74],[68.75,10.58],[67.28,10.88],[65.71,10.53],[64.57,9.42],[64.08,7.48],[64.7,8.41],[64.7,13.43],[62.75,13.43]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.28,0.52],[-0.48,0.25],[-0.59,0],[-0.43,-0.2],[-0.31,-0.35],[-0.17,-0.48],[0,-0.54],[0,0],[0.17,-0.48],[0.32,-0.36],[0.44,-0.21],[0.54,0],[0.48,0.23],[0.29,0.49],[0.04,0.79],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.04,-0.77],[0.29,-0.52],[0.48,-0.26],[0.54,0],[0.44,0.2],[0.32,0.35],[0.17,0.47],[0,0],[0,0.55],[-0.16,0.47],[-0.31,0.35],[-0.44,0.2],[-0.57,0],[-0.47,-0.24],[-0.29,-0.5],[0,0],[0,0],[0,0],[0,0]],"v":[[62.75,13.43],[62.75,3.02],[64.29,3.02],[64.29,6.3],[64.06,6.29],[64.53,4.34],[65.68,3.18],[67.28,2.79],[68.73,3.08],[69.85,3.91],[70.58,5.15],[70.83,6.66],[70.83,6.96],[70.58,8.5],[69.87,9.74],[68.75,10.58],[67.28,10.88],[65.71,10.53],[64.57,9.42],[64.08,7.48],[64.7,8.41],[64.7,13.43],[62.75,13.43]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.31,0.21],[-0.18,0.36],[0,0.47],[0.18,0.35],[0.32,0.2],[0.42,0],[0.33,-0.17],[0.21,-0.33],[0,-0.46],[0,0],[-0.21,-0.31],[-0.33,-0.17],[-0.36,0]],"o":[[0.42,0],[0.32,-0.21],[0.18,-0.37],[0,-0.49],[-0.18,-0.35],[-0.31,-0.21],[-0.38,0],[-0.32,0.17],[-0.2,0.33],[0,0],[0,0.44],[0.21,0.31],[0.33,0.17],[0,0]],"v":[[66.79,9.24],[67.88,8.93],[68.62,8.08],[68.89,6.82],[68.62,5.56],[67.88,4.73],[66.79,4.42],[65.72,4.68],[64.94,5.42],[64.64,6.59],[64.64,7.15],[64.95,8.27],[65.75,8.99],[66.79,9.24]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.31,0.21],[-0.18,0.36],[0,0.47],[0.18,0.35],[0.32,0.2],[0.42,0],[0.33,-0.17],[0.21,-0.33],[0,-0.46],[0,0],[-0.21,-0.31],[-0.33,-0.17],[-0.36,0]],"o":[[0.42,0],[0.32,-0.21],[0.18,-0.37],[0,-0.49],[-0.18,-0.35],[-0.31,-0.21],[-0.38,0],[-0.32,0.17],[-0.2,0.33],[0,0],[0,0.44],[0.21,0.31],[0.33,0.17],[0,0]],"v":[[66.79,9.24],[67.88,8.93],[68.62,8.08],[68.89,6.82],[68.62,5.56],[67.88,4.73],[66.79,4.42],[65.72,4.68],[64.94,5.42],[64.64,6.59],[64.64,7.15],[64.95,8.27],[65.75,8.99],[66.79,9.24]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[-0.31,0.21],[-0.18,0.36],[0,0.47],[0.18,0.35],[0.32,0.2],[0.42,0],[0.33,-0.17],[0.21,-0.33],[0,-0.46],[0,0],[-0.21,-0.31],[-0.33,-0.17],[-0.36,0]],"o":[[0.42,0],[0.32,-0.21],[0.18,-0.37],[0,-0.49],[-0.18,-0.35],[-0.31,-0.21],[-0.38,0],[-0.32,0.17],[-0.2,0.33],[0,0],[0,0.44],[0.21,0.31],[0.33,0.17],[0,0]],"v":[[66.79,9.24],[67.88,8.93],[68.62,8.08],[68.89,6.82],[68.62,5.56],[67.88,4.73],[66.79,4.42],[65.72,4.68],[64.94,5.42],[64.64,6.59],[64.64,7.15],[64.95,8.27],[65.75,8.99],[66.79,9.24]]}],"t":60}]}},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.9569,0.9804,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.9569,0.9804,1],"t":30},{"s":[0.9569,0.9804,1],"t":60}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]}}],"ind":1},{"ty":4,"sr":1,"st":0,"op":61,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[9.41,2.58],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[9.41,31.92],"t":30},{"s":[9.41,31.92],"t":60}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,-100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,-100],"t":30},{"s":[100,-100],"t":60}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[85.86,19.21],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[64.45,42.48],"t":30},{"s":[64.45,42.48],"t":60}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[-129.87],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[-129.87],"t":30},{"s":[-129.87],"t":60}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.37,-0.1],[0.09,-0.03],[0.1,-0.03],[0.21,-0.04],[3.5,-0.28],[0.46,0.06],[-0.88,0.07],[-1.31,0.24],[-0.66,0.19],[-0.26,0.2],[0.07,0.18],[0.45,0.17],[0.33,0.08],[0.18,0.04],[0,0],[0.97,0.14],[0.92,0.11],[0,0],[0.27,0.02],[0.58,0.04],[0.32,0.02],[0.3,0.02],[0.49,0.04],[0.25,0.01],[-0.74,0.06],[-0.33,0],[-0.01,0],[-0.43,-0.02],[-0.42,-0.02],[-2.58,-0.4],[-0.92,-0.28],[-0.1,-0.04],[-0.06,-0.04],[0,0],[-0.08,-0.04],[-0.05,-0.04],[0.7,-0.3],[0.04,-0.02]],"o":[[-0.11,0.04],[-0.09,0.03],[-0.09,0.03],[-0.21,0.05],[-1.74,0.41],[-0.56,0.04],[-0.48,-0.07],[2.08,-0.18],[0.94,-0.18],[0.66,-0.19],[0.24,-0.18],[-0.1,-0.18],[-0.26,-0.08],[-0.16,-0.04],[0,0],[-0.77,-0.15],[-0.8,-0.12],[0,0],[-0.25,-0.03],[-0.53,-0.05],[-0.27,-0.02],[-0.34,-0.02],[-0.49,-0.04],[-0.21,-0.02],[-1.12,-0.04],[0.17,-0.01],[0.01,0],[0.54,0],[0.42,0.02],[4.1,0.24],[1.57,0.24],[0.12,0.04],[0.11,0.04],[0,0],[0.12,0.04],[0.08,0.04],[0.35,0.32],[-0.03,0.01],[0,0]],"v":[[18.07,3.36],[17.39,3.6],[17.14,3.68],[16.83,3.76],[16.24,3.91],[8.28,4.97],[6.34,5.03],[7.01,4.81],[12.33,4.18],[14.8,3.64],[16.22,3.06],[16.43,2.53],[15.58,2.01],[14.77,1.77],[14.29,1.66],[13.75,1.55],[11.19,1.12],[8.57,0.78],[7.83,0.7],[7.08,0.62],[5.47,0.47],[4.56,0.41],[3.58,0.35],[1.69,0.22],[1,0.18],[0.45,0.04],[0.96,0],[1.02,0],[2.45,0.03],[3.68,0.11],[13.82,1.09],[17.5,1.88],[17.89,1.99],[18.16,2.11],[18.15,2.11],[18.43,2.23],[18.64,2.36],[18.15,3.31],[18.07,3.36]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0.37,-1.29],[0.09,-0.34],[0.1,-0.33],[0.21,-0.54],[3.5,-3.47],[0.46,0.77],[-0.88,0.87],[-1.31,2.98],[-0.66,2.32],[-0.26,2.42],[0.07,2.19],[0.45,2.12],[0.33,0.94],[0.18,0.46],[0,0],[0.97,1.67],[0.92,1.37],[0,0],[0.27,0.3],[0.58,0.55],[0.32,0.26],[0.3,0.27],[0.49,0.46],[0.25,0.12],[-0.74,0.76],[-0.33,-0.02],[-0.01,0],[-0.43,-0.26],[-0.42,-0.3],[-2.58,-4.9],[-0.92,-3.41],[-0.1,-0.48],[-0.06,-0.5],[0,0],[-0.08,-0.51],[-0.05,-0.52],[0.7,-3.69],[0.04,-0.22]],"o":[[-0.11,0.51],[-0.09,0.32],[-0.09,0.34],[-0.21,0.65],[-1.74,5.08],[-0.56,0.52],[-0.48,-0.81],[2.08,-2.19],[0.94,-2.18],[0.66,-2.31],[0.24,-2.18],[-0.1,-2.19],[-0.26,-0.98],[-0.16,-0.48],[0,0],[-0.77,-1.83],[-0.8,-1.47],[0,0],[-0.25,-0.32],[-0.53,-0.61],[-0.27,-0.27],[-0.34,-0.24],[-0.49,-0.47],[-0.21,-0.21],[-1.12,-0.51],[0.17,-0.16],[0.01,0],[0.54,-0.04],[0.42,0.29],[4.1,2.99],[1.57,3.02],[0.12,0.47],[0.11,0.48],[0,0],[0.12,0.5],[0.08,0.51],[0.35,3.94],[-0.03,0.14],[0,0]],"v":[[18.07,41.49],[17.39,44.45],[17.14,45.45],[16.83,46.44],[16.24,48.28],[8.28,61.47],[6.34,62.15],[7.01,59.44],[12.33,51.72],[14.8,45.01],[16.22,37.89],[16.43,31.32],[15.58,24.85],[14.77,21.93],[14.29,20.5],[13.75,19.11],[11.19,13.83],[8.57,9.59],[7.83,8.6],[7.08,7.63],[5.47,5.82],[4.56,5.04],[3.58,4.31],[1.69,2.76],[1,2.26],[0.45,0.5],[0.96,0.01],[1.02,0.01],[2.45,0.41],[3.68,1.36],[13.82,13.48],[17.5,23.2],[17.89,24.6],[18.16,26.06],[18.15,26.04],[18.43,27.57],[18.64,29.12],[18.15,40.93],[18.07,41.49]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0.37,-1.29],[0.09,-0.34],[0.1,-0.33],[0.21,-0.54],[3.5,-3.47],[0.46,0.77],[-0.88,0.87],[-1.31,2.98],[-0.66,2.32],[-0.26,2.42],[0.07,2.19],[0.45,2.12],[0.33,0.94],[0.18,0.46],[0,0],[0.97,1.67],[0.92,1.37],[0,0],[0.27,0.3],[0.58,0.55],[0.32,0.26],[0.3,0.27],[0.49,0.46],[0.25,0.12],[-0.74,0.76],[-0.33,-0.02],[-0.01,0],[-0.43,-0.26],[-0.42,-0.3],[-2.58,-4.9],[-0.92,-3.41],[-0.1,-0.48],[-0.06,-0.5],[0,0],[-0.08,-0.51],[-0.05,-0.52],[0.7,-3.69],[0.04,-0.22]],"o":[[-0.11,0.51],[-0.09,0.32],[-0.09,0.34],[-0.21,0.65],[-1.74,5.08],[-0.56,0.52],[-0.48,-0.81],[2.08,-2.19],[0.94,-2.18],[0.66,-2.31],[0.24,-2.18],[-0.1,-2.19],[-0.26,-0.98],[-0.16,-0.48],[0,0],[-0.77,-1.83],[-0.8,-1.47],[0,0],[-0.25,-0.32],[-0.53,-0.61],[-0.27,-0.27],[-0.34,-0.24],[-0.49,-0.47],[-0.21,-0.21],[-1.12,-0.51],[0.17,-0.16],[0.01,0],[0.54,-0.04],[0.42,0.29],[4.1,2.99],[1.57,3.02],[0.12,0.47],[0.11,0.48],[0,0],[0.12,0.5],[0.08,0.51],[0.35,3.94],[-0.03,0.14],[0,0]],"v":[[18.07,41.49],[17.39,44.45],[17.14,45.45],[16.83,46.44],[16.24,48.28],[8.28,61.47],[6.34,62.15],[7.01,59.44],[12.33,51.72],[14.8,45.01],[16.22,37.89],[16.43,31.32],[15.58,24.85],[14.77,21.93],[14.29,20.5],[13.75,19.11],[11.19,13.83],[8.57,9.59],[7.83,8.6],[7.08,7.63],[5.47,5.82],[4.56,5.04],[3.58,4.31],[1.69,2.76],[1,2.26],[0.45,0.5],[0.96,0.01],[1.02,0.01],[2.45,0.41],[3.68,1.36],[13.82,13.48],[17.5,23.2],[17.89,24.6],[18.16,26.06],[18.15,26.04],[18.43,27.57],[18.64,29.12],[18.15,40.93],[18.07,41.49]]}],"t":60}]}},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.6,0.02],[-1.39,0.05],[-0.42,-0.07],[0.4,-0.02],[0.94,-0.05],[1.54,-0.03],[0.35,0],[0,0],[0.21,0],[0.5,0.02],[0.23,0.02],[0.15,0.03],[0.04,0.03],[-0.02,0.02],[-0.12,0.03],[0,0],[0,0],[-0.14,0.03],[-0.53,0.09],[-0.13,0.02],[-0.16,0.02],[-0.01,0.01],[-0.74,-0.05],[-0.08,-0.02],[0,0],[0.13,-0.03],[0.69,-0.15],[0,0],[0.08,-0.02],[0.02,-0.01],[-0.01,0],[-0.02,0],[-0.03,0],[0.01,0],[-0.06,0],[-0.08,0],[-0.22,0],[-0.25,0],[-0.49,0.01],[-0.06,0]],"o":[[0.27,-0.01],[1.39,-0.05],[0.22,-0.01],[0.44,0.07],[-0.97,0.05],[-1.38,0.08],[-0.35,0.01],[0,0],[-0.19,0],[-0.41,0],[-0.24,-0.01],[-0.24,-0.02],[-0.14,-0.02],[-0.04,-0.03],[0.06,-0.05],[0,0],[0,0],[0.12,-0.03],[0.47,-0.1],[0.12,-0.02],[0.11,-0.02],[0.07,-0.01],[0.07,-0.05],[0.16,0.01],[0,0],[0.35,0.05],[-0.66,0.15],[0,0],[-0.11,0.02],[-0.08,0.02],[-0.01,0.01],[0.01,0],[0.02,0],[0.03,0],[0.02,0],[0.05,0],[0.15,0],[0.2,0],[0.52,-0.01],[0.06,0],[0,0]],"v":[[9.35,4.9],[11.19,4.85],[15.29,4.7],[16.26,4.73],[16.31,4.88],[13.36,5.01],[8.87,5.14],[7.83,5.16],[7.3,5.16],[6.7,5.16],[5.34,5.14],[4.58,5.1],[4,5.03],[3.73,4.95],[3.72,4.87],[4.03,4.75],[4.21,4.71],[4.39,4.66],[4.77,4.58],[6.43,4.3],[6.69,4.22],[7.12,4.15],[7.29,4.12],[8.41,4.13],[8.89,4.16],[8.91,4.17],[8.75,4.27],[6.7,4.72],[6.38,4.78],[6.07,4.85],[5.92,4.9],[5.92,4.92],[5.95,4.93],[6.04,4.93],[6.06,4.93],[6.14,4.93],[6.34,4.93],[6.91,4.93],[7.66,4.92],[9.2,4.9],[9.35,4.9]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[-0.6,0.25],[-1.39,0.66],[-0.42,-0.81],[0.4,-0.25],[0.94,-0.64],[1.54,-0.35],[0.35,-0.05],[0,0],[0.21,0],[0.5,0.22],[0.23,0.24],[0.15,0.33],[0.04,0.35],[-0.02,0.29],[-0.12,0.42],[0,0],[0,0],[-0.14,0.35],[-0.53,1.16],[-0.13,0.3],[-0.16,0.22],[-0.01,0.12],[-0.74,-0.63],[-0.08,-0.19],[0,0],[0.13,-0.38],[0.69,-1.84],[0,0],[0.08,-0.24],[0.02,-0.18],[-0.01,-0.05],[-0.02,-0.02],[-0.03,0.01],[0.01,-0.04],[-0.06,-0.01],[-0.08,-0.02],[-0.22,0.02],[-0.25,0.03],[-0.49,0.08],[-0.06,0.01]],"o":[[0.27,-0.06],[1.39,-0.56],[0.22,-0.11],[0.44,0.83],[-0.97,0.59],[-1.38,0.95],[-0.35,0.08],[0,0],[-0.19,0.02],[-0.41,-0.01],[-0.24,-0.1],[-0.24,-0.24],[-0.14,-0.31],[-0.04,-0.37],[0.06,-0.57],[0,0],[0,0],[0.12,-0.35],[0.47,-1.19],[0.12,-0.27],[0.11,-0.25],[0.07,-0.09],[0.07,-0.56],[0.16,0.14],[0,0.01],[0.35,0.65],[-0.66,1.86],[0,0],[-0.11,0.28],[-0.08,0.24],[-0.01,0.09],[0.01,0.04],[0.02,0.02],[0.03,0],[0.02,0],[0.05,0],[0.15,0.03],[0.2,-0.01],[0.52,-0.09],[0.06,-0.01],[0,0]],"v":[[9.35,60.54],[11.19,59.99],[15.29,58.05],[16.26,58.51],[16.31,60.27],[13.36,61.88],[8.87,63.57],[7.83,63.76],[7.3,63.82],[6.7,63.85],[5.34,63.58],[4.58,63.05],[4,62.2],[3.73,61.2],[3.72,60.23],[4.03,58.76],[4.21,58.19],[4.39,57.65],[4.77,56.6],[6.43,53.16],[6.69,52.17],[7.12,51.28],[7.29,50.97],[8.41,51.06],[8.89,51.48],[8.91,51.51],[8.75,52.77],[6.7,58.31],[6.38,59.15],[6.07,59.96],[5.92,60.61],[5.92,60.82],[5.95,60.9],[6.04,60.91],[6.06,60.94],[6.14,60.92],[6.34,60.95],[6.91,60.97],[7.66,60.88],[9.2,60.62],[9.35,60.54]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[-0.6,0.25],[-1.39,0.66],[-0.42,-0.81],[0.4,-0.25],[0.94,-0.64],[1.54,-0.35],[0.35,-0.05],[0,0],[0.21,0],[0.5,0.22],[0.23,0.24],[0.15,0.33],[0.04,0.35],[-0.02,0.29],[-0.12,0.42],[0,0],[0,0],[-0.14,0.35],[-0.53,1.16],[-0.13,0.3],[-0.16,0.22],[-0.01,0.12],[-0.74,-0.63],[-0.08,-0.19],[0,0],[0.13,-0.38],[0.69,-1.84],[0,0],[0.08,-0.24],[0.02,-0.18],[-0.01,-0.05],[-0.02,-0.02],[-0.03,0.01],[0.01,-0.04],[-0.06,-0.01],[-0.08,-0.02],[-0.22,0.02],[-0.25,0.03],[-0.49,0.08],[-0.06,0.01]],"o":[[0.27,-0.06],[1.39,-0.56],[0.22,-0.11],[0.44,0.83],[-0.97,0.59],[-1.38,0.95],[-0.35,0.08],[0,0],[-0.19,0.02],[-0.41,-0.01],[-0.24,-0.1],[-0.24,-0.24],[-0.14,-0.31],[-0.04,-0.37],[0.06,-0.57],[0,0],[0,0],[0.12,-0.35],[0.47,-1.19],[0.12,-0.27],[0.11,-0.25],[0.07,-0.09],[0.07,-0.56],[0.16,0.14],[0,0.01],[0.35,0.65],[-0.66,1.86],[0,0],[-0.11,0.28],[-0.08,0.24],[-0.01,0.09],[0.01,0.04],[0.02,0.02],[0.03,0],[0.02,0],[0.05,0],[0.15,0.03],[0.2,-0.01],[0.52,-0.09],[0.06,-0.01],[0,0]],"v":[[9.35,60.54],[11.19,59.99],[15.29,58.05],[16.26,58.51],[16.31,60.27],[13.36,61.88],[8.87,63.57],[7.83,63.76],[7.3,63.82],[6.7,63.85],[5.34,63.58],[4.58,63.05],[4,62.2],[3.73,61.2],[3.72,60.23],[4.03,58.76],[4.21,58.19],[4.39,57.65],[4.77,56.6],[6.43,53.16],[6.69,52.17],[7.12,51.28],[7.29,50.97],[8.41,51.06],[8.89,51.48],[8.91,51.51],[8.75,52.77],[6.7,58.31],[6.38,59.15],[6.07,59.96],[5.92,60.61],[5.92,60.82],[5.95,60.9],[6.04,60.91],[6.06,60.94],[6.14,60.92],[6.34,60.95],[6.91,60.97],[7.66,60.88],[9.2,60.62],[9.35,60.54]]}],"t":60}]}},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.9569,0.9804,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.9569,0.9804,1],"t":30},{"s":[0.9569,0.9804,1],"t":60}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]}}],"ind":2}],"v":"5.7.0","fr":30,"op":60,"ip":0,"assets":[]} \ No newline at end of file diff --git a/public/visuals/airdropsAreSo2021.webp b/public/visuals/airdropsAreSo2021.webp new file mode 100644 index 00000000..e62668a5 Binary files /dev/null and b/public/visuals/airdropsAreSo2021.webp differ diff --git a/public/visuals/buildYourStarknetLand.webp b/public/visuals/buildYourStarknetLand.webp new file mode 100644 index 00000000..847cc529 Binary files /dev/null and b/public/visuals/buildYourStarknetLand.webp differ diff --git a/public/visuals/collectNFTsInStarknetQuest.webp b/public/visuals/collectNFTsInStarknetQuest.webp new file mode 100644 index 00000000..8380d970 Binary files /dev/null and b/public/visuals/collectNFTsInStarknetQuest.webp differ diff --git a/public/visuals/getYourStarkDomain.webp b/public/visuals/getYourStarkDomain.webp new file mode 100644 index 00000000..f462a40c Binary files /dev/null and b/public/visuals/getYourStarkDomain.webp differ diff --git a/public/visuals/inspiredByYourProject.webp b/public/visuals/inspiredByYourProject.webp new file mode 100644 index 00000000..fd011ff1 Binary files /dev/null and b/public/visuals/inspiredByYourProject.webp differ diff --git a/public/visuals/meaningfulRewards.webp b/public/visuals/meaningfulRewards.webp new file mode 100644 index 00000000..b3139857 Binary files /dev/null and b/public/visuals/meaningfulRewards.webp differ diff --git a/public/visuals/partnershipHeader.webp b/public/visuals/partnershipHeader.webp new file mode 100644 index 00000000..2d3c5e11 Binary files /dev/null and b/public/visuals/partnershipHeader.webp differ diff --git a/public/visuals/pointLottie.json b/public/visuals/pointLottie.json new file mode 100644 index 00000000..9cbdc023 --- /dev/null +++ b/public/visuals/pointLottie.json @@ -0,0 +1 @@ +{"ddd":0,"h":108,"w":2,"meta":{"g":"LottieFiles Figma v37"},"layers":[{"ty":4,"sr":1,"st":0,"op":151,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":120},{"s":[100,100],"t":150}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,107],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,107],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,107],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,107],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,107],"t":120},{"s":[1,107],"t":150}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[0],"t":150}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":120},{"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":150}]},"_render":true},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":120},{"s":[0.851,0.851,0.851],"t":150}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]},"_render":true}],"ind":1,"completed":true},{"ty":4,"sr":1,"st":0,"op":151,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":120},{"s":[100,100],"t":150}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,82],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,82],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,82],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,82],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,82],"t":120},{"s":[1,82],"t":150}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[0],"t":150}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":120},{"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":150}]},"_render":true},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":120},{"s":[0.851,0.851,0.851],"t":150}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]},"_render":true}],"ind":2,"completed":true},{"ty":4,"sr":1,"st":0,"op":151,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":120},{"s":[100,100],"t":150}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,55],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,55],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,55],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,55],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,55],"t":120},{"s":[1,55],"t":150}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[0],"t":150}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":120},{"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":150}]},"_render":true},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":120},{"s":[0.851,0.851,0.851],"t":150}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]},"_render":true}],"ind":3,"completed":true},{"ty":4,"sr":1,"st":0,"op":151,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":120},{"s":[100,100],"t":150}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,28],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,28],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,28],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,28],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,28],"t":120},{"s":[1,28],"t":150}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[0],"t":150}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":120},{"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":150}]},"_render":true},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":120},{"s":[0.851,0.851,0.851],"t":150}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]},"_render":true}],"ind":4,"completed":true},{"ty":4,"sr":1,"st":0,"op":151,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":120},{"s":[100,100],"t":150}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1,1],"t":120},{"s":[1,1],"t":150}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[0],"t":150}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":120},{"s":[100],"t":150}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":120},{"s":[{"c":true,"i":[[0.44999999999999996,0],[2,0.44999999999999996],[1.55,2],[0,1.55]],"o":[[1.55,0],[2,1.55],[0.44999999999999996,2],[0,0.44999999999999996]],"v":[[1,0],[2,1],[1,2],[0,1]]}],"t":150}]},"_render":true},{"ty":"fl","c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.851,0.851,0.851],"t":120},{"s":[0.851,0.851,0.851],"t":150}]},"r":1,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":60},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":90},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":120},{"s":[100],"t":150}]},"_render":true}],"ind":5,"completed":true}],"v":"5.7.0","fr":45,"op":150,"ip":0,"assets":[],"__complete":true} \ No newline at end of file diff --git a/public/visuals/rectangleLottie.json b/public/visuals/rectangleLottie.json new file mode 100644 index 00000000..356751e9 --- /dev/null +++ b/public/visuals/rectangleLottie.json @@ -0,0 +1 @@ +{"ddd":0,"h":10,"w":24,"meta":{"g":"LottieFiles Figma v38"},"layers":[{"ty":4,"sr":1,"st":0,"op":61,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":30},{"s":[5,5],"t":60}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"s":[100,100],"t":60}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":30},{"s":[5,5],"t":60}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"s":[0],"t":60}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":60}]}},{"ty":"st","lc":1,"lj":1,"ml":4,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]},"w":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1],"t":30},{"s":[1],"t":60}]},"c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.4,0.4,0.4353],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.4,0.4,0.4353],"t":30},{"s":[0.4,0.4,0.4353],"t":60}]}}],"ind":1},{"ty":4,"sr":1,"st":0,"op":61,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[5,5],"t":30},{"s":[5,5],"t":60}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":30},{"s":[100,100],"t":60}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[19,5],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[19,5],"t":30},{"s":[19,5],"t":60}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"s":[0],"t":60}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":30},{"s":[100],"t":60}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":30},{"s":[{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0,0],[10,0],[10,10],[0,10]]}],"t":60}]}},{"ty":"st","lc":1,"lj":1,"ml":4,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":30},{"s":[100],"t":60}]},"w":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1],"t":30},{"s":[1],"t":60}]},"c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.4,0.4,0.4353],"t":0},{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.4,0.4,0.4353],"t":30},{"s":[0.4,0.4,0.4353],"t":60}]}}],"ind":2}],"v":"5.7.0","fr":30,"op":60,"ip":0,"assets":[]} \ No newline at end of file diff --git a/public/visuals/starLottie.json b/public/visuals/starLottie.json new file mode 100644 index 00000000..0464164a --- /dev/null +++ b/public/visuals/starLottie.json @@ -0,0 +1 @@ +{"ddd":0,"h":9,"w":9,"meta":{"g":"LottieFiles Figma v38"},"layers":[{"ty":4,"sr":1,"st":0,"op":31,"ip":0,"hasMask":false,"ao":0,"ks":{"a":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[3.75,3.75],"t":0},{"s":[3.75,3.75],"t":30}]},"s":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100,100],"t":0},{"s":[100,100],"t":30}]},"p":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[4.75,4.75],"t":0},{"s":[4.75,4.75],"t":30}]},"r":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0],"t":0},{"s":[0],"t":30}]},"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"s":[100],"t":30}]}},"shapes":[{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":false,"i":[[0,7.5],[7.5,0]],"o":[[0,7.5],[7.5,0]],"v":[[0,7.5],[7.5,0]]}],"t":0},{"s":[{"c":false,"i":[[0,7.5],[7.5,0]],"o":[[0,7.5],[7.5,0]],"v":[[0,7.5],[7.5,0]]}],"t":30}]},"_render":true},{"ty":"sh","d":1,"ks":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[{"c":false,"i":[[0.5,0],[7.5,7.5]],"o":[[0.5,0],[7.5,7.5]],"v":[[0.5,0],[7.5,7.5]]}],"t":0},{"s":[{"c":false,"i":[[0.5,0],[7.5,7.5]],"o":[[0.5,0],[7.5,7.5]],"v":[[0.5,0],[7.5,7.5]]}],"t":30}]},"_render":true},{"ty":"st","lc":2,"lj":1,"ml":4,"o":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[100],"t":0},{"s":[0],"t":30}]},"w":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[1],"t":0},{"s":[1],"t":30}]},"c":{"a":1,"k":[{"o":{"x":0,"y":0},"i":{"x":0.58,"y":1},"s":[0.4,0.4,0.4353],"t":0},{"s":[0.4,0.4,0.4353],"t":30}]},"_render":true}],"ind":1,"completed":true}],"v":"5.7.0","fr":45,"op":30,"ip":0,"assets":[],"__complete":true} \ No newline at end of file diff --git a/public/visuals/sybilResistantMarketing.webp b/public/visuals/sybilResistantMarketing.webp new file mode 100644 index 00000000..b9f25a70 Binary files /dev/null and b/public/visuals/sybilResistantMarketing.webp differ diff --git a/styles/Home.module.css b/styles/Home.module.css index 9e6a1e81..9392f064 100644 --- a/styles/Home.module.css +++ b/styles/Home.module.css @@ -14,6 +14,7 @@ flex-direction: column; text-align: center; margin-top: 3rem; + overflow: hidden; } .questContainer { diff --git a/styles/components/animations.module.css b/styles/components/animations.module.css new file mode 100644 index 00000000..ceddc80a --- /dev/null +++ b/styles/components/animations.module.css @@ -0,0 +1,19 @@ +.slideInFromTop { + transform: translateY(-90px); + transition: 0.4s ease-in-out; + opacity: 0; +} + +.slideInFromTop.active { + transform: translateY(0); + opacity: 1; +} + +.fadeIn { + opacity: 0; + transition: 0.4s ease-in-out; +} + +.fadeIn.active { + opacity: 1; +} diff --git a/styles/components/box.module.css b/styles/components/box.module.css new file mode 100644 index 00000000..d40311df --- /dev/null +++ b/styles/components/box.module.css @@ -0,0 +1,11 @@ +.container { + border-radius: 8px; + background: linear-gradient(180deg, #29282b 0%, rgba(41, 40, 43, 0) 100%); + padding: 24px; + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} diff --git a/styles/components/pages/home/howToParticipate.module.css b/styles/components/pages/home/howToParticipate.module.css new file mode 100644 index 00000000..fe720ef7 --- /dev/null +++ b/styles/components/pages/home/howToParticipate.module.css @@ -0,0 +1,3 @@ +.stepsContainer { + position: relative; +} diff --git a/styles/components/shapes.module.css b/styles/components/shapes.module.css new file mode 100644 index 00000000..b4b45c10 --- /dev/null +++ b/styles/components/shapes.module.css @@ -0,0 +1,59 @@ +.shape { + stroke: var(--shapes); +} + +.crossContainer { + position: absolute; + left: 0; + bottom: 0; + right: 0; + top: 0; + z-index: -1; + display: flex; +} + +.crossContainer .side { + display: flex; + flex-direction: column; + position: absolute; + height: 100%; + width: 200px; + align-items: center; +} + +.crossContainer .cross { + margin: auto 0; +} + +.verticalBar { + position: absolute; + height: 100%; + width: 5px; + margin: auto; + transform: translateX(-50%); + opacity: 0.5; + background: linear-gradient(45deg, #70abee 0%, #6affaf 50%, #70abee 100%); + -webkit-mask-image: url("/masks/verticalBarMask.png"); + mask-image: url("/masks/verticalBarMask.png"); + -webkit-mask-repeat: repeat; + mask-repeat: repeat; +} + +.dots { + display: flex; + flex-direction: column; + width: 2px; + padding-top: -28px; +} + +.dot { + width: 2px; + height: 2px; + border-radius: 50%; + background-color: var(--shapes); + margin-top: 26px; +} + +.dot:first-child { + margin-top: 0; +} diff --git a/styles/components/stats.module.css b/styles/components/stats.module.css new file mode 100644 index 00000000..3347634a --- /dev/null +++ b/styles/components/stats.module.css @@ -0,0 +1,77 @@ +.title { + display: flex; + flex-direction: column; + justify-content: center; + color: var(--secondary); + /* Body/normal/bold */ + font-family: Sora; + font-size: 20px; + font-style: normal; + font-weight: 700; + line-height: 24px; + letter-spacing: 0.2px; +} + +.container { + display: flex; + padding: 40px 0px; + flex-direction: column; + align-items: flex-start; + gap: 32px; + align-self: stretch; + margin: 0 128px 64px; +} + +.elementsContainer { + display: flex; + align-items: flex-start; + gap: 48px; + align-self: stretch; + flex-wrap: wrap; +} + +.statElement { + flex: 1 0 0; + min-width: fit-content; + min-height: fit-content; +} + +@media screen and (max-width: 740px) { + .container { + margin: 0 24px 64px; + } +} + +.statValue { + display: flex; + flex-direction: column; + justify-content: center; + align-self: stretch; + text-align: center; + font-family: Sora; + font-size: 80px; + font-style: normal; + font-weight: 400; + line-height: 100%; + /* text gradient */ + background: linear-gradient(45deg, var(--primary), var(--tertiary)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + color: transparent; +} + +.statName { + display: flex; + flex-direction: column; + justify-content: center; + color: var(--secondary); + text-align: center; + + /* Body/default/regular */ + font-family: Sora; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 32px; +} diff --git a/styles/components/steps.module.css b/styles/components/steps.module.css new file mode 100644 index 00000000..20ed4f38 --- /dev/null +++ b/styles/components/steps.module.css @@ -0,0 +1,169 @@ +.container { + display: flex; + justify-content: center; +} + +.cards { + max-width: min(1000px, calc(100% - 32px)); + text-align: left; + margin-top: 42px; +} + +.card { + display: flex; + padding: 40px 64px 40px 0px; + gap: 56px; + border-radius: 30px; + background: linear-gradient(90deg, var(--background), #070708); + background-blend-mode: overlay; + position: relative; + margin-bottom: 40px; + margin-left: 112px; + height: 280px; +} + +.card::after { + content: ""; + position: absolute; + top: -10px; + right: -10px; + left: 0; + bottom: 0; + background: linear-gradient(5deg, var(--background) 80%, transparent); + border-radius: 30px; + z-index: -1; +} + +.card::before { + content: ""; + position: absolute; + top: -1px; + right: -1px; + left: 1px; + bottom: 1px; + background: linear-gradient( + 90deg, + #437aba 0%, + #59c2e8 45%, + #00ff77 60%, + #59c2e8 70%, + #437aba50 100% + ); + border-radius: 30px; + z-index: -1; +} + +.cardContainer:nth-child(even) .card::before { + background: linear-gradient( + 90deg, + #437aba 0%, + #1e74d6 45%, + #00fbff 60%, + #1e74d6 70%, + #437aba50 100% + ); +} + +.barsContainer { + transform: translateY(40px); +} + +.icon { + position: absolute; + border-radius: 50%; + width: 46px; + height: 46px; + z-index: 2; +} + +.title { + color: var(--secondary); + font-family: Sora; + font-size: 20px; + font-style: normal; + font-weight: 700; + line-height: 24px; + letter-spacing: 0.2px; + margin-bottom: 8px; +} + +.subtitle { + color: var(--primary); + font-family: Sora; + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: 100%; + margin-top: 8px; +} + +.subTitleBefore { + display: flex; + flex-direction: column-reverse; + align-items: flex-start; +} + +.subTitleBefore .subtitle { + margin-top: 0; + margin-bottom: 8px; +} + +.cardContainer:nth-child(even) .card .subtitle { + color: var(--tertiary); +} + +.description { + display: flex; + flex-direction: column; + align-self: stretch; + margin-top: 16px; + color: #f8f7f7; + font-family: Sora; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 25px; + opacity: 0.8; + max-width: 420px; +} + +.banner { + width: 250px; +} + +.verticalBarContainer { + position: absolute; + margin-left: 23px; + z-index: 1; + height: 274px; + transform: translateY(46px); +} + +@media (max-width: 950px) { + .cards { + max-width: min(400px, calc(100% - 16px)); + } + .card { + flex-direction: column; + padding: 40px; + height: unset; + margin-left: 0; + } + .icon { + display: none; + } + .banner { + width: 100%; + } + .verticalBarContainer { + display: none; + } +} + +.overlay { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} diff --git a/styles/components/titles.module.css b/styles/components/titles.module.css new file mode 100644 index 00000000..ab70fff0 --- /dev/null +++ b/styles/components/titles.module.css @@ -0,0 +1,156 @@ +.container { + position: relative; + padding: 22px 39px; + width: fit-content; + display: block; + margin: 0 auto; +} + +.mainTitleContainer { + padding-left: 0; +} + +.mainTitle { + display: flex; + width: 600px; + flex-direction: column; + color: #f4faff; + text-align: left; + /* Title/H1 */ + font-family: Sora; + font-size: 48px; + font-style: normal; + font-weight: 700; + line-height: 58px; +} + +.mainTitle strong { + /* text gradient */ + background: linear-gradient(45deg, var(--primary), var(--tertiary)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.mainSubtitle { + display: flex; + width: 487px; + flex-direction: column; + color: var(--secondary-700, #f4faff); + text-align: left; + font-family: Sora; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 32px; + margin-top: 32px; +} + +@media screen and (max-width: 950px) { + .mainTitle { + width: 100%; + font-size: 40px; + margin-top: 24px; + } + .mainSubtitle { + width: 100%; + font-size: 16px; + margin-top: 16px; + } + .corner { + display: none; + } +} + +@media screen and (max-width: 618px) { + .mainTitle { + width: 100%; + font-size: max(min(7vw, 34px), 24px); + line-height: max(8vw, 25px); + margin-top: 24px; + text-align: center; + } + .mainSubtitle { + width: 100%; + font-size: max(3vw, 16px); + margin-top: 16px; + line-height: max(4vw, 19px); + text-align: center; + } + .corner { + display: none; + } + .mainTitleContainer { + position: relative; + padding: 0; + width: fit-content; + display: block; + margin: 0 auto; + } + .squares { + display: none; + } +} + +.categoryTitle { + color: var(--secondary); + + /* Title/H2 */ + font-family: Sora; + font-size: 36px; + font-style: normal; + font-weight: 700; + line-height: 38px; + margin-top: 8px; +} + +.categorySubtitle { + color: var(--secondary); + /* Body/middle/regular */ + font-family: Sora; + font-size: 18px; + font-style: normal; + font-weight: 400; + line-height: 24px; + opacity: 0.8; +} + +.corner { + position: absolute; + top: 0; + left: 0; + width: 0; + height: 0; +} + +.corner.bottomLeft { + top: unset; + bottom: 0; + transform: rotate(-90deg); +} + +.corner.topRight { + left: unset; + right: 0; + transform: rotate(90deg); +} + +.squares { + position: absolute; + top: 0; + left: 0; + width: 0; + height: 0; +} + +.squares.bottomRight { + top: unset; + left: unset; + bottom: 0; + right: 0; +} + +.squares.bottomLeft { + top: unset; + left: 0; + bottom: 0; +} diff --git a/styles/globals.css b/styles/globals.css index 68150d58..f93e31c2 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -21,6 +21,7 @@ --background: #101012; --background600: #29282b; --nimiq-ease: cubic-bezier(0.25, 0, 0, 1); + --shapes: #66666f; } html, diff --git a/styles/partnership.module.css b/styles/partnership.module.css new file mode 100644 index 00000000..1b1203a8 --- /dev/null +++ b/styles/partnership.module.css @@ -0,0 +1,185 @@ +.screen { + z-index: 0; + position: relative; + background-color: var(--background600); + width: 100%; + overflow: hidden; +} + +.container { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + text-align: center; +} + +.stepsContainer { + position: relative; + width: fit-content; + display: block; + margin: 0 auto; +} + +.header { + width: 100%; + display: flex; + flex-direction: column; + position: relative; + height: 100vh; +} + +.headerContent { + display: flex; + padding: 0 128px; + z-index: 4; + width: 100%; + margin-top: 7vh; + height: 100%; +} + +.headerImg { + position: absolute; + right: -180px; + bottom: -260px; + z-index: -6; + width: min(900px, 70%); + aspect-ratio: 1; + transform: rotate3d(10, -2, -1.4, calc(var(--scroll) * 0.04deg)) + scale(min(calc(1 + var(--scroll) / 10000), 1.4)); +} + +.mainTitleContainer { + display: flex; + flex-direction: column; + justify-content: center; + position: relative; + transform: translateY(-45px); +} + +.mainTitleContainer h1 { + width: 100%; +} + +.divider { + width: 100vw; + position: absolute; + z-index: 4; + bottom: 0; + transform: translateY(calc(100% - 90px)); +} + +.dividerGradient { + bottom: 1px; + background: linear-gradient( + 90deg, + #437aba57 0%, + #1e74d6bf 45%, + #00ddff 60%, + #1e74d6ba 70%, + #437aba2d 100% + ); + width: 100%; + height: 90px; + mask: url("/utils/headerDivider.svg"); + mask-size: cover; + mask-repeat: no-repeat; + z-index: -3; +} + +.main { + background-color: var(--background); + width: 100vw; + z-index: 6; + margin: 0; +} + +.section { + width: 100%; + z-index: 6; +} + +.jediSwapLottie { + position: absolute; + bottom: 65px; + right: 185px; +} + +@media (max-width: 950px) { + .headerImg { + display: none; + } + .cross { + display: none; + } + .mainTitleContainer { + width: 100vw; + margin: 20px; + } + .header { + width: 100vw; + margin: 0; + } + .jediSwapLottie { + bottom: 45px; + right: 140px; + } +} + +@media (max-width: 800px) { + .headerContent { + padding: 0 0px; + } +} + +.partnerSection { + padding: 2rem 128px 2rem; + position: relative; +} + +.partnersContainer { + display: flex; + width: 100%; + margin-top: 2rem; + padding: 1rem; + flex-wrap: wrap; +} + +.partnersContainer img { + margin: auto; +} + +.cross1 { + position: absolute; + bottom: 120px; + left: 50%; + transform: translateX(-50%); +} + +.cross2 { + position: absolute; + right: -100px; + top: -100px; +} + +.dots1 { + position: absolute; + transform: translateY(-140px) translateX(-10px); +} + +.dots2 { + position: absolute; + transform: translateY(-60px) translateX(70px); +} + +@media screen and (max-width: 740px) { + .partnerSection { + padding: 2rem 24px 2rem; + } + .cross2 { + display: none; + } + .lastCrosses { + display: none; + } +} diff --git a/types/frontTypes.d.ts b/types/frontTypes.d.ts index 959b78f8..5f6dc8df 100644 --- a/types/frontTypes.d.ts +++ b/types/frontTypes.d.ts @@ -111,3 +111,15 @@ type AspectApiResult = { next_url: string; remainder?: AspectNftProps[]; }; + +type Step = { + title: string; + subtitle: string; + description: string; + icon: string; + banner: string; + overlay?: React.ReactNode; +}; + +type CornerStyle = "bottomRight" | "bottomLeft" | "topRight" | "topLeft"; +type SquareStyle = "bottomRight" | "bottomLeft" | "topRight" | "topLeft";