DO NOT USE THIS VERSION
diff --git a/Components/Card.js b/Components/Card.js
index dff4229..7e7b99d 100644
--- a/Components/Card.js
+++ b/Components/Card.js
@@ -9,13 +9,15 @@
 	render() {
 		return (
             <div className={Styles.card} style={{
-                backgroundImage:`linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`,
                 margin: "0"
             }}>
-                <img alt="" className={Styles.backgroundImage} src={`/Waves/${this.props.wave}.svg`} draggable={false} />
+                <div className={Styles.backgroundGradient} style={{
+                    backgroundImage: `linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`
+                }} />
+                <img alt="" className={Styles.backgroundImage} src={`https://assets.clicksminuteper.net/web/waves/card/${this.props.wave}.svg`} draggable={false} />
                 <div className={Styles.panel}>
                     <div className={Styles.titleContainer}>
-                        <img alt="Project icon" className={Styles.image} src={"/Icons/" + (this.props.icon ? this.props.icon : this.props.wave) + ".svg"} />
+                        <img alt="Project icon" className={Styles.image} src={"https://assets.clicksminuteper.net/" + (this.props.icon ? this.props.icon : this.props.wave) + ".svg"} />
                         <h1 className={Styles.title}>{this.props.title}</h1>
                     </div>
                     <p className={Styles.subtext}>{this.props.subtext}</p>
diff --git a/Components/Header.js b/Components/Header.js
index bd5c54e..d4650c6 100644
--- a/Components/Header.js
+++ b/Components/Header.js
@@ -11,9 +11,11 @@
     render() {
         return (
             <div className={Styles.header} style={{
-                backgroundImage: `linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`,
                 margin: "0"
             }} id={this.props.id ? this.props.id : null}>
+                <div className={Styles.backgroundGradient} style={{
+                    backgroundImage: `linear-gradient(69.44deg, #${this.props.gradient[0]} 0%, #${this.props.gradient[1]} 100%)`,
+                }} />
                 <Head>
                     <title>{this.props.nameOverwrite ? this.props.nameOverwrite : this.props.name} - Clicks Minute Per</title>
                     <meta name="title" content={this.props.name} />
@@ -25,7 +27,7 @@
                     <meta name="author" content="Clicks Minute Per" />
                     <meta name="og:author" content="Clicks Minute Per" />
                 </Head>
-                <img draggable={false} alt="" className={Styles.backgroundImage} src={`/Headers/${this.props.wave}.svg`} />
+                <img draggable={false} alt="" className={Styles.backgroundImage} src={`https://assets.clicksminuteper.net/${this.props.wave}.svg`} />
                 <div className={Styles.panel}>
                     <div className={Styles.titleContainer}>
                         <h1 className={Styles.title}>{this.props.name}</h1>
@@ -48,7 +50,7 @@
                     </div>
                 </div>
                 <span className={Styles.arrowSpan + " " + (this.props.hideArrow ? Styles.arrowHidden : null)} draggable={false}>
-                    <a href="#start" draggable={false}><img alt="Down arrow" src="/Arrow.svg" className={Styles.arrow} draggable={false} style={{
+                    <a href="#start" draggable={false}><img alt="Down arrow" src="https://assets.clicksminuteper.net/web/icons/arrow.svg" className={Styles.arrow} draggable={false} style={{
                         height: "49px", width: "87px"
                     }}/></a>
                 </span>
diff --git a/Components/NavBar.js b/Components/NavBar.js
index c838f28..b153f8c 100644
--- a/Components/NavBar.js
+++ b/Components/NavBar.js
@@ -54,11 +54,11 @@
             <>
                 <div ref={this.hoverSensor} className={this.isTouchDevice ? (Styles.container + " " + (this.state.isOpen ? Styles.containerOpen : null)) : Styles.containerDesktop + " " + Styles.container}>
                     <div className={Styles.group}>
-                        <img alt="CMP" className={Styles.headerIcon} src="/Icons/CMP.svg" onClick={() => {this.onClick()}}/>
-                        <a href="/#"><img alt="Home" className={Styles.icon} src="/Icons/Homepage.svg"/></a>
-                        <a href="/gps#"><img alt="GPS" className={Styles.icon} src="/Icons/GS.svg"/></a>
-                        <a href="/rsm#"><img alt="RSM" className={Styles.icon} src="/Icons/RM.svg"/></a>
-                        <a href="/clicksforms#"><img alt="ClicksForms" className={Styles.icon} src="/Icons/CF.svg"/></a>
+                        <img alt="CMP" className={Styles.headerIcon} src="https://assets.clicksminuteper.net/company/logo/normal.svg" onClick={() => {this.onClick()}}/>
+                        <a href="/#"><img alt="Home" className={Styles.icon} src="https://assets.clicksminuteper.net/web/icons/home.svg"/></a>
+                        <a href="/gps#"><img alt="GPS" className={Styles.icon} src="https://assets.clicksminuteper.net/bots/gps/normal.svg"/></a>
+                        <a href="/rsm#"><img alt="RSM" className={Styles.icon} src="https://assets.clicksminuteper.net/bots/rsm/normal.svg"/></a>
+                        <a href="/clicksforms#"><img alt="ClicksForms" className={Styles.icon} src="https://assets.clicksminuteper.net/bots/clicksforms/normal.svg"/></a>
                         {/* <a href="/castaway#"><img className={Styles.icon} src="/Icons/CA.svg"/></a> */}
                         {/* <a href="https://clcks.dev"><img className={Styles.icon} src="/Icons/CL.svg"/></a> */}
                     </div>
diff --git a/Components/ThemeChangeButton.js b/Components/ThemeChangeButton.js
index b4c80c8..baf55f0 100644
--- a/Components/ThemeChangeButton.js
+++ b/Components/ThemeChangeButton.js
@@ -1,8 +1,6 @@
 /** @jsxImportSource theme-ui */
 import { useColorMode } from 'theme-ui';
 import Styles from '../styles/navbar.module.css';
-import Light from '../public/light.svg';
-import Dark from '../public/dark.svg';
 import { useState, useEffect } from 'react';
 
 
@@ -21,7 +19,7 @@
                 setColorMode(colorMode === 'light' ? 'dark' : 'light');
             }}>
             {
-                !render ? null : (colorMode == 'light' ? <Light /> : <Dark />)
+                !render ? null : (colorMode == 'light' ? <img src="https://assets.clicksminuteper.net/web/icons/light.svg" /> : <img src="https://assets.clicksminuteper.net/web/icons/dark.svg" />)
             }
             </a>
         </header>
diff --git a/pages/404.js b/pages/404.js
index 0288183..c3dcdba 100644
--- a/pages/404.js
+++ b/pages/404.js
@@ -14,7 +14,7 @@
 				name="404"
 				subtext="Not Found"
 				gradient={["6576CC", "4B5899"]}
-				wave="Main"
+				wave="web/waves/header/cmp"
 				buttons={[
 					{color: "6576CC", buttonText: "ffffff", text: "Go Home", link: "/#"},
 					{color: "6576CC", buttonText: "ffffff", text: "Send Error",
diff --git a/pages/500.js b/pages/500.js
index 3750165..20d66ca 100644
--- a/pages/500.js
+++ b/pages/500.js
@@ -14,7 +14,7 @@
 				name="500"
 				subtext="Internal Server Error"
 				gradient={["6576CC", "4B5899"]}
-				wave="Main"
+				wave="web/waves/header/cmp"
 				buttons={[
 					{color: "6576CC", buttonText: "ffffff", text: "Go Home", link: "/#"},
 					{color: "6576CC", buttonText: "ffffff", text: "Send Error",
diff --git a/pages/_app.js b/pages/_app.js
index 46808d0..5eee980 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -27,7 +27,7 @@
                 cardText: '#424242',
                 cardBackground: 'rgba(0, 0, 0, 0.65)',
                 cardBorder: '#424242',
-                cardFilter: 'brightness(0.7)',
+                cardFilter: 'brightness(0.5)',
                 cardOverlay: '#42424280',
                 hint: '#101010',
             }
diff --git a/pages/castaway.js b/pages/castaway.js
index 3aa7411..0df3063 100644
--- a/pages/castaway.js
+++ b/pages/castaway.js
@@ -15,7 +15,7 @@
         name="Castaway"
         subtext="Stranded on Discord"
         gradient={["71AFE5", "78ECF2"]}
-        wave="CA"
+        wave="web/waves/header/castaway"
         buttons={[
           {color: "78ECF2", buttonText: "000000", link: "#timeline", text: "Timeline"}
         ]}
diff --git a/pages/clicksforms.js b/pages/clicksforms.js
index 68bd3e3..19bc048 100644
--- a/pages/clicksforms.js
+++ b/pages/clicksforms.js
@@ -13,7 +13,7 @@
         name="ClicksForms"
         subtext="Custom forms on Discord"
         gradient={["71AFE5", "6576CC"]}
-        wave="CF"
+        wave="web/waves/header/clicksforms"
         buttons={[
           {color: "6576CC", buttonText: "FFFFFF", link: "#features", text: "Features"},
           {color: "6576CC", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
@@ -34,21 +34,22 @@
             <img alt="Many question types"   src="/Features/ClicksForms/Types.svg" />
             <img alt="Easily view responses" src="/Features/ClicksForms/Responses.svg" />
           </TileRow>
-            <SectionHeading id="commands">Commands</SectionHeading>
-            <Paragraph><code>/accept</code>: Completes a form you are asked to fill in</Paragraph>
-            <Paragraph><code>/apply</code>: Apply to a form</Paragraph>
-            <Paragraph><code>/create</code>: Creates a new form</Paragraph>
-            <Paragraph><code>/download</code>: Downloads a form from a service e.g. Google Forms</Paragraph>
-            <Paragraph><code>/help</code>: Lists all commands</Paragraph>
-            <Paragraph><code>/responses</code>: Lets you view responses to your servers form</Paragraph>
-            <Paragraph><code>/manage</code>: Lets you manage your servers forms</Paragraph>
-            <SectionHeading id="services">Services</SectionHeading>
-            <Paragraph>ClicksForms support services like <a href="https://forms.google.com">Google Forms</a> through our Add-on</Paragraph>
-            <Paragraph>Our API is public. You can view it on <a href="https://clicksminuteper.github.io/docs/clicksforms">GitHub</a></Paragraph>
-            <SectionHeading id="invite">Invite</SectionHeading>
-            <CardRow>
-            <Card
-            wave="CF"
+          <SectionHeading id="commands">Commands</SectionHeading>
+          <Paragraph><code>/accept</code>: Completes a form you are asked to fill in</Paragraph>
+          <Paragraph><code>/apply</code>: Apply to a form</Paragraph>
+          <Paragraph><code>/create</code>: Creates a new form</Paragraph>
+          <Paragraph><code>/download</code>: Downloads a form from a service e.g. Google Forms</Paragraph>
+          <Paragraph><code>/help</code>: Lists all commands</Paragraph>
+          <Paragraph><code>/responses</code>: Lets you view responses to your servers form</Paragraph>
+          <Paragraph><code>/manage</code>: Lets you manage your servers forms</Paragraph>
+          <SectionHeading id="services">Services</SectionHeading>
+          <Paragraph>ClicksForms support services like <a href="https://forms.google.com">Google Forms</a> through our Add-on</Paragraph>
+          <Paragraph>Our API is public. You can view it on <a href="https://clicksminuteper.github.io/docs/clicksforms">GitHub</a></Paragraph>
+          <SectionHeading id="invite">Invite</SectionHeading>
+          <CardRow>
+          <Card
+            wave="clicksforms"
+            icon="bots/clicksforms/normal"
             buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
             title="Invite"
             subtext="Invite ClicksForms to your server"
@@ -56,7 +57,7 @@
               {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands", text: "Invite"}
             ]}
           />
-        </CardRow>
+          </CardRow>
         <SectionHeading>Legal</SectionHeading>
         <Paragraph>Our privacy policy can be viewed on <a href="https://clicksminuteper.net/clicksforms/privacy">GitHub</a></Paragraph>
       </AutoSpacing>
diff --git a/pages/clicksforms/form.js b/pages/clicksforms/form.js
index 8aa9f27..3912ca2 100644
--- a/pages/clicksforms/form.js
+++ b/pages/clicksforms/form.js
@@ -46,7 +46,7 @@
                     name={this.form.name}
                     subtext={this.form.description + (this.form.active ? '' : <><br />This form is not accepting responses. Please check back later</>)}
                     gradient={["71AFE5", "6576CC"]}
-                    wave="CF"
+                    wave="web/waves/header/clicksforms"
                     buttons={[]}
                 />
                 <div id="start" />
diff --git a/pages/gps.js b/pages/gps.js
index 178e68f..61dfea3 100644
--- a/pages/gps.js
+++ b/pages/gps.js
@@ -12,7 +12,7 @@
         name="GPS"
         subtext="Cards Against Humanity on Discord"
         gradient={["78ECF2", "71AFE5"]}
-        wave="GS"
+        wave="web/waves/header/gps"
         buttons={[
           {color: "71AFE5", buttonText: "FFFFFF", link: "#features", text: "Features"},
           {color: "71AFE5", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
@@ -24,39 +24,39 @@
         <SectionHeading id="features">Features</SectionHeading>
         <CardRow>
           <Card
-            icon="GPS/players"
+            icon="web/icons/gps/players"
             title="Lots of friends?"
             subtext="You probably don't have 50 friends - But if you did, you can play with every one of them at the same time"
-            wave="GS"
+            wave="gps"
             gradient={["78ECF2", "71AFE5"]}
           />
           <Card
-            icon="GPS/cards"
+            icon="web/icons/gps/cards"
             title="2000+ cards"
             subtext="Enjoy games with over 2000 cards, written for you to insult others"
-            wave="CF"
+            wave="clicksforms"
             gradient={["71AFE5", "6576CC"]}
           />
           <Card
-            icon="GPS/customisation"
+            icon="web/icons/gps/customisation"
             title="Customisation."
             subtext="Customise every setting of your game and be as pedantic as you wish"
-            wave="HY"
+            wave="hooky"
             gradient={["424242", "8D8D8D"]}
           />
           <Card
-            icon="GPS/time"
+            icon="web/icons/gps/time"
             title="Patience is a virtue"
             subtext="But you don't have a lot of it - Your friends may be slow at picking cards, but you don't have to live with it"
-            wave="RM"
+            wave="rsm"
             gradient={["F27878", "D96B6B"]}
           />
           <Card
-            icon="GPS/shuffles"
+            icon="web/icons/gps/shuffles"
             title="Shuffles"
             subtext={`Replace your worst cards with new ones because \"The bot is unfair
             and always gives me the worst cards and everyone else is better at the game than me\"`}
-            wave="CL"
+            wave="clcks"
             gradient={["C4C4C4", "8D8D8D"]}
           />
         </CardRow>
@@ -77,7 +77,8 @@
         <SectionHeading id="invite">Invite</SectionHeading>
         <CardRow>
           <Card
-            wave="GS"
+            wave="gps"
+            icon="bots/gps/normal"
             buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
             title="Invite"
             subtext="Invite GPS to your server"
diff --git a/pages/hooky.js b/pages/hooky.js
index 4eb42f1..de401b9 100644
--- a/pages/hooky.js
+++ b/pages/hooky.js
@@ -15,7 +15,7 @@
         name="Hooky"
         subtext="Webhook protection for Discord"
         gradient={["424242", "8D8D8D"]}
-        wave="CA"
+        wave="web/waves/header/hooky"
         buttons={[
           {color: "EDC575", buttonText: "000000", link: "#invite", text: "Invite"}
         ]}
@@ -25,7 +25,8 @@
         <SectionHeading id="invite">Invite</SectionHeading>
         <CardRow>
           <Card
-            wave="HY"
+            wave="hooky"
+            icon="bots/hooky/normal"
             buttonText={"000000"} gradient={["424242", "8D8D8D"]}
             title="Invite"
             subtext="Invite Hooky to your server"
diff --git a/pages/index.js b/pages/index.js
index 884c384..de0228d 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -14,7 +14,7 @@
         name="Clicks Minute Per"
         subtext="Custom Made Programs"
         gradient={["6576CC", "4B5899"]}
-        wave="Main"
+        wave="web/waves/header/cmp"
         buttons={[]}
       />
       <p id="start" />
@@ -22,7 +22,8 @@
         <SectionHeading>Projects</SectionHeading>
         <CardRow>
           <Card
-            wave="GS" title="GPS" subtext="Cards Against Humanity on Discord"
+            wave="gps" title="GPS" subtext="Cards Against Humanity on Discord"
+            icon="bots/gps/normal"
             buttons={[
               {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
               {color: "6576CC", link: "/gps", text: "About"}
@@ -30,7 +31,8 @@
             buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
           />
           <Card
-            wave="RM" title="RSM" subtext="Moderation Redefined"
+            wave="rsm" title="RSM" subtext="Moderation Redefined"
+            icon="bots/rsm/normal"
             buttons={[
               {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"},
               {color: "424242", link: "/rsm", text:"About"}
@@ -38,7 +40,8 @@
             buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
           />
           <Card
-            wave="CF" title="ClicksForms" subtext="Create custom forms for Discord"
+            wave="clicksforms" title="ClicksForms" subtext="Create custom forms for Discord"
+            icon="bots/clicksforms/normal"
             buttons={[
               {color: "775EBF", link: "https://clicksminuteper.github.io/docs/clicksforms", text:"API", newTab: true},
               {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"},
@@ -47,14 +50,16 @@
             buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
           />
           <Card
-            wave="CA" title="Castaway" subtext="Stranded on Discord"
+            wave="castaway" title="Castaway" subtext="Stranded on Discord"
+            icon="bots/castaway/normal"
             buttons={[
               {color: "F2D478", link: "/castaway", text: "About"}
             ]}
             buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
           />
           <Card
-            wave="HY" title="Hooky" subtext="Webhook protection for Discord"
+            wave="hooky" title="Hooky" subtext="Webhook protection for Discord"
+            icon="bots/hooky/normal"
             buttons={[
               {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"},
               {color: "EDC575", link: "/hooky", text: "About"}
@@ -62,7 +67,8 @@
             buttonText={"000000"} gradient={["424242", "8D8D8D"]}
           />
           <Card
-            wave="CL" title="Clcks" subtext="Clicks Minute Per web apps"
+            wave="clcks" title="Clcks" subtext="Clicks Minute Per web apps"
+            icon="web/icons/clcks"
             buttons={[
               {color: "78ECF2", link: "https://clcks.dev", text: "View Apps"
             }]}
@@ -72,14 +78,16 @@
         <SectionHeading>Code Bases</SectionHeading>
         <CardRow>
           <Card
-            wave="GH" title="GitHub" subtext="View our open source projects"
+            wave="github" title="GitHub" subtext="View our open source projects"
+            icon="web/icons/github"
             buttons={[
               {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"}
             ]}
             buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
           />
           <Card
-            wave="PY" title="PyPi" subtext="View our modules for python"
+            wave="pypi" title="PyPi" subtext="View our modules for python"
+            icon="web/icons/pypi"
             buttons={[
               {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
             ]}
@@ -89,9 +97,10 @@
         <SectionHeading>Socials</SectionHeading>
         <CardRow>
           <Card
-            wave="DS" title="Discord" subtext="Join our Discord server to talk with the community"
+            wave="discord" title="Discord" subtext="Join our Discord server to talk with the community"
+            icon="web/icons/discord"
             buttons={[
-              {color: "424242", link: "https://discord.gg/bPaNnxe", text: "Join"}
+              {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"}
             ]}
             buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
           />
diff --git a/pages/rsm.js b/pages/rsm.js
index 4c087ce..6038029 100644
--- a/pages/rsm.js
+++ b/pages/rsm.js
@@ -25,7 +25,7 @@
         name="RSM"
         subtext="Moderation Redefined"
         gradient={["F27878", "D96B6B"]}
-        wave="RM"
+        wave="web/waves/header/rsm"
         buttons={[
           {color: "424242", buttonText: "FFFFFF", link: "#features", text: "Features"},
           {color: "424242", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
@@ -88,14 +88,15 @@
         <Paragraph><code>m!unlock</code>: Unlocks the channel. Slowmode is removed and messages can be sent.</Paragraph>
         <SectionHeading id="invite">Invite</SectionHeading>
         <CardRow>
-        <Card
-      wave="RM"
-      buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
-      title="Invite"
-      subtext="Invite RSM to your server"
-      buttons={[
-          {color: "F27878", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"}
-      ]}
+          <Card
+            wave="rsm"
+            icon="bots/rsm/normal"
+            buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
+            title="Invite"
+            subtext="Invite RSM to your server"
+            buttons={[
+                {color: "F27878", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands", text: "Invite"}
+            ]}
           />
         </CardRow>
       </AutoSpacing>
diff --git a/pages/rsmv/failure.js b/pages/rsmv/failure.js
index caca7c5..3a3085c 100644
--- a/pages/rsmv/failure.js
+++ b/pages/rsmv/failure.js
@@ -12,7 +12,7 @@
                 name="Verification failed"
                 subtext={<p>Please try again, and if the error persists please contact us at <a href="mailto:verification@clicksminuteper.net" target="_blank" rel="noopener noreferrer">verification@clicksminuteper.net</a></p>}
                 gradient={["F27878", "D96B6B"]}
-                wave="RM"
+                wave="web/waves/header/rsm"
                 buttons={[]}
                 hideArrow={true}
             />
diff --git a/pages/rsmv/index.js b/pages/rsmv/index.js
index 231894c..62f49b5 100644
--- a/pages/rsmv/index.js
+++ b/pages/rsmv/index.js
@@ -67,7 +67,7 @@
                 nameOverwrite="Verify"
                 subtext={` ${this.props.memberCount} members`}
                 gradient={["F27878", "D96B6B"]}
-                wave="RM"
+                wave="web/waves/header/rsm"
                 buttons={[]}
             />
             <div id="start">
diff --git a/pages/rsmv/success.js b/pages/rsmv/success.js
index a1ed945..1d845af 100644
--- a/pages/rsmv/success.js
+++ b/pages/rsmv/success.js
@@ -13,7 +13,7 @@
                 name="Verified"
                 subtext="You can now close this tab or window."
                 gradient={["65CC76", "60B258"]}
-                wave="RM"
+                wave="web/waves/header/rsm"
                 buttons={[]}
                 hideArrow={true}
             />
diff --git a/pages/support.js b/pages/support.js
index 885c2fd..9cf5814 100644
--- a/pages/support.js
+++ b/pages/support.js
@@ -12,7 +12,7 @@
         name="Support"
         subtext="Get support for ClicksMinutePer products"
         gradient={["71AFE5", "6576CC"]}
-        wave="CF"
+        wave="web/waves/header/clicksforms"
         buttons={[]}
       />
       <AutoSpacing>
diff --git a/public/Arrow.svg b/public/Arrow.svg
deleted file mode 100644
index a8a93cb..0000000
--- a/public/Arrow.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="87" height="49" viewBox="0 0 87 49" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M46.7904 46.7905C44.8377 48.7431 41.6719 48.7431 39.7193 46.7905L1.53553 8.60672C-0.417088 6.6541 -0.417087 3.48828 1.53553 1.53565V1.53565C3.48816 -0.416967 6.65398 -0.416967 8.6066 1.53565L41.1335 34.0626C42.3051 35.2341 44.2046 35.2341 45.3762 34.0626L77.9031 1.53546C79.8557 -0.417175 83.0215 -0.417181 84.9741 1.53544V1.53544C86.9268 3.48806 86.9268 6.65388 84.9742 8.6065L46.7904 46.7905Z" fill="white"/>
-</svg>
diff --git a/public/Features/ClicksForms/Anonymous.svg b/public/Features/ClicksForms/Anonymous.svg
deleted file mode 100644
index b590b05..0000000
--- a/public/Features/ClicksForms/Anonymous.svg
+++ /dev/null
@@ -1,45 +0,0 @@
-<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<g opacity="0.25">
-<g clip-path="url(#clip0)">
-<circle cx="599.285" cy="445.285" r="353.474" stroke="#F27878" stroke-width="68.9695"/>
-<path d="M704.053 349.378C704.053 406.57 657.308 453.334 599.149 453.334C540.989 453.334 494.245 406.57 494.245 349.378C494.245 292.186 540.989 245.422 599.149 245.422C657.308 245.422 704.053 292.186 704.053 349.378Z" stroke="#F27878" stroke-width="68.9695"/>
-<path d="M844.74 738.149C844.74 686.344 818.866 636.66 772.809 600.027C726.752 563.395 664.285 542.815 599.15 542.815C534.016 542.815 471.549 563.395 425.492 600.027C379.435 636.66 353.561 686.344 353.561 738.149L427.237 738.149C427.237 701.885 445.35 667.107 477.59 641.464C509.83 615.821 553.556 601.416 599.15 601.416C644.744 601.416 688.471 615.821 720.711 641.464C752.951 667.107 771.063 701.885 771.063 738.149H844.74Z" fill="#F27878"/>
-</g>
-<rect x="206.578" y="759.947" width="1000.37" height="107.626" rx="53.8128" transform="rotate(-45 206.578 759.947)" fill="#F27878" stroke="#CCDCF3" stroke-width="38.6229"/>
-</g>
-<g filter="url(#filter1_d)">
-<path d="M159.621 361.895H104.543L93.0195 395H67.3359L121.047 252.812H143.215L197.023 395H171.242L159.621 361.895ZM111.477 341.973H152.688L132.082 282.988L111.477 341.973ZM228.273 289.336L228.957 301.543C236.77 292.103 247.023 287.383 259.719 287.383C281.724 287.383 292.922 299.98 293.312 325.176V395H269.582V326.543C269.582 319.837 268.117 314.889 265.188 311.699C262.323 308.444 257.603 306.816 251.027 306.816C241.457 306.816 234.328 311.146 229.641 319.805V395H205.91V289.336H228.273ZM313.137 341.191C313.137 330.84 315.188 321.53 319.289 313.262C323.391 304.928 329.152 298.548 336.574 294.121C343.996 289.629 352.525 287.383 362.16 287.383C376.418 287.383 387.974 291.973 396.828 301.152C405.747 310.332 410.565 322.507 411.281 337.676L411.379 343.242C411.379 353.659 409.361 362.969 405.324 371.172C401.353 379.375 395.624 385.723 388.137 390.215C380.715 394.707 372.121 396.953 362.355 396.953C347.447 396.953 335.5 392.005 326.516 382.109C317.596 372.148 313.137 358.9 313.137 342.363V341.191ZM336.867 343.242C336.867 354.115 339.113 362.643 343.605 368.828C348.098 374.948 354.348 378.008 362.355 378.008C370.363 378.008 376.581 374.883 381.008 368.633C385.5 362.383 387.746 353.236 387.746 341.191C387.746 330.514 385.435 322.051 380.812 315.801C376.255 309.551 370.038 306.426 362.16 306.426C354.413 306.426 348.26 309.518 343.703 315.703C339.146 321.823 336.867 331.003 336.867 343.242ZM453.469 289.336L454.152 301.543C461.965 292.103 472.219 287.383 484.914 287.383C506.919 287.383 518.117 299.98 518.508 325.176V395H494.777V326.543C494.777 319.837 493.312 314.889 490.383 311.699C487.518 308.444 482.798 306.816 476.223 306.816C466.652 306.816 459.523 311.146 454.836 319.805V395H431.105V289.336H453.469ZM579.738 361.016L601.223 289.336H626.516L584.523 411.016C578.078 428.789 567.141 437.676 551.711 437.676C548.26 437.676 544.452 437.09 540.285 435.918V417.559L544.777 417.852C550.767 417.852 555.259 416.745 558.254 414.531C561.314 412.383 563.723 408.737 565.48 403.594L568.898 394.512L531.789 289.336H557.375L579.738 361.016ZM662.551 289.336L663.234 300.371C670.656 291.712 680.812 287.383 693.703 287.383C707.831 287.383 717.499 292.786 722.707 303.594C730.389 292.786 741.197 287.383 755.129 287.383C766.783 287.383 775.441 290.605 781.105 297.051C786.835 303.496 789.764 313.001 789.895 325.566V395H766.164V326.25C766.164 319.544 764.699 314.629 761.77 311.504C758.84 308.379 753.99 306.816 747.219 306.816C741.815 306.816 737.388 308.281 733.938 311.211C730.552 314.076 728.176 317.852 726.809 322.539L726.906 395H703.176V325.469C702.85 313.034 696.503 306.816 684.133 306.816C674.628 306.816 667.889 310.69 663.918 318.438V395H640.188V289.336H662.551ZM809.816 341.191C809.816 330.84 811.867 321.53 815.969 313.262C820.07 304.928 825.832 298.548 833.254 294.121C840.676 289.629 849.204 287.383 858.84 287.383C873.098 287.383 884.654 291.973 893.508 301.152C902.427 310.332 907.245 322.507 907.961 337.676L908.059 343.242C908.059 353.659 906.04 362.969 902.004 371.172C898.033 379.375 892.303 385.723 884.816 390.215C877.395 394.707 868.801 396.953 859.035 396.953C844.126 396.953 832.18 392.005 823.195 382.109C814.276 372.148 809.816 358.9 809.816 342.363V341.191ZM833.547 343.242C833.547 354.115 835.793 362.643 840.285 368.828C844.777 374.948 851.027 378.008 859.035 378.008C867.043 378.008 873.26 374.883 877.688 368.633C882.18 362.383 884.426 353.236 884.426 341.191C884.426 330.514 882.115 322.051 877.492 315.801C872.935 309.551 866.717 306.426 858.84 306.426C851.092 306.426 844.94 309.518 840.383 315.703C835.826 321.823 833.547 331.003 833.547 343.242ZM992.141 384.648C985.174 392.852 975.279 396.953 962.453 396.953C950.995 396.953 942.303 393.6 936.379 386.895C930.52 380.189 927.59 370.488 927.59 357.793V289.336H951.32V357.5C951.32 370.911 956.887 377.617 968.02 377.617C979.543 377.617 987.323 373.483 991.359 365.215V289.336H1015.09V395H992.727L992.141 384.648ZM1098.49 366.289C1098.49 362.057 1096.73 358.835 1093.21 356.621C1089.76 354.408 1084 352.454 1075.93 350.762C1067.86 349.069 1061.12 346.921 1055.71 344.316C1043.87 338.587 1037.94 330.286 1037.94 319.414C1037.94 310.299 1041.78 302.682 1049.46 296.562C1057.15 290.443 1066.91 287.383 1078.76 287.383C1091.39 287.383 1101.58 290.508 1109.33 296.758C1117.14 303.008 1121.05 311.113 1121.05 321.074H1097.32C1097.32 316.517 1095.62 312.741 1092.24 309.746C1088.85 306.686 1084.36 305.156 1078.76 305.156C1073.55 305.156 1069.29 306.361 1065.97 308.77C1062.71 311.178 1061.09 314.401 1061.09 318.438C1061.09 322.083 1062.62 324.915 1065.68 326.934C1068.74 328.952 1074.92 331.003 1084.23 333.086C1093.54 335.104 1100.83 337.546 1106.11 340.41C1111.44 343.21 1115.38 346.595 1117.92 350.566C1120.53 354.538 1121.83 359.355 1121.83 365.02C1121.83 374.525 1117.89 382.24 1110.01 388.164C1102.13 394.023 1091.82 396.953 1079.05 396.953C1070.4 396.953 1062.68 395.391 1055.91 392.266C1049.14 389.141 1043.87 384.844 1040.09 379.375C1036.31 373.906 1034.43 368.014 1034.43 361.699H1057.47C1057.8 367.298 1059.91 371.628 1063.82 374.688C1067.73 377.682 1072.9 379.18 1079.35 379.18C1085.6 379.18 1090.35 378.008 1093.61 375.664C1096.86 373.255 1098.49 370.13 1098.49 366.289ZM409.719 568.746H352.492V629H327.785V486.812H418.117V506.734H352.492V549.02H409.719V568.746ZM428.859 575.191C428.859 564.84 430.91 555.53 435.012 547.262C439.113 538.928 444.875 532.548 452.297 528.121C459.719 523.629 468.247 521.383 477.883 521.383C492.141 521.383 503.697 525.973 512.551 535.152C521.47 544.332 526.288 556.507 527.004 571.676L527.102 577.242C527.102 587.659 525.083 596.969 521.047 605.172C517.076 613.375 511.346 619.723 503.859 624.215C496.438 628.707 487.844 630.953 478.078 630.953C463.169 630.953 451.223 626.005 442.238 616.109C433.319 606.148 428.859 592.9 428.859 576.363V575.191ZM452.59 577.242C452.59 588.115 454.836 596.643 459.328 602.828C463.82 608.948 470.07 612.008 478.078 612.008C486.086 612.008 492.303 608.883 496.73 602.633C501.223 596.383 503.469 587.236 503.469 575.191C503.469 564.514 501.158 556.051 496.535 549.801C491.978 543.551 485.76 540.426 477.883 540.426C470.135 540.426 463.983 543.518 459.426 549.703C454.868 555.823 452.59 565.003 452.59 577.242ZM602.492 545.016C599.367 544.495 596.145 544.234 592.824 544.234C581.952 544.234 574.628 548.401 570.852 556.734V629H547.121V523.336H569.777L570.363 535.152C576.092 525.973 584.035 521.383 594.191 521.383C597.577 521.383 600.376 521.839 602.59 522.75L602.492 545.016ZM639.797 523.336L640.48 534.371C647.902 525.712 658.059 521.383 670.949 521.383C685.077 521.383 694.745 526.786 699.953 537.594C707.635 526.786 718.443 521.383 732.375 521.383C744.029 521.383 752.688 524.605 758.352 531.051C764.081 537.496 767.01 547.001 767.141 559.566V629H743.41V560.25C743.41 553.544 741.945 548.629 739.016 545.504C736.086 542.379 731.236 540.816 724.465 540.816C719.061 540.816 714.634 542.281 711.184 545.211C707.798 548.076 705.422 551.852 704.055 556.539L704.152 629H680.422V559.469C680.096 547.034 673.749 540.816 661.379 540.816C651.874 540.816 645.135 544.69 641.164 552.438V629H617.434V523.336H639.797ZM850.734 600.289C850.734 596.057 848.977 592.835 845.461 590.621C842.01 588.408 836.249 586.454 828.176 584.762C820.103 583.069 813.365 580.921 807.961 578.316C796.112 572.587 790.188 564.286 790.188 553.414C790.188 544.299 794.029 536.682 801.711 530.562C809.393 524.443 819.159 521.383 831.008 521.383C843.638 521.383 853.827 524.508 861.574 530.758C869.387 537.008 873.293 545.113 873.293 555.074H849.562C849.562 550.517 847.87 546.741 844.484 543.746C841.099 540.686 836.607 539.156 831.008 539.156C825.799 539.156 821.535 540.361 818.215 542.77C814.96 545.178 813.332 548.401 813.332 552.438C813.332 556.083 814.862 558.915 817.922 560.934C820.982 562.952 827.167 565.003 836.477 567.086C845.786 569.104 853.078 571.546 858.352 574.41C863.69 577.21 867.629 580.595 870.168 584.566C872.772 588.538 874.074 593.355 874.074 599.02C874.074 608.525 870.135 616.24 862.258 622.164C854.38 628.023 844.061 630.953 831.301 630.953C822.642 630.953 814.927 629.391 808.156 626.266C801.385 623.141 796.112 618.844 792.336 613.375C788.56 607.906 786.672 602.014 786.672 595.699H809.719C810.044 601.298 812.16 605.628 816.066 608.688C819.973 611.682 825.148 613.18 831.594 613.18C837.844 613.18 842.596 612.008 845.852 609.664C849.107 607.255 850.734 604.13 850.734 600.289Z" fill="#F27878"/>
-</g>
-<path d="M137.27 164H130.307V124.806H83.5884V164H76.6816V82.2422H83.5884V118.966H130.307V82.2422H137.27V164ZM164.055 164H157.316V103.243H164.055V164ZM156.137 85.6675C156.137 84.3947 156.549 83.3278 157.373 82.4668C158.196 81.5684 159.319 81.1191 160.742 81.1191C162.164 81.1191 163.287 81.5684 164.111 82.4668C164.972 83.3278 165.402 84.3947 165.402 85.6675C165.402 86.9403 164.972 88.0072 164.111 88.8682C163.287 89.7292 162.164 90.1597 160.742 90.1597C159.319 90.1597 158.196 89.7292 157.373 88.8682C156.549 88.0072 156.137 86.9403 156.137 85.6675ZM179.665 133.06C179.665 123.626 181.761 116.121 185.954 110.543C190.184 104.928 195.912 102.12 203.137 102.12C211.335 102.12 217.587 105.358 221.892 111.834V77.75H228.574V164H222.285L222.004 155.914C217.699 162.053 211.372 165.123 203.024 165.123C196.024 165.123 190.371 162.315 186.066 156.7C181.799 151.048 179.665 143.43 179.665 133.846V133.06ZM186.459 134.239C186.459 141.988 188.013 148.109 191.12 152.601C194.227 157.056 198.607 159.283 204.26 159.283C212.533 159.283 218.41 155.633 221.892 148.333V119.808C218.41 111.909 212.57 107.96 204.372 107.96C198.719 107.96 194.321 110.187 191.176 114.642C188.032 119.059 186.459 125.592 186.459 134.239ZM269.79 165.123C264.624 165.123 259.944 163.85 255.751 161.305C251.596 158.759 248.358 155.222 246.037 150.692C243.716 146.125 242.556 141.015 242.556 135.362V132.948C242.556 127.108 243.679 121.848 245.925 117.169C248.208 112.49 251.372 108.821 255.415 106.163C259.458 103.468 263.837 102.12 268.554 102.12C275.929 102.12 281.769 104.647 286.074 109.701C290.416 114.717 292.587 121.586 292.587 130.309V134.071H249.238V135.362C249.238 142.25 251.203 147.997 255.134 152.601C259.102 157.168 264.081 159.452 270.07 159.452C273.664 159.452 276.827 158.797 279.56 157.486C282.33 156.176 284.838 154.08 287.084 151.197L291.296 154.398C286.354 161.548 279.186 165.123 269.79 165.123ZM268.554 107.848C263.5 107.848 259.233 109.701 255.751 113.407C252.307 117.113 250.211 122.092 249.462 128.343H285.905V127.613C285.718 121.773 284.052 117.019 280.908 113.351C277.763 109.682 273.645 107.848 268.554 107.848ZM372.717 156.307C368.674 162.184 362.216 165.123 353.344 165.123C346.868 165.123 341.945 163.251 338.576 159.508C335.207 155.727 333.485 150.149 333.41 142.774V103.243H340.092V141.932C340.092 153.5 344.772 159.283 354.13 159.283C363.863 159.283 370.021 155.259 372.604 147.21V103.243H379.343V164H372.829L372.717 156.307ZM433.249 148.558C433.249 145.226 431.901 142.55 429.206 140.528C426.548 138.507 422.524 136.935 417.133 135.812C411.743 134.651 407.55 133.341 404.555 131.881C401.598 130.383 399.389 128.568 397.929 126.434C396.507 124.3 395.795 121.717 395.795 118.685C395.795 113.893 397.798 109.944 401.804 106.837C405.809 103.692 410.938 102.12 417.189 102.12C423.965 102.12 429.393 103.805 433.474 107.174C437.591 110.506 439.65 114.867 439.65 120.257H432.912C432.912 116.701 431.415 113.744 428.42 111.385C425.463 109.027 421.719 107.848 417.189 107.848C412.772 107.848 409.216 108.84 406.521 110.824C403.863 112.77 402.534 115.316 402.534 118.46C402.534 121.493 403.638 123.851 405.847 125.536C408.093 127.183 412.154 128.699 418.032 130.084C423.946 131.469 428.364 132.948 431.284 134.52C434.241 136.092 436.431 137.983 437.854 140.191C439.276 142.4 439.987 145.077 439.987 148.221C439.987 153.35 437.91 157.449 433.754 160.519C429.637 163.588 424.246 165.123 417.583 165.123C410.507 165.123 404.761 163.42 400.344 160.013C395.964 156.569 393.774 152.227 393.774 146.986H400.512C400.774 150.917 402.421 153.986 405.454 156.195C408.523 158.366 412.566 159.452 417.583 159.452C422.262 159.452 426.043 158.422 428.925 156.363C431.808 154.304 433.249 151.703 433.249 148.558ZM478.676 165.123C473.51 165.123 468.831 163.85 464.638 161.305C460.483 158.759 457.245 155.222 454.924 150.692C452.603 146.125 451.442 141.015 451.442 135.362V132.948C451.442 127.108 452.565 121.848 454.812 117.169C457.095 112.49 460.258 108.821 464.301 106.163C468.344 103.468 472.724 102.12 477.441 102.12C484.816 102.12 490.655 104.647 494.96 109.701C499.303 114.717 501.474 121.586 501.474 130.309V134.071H458.125V135.362C458.125 142.25 460.09 147.997 464.021 152.601C467.989 157.168 472.967 159.452 478.957 159.452C482.551 159.452 485.714 158.797 488.447 157.486C491.217 156.176 493.725 154.08 495.971 151.197L500.183 154.398C495.241 161.548 488.072 165.123 478.676 165.123ZM477.441 107.848C472.387 107.848 468.12 109.701 464.638 113.407C461.194 117.113 459.098 122.092 458.349 128.343H494.792V127.613C494.605 121.773 492.939 117.019 489.794 113.351C486.65 109.682 482.532 107.848 477.441 107.848ZM542.634 108.971C541.211 108.709 539.695 108.578 538.085 108.578C533.893 108.578 530.336 109.757 527.417 112.115C524.534 114.436 522.475 117.824 521.24 122.279V164H514.558V103.243H521.127L521.24 112.901C524.796 105.714 530.505 102.12 538.366 102.12C540.238 102.12 541.717 102.363 542.802 102.85L542.634 108.971ZM559.704 103.243L559.929 113.631C562.212 109.888 565.057 107.043 568.464 105.096C571.87 103.112 575.633 102.12 579.75 102.12C586.264 102.12 591.112 103.954 594.294 107.623C597.476 111.292 599.086 116.795 599.123 124.132V164H592.441V124.076C592.403 118.648 591.243 114.605 588.959 111.947C586.713 109.289 583.101 107.96 578.122 107.96C573.967 107.96 570.279 109.27 567.06 111.891C563.878 114.474 561.52 117.974 559.985 122.391V164H553.303V103.243H559.704ZM654.882 164C654.208 162.091 653.778 159.264 653.591 155.521C651.232 158.591 648.219 160.968 644.55 162.652C640.919 164.299 637.063 165.123 632.983 165.123C627.143 165.123 622.408 163.495 618.776 160.238C615.183 156.981 613.386 152.863 613.386 147.884C613.386 141.97 615.838 137.29 620.742 133.846C625.683 130.402 632.552 128.68 641.35 128.68H653.535V121.773C653.535 117.431 652.187 114.024 649.492 111.554C646.834 109.046 642.941 107.792 637.812 107.792C633.133 107.792 629.258 108.989 626.188 111.385C623.119 113.781 621.584 116.664 621.584 120.033L614.846 119.977C614.846 115.147 617.092 110.973 621.584 107.455C626.076 103.898 631.598 102.12 638.149 102.12C644.925 102.12 650.259 103.823 654.152 107.23C658.083 110.599 660.104 115.316 660.217 121.38V150.13C660.217 156.008 660.834 160.406 662.07 163.326V164H654.882ZM633.769 159.171C638.261 159.171 642.267 158.085 645.786 155.914C649.342 153.743 651.925 150.842 653.535 147.21V133.846H641.518C634.817 133.921 629.576 135.156 625.795 137.552C622.014 139.911 620.124 143.167 620.124 147.323C620.124 150.729 621.378 153.556 623.886 155.802C626.432 158.048 629.726 159.171 633.769 159.171ZM684.306 103.243L684.531 113.126C686.777 109.457 689.584 106.706 692.954 104.872C696.323 103.037 700.066 102.12 704.184 102.12C713.767 102.12 719.851 106.051 722.434 113.912C724.605 110.131 727.506 107.23 731.137 105.208C734.768 103.15 738.774 102.12 743.154 102.12C756.181 102.12 762.826 109.233 763.088 123.458V164H756.35V123.963C756.312 118.535 755.133 114.511 752.812 111.891C750.528 109.27 746.785 107.96 741.582 107.96C736.752 108.035 732.672 109.607 729.34 112.677C726.009 115.709 724.156 119.415 723.781 123.795V164H717.043V123.458C717.006 118.255 715.77 114.38 713.337 111.834C710.941 109.251 707.235 107.96 702.219 107.96C697.989 107.96 694.357 109.177 691.325 111.61C688.293 114.006 686.047 117.581 684.587 122.335V164H677.849V103.243H684.306ZM803.686 165.123C798.52 165.123 793.841 163.85 789.648 161.305C785.493 158.759 782.255 155.222 779.934 150.692C777.613 146.125 776.452 141.015 776.452 135.362V132.948C776.452 127.108 777.575 121.848 779.821 117.169C782.105 112.49 785.268 108.821 789.311 106.163C793.354 103.468 797.734 102.12 802.451 102.12C809.825 102.12 815.665 104.647 819.97 109.701C824.313 114.717 826.484 121.586 826.484 130.309V134.071H783.134V135.362C783.134 142.25 785.1 147.997 789.03 152.601C792.998 157.168 797.977 159.452 803.967 159.452C807.561 159.452 810.724 158.797 813.457 157.486C816.227 156.176 818.735 154.08 820.981 151.197L825.192 154.398C820.251 161.548 813.082 165.123 803.686 165.123ZM802.451 107.848C797.397 107.848 793.129 109.701 789.648 113.407C786.204 117.113 784.108 122.092 783.359 128.343H819.802V127.613C819.615 121.773 817.949 117.019 814.804 113.351C811.66 109.682 807.542 107.848 802.451 107.848ZM875.954 148.558C875.954 145.226 874.606 142.55 871.911 140.528C869.253 138.507 865.229 136.935 859.838 135.812C854.448 134.651 850.255 133.341 847.26 131.881C844.303 130.383 842.094 128.568 840.634 126.434C839.212 124.3 838.5 121.717 838.5 118.685C838.5 113.893 840.503 109.944 844.509 106.837C848.514 103.692 853.643 102.12 859.895 102.12C866.67 102.12 872.098 103.805 876.179 107.174C880.297 110.506 882.355 114.867 882.355 120.257H875.617C875.617 116.701 874.12 113.744 871.125 111.385C868.168 109.027 864.424 107.848 859.895 107.848C855.477 107.848 851.921 108.84 849.226 110.824C846.568 112.77 845.239 115.316 845.239 118.46C845.239 121.493 846.343 123.851 848.552 125.536C850.798 127.183 854.86 128.699 860.737 130.084C866.652 131.469 871.069 132.948 873.989 134.52C876.946 136.092 879.136 137.983 880.559 140.191C881.981 142.4 882.692 145.077 882.692 148.221C882.692 153.35 880.615 157.449 876.459 160.519C872.342 163.588 866.951 165.123 860.288 165.123C853.212 165.123 847.466 163.42 843.049 160.013C838.669 156.569 836.479 152.227 836.479 146.986H843.217C843.479 150.917 845.126 153.986 848.159 156.195C851.228 158.366 855.271 159.452 860.288 159.452C864.967 159.452 868.748 158.422 871.63 156.363C874.513 154.304 875.954 151.703 875.954 148.558ZM940.361 150.018L941.372 155.24L942.719 149.737L957.319 103.243H963.046L977.478 149.344L979.05 155.746L980.341 149.85L992.807 103.243H999.77L982.082 164H976.354L960.744 115.821L960.014 112.508L959.284 115.877L943.955 164H938.227L920.595 103.243H927.502L940.361 150.018ZM1020.04 164H1013.3V103.243H1020.04V164ZM1012.12 85.6675C1012.12 84.3947 1012.54 83.3278 1013.36 82.4668C1014.18 81.5684 1015.31 81.1191 1016.73 81.1191C1018.15 81.1191 1019.27 81.5684 1020.1 82.4668C1020.96 83.3278 1021.39 84.3947 1021.39 85.6675C1021.39 86.9403 1020.96 88.0072 1020.1 88.8682C1019.27 89.7292 1018.15 90.1597 1016.73 90.1597C1015.31 90.1597 1014.18 89.7292 1013.36 88.8682C1012.54 88.0072 1012.12 86.9403 1012.12 85.6675ZM1048.79 87.689V103.243H1061.37V108.746H1048.79V149.232C1048.79 152.601 1049.39 155.109 1050.59 156.756C1051.82 158.403 1053.86 159.227 1056.71 159.227C1057.83 159.227 1059.65 159.04 1062.16 158.666L1062.44 164.168C1060.68 164.805 1058.28 165.123 1055.25 165.123C1050.64 165.123 1047.29 163.794 1045.2 161.136C1043.1 158.441 1042.05 154.492 1042.05 149.288V108.746H1030.88V103.243H1042.05V87.689H1048.79ZM1081.98 113.519C1084.19 109.888 1087.01 107.08 1090.46 105.096C1093.9 103.112 1097.66 102.12 1101.74 102.12C1108.26 102.12 1113.1 103.954 1116.29 107.623C1119.47 111.292 1121.08 116.795 1121.12 124.132V164H1114.43V124.076C1114.4 118.648 1113.24 114.605 1110.95 111.947C1108.71 109.289 1105.09 107.96 1100.11 107.96C1095.96 107.96 1092.27 109.27 1089.05 111.891C1085.87 114.474 1083.51 117.974 1081.98 122.391V164H1075.29V77.75H1081.98V113.519Z" fill="black"/>
-<path d="M50.3462 803V747.746H40.2949V742.243H50.3462V734.887C50.3462 728.673 51.9185 723.9 55.063 720.568C58.245 717.237 62.6623 715.571 68.3149 715.571C70.8605 715.571 73.2376 715.889 75.4463 716.525L74.9409 722.141C73.0692 721.691 71.029 721.467 68.8203 721.467C65.1143 721.467 62.2318 722.627 60.1729 724.948C58.1139 727.232 57.0845 730.489 57.0845 734.719V742.243H71.5718V747.746H57.0845V803H50.3462ZM79.8823 771.723C79.8823 765.883 81.0054 760.624 83.2515 755.944C85.535 751.265 88.7357 747.634 92.8535 745.051C97.0088 742.43 101.707 741.12 106.948 741.12C115.034 741.12 121.585 743.965 126.601 749.655C131.617 755.308 134.125 762.814 134.125 772.172V773.576C134.125 779.453 132.984 784.75 130.7 789.467C128.454 794.147 125.272 797.759 121.154 800.305C117.036 802.85 112.338 804.123 107.06 804.123C99.0116 804.123 92.4604 801.297 87.4067 795.644C82.3905 789.954 79.8823 782.43 79.8823 773.071V771.723ZM86.6206 773.576C86.6206 780.839 88.4924 786.809 92.2358 791.489C96.0168 796.131 100.958 798.452 107.06 798.452C113.125 798.452 118.028 796.131 121.772 791.489C125.553 786.809 127.443 780.651 127.443 773.015V771.723C127.443 767.081 126.582 762.832 124.86 758.977C123.138 755.121 120.724 752.145 117.617 750.048C114.51 747.915 110.953 746.848 106.948 746.848C100.958 746.848 96.0729 749.206 92.292 753.923C88.5111 758.602 86.6206 764.742 86.6206 772.341V773.576ZM176.127 747.971C174.705 747.709 173.189 747.578 171.579 747.578C167.386 747.578 163.83 748.757 160.91 751.115C158.028 753.436 155.969 756.824 154.733 761.279V803H148.051V742.243H154.621L154.733 751.901C158.29 744.714 163.999 741.12 171.86 741.12C173.732 741.12 175.21 741.363 176.296 741.85L176.127 747.971ZM263.613 773.239C263.613 782.71 261.516 790.235 257.324 795.812C253.131 801.353 247.516 804.123 240.478 804.123C232.167 804.123 225.804 801.203 221.386 795.363V826.359H214.704V742.243H220.937L221.274 750.834C225.654 744.358 231.999 741.12 240.31 741.12C247.572 741.12 253.262 743.872 257.38 749.375C261.535 754.877 263.613 762.514 263.613 772.285V773.239ZM256.875 772.06C256.875 764.311 255.284 758.19 252.102 753.698C248.92 749.206 244.484 746.96 238.793 746.96C234.676 746.96 231.138 747.952 228.181 749.936C225.223 751.92 222.958 754.803 221.386 758.583V787.727C222.996 791.208 225.298 793.866 228.293 795.7C231.288 797.535 234.825 798.452 238.906 798.452C244.558 798.452 248.957 796.206 252.102 791.713C255.284 787.184 256.875 780.633 256.875 772.06ZM306.625 747.971C305.203 747.709 303.687 747.578 302.077 747.578C297.884 747.578 294.328 748.757 291.408 751.115C288.526 753.436 286.467 756.824 285.231 761.279V803H278.549V742.243H285.119L285.231 751.901C288.788 744.714 294.497 741.12 302.358 741.12C304.23 741.12 305.708 741.363 306.794 741.85L306.625 747.971ZM324.819 803H318.081V742.243H324.819V803ZM316.901 724.667C316.901 723.395 317.313 722.328 318.137 721.467C318.96 720.568 320.083 720.119 321.506 720.119C322.928 720.119 324.051 720.568 324.875 721.467C325.736 722.328 326.167 723.395 326.167 724.667C326.167 725.94 325.736 727.007 324.875 727.868C324.051 728.729 322.928 729.16 321.506 729.16C320.083 729.16 318.96 728.729 318.137 727.868C317.313 727.007 316.901 725.94 316.901 724.667ZM362.048 793.735L380.522 742.243H387.429L364.743 803H359.296L336.499 742.243H343.405L362.048 793.735ZM435.944 803C435.271 801.091 434.84 798.264 434.653 794.521C432.294 797.591 429.281 799.968 425.612 801.652C421.981 803.299 418.125 804.123 414.045 804.123C408.205 804.123 403.47 802.495 399.838 799.238C396.245 795.981 394.448 791.863 394.448 786.884C394.448 780.97 396.9 776.29 401.804 772.846C406.745 769.402 413.614 767.68 422.412 767.68H434.597V760.773C434.597 756.431 433.249 753.024 430.554 750.554C427.896 748.046 424.003 746.792 418.874 746.792C414.195 746.792 410.32 747.989 407.25 750.385C404.181 752.781 402.646 755.664 402.646 759.033L395.908 758.977C395.908 754.147 398.154 749.973 402.646 746.455C407.138 742.898 412.66 741.12 419.211 741.12C425.987 741.12 431.321 742.823 435.214 746.23C439.145 749.599 441.167 754.316 441.279 760.38V789.13C441.279 795.008 441.896 799.406 443.132 802.326V803H435.944ZM414.831 798.171C419.323 798.171 423.329 797.085 426.848 794.914C430.404 792.743 432.987 789.842 434.597 786.21V772.846H422.58C415.879 772.921 410.638 774.156 406.857 776.552C403.076 778.911 401.186 782.167 401.186 786.323C401.186 789.729 402.44 792.556 404.948 794.802C407.494 797.048 410.788 798.171 414.831 798.171ZM469.692 726.689V742.243H482.27V747.746H469.692V788.232C469.692 791.601 470.291 794.109 471.489 795.756C472.724 797.403 474.764 798.227 477.609 798.227C478.732 798.227 480.548 798.04 483.056 797.666L483.337 803.168C481.577 803.805 479.182 804.123 476.149 804.123C471.545 804.123 468.194 802.794 466.098 800.136C464.002 797.441 462.954 793.492 462.954 788.288V747.746H451.779V742.243H462.954V726.689H469.692ZM519.724 804.123C514.558 804.123 509.878 802.85 505.686 800.305C501.53 797.759 498.292 794.222 495.971 789.692C493.65 785.125 492.49 780.015 492.49 774.362V771.948C492.49 766.108 493.613 760.848 495.859 756.169C498.142 751.49 501.306 747.821 505.349 745.163C509.392 742.468 513.771 741.12 518.488 741.12C525.863 741.12 531.703 743.647 536.008 748.701C540.35 753.717 542.521 760.586 542.521 769.309V773.071H499.172V774.362C499.172 781.25 501.137 786.997 505.068 791.601C509.036 796.168 514.015 798.452 520.004 798.452C523.598 798.452 526.761 797.797 529.494 796.486C532.264 795.176 534.772 793.08 537.019 790.197L541.23 793.398C536.289 800.548 529.12 804.123 519.724 804.123ZM518.488 746.848C513.435 746.848 509.167 748.701 505.686 752.407C502.242 756.113 500.145 761.092 499.396 767.343H535.839V766.613C535.652 760.773 533.986 756.019 530.842 752.351C527.697 748.682 523.579 746.848 518.488 746.848ZM591.093 803H584.355V742.243H591.093V803ZM583.176 724.667C583.176 723.395 583.588 722.328 584.411 721.467C585.235 720.568 586.358 720.119 587.78 720.119C589.203 720.119 590.326 720.568 591.149 721.467C592.01 722.328 592.441 723.395 592.441 724.667C592.441 725.94 592.01 727.007 591.149 727.868C590.326 728.729 589.203 729.16 587.78 729.16C586.358 729.16 585.235 728.729 584.411 727.868C583.588 727.007 583.176 725.94 583.176 724.667ZM615.8 742.243L616.025 752.631C618.308 748.888 621.153 746.043 624.56 744.096C627.967 742.112 631.729 741.12 635.847 741.12C642.36 741.12 647.208 742.954 650.39 746.623C653.572 750.292 655.182 755.795 655.219 763.132V803H648.537V763.076C648.5 757.648 647.339 753.605 645.056 750.947C642.81 748.289 639.197 746.96 634.218 746.96C630.063 746.96 626.376 748.27 623.156 750.891C619.974 753.474 617.616 756.974 616.081 761.391V803H609.399V742.243H615.8ZM677.456 803V747.746H667.404V742.243H677.456V734.887C677.456 728.673 679.028 723.9 682.172 720.568C685.354 717.237 689.772 715.571 695.424 715.571C697.97 715.571 700.347 715.889 702.556 716.525L702.05 722.141C700.179 721.691 698.138 721.467 695.93 721.467C692.224 721.467 689.341 722.627 687.282 724.948C685.223 727.232 684.194 730.489 684.194 734.719V742.243H698.681V747.746H684.194V803H677.456ZM706.992 771.723C706.992 765.883 708.115 760.624 710.361 755.944C712.644 751.265 715.845 747.634 719.963 745.051C724.118 742.43 728.816 741.12 734.057 741.12C742.143 741.12 748.694 743.965 753.71 749.655C758.727 755.308 761.235 762.814 761.235 772.172V773.576C761.235 779.453 760.093 784.75 757.81 789.467C755.563 794.147 752.382 797.759 748.264 800.305C744.146 802.85 739.448 804.123 734.169 804.123C726.121 804.123 719.57 801.297 714.516 795.644C709.5 789.954 706.992 782.43 706.992 773.071V771.723ZM713.73 773.576C713.73 780.839 715.602 786.809 719.345 791.489C723.126 796.131 728.068 798.452 734.169 798.452C740.234 798.452 745.138 796.131 748.881 791.489C752.662 786.809 754.553 780.651 754.553 773.015V771.723C754.553 767.081 753.692 762.832 751.97 758.977C750.248 755.121 747.833 752.145 744.726 750.048C741.619 747.915 738.063 746.848 734.057 746.848C728.068 746.848 723.182 749.206 719.401 753.923C715.62 758.602 713.73 764.742 713.73 772.341V773.576ZM803.237 747.971C801.814 747.709 800.298 747.578 798.688 747.578C794.496 747.578 790.939 748.757 788.02 751.115C785.137 753.436 783.078 756.824 781.843 761.279V803H775.161V742.243H781.73L781.843 751.901C785.399 744.714 791.108 741.12 798.969 741.12C800.841 741.12 802.32 741.363 803.405 741.85L803.237 747.971ZM820.026 742.243L820.251 752.126C822.497 748.457 825.305 745.706 828.674 743.872C832.043 742.037 835.786 741.12 839.904 741.12C849.488 741.12 855.571 745.051 858.154 752.912C860.325 749.131 863.226 746.23 866.857 744.208C870.489 742.15 874.494 741.12 878.874 741.12C891.901 741.12 898.546 748.233 898.808 762.458V803H892.07V762.963C892.032 757.535 890.853 753.511 888.532 750.891C886.249 748.27 882.505 746.96 877.302 746.96C872.473 747.035 868.392 748.607 865.061 751.677C861.729 754.709 859.876 758.415 859.501 762.795V803H852.763V762.458C852.726 757.255 851.49 753.38 849.057 750.834C846.661 748.251 842.955 746.96 837.939 746.96C833.709 746.96 830.078 748.177 827.045 750.61C824.013 753.006 821.767 756.581 820.307 761.335V803H813.569V742.243H820.026ZM954.23 803C953.557 801.091 953.126 798.264 952.939 794.521C950.581 797.591 947.567 799.968 943.898 801.652C940.267 803.299 936.411 804.123 932.331 804.123C926.491 804.123 921.756 802.495 918.125 799.238C914.531 795.981 912.734 791.863 912.734 786.884C912.734 780.97 915.186 776.29 920.09 772.846C925.031 769.402 931.901 767.68 940.698 767.68H952.883V760.773C952.883 756.431 951.535 753.024 948.84 750.554C946.182 748.046 942.289 746.792 937.16 746.792C932.481 746.792 928.606 747.989 925.537 750.385C922.467 752.781 920.932 755.664 920.932 759.033L914.194 758.977C914.194 754.147 916.44 749.973 920.932 746.455C925.424 742.898 930.946 741.12 937.497 741.12C944.273 741.12 949.607 742.823 953.5 746.23C957.431 749.599 959.453 754.316 959.565 760.38V789.13C959.565 795.008 960.183 799.406 961.418 802.326V803H954.23ZM933.117 798.171C937.609 798.171 941.615 797.085 945.134 794.914C948.69 792.743 951.273 789.842 952.883 786.21V772.846H940.866C934.165 772.921 928.924 774.156 925.144 776.552C921.363 778.911 919.472 782.167 919.472 786.323C919.472 789.729 920.726 792.556 923.234 794.802C925.78 797.048 929.074 798.171 933.117 798.171ZM987.978 726.689V742.243H1000.56V747.746H987.978V788.232C987.978 791.601 988.577 794.109 989.775 795.756C991.01 797.403 993.05 798.227 995.896 798.227C997.019 798.227 998.834 798.04 1001.34 797.666L1001.62 803.168C999.864 803.805 997.468 804.123 994.436 804.123C989.831 804.123 986.481 802.794 984.384 800.136C982.288 797.441 981.24 793.492 981.24 788.288V747.746H970.065V742.243H981.24V726.689H987.978ZM1022.01 803H1015.27V742.243H1022.01V803ZM1014.09 724.667C1014.09 723.395 1014.5 722.328 1015.32 721.467C1016.15 720.568 1017.27 720.119 1018.69 720.119C1020.12 720.119 1021.24 720.568 1022.06 721.467C1022.92 722.328 1023.35 723.395 1023.35 724.667C1023.35 725.94 1022.92 727.007 1022.06 727.868C1021.24 728.729 1020.12 729.16 1018.69 729.16C1017.27 729.16 1016.15 728.729 1015.32 727.868C1014.5 727.007 1014.09 725.94 1014.09 724.667ZM1036.61 771.723C1036.61 765.883 1037.73 760.624 1039.98 755.944C1042.26 751.265 1045.46 747.634 1049.58 745.051C1053.73 742.43 1058.43 741.12 1063.67 741.12C1071.76 741.12 1078.31 743.965 1083.32 749.655C1088.34 755.308 1090.85 762.814 1090.85 772.172V773.576C1090.85 779.453 1089.71 784.75 1087.42 789.467C1085.18 794.147 1082 797.759 1077.88 800.305C1073.76 802.85 1069.06 804.123 1063.78 804.123C1055.74 804.123 1049.18 801.297 1044.13 795.644C1039.11 789.954 1036.61 782.43 1036.61 773.071V771.723ZM1043.34 773.576C1043.34 780.839 1045.22 786.809 1048.96 791.489C1052.74 796.131 1057.68 798.452 1063.78 798.452C1069.85 798.452 1074.75 796.131 1078.5 791.489C1082.28 786.809 1084.17 780.651 1084.17 773.015V771.723C1084.17 767.081 1083.31 762.832 1081.58 758.977C1079.86 755.121 1077.45 752.145 1074.34 750.048C1071.23 747.915 1067.68 746.848 1063.67 746.848C1057.68 746.848 1052.8 749.206 1049.02 753.923C1045.23 758.602 1043.34 764.742 1043.34 772.341V773.576ZM1111.18 742.243L1111.4 752.631C1113.68 748.888 1116.53 746.043 1119.94 744.096C1123.34 742.112 1127.1 741.12 1131.22 741.12C1137.74 741.12 1142.58 742.954 1145.77 746.623C1148.95 750.292 1150.56 755.795 1150.6 763.132V803H1143.91V763.076C1143.88 757.648 1142.72 753.605 1140.43 750.947C1138.19 748.289 1134.57 746.96 1129.59 746.96C1125.44 746.96 1121.75 748.27 1118.53 750.891C1115.35 753.474 1112.99 756.974 1111.46 761.391V803H1104.77V742.243H1111.18Z" fill="black"/>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="37.3359" y="222.812" width="1114.49" height="438.141" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="15"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<clipPath id="clip0">
-<rect width="775.218" height="775.218" fill="white" transform="translate(211.326 57.3262)"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Buttons.svg b/public/Features/ClicksForms/Buttons.svg
deleted file mode 100644
index 813269b..0000000
--- a/public/Features/ClicksForms/Buttons.svg
+++ /dev/null
@@ -1,68 +0,0 @@
-<svg width="2444" height="1850" viewBox="0 0 2444 1850" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="2436" height="1842" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="0" width="2436" height="1842">
-<rect x="4" width="2436" height="1842" rx="100" fill="#181818"/>
-</mask>
-<g mask="url(#mask0)">
-<rect x="-159" y="865" width="846" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M157 925H-99V1181H157V925ZM115.547 1041.27L70.0758 995.803C63.7245 989.451 53.427 989.451 47.0758 995.803C40.7245 1002.15 40.7245 1012.45 47.0758 1018.8L65.0464 1036.77L-53.9531 1036.77C-62.7897 1036.77 -69.9531 1043.94 -69.9531 1052.77C-69.9531 1061.61 -62.7897 1068.77 -53.9531 1068.77L65.0474 1068.77L47.0757 1086.75C40.7245 1093.1 40.7245 1103.39 47.0757 1109.75C53.427 1116.1 63.7245 1116.1 70.0757 1109.75L115.547 1064.27C121.898 1057.92 121.898 1047.63 115.547 1041.27Z" fill="white"/>
-<path d="M330.828 1077.78C330.828 1071.87 328.753 1067.21 324.603 1063.79C320.452 1060.32 312.859 1057.05 301.824 1053.98C290.789 1050.85 282.732 1047.46 277.654 1043.79C270.428 1038.62 266.814 1031.83 266.814 1023.43C266.814 1015.28 270.159 1008.66 276.849 1003.58C283.587 998.458 292.181 995.895 302.63 995.895C309.71 995.895 316.033 997.262 321.6 999.996C327.215 1002.73 331.561 1006.54 334.637 1011.42C337.713 1016.3 339.251 1021.75 339.251 1027.75H330.169C330.169 1020.48 327.679 1014.64 322.698 1010.25C317.718 1005.81 311.028 1003.58 302.63 1003.58C294.476 1003.58 287.981 1005.42 283.147 1009.08C278.313 1012.69 275.896 1017.43 275.896 1023.29C275.896 1028.71 278.069 1033.13 282.415 1036.54C286.761 1039.96 293.719 1042.99 303.289 1045.63C312.859 1048.21 320.11 1050.92 325.042 1053.76C329.974 1056.54 333.685 1059.88 336.175 1063.79C338.665 1067.7 339.91 1072.31 339.91 1077.63C339.91 1086.03 336.541 1092.77 329.803 1097.85C323.113 1102.93 314.275 1105.46 303.289 1105.46C295.77 1105.46 288.86 1104.12 282.562 1101.44C276.312 1098.75 271.551 1094.99 268.279 1090.16C265.057 1085.32 263.445 1079.78 263.445 1073.53H272.454C272.454 1081.05 275.262 1086.98 280.877 1091.33C286.492 1095.67 293.963 1097.85 303.289 1097.85C311.59 1097.85 318.255 1096.02 323.284 1092.35C328.313 1088.69 330.828 1083.83 330.828 1077.78ZM376.165 1064.08L366.131 1073.75V1104H357.342V991.5H366.131V1063.5L374.407 1054.56L404.729 1024.75H415.789L382.171 1058.15L418.719 1104H408.245L376.165 1064.08ZM440.691 1104H431.902V1024.75H440.691V1104ZM430.364 1001.83C430.364 1000.17 430.901 998.775 431.976 997.652C433.05 996.48 434.515 995.895 436.37 995.895C438.226 995.895 439.69 996.48 440.765 997.652C441.888 998.775 442.449 1000.17 442.449 1001.83C442.449 1003.49 441.888 1004.88 440.765 1006C439.69 1007.12 438.226 1007.69 436.37 1007.69C434.515 1007.69 433.05 1007.12 431.976 1006C430.901 1004.88 430.364 1003.49 430.364 1001.83ZM528.289 1065.18C528.289 1077.54 525.555 1087.35 520.086 1094.62C514.617 1101.85 507.293 1105.46 498.113 1105.46C487.273 1105.46 478.973 1101.66 473.211 1094.04V1134.47H464.495V1024.75H472.625L473.064 1035.96C478.777 1027.51 487.054 1023.29 497.894 1023.29C507.366 1023.29 514.788 1026.88 520.159 1034.05C525.579 1041.23 528.289 1051.19 528.289 1063.94V1065.18ZM519.5 1063.64C519.5 1053.54 517.425 1045.55 513.274 1039.69C509.124 1033.83 503.338 1030.9 495.916 1030.9C490.545 1030.9 485.931 1032.2 482.073 1034.79C478.216 1037.37 475.262 1041.13 473.211 1046.07V1084.08C475.311 1088.62 478.313 1092.09 482.22 1094.48C486.126 1096.87 490.74 1098.07 496.062 1098.07C503.436 1098.07 509.173 1095.14 513.274 1089.28C517.425 1083.37 519.5 1074.83 519.5 1063.64Z" fill="white"/>
-<rect x="784" y="865" width="1015" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M844 925H1100V1181H844V925ZM1046.49 979.469C1052.74 985.717 1052.74 995.848 1046.49 1002.1L995.106 1053.48L1046.49 1104.86C1052.74 1111.11 1052.74 1121.24 1046.49 1127.49C1040.24 1133.74 1030.11 1133.74 1023.86 1127.49L972.478 1076.11L921.096 1127.49C914.848 1133.74 904.717 1133.74 898.469 1127.49C892.22 1121.24 892.22 1111.11 898.469 1104.86L949.851 1053.48L898.469 1002.1C892.22 995.848 892.22 985.717 898.469 979.469C904.717 973.22 914.848 973.22 921.096 979.469L972.478 1030.85L1023.86 979.469C1030.11 973.22 1040.24 973.22 1046.49 979.469Z" fill="white"/>
-<path d="M1288.99 1070.75C1287.77 1081.98 1283.74 1090.57 1276.9 1096.53C1270.12 1102.49 1261.06 1105.46 1249.73 1105.46C1241.82 1105.46 1234.81 1103.49 1228.71 1099.53C1222.66 1095.58 1217.97 1089.99 1214.65 1082.76C1211.33 1075.48 1209.64 1067.18 1209.59 1057.86V1044.01C1209.59 1034.54 1211.25 1026.14 1214.58 1018.82C1217.9 1011.5 1222.66 1005.86 1228.86 1001.9C1235.11 997.896 1242.29 995.895 1250.39 995.895C1261.82 995.895 1270.83 998.995 1277.42 1005.2C1284.06 1011.35 1287.92 1019.87 1288.99 1030.76H1279.91C1277.66 1012.64 1267.82 1003.58 1250.39 1003.58C1240.72 1003.58 1233.01 1007.2 1227.25 1014.42C1221.53 1021.65 1218.68 1031.64 1218.68 1044.38V1057.42C1218.68 1069.72 1221.46 1079.54 1227.03 1086.86C1232.64 1094.19 1240.21 1097.85 1249.73 1097.85C1259.16 1097.85 1266.26 1095.6 1271.04 1091.11C1275.83 1086.57 1278.78 1079.78 1279.91 1070.75H1288.99ZM1358.86 1104C1357.98 1101.51 1357.42 1097.82 1357.18 1092.94C1354.1 1096.94 1350.17 1100.04 1345.39 1102.24C1340.65 1104.39 1335.62 1105.46 1330.3 1105.46C1322.68 1105.46 1316.5 1103.34 1311.77 1099.09C1307.08 1094.84 1304.74 1089.47 1304.74 1082.98C1304.74 1075.26 1307.93 1069.16 1314.33 1064.67C1320.78 1060.18 1329.74 1057.93 1341.21 1057.93H1357.1V1048.92C1357.1 1043.26 1355.35 1038.81 1351.83 1035.59C1348.36 1032.32 1343.29 1030.68 1336.6 1030.68C1330.49 1030.68 1325.44 1032.25 1321.44 1035.37C1317.43 1038.5 1315.43 1042.26 1315.43 1046.65L1306.64 1046.58C1306.64 1040.28 1309.57 1034.83 1315.43 1030.25C1321.29 1025.61 1328.49 1023.29 1337.04 1023.29C1345.87 1023.29 1352.83 1025.51 1357.91 1029.95C1363.04 1034.35 1365.67 1040.5 1365.82 1048.41V1085.91C1365.82 1093.58 1366.63 1099.31 1368.24 1103.12V1104H1358.86ZM1331.32 1097.7C1337.18 1097.7 1342.41 1096.29 1347 1093.45C1351.64 1090.62 1355 1086.84 1357.1 1082.1V1064.67H1341.43C1332.69 1064.77 1325.85 1066.38 1320.92 1069.5C1315.99 1072.58 1313.53 1076.83 1313.53 1082.25C1313.53 1086.69 1315.16 1090.38 1318.43 1093.31C1321.75 1096.24 1326.05 1097.7 1331.32 1097.7ZM1397.61 1024.75L1397.9 1038.3C1400.88 1033.42 1404.59 1029.71 1409.03 1027.17C1413.48 1024.58 1418.38 1023.29 1423.75 1023.29C1432.25 1023.29 1438.57 1025.68 1442.72 1030.46C1446.88 1035.25 1448.97 1042.43 1449.02 1052V1104H1440.31V1051.92C1440.26 1044.84 1438.75 1039.57 1435.77 1036.1C1432.84 1032.64 1428.12 1030.9 1421.63 1030.9C1416.21 1030.9 1411.4 1032.61 1407.2 1036.03C1403.05 1039.4 1399.98 1043.97 1397.97 1049.73V1104H1389.26V1024.75H1397.61ZM1501.03 1098.07C1507.13 1098.07 1512.23 1096.36 1516.33 1092.94C1520.48 1089.47 1522.73 1085.01 1523.07 1079.54H1531.49C1531.25 1084.37 1529.74 1088.79 1526.95 1092.79C1524.17 1096.75 1520.46 1099.85 1515.82 1102.1C1511.23 1104.34 1506.3 1105.46 1501.03 1105.46C1490.62 1105.46 1482.37 1101.85 1476.27 1094.62C1470.21 1087.4 1467.19 1077.68 1467.19 1065.47V1062.84C1467.19 1055.03 1468.55 1048.12 1471.29 1042.11C1474.02 1036.1 1477.93 1031.47 1483.01 1028.19C1488.13 1024.92 1494.12 1023.29 1500.95 1023.29C1509.64 1023.29 1516.8 1025.88 1522.41 1031.05C1528.08 1036.23 1531.1 1043.04 1531.49 1051.49H1523.07C1522.68 1045.28 1520.43 1040.28 1516.33 1036.47C1512.28 1032.66 1507.15 1030.76 1500.95 1030.76C1493.04 1030.76 1486.89 1033.61 1482.5 1039.33C1478.15 1045.04 1475.98 1053.05 1475.98 1063.35V1065.91C1475.98 1076.02 1478.15 1083.91 1482.5 1089.57C1486.89 1095.24 1493.07 1098.07 1501.03 1098.07ZM1579.76 1105.46C1573.02 1105.46 1566.92 1103.8 1561.45 1100.48C1556.03 1097.16 1551.81 1092.55 1548.78 1086.64C1545.75 1080.68 1544.24 1074.02 1544.24 1066.65V1063.5C1544.24 1055.88 1545.7 1049.02 1548.63 1042.92C1551.61 1036.81 1555.74 1032.03 1561.01 1028.56C1566.28 1025.04 1572 1023.29 1578.15 1023.29C1587.77 1023.29 1595.39 1026.58 1601 1033.17C1606.67 1039.72 1609.5 1048.68 1609.5 1060.05V1064.96H1552.95V1066.65C1552.95 1075.63 1555.52 1083.13 1560.64 1089.13C1565.82 1095.09 1572.31 1098.07 1580.13 1098.07C1584.81 1098.07 1588.94 1097.21 1592.5 1095.5C1596.12 1093.79 1599.39 1091.06 1602.32 1087.3L1607.81 1091.48C1601.37 1100.8 1592.02 1105.46 1579.76 1105.46ZM1578.15 1030.76C1571.56 1030.76 1565.99 1033.17 1561.45 1038.01C1556.96 1042.84 1554.22 1049.34 1553.25 1057.49H1600.78V1056.54C1600.54 1048.92 1598.36 1042.72 1594.26 1037.94C1590.16 1033.15 1584.79 1030.76 1578.15 1030.76ZM1636.38 1104H1627.59V991.5H1636.38V1104Z" fill="white"/>
-<rect x="1896" y="865" width="816" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M2212 925H1956V1181H2212V925ZM2111.47 1034L2102.98 1025.52L2019.44 1109.07V1117.56H2027.93L2111.47 1034ZM2129.72 972.674C2131.48 970.922 2133.87 970 2136.18 970C2138.58 970 2140.88 970.83 2142.73 972.674L2164.3 994.254C2167.9 997.851 2167.9 1003.66 2164.3 1007.26L2147.43 1024.13L2112.85 989.551L2129.72 972.674ZM2001 1101.42L2102.98 999.419L2137.56 1034L2035.58 1136H2001V1101.42Z" fill="white"/>
-<path d="M2384.36 1052.88H2334.49V1096.38H2391.83V1104H2325.48V997.359H2391.47V1005.05H2334.49V1045.26H2384.36V1052.88ZM2403.85 1063.64C2403.85 1051.34 2406.58 1041.55 2412.05 1034.27C2417.57 1026.95 2425.04 1023.29 2434.46 1023.29C2445.15 1023.29 2453.31 1027.51 2458.92 1035.96V991.5H2467.64V1104H2459.44L2459.07 1093.45C2453.46 1101.46 2445.2 1105.46 2434.31 1105.46C2425.18 1105.46 2417.81 1101.8 2412.2 1094.48C2406.63 1087.11 2403.85 1077.17 2403.85 1064.67V1063.64ZM2412.71 1065.18C2412.71 1075.29 2414.73 1083.27 2418.79 1089.13C2422.84 1094.94 2428.55 1097.85 2435.93 1097.85C2446.72 1097.85 2454.38 1093.09 2458.92 1083.57V1046.36C2454.38 1036.06 2446.77 1030.9 2436.07 1030.9C2428.7 1030.9 2422.96 1033.81 2418.86 1039.62C2414.76 1045.38 2412.71 1053.9 2412.71 1065.18ZM2500.53 1104H2491.74V1024.75H2500.53V1104ZM2490.2 1001.83C2490.2 1000.17 2490.74 998.775 2491.81 997.652C2492.88 996.48 2494.35 995.895 2496.2 995.895C2498.06 995.895 2499.52 996.48 2500.6 997.652C2501.72 998.775 2502.28 1000.17 2502.28 1001.83C2502.28 1003.49 2501.72 1004.88 2500.6 1006C2499.52 1007.12 2498.06 1007.69 2496.2 1007.69C2494.35 1007.69 2492.88 1007.12 2491.81 1006C2490.74 1004.88 2490.2 1003.49 2490.2 1001.83ZM2538.03 1004.46V1024.75H2554.43V1031.93H2538.03V1084.74C2538.03 1089.13 2538.81 1092.4 2540.37 1094.55C2541.98 1096.7 2544.64 1097.77 2548.35 1097.77C2549.82 1097.77 2552.19 1097.53 2555.46 1097.04L2555.82 1104.22C2553.53 1105.05 2550.4 1105.46 2546.45 1105.46C2540.44 1105.46 2536.07 1103.73 2533.34 1100.26C2530.6 1096.75 2529.24 1091.6 2529.24 1084.81V1031.93H2514.66V1024.75H2529.24V1004.46H2538.03Z" fill="white"/>
-<rect x="-1055" y="1280" width="1312" height="376" rx="50" fill="black"/>
-<path d="M-625.523 1519V1412.36H-595.714C-586.974 1412.36 -579.137 1414.36 -572.203 1418.37C-565.27 1422.32 -559.874 1428.01 -556.017 1435.43C-552.11 1442.85 -550.157 1451.3 -550.157 1460.77V1470.59C-550.157 1480.11 -552.086 1488.56 -555.943 1495.93C-559.801 1503.3 -565.245 1508.99 -572.276 1512.99C-579.259 1517 -587.291 1519 -596.373 1519H-625.523ZM-616.515 1420.05V1511.38H-596.3C-585.069 1511.38 -576.061 1507.67 -569.273 1500.25C-562.486 1492.78 -559.093 1482.7 -559.093 1470V1460.63C-559.093 1448.37 -562.438 1438.56 -569.127 1431.18C-575.816 1423.81 -584.63 1420.1 -595.567 1420.05H-616.515ZM-498.595 1520.46C-505.333 1520.46 -511.437 1518.8 -516.905 1515.48C-522.325 1512.16 -526.549 1507.55 -529.576 1501.64C-532.604 1495.68 -534.117 1489.02 -534.117 1481.65V1478.5C-534.117 1470.88 -532.652 1464.02 -529.723 1457.92C-526.744 1451.81 -522.618 1447.03 -517.345 1443.56C-512.071 1440.04 -506.358 1438.29 -500.206 1438.29C-490.587 1438.29 -482.97 1441.58 -477.354 1448.17C-471.69 1454.72 -468.858 1463.68 -468.858 1475.05V1479.96H-525.401V1481.65C-525.401 1490.63 -522.838 1498.13 -517.711 1504.13C-512.535 1510.09 -506.041 1513.07 -498.229 1513.07C-493.541 1513.07 -489.415 1512.21 -485.851 1510.5C-482.237 1508.79 -478.966 1506.06 -476.036 1502.3L-470.543 1506.48C-476.988 1515.8 -486.339 1520.46 -498.595 1520.46ZM-500.206 1445.76C-506.798 1445.76 -512.364 1448.17 -516.905 1453.01C-521.397 1457.84 -524.132 1464.34 -525.108 1472.49H-477.574V1471.54C-477.818 1463.92 -479.991 1457.72 -484.093 1452.94C-488.194 1448.15 -493.565 1445.76 -500.206 1445.76ZM-404.332 1498.86C-404.332 1494.51 -406.09 1491.02 -409.605 1488.38C-413.072 1485.75 -418.321 1483.7 -425.353 1482.23C-432.384 1480.72 -437.853 1479.01 -441.759 1477.11C-445.616 1475.15 -448.497 1472.78 -450.401 1470C-452.257 1467.22 -453.185 1463.85 -453.185 1459.89C-453.185 1453.64 -450.572 1448.49 -445.348 1444.44C-440.123 1440.34 -433.434 1438.29 -425.279 1438.29C-416.441 1438.29 -409.361 1440.48 -404.039 1444.88C-398.668 1449.22 -395.982 1454.91 -395.982 1461.94H-404.771C-404.771 1457.31 -406.725 1453.45 -410.631 1450.37C-414.488 1447.3 -419.371 1445.76 -425.279 1445.76C-431.041 1445.76 -435.68 1447.05 -439.195 1449.64C-442.662 1452.18 -444.396 1455.5 -444.396 1459.6C-444.396 1463.56 -442.955 1466.63 -440.074 1468.83C-437.145 1470.98 -431.847 1472.96 -424.181 1474.76C-416.466 1476.57 -410.704 1478.5 -406.896 1480.55C-403.038 1482.6 -400.182 1485.06 -398.326 1487.95C-396.471 1490.83 -395.543 1494.32 -395.543 1498.42C-395.543 1505.11 -398.253 1510.46 -403.673 1514.46C-409.044 1518.46 -416.075 1520.46 -424.767 1520.46C-433.995 1520.46 -441.49 1518.24 -447.252 1513.8C-452.965 1509.31 -455.821 1503.64 -455.821 1496.81H-447.032C-446.69 1501.93 -444.542 1505.94 -440.587 1508.82C-436.583 1511.65 -431.31 1513.07 -424.767 1513.07C-418.663 1513.07 -413.731 1511.72 -409.972 1509.04C-406.212 1506.35 -404.332 1502.96 -404.332 1498.86ZM-346.471 1513.07C-340.367 1513.07 -335.265 1511.36 -331.163 1507.94C-327.013 1504.47 -324.767 1500.01 -324.425 1494.54H-316.002C-316.246 1499.37 -317.76 1503.79 -320.543 1507.79C-323.326 1511.75 -327.037 1514.85 -331.676 1517.1C-336.266 1519.34 -341.197 1520.46 -346.471 1520.46C-356.871 1520.46 -365.123 1516.85 -371.227 1509.62C-377.281 1502.4 -380.309 1492.68 -380.309 1480.47V1477.84C-380.309 1470.03 -378.941 1463.12 -376.207 1457.11C-373.473 1451.1 -369.566 1446.47 -364.488 1443.19C-359.361 1439.92 -353.38 1438.29 -346.544 1438.29C-337.853 1438.29 -330.699 1440.88 -325.084 1446.05C-319.42 1451.23 -316.393 1458.04 -316.002 1466.49H-324.425C-324.815 1460.28 -327.062 1455.28 -331.163 1451.47C-335.216 1447.66 -340.343 1445.76 -346.544 1445.76C-354.454 1445.76 -360.606 1448.61 -365.001 1454.33C-369.347 1460.04 -371.52 1468.05 -371.52 1478.35V1480.91C-371.52 1491.02 -369.347 1498.91 -365.001 1504.57C-360.606 1510.24 -354.43 1513.07 -346.471 1513.07ZM-261.803 1447.22C-263.658 1446.88 -265.636 1446.71 -267.735 1446.71C-273.204 1446.71 -277.843 1448.25 -281.651 1451.32C-285.411 1454.35 -288.097 1458.77 -289.708 1464.58V1519H-298.424V1439.75H-289.854L-289.708 1452.35C-285.069 1442.97 -277.623 1438.29 -267.369 1438.29C-264.928 1438.29 -262.999 1438.6 -261.583 1439.24L-261.803 1447.22ZM-238.072 1519H-246.861V1439.75H-238.072V1519ZM-248.399 1416.83C-248.399 1415.17 -247.862 1413.78 -246.788 1412.65C-245.714 1411.48 -244.249 1410.89 -242.394 1410.89C-240.538 1410.89 -239.073 1411.48 -237.999 1412.65C-236.876 1413.78 -236.314 1415.17 -236.314 1416.83C-236.314 1418.49 -236.876 1419.88 -237.999 1421C-239.073 1422.12 -240.538 1422.69 -242.394 1422.69C-244.249 1422.69 -245.714 1422.12 -246.788 1421C-247.862 1419.88 -248.399 1418.49 -248.399 1416.83ZM-150.475 1480.18C-150.475 1492.54 -153.209 1502.35 -158.678 1509.62C-164.146 1516.85 -171.471 1520.46 -180.65 1520.46C-191.49 1520.46 -199.791 1516.66 -205.553 1509.04V1549.47H-214.269V1439.75H-206.139L-205.699 1450.96C-199.986 1442.51 -191.71 1438.29 -180.87 1438.29C-171.397 1438.29 -163.976 1441.88 -158.604 1449.05C-153.185 1456.23 -150.475 1466.19 -150.475 1478.94V1480.18ZM-159.264 1478.64C-159.264 1468.54 -161.339 1460.55 -165.489 1454.69C-169.64 1448.83 -175.426 1445.9 -182.848 1445.9C-188.219 1445.9 -192.833 1447.2 -196.69 1449.79C-200.548 1452.37 -203.502 1456.13 -205.553 1461.07V1499.08C-203.453 1503.62 -200.45 1507.09 -196.544 1509.48C-192.638 1511.87 -188.023 1513.07 -182.701 1513.07C-175.328 1513.07 -169.591 1510.14 -165.489 1504.28C-161.339 1498.37 -159.264 1489.83 -159.264 1478.64ZM-117.369 1419.46V1439.75H-100.963V1446.93H-117.369V1499.74C-117.369 1504.13 -116.588 1507.4 -115.025 1509.55C-113.414 1511.7 -110.753 1512.77 -107.042 1512.77C-105.577 1512.77 -103.209 1512.53 -99.9375 1512.04L-99.5713 1519.22C-101.866 1520.05 -104.991 1520.46 -108.946 1520.46C-114.952 1520.46 -119.322 1518.73 -122.057 1515.26C-124.791 1511.75 -126.158 1506.6 -126.158 1499.81V1446.93H-140.733V1439.75H-126.158V1419.46H-117.369ZM-72.9844 1519H-81.7734V1439.75H-72.9844V1519ZM-83.3115 1416.83C-83.3115 1415.17 -82.7744 1413.78 -81.7002 1412.65C-80.626 1411.48 -79.1611 1410.89 -77.3057 1410.89C-75.4502 1410.89 -73.9854 1411.48 -72.9111 1412.65C-71.7881 1413.78 -71.2266 1415.17 -71.2266 1416.83C-71.2266 1418.49 -71.7881 1419.88 -72.9111 1421C-73.9854 1422.12 -75.4502 1422.69 -77.3057 1422.69C-79.1611 1422.69 -80.626 1422.12 -81.7002 1421C-82.7744 1419.88 -83.3115 1418.49 -83.3115 1416.83ZM-53.9414 1478.2C-53.9414 1470.59 -52.4766 1463.73 -49.5469 1457.62C-46.5684 1451.52 -42.3936 1446.78 -37.0225 1443.41C-31.6025 1440 -25.4746 1438.29 -18.6387 1438.29C-8.0918 1438.29 0.453125 1442 6.99609 1449.42C13.5391 1456.79 16.8105 1466.58 16.8105 1478.79V1480.62C16.8105 1488.29 15.3213 1495.2 12.3428 1501.35C9.41309 1507.45 5.2627 1512.16 -0.108398 1515.48C-5.47949 1518.8 -11.6074 1520.46 -18.4922 1520.46C-28.9902 1520.46 -37.5352 1516.78 -44.127 1509.41C-50.6699 1501.98 -53.9414 1492.17 -53.9414 1479.96V1478.2ZM-45.1523 1480.62C-45.1523 1490.09 -42.7109 1497.88 -37.8281 1503.99C-32.8965 1510.04 -26.4512 1513.07 -18.4922 1513.07C-10.582 1513.07 -4.18555 1510.04 0.697266 1503.99C5.62891 1497.88 8.09473 1489.85 8.09473 1479.89V1478.2C8.09473 1472.15 6.97168 1466.61 4.72559 1461.58C2.47949 1456.55 -0.669922 1452.67 -4.72266 1449.93C-8.77539 1447.15 -13.4141 1445.76 -18.6387 1445.76C-26.4512 1445.76 -32.8232 1448.83 -37.7549 1454.99C-42.6865 1461.09 -45.1523 1469.1 -45.1523 1479.01V1480.62ZM43.3242 1439.75L43.6172 1453.3C46.5957 1448.42 50.3066 1444.71 54.75 1442.17C59.1934 1439.58 64.1006 1438.29 69.4717 1438.29C77.9678 1438.29 84.291 1440.68 88.4414 1445.46C92.5918 1450.25 94.6914 1457.43 94.7402 1467V1519H86.0244V1466.92C85.9756 1459.84 84.4619 1454.57 81.4834 1451.1C78.5537 1447.64 73.8418 1445.9 67.3477 1445.9C61.9277 1445.9 57.1182 1447.61 52.9189 1451.03C48.7686 1454.4 45.6924 1458.97 43.6904 1464.73V1519H34.9746V1439.75H43.3242Z" fill="white"/>
-<rect x="354" y="1280" width="849" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M414 1340H670V1596H414V1340ZM491.047 1433.12L448.777 1418.35V1398.13L512.146 1424.68V1441.78L448.777 1468.41V1448.11L491.047 1433.12ZM649.047 1464.96H539.047V1477.3H649.047V1464.96Z" fill="white"/>
-<path d="M855.84 1420.05H819.292V1519H810.283V1420.05H773.809V1412.36H855.84V1420.05ZM880.889 1519H872.1V1439.75H880.889V1519ZM870.562 1416.83C870.562 1415.17 871.099 1413.78 872.173 1412.65C873.247 1411.48 874.712 1410.89 876.567 1410.89C878.423 1410.89 879.888 1411.48 880.962 1412.65C882.085 1413.78 882.646 1415.17 882.646 1416.83C882.646 1418.49 882.085 1419.88 880.962 1421C879.888 1422.12 878.423 1422.69 876.567 1422.69C874.712 1422.69 873.247 1422.12 872.173 1421C871.099 1419.88 870.562 1418.49 870.562 1416.83ZM918.389 1419.46V1439.75H934.795V1446.93H918.389V1499.74C918.389 1504.13 919.17 1507.4 920.732 1509.55C922.344 1511.7 925.005 1512.77 928.716 1512.77C930.181 1512.77 932.549 1512.53 935.82 1512.04L936.187 1519.22C933.892 1520.05 930.767 1520.46 926.812 1520.46C920.806 1520.46 916.436 1518.73 913.701 1515.26C910.967 1511.75 909.6 1506.6 909.6 1499.81V1446.93H895.024V1439.75H909.6V1419.46H918.389ZM962.773 1519H953.984V1406.5H962.773V1519ZM1017.34 1520.46C1010.6 1520.46 1004.5 1518.8 999.028 1515.48C993.608 1512.16 989.385 1507.55 986.357 1501.64C983.33 1495.68 981.816 1489.02 981.816 1481.65V1478.5C981.816 1470.88 983.281 1464.02 986.211 1457.92C989.189 1451.81 993.315 1447.03 998.589 1443.56C1003.86 1440.04 1009.58 1438.29 1015.73 1438.29C1025.35 1438.29 1032.96 1441.58 1038.58 1448.17C1044.24 1454.72 1047.08 1463.68 1047.08 1475.05V1479.96H990.532V1481.65C990.532 1490.63 993.096 1498.13 998.223 1504.13C1003.4 1510.09 1009.89 1513.07 1017.71 1513.07C1022.39 1513.07 1026.52 1512.21 1030.08 1510.5C1033.7 1508.79 1036.97 1506.06 1039.9 1502.3L1045.39 1506.48C1038.95 1515.8 1029.59 1520.46 1017.34 1520.46ZM1015.73 1445.76C1009.14 1445.76 1003.57 1448.17 999.028 1453.01C994.536 1457.84 991.802 1464.34 990.825 1472.49H1038.36V1471.54C1038.12 1463.92 1035.94 1457.72 1031.84 1452.94C1027.74 1448.15 1022.37 1445.76 1015.73 1445.76Z" fill="white"/>
-<rect x="1300" y="1280" width="999" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M1616 1340H1360V1596H1616V1340ZM1586 1511.5C1586 1485.38 1575.62 1460.32 1557.15 1441.85C1538.68 1423.38 1513.62 1413 1487.5 1413C1461.38 1413 1436.32 1423.38 1417.85 1441.85C1399.38 1460.32 1389 1485.38 1389 1511.5H1408.7C1408.7 1490.6 1417 1470.56 1431.78 1455.78C1446.56 1441 1466.6 1432.7 1487.5 1432.7C1508.4 1432.7 1528.44 1441 1543.22 1455.78C1558 1470.56 1566.3 1490.6 1566.3 1511.5H1586ZM1448.1 1511.5H1428.4C1428.4 1495.83 1434.63 1480.79 1445.71 1469.71C1456.79 1458.63 1471.83 1452.4 1487.5 1452.4C1503.17 1452.4 1518.21 1458.63 1529.29 1469.71C1540.37 1480.79 1546.6 1495.83 1546.6 1511.5H1526.9C1526.9 1501.05 1522.75 1491.03 1515.36 1483.64C1507.97 1476.25 1497.95 1472.1 1487.5 1472.1C1477.05 1472.1 1467.03 1476.25 1459.64 1483.64C1452.25 1491.03 1448.1 1501.05 1448.1 1511.5Z" fill="white"/>
-<path d="M1804.99 1485.75C1803.77 1496.98 1799.74 1505.57 1792.9 1511.53C1786.12 1517.49 1777.06 1520.46 1765.73 1520.46C1757.82 1520.46 1750.81 1518.49 1744.71 1514.53C1738.66 1510.58 1733.97 1504.99 1730.65 1497.76C1727.33 1490.48 1725.64 1482.18 1725.59 1472.86V1459.01C1725.59 1449.54 1727.25 1441.14 1730.58 1433.82C1733.9 1426.5 1738.66 1420.86 1744.86 1416.9C1751.11 1412.9 1758.29 1410.89 1766.39 1410.89C1777.82 1410.89 1786.83 1414 1793.42 1420.2C1800.06 1426.35 1803.92 1434.87 1804.99 1445.76H1795.91C1793.66 1427.64 1783.82 1418.58 1766.39 1418.58C1756.72 1418.58 1749.01 1422.2 1743.25 1429.42C1737.53 1436.65 1734.68 1446.64 1734.68 1459.38V1472.42C1734.68 1484.72 1737.46 1494.54 1743.03 1501.86C1748.64 1509.19 1756.21 1512.85 1765.73 1512.85C1775.16 1512.85 1782.26 1510.6 1787.04 1506.11C1791.83 1501.57 1794.78 1494.78 1795.91 1485.75H1804.99ZM1820 1478.2C1820 1470.59 1821.47 1463.73 1824.4 1457.62C1827.38 1451.52 1831.55 1446.78 1836.92 1443.41C1842.34 1440 1848.47 1438.29 1855.31 1438.29C1865.85 1438.29 1874.4 1442 1880.94 1449.42C1887.48 1456.79 1890.76 1466.58 1890.76 1478.79V1480.62C1890.76 1488.29 1889.27 1495.2 1886.29 1501.35C1883.36 1507.45 1879.21 1512.16 1873.84 1515.48C1868.47 1518.8 1862.34 1520.46 1855.45 1520.46C1844.96 1520.46 1836.41 1516.78 1829.82 1509.41C1823.28 1501.98 1820 1492.17 1820 1479.96V1478.2ZM1828.79 1480.62C1828.79 1490.09 1831.23 1497.88 1836.12 1503.99C1841.05 1510.04 1847.49 1513.07 1855.45 1513.07C1863.36 1513.07 1869.76 1510.04 1874.64 1503.99C1879.57 1497.88 1882.04 1489.85 1882.04 1479.89V1478.2C1882.04 1472.15 1880.92 1466.61 1878.67 1461.58C1876.42 1456.55 1873.28 1452.67 1869.22 1449.93C1865.17 1447.15 1860.53 1445.76 1855.31 1445.76C1847.49 1445.76 1841.12 1448.83 1836.19 1454.99C1831.26 1461.09 1828.79 1469.1 1828.79 1479.01V1480.62ZM1918.73 1519H1909.95V1406.5H1918.73V1519ZM1937.78 1478.2C1937.78 1470.59 1939.24 1463.73 1942.17 1457.62C1945.15 1451.52 1949.33 1446.78 1954.7 1443.41C1960.12 1440 1966.24 1438.29 1973.08 1438.29C1983.63 1438.29 1992.17 1442 1998.71 1449.42C2005.26 1456.79 2008.53 1466.58 2008.53 1478.79V1480.62C2008.53 1488.29 2007.04 1495.2 2004.06 1501.35C2001.13 1507.45 1996.98 1512.16 1991.61 1515.48C1986.24 1518.8 1980.11 1520.46 1973.23 1520.46C1962.73 1520.46 1954.18 1516.78 1947.59 1509.41C1941.05 1501.98 1937.78 1492.17 1937.78 1479.96V1478.2ZM1946.57 1480.62C1946.57 1490.09 1949.01 1497.88 1953.89 1503.99C1958.82 1510.04 1965.27 1513.07 1973.23 1513.07C1981.14 1513.07 1987.53 1510.04 1992.42 1503.99C1997.35 1497.88 1999.81 1489.85 1999.81 1479.89V1478.2C1999.81 1472.15 1998.69 1466.61 1996.44 1461.58C1994.2 1456.55 1991.05 1452.67 1987 1449.93C1982.94 1447.15 1978.3 1445.76 1973.08 1445.76C1965.27 1445.76 1958.9 1448.83 1953.96 1454.99C1949.03 1461.09 1946.57 1469.1 1946.57 1479.01V1480.62ZM2077.67 1508.97C2072.4 1516.63 2063.97 1520.46 2052.4 1520.46C2043.95 1520.46 2037.53 1518.02 2033.14 1513.14C2028.74 1508.21 2026.5 1500.93 2026.4 1491.31V1439.75H2035.12V1490.22C2035.12 1505.3 2041.22 1512.85 2053.43 1512.85C2066.12 1512.85 2074.15 1507.6 2077.52 1497.1V1439.75H2086.31V1519H2077.82L2077.67 1508.97ZM2145.79 1447.22C2143.93 1446.88 2141.95 1446.71 2139.85 1446.71C2134.38 1446.71 2129.75 1448.25 2125.94 1451.32C2122.18 1454.35 2119.49 1458.77 2117.88 1464.58V1519H2109.16V1439.75H2117.73L2117.88 1452.35C2122.52 1442.97 2129.96 1438.29 2140.22 1438.29C2142.66 1438.29 2144.59 1438.6 2146 1439.24L2145.79 1447.22Z" fill="white"/>
-<rect x="2396" y="1280" width="816" height="376" rx="50" fill="black"/>
-<rect x="-486" y="1698" width="1312" height="376" rx="50" fill="black"/>
-<path d="M-56.5234 1937V1830.36H-26.7139C-17.9736 1830.36 -10.1367 1832.36 -3.20312 1836.37C3.73047 1840.32 9.12598 1846.01 12.9834 1853.43C16.8896 1860.85 18.8428 1869.3 18.8428 1878.77V1888.59C18.8428 1898.11 16.9141 1906.56 13.0566 1913.93C9.19922 1921.3 3.75488 1926.99 -3.27637 1930.99C-10.2588 1935 -18.291 1937 -27.373 1937H-56.5234ZM-47.5146 1838.05V1929.38H-27.2998C-16.0693 1929.38 -7.06055 1925.67 -0.273438 1918.25C6.51367 1910.78 9.90723 1900.7 9.90723 1888V1878.63C9.90723 1866.37 6.5625 1856.56 -0.126953 1849.18C-6.81641 1841.81 -15.6299 1838.1 -26.5674 1838.05H-47.5146ZM70.4053 1938.46C63.667 1938.46 57.5635 1936.8 52.0947 1933.48C46.6748 1930.16 42.4512 1925.55 39.4238 1919.64C36.3965 1913.68 34.8828 1907.02 34.8828 1899.65V1896.5C34.8828 1888.88 36.3477 1882.02 39.2773 1875.92C42.2559 1869.81 46.3818 1865.03 51.6553 1861.56C56.9287 1858.04 62.6416 1856.29 68.7939 1856.29C78.4131 1856.29 86.0303 1859.58 91.6455 1866.17C97.3096 1872.72 100.142 1881.68 100.142 1893.05V1897.96H43.5986V1899.65C43.5986 1908.63 46.1621 1916.13 51.2891 1922.13C56.4648 1928.09 62.959 1931.07 70.7715 1931.07C75.459 1931.07 79.585 1930.21 83.1494 1928.5C86.7627 1926.79 90.0342 1924.06 92.9639 1920.3L98.457 1924.48C92.0117 1933.8 82.6611 1938.46 70.4053 1938.46ZM68.7939 1863.76C62.2021 1863.76 56.6357 1866.17 52.0947 1871.01C47.6025 1875.84 44.8682 1882.34 43.8916 1890.49H91.4258V1889.54C91.1816 1881.92 89.0088 1875.72 84.9072 1870.94C80.8057 1866.15 75.4346 1863.76 68.7939 1863.76ZM164.668 1916.86C164.668 1912.51 162.91 1909.02 159.395 1906.38C155.928 1903.75 150.679 1901.7 143.647 1900.23C136.616 1898.72 131.147 1897.01 127.241 1895.11C123.384 1893.15 120.503 1890.78 118.599 1888C116.743 1885.22 115.815 1881.85 115.815 1877.89C115.815 1871.64 118.428 1866.49 123.652 1862.44C128.877 1858.34 135.566 1856.29 143.721 1856.29C152.559 1856.29 159.639 1858.48 164.961 1862.88C170.332 1867.22 173.018 1872.91 173.018 1879.94H164.229C164.229 1875.31 162.275 1871.45 158.369 1868.37C154.512 1865.3 149.629 1863.76 143.721 1863.76C137.959 1863.76 133.32 1865.05 129.805 1867.64C126.338 1870.18 124.604 1873.5 124.604 1877.6C124.604 1881.56 126.045 1884.63 128.926 1886.83C131.855 1888.98 137.153 1890.96 144.819 1892.76C152.534 1894.57 158.296 1896.5 162.104 1898.55C165.962 1900.6 168.818 1903.06 170.674 1905.95C172.529 1908.83 173.457 1912.32 173.457 1916.42C173.457 1923.11 170.747 1928.46 165.327 1932.46C159.956 1936.46 152.925 1938.46 144.233 1938.46C135.005 1938.46 127.51 1936.24 121.748 1931.8C116.035 1927.31 113.179 1921.64 113.179 1914.81H121.968C122.31 1919.93 124.458 1923.94 128.413 1926.82C132.417 1929.65 137.69 1931.07 144.233 1931.07C150.337 1931.07 155.269 1929.72 159.028 1927.04C162.788 1924.35 164.668 1920.96 164.668 1916.86ZM222.529 1931.07C228.633 1931.07 233.735 1929.36 237.837 1925.94C241.987 1922.47 244.233 1918.01 244.575 1912.54H252.998C252.754 1917.37 251.24 1921.79 248.457 1925.79C245.674 1929.75 241.963 1932.85 237.324 1935.1C232.734 1937.34 227.803 1938.46 222.529 1938.46C212.129 1938.46 203.877 1934.85 197.773 1927.62C191.719 1920.4 188.691 1910.68 188.691 1898.47V1895.84C188.691 1888.03 190.059 1881.12 192.793 1875.11C195.527 1869.1 199.434 1864.47 204.512 1861.19C209.639 1857.92 215.62 1856.29 222.456 1856.29C231.147 1856.29 238.301 1858.88 243.916 1864.05C249.58 1869.23 252.607 1876.04 252.998 1884.49H244.575C244.185 1878.28 241.938 1873.28 237.837 1869.47C233.784 1865.66 228.657 1863.76 222.456 1863.76C214.546 1863.76 208.394 1866.61 203.999 1872.33C199.653 1878.04 197.48 1886.05 197.48 1896.35V1898.91C197.48 1909.02 199.653 1916.91 203.999 1922.57C208.394 1928.24 214.57 1931.07 222.529 1931.07ZM307.197 1865.22C305.342 1864.88 303.364 1864.71 301.265 1864.71C295.796 1864.71 291.157 1866.25 287.349 1869.32C283.589 1872.35 280.903 1876.77 279.292 1882.58V1937H270.576V1857.75H279.146L279.292 1870.35C283.931 1860.97 291.377 1856.29 301.631 1856.29C304.072 1856.29 306.001 1856.6 307.417 1857.24L307.197 1865.22ZM330.928 1937H322.139V1857.75H330.928V1937ZM320.601 1834.83C320.601 1833.17 321.138 1831.78 322.212 1830.65C323.286 1829.48 324.751 1828.89 326.606 1828.89C328.462 1828.89 329.927 1829.48 331.001 1830.65C332.124 1831.78 332.686 1833.17 332.686 1834.83C332.686 1836.49 332.124 1837.88 331.001 1839C329.927 1840.12 328.462 1840.69 326.606 1840.69C324.751 1840.69 323.286 1840.12 322.212 1839C321.138 1837.88 320.601 1836.49 320.601 1834.83ZM418.525 1898.18C418.525 1910.54 415.791 1920.35 410.322 1927.62C404.854 1934.85 397.529 1938.46 388.35 1938.46C377.51 1938.46 369.209 1934.66 363.447 1927.04V1967.47H354.731V1857.75H362.861L363.301 1868.96C369.014 1860.51 377.29 1856.29 388.13 1856.29C397.603 1856.29 405.024 1859.88 410.396 1867.05C415.815 1874.23 418.525 1884.19 418.525 1896.94V1898.18ZM409.736 1896.64C409.736 1886.54 407.661 1878.55 403.511 1872.69C399.36 1866.83 393.574 1863.9 386.152 1863.9C380.781 1863.9 376.167 1865.2 372.31 1867.79C368.452 1870.37 365.498 1874.13 363.447 1879.07V1917.08C365.547 1921.62 368.55 1925.09 372.456 1927.48C376.362 1929.87 380.977 1931.07 386.299 1931.07C393.672 1931.07 399.409 1928.14 403.511 1922.28C407.661 1916.37 409.736 1907.83 409.736 1896.64ZM451.631 1837.46V1857.75H468.037V1864.93H451.631V1917.74C451.631 1922.13 452.412 1925.4 453.975 1927.55C455.586 1929.7 458.247 1930.77 461.958 1930.77C463.423 1930.77 465.791 1930.53 469.062 1930.04L469.429 1937.22C467.134 1938.05 464.009 1938.46 460.054 1938.46C454.048 1938.46 449.678 1936.73 446.943 1933.26C444.209 1929.75 442.842 1924.6 442.842 1917.81V1864.93H428.267V1857.75H442.842V1837.46H451.631ZM496.016 1937H487.227V1857.75H496.016V1937ZM485.688 1834.83C485.688 1833.17 486.226 1831.78 487.3 1830.65C488.374 1829.48 489.839 1828.89 491.694 1828.89C493.55 1828.89 495.015 1829.48 496.089 1830.65C497.212 1831.78 497.773 1833.17 497.773 1834.83C497.773 1836.49 497.212 1837.88 496.089 1839C495.015 1840.12 493.55 1840.69 491.694 1840.69C489.839 1840.69 488.374 1840.12 487.3 1839C486.226 1837.88 485.688 1836.49 485.688 1834.83ZM515.059 1896.2C515.059 1888.59 516.523 1881.73 519.453 1875.62C522.432 1869.52 526.606 1864.78 531.978 1861.41C537.397 1858 543.525 1856.29 550.361 1856.29C560.908 1856.29 569.453 1860 575.996 1867.42C582.539 1874.79 585.811 1884.58 585.811 1896.79V1898.62C585.811 1906.29 584.321 1913.2 581.343 1919.35C578.413 1925.45 574.263 1930.16 568.892 1933.48C563.521 1936.8 557.393 1938.46 550.508 1938.46C540.01 1938.46 531.465 1934.78 524.873 1927.41C518.33 1919.98 515.059 1910.17 515.059 1897.96V1896.2ZM523.848 1898.62C523.848 1908.09 526.289 1915.88 531.172 1921.99C536.104 1928.04 542.549 1931.07 550.508 1931.07C558.418 1931.07 564.814 1928.04 569.697 1921.99C574.629 1915.88 577.095 1907.85 577.095 1897.89V1896.2C577.095 1890.15 575.972 1884.61 573.726 1879.58C571.479 1874.55 568.33 1870.67 564.277 1867.93C560.225 1865.15 555.586 1863.76 550.361 1863.76C542.549 1863.76 536.177 1866.83 531.245 1872.99C526.313 1879.09 523.848 1887.1 523.848 1897.01V1898.62ZM612.324 1857.75L612.617 1871.3C615.596 1866.42 619.307 1862.71 623.75 1860.17C628.193 1857.58 633.101 1856.29 638.472 1856.29C646.968 1856.29 653.291 1858.68 657.441 1863.46C661.592 1868.25 663.691 1875.43 663.74 1885V1937H655.024V1884.92C654.976 1877.84 653.462 1872.57 650.483 1869.1C647.554 1865.64 642.842 1863.9 636.348 1863.9C630.928 1863.9 626.118 1865.61 621.919 1869.03C617.769 1872.4 614.692 1876.97 612.69 1882.73V1937H603.975V1857.75H612.324Z" fill="white"/>
-<rect x="923" y="1698" width="1063" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M983 1758H1239V2014H983V1758ZM1120.47 1863.78H1103L1100.53 1790.37H1122.94L1120.47 1863.78ZM1111.73 1875.28C1115.28 1875.28 1118.11 1876.32 1120.25 1878.41C1121.6 1879.7 1122.54 1881.22 1123.05 1882.96H1218.05V1895.3H1119.11C1117.14 1896.75 1114.68 1897.47 1111.73 1897.47C1108.24 1897.47 1105.41 1896.42 1103.22 1894.34C1101.09 1892.25 1100.02 1889.61 1100.02 1886.41C1100.02 1883.21 1101.09 1880.56 1103.22 1878.48C1105.41 1876.34 1108.24 1875.28 1111.73 1875.28Z" fill="white"/>
-<path d="M1412.83 1910.78C1412.83 1904.87 1410.75 1900.21 1406.6 1896.79C1402.45 1893.32 1394.86 1890.05 1383.82 1886.98C1372.79 1883.85 1364.73 1880.46 1359.65 1876.79C1352.43 1871.62 1348.81 1864.83 1348.81 1856.43C1348.81 1848.28 1352.16 1841.66 1358.85 1836.58C1365.59 1831.46 1374.18 1828.89 1384.63 1828.89C1391.71 1828.89 1398.03 1830.26 1403.6 1833C1409.21 1835.73 1413.56 1839.54 1416.64 1844.42C1419.71 1849.3 1421.25 1854.75 1421.25 1860.75H1412.17C1412.17 1853.48 1409.68 1847.64 1404.7 1843.25C1399.72 1838.81 1393.03 1836.58 1384.63 1836.58C1376.48 1836.58 1369.98 1838.42 1365.15 1842.08C1360.31 1845.69 1357.9 1850.43 1357.9 1856.29C1357.9 1861.71 1360.07 1866.13 1364.42 1869.54C1368.76 1872.96 1375.72 1875.99 1385.29 1878.63C1394.86 1881.21 1402.11 1883.92 1407.04 1886.76C1411.97 1889.54 1415.68 1892.88 1418.17 1896.79C1420.67 1900.7 1421.91 1905.31 1421.91 1910.63C1421.91 1919.03 1418.54 1925.77 1411.8 1930.85C1405.11 1935.93 1396.28 1938.46 1385.29 1938.46C1377.77 1938.46 1370.86 1937.12 1364.56 1934.44C1358.31 1931.75 1353.55 1927.99 1350.28 1923.16C1347.06 1918.32 1345.45 1912.78 1345.45 1906.53H1354.45C1354.45 1914.05 1357.26 1919.98 1362.88 1924.33C1368.49 1928.67 1375.96 1930.85 1385.29 1930.85C1393.59 1930.85 1400.25 1929.02 1405.28 1925.35C1410.31 1921.69 1412.83 1916.83 1412.83 1910.78ZM1489.37 1937C1488.49 1934.51 1487.93 1930.82 1487.68 1925.94C1484.61 1929.94 1480.67 1933.04 1475.89 1935.24C1471.15 1937.39 1466.12 1938.46 1460.8 1938.46C1453.18 1938.46 1447.01 1936.34 1442.27 1932.09C1437.58 1927.84 1435.24 1922.47 1435.24 1915.98C1435.24 1908.26 1438.44 1902.16 1444.83 1897.67C1451.28 1893.18 1460.24 1890.93 1471.71 1890.93H1487.61V1881.92C1487.61 1876.26 1485.85 1871.81 1482.33 1868.59C1478.87 1865.32 1473.79 1863.68 1467.1 1863.68C1461 1863.68 1455.94 1865.25 1451.94 1868.37C1447.94 1871.5 1445.93 1875.26 1445.93 1879.65L1437.14 1879.58C1437.14 1873.28 1440.07 1867.83 1445.93 1863.25C1451.79 1858.61 1459 1856.29 1467.54 1856.29C1476.38 1856.29 1483.34 1858.51 1488.41 1862.95C1493.54 1867.35 1496.18 1873.5 1496.32 1881.41V1918.91C1496.32 1926.58 1497.13 1932.31 1498.74 1936.12V1937H1489.37ZM1461.83 1930.7C1467.69 1930.7 1472.91 1929.29 1477.5 1926.45C1482.14 1923.62 1485.51 1919.84 1487.61 1915.1V1897.67H1471.93C1463.19 1897.77 1456.36 1899.38 1451.43 1902.5C1446.5 1905.58 1444.03 1909.83 1444.03 1915.25C1444.03 1919.69 1445.67 1923.38 1448.94 1926.31C1452.26 1929.24 1456.55 1930.7 1461.83 1930.7ZM1527.75 1857.75L1528.04 1870.64C1530.97 1865.86 1534.63 1862.27 1539.02 1859.88C1543.42 1857.48 1548.3 1856.29 1553.67 1856.29C1566.17 1856.29 1574.11 1861.41 1577.48 1871.67C1580.31 1866.74 1584.09 1862.95 1588.83 1860.32C1593.57 1857.63 1598.79 1856.29 1604.5 1856.29C1621.5 1856.29 1630.16 1865.56 1630.5 1884.12V1937H1621.71V1884.78C1621.67 1877.7 1620.13 1872.45 1617.1 1869.03C1614.12 1865.61 1609.24 1863.9 1602.45 1863.9C1596.15 1864 1590.83 1866.05 1586.49 1870.06C1582.14 1874.01 1579.72 1878.85 1579.23 1884.56V1937H1570.45V1884.12C1570.4 1877.33 1568.79 1872.28 1565.61 1868.96C1562.49 1865.59 1557.65 1863.9 1551.11 1863.9C1545.59 1863.9 1540.86 1865.49 1536.9 1868.67C1532.95 1871.79 1530.02 1876.45 1528.11 1882.65V1937H1519.32V1857.75H1527.75ZM1716.49 1898.18C1716.49 1910.54 1713.76 1920.35 1708.29 1927.62C1702.82 1934.85 1695.49 1938.46 1686.31 1938.46C1675.47 1938.46 1667.17 1934.66 1661.41 1927.04V1967.47H1652.7V1857.75H1660.83L1661.27 1868.96C1666.98 1860.51 1675.25 1856.29 1686.09 1856.29C1695.57 1856.29 1702.99 1859.88 1708.36 1867.05C1713.78 1874.23 1716.49 1884.19 1716.49 1896.94V1898.18ZM1707.7 1896.64C1707.7 1886.54 1705.63 1878.55 1701.48 1872.69C1697.33 1866.83 1691.54 1863.9 1684.12 1863.9C1678.75 1863.9 1674.13 1865.2 1670.27 1867.79C1666.42 1870.37 1663.46 1874.13 1661.41 1879.07V1917.08C1663.51 1921.62 1666.51 1925.09 1670.42 1927.48C1674.33 1929.87 1678.94 1931.07 1684.26 1931.07C1691.64 1931.07 1697.37 1928.14 1701.48 1922.28C1705.63 1916.37 1707.7 1907.83 1707.7 1896.64ZM1745.79 1937H1737V1824.5H1745.79V1937ZM1800.35 1938.46C1793.61 1938.46 1787.51 1936.8 1782.04 1933.48C1776.62 1930.16 1772.4 1925.55 1769.37 1919.64C1766.34 1913.68 1764.83 1907.02 1764.83 1899.65V1896.5C1764.83 1888.88 1766.29 1882.02 1769.22 1875.92C1772.2 1869.81 1776.33 1865.03 1781.6 1861.56C1786.88 1858.04 1792.59 1856.29 1798.74 1856.29C1808.36 1856.29 1815.98 1859.58 1821.59 1866.17C1827.26 1872.72 1830.09 1881.68 1830.09 1893.05V1897.96H1773.55V1899.65C1773.55 1908.63 1776.11 1916.13 1781.24 1922.13C1786.41 1928.09 1792.91 1931.07 1800.72 1931.07C1805.41 1931.07 1809.53 1930.21 1813.1 1928.5C1816.71 1926.79 1819.98 1924.06 1822.91 1920.3L1828.4 1924.48C1821.96 1933.8 1812.61 1938.46 1800.35 1938.46ZM1798.74 1863.76C1792.15 1863.76 1786.58 1866.17 1782.04 1871.01C1777.55 1875.84 1774.82 1882.34 1773.84 1890.49H1821.37V1889.54C1821.13 1881.92 1818.96 1875.72 1814.85 1870.94C1810.75 1866.15 1805.38 1863.76 1798.74 1863.76Z" fill="white"/>
-<rect x="2083" y="1698" width="999" height="376" rx="50" fill="black"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M2399 1758H2143V2014H2399V1758ZM2326.22 1873.78C2341 1888.56 2349.3 1908.6 2349.3 1929.5H2329.6C2329.6 1913.83 2323.37 1898.79 2312.29 1887.71C2301.21 1876.63 2286.17 1870.4 2270.5 1870.4C2254.83 1870.4 2239.79 1876.63 2228.71 1887.71C2217.63 1898.79 2211.4 1913.83 2211.4 1929.5L2191.7 1929.5C2191.7 1908.6 2200 1888.56 2214.78 1873.78C2229.56 1859 2249.6 1850.7 2270.5 1850.7C2291.4 1850.7 2311.44 1859 2326.22 1873.78Z" fill="white"/>
-<rect x="4" y="777" width="2436" height="1065" fill="url(#paint0_linear)"/>
-</g>
-<path d="M508.338 232.877H458.46V276.383H515.809V284H449.451V177.359H515.442V185.05H458.46V225.26H508.338V232.877ZM582.825 284C581.946 281.51 581.385 277.823 581.141 272.94C578.064 276.944 574.134 280.045 569.349 282.242C564.612 284.391 559.583 285.465 554.261 285.465C546.644 285.465 540.467 283.341 535.73 279.093C531.043 274.845 528.699 269.474 528.699 262.979C528.699 255.265 531.897 249.161 538.294 244.669C544.739 240.177 553.699 237.931 565.174 237.931H581.067V228.922C581.067 223.258 579.31 218.814 575.794 215.592C572.327 212.32 567.249 210.685 560.56 210.685C554.456 210.685 549.402 212.247 545.398 215.372C541.395 218.497 539.393 222.257 539.393 226.651L530.604 226.578C530.604 220.279 533.533 214.835 539.393 210.245C545.252 205.606 552.454 203.287 560.999 203.287C569.837 203.287 576.795 205.509 581.873 209.952C587 214.347 589.637 220.499 589.783 228.409V265.909C589.783 273.575 590.589 279.312 592.2 283.121V284H582.825ZM555.286 277.701C561.146 277.701 566.37 276.285 570.96 273.453C575.599 270.621 578.968 266.837 581.067 262.101V244.669H565.394C556.653 244.767 549.817 246.378 544.886 249.503C539.954 252.579 537.488 256.827 537.488 262.247C537.488 266.69 539.124 270.377 542.396 273.307C545.716 276.236 550.013 277.701 555.286 277.701ZM660.682 263.858C660.682 259.513 658.924 256.021 655.408 253.385C651.941 250.748 646.692 248.697 639.661 247.232C632.63 245.719 627.161 244.01 623.255 242.105C619.397 240.152 616.517 237.784 614.612 235.001C612.757 232.218 611.829 228.849 611.829 224.894C611.829 218.644 614.441 213.492 619.666 209.439C624.891 205.338 631.58 203.287 639.734 203.287C648.572 203.287 655.652 205.484 660.975 209.879C666.346 214.225 669.031 219.913 669.031 226.944H660.242C660.242 222.306 658.289 218.448 654.383 215.372C650.525 212.296 645.643 210.758 639.734 210.758C633.973 210.758 629.334 212.052 625.818 214.64C622.352 217.179 620.618 220.499 620.618 224.601C620.618 228.556 622.059 231.632 624.939 233.829C627.869 235.978 633.167 237.955 640.833 239.762C648.548 241.568 654.31 243.497 658.118 245.548C661.976 247.599 664.832 250.064 666.688 252.945C668.543 255.826 669.471 259.317 669.471 263.419C669.471 270.108 666.761 275.455 661.341 279.459C655.97 283.463 648.938 285.465 640.247 285.465C631.019 285.465 623.523 283.243 617.762 278.8C612.049 274.308 609.192 268.644 609.192 261.808H617.981C618.323 266.935 620.472 270.938 624.427 273.819C628.431 276.651 633.704 278.067 640.247 278.067C646.351 278.067 651.282 276.725 655.042 274.039C658.802 271.354 660.682 267.96 660.682 263.858ZM714.368 271.402L737.513 204.752H746.961L713.123 297.477L711.365 301.578C707.02 311.197 700.306 316.007 691.224 316.007C689.124 316.007 686.878 315.665 684.485 314.981L684.412 307.73L688.953 308.17C693.25 308.17 696.717 307.096 699.354 304.947C702.039 302.848 704.31 299.21 706.165 294.034L710.047 283.341L680.164 204.752H689.759L714.368 271.402ZM810.682 184.464V204.752H827.088V211.93H810.682V264.737C810.682 269.132 811.463 272.403 813.025 274.552C814.637 276.7 817.298 277.774 821.009 277.774C822.474 277.774 824.842 277.53 828.113 277.042L828.479 284.22C826.185 285.05 823.06 285.465 819.104 285.465C813.099 285.465 808.729 283.731 805.994 280.265C803.26 276.749 801.893 271.598 801.893 264.811V211.93H787.317V204.752H801.893V184.464H810.682ZM838.953 243.204C838.953 235.587 840.418 228.727 843.348 222.623C846.326 216.52 850.501 211.783 855.872 208.414C861.292 204.996 867.42 203.287 874.256 203.287C884.803 203.287 893.348 206.998 899.891 214.42C906.434 221.793 909.705 231.583 909.705 243.79V245.621C909.705 253.287 908.216 260.196 905.237 266.349C902.308 272.452 898.157 277.164 892.786 280.484C887.415 283.805 881.287 285.465 874.402 285.465C863.904 285.465 855.359 281.778 848.768 274.405C842.225 266.983 838.953 257.169 838.953 244.962V243.204ZM847.742 245.621C847.742 255.094 850.184 262.882 855.066 268.985C859.998 275.04 866.443 278.067 874.402 278.067C882.312 278.067 888.709 275.04 893.592 268.985C898.523 262.882 900.989 254.85 900.989 244.889V243.204C900.989 237.149 899.866 231.607 897.62 226.578C895.374 221.549 892.225 217.667 888.172 214.933C884.119 212.149 879.48 210.758 874.256 210.758C866.443 210.758 860.071 213.834 855.14 219.986C850.208 226.09 847.742 234.098 847.742 244.01V245.621ZM1015.32 273.966C1010.05 281.632 1001.62 285.465 990.052 285.465C981.604 285.465 975.184 283.023 970.789 278.141C966.395 273.209 964.148 265.934 964.051 256.314V204.752H972.767V255.216C972.767 270.304 978.87 277.848 991.077 277.848C1003.77 277.848 1011.8 272.599 1015.17 262.101V204.752H1023.96V284H1015.47L1015.32 273.966ZM1094.28 263.858C1094.28 259.513 1092.52 256.021 1089 253.385C1085.54 250.748 1080.29 248.697 1073.25 247.232C1066.22 245.719 1060.75 244.01 1056.85 242.105C1052.99 240.152 1050.11 237.784 1048.21 235.001C1046.35 232.218 1045.42 228.849 1045.42 224.894C1045.42 218.644 1048.04 213.492 1053.26 209.439C1058.48 205.338 1065.17 203.287 1073.33 203.287C1082.17 203.287 1089.25 205.484 1094.57 209.879C1099.94 214.225 1102.62 219.913 1102.62 226.944H1093.84C1093.84 222.306 1091.88 218.448 1087.98 215.372C1084.12 212.296 1079.24 210.758 1073.33 210.758C1067.57 210.758 1062.93 212.052 1059.41 214.64C1055.95 217.179 1054.21 220.499 1054.21 224.601C1054.21 228.556 1055.65 231.632 1058.53 233.829C1061.46 235.978 1066.76 237.955 1074.43 239.762C1082.14 241.568 1087.9 243.497 1091.71 245.548C1095.57 247.599 1098.43 250.064 1100.28 252.945C1102.14 255.826 1103.06 259.317 1103.06 263.419C1103.06 270.108 1100.35 275.455 1094.93 279.459C1089.56 283.463 1082.53 285.465 1073.84 285.465C1064.61 285.465 1057.12 283.243 1051.36 278.8C1045.64 274.308 1042.79 268.644 1042.79 261.808H1051.58C1051.92 266.935 1054.07 270.938 1058.02 273.819C1062.02 276.651 1067.3 278.067 1073.84 278.067C1079.94 278.067 1084.88 276.725 1088.64 274.039C1092.4 271.354 1094.28 267.96 1094.28 263.858ZM1153.53 285.465C1146.79 285.465 1140.69 283.805 1135.22 280.484C1129.8 277.164 1125.57 272.55 1122.55 266.642C1119.52 260.685 1118.01 254.02 1118.01 246.646V243.497C1118.01 235.88 1119.47 229.02 1122.4 222.916C1125.38 216.812 1129.5 212.027 1134.78 208.561C1140.05 205.045 1145.76 203.287 1151.92 203.287C1161.54 203.287 1169.15 206.583 1174.77 213.175C1180.43 219.718 1183.26 228.678 1183.26 240.055V244.962H1126.72V246.646C1126.72 255.631 1129.29 263.126 1134.41 269.132C1139.59 275.089 1146.08 278.067 1153.89 278.067C1158.58 278.067 1162.71 277.213 1166.27 275.504C1169.89 273.795 1173.16 271.061 1176.09 267.301L1181.58 271.476C1175.13 280.802 1165.78 285.465 1153.53 285.465ZM1151.92 210.758C1145.33 210.758 1139.76 213.175 1135.22 218.009C1130.73 222.843 1127.99 229.337 1127.01 237.491H1174.55V236.539C1174.3 228.922 1172.13 222.721 1168.03 217.936C1163.93 213.15 1158.56 210.758 1151.92 210.758ZM1243.1 284V211.93H1229.99V204.752H1243.1V195.157C1243.1 187.052 1245.15 180.826 1249.26 176.48C1253.41 172.135 1259.17 169.962 1266.54 169.962C1269.86 169.962 1272.96 170.377 1275.84 171.207L1275.18 178.531C1272.74 177.945 1270.08 177.652 1267.2 177.652C1262.37 177.652 1258.61 179.166 1255.92 182.193C1253.24 185.172 1251.89 189.42 1251.89 194.938V204.752H1270.79V211.93H1251.89V284H1243.1ZM1281.63 243.204C1281.63 235.587 1283.09 228.727 1286.02 222.623C1289 216.52 1293.18 211.783 1298.55 208.414C1303.97 204.996 1310.1 203.287 1316.93 203.287C1327.48 203.287 1336.02 206.998 1342.57 214.42C1349.11 221.793 1352.38 231.583 1352.38 243.79V245.621C1352.38 253.287 1350.89 260.196 1347.91 266.349C1344.98 272.452 1340.83 277.164 1335.46 280.484C1330.09 283.805 1323.96 285.465 1317.08 285.465C1306.58 285.465 1298.04 281.778 1291.44 274.405C1284.9 266.983 1281.63 257.169 1281.63 244.962V243.204ZM1290.42 245.621C1290.42 255.094 1292.86 262.882 1297.74 268.985C1302.67 275.04 1309.12 278.067 1317.08 278.067C1324.99 278.067 1331.38 275.04 1336.27 268.985C1341.2 262.882 1343.67 254.85 1343.67 244.889V243.204C1343.67 237.149 1342.54 231.607 1340.3 226.578C1338.05 221.549 1334.9 217.667 1330.85 214.933C1326.79 212.149 1322.16 210.758 1316.93 210.758C1309.12 210.758 1302.75 213.834 1297.82 219.986C1292.88 226.09 1290.42 234.098 1290.42 244.01V245.621ZM1407.17 212.223C1405.31 211.881 1403.33 211.71 1401.23 211.71C1395.76 211.71 1391.13 213.248 1387.32 216.324C1383.56 219.352 1380.87 223.771 1379.26 229.581V284H1370.54V204.752H1379.11L1379.26 217.35C1383.9 207.975 1391.35 203.287 1401.6 203.287C1404.04 203.287 1405.97 203.604 1407.39 204.239L1407.17 212.223ZM1429.07 204.752L1429.36 217.643C1432.29 212.857 1435.95 209.269 1440.34 206.876C1444.74 204.483 1449.62 203.287 1454.99 203.287C1467.49 203.287 1475.43 208.414 1478.8 218.668C1481.63 213.736 1485.41 209.952 1490.15 207.315C1494.89 204.63 1500.11 203.287 1505.82 203.287C1522.82 203.287 1531.48 212.564 1531.82 231.119V284H1523.04V231.778C1522.99 224.698 1521.45 219.449 1518.42 216.031C1515.44 212.613 1510.56 210.904 1503.77 210.904C1497.47 211.002 1492.15 213.053 1487.81 217.057C1483.46 221.012 1481.04 225.846 1480.55 231.559V284H1471.77V231.119C1471.72 224.332 1470.11 219.278 1466.93 215.958C1463.81 212.589 1458.97 210.904 1452.43 210.904C1446.91 210.904 1442.18 212.491 1438.22 215.665C1434.27 218.79 1431.34 223.453 1429.43 229.654V284H1420.64V204.752H1429.07ZM1601.55 263.858C1601.55 259.513 1599.79 256.021 1596.28 253.385C1592.81 250.748 1587.56 248.697 1580.53 247.232C1573.5 245.719 1568.03 244.01 1564.12 242.105C1560.27 240.152 1557.39 237.784 1555.48 235.001C1553.63 232.218 1552.7 228.849 1552.7 224.894C1552.7 218.644 1555.31 213.492 1560.54 209.439C1565.76 205.338 1572.45 203.287 1580.6 203.287C1589.44 203.287 1596.52 205.484 1601.84 209.879C1607.21 214.225 1609.9 219.913 1609.9 226.944H1601.11C1601.11 222.306 1599.16 218.448 1595.25 215.372C1591.39 212.296 1586.51 210.758 1580.6 210.758C1574.84 210.758 1570.2 212.052 1566.69 214.64C1563.22 217.179 1561.49 220.499 1561.49 224.601C1561.49 228.556 1562.93 231.632 1565.81 233.829C1568.74 235.978 1574.04 237.955 1581.7 239.762C1589.42 241.568 1595.18 243.497 1598.99 245.548C1602.84 247.599 1605.7 250.064 1607.56 252.945C1609.41 255.826 1610.34 259.317 1610.34 263.419C1610.34 270.108 1607.63 275.455 1602.21 279.459C1596.84 283.463 1589.81 285.465 1581.12 285.465C1571.89 285.465 1564.39 283.243 1558.63 278.8C1552.92 274.308 1550.06 268.644 1550.06 261.808H1558.85C1559.19 266.935 1561.34 270.938 1565.3 273.819C1569.3 276.651 1574.57 278.067 1581.12 278.067C1587.22 278.067 1592.15 276.725 1595.91 274.039C1599.67 271.354 1601.55 267.96 1601.55 263.858ZM1717.57 273.966C1712.29 281.632 1703.87 285.465 1692.3 285.465C1683.85 285.465 1677.43 283.023 1673.04 278.141C1668.64 273.209 1666.39 265.934 1666.3 256.314V204.752H1675.01V255.216C1675.01 270.304 1681.12 277.848 1693.32 277.848C1706.02 277.848 1714.05 272.599 1717.42 262.101V204.752H1726.21V284H1717.71L1717.57 273.966ZM1796.52 263.858C1796.52 259.513 1794.76 256.021 1791.25 253.385C1787.78 250.748 1782.53 248.697 1775.5 247.232C1768.47 245.719 1763 244.01 1759.09 242.105C1755.24 240.152 1752.36 237.784 1750.45 235.001C1748.6 232.218 1747.67 228.849 1747.67 224.894C1747.67 218.644 1750.28 213.492 1755.51 209.439C1760.73 205.338 1767.42 203.287 1775.57 203.287C1784.41 203.287 1791.49 205.484 1796.81 209.879C1802.19 214.225 1804.87 219.913 1804.87 226.944H1796.08C1796.08 222.306 1794.13 218.448 1790.22 215.372C1786.37 212.296 1781.48 210.758 1775.57 210.758C1769.81 210.758 1765.17 212.052 1761.66 214.64C1758.19 217.179 1756.46 220.499 1756.46 224.601C1756.46 228.556 1757.9 231.632 1760.78 233.829C1763.71 235.978 1769.01 237.955 1776.67 239.762C1784.39 241.568 1790.15 243.497 1793.96 245.548C1797.82 247.599 1800.67 250.064 1802.53 252.945C1804.38 255.826 1805.31 259.317 1805.31 263.419C1805.31 270.108 1802.6 275.455 1797.18 279.459C1791.81 283.463 1784.78 285.465 1776.09 285.465C1766.86 285.465 1759.36 283.243 1753.6 278.8C1747.89 274.308 1745.03 268.644 1745.03 261.808H1753.82C1754.16 266.935 1756.31 270.938 1760.27 273.819C1764.27 276.651 1769.54 278.067 1776.09 278.067C1782.19 278.067 1787.12 276.725 1790.88 274.039C1794.64 271.354 1796.52 267.96 1796.52 263.858ZM1834.9 284H1826.11V204.752H1834.9V284ZM1824.57 181.827C1824.57 180.167 1825.11 178.775 1826.18 177.652C1827.26 176.48 1828.72 175.895 1830.58 175.895C1832.43 175.895 1833.9 176.48 1834.97 177.652C1836.1 178.775 1836.66 180.167 1836.66 181.827C1836.66 183.487 1836.1 184.879 1834.97 186.002C1833.9 187.125 1832.43 187.687 1830.58 187.687C1828.72 187.687 1827.26 187.125 1826.18 186.002C1825.11 184.879 1824.57 183.487 1824.57 181.827ZM1867.13 204.752L1867.42 218.302C1870.4 213.419 1874.11 209.708 1878.55 207.169C1883 204.581 1887.9 203.287 1893.27 203.287C1901.77 203.287 1908.09 205.68 1912.24 210.465C1916.39 215.25 1918.49 222.428 1918.54 231.998V284H1909.83V231.925C1909.78 224.845 1908.26 219.571 1905.29 216.104C1902.36 212.638 1897.64 210.904 1891.15 210.904C1885.73 210.904 1880.92 212.613 1876.72 216.031C1872.57 219.4 1869.5 223.966 1867.49 229.728V284H1858.78V204.752H1867.13ZM1937.73 243.644C1937.73 231.241 1940.47 221.427 1945.94 214.2C1951.45 206.925 1958.92 203.287 1968.35 203.287C1979.14 203.287 1987.34 207.584 1992.96 216.178L1993.4 204.752H2001.6V282.389C2001.6 292.594 1998.74 300.675 1993.03 306.632C1987.32 312.589 1979.58 315.567 1969.81 315.567C1964.29 315.567 1959.02 314.322 1953.99 311.832C1949.01 309.391 1945.08 306.119 1942.2 302.018L1947.11 296.744C1953.31 304.361 1960.68 308.17 1969.23 308.17C1976.55 308.17 1982.26 305.997 1986.37 301.651C1990.47 297.354 1992.59 291.373 1992.74 283.707V273.746C1987.12 281.559 1978.94 285.465 1968.2 285.465C1959.02 285.465 1951.65 281.803 1946.08 274.479C1940.52 267.154 1937.73 257.267 1937.73 244.815V243.644ZM1946.59 245.182C1946.59 255.289 1948.62 263.272 1952.67 269.132C1956.73 274.942 1962.44 277.848 1969.81 277.848C1980.6 277.848 1988.25 273.014 1992.74 263.346V226.505C1990.69 221.427 1987.73 217.569 1983.88 214.933C1980.02 212.247 1975.38 210.904 1969.96 210.904C1962.59 210.904 1956.85 213.81 1952.75 219.62C1948.65 225.382 1946.59 233.902 1946.59 245.182Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<path d="M345.779 588V410.266H398.27C413.976 410.266 427.892 413.765 440.018 420.764C452.225 427.762 461.665 437.691 468.338 450.549C475.011 463.407 478.348 478.137 478.348 494.738V503.649C478.348 520.495 474.97 535.306 468.216 548.083C461.543 560.86 451.98 570.707 439.529 577.624C427.16 584.541 412.959 588 396.927 588H345.779ZM376.663 435.168V563.342H396.805C412.999 563.342 425.41 558.296 434.036 548.205C442.744 538.033 447.179 523.465 447.342 504.504V494.616C447.342 475.329 443.151 460.599 434.769 450.427C426.386 440.254 414.22 435.168 398.27 435.168H376.663ZM537.796 588H508.133V455.92H537.796V588ZM506.302 421.618C506.302 417.061 507.726 413.277 510.574 410.266C513.504 407.255 517.654 405.749 523.025 405.749C528.396 405.749 532.547 407.255 535.477 410.266C538.406 413.277 539.871 417.061 539.871 421.618C539.871 426.094 538.406 429.838 535.477 432.849C532.547 435.778 528.396 437.243 523.025 437.243C517.654 437.243 513.504 435.778 510.574 432.849C507.726 429.838 506.302 426.094 506.302 421.618ZM644.241 552.111C644.241 546.822 642.044 542.793 637.649 540.026C633.336 537.259 626.134 534.818 616.043 532.702C605.952 530.586 597.529 527.901 590.774 524.646C575.963 517.484 568.558 507.108 568.558 493.518C568.558 482.124 573.359 472.603 582.962 464.953C592.565 457.303 604.772 453.479 619.583 453.479C635.371 453.479 648.107 457.385 657.791 465.197C667.557 473.01 672.439 483.142 672.439 495.593H642.776C642.776 489.896 640.66 485.176 636.429 481.433C632.197 477.608 626.582 475.695 619.583 475.695C613.073 475.695 607.742 477.201 603.592 480.212C599.523 483.223 597.488 487.251 597.488 492.297C597.488 496.854 599.401 500.394 603.226 502.917C607.05 505.44 614.782 508.003 626.419 510.607C638.056 513.13 647.171 516.182 653.763 519.763C660.436 523.262 665.359 527.494 668.533 532.458C671.788 537.422 673.416 543.444 673.416 550.524C673.416 562.406 668.493 572.049 658.646 579.455C648.799 586.779 635.9 590.441 619.949 590.441C609.126 590.441 599.482 588.488 591.019 584.582C582.555 580.676 575.963 575.305 571.243 568.469C566.523 561.633 564.163 554.268 564.163 546.374H592.972C593.379 553.373 596.023 558.785 600.906 562.609C605.789 566.353 612.259 568.225 620.315 568.225C628.128 568.225 634.069 566.76 638.138 563.83C642.207 560.819 644.241 556.913 644.241 552.111ZM753.616 566.76C761.022 566.76 767.166 564.603 772.049 560.29C776.932 555.977 779.536 550.646 779.861 544.299H807.815C807.49 552.518 804.926 560.209 800.125 567.37C795.324 574.45 788.813 580.065 780.594 584.216C772.374 588.366 763.504 590.441 753.982 590.441C735.509 590.441 720.861 584.46 710.037 572.497C699.214 560.534 693.802 544.014 693.802 522.937V519.885C693.802 499.784 699.173 483.711 709.915 471.667C720.657 459.541 735.306 453.479 753.86 453.479C769.567 453.479 782.343 458.076 792.19 467.272C802.119 476.387 807.327 488.391 807.815 503.283H779.861C779.536 495.715 776.932 489.489 772.049 484.606C767.247 479.724 761.103 477.282 753.616 477.282C744.013 477.282 736.608 480.782 731.399 487.78C726.191 494.698 723.546 505.236 723.465 519.396V524.157C723.465 538.48 726.028 549.182 731.155 556.262C736.364 563.26 743.851 566.76 753.616 566.76ZM824.661 520.739C824.661 507.8 827.225 496.162 832.352 485.827C837.479 475.41 844.681 467.435 853.958 461.901C863.235 456.286 873.896 453.479 885.94 453.479C903.763 453.479 918.208 459.216 929.275 470.69C940.424 482.165 946.447 497.383 947.342 516.345L947.464 523.303C947.464 536.324 944.941 547.961 939.896 558.215C934.931 568.469 927.77 576.403 918.411 582.019C909.134 587.634 898.392 590.441 886.185 590.441C867.549 590.441 852.615 584.257 841.385 571.887C830.236 559.436 824.661 542.875 824.661 522.204V520.739ZM854.324 523.303C854.324 536.893 857.132 547.554 862.747 555.285C868.362 562.935 876.175 566.76 886.185 566.76C896.194 566.76 903.966 562.854 909.5 555.041C915.115 547.229 917.923 535.795 917.923 520.739C917.923 507.393 915.034 496.813 909.256 489.001C903.559 481.188 895.787 477.282 885.94 477.282C876.256 477.282 868.566 481.148 862.869 488.879C857.173 496.529 854.324 508.003 854.324 523.303ZM1041.7 483.02C1037.8 482.368 1033.77 482.043 1029.62 482.043C1016.03 482.043 1006.87 487.251 1002.15 497.668V588H972.488V455.92H1000.81L1001.54 470.69C1008.7 459.216 1018.63 453.479 1031.33 453.479C1035.56 453.479 1039.06 454.048 1041.82 455.188L1041.7 483.02ZM1052.44 520.983C1052.44 500.638 1057.16 484.322 1066.6 472.033C1076.04 459.663 1088.7 453.479 1104.57 453.479C1118.57 453.479 1129.88 458.361 1138.5 468.127V400.5H1168.17V588H1141.31L1139.85 574.328C1130.98 585.07 1119.14 590.441 1104.32 590.441C1088.86 590.441 1076.33 584.216 1066.73 571.765C1057.21 559.313 1052.44 542.386 1052.44 520.983ZM1082.11 523.547C1082.11 536.975 1084.67 547.473 1089.8 555.041C1095.01 562.528 1102.37 566.271 1111.89 566.271C1124.02 566.271 1132.89 560.86 1138.5 550.036V493.64C1133.05 483.06 1124.26 477.771 1112.14 477.771C1102.53 477.771 1095.13 481.595 1089.92 489.245C1084.71 496.813 1082.11 508.247 1082.11 523.547ZM1264.24 588V410.266H1325.15C1345.25 410.266 1360.55 414.294 1371.05 422.351C1381.55 430.407 1386.79 442.411 1386.79 458.361C1386.79 466.499 1384.6 473.824 1380.2 480.334C1375.81 486.844 1369.38 491.89 1360.92 495.471C1370.52 498.075 1377.92 502.998 1383.13 510.241C1388.42 517.403 1391.07 526.029 1391.07 536.12C1391.07 552.803 1385.7 565.62 1374.95 574.572C1364.29 583.524 1348.99 588 1329.06 588H1264.24ZM1295.12 507.8V563.342H1329.42C1339.11 563.342 1346.67 560.941 1352.13 556.14C1357.58 551.338 1360.31 544.665 1360.31 536.12C1360.31 517.647 1350.87 508.207 1331.99 507.8H1295.12ZM1295.12 485.095H1325.39C1335 485.095 1342.48 482.938 1347.85 478.625C1353.31 474.23 1356.03 468.046 1356.03 460.07C1356.03 451.281 1353.51 444.934 1348.46 441.027C1343.5 437.121 1335.73 435.168 1325.15 435.168H1295.12V485.095ZM1499.1 575.061C1490.39 585.314 1478.02 590.441 1461.99 590.441C1447.67 590.441 1436.8 586.25 1429.4 577.868C1422.07 569.486 1418.41 557.36 1418.41 541.491V455.92H1448.07V541.125C1448.07 557.889 1455.03 566.271 1468.95 566.271C1483.35 566.271 1493.08 561.104 1498.12 550.769V455.92H1527.79V588H1499.83L1499.1 575.061ZM1595.17 423.815V455.92H1618.48V477.893H1595.17V551.623C1595.17 556.669 1596.15 560.331 1598.1 562.609C1600.13 564.807 1603.71 565.905 1608.84 565.905C1612.26 565.905 1615.72 565.498 1619.22 564.685V587.634C1612.46 589.506 1605.95 590.441 1599.69 590.441C1576.9 590.441 1565.51 577.868 1565.51 552.722V477.893H1543.78V455.92H1565.51V423.815H1595.17ZM1678.42 423.815V455.92H1701.74V477.893H1678.42V551.623C1678.42 556.669 1679.4 560.331 1681.35 562.609C1683.39 564.807 1686.97 565.905 1692.09 565.905C1695.51 565.905 1698.97 565.498 1702.47 564.685V587.634C1695.71 589.506 1689.2 590.441 1682.94 590.441C1660.15 590.441 1648.76 577.868 1648.76 552.722V477.893H1627.03V455.92H1648.76V423.815H1678.42ZM1715.29 520.739C1715.29 507.8 1717.85 496.162 1722.98 485.827C1728.1 475.41 1735.31 467.435 1744.58 461.901C1753.86 456.286 1764.52 453.479 1776.57 453.479C1794.39 453.479 1808.83 459.216 1819.9 470.69C1831.05 482.165 1837.07 497.383 1837.97 516.345L1838.09 523.303C1838.09 536.324 1835.57 547.961 1830.52 558.215C1825.56 568.469 1818.39 576.403 1809.04 582.019C1799.76 587.634 1789.02 590.441 1776.81 590.441C1758.17 590.441 1743.24 584.257 1732.01 571.887C1720.86 559.436 1715.29 542.875 1715.29 522.204V520.739ZM1744.95 523.303C1744.95 536.893 1747.76 547.554 1753.37 555.285C1758.99 562.935 1766.8 566.76 1776.81 566.76C1786.82 566.76 1794.59 562.854 1800.12 555.041C1805.74 547.229 1808.55 535.795 1808.55 520.739C1808.55 507.393 1805.66 496.813 1799.88 489.001C1794.18 481.188 1786.41 477.282 1776.57 477.282C1766.88 477.282 1759.19 481.148 1753.49 488.879C1747.8 496.529 1744.95 508.003 1744.95 523.303ZM1890.7 455.92L1891.56 471.179C1901.32 459.379 1914.14 453.479 1930.01 453.479C1957.51 453.479 1971.51 469.226 1972 500.72V588H1942.34V502.429C1942.34 494.047 1940.51 487.862 1936.84 483.874C1933.26 479.805 1927.36 477.771 1919.14 477.771C1907.18 477.771 1898.27 483.182 1892.41 494.006V588H1862.75V455.92H1890.7ZM2076.37 552.111C2076.37 546.822 2074.17 542.793 2069.78 540.026C2065.47 537.259 2058.26 534.818 2048.17 532.702C2038.08 530.586 2029.66 527.901 2022.9 524.646C2008.09 517.484 2000.69 507.108 2000.69 493.518C2000.69 482.124 2005.49 472.603 2015.09 464.953C2024.69 457.303 2036.9 453.479 2051.71 453.479C2067.5 453.479 2080.24 457.385 2089.92 465.197C2099.69 473.01 2104.57 483.142 2104.57 495.593H2074.91C2074.91 489.896 2072.79 485.176 2068.56 481.433C2064.33 477.608 2058.71 475.695 2051.71 475.695C2045.2 475.695 2039.87 477.201 2035.72 480.212C2031.65 483.223 2029.62 487.251 2029.62 492.297C2029.62 496.854 2031.53 500.394 2035.35 502.917C2039.18 505.44 2046.91 508.003 2058.55 510.607C2070.19 513.13 2079.3 516.182 2085.89 519.763C2092.56 523.262 2097.49 527.494 2100.66 532.458C2103.92 537.422 2105.54 543.444 2105.54 550.524C2105.54 562.406 2100.62 572.049 2090.77 579.455C2080.93 586.779 2068.03 590.441 2052.08 590.441C2041.25 590.441 2031.61 588.488 2023.15 584.582C2014.68 580.676 2008.09 575.305 2003.37 568.469C1998.65 561.633 1996.29 554.268 1996.29 546.374H2025.1C2025.51 553.373 2028.15 558.785 2033.04 562.609C2037.92 566.353 2044.39 568.225 2052.44 568.225C2060.26 568.225 2066.2 566.76 2070.27 563.83C2074.34 560.819 2076.37 556.913 2076.37 552.111Z" fill="#F2D478"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="2536" height="1942" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="315.779" y="370.5" width="1819.77" height="249.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="15"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="1222" y1="777" x2="1222" y2="1842" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0"/>
-<stop offset="1" stop-color="white"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Export.svg b/public/Features/ClicksForms/Export.svg
deleted file mode 100644
index b232d2c..0000000
--- a/public/Features/ClicksForms/Export.svg
+++ /dev/null
@@ -1,58 +0,0 @@
-<svg width="1843" height="912" viewBox="0 0 1843 912" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" y="2" width="1835" height="894" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M292.469 558H286.463V486.906H292.469V558ZM316.004 505.168L316.199 514.201C318.185 510.946 320.659 508.472 323.621 506.779C326.583 505.054 329.855 504.191 333.436 504.191C339.1 504.191 343.315 505.786 346.082 508.977C348.849 512.167 350.249 516.952 350.281 523.332V558H344.471V523.283C344.438 518.563 343.429 515.048 341.443 512.736C339.49 510.425 336.349 509.27 332.02 509.27C328.406 509.27 325.2 510.409 322.4 512.688C319.633 514.934 317.583 517.977 316.248 521.818V558H310.438V505.168H316.004ZM423.084 558C422.498 556.34 422.124 553.882 421.961 550.627C419.91 553.296 417.29 555.363 414.1 556.828C410.942 558.26 407.589 558.977 404.041 558.977C398.963 558.977 394.845 557.561 391.688 554.729C388.562 551.896 387 548.316 387 543.986C387 538.843 389.132 534.774 393.396 531.779C397.693 528.785 403.667 527.287 411.316 527.287H421.912V521.281C421.912 517.505 420.74 514.543 418.396 512.395C416.085 510.214 412.7 509.123 408.24 509.123C404.171 509.123 400.802 510.165 398.133 512.248C395.464 514.331 394.129 516.838 394.129 519.768L388.27 519.719C388.27 515.52 390.223 511.89 394.129 508.83C398.035 505.738 402.837 504.191 408.533 504.191C414.425 504.191 419.064 505.673 422.449 508.635C425.867 511.564 427.625 515.666 427.723 520.939V545.939C427.723 551.05 428.26 554.875 429.334 557.414V558H423.084ZM404.725 553.801C408.631 553.801 412.114 552.857 415.174 550.969C418.266 549.081 420.512 546.558 421.912 543.4V531.779H411.463C405.636 531.844 401.079 532.919 397.791 535.002C394.503 537.053 392.859 539.885 392.859 543.498C392.859 546.46 393.95 548.918 396.131 550.871C398.344 552.824 401.209 553.801 404.725 553.801ZM471.863 558V509.953H463.123V505.168H471.863V498.771C471.863 493.368 473.23 489.217 475.965 486.32C478.732 483.423 482.573 481.975 487.488 481.975C489.702 481.975 491.769 482.251 493.689 482.805L493.25 487.688C491.622 487.297 489.848 487.102 487.928 487.102C484.705 487.102 482.199 488.111 480.408 490.129C478.618 492.115 477.723 494.947 477.723 498.625V505.168H490.32V509.953H477.723V558H471.863ZM497.547 530.803C497.547 525.725 498.523 521.151 500.477 517.082C502.462 513.013 505.245 509.855 508.826 507.609C512.439 505.331 516.525 504.191 521.082 504.191C528.113 504.191 533.81 506.665 538.172 511.613C542.534 516.529 544.715 523.055 544.715 531.193V532.414C544.715 537.525 543.722 542.131 541.736 546.232C539.783 550.301 537.016 553.443 533.436 555.656C529.855 557.87 525.77 558.977 521.18 558.977C514.181 558.977 508.484 556.519 504.09 551.604C499.728 546.656 497.547 540.113 497.547 531.975V530.803ZM503.406 532.414C503.406 538.729 505.034 543.921 508.289 547.99C511.577 552.027 515.874 554.045 521.18 554.045C526.453 554.045 530.717 552.027 533.973 547.99C537.26 543.921 538.904 538.566 538.904 531.926V530.803C538.904 526.766 538.156 523.072 536.658 519.719C535.161 516.366 533.061 513.778 530.359 511.955C527.658 510.1 524.565 509.172 521.082 509.172C515.874 509.172 511.626 511.223 508.338 515.324C505.05 519.393 503.406 524.732 503.406 531.34V532.414ZM581.238 510.148C580.001 509.921 578.683 509.807 577.283 509.807C573.637 509.807 570.545 510.832 568.006 512.883C565.499 514.901 563.709 517.847 562.635 521.721V558H556.824V505.168H562.537L562.635 513.566C565.727 507.316 570.691 504.191 577.527 504.191C579.155 504.191 580.441 504.403 581.385 504.826L581.238 510.148ZM595.838 505.168L596.033 513.762C597.986 510.572 600.428 508.179 603.357 506.584C606.287 504.989 609.542 504.191 613.123 504.191C621.456 504.191 626.746 507.609 628.992 514.445C630.88 511.158 633.403 508.635 636.561 506.877C639.718 505.087 643.201 504.191 647.01 504.191C658.338 504.191 664.116 510.376 664.344 522.746V558H658.484V523.186C658.452 518.465 657.426 514.966 655.408 512.688C653.423 510.409 650.167 509.27 645.643 509.27C641.443 509.335 637.895 510.702 634.998 513.371C632.101 516.008 630.49 519.23 630.164 523.039V558H624.305V522.746C624.272 518.221 623.198 514.852 621.082 512.639C618.999 510.393 615.776 509.27 611.414 509.27C607.736 509.27 604.578 510.327 601.941 512.443C599.305 514.527 597.352 517.635 596.082 521.77V558H590.223V505.168H595.838ZM712.537 558C711.951 556.34 711.577 553.882 711.414 550.627C709.363 553.296 706.743 555.363 703.553 556.828C700.395 558.26 697.042 558.977 693.494 558.977C688.416 558.977 684.298 557.561 681.141 554.729C678.016 551.896 676.453 548.316 676.453 543.986C676.453 538.843 678.585 534.774 682.85 531.779C687.146 528.785 693.12 527.287 700.77 527.287H711.365V521.281C711.365 517.505 710.193 514.543 707.85 512.395C705.538 510.214 702.153 509.123 697.693 509.123C693.624 509.123 690.255 510.165 687.586 512.248C684.917 514.331 683.582 516.838 683.582 519.768L677.723 519.719C677.723 515.52 679.676 511.89 683.582 508.83C687.488 505.738 692.29 504.191 697.986 504.191C703.878 504.191 708.517 505.673 711.902 508.635C715.32 511.564 717.078 515.666 717.176 520.939V545.939C717.176 551.05 717.713 554.875 718.787 557.414V558H712.537ZM694.178 553.801C698.084 553.801 701.567 552.857 704.627 550.969C707.719 549.081 709.965 546.558 711.365 543.4V531.779H700.916C695.089 531.844 690.532 532.919 687.244 535.002C683.956 537.053 682.312 539.885 682.312 543.498C682.312 546.46 683.403 548.918 685.584 550.871C687.798 552.824 690.662 553.801 694.178 553.801ZM741.883 491.643V505.168H752.82V509.953H741.883V545.158C741.883 548.088 742.404 550.269 743.445 551.701C744.52 553.133 746.294 553.85 748.768 553.85C749.744 553.85 751.323 553.687 753.504 553.361L753.748 558.146C752.218 558.7 750.135 558.977 747.498 558.977C743.494 558.977 740.581 557.821 738.758 555.51C736.935 553.166 736.023 549.732 736.023 545.207V509.953H726.307V505.168H736.023V491.643H741.883ZM798.328 491.643V505.168H809.266V509.953H798.328V545.158C798.328 548.088 798.849 550.269 799.891 551.701C800.965 553.133 802.739 553.85 805.213 553.85C806.189 553.85 807.768 553.687 809.949 553.361L810.193 558.146C808.663 558.7 806.58 558.977 803.943 558.977C799.939 558.977 797.026 557.821 795.203 555.51C793.38 553.166 792.469 549.732 792.469 545.207V509.953H782.752V505.168H792.469V491.643H798.328ZM827.186 514.104C829.106 510.946 831.564 508.505 834.559 506.779C837.553 505.054 840.825 504.191 844.373 504.191C850.037 504.191 854.253 505.786 857.02 508.977C859.786 512.167 861.186 516.952 861.219 523.332V558H855.408V523.283C855.376 518.563 854.367 515.048 852.381 512.736C850.428 510.425 847.286 509.27 842.957 509.27C839.344 509.27 836.137 510.409 833.338 512.688C830.571 514.934 828.52 517.977 827.186 521.818V558H821.375V483H827.186V514.104ZM909.607 558C909.021 556.34 908.647 553.882 908.484 550.627C906.434 553.296 903.813 555.363 900.623 556.828C897.465 558.26 894.113 558.977 890.564 558.977C885.486 558.977 881.368 557.561 878.211 554.729C875.086 551.896 873.523 548.316 873.523 543.986C873.523 538.843 875.656 534.774 879.92 531.779C884.217 528.785 890.19 527.287 897.84 527.287H908.436V521.281C908.436 517.505 907.264 514.543 904.92 512.395C902.609 510.214 899.223 509.123 894.764 509.123C890.695 509.123 887.326 510.165 884.656 512.248C881.987 514.331 880.652 516.838 880.652 519.768L874.793 519.719C874.793 515.52 876.746 511.89 880.652 508.83C884.559 505.738 889.36 504.191 895.057 504.191C900.949 504.191 905.587 505.673 908.973 508.635C912.391 511.564 914.148 515.666 914.246 520.939V545.939C914.246 551.05 914.783 554.875 915.857 557.414V558H909.607ZM891.248 553.801C895.154 553.801 898.637 552.857 901.697 550.969C904.79 549.081 907.036 546.558 908.436 543.4V531.779H897.986C892.16 531.844 887.602 532.919 884.314 535.002C881.027 537.053 879.383 539.885 879.383 543.498C879.383 546.46 880.473 548.918 882.654 550.871C884.868 552.824 887.732 553.801 891.248 553.801ZM938.953 491.643V505.168H949.891V509.953H938.953V545.158C938.953 548.088 939.474 550.269 940.516 551.701C941.59 553.133 943.364 553.85 945.838 553.85C946.814 553.85 948.393 553.687 950.574 553.361L950.818 558.146C949.288 558.7 947.205 558.977 944.568 558.977C940.564 558.977 937.651 557.821 935.828 555.51C934.005 553.166 933.094 549.732 933.094 545.207V509.953H923.377V505.168H933.094V491.643H938.953ZM998.963 545.842L999.842 550.383L1001.01 545.598L1013.71 505.168H1018.69L1031.24 545.256L1032.61 550.822L1033.73 545.695L1044.57 505.168H1050.62L1035.24 558H1030.26L1016.69 516.105L1016.05 513.225L1015.42 516.154L1002.09 558H997.107L981.775 505.168H987.781L998.963 545.842ZM1058.48 530.803C1058.48 525.725 1059.46 521.151 1061.41 517.082C1063.4 513.013 1066.18 509.855 1069.76 507.609C1073.38 505.331 1077.46 504.191 1082.02 504.191C1089.05 504.191 1094.75 506.665 1099.11 511.613C1103.47 516.529 1105.65 523.055 1105.65 531.193V532.414C1105.65 537.525 1104.66 542.131 1102.67 546.232C1100.72 550.301 1097.95 553.443 1094.37 555.656C1090.79 557.87 1086.71 558.977 1082.12 558.977C1075.12 558.977 1069.42 556.519 1065.03 551.604C1060.67 546.656 1058.48 540.113 1058.48 531.975V530.803ZM1064.34 532.414C1064.34 538.729 1065.97 543.921 1069.23 547.99C1072.51 552.027 1076.81 554.045 1082.12 554.045C1087.39 554.045 1091.65 552.027 1094.91 547.99C1098.2 543.921 1099.84 538.566 1099.84 531.926V530.803C1099.84 526.766 1099.09 523.072 1097.6 519.719C1096.1 516.366 1094 513.778 1091.3 511.955C1088.6 510.1 1085.5 509.172 1082.02 509.172C1076.81 509.172 1072.56 511.223 1069.28 515.324C1065.99 519.393 1064.34 524.732 1064.34 531.34V532.414ZM1142.18 510.148C1140.94 509.921 1139.62 509.807 1138.22 509.807C1134.57 509.807 1131.48 510.832 1128.94 512.883C1126.44 514.901 1124.65 517.847 1123.57 521.721V558H1117.76V505.168H1123.47L1123.57 513.566C1126.66 507.316 1131.63 504.191 1138.46 504.191C1140.09 504.191 1141.38 504.403 1142.32 504.826L1142.18 510.148ZM1164 531.389L1157.31 537.834V558H1151.45V483H1157.31V530.998L1162.83 525.041L1183.04 505.168H1190.42L1168.01 527.434L1192.37 558H1185.39L1164 531.389ZM1232.12 544.572C1232.12 541.675 1230.95 539.348 1228.6 537.59C1226.29 535.832 1222.79 534.465 1218.1 533.488C1213.42 532.479 1209.77 531.34 1207.17 530.07C1204.59 528.768 1202.67 527.189 1201.4 525.334C1200.17 523.479 1199.55 521.232 1199.55 518.596C1199.55 514.429 1201.29 510.995 1204.77 508.293C1208.26 505.559 1212.72 504.191 1218.15 504.191C1224.04 504.191 1228.76 505.656 1232.31 508.586C1235.89 511.483 1237.68 515.275 1237.68 519.963H1231.82C1231.82 516.87 1230.52 514.299 1227.92 512.248C1225.35 510.197 1222.09 509.172 1218.15 509.172C1214.31 509.172 1211.22 510.035 1208.88 511.76C1206.56 513.452 1205.41 515.666 1205.41 518.4C1205.41 521.037 1206.37 523.088 1208.29 524.553C1210.24 525.985 1213.77 527.303 1218.88 528.508C1224.03 529.712 1227.87 530.998 1230.41 532.365C1232.98 533.732 1234.88 535.376 1236.12 537.297C1237.36 539.217 1237.98 541.545 1237.98 544.279C1237.98 548.739 1236.17 552.303 1232.56 554.973C1228.98 557.642 1224.29 558.977 1218.49 558.977C1212.34 558.977 1207.35 557.495 1203.5 554.533C1199.7 551.538 1197.79 547.762 1197.79 543.205H1203.65C1203.88 546.623 1205.31 549.292 1207.95 551.213C1210.62 553.101 1214.13 554.045 1218.49 554.045C1222.56 554.045 1225.85 553.15 1228.36 551.359C1230.86 549.569 1232.12 547.307 1232.12 544.572ZM1279.68 558V509.953H1270.94V505.168H1279.68V498.771C1279.68 493.368 1281.04 489.217 1283.78 486.32C1286.54 483.423 1290.39 481.975 1295.3 481.975C1297.51 481.975 1299.58 482.251 1301.5 482.805L1301.06 487.688C1299.43 487.297 1297.66 487.102 1295.74 487.102C1292.52 487.102 1290.01 488.111 1288.22 490.129C1286.43 492.115 1285.54 494.947 1285.54 498.625V505.168H1298.13V509.953H1285.54V558H1279.68ZM1305.36 530.803C1305.36 525.725 1306.34 521.151 1308.29 517.082C1310.27 513.013 1313.06 509.855 1316.64 507.609C1320.25 505.331 1324.34 504.191 1328.89 504.191C1335.93 504.191 1341.62 506.665 1345.98 511.613C1350.35 516.529 1352.53 523.055 1352.53 531.193V532.414C1352.53 537.525 1351.53 542.131 1349.55 546.232C1347.6 550.301 1344.83 553.443 1341.25 555.656C1337.67 557.87 1333.58 558.977 1328.99 558.977C1321.99 558.977 1316.3 556.519 1311.9 551.604C1307.54 546.656 1305.36 540.113 1305.36 531.975V530.803ZM1311.22 532.414C1311.22 538.729 1312.85 543.921 1316.1 547.99C1319.39 552.027 1323.69 554.045 1328.99 554.045C1334.27 554.045 1338.53 552.027 1341.79 547.99C1345.07 543.921 1346.72 538.566 1346.72 531.926V530.803C1346.72 526.766 1345.97 523.072 1344.47 519.719C1342.97 516.366 1340.87 513.778 1338.17 511.955C1335.47 510.1 1332.38 509.172 1328.89 509.172C1323.69 509.172 1319.44 511.223 1316.15 515.324C1312.86 519.393 1311.22 524.732 1311.22 531.34V532.414ZM1389.05 510.148C1387.81 509.921 1386.5 509.807 1385.1 509.807C1381.45 509.807 1378.36 510.832 1375.82 512.883C1373.31 514.901 1371.52 517.847 1370.45 521.721V558H1364.64V505.168H1370.35L1370.45 513.566C1373.54 507.316 1378.5 504.191 1385.34 504.191C1386.97 504.191 1388.25 504.403 1389.2 504.826L1389.05 510.148ZM1439.39 549.602L1454.82 505.168H1461.12L1438.56 566.984L1437.39 569.719C1434.49 576.132 1430.02 579.338 1423.96 579.338C1422.56 579.338 1421.07 579.11 1419.47 578.654L1419.42 573.82L1422.45 574.113C1425.31 574.113 1427.62 573.397 1429.38 571.965C1431.17 570.565 1432.69 568.14 1433.92 564.689L1436.51 557.561L1416.59 505.168H1422.99L1439.39 549.602ZM1466.2 530.803C1466.2 525.725 1467.18 521.151 1469.13 517.082C1471.11 513.013 1473.9 509.855 1477.48 507.609C1481.09 505.331 1485.18 504.191 1489.73 504.191C1496.77 504.191 1502.46 506.665 1506.82 511.613C1511.19 516.529 1513.37 523.055 1513.37 531.193V532.414C1513.37 537.525 1512.37 542.131 1510.39 546.232C1508.44 550.301 1505.67 553.443 1502.09 555.656C1498.51 557.87 1494.42 558.977 1489.83 558.977C1482.83 558.977 1477.14 556.519 1472.74 551.604C1468.38 546.656 1466.2 540.113 1466.2 531.975V530.803ZM1472.06 532.414C1472.06 538.729 1473.69 543.921 1476.94 547.99C1480.23 552.027 1484.53 554.045 1489.83 554.045C1495.11 554.045 1499.37 552.027 1502.62 547.99C1505.91 543.921 1507.56 538.566 1507.56 531.926V530.803C1507.56 526.766 1506.81 523.072 1505.31 519.719C1503.81 516.366 1501.71 513.778 1499.01 511.955C1496.31 510.1 1493.22 509.172 1489.73 509.172C1484.53 509.172 1480.28 511.223 1476.99 515.324C1473.7 519.393 1472.06 524.732 1472.06 531.34V532.414ZM1559.46 551.311C1555.95 556.421 1550.33 558.977 1542.62 558.977C1536.98 558.977 1532.7 557.349 1529.77 554.094C1526.84 550.806 1525.35 545.956 1525.28 539.543V505.168H1531.09V538.811C1531.09 548.869 1535.16 553.898 1543.3 553.898C1551.76 553.898 1557.12 550.399 1559.36 543.4V505.168H1565.22V558H1559.56L1559.46 551.311Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<circle cx="467.003" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
-<path d="M382.516 719.519C388.578 719.519 392.994 717.674 395.761 713.984C398.661 710.161 400.111 705.68 400.111 700.54V671.478C400.111 665.284 400.704 659.814 401.89 655.069C403.076 650.193 405.185 646.173 408.216 643.01C411.248 639.715 415.465 637.277 420.869 635.695C426.273 633.982 433.192 633.125 441.627 633.125H443.011V652.104C439.189 652.104 435.96 652.368 433.324 652.895C430.688 653.422 428.579 654.411 426.998 655.86C425.416 657.178 424.23 659.023 423.439 661.396C422.78 663.636 422.451 666.536 422.451 670.095V698.365C422.451 706.273 421.396 712.6 419.287 717.344C417.31 721.957 413.884 725.78 409.007 728.811C413.884 731.842 417.31 735.73 419.287 740.475C421.396 745.22 422.451 751.48 422.451 759.256V787.725C422.451 791.284 422.78 794.183 423.439 796.424C424.23 798.664 425.416 800.444 426.998 801.762C428.579 803.211 430.688 804.2 433.324 804.727C435.96 805.254 439.189 805.518 443.011 805.518V824.497C434.181 824.497 426.998 823.706 421.462 822.124C415.927 820.543 411.577 818.105 408.414 814.81C405.251 811.646 403.076 807.692 401.89 802.948C400.704 798.203 400.111 792.667 400.111 786.341V757.082C400.111 752.073 398.661 747.724 395.761 744.034C392.994 740.212 388.578 738.3 382.516 738.3V719.519Z" fill="white"/>
-<path d="M551.558 738.3C545.496 738.3 541.014 740.212 538.115 744.034C535.347 747.724 533.963 752.073 533.963 757.082V786.341C533.963 792.667 533.37 798.203 532.184 802.948C530.998 807.692 528.823 811.646 525.66 814.81C522.497 818.105 518.147 820.543 512.612 822.124C507.076 823.706 499.893 824.497 491.063 824.497V805.518C498.707 805.518 504.045 804.266 507.076 801.762C510.108 799.389 511.623 794.71 511.623 787.725V759.256C511.623 751.48 512.612 745.22 514.589 740.475C516.698 735.73 520.19 731.842 525.067 728.811C520.19 725.78 516.698 721.957 514.589 717.344C512.612 712.6 511.623 706.273 511.623 698.365V670.095C511.623 666.536 511.228 663.636 510.437 661.396C509.778 659.023 508.658 657.178 507.076 655.86C505.495 654.411 503.386 653.422 500.75 652.895C498.114 652.368 494.885 652.104 491.063 652.104V633.125H492.447C500.882 633.125 507.801 633.982 513.205 635.695C518.609 637.277 522.826 639.715 525.858 643.01C528.889 646.173 530.998 650.193 532.184 655.069C533.37 659.814 533.963 665.284 533.963 671.478V700.54C533.963 705.68 535.347 710.161 538.115 713.984C541.014 717.674 545.496 719.519 551.558 719.519V738.3Z" fill="white"/>
-<circle cx="772.001" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
-<path d="M712.149 700.099L729.188 673.849H748.684L722.28 711.765C727.807 718.929 733.077 726.195 738.092 733.563C743.209 740.829 747.405 747.686 750.679 754.133H730.57C729.649 752.189 728.421 749.989 726.886 747.533C725.453 744.974 723.867 742.364 722.127 739.704C720.489 736.94 718.75 734.228 716.908 731.568C715.066 728.907 713.275 726.4 711.535 724.046C707.953 728.651 704.422 733.768 700.943 739.397C697.566 744.923 694.751 749.835 692.5 754.133H673.465C675 751.063 676.842 747.788 678.991 744.309C681.14 740.829 683.443 737.299 685.899 733.717C688.355 730.033 690.862 726.4 693.421 722.818C696.082 719.134 698.691 715.654 701.25 712.379L674.693 673.849H695.109L712.149 700.099Z" fill="white"/>
-<path d="M783.729 733.717C783.934 735.457 784.036 736.736 784.036 737.554C784.036 738.373 784.036 739.192 784.036 740.011C784.036 746.356 783.013 752.905 780.966 759.66C779.022 766.414 776.259 772.81 772.677 778.848L758.093 774.857C760.55 768.921 762.187 763.088 763.006 757.357C763.927 751.728 764.387 746.765 764.387 742.467C764.387 741.239 764.336 739.704 764.234 737.862C764.234 736.019 764.183 734.638 764.08 733.717H783.729Z" fill="white"/>
-<path d="M871.164 673.849C862.875 704.346 853.255 731.977 842.305 756.743C840.258 761.348 838.16 765.288 836.011 768.563C833.862 771.838 831.457 774.55 828.796 776.699C826.135 778.848 823.167 780.383 819.892 781.304C816.618 782.328 812.831 782.839 808.533 782.839C805.667 782.839 802.802 782.532 799.936 781.918C797.173 781.304 795.075 780.639 793.643 779.923L797.02 765.032C800.704 766.465 804.337 767.182 807.919 767.182C812.729 767.182 816.464 766.005 819.125 763.651C821.888 761.399 824.293 757.869 826.34 753.059C820.506 741.802 814.878 729.521 809.454 716.217C804.132 702.913 799.373 688.79 795.178 673.849H814.98C816.004 678.147 817.232 682.803 818.664 687.818C820.199 692.832 821.837 697.949 823.577 703.169C825.316 708.286 827.158 713.403 829.103 718.519C831.047 723.636 832.992 728.395 834.936 732.796C838.211 723.688 841.281 714.017 844.147 703.783C847.012 693.447 849.622 683.468 851.976 673.849H871.164Z" fill="white"/>
-<circle cx="1077" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
-<path d="M965.803 722.538L1031.96 694.6L1037.03 709.797L985.605 730.367L1037.03 750.937L1031.96 766.134L965.803 738.196V722.538Z" fill="white"/>
-<path d="M1059.96 802.516H1040.92L1092.81 653.92H1111.54L1059.96 802.516Z" fill="white"/>
-<path d="M1188.14 738.196L1121.98 766.134L1116.91 750.937L1168.34 730.367L1116.91 709.797L1121.98 694.6L1188.14 722.538V738.196Z" fill="white"/>
-<circle cx="1382" cy="728.003" r="133.003" fill="#D46899" fill-opacity="0.75"/>
-<path d="M1286.95 772.353C1286.95 775.764 1285.78 778.541 1283.44 780.685C1281.2 782.828 1278.47 783.9 1275.26 783.9C1271.94 783.9 1269.17 782.828 1266.92 780.685C1264.68 778.541 1263.56 775.764 1263.56 772.353C1263.56 768.943 1264.68 766.165 1266.92 764.022C1269.17 761.781 1271.94 760.66 1275.26 760.66C1278.47 760.66 1281.2 761.781 1283.44 764.022C1285.78 766.165 1286.95 768.943 1286.95 772.353ZM1349.45 741.805C1349.45 733.814 1348.43 728.065 1346.38 724.557C1344.43 720.952 1340.73 719.149 1335.27 719.149C1333.33 719.149 1331.18 719.295 1328.84 719.588C1326.51 719.88 1324.75 720.124 1323.58 720.318V782H1305.9V708.041C1309.31 707.066 1313.74 706.14 1319.2 705.264C1324.75 704.387 1330.6 703.948 1336.74 703.948C1342 703.948 1346.29 704.63 1349.6 705.994C1353.01 707.359 1355.84 709.161 1358.08 711.402C1359.15 710.623 1360.51 709.795 1362.17 708.918C1363.83 708.041 1365.68 707.261 1367.72 706.579C1369.77 705.799 1371.91 705.166 1374.15 704.679C1376.49 704.192 1378.83 703.948 1381.17 703.948C1387.11 703.948 1391.99 704.825 1395.79 706.579C1399.68 708.236 1402.71 710.623 1404.85 713.741C1407.09 716.762 1408.6 720.465 1409.38 724.85C1410.26 729.137 1410.7 733.863 1410.7 739.028V782H1393.01V741.805C1393.01 733.814 1392.04 728.065 1390.09 724.557C1388.14 720.952 1384.39 719.149 1378.83 719.149C1376.01 719.149 1373.33 719.636 1370.79 720.611C1368.26 721.488 1366.36 722.365 1365.09 723.242C1365.87 725.678 1366.41 728.26 1366.7 730.989C1366.99 733.717 1367.14 736.64 1367.14 739.758V782H1349.45V741.805ZM1446.25 743.559C1446.25 751.354 1448.1 757.493 1451.8 761.975C1455.51 766.36 1460.62 768.553 1467.15 768.553C1469.98 768.553 1472.36 768.455 1474.31 768.261C1476.36 767.968 1478.01 767.676 1479.28 767.384V723.534C1477.72 722.462 1475.63 721.488 1473 720.611C1470.46 719.636 1467.73 719.149 1464.81 719.149C1458.38 719.149 1453.65 721.342 1450.63 725.727C1447.71 730.112 1446.25 736.056 1446.25 743.559ZM1496.97 779.661C1493.46 780.733 1489.03 781.708 1483.67 782.585C1478.4 783.462 1472.85 783.9 1467 783.9C1460.96 783.9 1455.55 782.974 1450.78 781.123C1446 779.272 1441.91 776.641 1438.5 773.23C1435.19 769.722 1432.61 765.532 1430.75 760.66C1429 755.69 1428.12 750.136 1428.12 743.997C1428.12 737.956 1428.85 732.499 1430.32 727.627C1431.88 722.657 1434.12 718.418 1437.04 714.91C1439.96 711.402 1443.52 708.723 1447.71 706.871C1451.9 704.922 1456.72 703.948 1462.18 703.948C1465.88 703.948 1469.15 704.387 1471.97 705.264C1474.8 706.14 1477.24 707.115 1479.28 708.187V671.499L1496.97 668.576V779.661Z" fill="white"/>
-</g>
-<g filter="url(#filter2_d)">
-<path d="M677.679 128.654H604.681V183.342H690.008V208H573.797V30.2656H689.153V55.168H604.681V104.24H677.679V128.654ZM759.71 119.377L784.856 75.9199H817.815L777.41 140.983L819.158 208H786.443L760.076 162.834L733.831 208H700.872L742.62 140.983L702.337 75.9199H735.052L759.71 119.377ZM953.68 143.303C953.68 163.729 949.041 180.046 939.764 192.253C930.486 204.379 918.035 210.441 902.41 210.441C887.924 210.441 876.328 205.681 867.62 196.159V258.781H837.957V75.9199H865.301L866.521 89.3477C875.229 78.7682 887.07 73.4785 902.044 73.4785C918.157 73.4785 930.771 79.5007 939.886 91.5449C949.082 103.508 953.68 120.15 953.68 141.472V143.303ZM924.139 140.739C924.139 127.556 921.494 117.098 916.204 109.367C910.996 101.636 903.509 97.7705 893.743 97.7705C881.618 97.7705 872.91 102.775 867.62 112.785V171.379C872.991 181.633 881.78 186.76 893.987 186.76C903.427 186.76 910.792 182.976 916.082 175.407C921.453 167.757 924.139 156.201 924.139 140.739ZM973.333 140.739C973.333 127.8 975.896 116.162 981.023 105.827C986.15 95.4105 993.353 87.4352 1002.63 81.9014C1011.91 76.2861 1022.57 73.4785 1034.61 73.4785C1052.43 73.4785 1066.88 79.2158 1077.95 90.6904C1089.1 102.165 1095.12 117.383 1096.01 136.345L1096.14 143.303C1096.14 156.324 1093.61 167.961 1088.57 178.215C1083.6 188.469 1076.44 196.403 1067.08 202.019C1057.81 207.634 1047.06 210.441 1034.86 210.441C1016.22 210.441 1001.29 204.257 990.057 191.887C978.908 179.436 973.333 162.875 973.333 142.204V140.739ZM1003 143.303C1003 156.893 1005.8 167.554 1011.42 175.285C1017.03 182.935 1024.85 186.76 1034.86 186.76C1044.87 186.76 1052.64 182.854 1058.17 175.041C1063.79 167.229 1066.59 155.795 1066.59 140.739C1066.59 127.393 1063.71 116.813 1057.93 109.001C1052.23 101.188 1044.46 97.2822 1034.61 97.2822C1024.93 97.2822 1017.24 101.148 1011.54 108.879C1005.84 116.529 1003 128.003 1003 143.303ZM1190.37 103.02C1186.47 102.368 1182.44 102.043 1178.29 102.043C1164.7 102.043 1155.54 107.251 1150.82 117.668V208H1121.16V75.9199H1149.48L1150.21 90.6904C1157.37 79.2158 1167.3 73.4785 1180 73.4785C1184.23 73.4785 1187.73 74.0482 1190.5 75.1875L1190.37 103.02ZM1252.39 43.8154V75.9199H1275.7V97.8926H1252.39V171.623C1252.39 176.669 1253.36 180.331 1255.32 182.609C1257.35 184.807 1260.93 185.905 1266.06 185.905C1269.48 185.905 1272.93 185.498 1276.43 184.685V207.634C1269.68 209.506 1263.17 210.441 1256.9 210.441C1234.12 210.441 1222.72 197.868 1222.72 172.722V97.8926H1200.99V75.9199H1222.72V43.8154H1252.39ZM385.687 344.519H351.263V413H320.379V235.266H382.879C403.387 235.266 419.215 239.864 430.364 249.06C441.513 258.256 447.088 271.561 447.088 288.977C447.088 300.858 444.199 310.827 438.421 318.884C432.724 326.859 424.749 333.003 414.495 337.316L454.412 411.413V413H421.331L385.687 344.519ZM351.263 319.738H383.001C393.418 319.738 401.556 317.134 407.415 311.926C413.274 306.636 416.204 299.434 416.204 290.319C416.204 280.798 413.478 273.433 408.025 268.225C402.654 263.016 394.598 260.331 383.855 260.168H351.263V319.738ZM531.683 415.441C512.884 415.441 497.625 409.541 485.906 397.741C474.269 385.86 468.45 370.072 468.45 350.378V346.716C468.45 333.532 470.973 321.773 476.019 311.438C481.146 301.021 488.307 292.924 497.503 287.146C506.699 281.368 516.953 278.479 528.265 278.479C546.25 278.479 560.125 284.216 569.891 295.69C579.738 307.165 584.661 323.4 584.661 344.396V356.359H498.357C499.253 367.264 502.874 375.891 509.222 382.238C515.651 388.586 523.707 391.76 533.392 391.76C546.982 391.76 558.05 386.267 566.595 375.28L582.586 390.539C577.296 398.433 570.216 404.577 561.346 408.972C552.557 413.285 542.669 415.441 531.683 415.441ZM528.143 302.282C520.005 302.282 513.413 305.131 508.367 310.827C503.403 316.524 500.229 324.458 498.846 334.631H555.364V332.434C554.713 322.505 552.068 315.018 547.43 309.973C542.791 304.846 536.362 302.282 528.143 302.282ZM681.829 377.111C681.829 371.822 679.632 367.793 675.237 365.026C670.924 362.259 663.722 359.818 653.631 357.702C643.54 355.586 635.117 352.901 628.362 349.646C613.551 342.484 606.146 332.108 606.146 318.518C606.146 307.124 610.947 297.603 620.55 289.953C630.153 282.303 642.36 278.479 657.171 278.479C672.959 278.479 685.695 282.385 695.379 290.197C705.145 298.01 710.027 308.142 710.027 320.593H680.364C680.364 314.896 678.248 310.176 674.017 306.433C669.785 302.608 664.17 300.695 657.171 300.695C650.66 300.695 645.33 302.201 641.18 305.212C637.111 308.223 635.076 312.251 635.076 317.297C635.076 321.854 636.989 325.394 640.813 327.917C644.638 330.44 652.369 333.003 664.007 335.607C675.644 338.13 684.759 341.182 691.351 344.763C698.024 348.262 702.947 352.494 706.121 357.458C709.376 362.422 711.004 368.444 711.004 375.524C711.004 387.406 706.08 397.049 696.233 404.455C686.386 411.779 673.488 415.441 657.537 415.441C646.714 415.441 637.07 413.488 628.606 409.582C620.143 405.676 613.551 400.305 608.831 393.469C604.111 386.633 601.751 379.268 601.751 371.374H630.56C630.966 378.373 633.611 383.785 638.494 387.609C643.377 391.353 649.847 393.225 657.903 393.225C665.716 393.225 671.657 391.76 675.726 388.83C679.795 385.819 681.829 381.913 681.829 377.111ZM852.605 348.303C852.605 368.729 847.967 385.046 838.689 397.253C829.412 409.379 816.961 415.441 801.336 415.441C786.85 415.441 775.254 410.681 766.546 401.159V463.781H736.883V280.92H764.227L765.447 294.348C774.155 283.768 785.996 278.479 800.97 278.479C817.083 278.479 829.697 284.501 838.812 296.545C848.007 308.508 852.605 325.15 852.605 346.472V348.303ZM823.064 345.739C823.064 332.556 820.42 322.098 815.13 314.367C809.922 306.636 802.435 302.771 792.669 302.771C780.543 302.771 771.836 307.775 766.546 317.785V376.379C771.917 386.633 780.706 391.76 792.913 391.76C802.353 391.76 809.718 387.976 815.008 380.407C820.379 372.757 823.064 361.201 823.064 345.739ZM872.259 345.739C872.259 332.8 874.822 321.162 879.949 310.827C885.076 300.41 892.278 292.435 901.556 286.901C910.833 281.286 921.494 278.479 933.538 278.479C951.36 278.479 965.805 284.216 976.873 295.69C988.022 307.165 994.044 322.383 994.939 341.345L995.062 348.303C995.062 361.324 992.539 372.961 987.493 383.215C982.529 393.469 975.368 401.403 966.009 407.019C956.731 412.634 945.989 415.441 933.782 415.441C915.146 415.441 900.213 409.257 888.982 396.887C877.833 384.436 872.259 367.875 872.259 347.204V345.739ZM901.922 348.303C901.922 361.893 904.729 372.554 910.345 380.285C915.96 387.935 923.772 391.76 933.782 391.76C943.792 391.76 951.564 387.854 957.098 380.041C962.713 372.229 965.521 360.795 965.521 345.739C965.521 332.393 962.632 321.813 956.854 314.001C951.157 306.188 943.385 302.282 933.538 302.282C923.854 302.282 916.163 306.148 910.467 313.879C904.77 321.529 901.922 333.003 901.922 348.303ZM1047.67 280.92L1048.53 296.179C1058.29 284.379 1071.11 278.479 1086.98 278.479C1114.49 278.479 1128.48 294.226 1128.97 325.72V413H1099.31V327.429C1099.31 319.047 1097.48 312.862 1093.82 308.874C1090.24 304.805 1084.34 302.771 1076.12 302.771C1064.15 302.771 1055.24 308.182 1049.38 319.006V413H1019.72V280.92H1047.67ZM1233.34 377.111C1233.34 371.822 1231.15 367.793 1226.75 365.026C1222.44 362.259 1215.24 359.818 1205.14 357.702C1195.05 355.586 1186.63 352.901 1179.88 349.646C1165.06 342.484 1157.66 332.108 1157.66 318.518C1157.66 307.124 1162.46 297.603 1172.06 289.953C1181.67 282.303 1193.87 278.479 1208.68 278.479C1224.47 278.479 1237.21 282.385 1246.89 290.197C1256.66 298.01 1261.54 308.142 1261.54 320.593H1231.88C1231.88 314.896 1229.76 310.176 1225.53 306.433C1221.3 302.608 1215.68 300.695 1208.68 300.695C1202.17 300.695 1196.84 302.201 1192.69 305.212C1188.62 308.223 1186.59 312.251 1186.59 317.297C1186.59 321.854 1188.5 325.394 1192.33 327.917C1196.15 330.44 1203.88 333.003 1215.52 335.607C1227.16 338.13 1236.27 341.182 1242.86 344.763C1249.54 348.262 1254.46 352.494 1257.63 357.458C1260.89 362.422 1262.52 368.444 1262.52 375.524C1262.52 387.406 1257.59 397.049 1247.75 404.455C1237.9 411.779 1225 415.441 1209.05 415.441C1198.23 415.441 1188.58 413.488 1180.12 409.582C1171.66 405.676 1165.06 400.305 1160.34 393.469C1155.62 386.633 1153.26 379.268 1153.26 371.374H1182.07C1182.48 378.373 1185.12 383.785 1190.01 387.609C1194.89 391.353 1201.36 393.225 1209.42 393.225C1217.23 393.225 1223.17 391.76 1227.24 388.83C1231.31 385.819 1233.34 381.913 1233.34 377.111ZM1346.62 415.441C1327.83 415.441 1312.57 409.541 1300.85 397.741C1289.21 385.86 1283.39 370.072 1283.39 350.378V346.716C1283.39 333.532 1285.91 321.773 1290.96 311.438C1296.09 301.021 1303.25 292.924 1312.44 287.146C1321.64 281.368 1331.89 278.479 1343.21 278.479C1361.19 278.479 1375.07 284.216 1384.83 295.69C1394.68 307.165 1399.6 323.4 1399.6 344.396V356.359H1313.3C1314.19 367.264 1317.82 375.891 1324.16 382.238C1330.59 388.586 1338.65 391.76 1348.33 391.76C1361.92 391.76 1372.99 386.267 1381.54 375.28L1397.53 390.539C1392.24 398.433 1385.16 404.577 1376.29 408.972C1367.5 413.285 1357.61 415.441 1346.62 415.441ZM1343.08 302.282C1334.95 302.282 1328.35 305.131 1323.31 310.827C1318.34 316.524 1315.17 324.458 1313.79 334.631H1370.31V332.434C1369.65 322.505 1367.01 315.018 1362.37 309.973C1357.73 304.846 1351.3 302.282 1343.08 302.282ZM1496.77 377.111C1496.77 371.822 1494.57 367.793 1490.18 365.026C1485.87 362.259 1478.66 359.818 1468.57 357.702C1458.48 355.586 1450.06 352.901 1443.3 349.646C1428.49 342.484 1421.09 332.108 1421.09 318.518C1421.09 307.124 1425.89 297.603 1435.49 289.953C1445.09 282.303 1457.3 278.479 1472.11 278.479C1487.9 278.479 1500.64 282.385 1510.32 290.197C1520.09 298.01 1524.97 308.142 1524.97 320.593H1495.31C1495.31 314.896 1493.19 310.176 1488.96 306.433C1484.73 302.608 1479.11 300.695 1472.11 300.695C1465.6 300.695 1460.27 302.201 1456.12 305.212C1452.05 308.223 1450.02 312.251 1450.02 317.297C1450.02 321.854 1451.93 325.394 1455.75 327.917C1459.58 330.44 1467.31 333.003 1478.95 335.607C1490.59 338.13 1499.7 341.182 1506.29 344.763C1512.97 348.262 1517.89 352.494 1521.06 357.458C1524.32 362.422 1525.95 368.444 1525.95 375.524C1525.95 387.406 1521.02 397.049 1511.17 404.455C1501.33 411.779 1488.43 415.441 1472.48 415.441C1461.65 415.441 1452.01 413.488 1443.55 409.582C1435.08 405.676 1428.49 400.305 1423.77 393.469C1419.05 386.633 1416.69 379.268 1416.69 371.374H1445.5C1445.91 378.373 1448.55 383.785 1453.44 387.609C1458.32 391.353 1464.79 393.225 1472.84 393.225C1480.66 393.225 1486.6 391.76 1490.67 388.83C1494.74 385.819 1496.77 381.913 1496.77 377.111Z" fill="#D46899"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-48" width="1935" height="994" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="284" y="545" width="1281" height="366.007" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter2_d" x="290.379" y="0.265625" width="1265.57" height="493.516" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="15"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Forms.svg b/public/Features/ClicksForms/Forms.svg
deleted file mode 100644
index 52765d4..0000000
--- a/public/Features/ClicksForms/Forms.svg
+++ /dev/null
@@ -1,43 +0,0 @@
-<svg width="2444" height="896" viewBox="0 0 2444 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="2436" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<rect x="202" y="29" width="2039" height="98" rx="10" fill="black" fill-opacity="0.25"/>
-<rect x="136" y="161" width="2171" height="148" rx="10" fill="#A8A8A8" fill-opacity="0.45"/>
-<rect x="53" y="343" width="2337" height="203" rx="10" fill="#D0D0D0" fill-opacity="0.65"/>
-<rect x="136" y="580" width="2171" height="148" rx="10" fill="#A8A8A8" fill-opacity="0.45"/>
-<rect x="202" y="762" width="2039" height="98" rx="10" fill="black" fill-opacity="0.25"/>
-<path d="M1133.9 89.3594V162.162C1133.85 169.34 1132.27 175.59 1129.14 180.912C1126.02 186.234 1121.6 190.336 1115.88 193.217C1110.22 196.049 1103.7 197.465 1096.33 197.465C1085.1 197.465 1076.09 194.413 1069.3 188.31C1062.56 182.157 1059.07 173.661 1058.83 162.821V89.3594H1067.76V161.503C1067.76 170.487 1070.33 177.47 1075.46 182.45C1080.58 187.382 1087.54 189.848 1096.33 189.848C1105.12 189.848 1112.05 187.357 1117.13 182.377C1122.26 177.396 1124.82 170.463 1124.82 161.576V89.3594H1133.9ZM1220.69 157.182C1220.69 169.535 1217.96 179.35 1212.49 186.625C1207.02 193.852 1199.7 197.465 1190.52 197.465C1179.68 197.465 1171.38 193.656 1165.62 186.039V226.469H1156.9V116.752H1165.03L1165.47 127.958C1171.18 119.511 1179.46 115.287 1190.3 115.287C1199.77 115.287 1207.19 118.876 1212.56 126.054C1217.98 133.231 1220.69 143.192 1220.69 155.937V157.182ZM1211.91 155.644C1211.91 145.536 1209.83 137.553 1205.68 131.693C1201.53 125.834 1195.74 122.904 1188.32 122.904C1182.95 122.904 1178.34 124.198 1174.48 126.786C1170.62 129.374 1167.67 133.134 1165.62 138.065V176.078C1167.72 180.619 1170.72 184.086 1174.62 186.479C1178.53 188.871 1183.15 190.067 1188.47 190.067C1195.84 190.067 1201.58 187.138 1205.68 181.278C1209.83 175.37 1211.91 166.825 1211.91 155.644ZM1290.27 96.4639V116.752H1306.68V123.93H1290.27V176.737C1290.27 181.132 1291.06 184.403 1292.62 186.552C1294.23 188.7 1296.89 189.774 1300.6 189.774C1302.07 189.774 1304.43 189.53 1307.71 189.042L1308.07 196.22C1305.78 197.05 1302.65 197.465 1298.7 197.465C1292.69 197.465 1288.32 195.731 1285.59 192.265C1282.85 188.749 1281.49 183.598 1281.49 176.811V123.93H1266.91V116.752H1281.49V96.4639H1290.27ZM1318.55 155.204C1318.55 147.587 1320.01 140.727 1322.94 134.623C1325.92 128.52 1330.09 123.783 1335.46 120.414C1340.88 116.996 1347.01 115.287 1353.85 115.287C1364.4 115.287 1372.94 118.998 1379.48 126.42C1386.03 133.793 1389.3 143.583 1389.3 155.79V157.621C1389.3 165.287 1387.81 172.196 1384.83 178.349C1381.9 184.452 1377.75 189.164 1372.38 192.484C1367.01 195.805 1360.88 197.465 1354 197.465C1343.5 197.465 1334.95 193.778 1328.36 186.405C1321.82 178.983 1318.55 169.169 1318.55 156.962V155.204ZM1327.33 157.621C1327.33 167.094 1329.78 174.882 1334.66 180.985C1339.59 187.04 1346.04 190.067 1354 190.067C1361.91 190.067 1368.3 187.04 1373.18 180.985C1378.12 174.882 1380.58 166.85 1380.58 156.889V155.204C1380.58 149.149 1379.46 143.607 1377.21 138.578C1374.97 133.549 1371.82 129.667 1367.76 126.933C1363.71 124.149 1359.07 122.758 1353.85 122.758C1346.04 122.758 1339.66 125.834 1334.73 131.986C1329.8 138.09 1327.33 146.098 1327.33 156.01V157.621Z" fill="black"/>
-<path d="M913.736 755.567V799H904.728V692.359H941.056C952.14 692.359 960.88 695.191 967.276 700.855C973.722 706.52 976.944 714.308 976.944 724.22C976.944 734.229 973.844 741.969 967.643 747.438C961.49 752.857 952.555 755.567 940.836 755.567H913.736ZM913.736 747.95H941.056C949.796 747.95 956.461 745.875 961.051 741.725C965.641 737.574 967.936 731.788 967.936 724.366C967.936 716.993 965.641 711.134 961.051 706.788C956.51 702.394 950.04 700.147 941.642 700.05H913.736V747.95ZM1024.77 800.465C1018.03 800.465 1011.93 798.805 1006.46 795.484C1001.04 792.164 996.817 787.55 993.79 781.642C990.763 775.685 989.249 769.02 989.249 761.646V758.497C989.249 750.88 990.714 744.02 993.644 737.916C996.622 731.812 1000.75 727.027 1006.02 723.561C1011.29 720.045 1017.01 718.287 1023.16 718.287C1032.78 718.287 1040.4 721.583 1046.01 728.175C1051.68 734.718 1054.51 743.678 1054.51 755.055V759.962H997.965V761.646C997.965 770.631 1000.53 778.126 1005.66 784.132C1010.83 790.089 1017.33 793.067 1025.14 793.067C1029.83 793.067 1033.95 792.213 1037.52 790.504C1041.13 788.795 1044.4 786.061 1047.33 782.301L1052.82 786.476C1046.38 795.802 1037.03 800.465 1024.77 800.465ZM1023.16 725.758C1016.57 725.758 1011 728.175 1006.46 733.009C1001.97 737.843 999.234 744.337 998.258 752.491H1045.79V751.539C1045.55 743.922 1043.38 737.721 1039.27 732.936C1035.17 728.15 1029.8 725.758 1023.16 725.758ZM1108.19 727.223C1106.34 726.881 1104.36 726.71 1102.26 726.71C1096.79 726.71 1092.15 728.248 1088.35 731.324C1084.59 734.352 1081.9 738.771 1080.29 744.581V799H1071.57V719.752H1080.14L1080.29 732.35C1084.93 722.975 1092.37 718.287 1102.63 718.287C1105.07 718.287 1107 718.604 1108.41 719.239L1108.19 727.223ZM1206.05 778.858C1206.05 774.513 1204.29 771.021 1200.77 768.385C1197.31 765.748 1192.06 763.697 1185.03 762.232C1177.99 760.719 1172.53 759.01 1168.62 757.105C1164.76 755.152 1161.88 752.784 1159.98 750.001C1158.12 747.218 1157.19 743.849 1157.19 739.894C1157.19 733.644 1159.81 728.492 1165.03 724.439C1170.25 720.338 1176.94 718.287 1185.1 718.287C1193.94 718.287 1201.02 720.484 1206.34 724.879C1211.71 729.225 1214.4 734.913 1214.4 741.944H1205.61C1205.61 737.306 1203.65 733.448 1199.75 730.372C1195.89 727.296 1191.01 725.758 1185.1 725.758C1179.34 725.758 1174.7 727.052 1171.18 729.64C1167.72 732.179 1165.98 735.499 1165.98 739.601C1165.98 743.556 1167.42 746.632 1170.3 748.829C1173.23 750.978 1178.53 752.955 1186.2 754.762C1193.91 756.568 1199.67 758.497 1203.48 760.548C1207.34 762.599 1210.2 765.064 1212.05 767.945C1213.91 770.826 1214.83 774.317 1214.83 778.419C1214.83 785.108 1212.12 790.455 1206.71 794.459C1201.33 798.463 1194.3 800.465 1185.61 800.465C1176.38 800.465 1168.89 798.243 1163.13 793.8C1157.41 789.308 1154.56 783.644 1154.56 776.808H1163.35C1163.69 781.935 1165.84 785.938 1169.79 788.819C1173.79 791.651 1179.07 793.067 1185.61 793.067C1191.71 793.067 1196.65 791.725 1200.41 789.039C1204.17 786.354 1206.05 782.96 1206.05 778.858ZM1265.3 800.465C1258.56 800.465 1252.46 798.805 1246.99 795.484C1241.57 792.164 1237.34 787.55 1234.32 781.642C1231.29 775.685 1229.78 769.02 1229.78 761.646V758.497C1229.78 750.88 1231.24 744.02 1234.17 737.916C1237.15 731.812 1241.28 727.027 1246.55 723.561C1251.82 720.045 1257.54 718.287 1263.69 718.287C1273.31 718.287 1280.92 721.583 1286.54 728.175C1292.2 734.718 1295.04 743.678 1295.04 755.055V759.962H1238.49V761.646C1238.49 770.631 1241.06 778.126 1246.18 784.132C1251.36 790.089 1257.85 793.067 1265.67 793.067C1270.35 793.067 1274.48 792.213 1278.04 790.504C1281.66 788.795 1284.93 786.061 1287.86 782.301L1293.35 786.476C1286.91 795.802 1277.55 800.465 1265.3 800.465ZM1263.69 725.758C1257.1 725.758 1251.53 728.175 1246.99 733.009C1242.5 737.843 1239.76 744.337 1238.79 752.491H1286.32V751.539C1286.08 743.922 1283.9 737.721 1279.8 732.936C1275.7 728.15 1270.33 725.758 1263.69 725.758ZM1348.72 727.223C1346.87 726.881 1344.89 726.71 1342.79 726.71C1337.32 726.71 1332.68 728.248 1328.87 731.324C1325.11 734.352 1322.43 738.771 1320.82 744.581V799H1312.1V719.752H1320.67L1320.82 732.35C1325.46 722.975 1332.9 718.287 1343.16 718.287C1345.6 718.287 1347.53 718.604 1348.94 719.239L1348.72 727.223ZM1388.64 786.915L1412.74 719.752H1421.74L1392.15 799H1385.05L1355.31 719.752H1364.32L1388.64 786.915ZM1465.84 800.465C1459.1 800.465 1452.99 798.805 1447.53 795.484C1442.11 792.164 1437.88 787.55 1434.85 781.642C1431.83 775.685 1430.31 769.02 1430.31 761.646V758.497C1430.31 750.88 1431.78 744.02 1434.71 737.916C1437.69 731.812 1441.81 727.027 1447.09 723.561C1452.36 720.045 1458.07 718.287 1464.22 718.287C1473.84 718.287 1481.46 721.583 1487.08 728.175C1492.74 734.718 1495.57 743.678 1495.57 755.055V759.962H1439.03V761.646C1439.03 770.631 1441.59 778.126 1446.72 784.132C1451.9 790.089 1458.39 793.067 1466.2 793.067C1470.89 793.067 1475.02 792.213 1478.58 790.504C1482.19 788.795 1485.46 786.061 1488.39 782.301L1493.89 786.476C1487.44 795.802 1478.09 800.465 1465.84 800.465ZM1464.22 725.758C1457.63 725.758 1452.07 728.175 1447.53 733.009C1443.03 737.843 1440.3 744.337 1439.32 752.491H1486.86V751.539C1486.61 743.922 1484.44 737.721 1480.34 732.936C1476.24 728.15 1470.87 725.758 1464.22 725.758ZM1549.26 727.223C1547.4 726.881 1545.43 726.71 1543.33 726.71C1537.86 726.71 1533.22 728.248 1529.41 731.324C1525.65 734.352 1522.96 738.771 1521.35 744.581V799H1512.64V719.752H1521.21L1521.35 732.35C1525.99 722.975 1533.44 718.287 1543.69 718.287C1546.13 718.287 1548.06 718.604 1549.48 719.239L1549.26 727.223Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<path d="M823.76 530H704.253V509.614L763.457 445.039C772.002 435.518 778.065 427.583 781.646 421.235C785.308 414.806 787.139 408.377 787.139 401.948C787.139 393.485 784.738 386.649 779.937 381.44C775.216 376.232 768.828 373.628 760.771 373.628C751.169 373.628 743.722 376.558 738.433 382.417C733.143 388.276 730.498 396.292 730.498 406.465H700.835C700.835 395.641 703.276 385.916 708.159 377.29C713.123 368.582 720.163 361.828 729.277 357.026C738.473 352.225 749.053 349.824 761.016 349.824C778.268 349.824 791.859 354.178 801.787 362.886C811.797 371.512 816.802 383.475 816.802 398.774C816.802 407.645 814.279 416.963 809.233 426.729C804.269 436.413 796.09 447.44 784.697 459.81L741.24 506.318H823.76V530ZM854.277 441.865L863.921 352.266H959.38V377.9H888.579L883.696 420.381C891.916 415.661 901.193 413.301 911.528 413.301C928.455 413.301 941.598 418.713 950.957 429.536C960.397 440.36 965.117 454.927 965.117 473.237C965.117 491.304 959.909 505.708 949.492 516.45C939.076 527.111 924.793 532.441 906.646 532.441C890.369 532.441 876.86 527.843 866.118 518.647C855.457 509.37 849.679 497.163 848.784 482.026H877.471C878.61 490.653 881.702 497.285 886.748 501.924C891.794 506.481 898.385 508.76 906.523 508.76C915.638 508.76 922.718 505.505 927.764 498.994C932.891 492.484 935.454 483.613 935.454 472.383C935.454 461.559 932.646 453.014 927.031 446.748C921.416 440.4 913.685 437.227 903.838 437.227C898.467 437.227 893.91 437.959 890.166 439.424C886.423 440.807 882.354 443.574 877.959 447.725L854.277 441.865ZM1157.87 454.683H1086.33V530H1055.45V352.266H1168.36V377.168H1086.33V430.024H1157.87V454.683ZM1181.79 462.739C1181.79 449.8 1184.36 438.162 1189.48 427.827C1194.61 417.41 1201.81 409.435 1211.09 403.901C1220.37 398.286 1231.03 395.479 1243.07 395.479C1260.89 395.479 1275.34 401.216 1286.41 412.69C1297.56 424.165 1303.58 439.383 1304.47 458.345L1304.59 465.303C1304.59 478.324 1302.07 489.961 1297.03 500.215C1292.06 510.469 1284.9 518.403 1275.54 524.019C1266.26 529.634 1255.52 532.441 1243.32 532.441C1224.68 532.441 1209.75 526.257 1198.52 513.887C1187.37 501.436 1181.79 484.875 1181.79 464.204V462.739ZM1211.46 465.303C1211.46 478.893 1214.26 489.554 1219.88 497.285C1225.49 504.935 1233.31 508.76 1243.32 508.76C1253.33 508.76 1261.1 504.854 1266.63 497.041C1272.25 489.229 1275.05 477.795 1275.05 462.739C1275.05 449.393 1272.16 438.813 1266.39 431.001C1260.69 423.188 1252.92 419.282 1243.07 419.282C1233.39 419.282 1225.7 423.148 1220 430.879C1214.3 438.529 1211.46 450.003 1211.46 465.303ZM1398.83 425.02C1394.93 424.368 1390.9 424.043 1386.75 424.043C1373.16 424.043 1364 429.251 1359.28 439.668V530H1329.62V397.92H1357.94L1358.67 412.69C1365.83 401.216 1375.76 395.479 1388.46 395.479C1392.69 395.479 1396.19 396.048 1398.96 397.188L1398.83 425.02ZM1445.46 397.92L1446.32 411.714C1455.6 400.89 1468.29 395.479 1484.4 395.479C1502.06 395.479 1514.15 402.233 1520.66 415.742C1530.26 402.233 1543.77 395.479 1561.19 395.479C1575.75 395.479 1586.58 399.507 1593.66 407.563C1600.82 415.62 1604.48 427.502 1604.64 443.208V530H1574.98V444.062C1574.98 435.68 1573.15 429.536 1569.49 425.63C1565.83 421.724 1559.76 419.771 1551.3 419.771C1544.54 419.771 1539.01 421.602 1534.7 425.264C1530.47 428.844 1527.5 433.564 1525.79 439.424L1525.91 530H1496.25V443.086C1495.84 427.542 1487.9 419.771 1472.44 419.771C1460.56 419.771 1452.14 424.613 1447.17 434.297V530H1417.51V397.92H1445.46ZM1709.14 494.111C1709.14 488.822 1706.94 484.793 1702.54 482.026C1698.23 479.259 1691.03 476.818 1680.94 474.702C1670.85 472.586 1662.42 469.901 1655.67 466.646C1640.86 459.484 1633.45 449.108 1633.45 435.518C1633.45 424.124 1638.25 414.603 1647.86 406.953C1657.46 399.303 1669.67 395.479 1684.48 395.479C1700.27 395.479 1713 399.385 1722.69 407.197C1732.45 415.01 1737.33 425.142 1737.33 437.593H1707.67C1707.67 431.896 1705.56 427.176 1701.32 423.433C1697.09 419.608 1691.48 417.695 1684.48 417.695C1677.97 417.695 1672.64 419.201 1668.49 422.212C1664.42 425.223 1662.38 429.251 1662.38 434.297C1662.38 438.854 1664.3 442.394 1668.12 444.917C1671.94 447.44 1679.68 450.003 1691.31 452.607C1702.95 455.13 1712.07 458.182 1718.66 461.763C1725.33 465.262 1730.25 469.494 1733.43 474.458C1736.68 479.422 1738.31 485.444 1738.31 492.524C1738.31 504.406 1733.39 514.049 1723.54 521.455C1713.69 528.779 1700.79 532.441 1684.84 532.441C1674.02 532.441 1664.38 530.488 1655.91 526.582C1647.45 522.676 1640.86 517.305 1636.14 510.469C1631.42 503.633 1629.06 496.268 1629.06 488.374H1657.87C1658.27 495.373 1660.92 500.785 1665.8 504.609C1670.68 508.353 1677.15 510.225 1685.21 510.225C1693.02 510.225 1698.96 508.76 1703.03 505.83C1707.1 502.819 1709.14 498.913 1709.14 494.111Z" fill="url(#paint0_linear)"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="2536" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="650.836" y="299.824" width="1137.48" height="282.617" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="307.572" y1="98.9652" x2="2335.06" y2="203.835" gradientUnits="userSpaceOnUse">
-<stop stop-color="#60B358"/>
-<stop offset="1" stop-color="#65CC76"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Multichoice.svg b/public/Features/ClicksForms/Multichoice.svg
deleted file mode 100644
index e870836..0000000
--- a/public/Features/ClicksForms/Multichoice.svg
+++ /dev/null
@@ -1,44 +0,0 @@
-<svg width="1196" height="1844" viewBox="0 0 1196 1844" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="1188" height="1836" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M560 1258H163V1655H560V1258ZM439.437 1335.16C450.715 1323.88 469 1323.88 480.278 1335.16C491.556 1346.44 491.556 1364.73 480.278 1376L400.088 1456.19L480.278 1536.38C491.556 1547.66 491.556 1565.95 480.278 1577.23C469 1588.5 450.715 1588.5 439.437 1577.23L359.247 1497.04L279.056 1577.23C267.778 1588.5 249.493 1588.5 238.215 1577.23C226.937 1565.95 226.937 1547.66 238.215 1536.38L318.405 1456.19L238.215 1376C226.937 1364.73 226.937 1346.44 238.215 1335.16C249.493 1323.88 267.778 1323.88 279.056 1335.16L359.247 1415.35L439.437 1335.16Z" fill="#775EBF" fill-opacity="0.5"/>
-<g clip-path="url(#clip0)">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M1032.99 1258H635.988V1655H1032.99V1258ZM960.309 1393.05L792.531 1561.37C781.257 1572.65 762.977 1572.65 751.702 1561.37L708.099 1517.77C696.824 1506.5 696.824 1488.22 708.099 1476.94C719.374 1465.67 737.653 1465.67 748.928 1476.94L771.842 1499.86L919.48 1352.22C930.755 1340.94 949.034 1340.94 960.309 1352.22C971.584 1363.49 971.584 1381.77 960.309 1393.05Z" fill="#775EBF" fill-opacity="0.5"/>
-</g>
-<path d="M129.479 855.644C129.479 843.241 132.214 833.427 137.683 826.2C143.2 818.925 150.72 815.287 160.241 815.287C170.935 815.287 179.064 819.364 184.631 827.519L185.07 816.752H193.273V926.469H184.484V886.186C178.723 893.705 170.593 897.465 160.095 897.465C150.817 897.465 143.396 893.803 137.829 886.479C132.263 879.154 129.479 869.267 129.479 856.815V855.644ZM138.342 857.182C138.342 867.436 140.393 875.492 144.494 881.352C148.645 887.162 154.382 890.067 161.706 890.067C172.204 890.067 179.797 885.502 184.484 876.371V837.553C182.287 832.816 179.235 829.179 175.329 826.64C171.472 824.052 166.979 822.758 161.853 822.758C154.479 822.758 148.718 825.688 144.567 831.547C140.417 837.357 138.342 845.902 138.342 857.182ZM267.614 885.966C262.341 893.632 253.918 897.465 242.346 897.465C233.898 897.465 227.478 895.023 223.083 890.141C218.688 885.209 216.442 877.934 216.345 868.314V816.752H225.061V867.216C225.061 882.304 231.164 889.848 243.371 889.848C256.066 889.848 264.099 884.599 267.468 874.101V816.752H276.257V896H267.761L267.614 885.966ZM329.797 897.465C323.059 897.465 316.955 895.805 311.486 892.484C306.066 889.164 301.843 884.55 298.815 878.642C295.788 872.685 294.274 866.02 294.274 858.646V855.497C294.274 847.88 295.739 841.02 298.669 834.916C301.647 828.812 305.773 824.027 311.047 820.561C316.32 817.045 322.033 815.287 328.186 815.287C337.805 815.287 345.422 818.583 351.037 825.175C356.701 831.718 359.533 840.678 359.533 852.055V856.962H302.99V858.646C302.99 867.631 305.554 875.126 310.681 881.132C315.856 887.089 322.351 890.067 330.163 890.067C334.851 890.067 338.977 889.213 342.541 887.504C346.154 885.795 349.426 883.061 352.355 879.301L357.849 883.476C351.403 892.802 342.053 897.465 329.797 897.465ZM328.186 822.758C321.594 822.758 316.027 825.175 311.486 830.009C306.994 834.843 304.26 841.337 303.283 849.491H350.817V848.539C350.573 840.922 348.4 834.721 344.299 829.936C340.197 825.15 334.826 822.758 328.186 822.758ZM424.06 875.858C424.06 871.513 422.302 868.021 418.786 865.385C415.319 862.748 410.07 860.697 403.039 859.232C396.008 857.719 390.539 856.01 386.633 854.105C382.775 852.152 379.895 849.784 377.99 847.001C376.135 844.218 375.207 840.849 375.207 836.894C375.207 830.644 377.819 825.492 383.044 821.439C388.269 817.338 394.958 815.287 403.112 815.287C411.95 815.287 419.03 817.484 424.353 821.879C429.724 826.225 432.409 831.913 432.409 838.944H423.62C423.62 834.306 421.667 830.448 417.761 827.372C413.903 824.296 409.021 822.758 403.112 822.758C397.351 822.758 392.712 824.052 389.196 826.64C385.729 829.179 383.996 832.499 383.996 836.601C383.996 840.556 385.437 843.632 388.317 845.829C391.247 847.978 396.545 849.955 404.211 851.762C411.926 853.568 417.688 855.497 421.496 857.548C425.354 859.599 428.21 862.064 430.065 864.945C431.921 867.826 432.849 871.317 432.849 875.419C432.849 882.108 430.139 887.455 424.719 891.459C419.348 895.463 412.316 897.465 403.625 897.465C394.396 897.465 386.901 895.243 381.14 890.8C375.427 886.308 372.57 880.644 372.57 873.808H381.359C381.701 878.935 383.85 882.938 387.805 885.819C391.809 888.651 397.082 890.067 403.625 890.067C409.729 890.067 414.66 888.725 418.42 886.039C422.18 883.354 424.06 879.96 424.06 875.858ZM466.247 796.464V816.752H482.653V823.93H466.247V876.737C466.247 881.132 467.028 884.403 468.591 886.552C470.202 888.7 472.863 889.774 476.574 889.774C478.039 889.774 480.407 889.53 483.679 889.042L484.045 896.22C481.75 897.05 478.625 897.465 474.67 897.465C468.664 897.465 464.294 895.731 461.56 892.265C458.825 888.749 457.458 883.598 457.458 876.811V823.93H442.883V816.752H457.458V796.464H466.247ZM510.632 896H501.843V816.752H510.632V896ZM500.305 793.827C500.305 792.167 500.842 790.775 501.916 789.652C502.99 788.48 504.455 787.895 506.311 787.895C508.166 787.895 509.631 788.48 510.705 789.652C511.828 790.775 512.39 792.167 512.39 793.827C512.39 795.487 511.828 796.879 510.705 798.002C509.631 799.125 508.166 799.687 506.311 799.687C504.455 799.687 502.99 799.125 501.916 798.002C500.842 796.879 500.305 795.487 500.305 793.827ZM529.675 855.204C529.675 847.587 531.14 840.727 534.069 834.623C537.048 828.52 541.223 823.783 546.594 820.414C552.014 816.996 558.142 815.287 564.978 815.287C575.524 815.287 584.069 818.998 590.612 826.42C597.155 833.793 600.427 843.583 600.427 855.79V857.621C600.427 865.287 598.938 872.196 595.959 878.349C593.029 884.452 588.879 889.164 583.508 892.484C578.137 895.805 572.009 897.465 565.124 897.465C554.626 897.465 546.081 893.778 539.489 886.405C532.946 878.983 529.675 869.169 529.675 856.962V855.204ZM538.464 857.621C538.464 867.094 540.905 874.882 545.788 880.985C550.72 887.04 557.165 890.067 565.124 890.067C573.034 890.067 579.431 887.04 584.313 880.985C589.245 874.882 591.711 866.85 591.711 856.889V855.204C591.711 849.149 590.588 843.607 588.342 838.578C586.096 833.549 582.946 829.667 578.894 826.933C574.841 824.149 570.202 822.758 564.978 822.758C557.165 822.758 550.793 825.834 545.861 831.986C540.93 838.09 538.464 846.098 538.464 856.01V857.621ZM626.94 816.752L627.233 830.302C630.212 825.419 633.923 821.708 638.366 819.169C642.81 816.581 647.717 815.287 653.088 815.287C661.584 815.287 667.907 817.68 672.058 822.465C676.208 827.25 678.308 834.428 678.356 843.998V896H669.641V843.925C669.592 836.845 668.078 831.571 665.1 828.104C662.17 824.638 657.458 822.904 650.964 822.904C645.544 822.904 640.734 824.613 636.535 828.031C632.385 831.4 629.309 835.966 627.307 841.728V896H618.591V816.752H626.94ZM748.522 875.858C748.522 871.513 746.765 868.021 743.249 865.385C739.782 862.748 734.533 860.697 727.502 859.232C720.471 857.719 715.002 856.01 711.096 854.105C707.238 852.152 704.357 849.784 702.453 847.001C700.598 844.218 699.67 840.849 699.67 836.894C699.67 830.644 702.282 825.492 707.507 821.439C712.731 817.338 719.421 815.287 727.575 815.287C736.413 815.287 743.493 817.484 748.815 821.879C754.187 826.225 756.872 831.913 756.872 838.944H748.083C748.083 834.306 746.13 830.448 742.224 827.372C738.366 824.296 733.483 822.758 727.575 822.758C721.813 822.758 717.175 824.052 713.659 826.64C710.192 829.179 708.459 832.499 708.459 836.601C708.459 840.556 709.899 843.632 712.78 845.829C715.71 847.978 721.008 849.955 728.674 851.762C736.389 853.568 742.15 855.497 745.959 857.548C749.816 859.599 752.673 862.064 754.528 864.945C756.384 867.826 757.312 871.317 757.312 875.419C757.312 882.108 754.602 887.455 749.182 891.459C743.811 895.463 736.779 897.465 728.088 897.465C718.859 897.465 711.364 895.243 705.603 890.8C699.89 886.308 697.033 880.644 697.033 873.808H705.822C706.164 878.935 708.312 882.938 712.268 885.819C716.271 888.651 721.545 890.067 728.088 890.067C734.191 890.067 739.123 888.725 742.883 886.039C746.643 883.354 748.522 879.96 748.522 875.858ZM832.531 877.763L833.85 884.574L835.607 877.396L854.65 816.752H862.121L880.944 876.884L882.995 885.233L884.68 877.543L900.939 816.752H910.021L886.95 896H879.479L859.118 833.158L858.166 828.837L857.214 833.231L837.219 896H829.748L806.75 816.752H815.759L832.531 877.763ZM936.462 896H927.673V816.752H936.462V896ZM926.135 793.827C926.135 792.167 926.672 790.775 927.746 789.652C928.82 788.48 930.285 787.895 932.141 787.895C933.996 787.895 935.461 788.48 936.535 789.652C937.658 790.775 938.22 792.167 938.22 793.827C938.22 795.487 937.658 796.879 936.535 798.002C935.461 799.125 933.996 799.687 932.141 799.687C930.285 799.687 928.82 799.125 927.746 798.002C926.672 796.879 926.135 795.487 926.135 793.827ZM973.962 796.464V816.752H990.368V823.93H973.962V876.737C973.962 881.132 974.743 884.403 976.306 886.552C977.917 888.7 980.578 889.774 984.289 889.774C985.754 889.774 988.122 889.53 991.394 889.042L991.76 896.22C989.465 897.05 986.34 897.465 982.385 897.465C976.379 897.465 972.009 895.731 969.274 892.265C966.54 888.749 965.173 883.598 965.173 876.811V823.93H950.598V816.752H965.173V796.464H973.962ZM1017.25 830.155C1020.13 825.419 1023.82 821.757 1028.31 819.169C1032.8 816.581 1037.71 815.287 1043.03 815.287C1051.53 815.287 1057.85 817.68 1062 822.465C1066.15 827.25 1068.25 834.428 1068.3 843.998V896H1059.58V843.925C1059.53 836.845 1058.02 831.571 1055.04 828.104C1052.11 824.638 1047.4 822.904 1040.91 822.904C1035.49 822.904 1030.68 824.613 1026.48 828.031C1022.33 831.4 1019.25 835.966 1017.25 841.728V896H1008.53V783.5H1017.25V830.155ZM130.871 1061.97C125.598 1069.63 117.175 1073.46 105.603 1073.46C97.1553 1073.46 90.7344 1071.02 86.3398 1066.14C81.9453 1061.21 79.6992 1053.93 79.6016 1044.31V992.752H88.3174V1043.22C88.3174 1058.3 94.4209 1065.85 106.628 1065.85C119.323 1065.85 127.355 1060.6 130.725 1050.1V992.752H139.514V1072H131.018L130.871 1061.97ZM226.086 1033.18C226.086 1045.54 223.352 1055.35 217.883 1062.62C212.414 1069.85 205.09 1073.46 195.91 1073.46C185.07 1073.46 176.77 1069.66 171.008 1062.04V1102.47H162.292V992.752H170.422L170.861 1003.96C176.574 995.511 184.851 991.287 195.69 991.287C205.163 991.287 212.585 994.876 217.956 1002.05C223.376 1009.23 226.086 1019.19 226.086 1031.94V1033.18ZM217.297 1031.64C217.297 1021.54 215.222 1013.55 211.071 1007.69C206.921 1001.83 201.135 998.904 193.713 998.904C188.342 998.904 183.728 1000.2 179.87 1002.79C176.013 1005.37 173.059 1009.13 171.008 1014.07V1052.08C173.107 1056.62 176.11 1060.09 180.017 1062.48C183.923 1064.87 188.537 1066.07 193.859 1066.07C201.232 1066.07 206.97 1063.14 211.071 1057.28C215.222 1051.37 217.297 1042.83 217.297 1031.64ZM295.666 972.464V992.752H312.072V999.93H295.666V1052.74C295.666 1057.13 296.447 1060.4 298.01 1062.55C299.621 1064.7 302.282 1065.77 305.993 1065.77C307.458 1065.77 309.826 1065.53 313.098 1065.04L313.464 1072.22C311.169 1073.05 308.044 1073.46 304.089 1073.46C298.083 1073.46 293.713 1071.73 290.979 1068.26C288.244 1064.75 286.877 1059.6 286.877 1052.81V999.93H272.302V992.752H286.877V972.464H295.666ZM323.938 1031.2C323.938 1023.59 325.402 1016.73 328.332 1010.62C331.311 1004.52 335.485 999.783 340.856 996.414C346.276 992.996 352.404 991.287 359.24 991.287C369.787 991.287 378.332 994.998 384.875 1002.42C391.418 1009.79 394.689 1019.58 394.689 1031.79V1033.62C394.689 1041.29 393.2 1048.2 390.222 1054.35C387.292 1060.45 383.142 1065.16 377.771 1068.48C372.399 1071.8 366.271 1073.46 359.387 1073.46C348.889 1073.46 340.344 1069.78 333.752 1062.41C327.209 1054.98 323.938 1045.17 323.938 1032.96V1031.2ZM332.727 1033.62C332.727 1043.09 335.168 1050.88 340.051 1056.99C344.982 1063.04 351.428 1066.07 359.387 1066.07C367.297 1066.07 373.693 1063.04 378.576 1056.99C383.508 1050.88 385.974 1042.85 385.974 1032.89V1031.2C385.974 1025.15 384.851 1019.61 382.604 1014.58C380.358 1009.55 377.209 1005.67 373.156 1002.93C369.104 1000.15 364.465 998.758 359.24 998.758C351.428 998.758 345.056 1001.83 340.124 1007.99C335.192 1014.09 332.727 1022.1 332.727 1032.01V1033.62ZM514.733 1072H447.937V1065.26L484.484 1023.81C490.539 1016.82 494.738 1011.06 497.082 1006.52C499.426 1001.98 500.598 997.562 500.598 993.265C500.598 986.526 498.62 981.204 494.665 977.298C490.71 973.343 485.266 971.365 478.332 971.365C471.154 971.365 465.344 973.66 460.9 978.25C456.506 982.84 454.309 988.797 454.309 996.121H445.593C445.593 990.115 446.936 984.646 449.621 979.715C452.355 974.783 456.213 970.926 461.193 968.143C466.223 965.311 471.936 963.895 478.332 963.895C488.098 963.895 495.715 966.458 501.184 971.585C506.701 976.712 509.46 983.694 509.46 992.532C509.46 997.513 507.897 1002.96 504.772 1008.87C501.696 1014.77 496.252 1022.15 488.439 1030.98L458.703 1064.6H514.733V1072ZM537.072 1017.36L542.272 965.359H595.593V973.489H549.816L546.081 1009.52C551.794 1005.62 558.483 1003.67 566.149 1003.67C575.769 1003.67 583.435 1006.79 589.147 1013.04C594.86 1019.29 597.717 1027.62 597.717 1038.02C597.717 1049.25 594.934 1057.96 589.367 1064.16C583.801 1070.36 575.964 1073.46 565.856 1073.46C556.579 1073.46 549.06 1070.88 543.298 1065.7C537.536 1060.53 534.24 1053.27 533.41 1043.95H541.833C542.663 1051.22 545.129 1056.74 549.23 1060.5C553.332 1064.21 558.874 1066.07 565.856 1066.07C573.474 1066.07 579.211 1063.65 583.068 1058.82C586.975 1053.98 588.928 1047.1 588.928 1038.16C588.928 1030.35 586.755 1023.98 582.409 1019.05C578.063 1014.11 572.131 1011.65 564.611 1011.65C560.461 1011.65 556.848 1012.19 553.771 1013.26C550.695 1014.29 547.448 1016.31 544.03 1019.34L537.072 1017.36ZM647.375 1031.2C647.375 1023.59 648.84 1016.73 651.77 1010.62C654.748 1004.52 658.923 999.783 664.294 996.414C669.714 992.996 675.842 991.287 682.678 991.287C693.225 991.287 701.77 994.998 708.312 1002.42C714.855 1009.79 718.127 1019.58 718.127 1031.79V1033.62C718.127 1041.29 716.638 1048.2 713.659 1054.35C710.729 1060.45 706.579 1065.16 701.208 1068.48C695.837 1071.8 689.709 1073.46 682.824 1073.46C672.326 1073.46 663.781 1069.78 657.189 1062.41C650.646 1054.98 647.375 1045.17 647.375 1032.96V1031.2ZM656.164 1033.62C656.164 1043.09 658.605 1050.88 663.488 1056.99C668.42 1063.04 674.865 1066.07 682.824 1066.07C690.734 1066.07 697.131 1063.04 702.014 1056.99C706.945 1050.88 709.411 1042.85 709.411 1032.89V1031.2C709.411 1025.15 708.288 1019.61 706.042 1014.58C703.796 1009.55 700.646 1005.67 696.594 1002.93C692.541 1000.15 687.902 998.758 682.678 998.758C674.865 998.758 668.493 1001.83 663.562 1007.99C658.63 1014.09 656.164 1022.1 656.164 1032.01V1033.62ZM800.012 1033.18C800.012 1045.54 797.277 1055.35 791.809 1062.62C786.34 1069.85 779.016 1073.46 769.836 1073.46C758.996 1073.46 750.695 1069.66 744.934 1062.04V1102.47H736.218V992.752H744.348L744.787 1003.96C750.5 995.511 758.776 991.287 769.616 991.287C779.089 991.287 786.511 994.876 791.882 1002.05C797.302 1009.23 800.012 1019.19 800.012 1031.94V1033.18ZM791.223 1031.64C791.223 1021.54 789.147 1013.55 784.997 1007.69C780.847 1001.83 775.061 998.904 767.639 998.904C762.268 998.904 757.653 1000.2 753.796 1002.79C749.938 1005.37 746.984 1009.13 744.934 1014.07V1052.08C747.033 1056.62 750.036 1060.09 753.942 1062.48C757.849 1064.87 762.463 1066.07 767.785 1066.07C775.158 1066.07 780.896 1063.14 784.997 1057.28C789.147 1051.37 791.223 1042.83 791.223 1031.64ZM833.117 972.464V992.752H849.523V999.93H833.117V1052.74C833.117 1057.13 833.898 1060.4 835.461 1062.55C837.072 1064.7 839.733 1065.77 843.444 1065.77C844.909 1065.77 847.277 1065.53 850.549 1065.04L850.915 1072.22C848.62 1073.05 845.495 1073.46 841.54 1073.46C835.534 1073.46 831.164 1071.73 828.43 1068.26C825.695 1064.75 824.328 1059.6 824.328 1052.81V999.93H809.753V992.752H824.328V972.464H833.117ZM877.502 1072H868.713V992.752H877.502V1072ZM867.175 969.827C867.175 968.167 867.712 966.775 868.786 965.652C869.86 964.48 871.325 963.895 873.181 963.895C875.036 963.895 876.501 964.48 877.575 965.652C878.698 966.775 879.26 968.167 879.26 969.827C879.26 971.487 878.698 972.879 877.575 974.002C876.501 975.125 875.036 975.687 873.181 975.687C871.325 975.687 869.86 975.125 868.786 974.002C867.712 972.879 867.175 971.487 867.175 969.827ZM896.545 1031.2C896.545 1023.59 898.01 1016.73 900.939 1010.62C903.918 1004.52 908.093 999.783 913.464 996.414C918.884 992.996 925.012 991.287 931.848 991.287C942.395 991.287 950.939 994.998 957.482 1002.42C964.025 1009.79 967.297 1019.58 967.297 1031.79V1033.62C967.297 1041.29 965.808 1048.2 962.829 1054.35C959.899 1060.45 955.749 1065.16 950.378 1068.48C945.007 1071.8 938.879 1073.46 931.994 1073.46C921.496 1073.46 912.951 1069.78 906.359 1062.41C899.816 1054.98 896.545 1045.17 896.545 1032.96V1031.2ZM905.334 1033.62C905.334 1043.09 907.775 1050.88 912.658 1056.99C917.59 1063.04 924.035 1066.07 931.994 1066.07C939.904 1066.07 946.301 1063.04 951.184 1056.99C956.115 1050.88 958.581 1042.85 958.581 1032.89V1031.2C958.581 1025.15 957.458 1019.61 955.212 1014.58C952.966 1009.55 949.816 1005.67 945.764 1002.93C941.711 1000.15 937.072 998.758 931.848 998.758C924.035 998.758 917.663 1001.83 912.731 1007.99C907.8 1014.09 905.334 1022.1 905.334 1032.01V1033.62ZM993.811 992.752L994.104 1006.3C997.082 1001.42 1000.79 997.708 1005.24 995.169C1009.68 992.581 1014.59 991.287 1019.96 991.287C1028.45 991.287 1034.78 993.68 1038.93 998.465C1043.08 1003.25 1045.18 1010.43 1045.23 1020V1072H1036.51V1019.92C1036.46 1012.84 1034.95 1007.57 1031.97 1004.1C1029.04 1000.64 1024.33 998.904 1017.83 998.904C1012.41 998.904 1007.6 1000.61 1003.41 1004.03C999.255 1007.4 996.179 1011.97 994.177 1017.73V1072H985.461V992.752H993.811ZM1115.39 1051.86C1115.39 1047.51 1113.63 1044.02 1110.12 1041.38C1106.65 1038.75 1101.4 1036.7 1094.37 1035.23C1087.34 1033.72 1081.87 1032.01 1077.97 1030.11C1074.11 1028.15 1071.23 1025.78 1069.32 1023C1067.47 1020.22 1066.54 1016.85 1066.54 1012.89C1066.54 1006.64 1069.15 1001.49 1074.38 997.439C1079.6 993.338 1086.29 991.287 1094.45 991.287C1103.28 991.287 1110.36 993.484 1115.69 997.879C1121.06 1002.22 1123.74 1007.91 1123.74 1014.94H1114.95C1114.95 1010.31 1113 1006.45 1109.09 1003.37C1105.24 1000.3 1100.35 998.758 1094.45 998.758C1088.68 998.758 1084.04 1000.05 1080.53 1002.64C1077.06 1005.18 1075.33 1008.5 1075.33 1012.6C1075.33 1016.56 1076.77 1019.63 1079.65 1021.83C1082.58 1023.98 1087.88 1025.96 1095.54 1027.76C1103.26 1029.57 1109.02 1031.5 1112.83 1033.55C1116.69 1035.6 1119.54 1038.06 1121.4 1040.95C1123.25 1043.83 1124.18 1047.32 1124.18 1051.42C1124.18 1058.11 1121.47 1063.46 1116.05 1067.46C1110.68 1071.46 1103.65 1073.46 1094.96 1073.46C1085.73 1073.46 1078.23 1071.24 1072.47 1066.8C1066.76 1062.31 1063.9 1056.64 1063.9 1049.81H1072.69C1073.03 1054.93 1075.18 1058.94 1079.14 1061.82C1083.14 1064.65 1088.42 1066.07 1094.96 1066.07C1101.06 1066.07 1105.99 1064.72 1109.75 1062.04C1113.51 1059.35 1115.39 1055.96 1115.39 1051.86Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<path d="M204.504 158.266L255.773 294.496L306.921 158.266H346.838V336H316.076V277.406L319.128 199.037L266.638 336H244.543L192.175 199.159L195.227 277.406V336H164.465V158.266H204.504ZM460.607 323.061C451.9 333.314 439.53 338.441 423.498 338.441C409.175 338.441 398.311 334.25 390.905 325.868C383.581 317.486 379.919 305.36 379.919 289.491V203.92H409.582V289.125C409.582 305.889 416.54 314.271 430.456 314.271C444.86 314.271 454.585 309.104 459.631 298.769V203.92H489.294V336H461.34L460.607 323.061ZM551.062 336H521.398V148.5H551.062V336ZM620.642 171.815V203.92H643.957V225.893H620.642V299.623C620.642 304.669 621.618 308.331 623.571 310.609C625.606 312.807 629.187 313.905 634.313 313.905C637.731 313.905 641.19 313.498 644.689 312.685V335.634C637.935 337.506 631.424 338.441 625.158 338.441C602.372 338.441 590.979 325.868 590.979 300.722V225.893H569.25V203.92H590.979V171.815H620.642ZM698.278 336H668.615V203.92H698.278V336ZM666.784 169.618C666.784 165.061 668.208 161.277 671.057 158.266C673.986 155.255 678.137 153.749 683.508 153.749C688.879 153.749 693.029 155.255 695.959 158.266C698.889 161.277 700.354 165.061 700.354 169.618C700.354 174.094 698.889 177.838 695.959 180.849C693.029 183.778 688.879 185.243 683.508 185.243C678.137 185.243 673.986 183.778 671.057 180.849C668.208 177.838 666.784 174.094 666.784 169.618ZM846.35 271.303C846.35 291.729 841.711 308.046 832.434 320.253C823.156 332.379 810.705 338.441 795.08 338.441C780.594 338.441 768.998 333.681 760.29 324.159V386.781H730.627V203.92H757.971L759.191 217.348C767.899 206.768 779.74 201.479 794.714 201.479C810.827 201.479 823.441 207.501 832.556 219.545C841.752 231.508 846.35 248.15 846.35 269.472V271.303ZM816.809 268.739C816.809 255.556 814.164 245.098 808.874 237.367C803.666 229.636 796.179 225.771 786.413 225.771C774.287 225.771 765.58 230.775 760.29 240.785V299.379C765.661 309.633 774.45 314.76 786.657 314.76C796.097 314.76 803.462 310.976 808.752 303.407C814.123 295.757 816.809 284.201 816.809 268.739ZM903.112 336H873.449V148.5H903.112V336ZM993.688 338.441C974.89 338.441 959.631 332.541 947.912 320.741C936.275 308.86 930.456 293.072 930.456 273.378V269.716C930.456 256.532 932.979 244.773 938.024 234.438C943.151 224.021 950.313 215.924 959.509 210.146C968.705 204.368 978.959 201.479 990.271 201.479C1008.26 201.479 1022.13 207.216 1031.9 218.69C1041.74 230.165 1046.67 246.4 1046.67 267.396V279.359H960.363C961.258 290.264 964.88 298.891 971.228 305.238C977.657 311.586 985.713 314.76 995.397 314.76C1008.99 314.76 1020.06 309.267 1028.6 298.28L1044.59 313.539C1039.3 321.433 1032.22 327.577 1023.35 331.972C1014.56 336.285 1004.67 338.441 993.688 338.441ZM990.148 225.282C982.01 225.282 975.419 228.131 970.373 233.827C965.409 239.524 962.235 247.458 960.852 257.631H1017.37V255.434C1016.72 245.505 1014.07 238.018 1009.44 232.973C1004.8 227.846 998.368 225.282 990.148 225.282ZM367.346 571.139C365.555 590.1 358.557 604.911 346.35 615.572C334.143 626.152 317.907 631.441 297.644 631.441C283.483 631.441 270.992 628.105 260.168 621.432C249.426 614.677 241.125 605.115 235.266 592.745C229.406 580.375 226.354 566.012 226.11 549.654V533.053C226.11 516.288 229.081 501.518 235.021 488.741C240.962 475.965 249.466 466.118 260.534 459.2C271.683 452.283 284.541 448.824 299.108 448.824C318.721 448.824 334.509 454.155 346.472 464.815C358.435 475.476 365.393 490.532 367.346 509.981H336.584C335.119 497.205 331.376 488.009 325.354 482.394C319.413 476.697 310.664 473.849 299.108 473.849C285.681 473.849 275.345 478.772 268.103 488.619C260.941 498.385 257.279 512.748 257.116 531.71V547.457C257.116 566.663 260.534 581.311 267.37 591.402C274.287 601.493 284.379 606.539 297.644 606.539C309.769 606.539 318.884 603.813 324.987 598.36C331.091 592.908 334.956 583.834 336.584 571.139H367.346ZM421.423 511.324C431.107 500.094 443.355 494.479 458.166 494.479C486.324 494.479 500.606 510.551 501.013 542.696V629H471.35V543.795C471.35 534.68 469.356 528.251 465.368 524.508C461.462 520.683 455.684 518.771 448.034 518.771C436.153 518.771 427.282 524.06 421.423 534.64V629H391.76V441.5H421.423V511.324ZM525.549 561.739C525.549 548.8 528.112 537.162 533.239 526.827C538.366 516.41 545.568 508.435 554.846 502.901C564.123 497.286 574.784 494.479 586.828 494.479C604.65 494.479 619.095 500.216 630.163 511.69C641.312 523.165 647.334 538.383 648.229 557.345L648.352 564.303C648.352 577.324 645.829 588.961 640.783 599.215C635.819 609.469 628.658 617.403 619.299 623.019C610.021 628.634 599.279 631.441 587.072 631.441C568.436 631.441 553.503 625.257 542.272 612.887C531.123 600.436 525.549 583.875 525.549 563.204V561.739ZM555.212 564.303C555.212 577.893 558.02 588.554 563.635 596.285C569.25 603.935 577.062 607.76 587.072 607.76C597.082 607.76 604.854 603.854 610.388 596.041C616.003 588.229 618.811 576.795 618.811 561.739C618.811 548.393 615.922 537.813 610.144 530.001C604.447 522.188 596.675 518.282 586.828 518.282C577.144 518.282 569.453 522.148 563.757 529.879C558.06 537.529 555.212 549.003 555.212 564.303ZM704.992 629H675.329V496.92H704.992V629ZM673.498 462.618C673.498 458.061 674.922 454.277 677.771 451.266C680.7 448.255 684.851 446.749 690.222 446.749C695.593 446.749 699.743 448.255 702.673 451.266C705.603 454.277 707.067 458.061 707.067 462.618C707.067 467.094 705.603 470.838 702.673 473.849C699.743 476.778 695.593 478.243 690.222 478.243C684.851 478.243 680.7 476.778 677.771 473.849C674.922 470.838 673.498 467.094 673.498 462.618ZM791.662 607.76C799.068 607.76 805.212 605.603 810.095 601.29C814.978 596.977 817.582 591.646 817.907 585.299H845.861C845.536 593.518 842.972 601.209 838.171 608.37C833.369 615.45 826.859 621.065 818.64 625.216C810.42 629.366 801.55 631.441 792.028 631.441C773.555 631.441 758.907 625.46 748.083 613.497C737.259 601.534 731.848 585.014 731.848 563.937V560.885C731.848 540.784 737.219 524.711 747.961 512.667C758.703 500.541 773.352 494.479 791.906 494.479C807.613 494.479 820.389 499.076 830.236 508.272C840.165 517.387 845.373 529.391 845.861 544.283H817.907C817.582 536.715 814.978 530.489 810.095 525.606C805.293 520.724 799.149 518.282 791.662 518.282C782.059 518.282 774.654 521.782 769.445 528.78C764.237 535.698 761.592 546.236 761.511 560.396V565.157C761.511 579.48 764.074 590.182 769.201 597.262C774.41 604.26 781.896 607.76 791.662 607.76ZM926.428 631.441C907.629 631.441 892.37 625.541 880.651 613.741C869.014 601.86 863.195 586.072 863.195 566.378V562.716C863.195 549.532 865.718 537.773 870.764 527.438C875.891 517.021 883.052 508.924 892.248 503.146C901.444 497.368 911.698 494.479 923.01 494.479C940.995 494.479 954.87 500.216 964.636 511.69C974.483 523.165 979.406 539.4 979.406 560.396V572.359H893.103C893.998 583.264 897.619 591.891 903.967 598.238C910.396 604.586 918.452 607.76 928.137 607.76C941.727 607.76 952.795 602.267 961.34 591.28L977.331 606.539C972.041 614.433 964.961 620.577 956.091 624.972C947.302 629.285 937.414 631.441 926.428 631.441ZM922.888 518.282C914.75 518.282 908.158 521.131 903.112 526.827C898.148 532.524 894.974 540.458 893.591 550.631H950.109V548.434C949.458 538.505 946.813 531.018 942.175 525.973C937.536 520.846 931.107 518.282 922.888 518.282Z" fill="url(#paint0_linear)"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="1288" height="1936" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="159.465" y="143.5" width="892.202" height="492.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="2.5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="125.5" y1="71.9147" x2="1174.23" y2="475.771" gradientUnits="userSpaceOnUse">
-<stop stop-color="#775EBF"/>
-<stop offset="1" stop-color="#6576CC"/>
-</linearGradient>
-<clipPath id="clip0">
-<rect x="635.988" y="1258" width="397" height="397" rx="198.5" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Questions.svg b/public/Features/ClicksForms/Questions.svg
deleted file mode 100644
index 0ada1d9..0000000
--- a/public/Features/ClicksForms/Questions.svg
+++ /dev/null
@@ -1,38 +0,0 @@
-<svg width="2139" height="896" viewBox="0 0 2139 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="2131" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M981.902 85.3594V158.162C981.854 165.34 980.267 171.59 977.142 176.912C974.017 182.234 969.598 186.336 963.885 189.217C958.221 192.049 951.702 193.465 944.329 193.465C933.099 193.465 924.09 190.413 917.303 184.31C910.564 178.157 907.073 169.661 906.829 158.821V85.3594H915.765V157.503C915.765 166.487 918.328 173.47 923.455 178.45C928.582 183.382 935.54 185.848 944.329 185.848C953.118 185.848 960.052 183.357 965.13 178.377C970.257 173.396 972.82 166.463 972.82 157.576V85.3594H981.902ZM1068.69 153.182C1068.69 165.535 1065.96 175.35 1060.49 182.625C1055.02 189.852 1047.7 193.465 1038.52 193.465C1027.68 193.465 1019.38 189.656 1013.62 182.039V222.469H1004.9V112.752H1013.03L1013.47 123.958C1019.18 115.511 1027.46 111.287 1038.3 111.287C1047.77 111.287 1055.19 114.876 1060.56 122.054C1065.98 129.231 1068.69 139.192 1068.69 151.937V153.182ZM1059.91 151.644C1059.91 141.536 1057.83 133.553 1053.68 127.693C1049.53 121.834 1043.74 118.904 1036.32 118.904C1030.95 118.904 1026.34 120.198 1022.48 122.786C1018.62 125.374 1015.67 129.134 1013.62 134.065V172.078C1015.72 176.619 1018.72 180.086 1022.62 182.479C1026.53 184.871 1031.15 186.067 1036.47 186.067C1043.84 186.067 1049.58 183.138 1053.68 177.278C1057.83 171.37 1059.91 162.825 1059.91 151.644ZM1138.27 92.4639V112.752H1154.68V119.93H1138.27V172.737C1138.27 177.132 1139.06 180.403 1140.62 182.552C1142.23 184.7 1144.89 185.774 1148.6 185.774C1150.07 185.774 1152.43 185.53 1155.71 185.042L1156.07 192.22C1153.78 193.05 1150.65 193.465 1146.7 193.465C1140.69 193.465 1136.32 191.731 1133.59 188.265C1130.85 184.749 1129.49 179.598 1129.49 172.811V119.93H1114.91V112.752H1129.49V92.4639H1138.27ZM1166.55 151.204C1166.55 143.587 1168.01 136.727 1170.94 130.623C1173.92 124.52 1178.09 119.783 1183.46 116.414C1188.88 112.996 1195.01 111.287 1201.85 111.287C1212.4 111.287 1220.94 114.998 1227.48 122.42C1234.03 129.793 1237.3 139.583 1237.3 151.79V153.621C1237.3 161.287 1235.81 168.196 1232.83 174.349C1229.9 180.452 1225.75 185.164 1220.38 188.484C1215.01 191.805 1208.88 193.465 1202 193.465C1191.5 193.465 1182.95 189.778 1176.36 182.405C1169.82 174.983 1166.55 165.169 1166.55 152.962V151.204ZM1175.33 153.621C1175.33 163.094 1177.78 170.882 1182.66 176.985C1187.59 183.04 1194.04 186.067 1202 186.067C1209.91 186.067 1216.3 183.04 1221.18 176.985C1226.12 170.882 1228.58 162.85 1228.58 152.889V151.204C1228.58 145.149 1227.46 139.607 1225.21 134.578C1222.97 129.549 1219.82 125.667 1215.76 122.933C1211.71 120.149 1207.07 118.758 1201.85 118.758C1194.04 118.758 1187.66 121.834 1182.73 127.986C1177.8 134.09 1175.33 142.098 1175.33 152.01V153.621Z" fill="black"/>
-<path d="M862.151 760.182C862.151 772.535 859.417 782.35 853.948 789.625C848.479 796.852 841.155 800.465 831.976 800.465C821.136 800.465 812.835 796.656 807.073 789.039V829.469H798.357V719.752H806.487L806.927 730.958C812.64 722.511 820.916 718.287 831.756 718.287C841.229 718.287 848.65 721.876 854.021 729.054C859.441 736.231 862.151 746.192 862.151 758.937V760.182ZM853.362 758.644C853.362 748.536 851.287 740.553 847.137 734.693C842.986 728.834 837.2 725.904 829.778 725.904C824.407 725.904 819.793 727.198 815.936 729.786C812.078 732.374 809.124 736.134 807.073 741.065V779.078C809.173 783.619 812.176 787.086 816.082 789.479C819.988 791.871 824.603 793.067 829.925 793.067C837.298 793.067 843.035 790.138 847.137 784.278C851.287 778.37 853.362 769.825 853.362 758.644ZM912.322 800.465C905.584 800.465 899.48 798.805 894.012 795.484C888.592 792.164 884.368 787.55 881.341 781.642C878.313 775.685 876.8 769.02 876.8 761.646V758.497C876.8 750.88 878.265 744.02 881.194 737.916C884.173 731.812 888.299 727.027 893.572 723.561C898.846 720.045 904.559 718.287 910.711 718.287C920.33 718.287 927.947 721.583 933.562 728.175C939.227 734.718 942.059 743.678 942.059 755.055V759.962H885.516V761.646C885.516 770.631 888.079 778.126 893.206 784.132C898.382 790.089 904.876 793.067 912.688 793.067C917.376 793.067 921.502 792.213 925.066 790.504C928.68 788.795 931.951 786.061 934.881 782.301L940.374 786.476C933.929 795.802 924.578 800.465 912.322 800.465ZM910.711 725.758C904.119 725.758 898.553 728.175 894.012 733.009C889.52 737.843 886.785 744.337 885.809 752.491H933.343V751.539C933.099 743.922 930.926 737.721 926.824 732.936C922.723 728.15 917.352 725.758 910.711 725.758ZM995.745 727.223C993.89 726.881 991.912 726.71 989.812 726.71C984.344 726.71 979.705 728.248 975.896 731.324C972.137 734.352 969.451 738.771 967.84 744.581V799H959.124V719.752H967.693L967.84 732.35C972.479 722.975 979.925 718.287 990.179 718.287C992.62 718.287 994.549 718.604 995.965 719.239L995.745 727.223ZM1052.43 799V726.93H1039.32V719.752H1052.43V710.157C1052.43 702.052 1054.49 695.826 1058.59 691.48C1062.74 687.135 1068.5 684.962 1075.87 684.962C1079.19 684.962 1082.29 685.377 1085.17 686.207L1084.51 693.531C1082.07 692.945 1079.41 692.652 1076.53 692.652C1071.7 692.652 1067.94 694.166 1065.25 697.193C1062.57 700.172 1061.22 704.42 1061.22 709.938V719.752H1080.12V726.93H1061.22V799H1052.43ZM1090.96 758.204C1090.96 750.587 1092.42 743.727 1095.35 737.623C1098.33 731.52 1102.51 726.783 1107.88 723.414C1113.3 719.996 1119.43 718.287 1126.26 718.287C1136.81 718.287 1145.35 721.998 1151.9 729.42C1158.44 736.793 1161.71 746.583 1161.71 758.79V760.621C1161.71 768.287 1160.22 775.196 1157.24 781.349C1154.31 787.452 1150.16 792.164 1144.79 795.484C1139.42 798.805 1133.29 800.465 1126.41 800.465C1115.91 800.465 1107.37 796.778 1100.77 789.405C1094.23 781.983 1090.96 772.169 1090.96 759.962V758.204ZM1099.75 760.621C1099.75 770.094 1102.19 777.882 1107.07 783.985C1112 790.04 1118.45 793.067 1126.41 793.067C1134.32 793.067 1140.72 790.04 1145.6 783.985C1150.53 777.882 1153 769.85 1153 759.889V758.204C1153 752.149 1151.87 746.607 1149.63 741.578C1147.38 736.549 1144.23 732.667 1140.18 729.933C1136.13 727.149 1131.49 725.758 1126.26 725.758C1118.45 725.758 1112.08 728.834 1107.15 734.986C1102.21 741.09 1099.75 749.098 1099.75 759.01V760.621ZM1216.5 727.223C1214.64 726.881 1212.66 726.71 1210.56 726.71C1205.1 726.71 1200.46 728.248 1196.65 731.324C1192.89 734.352 1190.2 738.771 1188.59 744.581V799H1179.88V719.752H1188.45L1188.59 732.35C1193.23 722.975 1200.68 718.287 1210.93 718.287C1213.37 718.287 1215.3 718.604 1216.72 719.239L1216.5 727.223ZM1238.4 719.752L1238.69 732.643C1241.62 727.857 1245.28 724.269 1249.68 721.876C1254.07 719.483 1258.95 718.287 1264.32 718.287C1276.82 718.287 1284.76 723.414 1288.13 733.668C1290.96 728.736 1294.74 724.952 1299.48 722.315C1304.22 719.63 1309.44 718.287 1315.15 718.287C1332.15 718.287 1340.81 727.564 1341.16 746.119V799H1332.37V746.778C1332.32 739.698 1330.78 734.449 1327.75 731.031C1324.77 727.613 1319.89 725.904 1313.1 725.904C1306.8 726.002 1301.48 728.053 1297.14 732.057C1292.79 736.012 1290.37 740.846 1289.89 746.559V799H1281.1V746.119C1281.05 739.332 1279.44 734.278 1276.26 730.958C1273.14 727.589 1268.3 725.904 1261.76 725.904C1256.24 725.904 1251.51 727.491 1247.55 730.665C1243.6 733.79 1240.67 738.453 1238.76 744.654V799H1229.97V719.752H1238.4Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<path d="M462.688 529H343.182V508.614L402.386 444.039C410.931 434.518 416.993 426.583 420.574 420.235C424.236 413.806 426.067 407.377 426.067 400.948C426.067 392.485 423.667 385.649 418.865 380.44C414.145 375.232 407.757 372.628 399.7 372.628C390.097 372.628 382.651 375.558 377.361 381.417C372.072 387.276 369.427 395.292 369.427 405.465H339.764C339.764 394.641 342.205 384.916 347.088 376.29C352.052 367.582 359.091 360.828 368.206 356.026C377.402 351.225 387.981 348.824 399.944 348.824C417.197 348.824 430.787 353.178 440.716 361.886C450.726 370.512 455.73 382.475 455.73 397.774C455.73 406.645 453.208 415.963 448.162 425.729C443.198 435.413 435.019 446.44 423.626 458.81L380.169 505.318H462.688V529ZM493.206 440.865L502.85 351.266H598.309V376.9H527.508L522.625 419.381C530.844 414.661 540.122 412.301 550.457 412.301C567.384 412.301 580.527 417.713 589.886 428.536C599.326 439.36 604.046 453.927 604.046 472.237C604.046 490.304 598.838 504.708 588.421 515.45C578.004 526.111 563.722 531.441 545.574 531.441C529.298 531.441 515.789 526.843 505.047 517.647C494.386 508.37 488.608 496.163 487.713 481.026H516.399C517.539 489.653 520.631 496.285 525.677 500.924C530.722 505.481 537.314 507.76 545.452 507.76C554.567 507.76 561.647 504.505 566.692 497.994C571.819 491.484 574.383 482.613 574.383 471.383C574.383 460.559 571.575 452.014 565.96 445.748C560.345 439.4 552.614 436.227 542.767 436.227C537.396 436.227 532.838 436.959 529.095 438.424C525.351 439.807 521.282 442.574 516.888 446.725L493.206 440.865ZM835.613 444.771C835.613 461.617 832.928 476.225 827.557 488.595C822.267 500.883 814.821 510.649 805.218 517.892L835.735 541.695L815.716 559.762L777.874 529.854C772.91 530.912 767.579 531.441 761.883 531.441C747.56 531.441 734.743 527.942 723.431 520.943C712.2 513.863 703.493 503.813 697.308 490.792C691.204 477.771 688.112 462.757 688.03 445.748V435.738C688.03 418.404 691.082 403.105 697.186 389.84C703.37 376.575 712.037 366.443 723.187 359.444C734.417 352.364 747.234 348.824 761.639 348.824C776.287 348.824 789.186 352.324 800.335 359.322C811.565 366.24 820.232 376.249 826.336 389.352C832.439 402.372 835.532 417.55 835.613 434.884V444.771ZM804.607 435.494C804.607 415.475 800.864 400.297 793.377 389.962C785.89 379.627 775.311 374.459 761.639 374.459C748.374 374.459 737.957 379.708 730.389 390.206C722.902 400.623 719.077 415.353 718.914 434.396V444.771C718.914 463.977 722.658 478.992 730.145 489.815C737.713 500.639 748.292 506.051 761.883 506.051C775.636 506.051 786.175 500.842 793.499 490.426C800.905 480.009 804.607 464.791 804.607 444.771V435.494ZM944.134 516.061C935.426 526.314 923.056 531.441 907.024 531.441C892.701 531.441 881.837 527.25 874.432 518.868C867.107 510.486 863.445 498.36 863.445 482.491V396.92H893.108V482.125C893.108 498.889 900.066 507.271 913.982 507.271C928.387 507.271 938.112 502.104 943.157 491.769V396.92H972.82V529H944.866L944.134 516.061ZM1061.2 531.441C1042.4 531.441 1027.14 525.541 1015.42 513.741C1003.79 501.86 997.967 486.072 997.967 466.378V462.716C997.967 449.532 1000.49 437.773 1005.54 427.438C1010.66 417.021 1017.82 408.924 1027.02 403.146C1036.22 397.368 1046.47 394.479 1057.78 394.479C1075.77 394.479 1089.64 400.216 1099.41 411.69C1109.25 423.165 1114.18 439.4 1114.18 460.396V472.359H1027.87C1028.77 483.264 1032.39 491.891 1038.74 498.238C1045.17 504.586 1053.22 507.76 1062.91 507.76C1076.5 507.76 1087.57 502.267 1096.11 491.28L1112.1 506.539C1106.81 514.433 1099.73 520.577 1090.86 524.972C1082.07 529.285 1072.19 531.441 1061.2 531.441ZM1057.66 418.282C1049.52 418.282 1042.93 421.131 1037.88 426.827C1032.92 432.524 1029.75 440.458 1028.36 450.631H1084.88V448.434C1084.23 438.505 1081.58 431.018 1076.95 425.973C1072.31 420.846 1065.88 418.282 1057.66 418.282ZM1211.35 493.111C1211.35 487.822 1209.15 483.793 1204.75 481.026C1200.44 478.259 1193.24 475.818 1183.15 473.702C1173.06 471.586 1164.63 468.901 1157.88 465.646C1143.07 458.484 1135.66 448.108 1135.66 434.518C1135.66 423.124 1140.46 413.603 1150.07 405.953C1159.67 398.303 1171.88 394.479 1186.69 394.479C1202.48 394.479 1215.21 398.385 1224.9 406.197C1234.66 414.01 1239.54 424.142 1239.54 436.593H1209.88C1209.88 430.896 1207.76 426.176 1203.53 422.433C1199.3 418.608 1193.69 416.695 1186.69 416.695C1180.18 416.695 1174.85 418.201 1170.7 421.212C1166.63 424.223 1164.59 428.251 1164.59 433.297C1164.59 437.854 1166.51 441.394 1170.33 443.917C1174.15 446.44 1181.89 449.003 1193.52 451.607C1205.16 454.13 1214.28 457.182 1220.87 460.763C1227.54 464.262 1232.46 468.494 1235.64 473.458C1238.89 478.422 1240.52 484.444 1240.52 491.524C1240.52 503.406 1235.6 513.049 1225.75 520.455C1215.9 527.779 1203 531.441 1187.05 531.441C1176.23 531.441 1166.59 529.488 1158.12 525.582C1149.66 521.676 1143.07 516.305 1138.35 509.469C1133.63 502.633 1131.27 495.268 1131.27 487.374H1160.08C1160.48 494.373 1163.13 499.785 1168.01 503.609C1172.89 507.353 1179.36 509.225 1187.42 509.225C1195.23 509.225 1201.17 507.76 1205.24 504.83C1209.31 501.819 1211.35 497.913 1211.35 493.111ZM1303.63 364.815V396.92H1326.95V418.893H1303.63V492.623C1303.63 497.669 1304.61 501.331 1306.56 503.609C1308.6 505.807 1312.18 506.905 1317.3 506.905C1320.72 506.905 1324.18 506.498 1327.68 505.685V528.634C1320.92 530.506 1314.41 531.441 1308.15 531.441C1285.36 531.441 1273.97 518.868 1273.97 493.722V418.893H1252.24V396.92H1273.97V364.815H1303.63ZM1381.27 529H1351.6V396.92H1381.27V529ZM1349.77 362.618C1349.77 358.061 1351.2 354.277 1354.05 351.266C1356.98 348.255 1361.13 346.749 1366.5 346.749C1371.87 346.749 1376.02 348.255 1378.95 351.266C1381.88 354.277 1383.34 358.061 1383.34 362.618C1383.34 367.094 1381.88 370.838 1378.95 373.849C1376.02 376.778 1371.87 378.243 1366.5 378.243C1361.13 378.243 1356.98 376.778 1354.05 373.849C1351.2 370.838 1349.77 367.094 1349.77 362.618ZM1408.12 461.739C1408.12 448.8 1410.69 437.162 1415.81 426.827C1420.94 416.41 1428.14 408.435 1437.42 402.901C1446.7 397.286 1457.36 394.479 1469.4 394.479C1487.22 394.479 1501.67 400.216 1512.74 411.69C1523.89 423.165 1529.91 438.383 1530.8 457.345L1530.93 464.303C1530.93 477.324 1528.4 488.961 1523.36 499.215C1518.39 509.469 1511.23 517.403 1501.87 523.019C1492.6 528.634 1481.85 531.441 1469.65 531.441C1451.01 531.441 1436.08 525.257 1424.85 512.887C1413.7 500.436 1408.12 483.875 1408.12 463.204V461.739ZM1437.79 464.303C1437.79 477.893 1440.59 488.554 1446.21 496.285C1451.82 503.935 1459.64 507.76 1469.65 507.76C1479.66 507.76 1487.43 503.854 1492.96 496.041C1498.58 488.229 1501.38 476.795 1501.38 461.739C1501.38 448.393 1498.5 437.813 1492.72 430.001C1487.02 422.188 1479.25 418.282 1469.4 418.282C1459.72 418.282 1452.03 422.148 1446.33 429.879C1440.63 437.529 1437.79 449.003 1437.79 464.303ZM1583.54 396.92L1584.39 412.179C1594.16 400.379 1606.98 394.479 1622.84 394.479C1650.35 394.479 1664.35 410.226 1664.84 441.72V529H1635.17V443.429C1635.17 435.047 1633.34 428.862 1629.68 424.874C1626.1 420.805 1620.2 418.771 1611.98 418.771C1600.02 418.771 1591.11 424.182 1585.25 435.006V529H1555.58V396.92H1583.54ZM1769.21 493.111C1769.21 487.822 1767.01 483.793 1762.62 481.026C1758.3 478.259 1751.1 475.818 1741.01 473.702C1730.92 471.586 1722.49 468.901 1715.74 465.646C1700.93 458.484 1693.52 448.108 1693.52 434.518C1693.52 423.124 1698.32 413.603 1707.93 405.953C1717.53 398.303 1729.74 394.479 1744.55 394.479C1760.34 394.479 1773.07 398.385 1782.76 406.197C1792.52 414.01 1797.41 424.142 1797.41 436.593H1767.74C1767.74 430.896 1765.63 426.176 1761.39 422.433C1757.16 418.608 1751.55 416.695 1744.55 416.695C1738.04 416.695 1732.71 418.201 1728.56 421.212C1724.49 424.223 1722.45 428.251 1722.45 433.297C1722.45 437.854 1724.37 441.394 1728.19 443.917C1732.02 446.44 1739.75 449.003 1751.38 451.607C1763.02 454.13 1772.14 457.182 1778.73 460.763C1785.4 464.262 1790.33 468.494 1793.5 473.458C1796.75 478.422 1798.38 484.444 1798.38 491.524C1798.38 503.406 1793.46 513.049 1783.61 520.455C1773.76 527.779 1760.87 531.441 1744.92 531.441C1734.09 531.441 1724.45 529.488 1715.98 525.582C1707.52 521.676 1700.93 516.305 1696.21 509.469C1691.49 502.633 1689.13 495.268 1689.13 487.374H1717.94C1718.34 494.373 1720.99 499.785 1725.87 503.609C1730.75 507.353 1737.22 509.225 1745.28 509.225C1753.09 509.225 1759.03 507.76 1763.1 504.83C1767.17 501.819 1769.21 497.913 1769.21 493.111Z" fill="url(#paint0_linear)"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="2231" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="329.764" y="336.749" width="1478.62" height="233.013" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="270" y1="97.9652" x2="2047.65" y2="178.533" gradientUnits="userSpaceOnUse">
-<stop stop-color="#BDD96B"/>
-<stop offset="1" stop-color="#A1CC65"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Responses.svg b/public/Features/ClicksForms/Responses.svg
deleted file mode 100644
index b9c68db..0000000
--- a/public/Features/ClicksForms/Responses.svg
+++ /dev/null
@@ -1,115 +0,0 @@
-<svg width="3396" height="896" viewBox="0 0 3396 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="3388" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M894.545 775.117H846.132L835.146 805H825.697L866.054 698.359H874.623L914.979 805H905.604L894.545 775.117ZM848.915 767.427H891.688L870.302 709.346L848.915 767.427ZM938.49 805H929.701V692.5H938.49V805ZM972.182 805H963.393V692.5H972.182V805ZM1057.66 792.402L1080.8 725.752H1090.25L1056.41 818.477L1054.65 822.578C1050.31 832.197 1043.59 837.007 1034.51 837.007C1032.41 837.007 1030.17 836.665 1027.77 835.981L1027.7 828.73L1032.24 829.17C1036.54 829.17 1040 828.096 1042.64 825.947C1045.33 823.848 1047.6 820.21 1049.45 815.034L1053.33 804.341L1023.45 725.752H1033.05L1057.66 792.402ZM1097.87 764.204C1097.87 756.587 1099.33 749.727 1102.26 743.623C1105.24 737.52 1109.41 732.783 1114.78 729.414C1120.2 725.996 1126.33 724.287 1133.17 724.287C1143.71 724.287 1152.26 727.998 1158.8 735.42C1165.35 742.793 1168.62 752.583 1168.62 764.79V766.621C1168.62 774.287 1167.13 781.196 1164.15 787.349C1161.22 793.452 1157.07 798.164 1151.7 801.484C1146.33 804.805 1140.2 806.465 1133.31 806.465C1122.82 806.465 1114.27 802.778 1107.68 795.405C1101.14 787.983 1097.87 778.169 1097.87 765.962V764.204ZM1106.65 766.621C1106.65 776.094 1109.1 783.882 1113.98 789.985C1118.91 796.04 1125.36 799.067 1133.31 799.067C1141.22 799.067 1147.62 796.04 1152.5 789.985C1157.44 783.882 1159.9 775.85 1159.9 765.889V764.204C1159.9 758.149 1158.78 752.607 1156.53 747.578C1154.29 742.549 1151.14 738.667 1147.08 735.933C1143.03 733.149 1138.39 731.758 1133.17 731.758C1125.36 731.758 1118.98 734.834 1114.05 740.986C1109.12 747.09 1106.65 755.098 1106.65 765.01V766.621ZM1237.76 794.966C1232.48 802.632 1224.06 806.465 1212.49 806.465C1204.04 806.465 1197.62 804.023 1193.23 799.141C1188.83 794.209 1186.59 786.934 1186.49 777.314V725.752H1195.2V776.216C1195.2 791.304 1201.31 798.848 1213.51 798.848C1226.21 798.848 1234.24 793.599 1237.61 783.101V725.752H1246.4V805H1237.9L1237.76 794.966ZM1305.87 733.223C1304.02 732.881 1302.04 732.71 1299.94 732.71C1294.47 732.71 1289.83 734.248 1286.02 737.324C1282.26 740.352 1279.58 744.771 1277.97 750.581V805H1269.25V725.752H1277.82L1277.97 738.35C1282.61 728.975 1290.05 724.287 1300.31 724.287C1302.75 724.287 1304.68 724.604 1306.09 725.239L1305.87 733.223ZM1392.88 733.223C1391.03 732.881 1389.05 732.71 1386.95 732.71C1381.48 732.71 1376.84 734.248 1373.04 737.324C1369.28 740.352 1366.59 744.771 1364.98 750.581V805H1356.26V725.752H1364.83L1364.98 738.35C1369.62 728.975 1377.06 724.287 1387.32 724.287C1389.76 724.287 1391.69 724.604 1393.1 725.239L1392.88 733.223ZM1436.02 806.465C1429.29 806.465 1423.18 804.805 1417.71 801.484C1412.29 798.164 1408.07 793.55 1405.04 787.642C1402.02 781.685 1400.5 775.02 1400.5 767.646V764.497C1400.5 756.88 1401.97 750.02 1404.9 743.916C1407.88 737.812 1412 733.027 1417.27 729.561C1422.55 726.045 1428.26 724.287 1434.41 724.287C1444.03 724.287 1451.65 727.583 1457.26 734.175C1462.93 740.718 1465.76 749.678 1465.76 761.055V765.962H1409.22V767.646C1409.22 776.631 1411.78 784.126 1416.91 790.132C1422.08 796.089 1428.58 799.067 1436.39 799.067C1441.08 799.067 1445.2 798.213 1448.77 796.504C1452.38 794.795 1455.65 792.061 1458.58 788.301L1464.08 792.476C1457.63 801.802 1448.28 806.465 1436.02 806.465ZM1434.41 731.758C1427.82 731.758 1422.25 734.175 1417.71 739.009C1413.22 743.843 1410.49 750.337 1409.51 758.491H1457.04V757.539C1456.8 749.922 1454.63 743.721 1450.53 738.936C1446.42 734.15 1441.05 731.758 1434.41 731.758ZM1530.29 784.858C1530.29 780.513 1528.53 777.021 1525.01 774.385C1521.55 771.748 1516.3 769.697 1509.27 768.232C1502.24 766.719 1496.77 765.01 1492.86 763.105C1489 761.152 1486.12 758.784 1484.22 756.001C1482.36 753.218 1481.43 749.849 1481.43 745.894C1481.43 739.644 1484.05 734.492 1489.27 730.439C1494.5 726.338 1501.19 724.287 1509.34 724.287C1518.18 724.287 1525.26 726.484 1530.58 730.879C1535.95 735.225 1538.64 740.913 1538.64 747.944H1529.85C1529.85 743.306 1527.89 739.448 1523.99 736.372C1520.13 733.296 1515.25 731.758 1509.34 731.758C1503.58 731.758 1498.94 733.052 1495.42 735.64C1491.96 738.179 1490.22 741.499 1490.22 745.601C1490.22 749.556 1491.66 752.632 1494.54 754.829C1497.47 756.978 1502.77 758.955 1510.44 760.762C1518.15 762.568 1523.92 764.497 1527.72 766.548C1531.58 768.599 1534.44 771.064 1536.29 773.945C1538.15 776.826 1539.08 780.317 1539.08 784.419C1539.08 791.108 1536.37 796.455 1530.95 800.459C1525.58 804.463 1518.54 806.465 1509.85 806.465C1500.62 806.465 1493.13 804.243 1487.37 799.8C1481.65 795.308 1478.8 789.644 1478.8 782.808H1487.59C1487.93 787.935 1490.08 791.938 1494.03 794.819C1498.04 797.651 1503.31 799.067 1509.85 799.067C1515.96 799.067 1520.89 797.725 1524.65 795.039C1528.41 792.354 1530.29 788.96 1530.29 784.858ZM1622.57 766.182C1622.57 778.535 1619.84 788.35 1614.37 795.625C1608.9 802.852 1601.58 806.465 1592.4 806.465C1581.56 806.465 1573.26 802.656 1567.49 795.039V835.469H1558.78V725.752H1566.91L1567.35 736.958C1573.06 728.511 1581.34 724.287 1592.18 724.287C1601.65 724.287 1609.07 727.876 1614.44 735.054C1619.86 742.231 1622.57 752.192 1622.57 764.937V766.182ZM1613.78 764.644C1613.78 754.536 1611.71 746.553 1607.56 740.693C1603.41 734.834 1597.62 731.904 1590.2 731.904C1584.83 731.904 1580.21 733.198 1576.36 735.786C1572.5 738.374 1569.54 742.134 1567.49 747.065V785.078C1569.59 789.619 1572.6 793.086 1576.5 795.479C1580.41 797.871 1585.02 799.067 1590.35 799.067C1597.72 799.067 1603.46 796.138 1607.56 790.278C1611.71 784.37 1613.78 775.825 1613.78 764.644ZM1637.22 764.204C1637.22 756.587 1638.69 749.727 1641.62 743.623C1644.59 737.52 1648.77 732.783 1654.14 729.414C1659.56 725.996 1665.69 724.287 1672.52 724.287C1683.07 724.287 1691.62 727.998 1698.16 735.42C1704.7 742.793 1707.97 752.583 1707.97 764.79V766.621C1707.97 774.287 1706.48 781.196 1703.5 787.349C1700.58 793.452 1696.42 798.164 1691.05 801.484C1685.68 804.805 1679.55 806.465 1672.67 806.465C1662.17 806.465 1653.63 802.778 1647.04 795.405C1640.49 787.983 1637.22 778.169 1637.22 765.962V764.204ZM1646.01 766.621C1646.01 776.094 1648.45 783.882 1653.33 789.985C1658.27 796.04 1664.71 799.067 1672.67 799.067C1680.58 799.067 1686.98 796.04 1691.86 789.985C1696.79 783.882 1699.26 775.85 1699.26 765.889V764.204C1699.26 758.149 1698.13 752.607 1695.89 747.578C1693.64 742.549 1690.49 738.667 1686.44 735.933C1682.39 733.149 1677.75 731.758 1672.52 731.758C1664.71 731.758 1658.34 734.834 1653.41 740.986C1648.48 747.09 1646.01 755.098 1646.01 765.01V766.621ZM1734.49 725.752L1734.78 739.302C1737.76 734.419 1741.47 730.708 1745.91 728.169C1750.36 725.581 1755.26 724.287 1760.63 724.287C1769.13 724.287 1775.45 726.68 1779.6 731.465C1783.75 736.25 1785.85 743.428 1785.9 752.998V805H1777.19V752.925C1777.14 745.845 1775.62 740.571 1772.65 737.104C1769.72 733.638 1765 731.904 1758.51 731.904C1753.09 731.904 1748.28 733.613 1744.08 737.031C1739.93 740.4 1736.85 744.966 1734.85 750.728V805H1726.14V725.752H1734.49ZM1856.07 784.858C1856.07 780.513 1854.31 777.021 1850.79 774.385C1847.33 771.748 1842.08 769.697 1835.05 768.232C1828.02 766.719 1822.55 765.01 1818.64 763.105C1814.78 761.152 1811.9 758.784 1810 756.001C1808.14 753.218 1807.22 749.849 1807.22 745.894C1807.22 739.644 1809.83 734.492 1815.05 730.439C1820.28 726.338 1826.97 724.287 1835.12 724.287C1843.96 724.287 1851.04 726.484 1856.36 730.879C1861.73 735.225 1864.42 740.913 1864.42 747.944H1855.63C1855.63 743.306 1853.68 739.448 1849.77 736.372C1845.91 733.296 1841.03 731.758 1835.12 731.758C1829.36 731.758 1824.72 733.052 1821.21 735.64C1817.74 738.179 1816 741.499 1816 745.601C1816 749.556 1817.45 752.632 1820.33 754.829C1823.26 756.978 1828.55 758.955 1836.22 760.762C1843.93 762.568 1849.7 764.497 1853.5 766.548C1857.36 768.599 1860.22 771.064 1862.07 773.945C1863.93 776.826 1864.86 780.317 1864.86 784.419C1864.86 791.108 1862.15 796.455 1856.73 800.459C1851.36 804.463 1844.33 806.465 1835.63 806.465C1826.41 806.465 1818.91 804.243 1813.15 799.8C1807.44 795.308 1804.58 789.644 1804.58 782.808H1813.37C1813.71 787.935 1815.86 791.938 1819.81 794.819C1823.82 797.651 1829.09 799.067 1835.63 799.067C1841.74 799.067 1846.67 797.725 1850.43 795.039C1854.19 792.354 1856.07 788.96 1856.07 784.858ZM1915.32 806.465C1908.58 806.465 1902.48 804.805 1897.01 801.484C1891.59 798.164 1887.37 793.55 1884.34 787.642C1881.31 781.685 1879.8 775.02 1879.8 767.646V764.497C1879.8 756.88 1881.26 750.02 1884.19 743.916C1887.17 737.812 1891.3 733.027 1896.57 729.561C1901.84 726.045 1907.56 724.287 1913.71 724.287C1923.33 724.287 1930.95 727.583 1936.56 734.175C1942.23 740.718 1945.06 749.678 1945.06 761.055V765.962H1888.51V767.646C1888.51 776.631 1891.08 784.126 1896.21 790.132C1901.38 796.089 1907.88 799.067 1915.69 799.067C1920.38 799.067 1924.5 798.213 1928.07 796.504C1931.68 794.795 1934.95 792.061 1937.88 788.301L1943.37 792.476C1936.93 801.802 1927.58 806.465 1915.32 806.465ZM1913.71 731.758C1907.12 731.758 1901.55 734.175 1897.01 739.009C1892.52 743.843 1889.78 750.337 1888.81 758.491H1936.34V757.539C1936.1 749.922 1933.92 743.721 1929.82 738.936C1925.72 734.15 1920.35 731.758 1913.71 731.758ZM2009.58 784.858C2009.58 780.513 2007.83 777.021 2004.31 774.385C2000.84 771.748 1995.59 769.697 1988.56 768.232C1981.53 766.719 1976.06 765.01 1972.16 763.105C1968.3 761.152 1965.42 758.784 1963.51 756.001C1961.66 753.218 1960.73 749.849 1960.73 745.894C1960.73 739.644 1963.34 734.492 1968.57 730.439C1973.79 726.338 1980.48 724.287 1988.64 724.287C1997.47 724.287 2004.55 726.484 2009.88 730.879C2015.25 735.225 2017.93 740.913 2017.93 747.944H2009.14C2009.14 743.306 2007.19 739.448 2003.29 736.372C1999.43 733.296 1994.54 731.758 1988.64 731.758C1982.88 731.758 1978.24 733.052 1974.72 735.64C1971.25 738.179 1969.52 741.499 1969.52 745.601C1969.52 749.556 1970.96 752.632 1973.84 754.829C1976.77 756.978 1982.07 758.955 1989.74 760.762C1997.45 762.568 2003.21 764.497 2007.02 766.548C2010.88 768.599 2013.73 771.064 2015.59 773.945C2017.45 776.826 2018.37 780.317 2018.37 784.419C2018.37 791.108 2015.66 796.455 2010.24 800.459C2004.87 804.463 1997.84 806.465 1989.15 806.465C1979.92 806.465 1972.43 804.243 1966.66 799.8C1960.95 795.308 1958.09 789.644 1958.09 782.808H1966.88C1967.23 787.935 1969.37 791.938 1973.33 794.819C1977.33 797.651 1982.61 799.067 1989.15 799.067C1995.25 799.067 2000.18 797.725 2003.94 795.039C2007.7 792.354 2009.58 788.96 2009.58 784.858ZM2084.44 805H2075.65V725.752H2084.44V805ZM2074.11 702.827C2074.11 701.167 2074.65 699.775 2075.72 698.652C2076.8 697.48 2078.26 696.895 2080.12 696.895C2081.97 696.895 2083.44 697.48 2084.51 698.652C2085.63 699.775 2086.2 701.167 2086.2 702.827C2086.2 704.487 2085.63 705.879 2084.51 707.002C2083.44 708.125 2081.97 708.687 2080.12 708.687C2078.26 708.687 2076.8 708.125 2075.72 707.002C2074.65 705.879 2074.11 704.487 2074.11 702.827ZM2116.66 725.752L2116.96 739.302C2119.94 734.419 2123.65 730.708 2128.09 728.169C2132.53 725.581 2137.44 724.287 2142.81 724.287C2151.31 724.287 2157.63 726.68 2161.78 731.465C2165.93 736.25 2168.03 743.428 2168.08 752.998V805H2159.36V752.925C2159.32 745.845 2157.8 740.571 2154.82 737.104C2151.89 733.638 2147.18 731.904 2140.69 731.904C2135.27 731.904 2130.46 733.613 2126.26 737.031C2122.11 740.4 2119.03 744.966 2117.03 750.728V805H2108.31V725.752H2116.66ZM2222.43 764.204C2222.43 756.587 2223.89 749.727 2226.82 743.623C2229.8 737.52 2233.97 732.783 2239.34 729.414C2244.76 725.996 2250.89 724.287 2257.73 724.287C2268.28 724.287 2276.82 727.998 2283.36 735.42C2289.91 742.793 2293.18 752.583 2293.18 764.79V766.621C2293.18 774.287 2291.69 781.196 2288.71 787.349C2285.78 793.452 2281.63 798.164 2276.26 801.484C2270.89 804.805 2264.76 806.465 2257.88 806.465C2247.38 806.465 2238.83 802.778 2232.24 795.405C2225.7 787.983 2222.43 778.169 2222.43 765.962V764.204ZM2231.21 766.621C2231.21 776.094 2233.66 783.882 2238.54 789.985C2243.47 796.04 2249.92 799.067 2257.88 799.067C2265.79 799.067 2272.18 796.04 2277.06 789.985C2282 783.882 2284.46 775.85 2284.46 765.889V764.204C2284.46 758.149 2283.34 752.607 2281.09 747.578C2278.85 742.549 2275.7 738.667 2271.64 735.933C2267.59 733.149 2262.95 731.758 2257.73 731.758C2249.92 731.758 2243.54 734.834 2238.61 740.986C2233.68 747.09 2231.21 755.098 2231.21 765.01V766.621ZM2319.69 725.752L2319.98 739.302C2322.96 734.419 2326.67 730.708 2331.12 728.169C2335.56 725.581 2340.47 724.287 2345.84 724.287C2354.33 724.287 2360.66 726.68 2364.81 731.465C2368.96 736.25 2371.06 743.428 2371.11 752.998V805H2362.39V752.925C2362.34 745.845 2360.83 740.571 2357.85 737.104C2354.92 733.638 2350.21 731.904 2343.71 731.904C2338.29 731.904 2333.49 733.613 2329.29 737.031C2325.14 740.4 2322.06 744.966 2320.06 750.728V805H2311.34V725.752H2319.69ZM2424.5 806.465C2417.76 806.465 2411.66 804.805 2406.19 801.484C2400.77 798.164 2396.55 793.55 2393.52 787.642C2390.49 781.685 2388.98 775.02 2388.98 767.646V764.497C2388.98 756.88 2390.44 750.02 2393.37 743.916C2396.35 737.812 2400.48 733.027 2405.75 729.561C2411.02 726.045 2416.74 724.287 2422.89 724.287C2432.51 724.287 2440.13 727.583 2445.74 734.175C2451.41 740.718 2454.24 749.678 2454.24 761.055V765.962H2397.69V767.646C2397.69 776.631 2400.26 784.126 2405.38 790.132C2410.56 796.089 2417.05 799.067 2424.87 799.067C2429.55 799.067 2433.68 798.213 2437.25 796.504C2440.86 794.795 2444.13 792.061 2447.06 788.301L2452.55 792.476C2446.11 801.802 2436.76 806.465 2424.5 806.465ZM2422.89 731.758C2416.3 731.758 2410.73 734.175 2406.19 739.009C2401.7 743.843 2398.96 750.337 2397.99 758.491H2445.52V757.539C2445.28 749.922 2443.1 743.721 2439 738.936C2434.9 734.15 2429.53 731.758 2422.89 731.758ZM2571.5 766.182C2571.5 778.535 2568.76 788.35 2563.29 795.625C2557.83 802.852 2550.5 806.465 2541.32 806.465C2530.48 806.465 2522.18 802.656 2516.42 795.039V835.469H2507.7V725.752H2515.83L2516.27 736.958C2521.99 728.511 2530.26 724.287 2541.1 724.287C2550.58 724.287 2558 727.876 2563.37 735.054C2568.79 742.231 2571.5 752.192 2571.5 764.937V766.182ZM2562.71 764.644C2562.71 754.536 2560.63 746.553 2556.48 740.693C2552.33 734.834 2546.55 731.904 2539.12 731.904C2533.75 731.904 2529.14 733.198 2525.28 735.786C2521.42 738.374 2518.47 742.134 2516.42 747.065V785.078C2518.52 789.619 2521.52 793.086 2525.43 795.479C2529.33 797.871 2533.95 799.067 2539.27 799.067C2546.64 799.067 2552.38 796.138 2556.48 790.278C2560.63 784.37 2562.71 775.825 2562.71 764.644ZM2600.79 805H2592.01V692.5H2600.79V805ZM2674.7 805C2673.82 802.51 2673.26 798.823 2673.01 793.94C2669.94 797.944 2666 801.045 2661.22 803.242C2656.48 805.391 2651.45 806.465 2646.13 806.465C2638.51 806.465 2632.34 804.341 2627.6 800.093C2622.91 795.845 2620.57 790.474 2620.57 783.979C2620.57 776.265 2623.77 770.161 2630.17 765.669C2636.61 761.177 2645.57 758.931 2657.04 758.931H2672.94V749.922C2672.94 744.258 2671.18 739.814 2667.67 736.592C2664.2 733.32 2659.12 731.685 2652.43 731.685C2646.33 731.685 2641.27 733.247 2637.27 736.372C2633.27 739.497 2631.26 743.257 2631.26 747.651L2622.47 747.578C2622.47 741.279 2625.4 735.835 2631.26 731.245C2637.12 726.606 2644.33 724.287 2652.87 724.287C2661.71 724.287 2668.67 726.509 2673.74 730.952C2678.87 735.347 2681.51 741.499 2681.65 749.409V786.909C2681.65 794.575 2682.46 800.312 2684.07 804.121V805H2674.7ZM2647.16 798.701C2653.02 798.701 2658.24 797.285 2662.83 794.453C2667.47 791.621 2670.84 787.837 2672.94 783.101V765.669H2657.26C2648.52 765.767 2641.69 767.378 2636.76 770.503C2631.83 773.579 2629.36 777.827 2629.36 783.247C2629.36 787.69 2631 791.377 2634.27 794.307C2637.59 797.236 2641.88 798.701 2647.16 798.701ZM2734.39 799.067C2740.49 799.067 2745.59 797.358 2749.7 793.94C2753.85 790.474 2756.09 786.006 2756.43 780.537H2764.86C2764.61 785.371 2763.1 789.79 2760.32 793.794C2757.53 797.749 2753.82 800.85 2749.18 803.096C2744.59 805.342 2739.66 806.465 2734.39 806.465C2723.99 806.465 2715.74 802.852 2709.63 795.625C2703.58 788.398 2700.55 778.682 2700.55 766.475V763.838C2700.55 756.025 2701.92 749.116 2704.65 743.11C2707.39 737.104 2711.29 732.466 2716.37 729.194C2721.5 725.923 2727.48 724.287 2734.32 724.287C2743.01 724.287 2750.16 726.875 2755.78 732.051C2761.44 737.227 2764.47 744.038 2764.86 752.485H2756.43C2756.04 746.284 2753.8 741.279 2749.7 737.471C2745.64 733.662 2740.52 731.758 2734.32 731.758C2726.41 731.758 2720.25 734.614 2715.86 740.327C2711.51 746.04 2709.34 754.048 2709.34 764.351V766.914C2709.34 777.021 2711.51 784.907 2715.86 790.571C2720.25 796.235 2726.43 799.067 2734.39 799.067ZM2813.12 806.465C2806.39 806.465 2800.28 804.805 2794.81 801.484C2789.39 798.164 2785.17 793.55 2782.14 787.642C2779.12 781.685 2777.6 775.02 2777.6 767.646V764.497C2777.6 756.88 2779.07 750.02 2782 743.916C2784.97 737.812 2789.1 733.027 2794.37 729.561C2799.65 726.045 2805.36 724.287 2811.51 724.287C2821.13 724.287 2828.75 727.583 2834.36 734.175C2840.03 740.718 2842.86 749.678 2842.86 761.055V765.962H2786.32V767.646C2786.32 776.631 2788.88 784.126 2794.01 790.132C2799.18 796.089 2805.68 799.067 2813.49 799.067C2818.18 799.067 2822.3 798.213 2825.87 796.504C2829.48 794.795 2832.75 792.061 2835.68 788.301L2841.18 792.476C2834.73 801.802 2825.38 806.465 2813.12 806.465ZM2811.51 731.758C2804.92 731.758 2799.35 734.175 2794.81 739.009C2790.32 743.843 2787.59 750.337 2786.61 758.491H2834.14V757.539C2833.9 749.922 2831.73 743.721 2827.63 738.936C2823.52 734.15 2818.15 731.758 2811.51 731.758Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 2245.06 93)" stroke="url(#paint0_linear)" stroke-width="50" shape-rendering="crispEdges"/>
-</g>
-<g filter="url(#filter2_d)">
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 1794.8 93)" stroke="url(#paint1_linear)" stroke-width="50" shape-rendering="crispEdges"/>
-</g>
-<g filter="url(#filter3_d)">
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 1344.53 93)" stroke="url(#paint2_linear)" stroke-width="50" shape-rendering="crispEdges"/>
-</g>
-<g filter="url(#filter4_d)">
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 894.266 93)" fill="url(#paint3_linear)"/>
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 894.266 93)" stroke="url(#paint4_linear)" stroke-width="50"/>
-</g>
-<g filter="url(#filter5_d)">
-<rect width="727.025" height="311.788" rx="60" transform="matrix(0.97237 0.233445 0 1 444 93)" stroke="url(#paint5_linear)" stroke-width="50" shape-rendering="crispEdges"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="3488" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="2161.75" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter2_d" x="1711.49" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter3_d" x="1261.22" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter4_d" x="810.957" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter5_d" x="360.691" y="20.7021" width="873.556" height="626.105" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="9" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="25"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint3_linear" x1="0" y1="0" x2="567.74" y2="502.51" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint4_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint5_linear" x1="3.0037e-05" y1="-7.7497" x2="667.482" y2="407.834" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Roles.svg b/public/Features/ClicksForms/Roles.svg
deleted file mode 100644
index 55c28d1..0000000
--- a/public/Features/ClicksForms/Roles.svg
+++ /dev/null
@@ -1,57 +0,0 @@
-<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<g clip-path="url(#clip0)">
-<g filter="url(#filter1_d)">
-<path d="M371.007 444.101V444.11L371.007 444.143C371.006 444.194 371.005 444.284 371.004 444.411C371 444.667 370.993 445.073 370.979 445.621C370.949 446.717 370.888 448.376 370.764 450.517C370.514 454.803 370.012 460.997 369 468.456C366.968 483.447 362.926 503.193 354.972 522.746C347.009 542.322 335.374 561.095 318.498 574.924C301.853 588.563 279.379 598.009 248.348 598.009C217.316 598.009 194.843 588.563 178.198 574.924C161.321 561.095 149.686 542.322 141.723 522.746C133.769 503.193 129.728 483.447 127.695 468.456C126.683 460.997 126.181 454.803 125.932 450.517C125.807 448.376 125.747 446.717 125.717 445.621C125.702 445.073 125.695 444.667 125.692 444.411C125.69 444.284 125.689 444.194 125.689 444.143L125.689 444.11L125.689 444.101L125.689 444.098V319.056H248.348H371.007V444.096V444.101Z" stroke="#F2D478" stroke-width="27.3771" shape-rendering="crispEdges"/>
-</g>
-</g>
-<path d="M123.222 740.763L124.54 747.574L126.298 740.396L145.341 679.752H152.812L171.635 739.884L173.686 748.233L175.37 740.543L191.63 679.752H200.712L177.641 759H170.17L149.809 696.158L148.856 691.837L147.904 696.231L127.909 759H120.438L97.4404 679.752H106.449L123.222 740.763ZM226.054 693.155C228.935 688.419 232.621 684.757 237.113 682.169C241.605 679.581 246.513 678.287 251.835 678.287C260.331 678.287 266.654 680.68 270.805 685.465C274.955 690.25 277.055 697.428 277.104 706.998V759H268.388V706.925C268.339 699.845 266.825 694.571 263.847 691.104C260.917 687.638 256.205 685.904 249.711 685.904C244.291 685.904 239.481 687.613 235.282 691.031C231.132 694.4 228.056 698.966 226.054 704.728V759H217.338V646.5H226.054V693.155ZM330.351 760.465C323.612 760.465 317.509 758.805 312.04 755.484C306.62 752.164 302.396 747.55 299.369 741.642C296.342 735.685 294.828 729.02 294.828 721.646V718.497C294.828 710.88 296.293 704.02 299.223 697.916C302.201 691.812 306.327 687.027 311.601 683.561C316.874 680.045 322.587 678.287 328.739 678.287C338.358 678.287 345.976 681.583 351.591 688.175C357.255 694.718 360.087 703.678 360.087 715.055V719.962H303.544V721.646C303.544 730.631 306.107 738.126 311.234 744.132C316.41 750.089 322.904 753.067 330.717 753.067C335.404 753.067 339.53 752.213 343.095 750.504C346.708 748.795 349.979 746.061 352.909 742.301L358.402 746.476C351.957 755.802 342.606 760.465 330.351 760.465ZM328.739 685.758C322.147 685.758 316.581 688.175 312.04 693.009C307.548 697.843 304.813 704.337 303.837 712.491H351.371V711.539C351.127 703.922 348.954 697.721 344.853 692.936C340.751 688.15 335.38 685.758 328.739 685.758ZM385.502 679.752L385.795 693.302C388.773 688.419 392.484 684.708 396.928 682.169C401.371 679.581 406.278 678.287 411.649 678.287C420.146 678.287 426.469 680.68 430.619 685.465C434.77 690.25 436.869 697.428 436.918 706.998V759H428.202V706.925C428.153 699.845 426.64 694.571 423.661 691.104C420.731 687.638 416.02 685.904 409.525 685.904C404.105 685.904 399.296 687.613 395.097 691.031C390.946 694.4 387.87 698.966 385.868 704.728V759H377.152V679.752H385.502ZM525.395 753.067C531.498 753.067 536.601 751.358 540.702 747.94C544.853 744.474 547.099 740.006 547.44 734.537H555.863C555.619 739.371 554.105 743.79 551.322 747.794C548.539 751.749 544.828 754.85 540.189 757.096C535.6 759.342 530.668 760.465 525.395 760.465C514.994 760.465 506.742 756.852 500.639 749.625C494.584 742.398 491.557 732.682 491.557 720.475V717.838C491.557 710.025 492.924 703.116 495.658 697.11C498.393 691.104 502.299 686.466 507.377 683.194C512.504 679.923 518.485 678.287 525.321 678.287C534.013 678.287 541.166 680.875 546.781 686.051C552.445 691.227 555.473 698.038 555.863 706.485H547.44C547.05 700.284 544.804 695.279 540.702 691.471C536.649 687.662 531.522 685.758 525.321 685.758C517.411 685.758 511.259 688.614 506.864 694.327C502.519 700.04 500.346 708.048 500.346 718.351V720.914C500.346 731.021 502.519 738.907 506.864 744.571C511.259 750.235 517.436 753.067 525.395 753.067ZM568.607 718.204C568.607 710.587 570.072 703.727 573.002 697.623C575.98 691.52 580.155 686.783 585.526 683.414C590.946 679.996 597.074 678.287 603.91 678.287C614.457 678.287 623.002 681.998 629.545 689.42C636.088 696.793 639.359 706.583 639.359 718.79V720.621C639.359 728.287 637.87 735.196 634.892 741.349C631.962 747.452 627.812 752.164 622.44 755.484C617.069 758.805 610.941 760.465 604.057 760.465C593.559 760.465 585.014 756.778 578.422 749.405C571.879 741.983 568.607 732.169 568.607 719.962V718.204ZM577.396 720.621C577.396 730.094 579.838 737.882 584.721 743.985C589.652 750.04 596.098 753.067 604.057 753.067C611.967 753.067 618.363 750.04 623.246 743.985C628.178 737.882 630.644 729.85 630.644 719.889V718.204C630.644 712.149 629.521 706.607 627.274 701.578C625.028 696.549 621.879 692.667 617.826 689.933C613.773 687.149 609.135 685.758 603.91 685.758C596.098 685.758 589.726 688.834 584.794 694.986C579.862 701.09 577.396 709.098 577.396 719.01V720.621ZM665.507 679.752L665.8 692.643C668.729 687.857 672.392 684.269 676.786 681.876C681.181 679.483 686.063 678.287 691.435 678.287C703.935 678.287 711.869 683.414 715.238 693.668C718.07 688.736 721.854 684.952 726.591 682.315C731.327 679.63 736.552 678.287 742.265 678.287C759.257 678.287 767.924 687.564 768.266 706.119V759H759.477V706.778C759.428 699.698 757.89 694.449 754.862 691.031C751.884 687.613 747.001 685.904 740.214 685.904C733.915 686.002 728.593 688.053 724.247 692.057C719.901 696.012 717.484 700.846 716.996 706.559V759H708.207V706.119C708.158 699.332 706.547 694.278 703.373 690.958C700.248 687.589 695.414 685.904 688.871 685.904C683.354 685.904 678.617 687.491 674.662 690.665C670.707 693.79 667.777 698.453 665.873 704.654V759H657.084V679.752H665.507ZM854.252 720.182C854.252 732.535 851.518 742.35 846.049 749.625C840.58 756.852 833.256 760.465 824.076 760.465C813.236 760.465 804.936 756.656 799.174 749.039V789.469H790.458V679.752H798.588L799.027 690.958C804.74 682.511 813.017 678.287 823.856 678.287C833.329 678.287 840.751 681.876 846.122 689.054C851.542 696.231 854.252 706.192 854.252 718.937V720.182ZM845.463 718.644C845.463 708.536 843.388 700.553 839.237 694.693C835.087 688.834 829.301 685.904 821.879 685.904C816.508 685.904 811.894 687.198 808.036 689.786C804.179 692.374 801.225 696.134 799.174 701.065V739.078C801.273 743.619 804.276 747.086 808.183 749.479C812.089 751.871 816.703 753.067 822.025 753.067C829.398 753.067 835.136 750.138 839.237 744.278C843.388 738.37 845.463 729.825 845.463 718.644ZM883.549 759H874.76V646.5H883.549V759ZM938.114 760.465C931.376 760.465 925.272 758.805 919.804 755.484C914.384 752.164 910.16 747.55 907.133 741.642C904.105 735.685 902.592 729.02 902.592 721.646V718.497C902.592 710.88 904.057 704.02 906.986 697.916C909.965 691.812 914.091 687.027 919.364 683.561C924.638 680.045 930.351 678.287 936.503 678.287C946.122 678.287 953.739 681.583 959.354 688.175C965.019 694.718 967.851 703.678 967.851 715.055V719.962H911.308V721.646C911.308 730.631 913.871 738.126 918.998 744.132C924.174 750.089 930.668 753.067 938.48 753.067C943.168 753.067 947.294 752.213 950.858 750.504C954.472 748.795 957.743 746.061 960.673 742.301L966.166 746.476C959.721 755.802 950.37 760.465 938.114 760.465ZM936.503 685.758C929.911 685.758 924.345 688.175 919.804 693.009C915.312 697.843 912.577 704.337 911.601 712.491H959.135V711.539C958.891 703.922 956.718 697.721 952.616 692.936C948.515 688.15 943.144 685.758 936.503 685.758ZM998.539 659.464V679.752H1014.95V686.93H998.539V739.737C998.539 744.132 999.32 747.403 1000.88 749.552C1002.49 751.7 1005.16 752.774 1008.87 752.774C1010.33 752.774 1012.7 752.53 1015.97 752.042L1016.34 759.22C1014.04 760.05 1010.92 760.465 1006.96 760.465C1000.96 760.465 996.586 758.731 993.852 755.265C991.117 751.749 989.75 746.598 989.75 739.811V686.93H975.175V679.752H989.75V659.464H998.539ZM1063.8 760.465C1057.06 760.465 1050.96 758.805 1045.49 755.484C1040.07 752.164 1035.84 747.55 1032.82 741.642C1029.79 735.685 1028.28 729.02 1028.28 721.646V718.497C1028.28 710.88 1029.74 704.02 1032.67 697.916C1035.65 691.812 1039.77 687.027 1045.05 683.561C1050.32 680.045 1056.03 678.287 1062.19 678.287C1071.81 678.287 1079.42 681.583 1085.04 688.175C1090.7 694.718 1093.53 703.678 1093.53 715.055V719.962H1036.99V721.646C1036.99 730.631 1039.55 738.126 1044.68 744.132C1049.86 750.089 1056.35 753.067 1064.16 753.067C1068.85 753.067 1072.98 752.213 1076.54 750.504C1080.16 748.795 1083.43 746.061 1086.36 742.301L1091.85 746.476C1085.4 755.802 1076.05 760.465 1063.8 760.465ZM1062.19 685.758C1055.59 685.758 1050.03 688.175 1045.49 693.009C1041 697.843 1038.26 704.337 1037.28 712.491H1084.82V711.539C1084.57 703.922 1082.4 697.721 1078.3 692.936C1074.2 688.15 1068.83 685.758 1062.19 685.758Z" fill="black"/>
-<path d="M194.633 220.329C191.508 224.772 186.601 228.239 179.911 230.729C173.271 233.22 165.824 234.465 157.572 234.465C149.223 234.465 141.801 232.463 135.307 228.459C128.812 224.455 123.783 218.791 120.219 211.467C116.654 204.143 114.848 195.744 114.799 186.271V172.795C114.799 158 118.534 146.33 126.005 137.785C133.476 129.191 143.51 124.895 156.107 124.895C167.094 124.895 175.932 127.702 182.621 133.317C189.311 138.884 193.29 146.574 194.56 156.389H185.551C184.232 148.576 181.034 142.668 175.956 138.664C170.927 134.611 164.335 132.585 156.181 132.585C146.22 132.585 138.334 136.125 132.523 143.205C126.713 150.285 123.808 160.271 123.808 173.161V185.759C123.808 193.864 125.175 201.042 127.909 207.292C130.692 213.493 134.647 218.303 139.774 221.721C144.95 225.139 150.883 226.848 157.572 226.848C165.336 226.848 172.001 225.627 177.567 223.186C181.181 221.574 183.866 219.694 185.624 217.546V190.007H156.986V182.39H194.633V220.329ZM227.958 233H219.169V153.752H227.958V233ZM217.631 130.827C217.631 129.167 218.168 127.775 219.242 126.652C220.316 125.48 221.781 124.895 223.637 124.895C225.492 124.895 226.957 125.48 228.031 126.652C229.154 127.775 229.716 129.167 229.716 130.827C229.716 132.487 229.154 133.879 228.031 135.002C226.957 136.125 225.492 136.687 223.637 136.687C221.781 136.687 220.316 136.125 219.242 135.002C218.168 133.879 217.631 132.487 217.631 130.827ZM276.518 220.915L300.614 153.752H309.623L280.033 233H272.929L243.192 153.752H252.201L276.518 220.915ZM353.715 234.465C346.977 234.465 340.873 232.805 335.404 229.484C329.984 226.164 325.761 221.55 322.733 215.642C319.706 209.685 318.192 203.02 318.192 195.646V192.497C318.192 184.88 319.657 178.02 322.587 171.916C325.565 165.812 329.691 161.027 334.965 157.561C340.238 154.045 345.951 152.287 352.104 152.287C361.723 152.287 369.34 155.583 374.955 162.175C380.619 168.718 383.451 177.678 383.451 189.055V193.962H326.908V195.646C326.908 204.631 329.472 212.126 334.599 218.132C339.774 224.089 346.269 227.067 354.081 227.067C358.769 227.067 362.895 226.213 366.459 224.504C370.072 222.795 373.344 220.061 376.273 216.301L381.767 220.476C375.321 229.802 365.971 234.465 353.715 234.465ZM352.104 159.758C345.512 159.758 339.945 162.175 335.404 167.009C330.912 171.843 328.178 178.337 327.201 186.491H374.735V185.539C374.491 177.922 372.318 171.721 368.217 166.936C364.115 162.15 358.744 159.758 352.104 159.758ZM432.157 192.204C432.157 184.587 433.622 177.727 436.552 171.623C439.53 165.52 443.705 160.783 449.076 157.414C454.496 153.996 460.624 152.287 467.46 152.287C478.007 152.287 486.552 155.998 493.095 163.42C499.638 170.793 502.909 180.583 502.909 192.79V194.621C502.909 202.287 501.42 209.196 498.441 215.349C495.512 221.452 491.361 226.164 485.99 229.484C480.619 232.805 474.491 234.465 467.606 234.465C457.108 234.465 448.563 230.778 441.972 223.405C435.429 215.983 432.157 206.169 432.157 193.962V192.204ZM440.946 194.621C440.946 204.094 443.388 211.882 448.271 217.985C453.202 224.04 459.647 227.067 467.606 227.067C475.517 227.067 481.913 224.04 486.796 217.985C491.728 211.882 494.193 203.85 494.193 193.889V192.204C494.193 186.149 493.07 180.607 490.824 175.578C488.578 170.549 485.429 166.667 481.376 163.933C477.323 161.149 472.685 159.758 467.46 159.758C459.647 159.758 453.275 162.834 448.344 168.986C443.412 175.09 440.946 183.098 440.946 193.01V194.621ZM557.694 161.223C555.839 160.881 553.861 160.71 551.762 160.71C546.293 160.71 541.654 162.248 537.846 165.324C534.086 168.352 531.4 172.771 529.789 178.581V233H521.073V153.752H529.643L529.789 166.35C534.428 156.975 541.874 152.287 552.128 152.287C554.569 152.287 556.498 152.604 557.914 153.239L557.694 161.223ZM644.706 161.223C642.851 160.881 640.873 160.71 638.773 160.71C633.305 160.71 628.666 162.248 624.857 165.324C621.098 168.352 618.412 172.771 616.801 178.581V233H608.085V153.752H616.654L616.801 166.35C621.439 156.975 628.886 152.287 639.14 152.287C641.581 152.287 643.51 152.604 644.926 153.239L644.706 161.223ZM687.846 234.465C681.107 234.465 675.004 232.805 669.535 229.484C664.115 226.164 659.892 221.55 656.864 215.642C653.837 209.685 652.323 203.02 652.323 195.646V192.497C652.323 184.88 653.788 178.02 656.718 171.916C659.696 165.812 663.822 161.027 669.096 157.561C674.369 154.045 680.082 152.287 686.234 152.287C695.854 152.287 703.471 155.583 709.086 162.175C714.75 168.718 717.582 177.678 717.582 189.055V193.962H661.039V195.646C661.039 204.631 663.603 212.126 668.729 218.132C673.905 224.089 680.399 227.067 688.212 227.067C692.899 227.067 697.025 226.213 700.59 224.504C704.203 222.795 707.475 220.061 710.404 216.301L715.897 220.476C709.452 229.802 700.102 234.465 687.846 234.465ZM686.234 159.758C679.643 159.758 674.076 162.175 669.535 167.009C665.043 171.843 662.309 178.337 661.332 186.491H708.866V185.539C708.622 177.922 706.449 171.721 702.348 166.936C698.246 162.15 692.875 159.758 686.234 159.758ZM742.631 153.752L742.924 166.643C745.854 161.857 749.516 158.269 753.91 155.876C758.305 153.483 763.188 152.287 768.559 152.287C781.059 152.287 788.993 157.414 792.362 167.668C795.194 162.736 798.979 158.952 803.715 156.315C808.451 153.63 813.676 152.287 819.389 152.287C836.381 152.287 845.048 161.564 845.39 180.119V233H836.601V180.778C836.552 173.698 835.014 168.449 831.986 165.031C829.008 161.613 824.125 159.904 817.338 159.904C811.039 160.002 805.717 162.053 801.371 166.057C797.025 170.012 794.608 174.846 794.12 180.559V233H785.331V180.119C785.282 173.332 783.671 168.278 780.497 164.958C777.372 161.589 772.538 159.904 765.995 159.904C760.478 159.904 755.741 161.491 751.786 164.665C747.831 167.79 744.901 172.453 742.997 178.654V233H734.208V153.752H742.631ZM862.821 192.204C862.821 184.587 864.286 177.727 867.216 171.623C870.194 165.52 874.369 160.783 879.74 157.414C885.16 153.996 891.288 152.287 898.124 152.287C908.671 152.287 917.216 155.998 923.759 163.42C930.302 170.793 933.573 180.583 933.573 192.79V194.621C933.573 202.287 932.084 209.196 929.105 215.349C926.176 221.452 922.025 226.164 916.654 229.484C911.283 232.805 905.155 234.465 898.271 234.465C887.772 234.465 879.228 230.778 872.636 223.405C866.093 215.983 862.821 206.169 862.821 193.962V192.204ZM871.61 194.621C871.61 204.094 874.052 211.882 878.935 217.985C883.866 224.04 890.312 227.067 898.271 227.067C906.181 227.067 912.577 224.04 917.46 217.985C922.392 211.882 924.857 203.85 924.857 193.889V192.204C924.857 186.149 923.734 180.607 921.488 175.578C919.242 170.549 916.093 166.667 912.04 163.933C907.987 161.149 903.349 159.758 898.124 159.758C890.312 159.758 883.939 162.834 879.008 168.986C874.076 175.09 871.61 183.098 871.61 193.01V194.621ZM975.248 220.915L999.345 153.752H1008.35L978.764 233H971.659L941.923 153.752H950.932L975.248 220.915ZM1052.45 234.465C1045.71 234.465 1039.6 232.805 1034.13 229.484C1028.71 226.164 1024.49 221.55 1021.46 215.642C1018.44 209.685 1016.92 203.02 1016.92 195.646V192.497C1016.92 184.88 1018.39 178.02 1021.32 171.916C1024.3 165.812 1028.42 161.027 1033.7 157.561C1038.97 154.045 1044.68 152.287 1050.83 152.287C1060.45 152.287 1068.07 155.583 1073.69 162.175C1079.35 168.718 1082.18 177.678 1082.18 189.055V193.962H1025.64V195.646C1025.64 204.631 1028.2 212.126 1033.33 218.132C1038.5 224.089 1045 227.067 1052.81 227.067C1057.5 227.067 1061.62 226.213 1065.19 224.504C1068.8 222.795 1072.07 220.061 1075 216.301L1080.5 220.476C1074.05 229.802 1064.7 234.465 1052.45 234.465ZM1050.83 159.758C1044.24 159.758 1038.68 162.175 1034.13 167.009C1029.64 171.843 1026.91 178.337 1025.93 186.491H1073.47V185.539C1073.22 177.922 1071.05 171.721 1066.95 166.936C1062.85 162.15 1057.47 159.758 1050.83 159.758Z" fill="black"/>
-<g filter="url(#filter2_d)">
-<path d="M572.642 461.519H538.218V530H507.334V352.266H569.834C590.342 352.266 606.17 356.864 617.319 366.06C628.468 375.256 634.043 388.561 634.043 405.977C634.043 417.858 631.154 427.827 625.376 435.884C619.679 443.859 611.704 450.003 601.45 454.316L641.367 528.413V530H608.286L572.642 461.519ZM538.218 436.738H569.956C580.373 436.738 588.511 434.134 594.37 428.926C600.229 423.636 603.159 416.434 603.159 407.319C603.159 397.798 600.433 390.433 594.98 385.225C589.609 380.016 581.553 377.331 570.811 377.168H538.218V436.738ZM654.917 462.739C654.917 449.8 657.48 438.162 662.607 427.827C667.734 417.41 674.937 409.435 684.214 403.901C693.491 398.286 704.152 395.479 716.196 395.479C734.019 395.479 748.464 401.216 759.531 412.69C770.68 424.165 776.702 439.383 777.598 458.345L777.72 465.303C777.72 478.324 775.197 489.961 770.151 500.215C765.187 510.469 758.026 518.403 748.667 524.019C739.39 529.634 728.647 532.441 716.44 532.441C697.804 532.441 682.871 526.257 671.641 513.887C660.492 501.436 654.917 484.875 654.917 464.204V462.739ZM684.58 465.303C684.58 478.893 687.388 489.554 693.003 497.285C698.618 504.935 706.431 508.76 716.44 508.76C726.45 508.76 734.222 504.854 739.756 497.041C745.371 489.229 748.179 477.795 748.179 462.739C748.179 449.393 745.29 438.813 739.512 431.001C733.815 423.188 726.043 419.282 716.196 419.282C706.512 419.282 698.822 423.148 693.125 430.879C687.428 438.529 684.58 450.003 684.58 465.303ZM834.36 530H804.697V342.5H834.36V530ZM924.937 532.441C906.138 532.441 890.879 526.541 879.16 514.741C867.523 502.86 861.704 487.072 861.704 467.378V463.716C861.704 450.532 864.227 438.773 869.272 428.438C874.399 418.021 881.561 409.924 890.757 404.146C899.953 398.368 910.207 395.479 921.519 395.479C939.504 395.479 953.379 401.216 963.145 412.69C972.992 424.165 977.915 440.4 977.915 461.396V473.359H891.611C892.507 484.264 896.128 492.891 902.476 499.238C908.905 505.586 916.961 508.76 926.646 508.76C940.236 508.76 951.304 503.267 959.849 492.28L975.84 507.539C970.55 515.433 963.47 521.577 954.6 525.972C945.811 530.285 935.923 532.441 924.937 532.441ZM921.396 419.282C913.258 419.282 906.667 422.131 901.621 427.827C896.657 433.524 893.483 441.458 892.1 451.631H948.618V449.434C947.967 439.505 945.322 432.018 940.684 426.973C936.045 421.846 929.616 419.282 921.396 419.282ZM1075.08 494.111C1075.08 488.822 1072.89 484.793 1068.49 482.026C1064.18 479.259 1056.98 476.818 1046.88 474.702C1036.79 472.586 1028.37 469.901 1021.62 466.646C1006.81 459.484 999.399 449.108 999.399 435.518C999.399 424.124 1004.2 414.603 1013.8 406.953C1023.41 399.303 1035.61 395.479 1050.42 395.479C1066.21 395.479 1078.95 399.385 1088.63 407.197C1098.4 415.01 1103.28 425.142 1103.28 437.593H1073.62C1073.62 431.896 1071.5 427.176 1067.27 423.433C1063.04 419.608 1057.42 417.695 1050.42 417.695C1043.91 417.695 1038.58 419.201 1034.43 422.212C1030.36 425.223 1028.33 429.251 1028.33 434.297C1028.33 438.854 1030.24 442.394 1034.07 444.917C1037.89 447.44 1045.62 450.003 1057.26 452.607C1068.9 455.13 1078.01 458.182 1084.6 461.763C1091.28 465.262 1096.2 469.494 1099.38 474.458C1102.63 479.422 1104.26 485.444 1104.26 492.524C1104.26 504.406 1099.33 514.049 1089.49 521.455C1079.64 528.779 1066.74 532.441 1050.79 532.441C1039.97 532.441 1030.32 530.488 1021.86 526.582C1013.4 522.676 1006.81 517.305 1002.08 510.469C997.365 503.633 995.005 496.268 995.005 488.374H1023.81C1024.22 495.373 1026.87 500.785 1031.75 504.609C1036.63 508.353 1043.1 510.225 1051.16 510.225C1058.97 510.225 1064.91 508.76 1068.98 505.83C1073.05 502.819 1075.08 498.913 1075.08 494.111Z" fill="url(#paint0_linear)"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="44" y="237.367" width="408.695" height="442.33" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="25" operator="dilate" in="SourceAlpha" result="effect1_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="21.5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter2_d" x="482.334" y="317.5" width="646.924" height="239.941" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="12.5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="197" y1="352" x2="1115" y2="537" gradientUnits="userSpaceOnUse">
-<stop stop-color="#F2D478"/>
-<stop offset="1" stop-color="#EDC575"/>
-</linearGradient>
-<clipPath id="clip0">
-<rect width="390" height="390" fill="white" transform="translate(53 249)"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Features/ClicksForms/Types.svg b/public/Features/ClicksForms/Types.svg
deleted file mode 100644
index a2eca14..0000000
--- a/public/Features/ClicksForms/Types.svg
+++ /dev/null
@@ -1,48 +0,0 @@
-<svg width="1196" height="896" viewBox="0 0 1196 896" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="4" width="1188" height="888" rx="100" fill="white" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M179.618 181.329C176.493 185.772 171.586 189.239 164.896 191.729C158.256 194.22 150.81 195.465 142.558 195.465C134.208 195.465 126.786 193.463 120.292 189.459C113.798 185.455 108.769 179.791 105.204 172.467C101.64 165.143 99.833 156.744 99.7842 147.271V133.795C99.7842 119 103.52 107.33 110.99 98.7852C118.461 90.1914 128.495 85.8945 141.093 85.8945C152.079 85.8945 160.917 88.7021 167.606 94.3174C174.296 99.8838 178.275 107.574 179.545 117.389H170.536C169.218 109.576 166.02 103.668 160.941 99.6641C155.912 95.6113 149.32 93.585 141.166 93.585C131.205 93.585 123.319 97.125 117.509 104.205C111.698 111.285 108.793 121.271 108.793 134.161V146.759C108.793 154.864 110.16 162.042 112.895 168.292C115.678 174.493 119.633 179.303 124.76 182.721C129.936 186.139 135.868 187.848 142.558 187.848C150.321 187.848 156.986 186.627 162.553 184.186C166.166 182.574 168.852 180.694 170.609 178.546V151.007H141.972V143.39H179.618V181.329ZM233.817 195.465C227.079 195.465 220.976 193.805 215.507 190.484C210.087 187.164 205.863 182.55 202.836 176.642C199.809 170.685 198.295 164.02 198.295 156.646V153.497C198.295 145.88 199.76 139.02 202.689 132.916C205.668 126.812 209.794 122.027 215.067 118.561C220.341 115.045 226.054 113.287 232.206 113.287C241.825 113.287 249.442 116.583 255.058 123.175C260.722 129.718 263.554 138.678 263.554 150.055V154.962H207.011V156.646C207.011 165.631 209.574 173.126 214.701 179.132C219.877 185.089 226.371 188.067 234.184 188.067C238.871 188.067 242.997 187.213 246.562 185.504C250.175 183.795 253.446 181.061 256.376 177.301L261.869 181.476C255.424 190.802 246.073 195.465 233.817 195.465ZM232.206 120.758C225.614 120.758 220.048 123.175 215.507 128.009C211.015 132.843 208.28 139.337 207.304 147.491H254.838V146.539C254.594 138.922 252.421 132.721 248.319 127.936C244.218 123.15 238.847 120.758 232.206 120.758ZM294.242 94.4639V114.752H310.648V121.93H294.242V174.737C294.242 179.132 295.023 182.403 296.586 184.552C298.197 186.7 300.858 187.774 304.569 187.774C306.034 187.774 308.402 187.53 311.674 187.042L312.04 194.22C309.745 195.05 306.62 195.465 302.665 195.465C296.659 195.465 292.289 193.731 289.555 190.265C286.82 186.749 285.453 181.598 285.453 174.811V121.93H270.878V114.752H285.453V94.4639H294.242ZM415.312 194C414.433 191.51 413.871 187.823 413.627 182.94C410.551 186.944 406.62 190.045 401.835 192.242C397.099 194.391 392.069 195.465 386.747 195.465C379.13 195.465 372.953 193.341 368.217 189.093C363.529 184.845 361.186 179.474 361.186 172.979C361.186 165.265 364.384 159.161 370.78 154.669C377.226 150.177 386.186 147.931 397.66 147.931H413.554V138.922C413.554 133.258 411.796 128.814 408.28 125.592C404.813 122.32 399.735 120.685 393.046 120.685C386.942 120.685 381.889 122.247 377.885 125.372C373.881 128.497 371.879 132.257 371.879 136.651L363.09 136.578C363.09 130.279 366.02 124.835 371.879 120.245C377.738 115.606 384.94 113.287 393.485 113.287C402.323 113.287 409.281 115.509 414.359 119.952C419.486 124.347 422.123 130.499 422.27 138.409V175.909C422.27 183.575 423.075 189.312 424.687 193.121V194H415.312ZM387.772 187.701C393.632 187.701 398.856 186.285 403.446 183.453C408.085 180.621 411.454 176.837 413.554 172.101V154.669H397.88C389.14 154.767 382.304 156.378 377.372 159.503C372.44 162.579 369.975 166.827 369.975 172.247C369.975 176.69 371.61 180.377 374.882 183.307C378.202 186.236 382.499 187.701 387.772 187.701ZM454.057 114.752L454.35 128.302C457.328 123.419 461.039 119.708 465.482 117.169C469.926 114.581 474.833 113.287 480.204 113.287C488.7 113.287 495.023 115.68 499.174 120.465C503.324 125.25 505.424 132.428 505.473 141.998V194H496.757V141.925C496.708 134.845 495.194 129.571 492.216 126.104C489.286 122.638 484.574 120.904 478.08 120.904C472.66 120.904 467.851 122.613 463.651 126.031C459.501 129.4 456.425 133.966 454.423 139.728V194H445.707V114.752H454.057ZM575.639 173.858C575.639 169.513 573.881 166.021 570.365 163.385C566.898 160.748 561.649 158.697 554.618 157.232C547.587 155.719 542.118 154.01 538.212 152.105C534.354 150.152 531.474 147.784 529.569 145.001C527.714 142.218 526.786 138.849 526.786 134.894C526.786 128.644 529.398 123.492 534.623 119.439C539.848 115.338 546.537 113.287 554.691 113.287C563.529 113.287 570.609 115.484 575.932 119.879C581.303 124.225 583.988 129.913 583.988 136.944H575.199C575.199 132.306 573.246 128.448 569.34 125.372C565.482 122.296 560.6 120.758 554.691 120.758C548.93 120.758 544.291 122.052 540.775 124.64C537.309 127.179 535.575 130.499 535.575 134.601C535.575 138.556 537.016 141.632 539.896 143.829C542.826 145.978 548.124 147.955 555.79 149.762C563.505 151.568 569.267 153.497 573.075 155.548C576.933 157.599 579.789 160.064 581.645 162.945C583.5 165.826 584.428 169.317 584.428 173.419C584.428 180.108 581.718 185.455 576.298 189.459C570.927 193.463 563.896 195.465 555.204 195.465C545.976 195.465 538.48 193.243 532.719 188.8C527.006 184.308 524.149 178.644 524.149 171.808H532.938C533.28 176.935 535.429 180.938 539.384 183.819C543.388 186.651 548.661 188.067 555.204 188.067C561.308 188.067 566.239 186.725 569.999 184.039C573.759 181.354 575.639 177.96 575.639 173.858ZM623.173 175.763L624.491 182.574L626.249 175.396L645.292 114.752H652.763L671.586 174.884L673.637 183.233L675.321 175.543L691.581 114.752H700.663L677.592 194H670.121L649.76 131.158L648.808 126.837L647.855 131.231L627.86 194H620.39L597.392 114.752H606.4L623.173 175.763ZM747.978 195.465C741.239 195.465 735.136 193.805 729.667 190.484C724.247 187.164 720.023 182.55 716.996 176.642C713.969 170.685 712.455 164.02 712.455 156.646V153.497C712.455 145.88 713.92 139.02 716.85 132.916C719.828 126.812 723.954 122.027 729.228 118.561C734.501 115.045 740.214 113.287 746.366 113.287C755.985 113.287 763.603 116.583 769.218 123.175C774.882 129.718 777.714 138.678 777.714 150.055V154.962H721.171V156.646C721.171 165.631 723.734 173.126 728.861 179.132C734.037 185.089 740.531 188.067 748.344 188.067C753.031 188.067 757.157 187.213 760.722 185.504C764.335 183.795 767.606 181.061 770.536 177.301L776.029 181.476C769.584 190.802 760.233 195.465 747.978 195.465ZM746.366 120.758C739.774 120.758 734.208 123.175 729.667 128.009C725.175 132.843 722.44 139.337 721.464 147.491H768.998V146.539C768.754 138.922 766.581 132.721 762.479 127.936C758.378 123.15 753.007 120.758 746.366 120.758ZM831.4 122.223C829.545 121.881 827.567 121.71 825.468 121.71C819.999 121.71 815.36 123.248 811.552 126.324C807.792 129.352 805.106 133.771 803.495 139.581V194H794.779V114.752H803.349L803.495 127.35C808.134 117.975 815.58 113.287 825.834 113.287C828.275 113.287 830.204 113.604 831.62 114.239L831.4 122.223ZM892.777 173.858C892.777 169.513 891.02 166.021 887.504 163.385C884.037 160.748 878.788 158.697 871.757 157.232C864.726 155.719 859.257 154.01 855.351 152.105C851.493 150.152 848.612 147.784 846.708 145.001C844.853 142.218 843.925 138.849 843.925 134.894C843.925 128.644 846.537 123.492 851.762 119.439C856.986 115.338 863.676 113.287 871.83 113.287C880.668 113.287 887.748 115.484 893.07 119.879C898.441 124.225 901.127 129.913 901.127 136.944H892.338C892.338 132.306 890.385 128.448 886.479 125.372C882.621 122.296 877.738 120.758 871.83 120.758C866.068 120.758 861.43 122.052 857.914 124.64C854.447 127.179 852.714 130.499 852.714 134.601C852.714 138.556 854.154 141.632 857.035 143.829C859.965 145.978 865.263 147.955 872.929 149.762C880.644 151.568 886.405 153.497 890.214 155.548C894.071 157.599 896.928 160.064 898.783 162.945C900.639 165.826 901.566 169.317 901.566 173.419C901.566 180.108 898.856 185.455 893.437 189.459C888.065 193.463 881.034 195.465 872.343 195.465C863.114 195.465 855.619 193.243 849.857 188.8C844.145 184.308 841.288 178.644 841.288 171.808H850.077C850.419 176.935 852.567 180.938 856.522 183.819C860.526 186.651 865.8 188.067 872.343 188.067C878.446 188.067 883.378 186.725 887.138 184.039C890.897 181.354 892.777 177.96 892.777 173.858ZM1007.84 194C1006.96 191.51 1006.4 187.823 1006.16 182.94C1003.08 186.944 999.149 190.045 994.364 192.242C989.628 194.391 984.599 195.465 979.276 195.465C971.659 195.465 965.482 193.341 960.746 189.093C956.059 184.845 953.715 179.474 953.715 172.979C953.715 165.265 956.913 159.161 963.31 154.669C969.755 150.177 978.715 147.931 990.189 147.931H1006.08V138.922C1006.08 133.258 1004.33 128.814 1000.81 125.592C997.343 122.32 992.265 120.685 985.575 120.685C979.472 120.685 974.418 122.247 970.414 125.372C966.41 128.497 964.408 132.257 964.408 136.651L955.619 136.578C955.619 130.279 958.549 124.835 964.408 120.245C970.268 115.606 977.47 113.287 986.015 113.287C994.853 113.287 1001.81 115.509 1006.89 119.952C1012.02 124.347 1014.65 130.499 1014.8 138.409V175.909C1014.8 183.575 1015.6 189.312 1017.22 193.121V194H1007.84ZM980.302 187.701C986.161 187.701 991.386 186.285 995.976 183.453C1000.61 180.621 1003.98 176.837 1006.08 172.101V154.669H990.409C981.669 154.767 974.833 156.378 969.901 159.503C964.97 162.579 962.504 166.827 962.504 172.247C962.504 176.69 964.14 180.377 967.411 183.307C970.731 186.236 975.028 187.701 980.302 187.701ZM1085.7 173.858C1085.7 169.513 1083.94 166.021 1080.42 163.385C1076.96 160.748 1071.71 158.697 1064.68 157.232C1057.65 155.719 1052.18 154.01 1048.27 152.105C1044.41 150.152 1041.53 147.784 1039.63 145.001C1037.77 142.218 1036.84 138.849 1036.84 134.894C1036.84 128.644 1039.46 123.492 1044.68 119.439C1049.91 115.338 1056.6 113.287 1064.75 113.287C1073.59 113.287 1080.67 115.484 1085.99 119.879C1091.36 124.225 1094.05 129.913 1094.05 136.944H1085.26C1085.26 132.306 1083.3 128.448 1079.4 125.372C1075.54 122.296 1070.66 120.758 1064.75 120.758C1058.99 120.758 1054.35 122.052 1050.83 124.64C1047.37 127.179 1045.63 130.499 1045.63 134.601C1045.63 138.556 1047.07 141.632 1049.96 143.829C1052.88 145.978 1058.18 147.955 1065.85 149.762C1073.56 151.568 1079.33 153.497 1083.13 155.548C1086.99 157.599 1089.85 160.064 1091.7 162.945C1093.56 165.826 1094.49 169.317 1094.49 173.419C1094.49 180.108 1091.78 185.455 1086.36 189.459C1080.99 193.463 1073.95 195.465 1065.26 195.465C1056.03 195.465 1048.54 193.243 1042.78 188.8C1037.06 184.308 1034.21 178.644 1034.21 171.808H1043C1043.34 176.935 1045.49 180.938 1049.44 183.819C1053.45 186.651 1058.72 188.067 1065.26 188.067C1071.37 188.067 1076.3 186.725 1080.06 184.039C1083.82 181.354 1085.7 177.96 1085.7 173.858Z" fill="black"/>
-<g filter="url(#filter1_d)">
-<path d="M352.348 404V261.812H394.34C406.905 261.812 418.038 264.612 427.738 270.211C437.504 275.81 445.056 283.753 450.395 294.039C455.733 304.326 458.402 316.109 458.402 329.391V336.52C458.402 349.996 455.701 361.845 450.297 372.066C444.958 382.288 437.309 390.165 427.348 395.699C417.452 401.233 406.091 404 393.266 404H352.348ZM377.055 281.734V384.273H393.168C406.124 384.273 416.052 380.237 422.953 372.164C429.919 364.026 433.467 352.372 433.598 337.203V329.293C433.598 313.863 430.245 302.079 423.539 293.941C416.833 285.803 407.1 281.734 394.34 281.734H377.055ZM543.852 404C542.81 401.982 541.898 398.694 541.117 394.137C533.565 402.014 524.32 405.953 513.383 405.953C502.771 405.953 494.112 402.926 487.406 396.871C480.701 390.816 477.348 383.329 477.348 374.41C477.348 363.147 481.514 354.521 489.848 348.531C498.246 342.477 510.225 339.449 525.785 339.449H540.336V332.516C540.336 327.047 538.806 322.685 535.746 319.43C532.686 316.109 528.031 314.449 521.781 314.449C516.378 314.449 511.951 315.816 508.5 318.551C505.049 321.22 503.324 324.638 503.324 328.805H479.594C479.594 323.01 481.514 317.607 485.355 312.594C489.197 307.516 494.405 303.544 500.98 300.68C507.621 297.815 515.01 296.383 523.148 296.383C535.518 296.383 545.382 299.508 552.738 305.758C560.095 311.943 563.871 320.667 564.066 331.93V379.586C564.066 389.091 565.401 396.676 568.07 402.34V404H543.852ZM517.777 386.91C522.465 386.91 526.859 385.771 530.961 383.492C535.128 381.214 538.253 378.154 540.336 374.312V354.391H527.543C518.754 354.391 512.146 355.921 507.719 358.98C503.292 362.04 501.078 366.37 501.078 371.969C501.078 376.526 502.576 380.172 505.57 382.906C508.63 385.576 512.699 386.91 517.777 386.91ZM618.656 272.652V298.336H637.309V315.914H618.656V374.898C618.656 378.935 619.438 381.865 621 383.688C622.628 385.445 625.492 386.324 629.594 386.324C632.328 386.324 635.095 385.999 637.895 385.348V403.707C632.491 405.204 627.283 405.953 622.27 405.953C604.04 405.953 594.926 395.895 594.926 375.777V315.914H577.543V298.336H594.926V272.652H618.656ZM702.055 405.953C687.016 405.953 674.809 401.233 665.434 391.793C656.124 382.288 651.469 369.658 651.469 353.902V350.973C651.469 340.426 653.487 331.018 657.523 322.75C661.625 314.417 667.354 307.939 674.711 303.316C682.068 298.694 690.271 296.383 699.32 296.383C713.708 296.383 724.809 300.973 732.621 310.152C740.499 319.332 744.438 332.32 744.438 349.117V358.688H675.395C676.111 367.411 679.008 374.312 684.086 379.391C689.229 384.469 695.674 387.008 703.422 387.008C714.294 387.008 723.148 382.613 729.984 373.824L742.777 386.031C738.546 392.346 732.882 397.262 725.785 400.777C718.754 404.228 710.844 405.953 702.055 405.953ZM699.223 315.426C692.712 315.426 687.439 317.704 683.402 322.262C679.431 326.819 676.892 333.167 675.785 341.305H721V339.547C720.479 331.604 718.363 325.615 714.652 321.578C710.941 317.477 705.798 315.426 699.223 315.426ZM822.172 375.289C822.172 371.057 820.414 367.835 816.898 365.621C813.448 363.408 807.686 361.454 799.613 359.762C791.54 358.069 784.802 355.921 779.398 353.316C767.549 347.587 761.625 339.286 761.625 328.414C761.625 319.299 765.466 311.682 773.148 305.562C780.831 299.443 790.596 296.383 802.445 296.383C815.076 296.383 825.264 299.508 833.012 305.758C840.824 312.008 844.73 320.113 844.73 330.074H821C821 325.517 819.307 321.741 815.922 318.746C812.536 315.686 808.044 314.156 802.445 314.156C797.237 314.156 792.973 315.361 789.652 317.77C786.397 320.178 784.77 323.401 784.77 327.438C784.77 331.083 786.299 333.915 789.359 335.934C792.419 337.952 798.604 340.003 807.914 342.086C817.224 344.104 824.516 346.546 829.789 349.41C835.128 352.21 839.066 355.595 841.605 359.566C844.21 363.538 845.512 368.355 845.512 374.02C845.512 383.525 841.573 391.24 833.695 397.164C825.818 403.023 815.499 405.953 802.738 405.953C794.079 405.953 786.365 404.391 779.594 401.266C772.823 398.141 767.549 393.844 763.773 388.375C759.997 382.906 758.109 377.014 758.109 370.699H781.156C781.482 376.298 783.598 380.628 787.504 383.688C791.41 386.682 796.586 388.18 803.031 388.18C809.281 388.18 814.034 387.008 817.289 384.664C820.544 382.255 822.172 379.13 822.172 375.289Z" fill="#F27878"/>
-</g>
-<g filter="url(#filter2_d)">
-<path d="M434.477 457.734H390.141V580H365.629V457.734H321.684V437.812H434.477V457.734ZM476.176 580H452.445V474.336H476.176V580ZM450.98 446.895C450.98 443.249 452.12 440.221 454.398 437.812C456.742 435.404 460.062 434.199 464.359 434.199C468.656 434.199 471.977 435.404 474.32 437.812C476.664 440.221 477.836 443.249 477.836 446.895C477.836 450.475 476.664 453.47 474.32 455.879C471.977 458.223 468.656 459.395 464.359 459.395C460.062 459.395 456.742 458.223 454.398 455.879C452.12 453.47 450.98 450.475 450.98 446.895ZM524.418 474.336L525.102 485.371C532.523 476.712 542.68 472.383 555.57 472.383C569.698 472.383 579.366 477.786 584.574 488.594C592.257 477.786 603.064 472.383 616.996 472.383C628.65 472.383 637.309 475.605 642.973 482.051C648.702 488.496 651.632 498.001 651.762 510.566V580H628.031V511.25C628.031 504.544 626.566 499.629 623.637 496.504C620.707 493.379 615.857 491.816 609.086 491.816C603.682 491.816 599.255 493.281 595.805 496.211C592.419 499.076 590.043 502.852 588.676 507.539L588.773 580H565.043V510.469C564.717 498.034 558.37 491.816 546 491.816C536.495 491.816 529.757 495.69 525.785 503.438V580H502.055V474.336H524.418ZM722.66 581.953C707.621 581.953 695.414 577.233 686.039 567.793C676.729 558.288 672.074 545.658 672.074 529.902V526.973C672.074 516.426 674.092 507.018 678.129 498.75C682.23 490.417 687.96 483.939 695.316 479.316C702.673 474.694 710.876 472.383 719.926 472.383C734.314 472.383 745.414 476.973 753.227 486.152C761.104 495.332 765.043 508.32 765.043 525.117V534.688H696C696.716 543.411 699.613 550.312 704.691 555.391C709.835 560.469 716.28 563.008 724.027 563.008C734.9 563.008 743.754 558.613 750.59 549.824L763.383 562.031C759.151 568.346 753.487 573.262 746.391 576.777C739.359 580.228 731.449 581.953 722.66 581.953ZM719.828 491.426C713.318 491.426 708.044 493.704 704.008 498.262C700.036 502.819 697.497 509.167 696.391 517.305H741.605V515.547C741.085 507.604 738.969 501.615 735.258 497.578C731.547 493.477 726.404 491.426 719.828 491.426ZM842.777 551.289C842.777 547.057 841.02 543.835 837.504 541.621C834.053 539.408 828.292 537.454 820.219 535.762C812.146 534.069 805.408 531.921 800.004 529.316C788.155 523.587 782.23 515.286 782.23 504.414C782.23 495.299 786.072 487.682 793.754 481.562C801.436 475.443 811.202 472.383 823.051 472.383C835.681 472.383 845.87 475.508 853.617 481.758C861.43 488.008 865.336 496.113 865.336 506.074H841.605C841.605 501.517 839.913 497.741 836.527 494.746C833.142 491.686 828.65 490.156 823.051 490.156C817.842 490.156 813.578 491.361 810.258 493.77C807.003 496.178 805.375 499.401 805.375 503.438C805.375 507.083 806.905 509.915 809.965 511.934C813.025 513.952 819.21 516.003 828.52 518.086C837.829 520.104 845.121 522.546 850.395 525.41C855.733 528.21 859.672 531.595 862.211 535.566C864.815 539.538 866.117 544.355 866.117 550.02C866.117 559.525 862.178 567.24 854.301 573.164C846.423 579.023 836.104 581.953 823.344 581.953C814.685 581.953 806.97 580.391 800.199 577.266C793.428 574.141 788.155 569.844 784.379 564.375C780.603 558.906 778.715 553.014 778.715 546.699H801.762C802.087 552.298 804.203 556.628 808.109 559.688C812.016 562.682 817.191 564.18 823.637 564.18C829.887 564.18 834.639 563.008 837.895 560.664C841.15 558.255 842.777 555.13 842.777 551.289Z" fill="#F27878" fill-opacity="0.5" shape-rendering="crispEdges"/>
-</g>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M421.771 695.094H479.617V675.154H421.771V632.412H488.107V612.274H396.797V756.001H421.771V695.094ZM507.158 756.001H531.146V649.193H507.158V756.001ZM509.133 612.274C506.829 614.709 505.678 617.769 505.678 621.454C505.678 625.074 506.829 628.101 509.133 630.536C511.502 632.905 514.858 634.09 519.201 634.09C523.545 634.09 526.901 632.905 529.27 630.536C531.639 628.101 532.824 625.074 532.824 621.454C532.824 617.769 531.639 614.709 529.27 612.274C526.901 609.839 523.545 608.622 519.201 608.622C514.858 608.622 511.502 609.839 509.133 612.274ZM558.884 756.001H582.871V604.377H558.884V756.001ZM619.099 743.661C628.576 753.204 640.915 757.975 656.117 757.975C665.001 757.975 672.997 756.231 680.104 752.743C687.277 749.189 693.002 744.221 697.28 737.837L684.349 725.498C677.439 734.382 668.489 738.824 657.499 738.824C649.667 738.824 643.152 736.258 637.953 731.125C632.82 725.992 629.892 719.016 629.168 710.198H698.958V700.524C698.958 683.545 694.977 670.416 687.014 661.137C679.117 651.858 667.896 647.219 653.353 647.219C644.205 647.219 635.913 649.555 628.477 654.227C621.04 658.9 615.249 665.448 611.103 673.871C607.023 682.229 604.983 691.738 604.983 702.399V705.361C604.983 721.286 609.688 734.053 619.099 743.661ZM637.262 673.378C641.342 668.771 646.673 666.468 653.254 666.468C659.901 666.468 665.099 668.541 668.851 672.687C672.602 676.767 674.74 682.821 675.267 690.85V692.627H629.563C630.681 684.4 633.248 677.984 637.262 673.378ZM772.203 717.206C775.757 719.444 777.534 722.701 777.534 726.979C777.534 730.862 775.889 734.02 772.598 736.455C769.308 738.824 764.504 740.009 758.186 740.009C751.671 740.009 746.439 738.495 742.491 735.468C738.542 732.375 736.403 727.999 736.074 722.339H712.778C712.778 728.723 714.686 734.678 718.503 740.206C722.32 745.734 727.651 750.078 734.495 753.237C741.339 756.395 749.137 757.975 757.89 757.975C770.788 757.975 781.219 755.013 789.182 749.091C797.145 743.102 801.126 735.304 801.126 725.696C801.126 719.97 799.81 715.1 797.178 711.086C794.611 707.072 790.63 703.65 785.233 700.82C779.903 697.924 772.532 695.456 763.122 693.416C753.711 691.31 747.459 689.237 744.366 687.197C741.273 685.157 739.727 682.295 739.727 678.609C739.727 674.529 741.372 671.272 744.662 668.837C748.019 666.402 752.329 665.184 757.594 665.184C763.253 665.184 767.794 666.731 771.216 669.824C774.638 672.851 776.349 676.668 776.349 681.275H800.337C800.337 671.206 796.388 663.013 788.491 656.695C780.66 650.377 770.361 647.219 757.594 647.219C745.617 647.219 735.745 650.312 727.98 656.498C720.214 662.684 716.332 670.383 716.332 679.596C716.332 690.587 722.32 698.977 734.297 704.768C739.76 707.401 746.571 709.572 754.731 711.283C762.891 712.994 768.715 714.969 772.203 717.206Z" fill="#F27878" fill-opacity="0.25"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M220.693 886H195.719V785.274H220.693L283.927 886H257.743L220.693 827.03V886ZM473.202 886H449.214V822.193H471.82L472.511 833.347C480.013 824.595 490.279 820.219 503.309 820.219C517.59 820.219 527.362 825.681 532.627 836.605C540.393 825.681 551.317 820.219 565.4 820.219C577.18 820.219 585.932 823.476 591.658 829.991C597.449 836.506 600.41 846.114 600.542 858.815V886H576.554V859.506C576.554 852.728 575.074 847.759 572.112 844.601C569.151 841.442 564.248 839.862 557.404 839.862C551.942 839.862 547.467 841.343 543.979 844.305C540.557 847.2 538.155 851.017 536.773 855.755L536.814 886H512.884V858.717C512.555 846.147 506.139 839.862 493.635 839.862C484.027 839.862 477.216 843.778 473.202 851.609V886ZM718.475 886C718.758 883.023 718.899 879.917 718.899 876.682V875.3C718.899 857.927 715.181 844.403 707.744 834.729C700.308 825.055 690.075 820.219 677.045 820.219C665.331 820.219 656.019 824.299 649.109 832.459V777.377H625.121V886H649.109V853.485C653.32 844.403 660.625 839.862 671.023 839.862C678.789 839.862 684.711 842.758 688.791 848.549C692.872 854.34 694.912 863.027 694.912 874.61V877.67C694.877 880.644 694.706 883.421 694.399 886H718.475ZM759.487 886H735.375C735.118 883.54 734.989 880.994 734.989 878.361V875.399C734.989 864.738 737.029 855.229 741.109 846.871C745.255 838.448 751.047 831.9 758.483 827.227C765.919 822.555 774.211 820.219 783.359 820.219C797.902 820.219 809.123 824.858 817.02 834.137C824.983 843.416 828.964 856.545 828.964 873.524V883.198H759.174C759.252 884.154 759.357 885.088 759.487 886ZM871.608 886H847.621V822.193H870.523L871.115 834.137C876.906 824.858 884.935 820.219 895.201 820.219C898.623 820.219 901.453 820.679 903.69 821.6L903.591 844.107C900.433 843.581 897.175 843.317 893.819 843.317C882.829 843.317 875.425 847.529 871.608 855.953V886ZM999.38 886H962.904C960.777 885.401 958.413 884.829 955.811 884.283C947.651 882.572 940.839 880.401 935.377 877.768C923.4 871.977 917.411 863.587 917.411 852.596C917.411 843.383 921.294 835.684 929.06 829.498C936.825 823.312 946.696 820.219 958.673 820.219C971.44 820.219 981.739 823.377 989.571 829.695C997.468 836.013 1001.42 844.206 1001.42 854.275H977.429C977.429 849.668 975.718 845.851 972.296 842.824C968.874 839.731 964.333 838.184 958.673 838.184C953.409 838.184 949.098 839.402 945.742 841.837C942.452 844.272 940.806 847.529 940.806 851.609C940.806 855.295 942.353 858.157 945.446 860.197C948.539 862.237 954.791 864.31 964.201 866.416C973.612 868.456 980.983 870.924 986.313 873.82C991.71 876.65 995.691 880.072 998.258 884.086C998.663 884.704 999.037 885.342 999.38 886ZM424.832 886H400.845V822.193H424.832V886ZM360.372 886H336.385V822.193H360.372V886ZM309.733 886H284.956V785.274H309.733V886ZM767.268 846.378C771.349 841.771 776.679 839.468 783.26 839.468C789.907 839.468 795.106 841.541 798.857 845.687C802.608 849.767 804.747 855.821 805.273 863.85V865.627H759.569C760.688 857.4 763.254 850.984 767.268 846.378Z" fill="#F27878" fill-opacity="0.1"/>
-<defs>
-<filter id="filter0_bd" x="-46" y="-50" width="1288" height="988" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="25"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dy="4"/>
-<feGaussianBlur stdDeviation="2"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="327.348" y="236.812" width="543.164" height="194.141" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="12.5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter2_d" x="296.684" y="409.199" width="594.434" height="197.754" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="12.5"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0.75 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Automate.svg b/public/Features/RSM/Automate.svg
deleted file mode 100644
index 0a52711..0000000
--- a/public/Features/RSM/Automate.svg
+++ /dev/null
@@ -1,64 +0,0 @@
-<svg width="550" height="250" viewBox="0 0 550 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="500" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="25" y="25" width="500" height="200">
-<rect x="25" y="25" width="500" height="200" rx="25.3283" fill="#181818"/>
-</mask>
-<g mask="url(#mask0)">
-<path d="M253.613 104.274L310.599 93.5547M310.599 93.5547L329.88 89.9278M310.599 93.5547L303.236 105.929L268.959 112.377M268.959 112.377L278.132 116.147M268.959 112.377L258.248 114.392M278.132 116.147L287.304 119.916L317.298 114.274L321.469 107.262M278.132 116.147L267.087 134.709L204.961 146.395M258.248 114.392L225.685 120.517M258.248 114.392L250.885 126.767L177.189 140.629M177.189 140.629L174.735 144.754M177.189 140.629L132.201 149.092M174.735 144.754L169.827 153.004L151.403 156.47M174.735 144.754L204.699 157.068L235.119 151.345M259.113 146.832L251.75 159.207L193.48 170.168M180.276 161.662L149.856 167.384L132.122 160.097L78.1359 170.252M78.1359 170.252L60.569 173.556M78.1359 170.252L95.8694 177.539M279.251 143.044L286.368 131.082L327.072 123.425L344.806 130.712M-69.5957 219.655L-51.8623 226.942L-5.58844 218.238M-5.58844 218.238L-23.3219 210.95M-5.58844 218.238L12.7565 225.776L70.5988 214.896L77.4707 203.346M77.4707 203.346L91.1815 200.767L98.7897 187.98M77.4707 203.346L55.1907 207.537M98.7897 187.98L64.0843 194.508M98.7897 187.98L109.501 185.965L116.864 173.59L131.432 170.85M43.0897 198.457L35.9723 210.42L17.977 213.805L0.243505 206.517M0.243505 206.517L15.2397 203.696L22.6024 191.322M0.243505 206.517L-18.1014 198.978L-37.8107 202.686L-44.928 214.648M183.267 128.497L202.119 124.95L211.691 108.863M183.267 128.497L138.278 136.959M183.267 128.497L190.63 116.122M216.599 100.614L211.691 108.863M211.691 108.863L199.461 103.837L160.899 111.091M170.92 119.829L121.219 129.179L113.856 141.553M113.856 141.553L106.493 153.928M113.856 141.553L91.576 145.744L84.7041 157.294L60.7103 161.808L50.3148 157.536M50.3148 157.536L46.1426 164.548L6.29564 172.043M50.3148 157.536L43.5883 154.771M43.5883 154.771L69.7245 149.855M43.5883 154.771L33.7337 156.625L16.0003 149.338M16.0003 149.338L35.7095 145.63M16.0003 149.338L3.57488 151.675L-31.892 137.1M76.1601 181.247L40.1693 188.017L22.4359 180.73M22.4359 180.73L40.0028 177.425M22.4359 180.73L7.43973 183.55L-21.3007 171.74M-21.3007 171.74L-18.1101 166.377L10.5968 160.977M-21.3007 171.74L-24.9821 177.927L-55.8313 183.73M-34.9078 147.924L-102.176 160.578L-109.539 172.953M254.383 82.5164L292.944 75.2627L299.816 63.713L322.525 59.4414M234.674 86.2239L206.395 91.5433L188.662 84.2558L150.1 91.5096M181.973 96.1374L144.697 103.149L108.618 88.323L79.9113 93.723M45.9839 111.095L103.398 100.295L121.437 107.708M139.476 115.121L121.437 107.708M121.437 107.708L43.2427 122.417M117.625 119.231L103.057 121.972L95.9395 133.934L55.6642 141.51M76.9207 126.888L41.7869 133.497L28.9454 128.22M-9.61201 132.909L24.6649 126.461L28.9454 128.22M28.9454 128.22L24.2823 136.057L6.28694 139.442M128.354 182.419L172.485 174.117L179.212 176.881M179.212 176.881L190.219 181.405L218.925 176.005M179.212 176.881L174.794 184.306L109.668 196.557M218.925 176.005L237.778 172.458M218.925 176.005L211.563 188.379L161.433 197.809M161.433 197.809L92.4504 210.785M161.433 197.809L179.166 205.097L227.582 195.989L234.7 184.027L269.834 177.418L288.178 184.957M329.66 188.143L306.523 192.496L288.178 184.957M257.059 168.831L272.055 166.011L290.4 173.549L336.674 164.845M306.968 182.155L351.1 173.853M351.1 173.853L368.222 180.89L424.35 170.331M351.1 173.853L382.378 167.97M61.7677 227.18L120.467 216.138L129.945 220.034M158.704 220.302L139.423 223.929L129.945 220.034M129.945 220.034L126.141 226.427L115.429 228.442M61.2438 248.526L98.0915 241.594L104.718 230.457L115.429 228.442M115.429 228.442L131.94 235.227L176.928 226.764M81.581 234.809L25.4525 245.367L8.33059 238.331L39.6083 232.448M-0.289996 119.799L24.9892 115.044L32.352 102.669L60.6305 97.3499M44.6109 89.74L111.022 77.2474L129.979 85.0375L176.681 76.2524L184.289 63.4653L226.707 55.4861M181.798 52.9444L116.243 65.2757M116.243 65.2757L70.3975 73.8996M116.243 65.2757L134.588 72.8146L162.009 67.6563M51.9736 77.3653L27.9798 81.8788M27.9798 81.8788L-26.8633 92.1952M27.9798 81.8788L13.7451 105.803L-43.2403 116.523M195.596 71.9618L250.011 61.7259L267.744 69.0134M267.744 69.0134L272.029 68.2075L279.391 55.8328M267.744 69.0134L217.186 78.5239M1.33623 97.8803L-31.2268 104.006M-31.2268 104.006L-49.5718 96.4669L-82.9918 102.753M-31.2268 104.006L-95.9246 116.176M201.078 49.3175L232.784 43.3533L239.902 31.3911M239.902 31.3911L289.175 22.1224M239.902 31.3911L146.069 49.0419M188.565 30.0583L130.294 41.0195L123.423 52.5692L94.073 58.0901M109.3 44.9688L75.4514 51.336M75.4514 51.336L68.5795 62.8856L41.5864 67.9633M75.4514 51.336L68.596 52.6255M68.596 52.6255L-0.814772 65.6823M68.596 52.6255L61.258 49.61M14.3227 51.1125L49.0281 44.5841L61.258 49.61M61.258 49.61L65.4303 42.5977L102.706 35.5857M102.706 35.5857L122.844 31.7977M102.706 35.5857L83.75 27.7956L43.9031 35.2912M43.9031 35.2912L-25.9362 48.4285M43.9031 35.2912L50.7749 23.7415L128.755 9.07278M11.1032 74.4301L-33.4568 82.8122L-51.8017 75.2734M-51.8017 75.2734L-22.2379 69.7121M-51.8017 75.2734L-77.5094 80.1092L-70.1467 67.7345L-41.8682 62.4151M149.409 26.8006L192.255 18.7409L209.988 26.0284L266.117 15.4702M-12.3043 56.8539L-25.1582 59.2718L-52.6756 47.9636M-52.6756 47.9636L-49.4851 42.6012L4.07263 32.5266M-52.6756 47.9636L-56.6024 54.5634L-78.0255 58.5933M169.442 11.6762L194.293 7.00151L212.638 14.5403L249.057 7.68956M249.565 -3.39553L213.574 3.37464L196.452 -3.66159L154.891 4.15634L148.019 15.706L107.315 23.3628M288.178 184.957L264.613 189.39M240.661 205.984L248.76 192.372L264.613 189.39M240.661 205.984L234.034 217.121M240.661 205.984L274.293 219.805M221.26 208.534L179.27 216.433M179.27 216.433L160.925 208.894L140.359 212.763M179.27 216.433L197.615 223.972L212.183 221.232M231.876 227.784L250.728 224.238L268.461 231.525L292.884 226.931M292.884 226.931L309.594 223.788M292.884 226.931L285.276 239.719L262.996 243.91M115.658 238.29L134.615 246.08L209.596 231.975L227.329 239.263M206.455 244.288L185.46 248.238L178.589 259.787L157.165 263.817M157.165 263.817L126.316 269.62M157.165 263.817L153.852 269.386M153.852 269.386L150.539 274.954L123.117 280.113L105.078 272.699M153.852 269.386L163.33 273.281L211.747 264.173L230.092 271.712M58.7606 270.606L87.0391 265.286L105.078 272.699M105.078 272.699L97.3474 285.693M166.608 251.784L108.337 262.745L98.5534 258.724M36.0687 264.617L88.7694 254.704L98.5534 258.724M98.5534 258.724L102.48 252.125L114.049 249.948M264.613 189.39L283.569 197.18M350.226 184.275L343.6 195.412L278.474 207.663L260.74 200.375M383.996 188.912L365.572 192.378L358.7 203.927L315.854 211.987M315.854 211.987L297.002 215.533M315.854 211.987L333.588 219.275L379.433 210.651L388.605 214.42M426.913 212.709L397.778 218.19L388.605 214.42M388.605 214.42L384.924 220.607L346.791 227.781M328.979 231.498L307.984 235.447L300.621 247.822M300.621 247.822L323.33 243.55L341.675 251.089M300.621 247.822L239.78 259.266L221.435 251.728M341.675 251.089L311.682 256.73M341.675 251.089L373.809 245.044L390.931 252.08M221.435 251.728L198.726 255.999M221.435 251.728L242.858 247.698L249.73 236.148M180.39 281.061L214.239 274.694L232.583 282.233M290.076 260.428L248.944 268.166L241.827 280.128M174.313 293.194L156.579 285.907L90.1677 298.399M90.1677 298.399L54.1769 305.169M90.1677 298.399L71.2112 290.609M342.182 240.004L414.164 226.463M390.931 252.08L417.067 247.164M390.931 252.08L360.082 257.883M596.383 39.7963L653.368 29.0769M653.368 29.0769L672.649 25.45M653.368 29.0769L646.005 41.4516L611.728 47.8993M611.728 47.8993L620.901 51.6687M611.728 47.8993L601.017 49.9143M620.901 51.6687L630.073 55.4381M620.901 51.6687L609.857 70.2307L547.73 81.9173M601.017 49.9143L568.454 56.0397M601.017 49.9143L593.654 62.2889L519.959 76.1516M519.959 76.1516L517.505 80.2765M519.959 76.1516L474.97 84.6144M517.505 80.2765L512.596 88.5263L494.172 91.992M517.505 80.2765L547.468 92.5899L577.889 86.8675M601.883 82.3541L594.52 94.7287L536.249 105.69M523.046 97.184L492.625 102.906L474.891 95.6189L420.905 105.774M420.905 105.774L403.338 109.079M420.905 105.774L438.639 113.062M622.02 78.566L629.138 66.6038L669.841 58.9471L687.575 66.2346M273.174 155.177L290.907 162.464L337.181 153.76M337.181 153.76L319.447 146.472M337.181 153.76L355.526 161.299L413.368 150.418L420.24 138.868M420.24 138.868L433.951 136.289L441.559 123.502M420.24 138.868L397.96 143.059M441.559 123.502L406.854 130.03M441.559 123.502L452.271 121.487L459.633 109.112L474.201 106.372M385.859 133.98L378.742 145.942L360.746 149.327L343.013 142.039M343.013 142.039L358.009 139.218L365.372 126.844M343.013 142.039L324.668 134.501L304.959 138.208L297.841 150.17M526.036 64.0188L544.888 60.4725L554.46 44.3854M526.036 64.0188L481.048 72.4815M526.036 64.0188L533.399 51.6441M559.369 36.1357L554.46 44.3854M554.46 44.3854L542.23 39.3596L503.669 46.6133M513.69 55.3516L463.988 64.7009L456.625 77.0756M456.625 77.0756L449.263 89.4502M456.625 77.0756L434.345 81.2666L427.473 92.8163L403.48 97.3297L393.084 93.0577M393.084 93.0577L388.912 100.07L349.065 107.566M393.084 93.0577L386.358 90.2935M386.358 90.2935L412.494 85.3771M386.358 90.2935L376.503 92.1472L358.77 84.8597M358.77 84.8597L378.479 81.1522M358.77 84.8597L346.344 87.197L310.877 72.622M418.929 116.769L382.939 123.539L365.205 116.252M365.205 116.252L382.772 112.947M365.205 116.252L350.209 119.073L321.469 107.262M321.469 107.262L324.659 101.9L353.366 96.4995M307.862 83.4463L240.593 96.1001L233.23 108.475M597.152 18.0386L635.714 10.7849L642.586 -0.764817L665.294 -5.03648M577.443 21.7461L549.164 27.0655L531.431 19.778L492.869 27.0317M524.742 31.6596L487.466 38.6715L451.387 23.8452L422.681 29.2452M388.753 46.6169L446.167 35.8168L464.206 43.23M482.245 50.6432L464.206 43.23M464.206 43.23L386.012 57.939M460.394 54.7537L445.826 57.494L438.709 69.4561L398.433 77.0323M419.69 62.4104L384.556 69.0194L371.715 63.7422M333.157 68.4309L367.434 61.9831L371.715 63.7422M371.715 63.7422L367.052 71.5795L349.056 74.9646M471.123 117.941L515.254 109.639L521.981 112.403M521.981 112.403L532.988 116.927L561.695 111.527M521.981 112.403L517.563 119.828L452.437 132.079M561.695 111.527L580.547 107.98M561.695 111.527L554.332 123.901L504.202 133.331M504.202 133.331L435.22 146.307M504.202 133.331L521.935 140.619L570.352 131.511L577.469 119.549L612.603 112.94L630.948 120.479M672.43 123.666L649.293 128.018L630.948 120.479M599.828 104.354L614.824 101.533L633.169 109.071L679.443 100.367M650.046 116.52L694.177 108.219M404.537 162.702L463.236 151.661L472.714 155.556M501.473 155.824L482.193 159.451L472.714 155.556M472.714 155.556L468.91 161.949L458.199 163.964M404.013 184.048L440.861 177.116L447.487 165.979L458.199 163.964M458.199 163.964L474.709 170.749L519.698 162.286M342.479 55.3214L367.759 50.5661L375.121 38.1915L403.4 32.8721M387.38 25.2622L453.792 12.7696L472.748 20.5597L519.45 11.7746L527.059 -1.01255L569.476 -8.99168M524.567 -11.5335L459.012 0.797918M459.012 0.797918L413.167 9.42183M459.012 0.797918L477.357 8.33673L504.779 3.17851M394.743 12.8875L370.749 17.401M370.749 17.401L315.906 27.7174M370.749 17.401L356.514 41.3253L299.529 52.0447M538.365 7.48393L592.78 -2.75192L610.513 4.53561M610.513 4.53561L614.798 3.72963L622.161 -8.64503M610.513 4.53561L559.955 14.0461M344.106 33.4025L311.542 39.5279M311.542 39.5279L293.198 31.9891L259.778 38.2756M311.542 39.5279L246.845 51.6981M543.848 -15.1603L575.554 -21.1245L582.671 -33.0867M582.671 -33.0867L631.944 -42.3554M582.671 -33.0867L488.838 -15.4359M531.335 -34.4195L473.064 -23.4583L466.192 -11.9086L436.842 -6.38772M452.069 -19.509L418.221 -13.1419M418.221 -13.1419L411.349 -1.59218L384.356 3.48545M418.221 -13.1419L411.365 -11.8523M411.365 -11.8523L341.955 1.20446M411.365 -11.8523L404.027 -14.8678M357.092 -13.3653L391.797 -19.8937L404.027 -14.8678M404.027 -14.8678L408.2 -21.8801L445.476 -28.8921M445.476 -28.8921L465.613 -32.6802M445.476 -28.8921L426.519 -36.6822L386.672 -29.1867M386.672 -29.1867L316.833 -16.0493M386.672 -29.1867L393.544 -40.7363L471.524 -55.4051M353.873 9.95223L309.313 18.3344L290.968 10.7955M290.968 10.7955L320.531 5.23432M290.968 10.7955L265.26 15.6314L272.623 3.25671L300.901 -2.06271M492.178 -37.6772L535.024 -45.7369L552.758 -38.4494L608.886 -49.0076M330.465 -7.62392L317.611 -5.206L290.094 -16.5142M290.094 -16.5142L293.284 -21.8766L346.842 -31.9512M290.094 -16.5142L286.167 -9.91441L264.744 -5.88455M512.212 -52.8017L537.062 -57.4763L555.407 -49.9375L591.827 -56.7883M592.334 -67.8734L556.343 -61.1032L539.221 -68.1394L497.66 -60.3215L490.789 -48.7718L450.085 -41.1151M630.948 120.479L607.382 124.912M583.43 141.506L591.529 127.894L607.382 124.912M583.43 141.506L576.804 152.643M583.43 141.506L617.063 155.327M564.029 144.057L522.04 151.955M522.04 151.955L503.695 144.416L483.128 148.285M522.04 151.955L540.385 159.494L554.952 156.754M574.645 163.306L593.497 159.76L611.231 167.048L635.653 162.454M635.653 162.454L652.363 159.31M635.653 162.454L628.045 175.241L605.765 179.432M458.428 173.812L477.384 181.602L552.365 167.497L570.098 174.785M549.224 179.81L528.23 183.76L521.358 195.309L499.935 199.339M499.935 199.339L469.086 205.142M499.935 199.339L496.622 204.908M496.622 204.908L493.308 210.476L465.887 215.635L447.848 208.222M496.622 204.908L506.1 208.803L554.516 199.695L572.861 207.234M401.53 206.128L429.808 200.808L447.848 208.222M447.848 208.222L440.117 221.215M509.377 187.306L451.107 198.267L441.323 194.247M378.838 200.139L431.539 190.226L441.323 194.247M441.323 194.247L445.25 187.647L456.818 185.471M607.382 124.912L626.339 132.702M692.996 119.797L686.369 130.934L621.243 143.185L603.51 135.897M726.765 124.434L708.342 127.9L701.47 139.45L658.623 147.509M658.623 147.509L639.771 151.056M658.623 147.509L676.357 154.797L722.202 146.173L731.375 149.942M769.683 148.231L740.547 153.712L731.375 149.942M731.375 149.942L727.693 156.13L689.56 163.303M671.748 167.02L650.753 170.969L643.391 183.344M643.391 183.344L666.099 179.072L684.444 186.611M643.391 183.344L582.549 194.789L564.204 187.25M684.444 186.611L654.452 192.253M684.444 186.611L716.579 180.566L733.701 187.602M564.204 187.25L541.496 191.521M564.204 187.25L585.627 183.22L592.499 171.67M523.159 216.584L557.008 210.216L575.353 217.755M632.846 195.951L591.713 203.688L584.596 215.65M517.082 228.716L499.349 221.429L432.937 233.921M432.937 233.921L396.946 240.692M432.937 233.921L413.981 226.131M684.951 175.526L756.933 161.985M733.701 187.602L759.837 182.686M733.701 187.602L702.851 193.405" stroke="url(#paint1_linear)" stroke-opacity="0.35" stroke-width="5.31894" stroke-linecap="round" stroke-linejoin="round"/>
-</g>
-<g filter="url(#filter1_d)">
-<path d="M144.141 92.4947H123.216L118.838 105.072H109.08L129.486 51.0518H137.908L158.351 105.072H148.556L144.141 92.4947ZM125.85 84.9259H141.507L133.679 62.5163L125.85 84.9259ZM187.514 101.139C184.867 104.256 181.107 105.814 176.235 105.814C171.881 105.814 168.579 104.54 166.328 101.993C164.102 99.4451 162.989 95.7597 162.989 90.9364V64.9279H172.005V90.8251C172.005 95.9204 174.12 98.4681 178.349 98.4681C182.727 98.4681 185.683 96.8975 187.217 93.7562V64.9279H196.232V105.072H187.736L187.514 101.139ZM216.713 55.1701V64.9279H223.799V71.6063H216.713V94.0159C216.713 95.5494 217.01 96.6625 217.603 97.355C218.222 98.0229 219.31 98.3568 220.868 98.3568C221.907 98.3568 222.958 98.2331 224.022 97.9858V104.961C221.969 105.53 219.99 105.814 218.086 105.814C211.16 105.814 207.697 101.993 207.697 94.3498V71.6063H201.093V64.9279H207.697V55.1701H216.713ZM227.918 84.6291C227.918 80.6963 228.697 77.1592 230.255 74.0179C231.813 70.8519 234.002 68.4279 236.822 66.7459C239.642 65.0392 242.882 64.1859 246.543 64.1859C251.96 64.1859 256.35 65.9297 259.714 69.4172C263.103 72.9048 264.933 77.5302 265.205 83.2934L265.242 85.4082C265.242 89.3658 264.475 92.9028 262.942 96.0194C261.433 99.1359 259.256 101.548 256.412 103.254C253.592 104.961 250.327 105.814 246.617 105.814C240.953 105.814 236.414 103.934 233.001 100.175C229.612 96.3904 227.918 91.3569 227.918 85.0743V84.6291ZM236.933 85.4082C236.933 89.5389 237.787 92.7791 239.493 95.1289C241.2 97.454 243.575 98.6165 246.617 98.6165C249.659 98.6165 252.022 97.4293 253.703 95.0547C255.41 92.6802 256.264 89.205 256.264 84.6291C256.264 80.5726 255.385 77.3571 253.629 74.9825C251.898 72.608 249.536 71.4208 246.543 71.4208C243.599 71.4208 241.262 72.5956 239.531 74.9454C237.799 77.2705 236.933 80.7581 236.933 85.4082ZM281.344 64.9279L281.604 69.1204C284.424 65.8307 288.283 64.1859 293.18 64.1859C298.547 64.1859 302.221 66.2388 304.199 70.3448C307.118 66.2388 311.224 64.1859 316.517 64.1859C320.945 64.1859 324.234 65.4102 326.386 67.859C328.563 70.3077 329.676 73.919 329.725 78.6927V105.072H320.71V78.9525C320.71 76.4048 320.153 74.5373 319.04 73.3501C317.927 72.1628 316.084 71.5692 313.512 71.5692C311.459 71.5692 309.777 72.1257 308.466 73.2388C307.18 74.3271 306.277 75.7617 305.758 77.5426L305.795 105.072H296.779V78.6556C296.655 73.9313 294.244 71.5692 289.544 71.5692C285.933 71.5692 283.373 73.0409 281.864 75.9843V105.072H272.848V64.9279H281.344ZM362.969 105.072C362.573 104.305 362.227 103.056 361.93 101.325C359.061 104.318 355.548 105.814 351.393 105.814C347.361 105.814 344.072 104.664 341.524 102.364C338.976 100.063 337.702 97.219 337.702 93.8304C337.702 89.5513 339.285 86.2739 342.451 83.9983C345.642 81.698 350.193 80.5478 356.105 80.5478H361.633V77.9136C361.633 75.8359 361.052 74.1787 359.889 72.9419C358.727 71.6805 356.958 71.0497 354.584 71.0497C352.531 71.0497 350.849 71.5692 349.538 72.608C348.227 73.6221 347.572 74.9207 347.572 76.5037H338.556C338.556 74.3023 339.285 72.2494 340.745 70.3448C342.204 68.4155 344.183 66.9067 346.681 65.8184C349.204 64.73 352.011 64.1859 355.103 64.1859C359.803 64.1859 363.55 65.3731 366.345 67.7477C369.14 70.0974 370.575 73.4119 370.649 77.691V95.7968C370.649 99.408 371.156 102.29 372.17 104.442V105.072H362.969ZM353.063 98.5794C354.844 98.5794 356.513 98.1466 358.071 97.2808C359.654 96.4151 360.842 95.2526 361.633 93.7933V86.2245H356.773C353.434 86.2245 350.923 86.8057 349.241 87.9682C347.559 89.1308 346.718 90.7756 346.718 92.9028C346.718 94.6342 347.287 96.0194 348.425 97.0582C349.587 98.0724 351.133 98.5794 353.063 98.5794ZM391.389 55.1701V64.9279H398.475V71.6063H391.389V94.0159C391.389 95.5494 391.686 96.6625 392.279 97.355C392.898 98.0229 393.986 98.3568 395.544 98.3568C396.583 98.3568 397.634 98.2331 398.698 97.9858V104.961C396.645 105.53 394.666 105.814 392.762 105.814C385.836 105.814 382.373 101.993 382.373 94.3498V71.6063H375.769V64.9279H382.373V55.1701H391.389ZM423.074 105.814C417.36 105.814 412.723 104.021 409.161 100.435C405.624 96.8233 403.855 92.0247 403.855 86.0389V84.9259C403.855 80.9189 404.622 77.3447 406.156 74.2034C407.714 71.0374 409.891 68.5763 412.686 66.8201C415.481 65.0639 418.597 64.1859 422.035 64.1859C427.502 64.1859 431.719 65.9297 434.687 69.4172C437.68 72.9048 439.176 77.8394 439.176 84.2209V87.8569H412.945C413.217 91.1714 414.318 93.7933 416.247 95.7226C418.201 97.6519 420.65 98.6165 423.594 98.6165C427.724 98.6165 431.088 96.9469 433.685 93.6077L438.546 98.2455C436.938 100.645 434.786 102.512 432.09 103.848C429.419 105.159 426.413 105.814 423.074 105.814ZM421.998 71.4208C419.525 71.4208 417.521 72.2865 415.988 74.0179C414.479 75.7493 413.514 78.1609 413.094 81.2528H430.272V80.5849C430.074 77.5673 429.27 75.2917 427.86 73.7582C426.45 72.1999 424.496 71.4208 421.998 71.4208Z" fill="url(#paint2_linear)"/>
-</g>
-<g filter="url(#filter2_d)">
-<path d="M134.367 145.014L138.431 133.31H140.09L134.148 149.593L133.839 150.313C133.076 152.003 131.897 152.847 130.302 152.847C129.934 152.847 129.539 152.787 129.119 152.667L129.106 151.394L129.904 151.471C130.658 151.471 131.267 151.282 131.73 150.905C132.202 150.536 132.6 149.898 132.926 148.989L133.608 147.111L128.36 133.31H130.045L134.367 145.014ZM141.428 140.062C141.428 138.725 141.685 137.52 142.2 136.448C142.723 135.376 143.456 134.545 144.399 133.953C145.351 133.353 146.427 133.053 147.628 133.053C149.48 133.053 150.98 133.704 152.129 135.008C153.278 136.302 153.853 138.022 153.853 140.165V140.487C153.853 141.833 153.591 143.046 153.068 144.127C152.554 145.199 151.825 146.026 150.882 146.609C149.938 147.192 148.862 147.484 147.653 147.484C145.81 147.484 144.309 146.836 143.152 145.542C142.003 144.238 141.428 142.515 141.428 140.371V140.062ZM142.971 140.487C142.971 142.15 143.4 143.518 144.258 144.59C145.124 145.653 146.256 146.185 147.653 146.185C149.042 146.185 150.166 145.653 151.023 144.59C151.889 143.518 152.322 142.107 152.322 140.358V140.062C152.322 138.999 152.125 138.026 151.73 137.143C151.336 136.26 150.783 135.578 150.071 135.098C149.36 134.609 148.545 134.365 147.628 134.365C146.256 134.365 145.137 134.905 144.271 135.985C143.404 137.057 142.971 138.463 142.971 140.204V140.487ZM165.994 145.464C165.068 146.811 163.589 147.484 161.557 147.484C160.074 147.484 158.946 147.055 158.174 146.198C157.403 145.332 157.008 144.054 156.991 142.365V133.31H158.522V142.172C158.522 144.821 159.593 146.146 161.737 146.146C163.967 146.146 165.377 145.224 165.969 143.381V133.31H167.512V147.227H166.02L165.994 145.464ZM177.956 134.622C177.63 134.562 177.283 134.532 176.914 134.532C175.954 134.532 175.139 134.802 174.471 135.342C173.81 135.874 173.339 136.65 173.056 137.67V147.227H171.525V133.31H173.03L173.056 135.522C173.87 133.876 175.178 133.053 176.979 133.053C177.407 133.053 177.746 133.108 177.995 133.22L177.956 134.622ZM195.14 143.69C195.14 142.926 194.831 142.313 194.214 141.85C193.605 141.387 192.683 141.027 191.448 140.77C190.214 140.504 189.253 140.204 188.567 139.869C187.89 139.526 187.384 139.111 187.05 138.622C186.724 138.133 186.561 137.541 186.561 136.847C186.561 135.749 187.02 134.845 187.937 134.133C188.855 133.413 190.029 133.053 191.461 133.053C193.013 133.053 194.257 133.438 195.191 134.21C196.134 134.973 196.606 135.972 196.606 137.207H195.063C195.063 136.392 194.72 135.715 194.034 135.175C193.356 134.635 192.499 134.365 191.461 134.365C190.449 134.365 189.635 134.592 189.018 135.046C188.409 135.492 188.104 136.075 188.104 136.795C188.104 137.49 188.357 138.03 188.863 138.416C189.378 138.793 190.308 139.141 191.654 139.458C193.009 139.775 194.021 140.114 194.69 140.474C195.367 140.834 195.869 141.267 196.195 141.773C196.52 142.279 196.683 142.892 196.683 143.612C196.683 144.787 196.207 145.726 195.256 146.429C194.312 147.132 193.078 147.484 191.551 147.484C189.931 147.484 188.615 147.094 187.603 146.313C186.599 145.524 186.098 144.53 186.098 143.329H187.641C187.701 144.23 188.079 144.933 188.773 145.439C189.476 145.936 190.402 146.185 191.551 146.185C192.623 146.185 193.489 145.949 194.149 145.477C194.81 145.006 195.14 144.41 195.14 143.69ZM205.545 147.484C204.362 147.484 203.29 147.192 202.33 146.609C201.378 146.026 200.636 145.216 200.105 144.178C199.573 143.132 199.307 141.962 199.307 140.667V140.114C199.307 138.776 199.564 137.571 200.079 136.5C200.602 135.428 201.326 134.587 202.253 133.979C203.179 133.361 204.182 133.053 205.262 133.053C206.951 133.053 208.289 133.631 209.275 134.789C210.27 135.938 210.767 137.511 210.767 139.509V140.371H200.838V140.667C200.838 142.245 201.288 143.561 202.188 144.616C203.097 145.662 204.238 146.185 205.61 146.185C206.433 146.185 207.157 146.035 207.783 145.735C208.418 145.434 208.992 144.954 209.507 144.294L210.471 145.027C209.34 146.665 207.697 147.484 205.545 147.484ZM205.262 134.365C204.105 134.365 203.127 134.789 202.33 135.638C201.541 136.487 201.061 137.627 200.889 139.059H209.237V138.892C209.194 137.554 208.812 136.465 208.092 135.625C207.372 134.785 206.428 134.365 205.262 134.365ZM220.195 134.622C219.869 134.562 219.522 134.532 219.153 134.532C218.193 134.532 217.378 134.802 216.709 135.342C216.049 135.874 215.578 136.65 215.295 137.67V147.227H213.764V133.31H215.269L215.295 135.522C216.109 133.876 217.417 133.053 219.218 133.053C219.646 133.053 219.985 133.108 220.234 133.22L220.195 134.622ZM227.205 145.104L231.436 133.31H233.019L227.822 147.227H226.575L221.353 133.31H222.935L227.205 145.104ZM240.761 147.484C239.578 147.484 238.506 147.192 237.546 146.609C236.594 146.026 235.852 145.216 235.321 144.178C234.789 143.132 234.523 141.962 234.523 140.667V140.114C234.523 138.776 234.781 137.571 235.295 136.5C235.818 135.428 236.543 134.587 237.469 133.979C238.395 133.361 239.398 133.053 240.478 133.053C242.168 133.053 243.505 133.631 244.491 134.789C245.486 135.938 245.983 137.511 245.983 139.509V140.371H236.054V140.667C236.054 142.245 236.504 143.561 237.404 144.616C238.313 145.662 239.454 146.185 240.826 146.185C241.649 146.185 242.373 146.035 242.999 145.735C243.634 145.434 244.208 144.954 244.723 144.294L245.688 145.027C244.556 146.665 242.914 147.484 240.761 147.484ZM240.478 134.365C239.321 134.365 238.343 134.789 237.546 135.638C236.757 136.487 236.277 137.627 236.105 139.059H244.453V138.892C244.41 137.554 244.028 136.465 243.308 135.625C242.588 134.785 241.645 134.365 240.478 134.365ZM255.411 134.622C255.085 134.562 254.738 134.532 254.369 134.532C253.409 134.532 252.595 134.802 251.926 135.342C251.265 135.874 250.794 136.65 250.511 137.67V147.227H248.98V133.31H250.485L250.511 135.522C251.325 133.876 252.633 133.053 254.434 133.053C254.863 133.053 255.201 133.108 255.45 133.22L255.411 134.622ZM267.592 144.024L267.823 145.22L268.132 143.96L271.476 133.31H272.788L276.093 143.87L276.454 145.336L276.749 143.985L279.605 133.31H281.2L277.148 147.227H275.836L272.261 136.191L272.093 135.432L271.926 136.204L268.415 147.227H267.103L263.064 133.31H264.646L267.592 144.024ZM285.843 147.227H284.299V133.31H285.843V147.227ZM284.029 129.284C284.029 128.992 284.124 128.748 284.312 128.551C284.501 128.345 284.758 128.242 285.084 128.242C285.41 128.242 285.667 128.345 285.856 128.551C286.053 128.748 286.152 128.992 286.152 129.284C286.152 129.576 286.053 129.82 285.856 130.017C285.667 130.214 285.41 130.313 285.084 130.313C284.758 130.313 284.501 130.214 284.312 130.017C284.124 129.82 284.029 129.576 284.029 129.284ZM292.428 129.747V133.31H295.309V134.57H292.428V143.844C292.428 144.616 292.565 145.19 292.84 145.567C293.123 145.945 293.59 146.133 294.242 146.133C294.499 146.133 294.915 146.09 295.489 146.005L295.554 147.265C295.151 147.411 294.602 147.484 293.907 147.484C292.853 147.484 292.085 147.179 291.605 146.571C291.125 145.953 290.885 145.049 290.885 143.857V134.57H288.325V133.31H290.885V129.747H292.428ZM300.03 135.664C300.536 134.832 301.183 134.189 301.972 133.734C302.761 133.28 303.622 133.053 304.557 133.053C306.049 133.053 307.16 133.473 307.888 134.313C308.617 135.153 308.986 136.414 308.995 138.095V147.227H307.464V138.082C307.455 136.838 307.19 135.912 306.666 135.303C306.152 134.695 305.325 134.39 304.184 134.39C303.232 134.39 302.388 134.69 301.65 135.291C300.921 135.882 300.381 136.684 300.03 137.696V147.227H298.499V127.47H300.03V135.664ZM322.693 144.024L322.924 145.22L323.233 143.96L326.577 133.31H327.889L331.194 143.87L331.554 145.336L331.85 143.985L334.706 133.31H336.301L332.249 147.227H330.937L327.361 136.191L327.194 135.432L327.027 136.204L323.516 147.227H322.204L318.165 133.31H319.747L322.693 144.024ZM344.609 147.484C343.426 147.484 342.354 147.192 341.394 146.609C340.442 146.026 339.7 145.216 339.169 144.178C338.637 143.132 338.371 141.962 338.371 140.667V140.114C338.371 138.776 338.629 137.571 339.143 136.5C339.666 135.428 340.391 134.587 341.317 133.979C342.243 133.361 343.246 133.053 344.326 133.053C346.016 133.053 347.353 133.631 348.339 134.789C349.334 135.938 349.831 137.511 349.831 139.509V140.371H339.902V140.667C339.902 142.245 340.352 143.561 341.252 144.616C342.161 145.662 343.302 146.185 344.674 146.185C345.497 146.185 346.221 146.035 346.847 145.735C347.482 145.434 348.056 144.954 348.571 144.294L349.536 145.027C348.404 146.665 346.762 147.484 344.609 147.484ZM344.326 134.365C343.169 134.365 342.191 134.789 341.394 135.638C340.605 136.487 340.125 137.627 339.953 139.059H348.301V138.892C348.258 137.554 347.876 136.465 347.156 135.625C346.436 134.785 345.493 134.365 344.326 134.365ZM354.552 147.227H353.008V127.47H354.552V147.227ZM363.89 146.185C364.961 146.185 365.858 145.885 366.578 145.284C367.307 144.676 367.701 143.891 367.761 142.931H369.24C369.197 143.78 368.932 144.556 368.443 145.259C367.954 145.953 367.302 146.498 366.488 146.892C365.682 147.287 364.816 147.484 363.89 147.484C362.063 147.484 360.614 146.849 359.542 145.58C358.479 144.311 357.947 142.605 357.947 140.461V139.998C357.947 138.626 358.187 137.413 358.668 136.358C359.148 135.303 359.834 134.489 360.726 133.914C361.626 133.34 362.676 133.053 363.877 133.053C365.403 133.053 366.659 133.507 367.645 134.416C368.64 135.325 369.172 136.521 369.24 138.004H367.761C367.693 136.916 367.298 136.037 366.578 135.368C365.866 134.699 364.966 134.365 363.877 134.365C362.488 134.365 361.407 134.866 360.636 135.869C359.872 136.873 359.491 138.279 359.491 140.088V140.538C359.491 142.313 359.872 143.698 360.636 144.693C361.407 145.687 362.492 146.185 363.89 146.185ZM371.478 140.062C371.478 138.725 371.735 137.52 372.25 136.448C372.773 135.376 373.506 134.545 374.449 133.953C375.401 133.353 376.477 133.053 377.678 133.053C379.53 133.053 381.03 133.704 382.179 135.008C383.328 136.302 383.903 138.022 383.903 140.165V140.487C383.903 141.833 383.641 143.046 383.118 144.127C382.604 145.199 381.875 146.026 380.932 146.609C379.989 147.192 378.912 147.484 377.703 147.484C375.86 147.484 374.359 146.836 373.202 145.542C372.053 144.238 371.478 142.515 371.478 140.371V140.062ZM373.022 140.487C373.022 142.15 373.45 143.518 374.308 144.59C375.174 145.653 376.306 146.185 377.703 146.185C379.093 146.185 380.216 145.653 381.073 144.59C381.939 143.518 382.372 142.107 382.372 140.358V140.062C382.372 138.999 382.175 138.026 381.781 137.143C381.386 136.26 380.833 135.578 380.121 135.098C379.41 134.609 378.595 134.365 377.678 134.365C376.306 134.365 375.187 134.905 374.321 135.985C373.455 137.057 373.022 138.463 373.022 140.204V140.487ZM388.495 133.31L388.546 135.574C389.061 134.733 389.704 134.103 390.475 133.683C391.247 133.263 392.105 133.053 393.048 133.053C395.243 133.053 396.636 133.953 397.228 135.754C397.725 134.888 398.39 134.223 399.222 133.76C400.053 133.288 400.971 133.053 401.974 133.053C404.958 133.053 406.48 134.682 406.54 137.94V147.227H404.997V138.056C404.988 136.813 404.718 135.891 404.186 135.291C403.663 134.69 402.806 134.39 401.614 134.39C400.508 134.407 399.573 134.768 398.81 135.471C398.047 136.165 397.622 137.014 397.537 138.017V147.227H395.993V137.94C395.985 136.748 395.702 135.861 395.144 135.278C394.596 134.686 393.747 134.39 392.598 134.39C391.629 134.39 390.797 134.669 390.102 135.226C389.408 135.775 388.893 136.594 388.559 137.683V147.227H387.016V133.31H388.495ZM415.839 147.484C414.656 147.484 413.584 147.192 412.624 146.609C411.672 146.026 410.93 145.216 410.399 144.178C409.867 143.132 409.601 141.962 409.601 140.667V140.114C409.601 138.776 409.859 137.571 410.373 136.5C410.896 135.428 411.621 134.587 412.547 133.979C413.473 133.361 414.476 133.053 415.556 133.053C417.246 133.053 418.583 133.631 419.569 134.789C420.564 135.938 421.061 137.511 421.061 139.509V140.371H411.132V140.667C411.132 142.245 411.582 143.561 412.482 144.616C413.391 145.662 414.532 146.185 415.904 146.185C416.727 146.185 417.451 146.035 418.077 145.735C418.712 145.434 419.286 144.954 419.801 144.294L420.766 145.027C419.634 146.665 417.992 147.484 415.839 147.484ZM415.556 134.365C414.399 134.365 413.421 134.789 412.624 135.638C411.835 136.487 411.355 137.627 411.183 139.059H419.531V138.892C419.488 137.554 419.106 136.465 418.386 135.625C417.666 134.785 416.723 134.365 415.556 134.365ZM132.193 164.31L132.245 166.574C132.759 165.733 133.402 165.103 134.174 164.683C134.946 164.263 135.803 164.053 136.746 164.053C138.941 164.053 140.335 164.953 140.926 166.754C141.424 165.888 142.088 165.223 142.92 164.76C143.752 164.288 144.669 164.053 145.672 164.053C148.656 164.053 150.178 165.682 150.239 168.94V178.227H148.695V169.056C148.686 167.813 148.416 166.891 147.885 166.291C147.362 165.69 146.504 165.39 145.312 165.39C144.206 165.407 143.272 165.768 142.508 166.471C141.745 167.165 141.321 168.014 141.235 169.017V178.227H139.692V168.94C139.683 167.748 139.4 166.861 138.843 166.278C138.294 165.686 137.445 165.39 136.296 165.39C135.327 165.39 134.495 165.669 133.801 166.226C133.106 166.775 132.592 167.594 132.257 168.683V178.227H130.714V164.31H132.193ZM159.538 178.484C158.354 178.484 157.283 178.192 156.322 177.609C155.37 177.026 154.629 176.216 154.097 175.178C153.565 174.132 153.3 172.962 153.3 171.667V171.114C153.3 169.776 153.557 168.571 154.071 167.5C154.594 166.428 155.319 165.587 156.245 164.979C157.171 164.361 158.174 164.053 159.255 164.053C160.944 164.053 162.282 164.631 163.268 165.789C164.262 166.938 164.76 168.511 164.76 170.509V171.371H154.83V171.667C154.83 173.245 155.28 174.561 156.181 175.616C157.09 176.662 158.23 177.185 159.602 177.185C160.425 177.185 161.15 177.035 161.776 176.735C162.41 176.434 162.985 175.954 163.499 175.294L164.464 176.027C163.332 177.665 161.69 178.484 159.538 178.484ZM159.255 165.365C158.097 165.365 157.12 165.789 156.322 166.638C155.533 167.487 155.053 168.627 154.882 170.059H163.229V169.892C163.186 168.554 162.805 167.465 162.084 166.625C161.364 165.785 160.421 165.365 159.255 165.365ZM176.091 174.69C176.091 173.926 175.783 173.313 175.165 172.85C174.556 172.387 173.635 172.027 172.4 171.77C171.165 171.504 170.205 171.204 169.519 170.869C168.841 170.526 168.335 170.111 168.001 169.622C167.675 169.133 167.512 168.541 167.512 167.847C167.512 166.749 167.971 165.845 168.888 165.133C169.806 164.413 170.981 164.053 172.413 164.053C173.965 164.053 175.208 164.438 176.143 165.21C177.086 165.973 177.557 166.972 177.557 168.207H176.014C176.014 167.392 175.671 166.715 174.985 166.175C174.308 165.635 173.45 165.365 172.413 165.365C171.401 165.365 170.586 165.592 169.969 166.046C169.36 166.492 169.056 167.075 169.056 167.795C169.056 168.49 169.309 169.03 169.815 169.416C170.329 169.793 171.259 170.141 172.606 170.458C173.96 170.775 174.972 171.114 175.641 171.474C176.318 171.834 176.82 172.267 177.146 172.773C177.472 173.279 177.635 173.892 177.635 174.612C177.635 175.787 177.159 176.726 176.207 177.429C175.264 178.132 174.029 178.484 172.503 178.484C170.882 178.484 169.566 178.094 168.554 177.313C167.551 176.524 167.049 175.53 167.049 174.329H168.593C168.653 175.23 169.03 175.933 169.724 176.439C170.428 176.936 171.354 177.185 172.503 177.185C173.575 177.185 174.441 176.949 175.101 176.477C175.761 176.006 176.091 175.41 176.091 174.69ZM189.442 174.69C189.442 173.926 189.133 173.313 188.516 172.85C187.907 172.387 186.985 172.027 185.751 171.77C184.516 171.504 183.555 171.204 182.869 170.869C182.192 170.526 181.686 170.111 181.352 169.622C181.026 169.133 180.863 168.541 180.863 167.847C180.863 166.749 181.322 165.845 182.239 165.133C183.157 164.413 184.331 164.053 185.763 164.053C187.315 164.053 188.559 164.438 189.493 165.21C190.437 165.973 190.908 166.972 190.908 168.207H189.365C189.365 167.392 189.022 166.715 188.336 166.175C187.658 165.635 186.801 165.365 185.763 165.365C184.752 165.365 183.937 165.592 183.32 166.046C182.711 166.492 182.406 167.075 182.406 167.795C182.406 168.49 182.659 169.03 183.165 169.416C183.68 169.793 184.61 170.141 185.956 170.458C187.311 170.775 188.323 171.114 188.992 171.474C189.669 171.834 190.171 172.267 190.497 172.773C190.823 173.279 190.985 173.892 190.985 174.612C190.985 175.787 190.51 176.726 189.558 177.429C188.615 178.132 187.38 178.484 185.853 178.484C184.233 178.484 182.917 178.094 181.905 177.313C180.902 176.524 180.4 175.53 180.4 174.329H181.943C182.003 175.23 182.381 175.933 183.075 176.439C183.778 176.936 184.704 177.185 185.853 177.185C186.925 177.185 187.791 176.949 188.452 176.477C189.112 176.006 189.442 175.41 189.442 174.69ZM203.243 178.227C203.089 177.789 202.99 177.142 202.947 176.284C202.407 176.988 201.717 177.532 200.876 177.918C200.045 178.295 199.161 178.484 198.227 178.484C196.889 178.484 195.804 178.111 194.973 177.365C194.149 176.619 193.738 175.676 193.738 174.535C193.738 173.18 194.3 172.109 195.423 171.32C196.555 170.531 198.128 170.136 200.143 170.136H202.934V168.554C202.934 167.56 202.626 166.779 202.008 166.213C201.399 165.639 200.508 165.352 199.333 165.352C198.261 165.352 197.374 165.626 196.67 166.175C195.967 166.724 195.616 167.384 195.616 168.156L194.072 168.143C194.072 167.037 194.587 166.081 195.616 165.275C196.645 164.46 197.909 164.053 199.41 164.053C200.962 164.053 202.184 164.443 203.076 165.223C203.976 165.995 204.439 167.075 204.465 168.464V175.05C204.465 176.396 204.606 177.403 204.889 178.072V178.227H203.243ZM198.407 177.12C199.436 177.12 200.353 176.872 201.159 176.374C201.974 175.877 202.566 175.213 202.934 174.381V171.32H200.182C198.647 171.337 197.446 171.62 196.58 172.169C195.714 172.709 195.281 173.455 195.281 174.407C195.281 175.187 195.569 175.834 196.143 176.349C196.726 176.863 197.481 177.12 198.407 177.12ZM207.963 171.14C207.963 168.962 208.443 167.238 209.404 165.969C210.373 164.691 211.685 164.053 213.34 164.053C215.235 164.053 216.675 164.807 217.661 166.316L217.738 164.31H219.179V177.944C219.179 179.736 218.677 181.155 217.674 182.201C216.671 183.247 215.312 183.77 213.597 183.77C212.628 183.77 211.702 183.551 210.819 183.114C209.944 182.685 209.254 182.111 208.748 181.391L209.61 180.465C210.699 181.802 211.993 182.471 213.494 182.471C214.78 182.471 215.783 182.089 216.504 181.326C217.224 180.572 217.597 179.521 217.623 178.175V176.426C216.637 177.798 215.2 178.484 213.314 178.484C211.702 178.484 210.407 177.841 209.43 176.554C208.452 175.268 207.963 173.532 207.963 171.345V171.14ZM209.52 171.41C209.52 173.185 209.875 174.587 210.587 175.616C211.299 176.636 212.302 177.146 213.597 177.146C215.492 177.146 216.834 176.297 217.623 174.599V168.13C217.263 167.238 216.744 166.561 216.066 166.098C215.389 165.626 214.574 165.39 213.623 165.39C212.328 165.39 211.32 165.9 210.6 166.921C209.88 167.933 209.52 169.429 209.52 171.41ZM228.581 178.484C227.398 178.484 226.326 178.192 225.366 177.609C224.414 177.026 223.672 176.216 223.14 175.178C222.609 174.132 222.343 172.962 222.343 171.667V171.114C222.343 169.776 222.6 168.571 223.115 167.5C223.638 166.428 224.362 165.587 225.288 164.979C226.215 164.361 227.218 164.053 228.298 164.053C229.987 164.053 231.325 164.631 232.311 165.789C233.306 166.938 233.803 168.511 233.803 170.509V171.371H223.874V171.667C223.874 173.245 224.324 174.561 225.224 175.616C226.133 176.662 227.273 177.185 228.645 177.185C229.469 177.185 230.193 177.035 230.819 176.735C231.454 176.434 232.028 175.954 232.543 175.294L233.507 176.027C232.375 177.665 230.733 178.484 228.581 178.484ZM228.298 165.365C227.141 165.365 226.163 165.789 225.366 166.638C224.577 167.487 224.097 168.627 223.925 170.059H232.273V169.892C232.23 168.554 231.848 167.465 231.128 166.625C230.408 165.785 229.464 165.365 228.298 165.365ZM245.135 174.69C245.135 173.926 244.826 173.313 244.208 172.85C243.6 172.387 242.678 172.027 241.443 171.77C240.208 171.504 239.248 171.204 238.562 170.869C237.885 170.526 237.379 170.111 237.044 169.622C236.719 169.133 236.556 168.541 236.556 167.847C236.556 166.749 237.014 165.845 237.932 165.133C238.849 164.413 240.024 164.053 241.456 164.053C243.008 164.053 244.251 164.438 245.186 165.21C246.129 165.973 246.601 166.972 246.601 168.207H245.057C245.057 167.392 244.714 166.715 244.028 166.175C243.351 165.635 242.494 165.365 241.456 165.365C240.444 165.365 239.63 165.592 239.012 166.046C238.403 166.492 238.099 167.075 238.099 167.795C238.099 168.49 238.352 169.03 238.858 169.416C239.372 169.793 240.303 170.141 241.649 170.458C243.004 170.775 244.016 171.114 244.684 171.474C245.362 171.834 245.863 172.267 246.189 172.773C246.515 173.279 246.678 173.892 246.678 174.612C246.678 175.787 246.202 176.726 245.25 177.429C244.307 178.132 243.072 178.484 241.546 178.484C239.925 178.484 238.609 178.094 237.597 177.313C236.594 176.524 236.093 175.53 236.093 174.329H237.636C237.696 175.23 238.073 175.933 238.768 176.439C239.471 176.936 240.397 177.185 241.546 177.185C242.618 177.185 243.484 176.949 244.144 176.477C244.804 176.006 245.135 175.41 245.135 174.69ZM265.341 178.227C265.186 177.789 265.088 177.142 265.045 176.284C264.505 176.988 263.815 177.532 262.974 177.918C262.142 178.295 261.259 178.484 260.325 178.484C258.987 178.484 257.902 178.111 257.071 177.365C256.247 176.619 255.836 175.676 255.836 174.535C255.836 173.18 256.397 172.109 257.521 171.32C258.653 170.531 260.226 170.136 262.241 170.136H265.032V168.554C265.032 167.56 264.723 166.779 264.106 166.213C263.497 165.639 262.605 165.352 261.431 165.352C260.359 165.352 259.471 165.626 258.768 166.175C258.065 166.724 257.714 167.384 257.714 168.156L256.17 168.143C256.17 167.037 256.685 166.081 257.714 165.275C258.743 164.46 260.007 164.053 261.508 164.053C263.06 164.053 264.282 164.443 265.174 165.223C266.074 165.995 266.537 167.075 266.563 168.464V175.05C266.563 176.396 266.704 177.403 266.987 178.072V178.227H265.341ZM260.505 177.12C261.534 177.12 262.451 176.872 263.257 176.374C264.072 175.877 264.663 175.213 265.032 174.381V171.32H262.28C260.745 171.337 259.544 171.62 258.678 172.169C257.812 172.709 257.379 173.455 257.379 174.407C257.379 175.187 257.666 175.834 258.241 176.349C258.824 176.863 259.579 177.12 260.505 177.12ZM272.145 164.31L272.196 166.689C272.719 165.832 273.371 165.18 274.151 164.734C274.932 164.28 275.793 164.053 276.737 164.053C278.229 164.053 279.339 164.473 280.068 165.313C280.797 166.153 281.165 167.414 281.174 169.095V178.227H279.643V169.082C279.635 167.838 279.369 166.912 278.846 166.303C278.331 165.695 277.504 165.39 276.364 165.39C275.412 165.39 274.567 165.69 273.83 166.291C273.101 166.882 272.561 167.684 272.209 168.696V178.227H270.679V164.31H272.145ZM284.544 171.14C284.544 168.979 285.024 167.26 285.984 165.982C286.953 164.696 288.265 164.053 289.92 164.053C291.798 164.053 293.23 164.794 294.216 166.278V158.47H295.747V178.227H294.306L294.242 176.374C293.256 177.781 291.807 178.484 289.894 178.484C288.291 178.484 286.996 177.841 286.01 176.554C285.033 175.26 284.544 173.515 284.544 171.32V171.14ZM286.1 171.41C286.1 173.185 286.456 174.587 287.168 175.616C287.879 176.636 288.883 177.146 290.177 177.146C292.072 177.146 293.419 176.31 294.216 174.638V168.104C293.419 166.295 292.081 165.39 290.203 165.39C288.908 165.39 287.901 165.9 287.181 166.921C286.46 167.933 286.1 169.429 286.1 171.41ZM314.988 178.227C314.834 177.789 314.735 177.142 314.692 176.284C314.152 176.988 313.462 177.532 312.622 177.918C311.79 178.295 310.907 178.484 309.972 178.484C308.634 178.484 307.55 178.111 306.718 177.365C305.895 176.619 305.483 175.676 305.483 174.535C305.483 173.18 306.045 172.109 307.168 171.32C308.3 170.531 309.873 170.136 311.888 170.136H314.68V168.554C314.68 167.56 314.371 166.779 313.753 166.213C313.145 165.639 312.253 165.352 311.078 165.352C310.006 165.352 309.119 165.626 308.416 166.175C307.713 166.724 307.361 167.384 307.361 168.156L305.818 168.143C305.818 167.037 306.332 166.081 307.361 165.275C308.39 164.46 309.655 164.053 311.155 164.053C312.707 164.053 313.929 164.443 314.821 165.223C315.721 165.995 316.184 167.075 316.21 168.464V175.05C316.21 176.396 316.352 177.403 316.635 178.072V178.227H314.988ZM310.152 177.12C311.181 177.12 312.099 176.872 312.905 176.374C313.719 175.877 314.311 175.213 314.68 174.381V171.32H311.927C310.392 171.337 309.192 171.62 308.326 172.169C307.46 172.709 307.027 173.455 307.027 174.407C307.027 175.187 307.314 175.834 307.888 176.349C308.471 176.863 309.226 177.12 310.152 177.12ZM329.278 176.464C328.352 177.811 326.873 178.484 324.841 178.484C323.357 178.484 322.23 178.055 321.458 177.198C320.686 176.332 320.292 175.054 320.274 173.365V164.31H321.805V173.172C321.805 175.821 322.877 177.146 325.021 177.146C327.25 177.146 328.661 176.224 329.252 174.381V164.31H330.796V178.227H329.304L329.278 176.464ZM337.201 160.747V164.31H340.082V165.57H337.201V174.844C337.201 175.616 337.338 176.19 337.613 176.567C337.895 176.945 338.363 177.133 339.014 177.133C339.272 177.133 339.688 177.09 340.262 177.005L340.326 178.265C339.923 178.411 339.375 178.484 338.68 178.484C337.625 178.484 336.858 178.179 336.378 177.571C335.898 176.953 335.657 176.049 335.657 174.857V165.57H333.098V164.31H335.657V160.747H337.201ZM342.166 171.062C342.166 169.725 342.423 168.52 342.937 167.448C343.46 166.376 344.194 165.545 345.137 164.953C346.089 164.353 347.165 164.053 348.365 164.053C350.217 164.053 351.718 164.704 352.867 166.008C354.016 167.302 354.59 169.022 354.59 171.165V171.487C354.59 172.833 354.329 174.046 353.806 175.127C353.291 176.199 352.562 177.026 351.619 177.609C350.676 178.192 349.6 178.484 348.391 178.484C346.547 178.484 345.047 177.836 343.889 176.542C342.74 175.238 342.166 173.515 342.166 171.371V171.062ZM343.709 171.487C343.709 173.15 344.138 174.518 344.995 175.59C345.861 176.653 346.993 177.185 348.391 177.185C349.78 177.185 350.903 176.653 351.761 175.59C352.627 174.518 353.06 173.107 353.06 171.358V171.062C353.06 169.999 352.863 169.026 352.468 168.143C352.074 167.26 351.521 166.578 350.809 166.098C350.097 165.609 349.283 165.365 348.365 165.365C346.993 165.365 345.874 165.905 345.008 166.985C344.142 168.057 343.709 169.463 343.709 171.204V171.487ZM359.182 164.31L359.234 166.574C359.748 165.733 360.391 165.103 361.163 164.683C361.935 164.263 362.792 164.053 363.735 164.053C365.93 164.053 367.324 164.953 367.915 166.754C368.413 165.888 369.077 165.223 369.909 164.76C370.741 164.288 371.658 164.053 372.662 164.053C375.646 164.053 377.168 165.682 377.228 168.94V178.227H375.684V169.056C375.676 167.813 375.405 166.891 374.874 166.291C374.351 165.69 373.493 165.39 372.301 165.39C371.195 165.407 370.261 165.768 369.497 166.471C368.734 167.165 368.31 168.014 368.224 169.017V178.227H366.681V168.94C366.672 167.748 366.389 166.861 365.832 166.278C365.283 165.686 364.434 165.39 363.285 165.39C362.316 165.39 361.484 165.669 360.79 166.226C360.095 166.775 359.581 167.594 359.246 168.683V178.227H357.703V164.31H359.182ZM389.922 178.227C389.768 177.789 389.669 177.142 389.627 176.284C389.086 176.988 388.396 177.532 387.556 177.918C386.724 178.295 385.841 178.484 384.906 178.484C383.569 178.484 382.484 178.111 381.652 177.365C380.829 176.619 380.417 175.676 380.417 174.535C380.417 173.18 380.979 172.109 382.102 171.32C383.234 170.531 384.808 170.136 386.823 170.136H389.614V168.554C389.614 167.56 389.305 166.779 388.688 166.213C388.079 165.639 387.187 165.352 386.012 165.352C384.94 165.352 384.053 165.626 383.35 166.175C382.647 166.724 382.295 167.384 382.295 168.156L380.752 168.143C380.752 167.037 381.266 166.081 382.295 165.275C383.324 164.46 384.589 164.053 386.089 164.053C387.642 164.053 388.863 164.443 389.755 165.223C390.656 165.995 391.119 167.075 391.144 168.464V175.05C391.144 176.396 391.286 177.403 391.569 178.072V178.227H389.922ZM385.086 177.12C386.115 177.12 387.033 176.872 387.839 176.374C388.653 175.877 389.245 175.213 389.614 174.381V171.32H386.861C385.326 171.337 384.126 171.62 383.26 172.169C382.394 172.709 381.961 173.455 381.961 174.407C381.961 175.187 382.248 175.834 382.823 176.349C383.406 176.863 384.16 177.12 385.086 177.12ZM397.652 160.747V164.31H400.534V165.57H397.652V174.844C397.652 175.616 397.79 176.19 398.064 176.567C398.347 176.945 398.814 177.133 399.466 177.133C399.723 177.133 400.139 177.09 400.714 177.005L400.778 178.265C400.375 178.411 399.826 178.484 399.132 178.484C398.077 178.484 397.309 178.179 396.829 177.571C396.349 176.953 396.109 176.049 396.109 174.857V165.57H393.549V164.31H396.109V160.747H397.652ZM405.447 178.227H403.903V164.31H405.447V178.227ZM403.633 160.284C403.633 159.992 403.728 159.748 403.916 159.551C404.105 159.345 404.362 159.242 404.688 159.242C405.014 159.242 405.271 159.345 405.46 159.551C405.657 159.748 405.756 159.992 405.756 160.284C405.756 160.576 405.657 160.82 405.46 161.017C405.271 161.214 405.014 161.313 404.688 161.313C404.362 161.313 404.105 161.214 403.916 161.017C403.728 160.82 403.633 160.576 403.633 160.284ZM414.785 177.185C415.857 177.185 416.753 176.885 417.473 176.284C418.202 175.676 418.596 174.891 418.656 173.931H420.135C420.092 174.78 419.827 175.556 419.338 176.259C418.849 176.953 418.197 177.498 417.383 177.892C416.577 178.287 415.711 178.484 414.785 178.484C412.958 178.484 411.509 177.849 410.437 176.58C409.374 175.311 408.842 173.605 408.842 171.461V170.998C408.842 169.626 409.083 168.413 409.563 167.358C410.043 166.303 410.729 165.489 411.621 164.914C412.521 164.34 413.571 164.053 414.772 164.053C416.298 164.053 417.554 164.507 418.54 165.416C419.535 166.325 420.067 167.521 420.135 169.004H418.656C418.588 167.916 418.193 167.037 417.473 166.368C416.761 165.699 415.861 165.365 414.772 165.365C413.383 165.365 412.302 165.866 411.531 166.869C410.767 167.873 410.386 169.279 410.386 171.088V171.538C410.386 173.313 410.767 174.698 411.531 175.693C412.302 176.687 413.387 177.185 414.785 177.185ZM212.169 195.31L212.221 197.574C212.735 196.733 213.378 196.103 214.15 195.683C214.922 195.263 215.779 195.053 216.722 195.053C218.917 195.053 220.311 195.953 220.902 197.754C221.4 196.888 222.064 196.223 222.896 195.76C223.728 195.288 224.645 195.053 225.649 195.053C228.633 195.053 230.155 196.682 230.215 199.94V209.227H228.671V200.056C228.663 198.813 228.392 197.891 227.861 197.291C227.338 196.69 226.48 196.39 225.288 196.39C224.182 196.407 223.248 196.768 222.485 197.471C221.721 198.165 221.297 199.014 221.211 200.017V209.227H219.668V199.94C219.659 198.748 219.376 197.861 218.819 197.278C218.27 196.686 217.421 196.39 216.272 196.39C215.303 196.39 214.471 196.669 213.777 197.226C213.082 197.775 212.568 198.594 212.233 199.683V209.227H210.69V195.31H212.169ZM233.276 202.062C233.276 200.725 233.533 199.52 234.047 198.448C234.571 197.376 235.304 196.545 236.247 195.953C237.199 195.353 238.275 195.053 239.475 195.053C241.327 195.053 242.828 195.704 243.977 197.008C245.126 198.302 245.7 200.022 245.7 202.165V202.487C245.7 203.833 245.439 205.046 244.916 206.127C244.401 207.199 243.673 208.026 242.729 208.609C241.786 209.192 240.71 209.484 239.501 209.484C237.657 209.484 236.157 208.836 234.999 207.542C233.85 206.238 233.276 204.515 233.276 202.371V202.062ZM234.819 202.487C234.819 204.15 235.248 205.518 236.105 206.59C236.971 207.653 238.103 208.185 239.501 208.185C240.89 208.185 242.013 207.653 242.871 206.59C243.737 205.518 244.17 204.107 244.17 202.358V202.062C244.17 200.999 243.973 200.026 243.578 199.143C243.184 198.26 242.631 197.578 241.919 197.098C241.207 196.609 240.393 196.365 239.475 196.365C238.103 196.365 236.984 196.905 236.118 197.985C235.252 199.057 234.819 200.463 234.819 202.204V202.487ZM248.273 202.14C248.273 199.979 248.753 198.26 249.713 196.982C250.682 195.696 251.994 195.053 253.649 195.053C255.527 195.053 256.959 195.794 257.945 197.278V189.47H259.476V209.227H258.035L257.971 207.374C256.985 208.781 255.536 209.484 253.623 209.484C252.02 209.484 250.725 208.841 249.739 207.554C248.762 206.26 248.273 204.515 248.273 202.32V202.14ZM249.829 202.41C249.829 204.185 250.185 205.587 250.897 206.616C251.608 207.636 252.612 208.146 253.906 208.146C255.801 208.146 257.148 207.31 257.945 205.638V199.104C257.148 197.295 255.81 196.39 253.932 196.39C252.637 196.39 251.63 196.9 250.91 197.921C250.189 198.933 249.829 200.429 249.829 202.41ZM268.916 209.484C267.733 209.484 266.661 209.192 265.701 208.609C264.749 208.026 264.007 207.216 263.476 206.178C262.944 205.132 262.678 203.962 262.678 202.667V202.114C262.678 200.776 262.936 199.571 263.45 198.5C263.973 197.428 264.698 196.587 265.624 195.979C266.55 195.361 267.553 195.053 268.633 195.053C270.323 195.053 271.66 195.631 272.646 196.789C273.641 197.938 274.138 199.511 274.138 201.509V202.371H264.209V202.667C264.209 204.245 264.659 205.561 265.559 206.616C266.468 207.662 267.609 208.185 268.981 208.185C269.804 208.185 270.528 208.035 271.154 207.735C271.789 207.434 272.363 206.954 272.878 206.294L273.843 207.027C272.711 208.665 271.069 209.484 268.916 209.484ZM268.633 196.365C267.476 196.365 266.498 196.789 265.701 197.638C264.912 198.487 264.432 199.627 264.26 201.059H272.608V200.892C272.565 199.554 272.183 198.465 271.463 197.625C270.743 196.785 269.8 196.365 268.633 196.365ZM283.566 196.622C283.24 196.562 282.893 196.532 282.524 196.532C281.564 196.532 280.749 196.802 280.081 197.342C279.42 197.874 278.949 198.65 278.666 199.67V209.227H277.135V195.31H278.64L278.666 197.522C279.48 195.876 280.788 195.053 282.589 195.053C283.017 195.053 283.356 195.108 283.605 195.22L283.566 196.622ZM294.28 209.227C294.126 208.789 294.027 208.142 293.985 207.284C293.444 207.988 292.754 208.532 291.914 208.918C291.082 209.295 290.199 209.484 289.264 209.484C287.927 209.484 286.842 209.111 286.01 208.365C285.187 207.619 284.775 206.676 284.775 205.535C284.775 204.18 285.337 203.109 286.46 202.32C287.592 201.531 289.166 201.136 291.181 201.136H293.972V199.554C293.972 198.56 293.663 197.779 293.046 197.213C292.437 196.639 291.545 196.352 290.37 196.352C289.298 196.352 288.411 196.626 287.708 197.175C287.005 197.724 286.653 198.384 286.653 199.156L285.11 199.143C285.11 198.037 285.624 197.081 286.653 196.275C287.682 195.46 288.947 195.053 290.447 195.053C291.999 195.053 293.221 195.443 294.113 196.223C295.013 196.995 295.477 198.075 295.502 199.464V206.05C295.502 207.396 295.644 208.403 295.927 209.072V209.227H294.28ZM289.444 208.12C290.473 208.12 291.391 207.872 292.197 207.374C293.011 206.877 293.603 206.213 293.972 205.381V202.32H291.219C289.684 202.337 288.484 202.62 287.618 203.169C286.752 203.709 286.319 204.455 286.319 205.407C286.319 206.187 286.606 206.834 287.181 207.349C287.764 207.863 288.518 208.12 289.444 208.12ZM302.01 191.747V195.31H304.892V196.57H302.01V205.844C302.01 206.616 302.148 207.19 302.422 207.567C302.705 207.945 303.172 208.133 303.824 208.133C304.081 208.133 304.497 208.09 305.072 208.005L305.136 209.265C304.733 209.411 304.184 209.484 303.49 209.484C302.435 209.484 301.667 209.179 301.187 208.571C300.707 207.953 300.467 207.049 300.467 205.857V196.57H297.907V195.31H300.467V191.747H302.01ZM309.805 209.227H308.261V195.31H309.805V209.227ZM307.991 191.284C307.991 190.992 308.086 190.748 308.274 190.551C308.463 190.345 308.72 190.242 309.046 190.242C309.372 190.242 309.629 190.345 309.818 190.551C310.015 190.748 310.114 190.992 310.114 191.284C310.114 191.576 310.015 191.82 309.818 192.017C309.629 192.214 309.372 192.313 309.046 192.313C308.72 192.313 308.463 192.214 308.274 192.017C308.086 191.82 307.991 191.576 307.991 191.284ZM313.149 202.062C313.149 200.725 313.406 199.52 313.921 198.448C314.444 197.376 315.177 196.545 316.12 195.953C317.072 195.353 318.148 195.053 319.348 195.053C321.201 195.053 322.701 195.704 323.85 197.008C324.999 198.302 325.574 200.022 325.574 202.165V202.487C325.574 203.833 325.312 205.046 324.789 206.127C324.275 207.199 323.546 208.026 322.603 208.609C321.659 209.192 320.583 209.484 319.374 209.484C317.531 209.484 316.03 208.836 314.872 207.542C313.723 206.238 313.149 204.515 313.149 202.371V202.062ZM314.692 202.487C314.692 204.15 315.121 205.518 315.979 206.59C316.845 207.653 317.976 208.185 319.374 208.185C320.763 208.185 321.887 207.653 322.744 206.59C323.61 205.518 324.043 204.107 324.043 202.358V202.062C324.043 200.999 323.846 200.026 323.451 199.143C323.057 198.26 322.504 197.578 321.792 197.098C321.081 196.609 320.266 196.365 319.348 196.365C317.976 196.365 316.857 196.905 315.991 197.985C315.125 199.057 314.692 200.463 314.692 202.204V202.487ZM330.23 195.31L330.281 197.689C330.804 196.832 331.456 196.18 332.236 195.734C333.016 195.28 333.878 195.053 334.821 195.053C336.313 195.053 337.424 195.473 338.153 196.313C338.882 197.153 339.25 198.414 339.259 200.095V209.227H337.728V200.082C337.72 198.838 337.454 197.912 336.931 197.303C336.416 196.695 335.589 196.39 334.448 196.39C333.497 196.39 332.652 196.69 331.915 197.291C331.186 197.882 330.646 198.684 330.294 199.696V209.227H328.763V195.31H330.23Z" fill="black"/>
-</g>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="549.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="106.547" y="48.518" width="335.162" height="59.8282" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="1.26642"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter2_d" x="125.828" y="124.938" width="297.767" height="87.079" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="1.26642"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="512.876" y2="251.156" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="235.442" y1="-10.9959" x2="288.618" y2="271.692" gradientUnits="userSpaceOnUse">
-<stop stop-color="#B358A3"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="275" y1="34.0723" x2="275" y2="123.228" gradientUnits="userSpaceOnUse">
-<stop stop-color="#B358A3"/>
-<stop offset="1" stop-color="#BF5E9F"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/CAPTCHA.svg b/public/Features/RSM/CAPTCHA.svg
deleted file mode 100644
index 9a89772..0000000
--- a/public/Features/RSM/CAPTCHA.svg
+++ /dev/null
@@ -1,37 +0,0 @@
-<svg width="550" height="250" viewBox="0 0 550 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="500" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M240.117 168.241L237.48 170.839V177.54H235.898V158.813H237.48V168.91L247.076 158.813H249.069L241.223 167.148L249.674 177.54H247.744L240.117 168.241ZM257.211 177.797C256.028 177.797 254.956 177.506 253.995 176.923C253.044 176.34 252.302 175.529 251.77 174.492C251.239 173.446 250.973 172.275 250.973 170.98V170.427C250.973 169.09 251.23 167.885 251.744 166.813C252.268 165.741 252.992 164.901 253.918 164.292C254.844 163.675 255.847 163.366 256.928 163.366C258.617 163.366 259.955 163.945 260.941 165.102C261.935 166.251 262.433 167.825 262.433 169.823V170.685H252.503V170.98C252.503 172.558 252.954 173.874 253.854 174.929C254.763 175.975 255.903 176.498 257.275 176.498C258.098 176.498 258.823 176.348 259.449 176.048C260.083 175.748 260.658 175.268 261.172 174.607L262.137 175.341C261.005 176.978 259.363 177.797 257.211 177.797ZM256.928 164.678C255.77 164.678 254.793 165.102 253.995 165.951C253.206 166.8 252.726 167.941 252.555 169.373H260.902V169.205C260.859 167.868 260.478 166.779 259.758 165.938C259.037 165.098 258.094 164.678 256.928 164.678ZM270.819 177.797C269.636 177.797 268.564 177.506 267.603 176.923C266.652 176.34 265.91 175.529 265.378 174.492C264.847 173.446 264.581 172.275 264.581 170.98V170.427C264.581 169.09 264.838 167.885 265.352 166.813C265.876 165.741 266.6 164.901 267.526 164.292C268.452 163.675 269.455 163.366 270.536 163.366C272.225 163.366 273.563 163.945 274.549 165.102C275.544 166.251 276.041 167.825 276.041 169.823V170.685H266.111V170.98C266.111 172.558 266.562 173.874 267.462 174.929C268.371 175.975 269.511 176.498 270.883 176.498C271.706 176.498 272.431 176.348 273.057 176.048C273.691 175.748 274.266 175.268 274.78 174.607L275.745 175.341C274.613 176.978 272.971 177.797 270.819 177.797ZM270.536 164.678C269.378 164.678 268.401 165.102 267.603 165.951C266.814 166.8 266.334 167.941 266.163 169.373H274.51V169.205C274.467 167.868 274.086 166.779 273.366 165.938C272.645 165.098 271.702 164.678 270.536 164.678ZM290.228 170.723C290.228 172.893 289.747 174.616 288.787 175.894C287.827 177.163 286.541 177.797 284.929 177.797C283.025 177.797 281.567 177.128 280.555 175.791V182.891H279.025V163.623H280.453L280.53 165.591C281.533 164.108 282.986 163.366 284.89 163.366C286.553 163.366 287.857 163.996 288.8 165.257C289.752 166.517 290.228 168.267 290.228 170.505V170.723ZM288.684 170.453C288.684 168.678 288.32 167.276 287.591 166.247C286.862 165.218 285.846 164.704 284.543 164.704C283.599 164.704 282.789 164.931 282.112 165.385C281.434 165.84 280.916 166.5 280.555 167.366V174.042C280.924 174.839 281.451 175.448 282.137 175.868C282.823 176.288 283.634 176.498 284.568 176.498C285.863 176.498 286.871 175.984 287.591 174.955C288.32 173.917 288.684 172.417 288.684 170.453ZM295.372 177.54H293.829V163.623H295.372V177.54ZM293.559 159.598C293.559 159.306 293.653 159.062 293.842 158.864C294.031 158.659 294.288 158.556 294.614 158.556C294.939 158.556 295.197 158.659 295.385 158.864C295.583 159.062 295.681 159.306 295.681 159.598C295.681 159.889 295.583 160.133 295.385 160.331C295.197 160.528 294.939 160.626 294.614 160.626C294.288 160.626 294.031 160.528 293.842 160.331C293.653 160.133 293.559 159.889 293.559 159.598ZM301.032 163.623L301.083 166.003C301.606 165.145 302.258 164.494 303.038 164.048C303.819 163.593 304.68 163.366 305.624 163.366C307.115 163.366 308.226 163.786 308.955 164.627C309.684 165.467 310.052 166.727 310.061 168.408V177.54H308.53V168.395C308.522 167.152 308.256 166.226 307.733 165.617C307.218 165.008 306.391 164.704 305.251 164.704C304.299 164.704 303.454 165.004 302.717 165.604C301.988 166.196 301.448 166.997 301.096 168.009V177.54H299.565V163.623H301.032ZM313.431 170.453C313.431 168.275 313.911 166.552 314.871 165.283C315.84 164.005 317.152 163.366 318.807 163.366C320.702 163.366 322.143 164.121 323.129 165.63L323.206 163.623H324.646V177.257C324.646 179.049 324.145 180.468 323.142 181.514C322.138 182.561 320.779 183.084 319.064 183.084C318.095 183.084 317.169 182.865 316.286 182.428C315.412 181.999 314.721 181.424 314.215 180.704L315.077 179.778C316.166 181.116 317.461 181.785 318.961 181.785C320.248 181.785 321.251 181.403 321.971 180.64C322.691 179.885 323.064 178.835 323.09 177.489V175.739C322.104 177.111 320.668 177.797 318.781 177.797C317.169 177.797 315.875 177.154 314.897 175.868C313.92 174.582 313.431 172.845 313.431 170.659V170.453ZM314.987 170.723C314.987 172.498 315.343 173.9 316.055 174.929C316.766 175.949 317.77 176.46 319.064 176.46C320.959 176.46 322.301 175.611 323.09 173.913V167.443C322.73 166.552 322.211 165.874 321.534 165.411C320.856 164.94 320.042 164.704 319.09 164.704C317.795 164.704 316.788 165.214 316.067 166.234C315.347 167.246 314.987 168.742 314.987 170.723ZM339.476 175.328L343.541 163.623H345.2L339.258 179.907L338.949 180.627C338.186 182.316 337.007 183.161 335.412 183.161C335.043 183.161 334.649 183.101 334.229 182.981L334.216 181.707L335.013 181.785C335.768 181.785 336.377 181.596 336.84 181.219C337.311 180.85 337.71 180.211 338.036 179.302L338.717 177.424L333.47 163.623H335.155L339.476 175.328ZM346.538 170.376C346.538 169.038 346.795 167.833 347.309 166.762C347.832 165.69 348.566 164.858 349.509 164.266C350.461 163.666 351.537 163.366 352.737 163.366C354.589 163.366 356.09 164.018 357.239 165.321C358.388 166.616 358.962 168.335 358.962 170.479V170.8C358.962 172.147 358.701 173.36 358.178 174.44C357.663 175.512 356.934 176.34 355.991 176.923C355.048 177.506 353.972 177.797 352.763 177.797C350.919 177.797 349.419 177.15 348.261 175.855C347.112 174.552 346.538 172.828 346.538 170.685V170.376ZM348.081 170.8C348.081 172.464 348.51 173.831 349.367 174.903C350.233 175.967 351.365 176.498 352.763 176.498C354.152 176.498 355.275 175.967 356.133 174.903C356.999 173.831 357.432 172.421 357.432 170.672V170.376C357.432 169.313 357.235 168.339 356.84 167.456C356.446 166.573 355.893 165.891 355.181 165.411C354.469 164.922 353.655 164.678 352.737 164.678C351.365 164.678 350.246 165.218 349.38 166.299C348.514 167.37 348.081 168.777 348.081 170.517V170.8ZM371.104 175.778C370.178 177.124 368.699 177.797 366.667 177.797C365.183 177.797 364.056 177.369 363.284 176.511C362.512 175.645 362.118 174.367 362.101 172.678V163.623H363.631V172.485C363.631 175.135 364.703 176.46 366.847 176.46C369.076 176.46 370.487 175.538 371.078 173.694V163.623H372.622V177.54H371.13L371.104 175.778ZM383.066 164.935C382.74 164.875 382.393 164.845 382.024 164.845C381.064 164.845 380.249 165.115 379.58 165.656C378.92 166.187 378.448 166.963 378.165 167.984V177.54H376.635V163.623H378.14L378.165 165.836C378.98 164.189 380.288 163.366 382.088 163.366C382.517 163.366 382.856 163.422 383.104 163.533L383.066 164.935ZM400.249 174.003C400.249 173.24 399.941 172.627 399.323 172.164C398.715 171.701 397.793 171.341 396.558 171.083C395.323 170.817 394.363 170.517 393.677 170.183C393 169.84 392.494 169.424 392.159 168.935C391.833 168.447 391.67 167.855 391.67 167.16C391.67 166.063 392.129 165.158 393.047 164.446C393.964 163.726 395.139 163.366 396.571 163.366C398.123 163.366 399.366 163.752 400.301 164.524C401.244 165.287 401.716 166.286 401.716 167.521H400.172C400.172 166.706 399.829 166.029 399.143 165.488C398.466 164.948 397.608 164.678 396.571 164.678C395.559 164.678 394.744 164.905 394.127 165.36C393.518 165.806 393.214 166.389 393.214 167.109C393.214 167.803 393.467 168.344 393.973 168.73C394.487 169.107 395.418 169.454 396.764 169.771C398.119 170.089 399.13 170.427 399.799 170.787C400.477 171.148 400.978 171.581 401.304 172.087C401.63 172.592 401.793 173.206 401.793 173.926C401.793 175.101 401.317 176.039 400.365 176.743C399.422 177.446 398.187 177.797 396.661 177.797C395.04 177.797 393.724 177.407 392.712 176.627C391.709 175.838 391.207 174.843 391.207 173.643H392.751C392.811 174.543 393.188 175.246 393.883 175.752C394.586 176.25 395.512 176.498 396.661 176.498C397.733 176.498 398.599 176.262 399.259 175.791C399.919 175.319 400.249 174.723 400.249 174.003ZM410.655 177.797C409.472 177.797 408.4 177.506 407.439 176.923C406.488 176.34 405.746 175.529 405.214 174.492C404.683 173.446 404.417 172.275 404.417 170.98V170.427C404.417 169.09 404.674 167.885 405.188 166.813C405.712 165.741 406.436 164.901 407.362 164.292C408.288 163.675 409.291 163.366 410.372 163.366C412.061 163.366 413.399 163.945 414.385 165.102C415.379 166.251 415.877 167.825 415.877 169.823V170.685H405.947V170.98C405.947 172.558 406.397 173.874 407.298 174.929C408.207 175.975 409.347 176.498 410.719 176.498C411.542 176.498 412.267 176.348 412.893 176.048C413.527 175.748 414.102 175.268 414.616 174.607L415.581 175.341C414.449 176.978 412.807 177.797 410.655 177.797ZM410.372 164.678C409.214 164.678 408.237 165.102 407.439 165.951C406.65 166.8 406.17 167.941 405.999 169.373H414.346V169.205C414.303 167.868 413.922 166.779 413.202 165.938C412.481 165.098 411.538 164.678 410.372 164.678ZM425.305 164.935C424.979 164.875 424.632 164.845 424.263 164.845C423.302 164.845 422.488 165.115 421.819 165.656C421.159 166.187 420.687 166.963 420.404 167.984V177.54H418.874V163.623H420.379L420.404 165.836C421.219 164.189 422.526 163.366 424.327 163.366C424.756 163.366 425.095 163.422 425.343 163.533L425.305 164.935ZM432.314 175.418L436.546 163.623H438.128L432.932 177.54H431.684L426.462 163.623H428.044L432.314 175.418ZM445.871 177.797C444.688 177.797 443.616 177.506 442.656 176.923C441.704 176.34 440.962 175.529 440.43 174.492C439.899 173.446 439.633 172.275 439.633 170.98V170.427C439.633 169.09 439.89 167.885 440.405 166.813C440.928 165.741 441.652 164.901 442.578 164.292C443.504 163.675 444.508 163.366 445.588 163.366C447.277 163.366 448.615 163.945 449.601 165.102C450.596 166.251 451.093 167.825 451.093 169.823V170.685H441.164V170.98C441.164 172.558 441.614 173.874 442.514 174.929C443.423 175.975 444.563 176.498 445.935 176.498C446.759 176.498 447.483 176.348 448.109 176.048C448.744 175.748 449.318 175.268 449.833 174.607L450.797 175.341C449.665 176.978 448.023 177.797 445.871 177.797ZM445.588 164.678C444.43 164.678 443.453 165.102 442.656 165.951C441.867 166.8 441.386 167.941 441.215 169.373H449.562V169.205C449.52 167.868 449.138 166.779 448.418 165.938C447.697 165.098 446.754 164.678 445.588 164.678ZM460.521 164.935C460.195 164.875 459.848 164.845 459.479 164.845C458.519 164.845 457.704 165.115 457.035 165.656C456.375 166.187 455.903 166.963 455.62 167.984V177.54H454.09V163.623H455.595L455.62 165.836C456.435 164.189 457.743 163.366 459.543 163.366C459.972 163.366 460.311 163.422 460.559 163.533L460.521 164.935ZM332.84 205.003C332.84 204.24 332.531 203.627 331.913 203.164C331.305 202.701 330.383 202.341 329.148 202.083C327.913 201.817 326.953 201.517 326.267 201.183C325.59 200.84 325.084 200.424 324.749 199.935C324.424 199.447 324.261 198.855 324.261 198.16C324.261 197.063 324.719 196.158 325.637 195.446C326.554 194.726 327.729 194.366 329.161 194.366C330.713 194.366 331.956 194.752 332.891 195.524C333.834 196.287 334.306 197.286 334.306 198.521H332.762C332.762 197.706 332.419 197.029 331.733 196.488C331.056 195.948 330.199 195.678 329.161 195.678C328.149 195.678 327.335 195.905 326.717 196.36C326.108 196.806 325.804 197.389 325.804 198.109C325.804 198.803 326.057 199.344 326.563 199.73C327.077 200.107 328.008 200.454 329.354 200.771C330.709 201.089 331.721 201.427 332.389 201.787C333.067 202.148 333.568 202.581 333.894 203.087C334.22 203.592 334.383 204.206 334.383 204.926C334.383 206.101 333.907 207.039 332.955 207.743C332.012 208.446 330.777 208.797 329.251 208.797C327.63 208.797 326.314 208.407 325.302 207.627C324.299 206.838 323.798 205.843 323.798 204.643H325.341C325.401 205.543 325.778 206.246 326.473 206.752C327.176 207.25 328.102 207.498 329.251 207.498C330.323 207.498 331.189 207.262 331.849 206.791C332.509 206.319 332.84 205.723 332.84 205.003ZM346.641 208.54C346.486 208.103 346.388 207.455 346.345 206.598C345.804 207.301 345.114 207.845 344.274 208.231C343.442 208.609 342.559 208.797 341.624 208.797C340.287 208.797 339.202 208.424 338.37 207.678C337.547 206.932 337.135 205.989 337.135 204.849C337.135 203.494 337.697 202.422 338.82 201.633C339.952 200.844 341.526 200.45 343.541 200.45H346.332V198.868C346.332 197.873 346.023 197.093 345.406 196.527C344.797 195.952 343.905 195.665 342.73 195.665C341.659 195.665 340.771 195.94 340.068 196.488C339.365 197.037 339.013 197.697 339.013 198.469L337.47 198.456C337.47 197.35 337.984 196.394 339.013 195.588C340.042 194.773 341.307 194.366 342.808 194.366C344.36 194.366 345.582 194.756 346.473 195.537C347.374 196.308 347.837 197.389 347.862 198.778V205.363C347.862 206.709 348.004 207.717 348.287 208.386V208.54H346.641ZM341.804 207.434C342.833 207.434 343.751 207.185 344.557 206.688C345.371 206.191 345.963 205.526 346.332 204.694V201.633H343.579C342.044 201.65 340.844 201.933 339.978 202.482C339.112 203.022 338.679 203.768 338.679 204.72C338.679 205.5 338.966 206.148 339.541 206.662C340.124 207.177 340.878 207.434 341.804 207.434ZM353.084 208.54V195.884H350.782V194.623H353.084V192.938C353.084 191.515 353.445 190.422 354.165 189.659C354.894 188.895 355.905 188.514 357.2 188.514C357.783 188.514 358.328 188.587 358.834 188.733L358.718 190.019C358.289 189.916 357.822 189.864 357.316 189.864C356.467 189.864 355.807 190.13 355.335 190.662C354.864 191.185 354.628 191.931 354.628 192.9V194.623H357.946V195.884H354.628V208.54H353.084ZM365.779 208.797C364.596 208.797 363.524 208.506 362.564 207.923C361.612 207.34 360.87 206.529 360.339 205.492C359.807 204.446 359.541 203.275 359.541 201.98V201.427C359.541 200.09 359.798 198.885 360.313 197.813C360.836 196.741 361.56 195.901 362.487 195.292C363.413 194.675 364.416 194.366 365.496 194.366C367.185 194.366 368.523 194.945 369.509 196.102C370.504 197.251 371.001 198.825 371.001 200.823V201.685H361.072V201.98C361.072 203.558 361.522 204.874 362.422 205.929C363.331 206.975 364.472 207.498 365.844 207.498C366.667 207.498 367.391 207.348 368.017 207.048C368.652 206.748 369.226 206.268 369.741 205.607L370.705 206.341C369.574 207.978 367.931 208.797 365.779 208.797ZM365.496 195.678C364.339 195.678 363.361 196.102 362.564 196.951C361.775 197.8 361.295 198.941 361.123 200.373H369.471V200.205C369.428 198.868 369.046 197.779 368.326 196.938C367.606 196.098 366.662 195.678 365.496 195.678Z" fill="black"/>
-<path d="M103.965 120.342C101.103 117.273 96.2946 117.106 93.2258 119.968C90.1571 122.831 89.9899 127.639 92.8523 130.707L103.965 120.342ZM114.184 142.436L108.627 147.619C110.065 149.16 112.077 150.035 114.184 150.035C116.291 150.035 118.303 149.16 119.74 147.619L114.184 142.436ZM152.548 112.448C155.41 109.379 155.243 104.571 152.174 101.708C149.106 98.8458 144.297 99.013 141.435 102.082L152.548 112.448ZM92.8523 130.707L108.627 147.619L119.74 137.253L103.965 120.342L92.8523 130.707ZM119.74 147.619L152.548 112.448L141.435 102.082L108.627 137.253L119.74 147.619ZM177.459 125.034C177.459 158.366 152.376 184.47 122.529 184.47V199.667C161.748 199.667 192.656 165.746 192.656 125.034H177.459ZM122.529 184.47C92.6808 184.47 67.5985 158.366 67.5985 125.034H52.4015C52.4015 165.746 83.3092 199.667 122.529 199.667V184.47ZM67.5985 125.034C67.5985 91.7022 92.6808 65.5985 122.529 65.5985V50.4015C83.3092 50.4015 52.4015 84.3224 52.4015 125.034H67.5985ZM122.529 65.5985C152.376 65.5985 177.459 91.7022 177.459 125.034H192.656C192.656 84.3224 161.748 50.4015 122.529 50.4015V65.5985Z" fill="url(#paint1_linear)"/>
-<path d="M103.965 120.342C101.103 117.273 96.2946 117.106 93.2258 119.968C90.1571 122.831 89.9899 127.639 92.8523 130.707L103.965 120.342ZM114.184 142.436L108.627 147.619C110.065 149.16 112.077 150.035 114.184 150.035C116.291 150.035 118.303 149.16 119.74 147.619L114.184 142.436ZM152.548 112.448C155.41 109.379 155.243 104.571 152.174 101.708C149.106 98.8458 144.297 99.013 141.435 102.082L152.548 112.448ZM92.8523 130.707L108.627 147.619L119.74 137.253L103.965 120.342L92.8523 130.707ZM119.74 147.619L152.548 112.448L141.435 102.082L108.627 137.253L119.74 147.619ZM177.459 125.034C177.459 158.366 152.376 184.47 122.529 184.47V199.667C161.748 199.667 192.656 165.746 192.656 125.034H177.459ZM122.529 184.47C92.6808 184.47 67.5985 158.366 67.5985 125.034H52.4015C52.4015 165.746 83.3092 199.667 122.529 199.667V184.47ZM67.5985 125.034C67.5985 91.7022 92.6808 65.5985 122.529 65.5985V50.4015C83.3092 50.4015 52.4015 84.3224 52.4015 125.034H67.5985ZM122.529 65.5985C152.376 65.5985 177.459 91.7022 177.459 125.034H192.656C192.656 84.3224 161.748 50.4015 122.529 50.4015V65.5985Z" fill="black" fill-opacity="0.15"/>
-<path d="M249.224 69.8102C248.815 74.1326 247.22 77.5089 244.437 79.9391C241.655 82.3507 237.954 83.5565 233.335 83.5565C230.107 83.5565 227.259 82.7959 224.792 81.2748C222.343 79.735 220.451 77.5553 219.115 74.7355C217.78 71.9158 217.084 68.6415 217.028 64.9128V61.1284C217.028 57.3069 217.705 53.9399 219.06 51.0274C220.414 48.1148 222.352 45.8702 224.875 44.2933C227.417 42.7165 230.348 41.9281 233.669 41.9281C238.139 41.9281 241.738 43.1432 244.465 45.5734C247.192 48.0035 248.778 51.4355 249.224 55.8692H242.211C241.877 52.9567 241.024 50.8604 239.651 49.5804C238.297 48.2818 236.303 47.6325 233.669 47.6325C230.608 47.6325 228.252 48.7549 226.601 50.9995C224.968 53.2256 224.133 56.4999 224.096 60.8223V64.4119C224.096 68.7899 224.875 72.1291 226.434 74.4294C228.01 76.7298 230.311 77.8799 233.335 77.8799C236.099 77.8799 238.176 77.2585 239.568 76.0155C240.959 74.7726 241.84 72.7042 242.211 69.8102H249.224ZM278.219 73.5668H262.525L259.241 83H251.923L267.227 42.4846H273.544L288.876 83H281.53L278.219 73.5668ZM264.5 67.8902H276.243L270.372 51.083L264.5 67.8902ZM300.536 67.9459V83H293.496V42.4846H308.995C313.521 42.4846 317.111 43.6626 319.764 46.0186C322.435 48.3746 323.771 51.4911 323.771 55.3683C323.771 59.3382 322.463 62.4269 319.847 64.6345C317.25 66.8421 313.605 67.9459 308.911 67.9459H300.536ZM300.536 62.2971H308.995C311.499 62.2971 313.41 61.7127 314.727 60.544C316.044 59.3568 316.703 57.6501 316.703 55.4239C316.703 53.2349 316.035 51.4911 314.699 50.1926C313.364 48.8754 311.527 48.1983 309.19 48.1612H300.536V62.2971ZM359.222 48.1612H346.588V83H339.604V48.1612H327.082V42.4846H359.222V48.1612ZM394.7 69.8102C394.292 74.1326 392.697 77.5089 389.914 79.9391C387.132 82.3507 383.431 83.5565 378.812 83.5565C375.584 83.5565 372.736 82.7959 370.269 81.2748C367.82 79.735 365.928 77.5553 364.592 74.7355C363.257 71.9158 362.561 68.6415 362.505 64.9128V61.1284C362.505 57.3069 363.182 53.9399 364.537 51.0274C365.891 48.1148 367.829 45.8702 370.352 44.2933C372.894 42.7165 375.825 41.9281 379.145 41.9281C383.616 41.9281 387.215 43.1432 389.942 45.5734C392.669 48.0035 394.255 51.4355 394.7 55.8692H387.688C387.354 52.9567 386.501 50.8604 385.128 49.5804C383.774 48.2818 381.78 47.6325 379.145 47.6325C376.085 47.6325 373.729 48.7549 372.078 50.9995C370.445 53.2256 369.61 56.4999 369.573 60.8223V64.4119C369.573 68.7899 370.352 72.1291 371.911 74.4294C373.487 76.7298 375.788 77.8799 378.812 77.8799C381.576 77.8799 383.653 77.2585 385.045 76.0155C386.436 74.7726 387.317 72.7042 387.688 69.8102H394.7ZM433.185 83H426.172V64.9963H408.057V83H401.017V42.4846H408.057V59.3475H426.172V42.4846H433.185V83ZM464.712 73.5668H449.018L445.734 83H438.416L453.72 42.4846H460.037L475.37 83H468.023L464.712 73.5668ZM450.993 67.8902H462.736L456.865 51.083L450.993 67.8902ZM231.399 134.159L240.551 105.986H247.427L234.466 142H228.406L215.495 105.986H222.346L231.399 134.159ZM261.625 142.495C257.816 142.495 254.724 141.299 252.349 138.908C249.991 136.501 248.812 133.302 248.812 129.311V128.569C248.812 125.898 249.324 123.515 250.346 121.421C251.385 119.31 252.836 117.669 254.699 116.499C256.563 115.328 258.64 114.742 260.932 114.742C264.577 114.742 267.388 115.905 269.367 118.23C271.362 120.555 272.36 123.845 272.36 128.099V130.523H254.872C255.054 132.733 255.787 134.481 257.074 135.767C258.376 137.053 260.009 137.696 261.971 137.696C264.725 137.696 266.968 136.583 268.699 134.357L271.939 137.449C270.867 139.048 269.433 140.293 267.635 141.184C265.855 142.058 263.851 142.495 261.625 142.495ZM260.908 119.566C259.259 119.566 257.923 120.143 256.901 121.297C255.895 122.451 255.252 124.059 254.971 126.12H266.423V125.675C266.291 123.663 265.756 122.146 264.816 121.124C263.876 120.085 262.573 119.566 260.908 119.566ZM291.059 120.728C290.268 120.596 289.451 120.53 288.61 120.53C285.857 120.53 284.002 121.586 283.045 123.696V142H277.035V115.237H282.773L282.921 118.23C284.373 115.905 286.384 114.742 288.957 114.742C289.814 114.742 290.523 114.858 291.084 115.089L291.059 120.728ZM301.25 142H295.239V115.237H301.25V142ZM294.868 108.287C294.868 107.363 295.157 106.596 295.734 105.986C296.328 105.376 297.169 105.071 298.257 105.071C299.345 105.071 300.186 105.376 300.78 105.986C301.373 106.596 301.67 107.363 301.67 108.287C301.67 109.194 301.373 109.952 300.78 110.562C300.186 111.156 299.345 111.453 298.257 111.453C297.169 111.453 296.328 111.156 295.734 110.562C295.157 109.952 294.868 109.194 294.868 108.287ZM309.412 142V119.689H305.331V115.237H309.412V113.407C309.429 111.313 309.874 109.515 310.748 108.015C311.622 106.514 312.859 105.384 314.458 104.626C316.058 103.867 317.979 103.488 320.221 103.488C321.54 103.488 322.802 103.628 324.006 103.909C325.226 104.189 326.487 104.543 327.79 104.972L326.875 109.944C324.599 109.152 322.522 108.757 320.642 108.757C318.811 108.757 317.484 109.161 316.66 109.969C315.835 110.76 315.423 111.956 315.423 113.555V115.237H320.691V119.689H315.423V142H309.412ZM330.635 142H324.624V115.237H330.635V142ZM348.295 137.696C349.796 137.696 351.041 137.259 352.03 136.385C353.019 135.511 353.547 134.431 353.613 133.145H359.277C359.211 134.81 358.692 136.369 357.719 137.82C356.746 139.254 355.427 140.392 353.762 141.233C352.096 142.074 350.299 142.495 348.369 142.495C344.626 142.495 341.658 141.283 339.465 138.859C337.272 136.435 336.175 133.087 336.175 128.816V128.198C336.175 124.125 337.263 120.868 339.44 118.428C341.617 115.971 344.585 114.742 348.345 114.742C351.527 114.742 354.116 115.674 356.111 117.537C358.123 119.384 359.178 121.817 359.277 124.834H353.613C353.547 123.301 353.019 122.039 352.03 121.05C351.057 120.06 349.812 119.566 348.295 119.566C346.349 119.566 344.849 120.275 343.793 121.693C342.738 123.094 342.202 125.23 342.186 128.099V129.064C342.186 131.966 342.705 134.134 343.744 135.569C344.799 136.987 346.316 137.696 348.295 137.696ZM379.807 142C379.543 141.489 379.312 140.656 379.115 139.502C377.202 141.497 374.86 142.495 372.09 142.495C369.402 142.495 367.209 141.728 365.51 140.194C363.812 138.661 362.963 136.764 362.963 134.505C362.963 131.653 364.018 129.468 366.129 127.951C368.256 126.417 371.29 125.65 375.231 125.65H378.917V123.894C378.917 122.509 378.529 121.404 377.754 120.58C376.979 119.739 375.8 119.318 374.217 119.318C372.848 119.318 371.727 119.665 370.853 120.357C369.979 121.033 369.542 121.899 369.542 122.954H363.532C363.532 121.487 364.018 120.118 364.991 118.848C365.964 117.562 367.283 116.556 368.949 115.831C370.631 115.105 372.502 114.742 374.563 114.742C377.696 114.742 380.195 115.534 382.058 117.117C383.921 118.683 384.878 120.893 384.927 123.746V135.816C384.927 138.224 385.265 140.145 385.941 141.58V142H379.807ZM373.203 137.671C374.39 137.671 375.503 137.383 376.542 136.806C377.597 136.229 378.389 135.454 378.917 134.481V129.435H375.676C373.45 129.435 371.777 129.822 370.655 130.597C369.534 131.372 368.973 132.469 368.973 133.887C368.973 135.041 369.353 135.965 370.111 136.657C370.886 137.333 371.917 137.671 373.203 137.671ZM398.754 108.732V115.237H403.478V119.689H398.754V134.629C398.754 135.651 398.952 136.393 399.348 136.855C399.76 137.3 400.485 137.523 401.524 137.523C402.217 137.523 402.918 137.441 403.627 137.276V141.926C402.258 142.305 400.939 142.495 399.669 142.495C395.052 142.495 392.743 139.947 392.743 134.852V119.689H388.341V115.237H392.743V108.732H398.754ZM414.485 142H408.475V115.237H414.485V142ZM408.104 108.287C408.104 107.363 408.392 106.596 408.969 105.986C409.563 105.376 410.404 105.071 411.492 105.071C412.581 105.071 413.422 105.376 414.015 105.986C414.609 106.596 414.906 107.363 414.906 108.287C414.906 109.194 414.609 109.952 414.015 110.562C413.422 111.156 412.581 111.453 411.492 111.453C410.404 111.453 409.563 111.156 408.969 110.562C408.392 109.952 408.104 109.194 408.104 108.287ZM419.927 128.371C419.927 125.749 420.446 123.391 421.485 121.297C422.524 119.186 423.983 117.57 425.863 116.449C427.743 115.311 429.903 114.742 432.344 114.742C435.955 114.742 438.882 115.905 441.124 118.23C443.383 120.555 444.604 123.639 444.785 127.481L444.81 128.891C444.81 131.529 444.299 133.887 443.276 135.965C442.27 138.042 440.819 139.65 438.923 140.788C437.043 141.926 434.866 142.495 432.393 142.495C428.617 142.495 425.591 141.241 423.315 138.735C421.056 136.212 419.927 132.856 419.927 128.668V128.371ZM425.937 128.891C425.937 131.644 426.506 133.805 427.644 135.371C428.782 136.921 430.365 137.696 432.393 137.696C434.421 137.696 435.996 136.905 437.117 135.322C438.255 133.739 438.824 131.422 438.824 128.371C438.824 125.667 438.239 123.523 437.068 121.94C435.914 120.357 434.339 119.566 432.344 119.566C430.381 119.566 428.823 120.349 427.669 121.915C426.514 123.465 425.937 125.791 425.937 128.891ZM455.47 115.237L455.644 118.329C457.622 115.938 460.22 114.742 463.435 114.742C469.009 114.742 471.845 117.933 471.944 124.315V142H465.933V124.661C465.933 122.963 465.562 121.709 464.82 120.901C464.095 120.077 462.899 119.665 461.234 119.665C458.81 119.665 457.004 120.761 455.817 122.954V142H449.806V115.237H455.47Z" fill="url(#paint2_linear)"/>
-<path d="M249.224 69.8102C248.815 74.1326 247.22 77.5089 244.437 79.9391C241.655 82.3507 237.954 83.5565 233.335 83.5565C230.107 83.5565 227.259 82.7959 224.792 81.2748C222.343 79.735 220.451 77.5553 219.115 74.7355C217.78 71.9158 217.084 68.6415 217.028 64.9128V61.1284C217.028 57.3069 217.705 53.9399 219.06 51.0274C220.414 48.1148 222.352 45.8702 224.875 44.2933C227.417 42.7165 230.348 41.9281 233.669 41.9281C238.139 41.9281 241.738 43.1432 244.465 45.5734C247.192 48.0035 248.778 51.4355 249.224 55.8692H242.211C241.877 52.9567 241.024 50.8604 239.651 49.5804C238.297 48.2818 236.303 47.6325 233.669 47.6325C230.608 47.6325 228.252 48.7549 226.601 50.9995C224.968 53.2256 224.133 56.4999 224.096 60.8223V64.4119C224.096 68.7899 224.875 72.1291 226.434 74.4294C228.01 76.7298 230.311 77.8799 233.335 77.8799C236.099 77.8799 238.176 77.2585 239.568 76.0155C240.959 74.7726 241.84 72.7042 242.211 69.8102H249.224ZM278.219 73.5668H262.525L259.241 83H251.923L267.227 42.4846H273.544L288.876 83H281.53L278.219 73.5668ZM264.5 67.8902H276.243L270.372 51.083L264.5 67.8902ZM300.536 67.9459V83H293.496V42.4846H308.995C313.521 42.4846 317.111 43.6626 319.764 46.0186C322.435 48.3746 323.771 51.4911 323.771 55.3683C323.771 59.3382 322.463 62.4269 319.847 64.6345C317.25 66.8421 313.605 67.9459 308.911 67.9459H300.536ZM300.536 62.2971H308.995C311.499 62.2971 313.41 61.7127 314.727 60.544C316.044 59.3568 316.703 57.6501 316.703 55.4239C316.703 53.2349 316.035 51.4911 314.699 50.1926C313.364 48.8754 311.527 48.1983 309.19 48.1612H300.536V62.2971ZM359.222 48.1612H346.588V83H339.604V48.1612H327.082V42.4846H359.222V48.1612ZM394.7 69.8102C394.292 74.1326 392.697 77.5089 389.914 79.9391C387.132 82.3507 383.431 83.5565 378.812 83.5565C375.584 83.5565 372.736 82.7959 370.269 81.2748C367.82 79.735 365.928 77.5553 364.592 74.7355C363.257 71.9158 362.561 68.6415 362.505 64.9128V61.1284C362.505 57.3069 363.182 53.9399 364.537 51.0274C365.891 48.1148 367.829 45.8702 370.352 44.2933C372.894 42.7165 375.825 41.9281 379.145 41.9281C383.616 41.9281 387.215 43.1432 389.942 45.5734C392.669 48.0035 394.255 51.4355 394.7 55.8692H387.688C387.354 52.9567 386.501 50.8604 385.128 49.5804C383.774 48.2818 381.78 47.6325 379.145 47.6325C376.085 47.6325 373.729 48.7549 372.078 50.9995C370.445 53.2256 369.61 56.4999 369.573 60.8223V64.4119C369.573 68.7899 370.352 72.1291 371.911 74.4294C373.487 76.7298 375.788 77.8799 378.812 77.8799C381.576 77.8799 383.653 77.2585 385.045 76.0155C386.436 74.7726 387.317 72.7042 387.688 69.8102H394.7ZM433.185 83H426.172V64.9963H408.057V83H401.017V42.4846H408.057V59.3475H426.172V42.4846H433.185V83ZM464.712 73.5668H449.018L445.734 83H438.416L453.72 42.4846H460.037L475.37 83H468.023L464.712 73.5668ZM450.993 67.8902H462.736L456.865 51.083L450.993 67.8902ZM231.399 134.159L240.551 105.986H247.427L234.466 142H228.406L215.495 105.986H222.346L231.399 134.159ZM261.625 142.495C257.816 142.495 254.724 141.299 252.349 138.908C249.991 136.501 248.812 133.302 248.812 129.311V128.569C248.812 125.898 249.324 123.515 250.346 121.421C251.385 119.31 252.836 117.669 254.699 116.499C256.563 115.328 258.64 114.742 260.932 114.742C264.577 114.742 267.388 115.905 269.367 118.23C271.362 120.555 272.36 123.845 272.36 128.099V130.523H254.872C255.054 132.733 255.787 134.481 257.074 135.767C258.376 137.053 260.009 137.696 261.971 137.696C264.725 137.696 266.968 136.583 268.699 134.357L271.939 137.449C270.867 139.048 269.433 140.293 267.635 141.184C265.855 142.058 263.851 142.495 261.625 142.495ZM260.908 119.566C259.259 119.566 257.923 120.143 256.901 121.297C255.895 122.451 255.252 124.059 254.971 126.12H266.423V125.675C266.291 123.663 265.756 122.146 264.816 121.124C263.876 120.085 262.573 119.566 260.908 119.566ZM291.059 120.728C290.268 120.596 289.451 120.53 288.61 120.53C285.857 120.53 284.002 121.586 283.045 123.696V142H277.035V115.237H282.773L282.921 118.23C284.373 115.905 286.384 114.742 288.957 114.742C289.814 114.742 290.523 114.858 291.084 115.089L291.059 120.728ZM301.25 142H295.239V115.237H301.25V142ZM294.868 108.287C294.868 107.363 295.157 106.596 295.734 105.986C296.328 105.376 297.169 105.071 298.257 105.071C299.345 105.071 300.186 105.376 300.78 105.986C301.373 106.596 301.67 107.363 301.67 108.287C301.67 109.194 301.373 109.952 300.78 110.562C300.186 111.156 299.345 111.453 298.257 111.453C297.169 111.453 296.328 111.156 295.734 110.562C295.157 109.952 294.868 109.194 294.868 108.287ZM309.412 142V119.689H305.331V115.237H309.412V113.407C309.429 111.313 309.874 109.515 310.748 108.015C311.622 106.514 312.859 105.384 314.458 104.626C316.058 103.867 317.979 103.488 320.221 103.488C321.54 103.488 322.802 103.628 324.006 103.909C325.226 104.189 326.487 104.543 327.79 104.972L326.875 109.944C324.599 109.152 322.522 108.757 320.642 108.757C318.811 108.757 317.484 109.161 316.66 109.969C315.835 110.76 315.423 111.956 315.423 113.555V115.237H320.691V119.689H315.423V142H309.412ZM330.635 142H324.624V115.237H330.635V142ZM348.295 137.696C349.796 137.696 351.041 137.259 352.03 136.385C353.019 135.511 353.547 134.431 353.613 133.145H359.277C359.211 134.81 358.692 136.369 357.719 137.82C356.746 139.254 355.427 140.392 353.762 141.233C352.096 142.074 350.299 142.495 348.369 142.495C344.626 142.495 341.658 141.283 339.465 138.859C337.272 136.435 336.175 133.087 336.175 128.816V128.198C336.175 124.125 337.263 120.868 339.44 118.428C341.617 115.971 344.585 114.742 348.345 114.742C351.527 114.742 354.116 115.674 356.111 117.537C358.123 119.384 359.178 121.817 359.277 124.834H353.613C353.547 123.301 353.019 122.039 352.03 121.05C351.057 120.06 349.812 119.566 348.295 119.566C346.349 119.566 344.849 120.275 343.793 121.693C342.738 123.094 342.202 125.23 342.186 128.099V129.064C342.186 131.966 342.705 134.134 343.744 135.569C344.799 136.987 346.316 137.696 348.295 137.696ZM379.807 142C379.543 141.489 379.312 140.656 379.115 139.502C377.202 141.497 374.86 142.495 372.09 142.495C369.402 142.495 367.209 141.728 365.51 140.194C363.812 138.661 362.963 136.764 362.963 134.505C362.963 131.653 364.018 129.468 366.129 127.951C368.256 126.417 371.29 125.65 375.231 125.65H378.917V123.894C378.917 122.509 378.529 121.404 377.754 120.58C376.979 119.739 375.8 119.318 374.217 119.318C372.848 119.318 371.727 119.665 370.853 120.357C369.979 121.033 369.542 121.899 369.542 122.954H363.532C363.532 121.487 364.018 120.118 364.991 118.848C365.964 117.562 367.283 116.556 368.949 115.831C370.631 115.105 372.502 114.742 374.563 114.742C377.696 114.742 380.195 115.534 382.058 117.117C383.921 118.683 384.878 120.893 384.927 123.746V135.816C384.927 138.224 385.265 140.145 385.941 141.58V142H379.807ZM373.203 137.671C374.39 137.671 375.503 137.383 376.542 136.806C377.597 136.229 378.389 135.454 378.917 134.481V129.435H375.676C373.45 129.435 371.777 129.822 370.655 130.597C369.534 131.372 368.973 132.469 368.973 133.887C368.973 135.041 369.353 135.965 370.111 136.657C370.886 137.333 371.917 137.671 373.203 137.671ZM398.754 108.732V115.237H403.478V119.689H398.754V134.629C398.754 135.651 398.952 136.393 399.348 136.855C399.76 137.3 400.485 137.523 401.524 137.523C402.217 137.523 402.918 137.441 403.627 137.276V141.926C402.258 142.305 400.939 142.495 399.669 142.495C395.052 142.495 392.743 139.947 392.743 134.852V119.689H388.341V115.237H392.743V108.732H398.754ZM414.485 142H408.475V115.237H414.485V142ZM408.104 108.287C408.104 107.363 408.392 106.596 408.969 105.986C409.563 105.376 410.404 105.071 411.492 105.071C412.581 105.071 413.422 105.376 414.015 105.986C414.609 106.596 414.906 107.363 414.906 108.287C414.906 109.194 414.609 109.952 414.015 110.562C413.422 111.156 412.581 111.453 411.492 111.453C410.404 111.453 409.563 111.156 408.969 110.562C408.392 109.952 408.104 109.194 408.104 108.287ZM419.927 128.371C419.927 125.749 420.446 123.391 421.485 121.297C422.524 119.186 423.983 117.57 425.863 116.449C427.743 115.311 429.903 114.742 432.344 114.742C435.955 114.742 438.882 115.905 441.124 118.23C443.383 120.555 444.604 123.639 444.785 127.481L444.81 128.891C444.81 131.529 444.299 133.887 443.276 135.965C442.27 138.042 440.819 139.65 438.923 140.788C437.043 141.926 434.866 142.495 432.393 142.495C428.617 142.495 425.591 141.241 423.315 138.735C421.056 136.212 419.927 132.856 419.927 128.668V128.371ZM425.937 128.891C425.937 131.644 426.506 133.805 427.644 135.371C428.782 136.921 430.365 137.696 432.393 137.696C434.421 137.696 435.996 136.905 437.117 135.322C438.255 133.739 438.824 131.422 438.824 128.371C438.824 125.667 438.239 123.523 437.068 121.94C435.914 120.357 434.339 119.566 432.344 119.566C430.381 119.566 428.823 120.349 427.669 121.915C426.514 123.465 425.937 125.791 425.937 128.891ZM455.47 115.237L455.644 118.329C457.622 115.938 460.22 114.742 463.435 114.742C469.009 114.742 471.845 117.933 471.944 124.315V142H465.933V124.661C465.933 122.963 465.562 121.709 464.82 120.901C464.095 120.077 462.899 119.665 461.234 119.665C458.81 119.665 457.004 120.761 455.817 122.954V142H449.806V115.237H455.47Z" fill="black" fill-opacity="0.15"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="549.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="512.876" y2="251.156" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="122.529" y1="58" x2="122.529" y2="192.069" gradientUnits="userSpaceOnUse">
-<stop stop-color="#68D49F"/>
-<stop offset="1" stop-color="#65CC76"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="345.03" y1="25" x2="345.03" y2="159.314" gradientUnits="userSpaceOnUse">
-<stop stop-color="#68D49F"/>
-<stop offset="1" stop-color="#65CC76"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Developed.svg b/public/Features/RSM/Developed.svg
deleted file mode 100644
index a816951..0000000
--- a/public/Features/RSM/Developed.svg
+++ /dev/null
@@ -1,46 +0,0 @@
-<svg width="550" height="250" viewBox="0 0 550 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="500" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M131.733 130.465L205.609 157.322V178.128L109.075 137.896V122.397L205.609 82.2714V103.077L131.733 130.465Z" fill="url(#paint1_linear)" fill-opacity="0.25"/>
-<path d="M244.435 212.097H225.671L297.422 44.2686H316.068L244.435 212.097Z" fill="url(#paint2_linear)" fill-opacity="0.25"/>
-<path d="M416.969 129.828L338.963 102.334V82.1653L439.745 122.291V137.79L338.963 178.022V157.64L416.969 129.828Z" fill="url(#paint3_linear)" fill-opacity="0.25"/>
-<path d="M111.549 50.3291L117.273 40.1166H119.099L112.334 51.7954V58.8438H110.752V51.7954L103.999 40.1166H105.877L111.549 50.3291ZM119.768 51.6796C119.768 50.342 120.025 49.1372 120.54 48.0654C121.063 46.9935 121.796 46.1618 122.739 45.5701C123.691 44.9699 124.767 44.6698 125.968 44.6698C127.82 44.6698 129.32 45.3215 130.469 46.6248C131.618 47.9196 132.193 49.6388 132.193 51.7825V52.104C132.193 53.4503 131.931 54.6636 131.408 55.744C130.894 56.8158 130.165 57.6433 129.222 58.2264C128.279 58.8095 127.202 59.101 125.993 59.101C124.15 59.101 122.649 58.4536 121.492 57.1588C120.343 55.8555 119.768 54.132 119.768 51.9883V51.6796ZM121.312 52.104C121.312 53.7675 121.74 55.1352 122.598 56.207C123.464 57.2703 124.596 57.8019 125.993 57.8019C127.382 57.8019 128.506 57.2703 129.363 56.207C130.229 55.1352 130.662 53.7247 130.662 51.9754V51.6796C130.662 50.6163 130.465 49.6431 130.071 48.7599C129.676 47.8767 129.123 47.195 128.411 46.7149C127.7 46.2261 126.885 45.9817 125.968 45.9817C124.596 45.9817 123.477 46.5219 122.611 47.6023C121.745 48.6742 121.312 50.0804 121.312 51.8211V52.104ZM144.335 57.0817C143.409 58.4279 141.929 59.101 139.897 59.101C138.414 59.101 137.286 58.6723 136.515 57.8148C135.743 56.9487 135.348 55.6711 135.331 53.9819V44.927H136.862V53.789C136.862 56.4386 137.934 57.7633 140.077 57.7633C142.307 57.7633 143.717 56.8416 144.309 54.998V44.927H145.852V58.8438H144.36L144.335 57.0817ZM149.569 44.7084L148.656 44.0396C149.428 43.002 149.827 41.913 149.852 40.7726V39.0877H151.37V40.3867C151.37 42.1789 150.77 43.6194 149.569 44.7084ZM160.978 46.239C160.652 46.1789 160.305 46.1489 159.936 46.1489C158.976 46.1489 158.161 46.419 157.492 46.9592C156.832 47.4909 156.361 48.2669 156.078 49.2873V58.8438H154.547V44.927H156.052L156.078 47.1393C156.892 45.493 158.2 44.6698 160.001 44.6698C160.429 44.6698 160.768 44.7255 161.017 44.837L160.978 46.239ZM168.554 59.101C167.371 59.101 166.299 58.8095 165.338 58.2264C164.387 57.6433 163.645 56.833 163.113 55.7954C162.582 54.7493 162.316 53.5789 162.316 52.2841V51.731C162.316 50.3934 162.573 49.1887 163.087 48.1168C163.611 47.045 164.335 46.2047 165.261 45.5959C166.187 44.9785 167.19 44.6698 168.271 44.6698C169.96 44.6698 171.298 45.2486 172.284 46.4062C173.278 47.5552 173.776 49.1286 173.776 51.1265V51.9883H163.846V52.2841C163.846 53.8619 164.296 55.1781 165.197 56.2328C166.106 57.2789 167.246 57.8019 168.618 57.8019C169.441 57.8019 170.166 57.6519 170.792 57.3518C171.426 57.0516 172.001 56.5715 172.515 55.9112L173.48 56.6443C172.348 58.2821 170.706 59.101 168.554 59.101ZM168.271 45.9817C167.113 45.9817 166.136 46.4062 165.338 47.2551C164.549 48.104 164.069 49.2444 163.898 50.6764H172.245V50.5092C172.202 49.1715 171.821 48.0825 171.1 47.2422C170.38 46.4019 169.437 45.9817 168.271 45.9817ZM191.963 58.8438C191.808 58.4064 191.71 57.7591 191.667 56.9016C191.127 57.6047 190.436 58.1492 189.596 58.5351C188.764 58.9123 187.881 59.101 186.947 59.101C185.609 59.101 184.524 58.728 183.692 57.982C182.869 57.236 182.458 56.2928 182.458 55.1523C182.458 53.7975 183.019 52.7257 184.143 51.9368C185.274 51.148 186.848 50.7535 188.863 50.7535H191.654V49.1715C191.654 48.1768 191.345 47.3965 190.728 46.8306C190.119 46.2561 189.227 45.9689 188.053 45.9689C186.981 45.9689 186.093 46.2433 185.39 46.792C184.687 47.3408 184.336 48.0011 184.336 48.7728L182.792 48.7599C182.792 47.6538 183.307 46.6977 184.336 45.8917C185.364 45.0771 186.629 44.6698 188.13 44.6698C189.682 44.6698 190.904 45.0599 191.795 45.8402C192.696 46.612 193.159 47.6924 193.185 49.0815V55.6668C193.185 57.0131 193.326 58.0206 193.609 58.6894V58.8438H191.963ZM187.127 57.7376C188.156 57.7376 189.073 57.4889 189.879 56.9916C190.694 56.4943 191.285 55.8297 191.654 54.998V51.9368H188.902C187.367 51.954 186.166 52.237 185.3 52.7857C184.434 53.3259 184.001 54.0719 184.001 55.0237C184.001 55.804 184.288 56.4514 184.863 56.9659C185.446 57.4804 186.201 57.7376 187.127 57.7376ZM199.024 58.8438H197.481V39.0877H199.024V58.8438ZM206.548 55.6411L206.78 56.8373L207.088 55.5768L210.433 44.927H211.745L215.05 55.4868L215.41 56.953L215.706 55.6025L218.561 44.927H220.156L216.105 58.8438H214.793L211.217 47.8081L211.05 47.0493L210.883 47.821L207.371 58.8438H206.059L202.021 44.927H203.603L206.548 55.6411ZM231.861 58.8438C231.706 58.4064 231.608 57.7591 231.565 56.9016C231.025 57.6047 230.334 58.1492 229.494 58.5351C228.662 58.9123 227.779 59.101 226.845 59.101C225.507 59.101 224.422 58.728 223.59 57.982C222.767 57.236 222.356 56.2928 222.356 55.1523C222.356 53.7975 222.917 52.7257 224.041 51.9368C225.172 51.148 226.746 50.7535 228.761 50.7535H231.552V49.1715C231.552 48.1768 231.243 47.3965 230.626 46.8306C230.017 46.2561 229.125 45.9689 227.951 45.9689C226.879 45.9689 225.991 46.2433 225.288 46.792C224.585 47.3408 224.234 48.0011 224.234 48.7728L222.69 48.7599C222.69 47.6538 223.205 46.6977 224.234 45.8917C225.262 45.0771 226.527 44.6698 228.028 44.6698C229.58 44.6698 230.802 45.0599 231.693 45.8402C232.594 46.612 233.057 47.6924 233.083 49.0815V55.6668C233.083 57.0131 233.224 58.0206 233.507 58.6894V58.8438H231.861ZM227.025 57.7376C228.054 57.7376 228.971 57.4889 229.777 56.9916C230.592 56.4943 231.183 55.8297 231.552 54.998V51.9368H228.8C227.265 51.954 226.064 52.237 225.198 52.7857C224.332 53.3259 223.899 54.0719 223.899 55.0237C223.899 55.804 224.186 56.4514 224.761 56.9659C225.344 57.4804 226.099 57.7376 227.025 57.7376ZM241.404 56.6315L245.469 44.927H247.128L241.186 61.2104L240.877 61.9306C240.114 63.6198 238.935 64.4645 237.34 64.4645C236.971 64.4645 236.577 64.4044 236.157 64.2844L236.144 63.011L236.941 63.0882C237.696 63.0882 238.305 62.8996 238.768 62.5223C239.239 62.1536 239.638 61.5148 239.964 60.6058L240.645 58.728L235.398 44.927H237.083L241.404 56.6315ZM257.855 55.3067C257.855 54.5435 257.546 53.9305 256.929 53.4674C256.32 53.0044 255.398 52.6443 254.163 52.387C252.929 52.1212 251.968 51.8211 251.282 51.4867C250.605 51.1437 250.099 50.7278 249.765 50.2391C249.439 49.7503 249.276 49.1586 249.276 48.4641C249.276 47.3665 249.735 46.4619 250.652 45.7502C251.57 45.0299 252.744 44.6698 254.176 44.6698C255.728 44.6698 256.972 45.0557 257.906 45.8274C258.85 46.5905 259.321 47.5895 259.321 48.8242H257.778C257.778 48.0096 257.435 47.3322 256.749 46.792C256.071 46.2518 255.214 45.9817 254.176 45.9817C253.165 45.9817 252.35 46.209 251.733 46.6634C251.124 47.1093 250.819 47.6924 250.819 48.4126C250.819 49.1072 251.072 49.6474 251.578 50.0333C252.093 50.4105 253.023 50.7578 254.369 51.0751C255.724 51.3923 256.736 51.731 257.405 52.0912C258.082 52.4513 258.584 52.8843 258.91 53.3903C259.235 53.8962 259.398 54.5092 259.398 55.2295C259.398 56.4043 258.922 57.3432 257.971 58.0463C257.027 58.7494 255.793 59.101 254.266 59.101C252.646 59.101 251.33 58.7108 250.318 57.9305C249.314 57.1417 248.813 56.147 248.813 54.9466H250.356C250.416 55.8469 250.794 56.55 251.488 57.0559C252.191 57.5533 253.117 57.8019 254.266 57.8019C255.338 57.8019 256.204 57.5661 256.864 57.0945C257.525 56.6229 257.855 56.027 257.855 55.3067ZM268.659 51.7568C268.659 49.5788 269.139 47.8553 270.1 46.5862C271.068 45.3086 272.38 44.6698 274.035 44.6698C275.93 44.6698 277.371 45.4244 278.357 46.9335L278.434 44.927H279.875V58.5608C279.875 60.3529 279.373 61.772 278.37 62.8181C277.367 63.8642 276.007 64.3873 274.293 64.3873C273.324 64.3873 272.398 64.1686 271.514 63.7313C270.64 63.3026 269.949 62.7281 269.444 62.0078L270.305 61.0817C271.394 62.4194 272.689 63.0882 274.19 63.0882C275.476 63.0882 276.479 62.7066 277.199 61.9435C277.92 61.1889 278.293 60.1385 278.318 58.7923V57.0431C277.332 58.415 275.896 59.101 274.01 59.101C272.398 59.101 271.103 58.4579 270.125 57.1717C269.148 55.8855 268.659 54.1491 268.659 51.9626V51.7568ZM270.215 52.0269C270.215 53.8018 270.571 55.2038 271.283 56.2328C271.995 57.2531 272.998 57.7633 274.293 57.7633C276.188 57.7633 277.529 56.9144 278.318 55.2167V48.7471C277.958 47.8553 277.439 47.1779 276.762 46.7149C276.085 46.2433 275.27 46.0074 274.318 46.0074C273.023 46.0074 272.016 46.5176 271.296 47.538C270.575 48.5498 270.215 50.0461 270.215 52.0269ZM289.277 59.101C288.093 59.101 287.022 58.8095 286.061 58.2264C285.11 57.6433 284.368 56.833 283.836 55.7954C283.305 54.7493 283.039 53.5789 283.039 52.2841V51.731C283.039 50.3934 283.296 49.1887 283.81 48.1168C284.333 47.045 285.058 46.2047 285.984 45.5959C286.91 44.9785 287.913 44.6698 288.994 44.6698C290.683 44.6698 292.021 45.2486 293.007 46.4062C294.001 47.5552 294.499 49.1286 294.499 51.1265V51.9883H284.569V52.2841C284.569 53.8619 285.019 55.1781 285.92 56.2328C286.829 57.2789 287.969 57.8019 289.341 57.8019C290.164 57.8019 290.889 57.6519 291.515 57.3518C292.149 57.0516 292.724 56.5715 293.238 55.9112L294.203 56.6443C293.071 58.2821 291.429 59.101 289.277 59.101ZM288.994 45.9817C287.836 45.9817 286.859 46.4062 286.061 47.2551C285.272 48.104 284.792 49.2444 284.621 50.6764H292.968V50.5092C292.925 49.1715 292.544 48.0825 291.823 47.2422C291.103 46.4019 290.16 45.9817 288.994 45.9817ZM299.888 41.3643V44.927H302.769V46.1875H299.888V55.461C299.888 56.2328 300.025 56.8073 300.3 57.1845C300.583 57.5618 301.05 57.7505 301.702 57.7505C301.959 57.7505 302.375 57.7076 302.949 57.6219L303.013 58.8823C302.61 59.0281 302.062 59.101 301.367 59.101C300.312 59.101 299.545 58.7966 299.065 58.1878C298.585 57.5704 298.345 56.6658 298.345 55.4739V46.1875H295.785V44.927H298.345V41.3643H299.888ZM308.351 41.3643V44.927H311.232V46.1875H308.351V55.461C308.351 56.2328 308.488 56.8073 308.763 57.1845C309.046 57.5618 309.513 57.7505 310.165 57.7505C310.422 57.7505 310.838 57.7076 311.412 57.6219L311.477 58.8823C311.074 59.0281 310.525 59.101 309.83 59.101C308.776 59.101 308.008 58.7966 307.528 58.1878C307.048 57.5704 306.808 56.6658 306.808 55.4739V46.1875H304.248V44.927H306.808V41.3643H308.351ZM316.146 58.8438H314.602V44.927H316.146V58.8438ZM314.332 40.9012C314.332 40.6097 314.426 40.3653 314.615 40.1681C314.804 39.9623 315.061 39.8594 315.387 39.8594C315.713 39.8594 315.97 39.9623 316.158 40.1681C316.356 40.3653 316.454 40.6097 316.454 40.9012C316.454 41.1928 316.356 41.4371 316.158 41.6344C315.97 41.8316 315.713 41.9302 315.387 41.9302C315.061 41.9302 314.804 41.8316 314.615 41.6344C314.426 41.4371 314.332 41.1928 314.332 40.9012ZM321.805 44.927L321.856 47.3065C322.379 46.449 323.031 45.7974 323.811 45.3515C324.592 44.897 325.453 44.6698 326.397 44.6698C327.889 44.6698 328.999 45.09 329.728 45.9303C330.457 46.7706 330.825 48.0311 330.834 49.7117V58.8438H329.303V49.6988C329.295 48.4555 329.029 47.5295 328.506 46.9207C327.991 46.3118 327.164 46.0074 326.024 46.0074C325.072 46.0074 324.227 46.3076 323.49 46.9078C322.761 47.4994 322.221 48.3012 321.869 49.313V58.8438H320.339V44.927H321.805ZM334.204 51.7568C334.204 49.5788 334.684 47.8553 335.644 46.5862C336.613 45.3086 337.925 44.6698 339.58 44.6698C341.475 44.6698 342.916 45.4244 343.902 46.9335L343.979 44.927H345.42V58.5608C345.42 60.3529 344.918 61.772 343.915 62.8181C342.911 63.8642 341.552 64.3873 339.837 64.3873C338.868 64.3873 337.942 64.1686 337.059 63.7313C336.185 63.3026 335.494 62.7281 334.988 62.0078L335.85 61.0817C336.939 62.4194 338.234 63.0882 339.735 63.0882C341.021 63.0882 342.024 62.7066 342.744 61.9435C343.465 61.1889 343.838 60.1385 343.863 58.7923V57.0431C342.877 58.415 341.441 59.101 339.554 59.101C337.942 59.101 336.648 58.4579 335.67 57.1717C334.693 55.8855 334.204 54.1491 334.204 51.9626V51.7568ZM335.76 52.0269C335.76 53.8018 336.116 55.2038 336.828 56.2328C337.539 57.2531 338.543 57.7633 339.837 57.7633C341.732 57.7633 343.074 56.9144 343.863 55.2167V48.7471C343.503 47.8553 342.984 47.1779 342.307 46.7149C341.63 46.2433 340.815 46.0074 339.863 46.0074C338.568 46.0074 337.561 46.5176 336.841 47.538C336.12 48.5498 335.76 50.0461 335.76 52.0269ZM354.989 51.6796C354.989 50.342 355.246 49.1372 355.761 48.0654C356.284 46.9935 357.017 46.1618 357.96 45.5701C358.912 44.9699 359.988 44.6698 361.188 44.6698C363.041 44.6698 364.541 45.3215 365.69 46.6248C366.839 47.9196 367.414 49.6388 367.414 51.7825V52.104C367.414 53.4503 367.152 54.6636 366.629 55.744C366.115 56.8158 365.386 57.6433 364.442 58.2264C363.499 58.8095 362.423 59.101 361.214 59.101C359.371 59.101 357.87 58.4536 356.712 57.1588C355.563 55.8555 354.989 54.132 354.989 51.9883V51.6796ZM356.532 52.104C356.532 53.7675 356.961 55.1352 357.819 56.207C358.685 57.2703 359.816 57.8019 361.214 57.8019C362.603 57.8019 363.726 57.2703 364.584 56.207C365.45 55.1352 365.883 53.7247 365.883 51.9754V51.6796C365.883 50.6163 365.686 49.6431 365.291 48.7599C364.897 47.8767 364.344 47.195 363.632 46.7149C362.92 46.2261 362.106 45.9817 361.188 45.9817C359.816 45.9817 358.697 46.5219 357.831 47.6023C356.965 48.6742 356.532 50.0804 356.532 51.8211V52.104ZM379.555 57.0817C378.629 58.4279 377.15 59.101 375.118 59.101C373.635 59.101 372.507 58.6723 371.735 57.8148C370.964 56.9487 370.569 55.6711 370.552 53.9819V44.927H372.083V53.789C372.083 56.4386 373.154 57.7633 375.298 57.7633C377.527 57.7633 378.938 56.8416 379.53 54.998V44.927H381.073V58.8438H379.581L379.555 57.0817ZM391.517 46.239C391.191 46.1789 390.844 46.1489 390.475 46.1489C389.515 46.1489 388.7 46.419 388.031 46.9592C387.371 47.4909 386.9 48.2669 386.617 49.2873V58.8438H385.086V44.927H386.591L386.617 47.1393C387.431 45.493 388.739 44.6698 390.54 44.6698C390.968 44.6698 391.307 44.7255 391.556 44.837L391.517 46.239ZM401.832 44.927L401.884 47.3065C402.407 46.449 403.059 45.7974 403.839 45.3515C404.619 44.897 405.481 44.6698 406.424 44.6698C407.916 44.6698 409.027 45.09 409.755 45.9303C410.484 46.7706 410.853 48.0311 410.862 49.7117V58.8438H409.331V49.6988C409.322 48.4555 409.057 47.5295 408.534 46.9207C408.019 46.3118 407.192 46.0074 406.051 46.0074C405.099 46.0074 404.255 46.3076 403.517 46.9078C402.788 47.4994 402.248 48.3012 401.897 49.313V58.8438H400.366V44.927H401.832ZM420.238 59.101C419.055 59.101 417.983 58.8095 417.022 58.2264C416.071 57.6433 415.329 56.833 414.797 55.7954C414.266 54.7493 414 53.5789 414 52.2841V51.731C414 50.3934 414.257 49.1887 414.772 48.1168C415.295 47.045 416.019 46.2047 416.945 45.5959C417.871 44.9785 418.875 44.6698 419.955 44.6698C421.644 44.6698 422.982 45.2486 423.968 46.4062C424.963 47.5552 425.46 49.1286 425.46 51.1265V51.9883H415.53V52.2841C415.53 53.8619 415.981 55.1781 416.881 56.2328C417.79 57.2789 418.93 57.8019 420.302 57.8019C421.125 57.8019 421.85 57.6519 422.476 57.3518C423.11 57.0516 423.685 56.5715 424.199 55.9112L425.164 56.6443C424.032 58.2821 422.39 59.101 420.238 59.101ZM419.955 45.9817C418.797 45.9817 417.82 46.4062 417.022 47.2551C416.234 48.104 415.753 49.2444 415.582 50.6764H423.929V50.5092C423.886 49.1715 423.505 48.0825 422.785 47.2422C422.064 46.4019 421.121 45.9817 419.955 45.9817ZM431.788 55.6411L432.02 56.8373L432.328 55.5768L435.672 44.927H436.984L440.29 55.4868L440.65 56.953L440.946 55.6025L443.801 44.927H445.396L441.345 58.8438H440.033L436.457 47.8081L436.29 47.0493L436.123 47.821L432.611 58.8438H431.299L427.261 44.927H428.843L431.788 55.6411Z" fill="black"/>
-<path d="M218.886 107.347H207.028L204.547 114.475H199.017L210.581 83.863H215.353L226.938 114.475H221.387L218.886 107.347ZM208.521 103.058H217.393L212.957 90.3595L208.521 103.058ZM239.279 110.816C240.555 110.816 241.613 110.445 242.454 109.702C243.295 108.959 243.744 108.041 243.8 106.948H248.614C248.558 108.363 248.117 109.688 247.29 110.921C246.463 112.141 245.341 113.108 243.926 113.823C242.51 114.538 240.982 114.895 239.342 114.895C236.161 114.895 233.638 113.865 231.774 111.805C229.909 109.744 228.977 106.899 228.977 103.269V102.743C228.977 99.2809 229.902 96.5127 231.753 94.4383C233.603 92.3499 236.126 91.3056 239.321 91.3056C242.027 91.3056 244.227 92.0976 245.923 93.6814C247.633 95.2512 248.53 97.3186 248.614 99.8836H243.8C243.744 98.5801 243.295 97.5079 242.454 96.6669C241.627 95.8259 240.569 95.4054 239.279 95.4054C237.625 95.4054 236.35 96.0081 235.453 97.2135C234.556 98.4049 234.1 100.22 234.086 102.659V103.479C234.086 105.946 234.528 107.789 235.411 109.008C236.308 110.214 237.597 110.816 239.279 110.816ZM258.874 86.1967V91.7261H262.89V95.5105H258.874V108.209C258.874 109.078 259.042 109.709 259.379 110.102C259.729 110.48 260.346 110.669 261.229 110.669C261.818 110.669 262.413 110.599 263.016 110.459V114.412C261.853 114.734 260.731 114.895 259.652 114.895C255.727 114.895 253.765 112.73 253.765 108.399V95.5105H250.023V91.7261H253.765V86.1967H258.874ZM272.246 114.475H267.137V91.7261H272.246V114.475ZM266.821 85.8183C266.821 85.0333 267.067 84.3816 267.557 83.863C268.062 83.3444 268.777 83.0851 269.702 83.0851C270.627 83.0851 271.342 83.3444 271.846 83.863C272.351 84.3816 272.603 85.0333 272.603 85.8183C272.603 86.5892 272.351 87.2339 271.846 87.7525C271.342 88.2571 270.627 88.5094 269.702 88.5094C268.777 88.5094 268.062 88.2571 267.557 87.7525C267.067 87.2339 266.821 86.5892 266.821 85.8183ZM285.849 107.999L290.663 91.7261H295.94L288.056 114.475H283.62L275.673 91.7261H280.971L285.849 107.999ZM308.87 114.895C305.633 114.895 303.004 113.879 300.986 111.847C298.982 109.8 297.98 107.081 297.98 103.689V103.058C297.98 100.788 298.414 98.7623 299.283 96.9823C300.166 95.1882 301.4 93.7935 302.983 92.7984C304.567 91.8032 306.333 91.3056 308.282 91.3056C311.379 91.3056 313.769 92.2938 315.451 94.2701C317.147 96.2464 317.995 99.0427 317.995 102.659V104.719H303.131C303.285 106.597 303.909 108.083 305.002 109.176C306.109 110.27 307.497 110.816 309.165 110.816C311.505 110.816 313.412 109.87 314.883 107.978L317.637 110.606C316.726 111.966 315.507 113.024 313.979 113.781C312.465 114.524 310.762 114.895 308.87 114.895ZM308.261 95.4054C306.859 95.4054 305.724 95.896 304.855 96.8771C304 97.8583 303.453 99.2249 303.215 100.977H312.949V100.598C312.837 98.8885 312.381 97.599 311.582 96.73C310.784 95.8469 309.676 95.4054 308.261 95.4054ZM327.414 114.475H322.305V82.181H327.414V114.475ZM340.954 107.158L345.579 91.7261H351.024L341.984 117.923C340.596 121.749 338.241 123.662 334.92 123.662C334.177 123.662 333.357 123.536 332.46 123.284V119.331L333.427 119.394C334.716 119.394 335.683 119.156 336.328 118.68C336.987 118.217 337.506 117.432 337.884 116.325L338.62 114.369L330.631 91.7261H336.139L340.954 107.158ZM176.942 164.475V133.863H185.982C188.687 133.863 191.084 134.466 193.173 135.671C195.275 136.876 196.901 138.586 198.05 140.801C199.2 143.016 199.774 145.553 199.774 148.412V149.947C199.774 152.848 199.193 155.399 198.029 157.6C196.88 159.8 195.233 161.496 193.089 162.688C190.958 163.879 188.512 164.475 185.751 164.475H176.942ZM182.261 138.152V160.228H185.73C188.519 160.228 190.657 159.359 192.142 157.621C193.642 155.869 194.406 153.36 194.434 150.094V148.391C194.434 145.069 193.712 142.532 192.269 140.78C190.825 139.028 188.729 138.152 185.982 138.152H182.261ZM214.597 164.895C211.359 164.895 208.731 163.879 206.712 161.847C204.708 159.8 203.706 157.081 203.706 153.689V153.058C203.706 150.788 204.14 148.762 205.009 146.982C205.892 145.188 207.126 143.794 208.71 142.798C210.294 141.803 212.06 141.306 214.008 141.306C217.105 141.306 219.495 142.294 221.177 144.27C222.873 146.246 223.721 149.043 223.721 152.659V154.719H208.857C209.011 156.597 209.635 158.083 210.728 159.176C211.835 160.27 213.223 160.816 214.891 160.816C217.232 160.816 219.138 159.87 220.61 157.978L223.364 160.606C222.453 161.966 221.233 163.024 219.706 163.781C218.192 164.524 216.489 164.895 214.597 164.895ZM213.987 145.405C212.585 145.405 211.45 145.896 210.581 146.877C209.726 147.858 209.179 149.225 208.941 150.977H218.675V150.598C218.563 148.888 218.108 147.599 217.309 146.73C216.51 145.847 215.403 145.405 213.987 145.405ZM235.432 157.999L240.246 141.726H245.524L237.639 164.475H233.203L225.256 141.726H230.554L235.432 157.999ZM258.454 164.895C255.216 164.895 252.588 163.879 250.569 161.847C248.565 159.8 247.563 157.081 247.563 153.689V153.058C247.563 150.788 247.997 148.762 248.866 146.982C249.749 145.188 250.983 143.794 252.567 142.798C254.151 141.803 255.917 141.306 257.865 141.306C260.963 141.306 263.352 142.294 265.034 144.27C266.73 146.246 267.578 149.043 267.578 152.659V154.719H252.714C252.868 156.597 253.492 158.083 254.585 159.176C255.692 160.27 257.08 160.816 258.748 160.816C261.089 160.816 262.995 159.87 264.467 157.978L267.221 160.606C266.31 161.966 265.09 163.024 263.563 163.781C262.049 164.524 260.346 164.895 258.454 164.895ZM257.844 145.405C256.442 145.405 255.307 145.896 254.438 146.877C253.583 147.858 253.036 149.225 252.798 150.977H262.532V150.598C262.42 148.888 261.965 147.599 261.166 146.73C260.367 145.847 259.26 145.405 257.844 145.405ZM276.997 164.475H271.888V132.181H276.997V164.475ZM281.623 152.89C281.623 150.662 282.064 148.657 282.947 146.877C283.83 145.083 285.071 143.709 286.668 142.756C288.266 141.789 290.102 141.306 292.177 141.306C295.246 141.306 297.734 142.294 299.641 144.27C301.561 146.246 302.598 148.867 302.752 152.133L302.773 153.332C302.773 155.574 302.339 157.579 301.47 159.345C300.615 161.111 299.381 162.477 297.769 163.444C296.172 164.412 294.321 164.895 292.219 164.895C289.009 164.895 286.437 163.83 284.503 161.699C282.583 159.555 281.623 156.703 281.623 153.142V152.89ZM286.732 153.332C286.732 155.672 287.215 157.509 288.182 158.84C289.149 160.158 290.495 160.816 292.219 160.816C293.943 160.816 295.281 160.144 296.235 158.798C297.202 157.452 297.685 155.483 297.685 152.89C297.685 150.591 297.188 148.769 296.193 147.424C295.211 146.078 293.873 145.405 292.177 145.405C290.509 145.405 289.184 146.071 288.203 147.403C287.222 148.72 286.732 150.697 286.732 153.332ZM327.014 153.332C327.014 156.85 326.215 159.66 324.618 161.762C323.02 163.851 320.875 164.895 318.184 164.895C315.689 164.895 313.692 164.075 312.192 162.435V173.221H307.083V141.726H311.793L312.003 144.039C313.503 142.217 315.542 141.306 318.121 141.306C320.896 141.306 323.069 142.343 324.639 144.417C326.222 146.478 327.014 149.344 327.014 153.016V153.332ZM321.926 152.89C321.926 150.619 321.471 148.818 320.56 147.487C319.663 146.155 318.373 145.49 316.691 145.49C314.603 145.49 313.103 146.352 312.192 148.076V158.167C313.117 159.933 314.631 160.816 316.733 160.816C318.359 160.816 319.628 160.165 320.539 158.861C321.464 157.544 321.926 155.553 321.926 152.89ZM341.374 164.895C338.136 164.895 335.508 163.879 333.49 161.847C331.486 159.8 330.483 157.081 330.483 153.689V153.058C330.483 150.788 330.918 148.762 331.787 146.982C332.67 145.188 333.903 143.794 335.487 142.798C337.071 141.803 338.837 141.306 340.785 141.306C343.883 141.306 346.273 142.294 347.955 144.27C349.651 146.246 350.499 149.043 350.499 152.659V154.719H335.634C335.789 156.597 336.412 158.083 337.506 159.176C338.613 160.27 340.001 160.816 341.668 160.816C344.009 160.816 345.915 159.87 347.387 157.978L350.141 160.606C349.23 161.966 348.011 163.024 346.483 163.781C344.969 164.524 343.266 164.895 341.374 164.895ZM340.764 145.405C339.363 145.405 338.227 145.896 337.358 146.877C336.503 147.858 335.957 149.225 335.719 150.977H345.453V150.598C345.341 148.888 344.885 147.599 344.086 146.73C343.287 145.847 342.18 145.405 340.764 145.405ZM353.526 152.932C353.526 149.428 354.339 146.618 355.965 144.501C357.591 142.371 359.771 141.306 362.504 141.306C364.915 141.306 366.863 142.147 368.349 143.829V132.181H373.457V164.475H368.832L368.58 162.12C367.052 163.97 365.013 164.895 362.462 164.895C359.799 164.895 357.64 163.823 355.986 161.678C354.346 159.534 353.526 156.618 353.526 152.932ZM358.635 153.374C358.635 155.686 359.077 157.494 359.96 158.798C360.857 160.088 362.125 160.732 363.765 160.732C365.854 160.732 367.381 159.8 368.349 157.936V148.223C367.409 146.401 365.896 145.49 363.807 145.49C362.153 145.49 360.878 146.148 359.981 147.466C359.084 148.769 358.635 150.739 358.635 153.374Z" fill="url(#paint4_linear)"/>
-<path d="M149.827 208.281V195.625H147.524V194.365H149.827V192.68C149.827 191.256 150.187 190.163 150.907 189.4C151.636 188.637 152.648 188.255 153.943 188.255C154.526 188.255 155.07 188.328 155.576 188.474L155.46 189.76C155.032 189.657 154.564 189.606 154.058 189.606C153.209 189.606 152.549 189.871 152.078 190.403C151.606 190.926 151.37 191.672 151.37 192.641V194.365H154.689V195.625H151.37V208.281H149.827ZM162.522 208.538C161.338 208.538 160.266 208.247 159.306 207.664C158.354 207.081 157.613 206.27 157.081 205.233C156.549 204.187 156.283 203.016 156.283 201.722V201.169C156.283 199.831 156.541 198.626 157.055 197.554C157.578 196.482 158.303 195.642 159.229 195.033C160.155 194.416 161.158 194.107 162.239 194.107C163.928 194.107 165.265 194.686 166.251 195.844C167.246 196.993 167.743 198.566 167.743 200.564V201.426H157.814V201.722C157.814 203.299 158.264 204.616 159.165 205.67C160.073 206.716 161.214 207.239 162.586 207.239C163.409 207.239 164.134 207.089 164.76 206.789C165.394 206.489 165.969 206.009 166.483 205.349L167.448 206.082C166.316 207.72 164.674 208.538 162.522 208.538ZM162.239 195.419C161.081 195.419 160.103 195.844 159.306 196.693C158.517 197.541 158.037 198.682 157.865 200.114H166.213V199.947C166.17 198.609 165.788 197.52 165.068 196.68C164.348 195.839 163.405 195.419 162.239 195.419ZM179.525 208.281C179.371 207.844 179.272 207.197 179.229 206.339C178.689 207.042 177.999 207.587 177.158 207.973C176.327 208.35 175.444 208.538 174.509 208.538C173.171 208.538 172.087 208.165 171.255 207.419C170.432 206.673 170.02 205.73 170.02 204.59C170.02 203.235 170.582 202.163 171.705 201.374C172.837 200.585 174.41 200.191 176.425 200.191H179.216V198.609C179.216 197.614 178.908 196.834 178.29 196.268C177.682 195.694 176.79 195.406 175.615 195.406C174.543 195.406 173.656 195.681 172.953 196.23C172.249 196.778 171.898 197.439 171.898 198.21L170.354 198.197C170.354 197.091 170.869 196.135 171.898 195.329C172.927 194.515 174.192 194.107 175.692 194.107C177.244 194.107 178.466 194.497 179.358 195.278C180.258 196.049 180.721 197.13 180.747 198.519V205.104C180.747 206.451 180.888 207.458 181.171 208.127V208.281H179.525ZM174.689 207.175C175.718 207.175 176.635 206.926 177.441 206.429C178.256 205.932 178.848 205.267 179.216 204.436V201.374H176.464C174.929 201.391 173.729 201.674 172.863 202.223C171.997 202.763 171.564 203.509 171.564 204.461C171.564 205.242 171.851 205.889 172.425 206.403C173.008 206.918 173.763 207.175 174.689 207.175ZM187.255 190.802V194.365H190.136V195.625H187.255V204.899C187.255 205.67 187.392 206.245 187.667 206.622C187.95 206.999 188.417 207.188 189.069 207.188C189.326 207.188 189.742 207.145 190.316 207.059L190.381 208.32C189.978 208.466 189.429 208.538 188.734 208.538C187.68 208.538 186.912 208.234 186.432 207.625C185.952 207.008 185.712 206.103 185.712 204.911V195.625H183.152V194.365H185.712V190.802H187.255ZM202.278 206.519C201.352 207.865 199.873 208.538 197.841 208.538C196.357 208.538 195.23 208.11 194.458 207.252C193.686 206.386 193.292 205.109 193.275 203.419V194.365H194.805V203.226C194.805 205.876 195.877 207.201 198.021 207.201C200.25 207.201 201.661 206.279 202.252 204.436V194.365H203.796V208.281H202.304L202.278 206.519ZM214.24 195.676C213.914 195.616 213.567 195.586 213.198 195.586C212.238 195.586 211.423 195.857 210.754 196.397C210.094 196.928 209.622 197.704 209.339 198.725V208.281H207.809V194.365H209.314L209.339 196.577C210.154 194.93 211.462 194.107 213.262 194.107C213.691 194.107 214.03 194.163 214.278 194.275L214.24 195.676ZM221.815 208.538C220.632 208.538 219.56 208.247 218.6 207.664C217.648 207.081 216.906 206.27 216.375 205.233C215.843 204.187 215.577 203.016 215.577 201.722V201.169C215.577 199.831 215.835 198.626 216.349 197.554C216.872 196.482 217.597 195.642 218.523 195.033C219.449 194.416 220.452 194.107 221.533 194.107C223.222 194.107 224.559 194.686 225.545 195.844C226.54 196.993 227.037 198.566 227.037 200.564V201.426H217.108V201.722C217.108 203.299 217.558 204.616 218.458 205.67C219.367 206.716 220.508 207.239 221.88 207.239C222.703 207.239 223.428 207.089 224.053 206.789C224.688 206.489 225.262 206.009 225.777 205.349L226.742 206.082C225.61 207.72 223.968 208.538 221.815 208.538ZM221.533 195.419C220.375 195.419 219.397 195.844 218.6 196.693C217.811 197.541 217.331 198.682 217.159 200.114H225.507V199.947C225.464 198.609 225.082 197.52 224.362 196.68C223.642 195.839 222.699 195.419 221.533 195.419ZM238.369 204.744C238.369 203.981 238.06 203.368 237.443 202.905C236.834 202.442 235.912 202.082 234.677 201.825C233.443 201.559 232.482 201.259 231.796 200.924C231.119 200.581 230.613 200.165 230.279 199.677C229.953 199.188 229.79 198.596 229.79 197.902C229.79 196.804 230.249 195.899 231.166 195.188C232.084 194.467 233.258 194.107 234.69 194.107C236.242 194.107 237.486 194.493 238.42 195.265C239.364 196.028 239.835 197.027 239.835 198.262H238.292C238.292 197.447 237.949 196.77 237.263 196.23C236.585 195.689 235.728 195.419 234.69 195.419C233.679 195.419 232.864 195.646 232.247 196.101C231.638 196.547 231.333 197.13 231.333 197.85C231.333 198.545 231.586 199.085 232.092 199.471C232.607 199.848 233.537 200.195 234.883 200.513C236.238 200.83 237.25 201.169 237.919 201.529C238.596 201.889 239.098 202.322 239.424 202.828C239.749 203.334 239.912 203.947 239.912 204.667C239.912 205.842 239.436 206.781 238.485 207.484C237.541 208.187 236.307 208.538 234.78 208.538C233.16 208.538 231.844 208.148 230.832 207.368C229.829 206.579 229.327 205.585 229.327 204.384H230.87C230.93 205.284 231.308 205.988 232.002 206.493C232.705 206.991 233.631 207.239 234.78 207.239C235.852 207.239 236.718 207.004 237.379 206.532C238.039 206.06 238.369 205.464 238.369 204.744ZM258.575 208.281C258.421 207.844 258.322 207.197 258.279 206.339C257.739 207.042 257.049 207.587 256.209 207.973C255.377 208.35 254.494 208.538 253.559 208.538C252.221 208.538 251.137 208.165 250.305 207.419C249.482 206.673 249.07 205.73 249.07 204.59C249.07 203.235 249.632 202.163 250.755 201.374C251.887 200.585 253.46 200.191 255.475 200.191H258.266V198.609C258.266 197.614 257.958 196.834 257.34 196.268C256.732 195.694 255.84 195.406 254.665 195.406C253.593 195.406 252.706 195.681 252.003 196.23C251.3 196.778 250.948 197.439 250.948 198.21L249.405 198.197C249.405 197.091 249.919 196.135 250.948 195.329C251.977 194.515 253.242 194.107 254.742 194.107C256.294 194.107 257.516 194.497 258.408 195.278C259.308 196.049 259.771 197.13 259.797 198.519V205.104C259.797 206.451 259.939 207.458 260.221 208.127V208.281H258.575ZM253.739 207.175C254.768 207.175 255.685 206.926 256.491 206.429C257.306 205.932 257.898 205.267 258.266 204.436V201.374H255.514C253.979 201.391 252.779 201.674 251.913 202.223C251.047 202.763 250.614 203.509 250.614 204.461C250.614 205.242 250.901 205.889 251.475 206.403C252.058 206.918 252.813 207.175 253.739 207.175ZM272.865 206.519C271.939 207.865 270.46 208.538 268.427 208.538C266.944 208.538 265.816 208.11 265.045 207.252C264.273 206.386 263.879 205.109 263.861 203.419V194.365H265.392V203.226C265.392 205.876 266.464 207.201 268.608 207.201C270.837 207.201 272.247 206.279 272.839 204.436V194.365H274.383V208.281H272.891L272.865 206.519ZM280.788 190.802V194.365H283.669V195.625H280.788V204.899C280.788 205.67 280.925 206.245 281.199 206.622C281.482 206.999 281.95 207.188 282.601 207.188C282.859 207.188 283.275 207.145 283.849 207.059L283.913 208.32C283.51 208.466 282.962 208.538 282.267 208.538C281.212 208.538 280.445 208.234 279.965 207.625C279.484 207.008 279.244 206.103 279.244 204.911V195.625H276.685V194.365H279.244V190.802H280.788ZM285.753 201.117C285.753 199.779 286.01 198.575 286.524 197.503C287.047 196.431 287.78 195.599 288.724 195.008C289.676 194.407 290.752 194.107 291.952 194.107C293.804 194.107 295.305 194.759 296.454 196.062C297.603 197.357 298.177 199.076 298.177 201.22V201.542C298.177 202.888 297.916 204.101 297.393 205.182C296.878 206.253 296.149 207.081 295.206 207.664C294.263 208.247 293.187 208.538 291.978 208.538C290.134 208.538 288.634 207.891 287.476 206.596C286.327 205.293 285.753 203.569 285.753 201.426V201.117ZM287.296 201.542C287.296 203.205 287.725 204.573 288.582 205.645C289.448 206.708 290.58 207.239 291.978 207.239C293.367 207.239 294.49 206.708 295.348 205.645C296.214 204.573 296.647 203.162 296.647 201.413V201.117C296.647 200.054 296.45 199.081 296.055 198.197C295.661 197.314 295.108 196.633 294.396 196.152C293.684 195.664 292.87 195.419 291.952 195.419C290.58 195.419 289.461 195.959 288.595 197.04C287.729 198.112 287.296 199.518 287.296 201.259V201.542ZM302.769 194.365L302.82 196.628C303.335 195.788 303.978 195.158 304.75 194.738C305.522 194.317 306.379 194.107 307.322 194.107C309.517 194.107 310.911 195.008 311.502 196.808C312 195.942 312.664 195.278 313.496 194.815C314.328 194.343 315.245 194.107 316.248 194.107C319.232 194.107 320.754 195.736 320.814 198.995V208.281H319.271V199.111C319.262 197.867 318.992 196.946 318.461 196.345C317.938 195.745 317.08 195.445 315.888 195.445C314.782 195.462 313.848 195.822 313.084 196.525C312.321 197.22 311.897 198.069 311.811 199.072V208.281H310.268V198.995C310.259 197.803 309.976 196.916 309.419 196.332C308.87 195.741 308.021 195.445 306.872 195.445C305.903 195.445 305.071 195.724 304.377 196.281C303.682 196.83 303.168 197.649 302.833 198.738V208.281H301.29V194.365H302.769ZM333.509 208.281C333.355 207.844 333.256 207.197 333.213 206.339C332.673 207.042 331.983 207.587 331.143 207.973C330.311 208.35 329.428 208.538 328.493 208.538C327.155 208.538 326.071 208.165 325.239 207.419C324.416 206.673 324.004 205.73 324.004 204.59C324.004 203.235 324.566 202.163 325.689 201.374C326.821 200.585 328.394 200.191 330.41 200.191H333.201V198.609C333.201 197.614 332.892 196.834 332.275 196.268C331.666 195.694 330.774 195.406 329.599 195.406C328.527 195.406 327.64 195.681 326.937 196.23C326.234 196.778 325.882 197.439 325.882 198.21L324.339 198.197C324.339 197.091 324.853 196.135 325.882 195.329C326.911 194.515 328.176 194.107 329.676 194.107C331.228 194.107 332.45 194.497 333.342 195.278C334.242 196.049 334.705 197.13 334.731 198.519V205.104C334.731 206.451 334.873 207.458 335.156 208.127V208.281H333.509ZM328.673 207.175C329.702 207.175 330.62 206.926 331.426 206.429C332.24 205.932 332.832 205.267 333.201 204.436V201.374H330.448C328.913 201.391 327.713 201.674 326.847 202.223C325.981 202.763 325.548 203.509 325.548 204.461C325.548 205.242 325.835 205.889 326.409 206.403C326.993 206.918 327.747 207.175 328.673 207.175ZM341.239 190.802V194.365H344.12V195.625H341.239V204.899C341.239 205.67 341.377 206.245 341.651 206.622C341.934 206.999 342.401 207.188 343.053 207.188C343.31 207.188 343.726 207.145 344.301 207.059L344.365 208.32C343.962 208.466 343.413 208.538 342.719 208.538C341.664 208.538 340.896 208.234 340.416 207.625C339.936 207.008 339.696 206.103 339.696 204.911V195.625H337.136V194.365H339.696V190.802H341.239ZM349.034 208.281H347.49V194.365H349.034V208.281ZM347.22 190.339C347.22 190.047 347.315 189.803 347.503 189.606C347.692 189.4 347.949 189.297 348.275 189.297C348.601 189.297 348.858 189.4 349.047 189.606C349.244 189.803 349.342 190.047 349.342 190.339C349.342 190.63 349.244 190.875 349.047 191.072C348.858 191.269 348.601 191.368 348.275 191.368C347.949 191.368 347.692 191.269 347.503 191.072C347.315 190.875 347.22 190.63 347.22 190.339ZM358.372 207.239C359.443 207.239 360.339 206.939 361.06 206.339C361.789 205.73 362.183 204.946 362.243 203.985H363.722C363.679 204.834 363.414 205.61 362.925 206.313C362.436 207.008 361.784 207.552 360.97 207.947C360.164 208.341 359.298 208.538 358.372 208.538C356.545 208.538 355.096 207.904 354.024 206.635C352.961 205.366 352.429 203.659 352.429 201.516V201.053C352.429 199.681 352.669 198.468 353.15 197.413C353.63 196.358 354.316 195.544 355.208 194.969C356.108 194.395 357.158 194.107 358.359 194.107C359.885 194.107 361.141 194.562 362.127 195.471C363.122 196.38 363.654 197.576 363.722 199.059H362.243C362.174 197.97 361.78 197.091 361.06 196.422C360.348 195.754 359.448 195.419 358.359 195.419C356.97 195.419 355.889 195.921 355.118 196.924C354.354 197.927 353.973 199.334 353.973 201.143V201.593C353.973 203.368 354.354 204.753 355.118 205.747C355.889 206.742 356.974 207.239 358.372 207.239ZM375.594 208.281C375.44 207.844 375.341 207.197 375.298 206.339C374.758 207.042 374.068 207.587 373.227 207.973C372.395 208.35 371.512 208.538 370.578 208.538C369.24 208.538 368.155 208.165 367.324 207.419C366.5 206.673 366.089 205.73 366.089 204.59C366.089 203.235 366.65 202.163 367.774 201.374C368.906 200.585 370.479 200.191 372.494 200.191H375.285V198.609C375.285 197.614 374.976 196.834 374.359 196.268C373.75 195.694 372.859 195.406 371.684 195.406C370.612 195.406 369.724 195.681 369.021 196.23C368.318 196.778 367.967 197.439 367.967 198.21L366.423 198.197C366.423 197.091 366.938 196.135 367.967 195.329C368.996 194.515 370.26 194.107 371.761 194.107C373.313 194.107 374.535 194.497 375.427 195.278C376.327 196.049 376.79 197.13 376.816 198.519V205.104C376.816 206.451 376.957 207.458 377.24 208.127V208.281H375.594ZM370.758 207.175C371.787 207.175 372.704 206.926 373.51 206.429C374.325 205.932 374.916 205.267 375.285 204.436V201.374H372.533C370.998 201.391 369.797 201.674 368.931 202.223C368.065 202.763 367.632 203.509 367.632 204.461C367.632 205.242 367.92 205.889 368.494 206.403C369.077 206.918 369.832 207.175 370.758 207.175ZM382.655 208.281H381.112V188.525H382.655V208.281ZM388.572 208.281H387.028V188.525H388.572V208.281ZM397.176 206.069L401.241 194.365H402.9L396.958 210.648L396.649 211.368C395.886 213.057 394.707 213.902 393.112 213.902C392.743 213.902 392.349 213.842 391.929 213.722L391.916 212.449L392.713 212.526C393.468 212.526 394.077 212.337 394.54 211.96C395.011 211.591 395.41 210.952 395.736 210.043L396.417 208.165L391.17 194.365H392.855L397.176 206.069Z" fill="black"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="549.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="512.876" y2="251.156" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="275" y1="-2.45057" x2="275" y2="252.206" gradientUnits="userSpaceOnUse">
-<stop stop-color="#775EBF"/>
-<stop offset="1" stop-color="#8D58B3"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="275" y1="-2.45057" x2="275" y2="252.206" gradientUnits="userSpaceOnUse">
-<stop stop-color="#775EBF"/>
-<stop offset="1" stop-color="#8D58B3"/>
-</linearGradient>
-<linearGradient id="paint3_linear" x1="275" y1="-2.45057" x2="275" y2="252.206" gradientUnits="userSpaceOnUse">
-<stop stop-color="#775EBF"/>
-<stop offset="1" stop-color="#8D58B3"/>
-</linearGradient>
-<linearGradient id="paint4_linear" x1="216.618" y1="74.4746" x2="319.577" y2="175.281" gradientUnits="userSpaceOnUse">
-<stop stop-color="#8D58B3"/>
-<stop offset="1" stop-color="#775EBF"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Images.svg b/public/Features/RSM/Images.svg
deleted file mode 100644
index 2f05350..0000000
--- a/public/Features/RSM/Images.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-<svg width="350" height="350" viewBox="0 0 350 350" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="300" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M75.3198 242.299C74.3937 243.646 72.9146 244.319 70.8824 244.319C69.3989 244.319 68.2714 243.89 67.4996 243.033C66.7279 242.167 66.3335 240.889 66.3163 239.2V230.145H67.8469V239.007C67.8469 241.656 68.9188 242.981 71.0624 242.981C73.2918 242.981 74.7024 242.059 75.294 240.216V230.145H76.8375V244.062H75.3455L75.3198 242.299ZM89.185 240.524C89.185 239.761 88.8763 239.148 88.259 238.685C87.6501 238.222 86.7284 237.862 85.4936 237.605C84.2589 237.339 83.2985 237.039 82.6125 236.704C81.9351 236.361 81.4292 235.946 81.0948 235.457C80.769 234.968 80.606 234.376 80.606 233.682C80.606 232.584 81.0648 231.68 81.9823 230.968C82.8998 230.248 84.0745 229.888 85.5065 229.888C87.0585 229.888 88.3018 230.273 89.2365 231.045C90.1797 231.808 90.6513 232.807 90.6513 234.042H89.1078C89.1078 233.227 88.7649 232.55 88.0789 232.01C87.4015 231.47 86.544 231.199 85.5065 231.199C84.4947 231.199 83.6801 231.427 83.0627 231.881C82.4539 232.327 82.1495 232.91 82.1495 233.63C82.1495 234.325 82.4024 234.865 82.9083 235.251C83.4228 235.628 84.3532 235.976 85.6994 236.293C87.0542 236.61 88.066 236.949 88.7348 237.309C89.4122 237.669 89.9139 238.102 90.2397 238.608C90.5655 239.114 90.7285 239.727 90.7285 240.447C90.7285 241.622 90.2526 242.561 89.3008 243.264C88.3576 243.967 87.1228 244.319 85.5965 244.319C83.9759 244.319 82.6597 243.929 81.6479 243.148C80.6446 242.359 80.143 241.365 80.143 240.164H81.6865C81.7465 241.065 82.1238 241.768 82.8183 242.274C83.5214 242.771 84.4475 243.02 85.5965 243.02C86.6683 243.02 87.5344 242.784 88.1946 242.312C88.8549 241.841 89.185 241.245 89.185 240.524ZM95.9247 244.062H94.3813V230.145H95.9247V244.062ZM94.1112 226.119C94.1112 225.827 94.2055 225.583 94.3941 225.386C94.5828 225.18 94.84 225.077 95.1659 225.077C95.4917 225.077 95.7489 225.18 95.9376 225.386C96.1348 225.583 96.2334 225.827 96.2334 226.119C96.2334 226.411 96.1348 226.655 95.9376 226.852C95.7489 227.049 95.4917 227.148 95.1659 227.148C94.84 227.148 94.5828 227.049 94.3941 226.852C94.2055 226.655 94.1112 226.411 94.1112 226.119ZM101.584 230.145L101.635 232.524C102.159 231.667 102.81 231.015 103.59 230.569C104.371 230.115 105.233 229.888 106.176 229.888C107.668 229.888 108.778 230.308 109.507 231.148C110.236 231.988 110.605 233.249 110.613 234.929V244.062H109.083V234.917C109.074 233.673 108.808 232.747 108.285 232.138C107.771 231.53 106.943 231.225 105.803 231.225C104.851 231.225 104.006 231.525 103.269 232.126C102.54 232.717 102 233.519 101.648 234.531V244.062H100.118V230.145H101.584ZM113.983 236.975C113.983 234.797 114.463 233.073 115.424 231.804C116.392 230.526 117.704 229.888 119.359 229.888C121.254 229.888 122.695 230.642 123.681 232.151L123.758 230.145H125.199V243.779C125.199 245.571 124.697 246.99 123.694 248.036C122.691 249.082 121.332 249.605 119.617 249.605C118.648 249.605 117.722 249.386 116.838 248.949C115.964 248.52 115.273 247.946 114.768 247.226L115.629 246.3C116.718 247.637 118.013 248.306 119.514 248.306C120.8 248.306 121.803 247.924 122.523 247.161C123.244 246.407 123.617 245.356 123.642 244.01V242.261C122.656 243.633 121.22 244.319 119.334 244.319C117.722 244.319 116.427 243.676 115.449 242.389C114.472 241.103 113.983 239.367 113.983 237.18V236.975ZM115.539 237.245C115.539 239.02 115.895 240.422 116.607 241.451C117.319 242.471 118.322 242.981 119.617 242.981C121.512 242.981 122.854 242.132 123.642 240.434V233.965C123.282 233.073 122.763 232.396 122.086 231.933C121.409 231.461 120.594 231.225 119.642 231.225C118.348 231.225 117.34 231.735 116.62 232.756C115.899 233.768 115.539 235.264 115.539 237.245ZM144.402 244.062C144.247 243.624 144.149 242.977 144.106 242.119C143.566 242.822 142.875 243.367 142.035 243.753C141.203 244.13 140.32 244.319 139.386 244.319C138.048 244.319 136.963 243.946 136.131 243.2C135.308 242.454 134.897 241.511 134.897 240.37C134.897 239.015 135.458 237.943 136.582 237.155C137.713 236.366 139.287 235.971 141.302 235.971H144.093V234.389C144.093 233.395 143.784 232.614 143.167 232.048C142.558 231.474 141.666 231.187 140.492 231.187C139.42 231.187 138.532 231.461 137.829 232.01C137.126 232.559 136.775 233.219 136.775 233.991L135.231 233.978C135.231 232.872 135.746 231.915 136.775 231.109C137.803 230.295 139.068 229.888 140.569 229.888C142.121 229.888 143.343 230.278 144.234 231.058C145.135 231.83 145.598 232.91 145.624 234.299V240.885C145.624 242.231 145.765 243.238 146.048 243.907V244.062H144.402ZM139.566 242.955C140.595 242.955 141.512 242.707 142.318 242.209C143.133 241.712 143.724 241.048 144.093 240.216V237.155H141.341C139.806 237.172 138.605 237.455 137.739 238.004C136.873 238.544 136.44 239.29 136.44 240.242C136.44 241.022 136.727 241.669 137.302 242.184C137.885 242.698 138.64 242.955 139.566 242.955ZM151.206 230.145L151.257 232.524C151.78 231.667 152.432 231.015 153.212 230.569C153.992 230.115 154.854 229.888 155.797 229.888C157.289 229.888 158.4 230.308 159.129 231.148C159.858 231.988 160.226 233.249 160.235 234.929V244.062H158.704V234.917C158.696 233.673 158.43 232.747 157.907 232.138C157.392 231.53 156.565 231.225 155.424 231.225C154.473 231.225 153.628 231.525 152.891 232.126C152.162 232.717 151.622 233.519 151.27 234.531V244.062H149.739V230.145H151.206ZM179.412 244.062C179.258 243.624 179.159 242.977 179.116 242.119C178.576 242.822 177.886 243.367 177.046 243.753C176.214 244.13 175.331 244.319 174.396 244.319C173.058 244.319 171.974 243.946 171.142 243.2C170.319 242.454 169.907 241.511 169.907 240.37C169.907 239.015 170.469 237.943 171.592 237.155C172.724 236.366 174.297 235.971 176.312 235.971H179.103V234.389C179.103 233.395 178.795 232.614 178.177 232.048C177.569 231.474 176.677 231.187 175.502 231.187C174.43 231.187 173.543 231.461 172.84 232.01C172.137 232.559 171.785 233.219 171.785 233.991L170.242 233.978C170.242 232.872 170.756 231.915 171.785 231.109C172.814 230.295 174.079 229.888 175.579 229.888C177.131 229.888 178.353 230.278 179.245 231.058C180.145 231.83 180.608 232.91 180.634 234.299V240.885C180.634 242.231 180.776 243.238 181.058 243.907V244.062H179.412ZM174.576 242.955C175.605 242.955 176.522 242.707 177.328 242.209C178.143 241.712 178.735 241.048 179.103 240.216V237.155H176.351C174.816 237.172 173.616 237.455 172.75 238.004C171.884 238.544 171.451 239.29 171.451 240.242C171.451 241.022 171.738 241.669 172.312 242.184C172.895 242.698 173.65 242.955 174.576 242.955ZM193.702 242.299C192.776 243.646 191.297 244.319 189.264 244.319C187.781 244.319 186.653 243.89 185.882 243.033C185.11 242.167 184.716 240.889 184.698 239.2V230.145H186.229V239.007C186.229 241.656 187.301 242.981 189.445 242.981C191.674 242.981 193.084 242.059 193.676 240.216V230.145H195.22V244.062H193.728L193.702 242.299ZM201.625 226.582V230.145H204.506V231.405H201.625V240.679C201.625 241.451 201.762 242.025 202.036 242.402C202.319 242.78 202.787 242.968 203.438 242.968C203.696 242.968 204.112 242.925 204.686 242.84L204.75 244.1C204.347 244.246 203.799 244.319 203.104 244.319C202.049 244.319 201.282 244.014 200.802 243.406C200.322 242.788 200.081 241.884 200.081 240.692V231.405H197.522V230.145H200.081V226.582H201.625ZM206.59 236.897C206.59 235.56 206.847 234.355 207.361 233.283C207.884 232.211 208.618 231.38 209.561 230.788C210.513 230.188 211.589 229.888 212.789 229.888C214.641 229.888 216.142 230.539 217.291 231.843C218.44 233.137 219.014 234.857 219.014 237V237.322C219.014 238.668 218.753 239.881 218.23 240.962C217.715 242.034 216.986 242.861 216.043 243.444C215.1 244.027 214.024 244.319 212.815 244.319C210.971 244.319 209.471 243.671 208.313 242.377C207.164 241.073 206.59 239.35 206.59 237.206V236.897ZM208.133 237.322C208.133 238.985 208.562 240.353 209.419 241.425C210.285 242.488 211.417 243.02 212.815 243.02C214.204 243.02 215.327 242.488 216.185 241.425C217.051 240.353 217.484 238.942 217.484 237.193V236.897C217.484 235.834 217.287 234.861 216.892 233.978C216.498 233.095 215.945 232.413 215.233 231.933C214.521 231.444 213.707 231.199 212.789 231.199C211.417 231.199 210.298 231.74 209.432 232.82C208.566 233.892 208.133 235.298 208.133 237.039V237.322ZM223.606 230.145L223.658 232.409C224.172 231.568 224.815 230.938 225.587 230.518C226.359 230.098 227.216 229.888 228.159 229.888C230.354 229.888 231.748 230.788 232.339 232.589C232.837 231.723 233.501 231.058 234.333 230.595C235.165 230.123 236.082 229.888 237.085 229.888C240.069 229.888 241.591 231.517 241.651 234.775V244.062H240.108V234.891C240.099 233.648 239.829 232.726 239.298 232.126C238.775 231.525 237.917 231.225 236.725 231.225C235.619 231.242 234.685 231.603 233.921 232.306C233.158 233 232.734 233.849 232.648 234.852V244.062H231.105V234.775C231.096 233.583 230.813 232.696 230.256 232.113C229.707 231.521 228.858 231.225 227.709 231.225C226.74 231.225 225.908 231.504 225.214 232.061C224.519 232.61 224.005 233.429 223.67 234.518V244.062H222.127V230.145H223.606ZM254.346 244.062C254.192 243.624 254.093 242.977 254.05 242.119C253.51 242.822 252.82 243.367 251.98 243.753C251.148 244.13 250.265 244.319 249.33 244.319C247.992 244.319 246.908 243.946 246.076 243.2C245.253 242.454 244.841 241.511 244.841 240.37C244.841 239.015 245.403 237.943 246.526 237.155C247.658 236.366 249.231 235.971 251.247 235.971H254.038V234.389C254.038 233.395 253.729 232.614 253.112 232.048C252.503 231.474 251.611 231.187 250.436 231.187C249.364 231.187 248.477 231.461 247.774 232.01C247.071 232.559 246.719 233.219 246.719 233.991L245.176 233.978C245.176 232.872 245.69 231.915 246.719 231.109C247.748 230.295 249.013 229.888 250.513 229.888C252.065 229.888 253.287 230.278 254.179 231.058C255.079 231.83 255.542 232.91 255.568 234.299V240.885C255.568 242.231 255.71 243.238 255.993 243.907V244.062H254.346ZM249.51 242.955C250.539 242.955 251.457 242.707 252.263 242.209C253.077 241.712 253.669 241.048 254.038 240.216V237.155H251.285C249.75 237.172 248.55 237.455 247.684 238.004C246.818 238.544 246.385 239.29 246.385 240.242C246.385 241.022 246.672 241.669 247.246 242.184C247.83 242.698 248.584 242.955 249.51 242.955ZM262.076 226.582V230.145H264.957V231.405H262.076V240.679C262.076 241.451 262.214 242.025 262.488 242.402C262.771 242.78 263.238 242.968 263.89 242.968C264.147 242.968 264.563 242.925 265.138 242.84L265.202 244.1C264.799 244.246 264.25 244.319 263.555 244.319C262.501 244.319 261.733 244.014 261.253 243.406C260.773 242.788 260.533 241.884 260.533 240.692V231.405H257.973V230.145H260.533V226.582H262.076ZM269.871 244.062H268.327V230.145H269.871V244.062ZM268.057 226.119C268.057 225.827 268.152 225.583 268.34 225.386C268.529 225.18 268.786 225.077 269.112 225.077C269.438 225.077 269.695 225.18 269.884 225.386C270.081 225.583 270.179 225.827 270.179 226.119C270.179 226.411 270.081 226.655 269.884 226.852C269.695 227.049 269.438 227.148 269.112 227.148C268.786 227.148 268.529 227.049 268.34 226.852C268.152 226.655 268.057 226.411 268.057 226.119ZM279.209 243.02C280.28 243.02 281.176 242.72 281.897 242.119C282.626 241.511 283.02 240.726 283.08 239.766H284.559C284.516 240.615 284.251 241.391 283.762 242.094C283.273 242.788 282.621 243.333 281.807 243.727C281.001 244.122 280.135 244.319 279.209 244.319C277.382 244.319 275.933 243.684 274.861 242.415C273.798 241.146 273.266 239.44 273.266 237.296V236.833C273.266 235.461 273.506 234.248 273.987 233.193C274.467 232.138 275.153 231.324 276.045 230.749C276.945 230.175 277.995 229.888 279.196 229.888C280.722 229.888 281.978 230.342 282.964 231.251C283.959 232.16 284.491 233.356 284.559 234.839H283.08C283.011 233.75 282.617 232.872 281.897 232.203C281.185 231.534 280.285 231.199 279.196 231.199C277.807 231.199 276.726 231.701 275.955 232.704C275.191 233.708 274.81 235.114 274.81 236.923V237.373C274.81 239.148 275.191 240.533 275.955 241.528C276.726 242.522 277.811 243.02 279.209 243.02ZM74.9725 257.582V261.145H77.8536V262.405H74.9725V271.679C74.9725 272.451 75.1097 273.025 75.3841 273.402C75.667 273.78 76.1343 273.968 76.786 273.968C77.0433 273.968 77.4591 273.925 78.0336 273.84L78.0979 275.1C77.6949 275.246 77.1462 275.319 76.4516 275.319C75.3969 275.319 74.6295 275.014 74.1493 274.406C73.6691 273.788 73.429 272.884 73.429 271.692V262.405H70.8695V261.145H73.429V257.582H74.9725ZM86.4325 275.319C85.2492 275.319 84.1774 275.027 83.217 274.444C82.2652 273.861 81.5235 273.051 80.9919 272.013C80.4603 270.967 80.1945 269.797 80.1945 268.502V267.949C80.1945 266.611 80.4517 265.406 80.9662 264.335C81.4892 263.263 82.2138 262.422 83.1399 261.814C84.0659 261.196 85.0692 260.888 86.1496 260.888C87.8388 260.888 89.1764 261.466 90.1625 262.624C91.1572 263.773 91.6545 265.346 91.6545 267.344V268.206H81.725V268.502C81.725 270.08 82.1752 271.396 83.0756 272.451C83.9845 273.497 85.1249 274.02 86.4969 274.02C87.32 274.02 88.0446 273.87 88.6705 273.57C89.3051 273.269 89.8796 272.789 90.394 272.129L91.3587 272.862C90.2268 274.5 88.5848 275.319 86.4325 275.319ZM86.1496 262.199C84.992 262.199 84.0145 262.624 83.217 263.473C82.4282 264.322 81.948 265.462 81.7765 266.894H90.1239V266.727C90.0811 265.389 89.6995 264.3 88.9792 263.46C88.2589 262.62 87.3157 262.199 86.1496 262.199ZM99.0245 266.791L102.78 261.145H104.607L99.8862 267.975L104.812 275.062H102.999L99.0373 269.171L95.0758 275.062H93.2623L98.1756 267.975L93.4552 261.145H95.2688L99.0245 266.791ZM109.854 257.582V261.145H112.735V262.405H109.854V271.679C109.854 272.451 109.991 273.025 110.266 273.402C110.549 273.78 111.016 273.968 111.668 273.968C111.925 273.968 112.341 273.925 112.915 273.84L112.98 275.1C112.577 275.246 112.028 275.319 111.333 275.319C110.279 275.319 109.511 275.014 109.031 274.406C108.551 273.788 108.311 272.884 108.311 271.692V262.405H105.751V261.145H108.311V257.582H109.854ZM128.761 262.457C128.436 262.397 128.088 262.367 127.72 262.367C126.759 262.367 125.945 262.637 125.276 263.177C124.616 263.709 124.144 264.485 123.861 265.505V275.062H122.33V261.145H123.835L123.861 263.357C124.676 261.711 125.983 260.888 127.784 260.888C128.213 260.888 128.551 260.943 128.8 261.055L128.761 262.457ZM136.337 275.319C135.154 275.319 134.082 275.027 133.122 274.444C132.17 273.861 131.428 273.051 130.897 272.013C130.365 270.967 130.099 269.797 130.099 268.502V267.949C130.099 266.611 130.356 265.406 130.871 264.335C131.394 263.263 132.118 262.422 133.045 261.814C133.971 261.196 134.974 260.888 136.054 260.888C137.743 260.888 139.081 261.466 140.067 262.624C141.062 263.773 141.559 265.346 141.559 267.344V268.206H131.63V268.502C131.63 270.08 132.08 271.396 132.98 272.451C133.889 273.497 135.03 274.02 136.402 274.02C137.225 274.02 137.949 273.87 138.575 273.57C139.21 273.269 139.784 272.789 140.299 272.129L141.263 272.862C140.132 274.5 138.489 275.319 136.337 275.319ZM136.054 262.199C134.897 262.199 133.919 262.624 133.122 263.473C132.333 264.322 131.853 265.462 131.681 266.894H140.029V266.727C139.986 265.389 139.604 264.3 138.884 263.46C138.164 262.62 137.22 262.199 136.054 262.199ZM149.701 274.02C150.773 274.02 151.669 273.72 152.389 273.119C153.118 272.511 153.512 271.726 153.572 270.766H155.051C155.009 271.615 154.743 272.391 154.254 273.094C153.765 273.788 153.114 274.333 152.299 274.727C151.493 275.122 150.627 275.319 149.701 275.319C147.874 275.319 146.425 274.684 145.353 273.415C144.29 272.146 143.759 270.44 143.759 268.296V267.833C143.759 266.461 143.999 265.248 144.479 264.193C144.959 263.138 145.645 262.324 146.537 261.749C147.437 261.175 148.488 260.888 149.688 260.888C151.214 260.888 152.47 261.342 153.457 262.251C154.451 263.16 154.983 264.356 155.051 265.839H153.572C153.504 264.75 153.109 263.872 152.389 263.203C151.677 262.534 150.777 262.199 149.688 262.199C148.299 262.199 147.218 262.701 146.447 263.704C145.684 264.708 145.302 266.114 145.302 267.923V268.373C145.302 270.148 145.684 271.533 146.447 272.528C147.218 273.522 148.303 274.02 149.701 274.02ZM157.289 267.897C157.289 266.56 157.547 265.355 158.061 264.283C158.584 263.211 159.317 262.38 160.261 261.788C161.212 261.188 162.288 260.888 163.489 260.888C165.341 260.888 166.842 261.539 167.991 262.843C169.14 264.137 169.714 265.857 169.714 268V268.322C169.714 269.668 169.453 270.881 168.93 271.962C168.415 273.034 167.686 273.861 166.743 274.444C165.8 275.027 164.724 275.319 163.515 275.319C161.671 275.319 160.171 274.671 159.013 273.377C157.864 272.073 157.289 270.35 157.289 268.206V267.897ZM158.833 268.322C158.833 269.985 159.262 271.353 160.119 272.425C160.985 273.488 162.117 274.02 163.515 274.02C164.904 274.02 166.027 273.488 166.885 272.425C167.751 271.353 168.184 269.942 168.184 268.193V267.897C168.184 266.834 167.986 265.861 167.592 264.978C167.197 264.095 166.644 263.413 165.933 262.933C165.221 262.444 164.406 262.199 163.489 262.199C162.117 262.199 160.998 262.74 160.132 263.82C159.266 264.892 158.833 266.298 158.833 268.039V268.322ZM172.287 267.975C172.287 265.797 172.767 264.073 173.727 262.804C174.696 261.526 176.008 260.888 177.663 260.888C179.558 260.888 180.998 261.642 181.985 263.151L182.062 261.145H183.502V274.779C183.502 276.571 183.001 277.99 181.997 279.036C180.994 280.082 179.635 280.605 177.92 280.605C176.951 280.605 176.025 280.386 175.142 279.949C174.267 279.52 173.577 278.946 173.071 278.226L173.933 277.3C175.022 278.637 176.317 279.306 177.817 279.306C179.103 279.306 180.107 278.924 180.827 278.161C181.547 277.407 181.92 276.356 181.946 275.01V273.261C180.96 274.633 179.524 275.319 177.637 275.319C176.025 275.319 174.73 274.676 173.753 273.389C172.775 272.103 172.287 270.367 172.287 268.18V267.975ZM173.843 268.245C173.843 270.02 174.199 271.422 174.91 272.451C175.622 273.471 176.625 273.981 177.92 273.981C179.815 273.981 181.157 273.132 181.946 271.434V264.965C181.586 264.073 181.067 263.396 180.39 262.933C179.712 262.461 178.898 262.225 177.946 262.225C176.651 262.225 175.644 262.735 174.923 263.756C174.203 264.768 173.843 266.264 173.843 268.245ZM188.981 261.145L189.033 263.524C189.556 262.667 190.208 262.015 190.988 261.569C191.768 261.115 192.63 260.888 193.573 260.888C195.065 260.888 196.176 261.308 196.904 262.148C197.633 262.988 198.002 264.249 198.011 265.929V275.062H196.48V265.917C196.471 264.673 196.206 263.747 195.683 263.138C195.168 262.53 194.341 262.225 193.2 262.225C192.248 262.225 191.404 262.525 190.666 263.126C189.938 263.717 189.397 264.519 189.046 265.531V275.062H187.515V261.145H188.981ZM203.721 275.062H202.178V261.145H203.721V275.062ZM201.908 257.119C201.908 256.827 202.002 256.583 202.191 256.386C202.379 256.18 202.637 256.077 202.962 256.077C203.288 256.077 203.546 256.18 203.734 256.386C203.931 256.583 204.03 256.827 204.03 257.119C204.03 257.411 203.931 257.655 203.734 257.852C203.546 258.049 203.288 258.148 202.962 258.148C202.637 258.148 202.379 258.049 202.191 257.852C202.002 257.655 201.908 257.411 201.908 257.119ZM210.307 257.582V261.145H213.188V262.405H210.307V271.679C210.307 272.451 210.444 273.025 210.718 273.402C211.001 273.78 211.469 273.968 212.12 273.968C212.377 273.968 212.793 273.925 213.368 273.84L213.432 275.1C213.029 275.246 212.48 275.319 211.786 275.319C210.731 275.319 209.964 275.014 209.484 274.406C209.003 273.788 208.763 272.884 208.763 271.692V262.405H206.204V261.145H208.763V257.582H210.307ZM218.101 275.062H216.558V261.145H218.101V275.062ZM216.288 257.119C216.288 256.827 216.382 256.583 216.571 256.386C216.759 256.18 217.016 256.077 217.342 256.077C217.668 256.077 217.925 256.18 218.114 256.386C218.311 256.583 218.41 256.827 218.41 257.119C218.41 257.411 218.311 257.655 218.114 257.852C217.925 258.049 217.668 258.148 217.342 258.148C217.016 258.148 216.759 258.049 216.571 257.852C216.382 257.655 216.288 257.411 216.288 257.119ZM221.445 267.897C221.445 266.56 221.702 265.355 222.217 264.283C222.74 263.211 223.473 262.38 224.416 261.788C225.368 261.188 226.444 260.888 227.645 260.888C229.497 260.888 230.997 261.539 232.146 262.843C233.295 264.137 233.87 265.857 233.87 268V268.322C233.87 269.668 233.608 270.881 233.085 271.962C232.571 273.034 231.842 273.861 230.899 274.444C229.956 275.027 228.879 275.319 227.67 275.319C225.827 275.319 224.326 274.671 223.169 273.377C222.02 272.073 221.445 270.35 221.445 268.206V267.897ZM222.989 268.322C222.989 269.985 223.417 271.353 224.275 272.425C225.141 273.488 226.273 274.02 227.67 274.02C229.06 274.02 230.183 273.488 231.04 272.425C231.906 271.353 232.339 269.942 232.339 268.193V267.897C232.339 266.834 232.142 265.861 231.748 264.978C231.353 264.095 230.8 263.413 230.089 262.933C229.377 262.444 228.562 262.199 227.645 262.199C226.273 262.199 225.154 262.74 224.288 263.82C223.422 264.892 222.989 266.298 222.989 268.039V268.322ZM238.526 261.145L238.577 263.524C239.101 262.667 239.752 262.015 240.532 261.569C241.313 261.115 242.175 260.888 243.118 260.888C244.61 260.888 245.72 261.308 246.449 262.148C247.178 262.988 247.547 264.249 247.555 265.929V275.062H246.025V265.917C246.016 264.673 245.75 263.747 245.227 263.138C244.713 262.53 243.885 262.225 242.745 262.225C241.793 262.225 240.948 262.525 240.211 263.126C239.482 263.717 238.942 264.519 238.59 265.531V275.062H237.06V261.145H238.526ZM268.417 269.814H259.916L257.986 275.062H256.327L263.414 256.334H264.919L272.006 275.062H270.36L268.417 269.814ZM260.404 268.463H267.916L264.16 258.264L260.404 268.463ZM276.701 275.062H275.118V256.334H276.701V275.062Z" fill="black"/>
-<path d="M101.968 91.4302V104.143H96.0229V69.9296H109.111C112.934 69.9296 115.965 70.9243 118.205 72.9138C120.461 74.9033 121.589 77.5351 121.589 80.8091C121.589 84.1615 120.484 86.7698 118.275 88.6339C116.082 90.4981 113.004 91.4302 109.041 91.4302H101.968ZM101.968 86.6601H109.111C111.226 86.6601 112.84 86.1667 113.952 85.1797C115.064 84.1772 115.62 82.736 115.62 80.8561C115.62 79.0076 115.056 77.5351 113.928 76.4385C112.8 75.3263 111.25 74.7545 109.276 74.7232H101.968V86.6601ZM139.565 83.9344C138.813 83.809 138.037 83.7464 137.238 83.7464C134.622 83.7464 132.86 84.749 131.951 86.7541V104.143H126.241V78.7178H131.693L131.834 81.5611C133.212 79.3523 135.123 78.2479 137.567 78.2479C138.382 78.2479 139.055 78.3575 139.588 78.5768L139.565 83.9344ZM153.898 104.613C150.28 104.613 147.342 103.477 145.087 101.205C142.846 98.9182 141.726 95.8791 141.726 92.0881V91.3832C141.726 88.8454 142.212 86.5818 143.183 84.5923C144.17 82.5871 145.549 81.0284 147.319 79.9162C149.089 78.804 151.063 78.2479 153.24 78.2479C156.702 78.2479 159.373 79.3523 161.253 81.5611C163.149 83.7699 164.096 86.8951 164.096 90.9367V93.2395H147.483C147.656 95.3387 148.353 96.9992 149.575 98.2211C150.812 99.443 152.363 100.054 154.227 100.054C156.843 100.054 158.974 98.9965 160.619 96.8817L163.697 99.819C162.679 101.338 161.316 102.521 159.608 103.367C157.916 104.197 156.013 104.613 153.898 104.613ZM153.217 82.83C151.65 82.83 150.381 83.3782 149.41 84.4748C148.455 85.5714 147.844 87.0987 147.577 89.0569H158.457V88.6339C158.332 86.7228 157.822 85.2816 156.93 84.3103C156.037 83.3234 154.799 82.83 153.217 82.83ZM177.185 96.9052L182.566 78.7178H188.464L179.652 104.143H174.694L165.812 78.7178H171.733L177.185 96.9052ZM202.915 104.613C199.296 104.613 196.359 103.477 194.103 101.205C191.863 98.9182 190.743 95.8791 190.743 92.0881V91.3832C190.743 88.8454 191.229 86.5818 192.2 84.5923C193.187 82.5871 194.565 81.0284 196.336 79.9162C198.106 78.804 200.08 78.2479 202.257 78.2479C205.719 78.2479 208.39 79.3523 210.27 81.5611C212.165 83.7699 213.113 86.8951 213.113 90.9367V93.2395H196.5C196.672 95.3387 197.369 96.9992 198.591 98.2211C199.829 99.443 201.38 100.054 203.244 100.054C205.86 100.054 207.991 98.9965 209.635 96.8817L212.714 99.819C211.695 101.338 210.333 102.521 208.625 103.367C206.933 104.197 205.03 104.613 202.915 104.613ZM202.234 82.83C200.667 82.83 199.398 83.3782 198.427 84.4748C197.471 85.5714 196.86 87.0987 196.594 89.0569H207.474V88.6339C207.348 86.7228 206.839 85.2816 205.946 84.3103C205.053 83.3234 203.816 82.83 202.234 82.83ZM222.865 78.7178L223.029 81.6551C224.909 79.3836 227.376 78.2479 230.431 78.2479C235.726 78.2479 238.42 81.2791 238.514 87.3416V104.143H232.804V87.6705C232.804 86.057 232.452 84.8664 231.747 84.0988C231.058 83.3156 229.922 82.9239 228.34 82.9239C226.037 82.9239 224.322 83.9657 223.194 86.0492V104.143H217.484V78.7178H222.865ZM251.509 72.5379V78.7178H255.997V82.9474H251.509V97.1402C251.509 98.1114 251.697 98.8164 252.073 99.255C252.464 99.678 253.154 99.8895 254.14 99.8895C254.798 99.8895 255.464 99.8111 256.138 99.6545V104.072C254.838 104.432 253.584 104.613 252.378 104.613C247.992 104.613 245.799 102.192 245.799 97.3517V82.9474H241.616V78.7178H245.799V72.5379H251.509ZM74.4988 144.177H61.246L58.4732 152.143H52.2933L65.2171 117.93H70.5511L83.4985 152.143H77.2951L74.4988 144.177ZM62.9143 139.383H72.8304L67.8724 125.19L62.9143 139.383ZM85.7778 139.242C85.7778 135.326 86.6864 132.185 88.5036 129.82C90.3207 127.438 92.7567 126.248 95.8114 126.248C98.5059 126.248 100.683 127.188 102.344 129.068V116.05H108.054V152.143H102.884L102.602 149.511C100.895 151.579 98.6155 152.613 95.7644 152.613C92.788 152.613 90.3756 151.414 88.5271 149.017C86.6942 146.621 85.7778 143.362 85.7778 139.242ZM91.4878 139.736C91.4878 142.32 91.9813 144.341 92.9682 145.798C93.9708 147.239 95.3885 147.96 97.2213 147.96C99.5554 147.96 101.263 146.918 102.344 144.835V133.979C101.294 131.942 99.6024 130.924 97.2683 130.924C95.4198 130.924 93.9943 131.66 92.9917 133.133C91.9891 134.59 91.4878 136.791 91.4878 139.736ZM122.975 144.905L128.356 126.718H134.254L125.442 152.143H120.484L111.602 126.718H117.524L122.975 144.905ZM148.705 152.613C145.087 152.613 142.149 151.477 139.894 149.205C137.653 146.918 136.533 143.879 136.533 140.088V139.383C136.533 136.845 137.019 134.582 137.99 132.592C138.977 130.587 140.356 129.028 142.126 127.916C143.896 126.804 145.87 126.248 148.047 126.248C151.509 126.248 154.18 127.352 156.06 129.561C157.956 131.77 158.903 134.895 158.903 138.937V141.24H142.29C142.463 143.339 143.16 144.999 144.382 146.221C145.619 147.443 147.17 148.054 149.034 148.054C151.65 148.054 153.781 146.997 155.426 144.882L158.504 147.819C157.486 149.338 156.123 150.521 154.415 151.367C152.723 152.197 150.82 152.613 148.705 152.613ZM148.024 130.83C146.457 130.83 145.188 131.378 144.217 132.475C143.262 133.571 142.651 135.099 142.384 137.057H153.264V136.634C153.139 134.723 152.629 133.282 151.737 132.31C150.844 131.323 149.606 130.83 148.024 130.83ZM176.668 131.934C175.916 131.809 175.14 131.746 174.342 131.746C171.725 131.746 169.963 132.749 169.054 134.754V152.143H163.344V126.718H168.796L168.937 129.561C170.316 127.352 172.227 126.248 174.67 126.248C175.485 126.248 176.159 126.358 176.691 126.577L176.668 131.934ZM188.605 120.538V126.718H193.093V130.947H188.605V145.14C188.605 146.111 188.793 146.816 189.169 147.255C189.56 147.678 190.25 147.889 191.237 147.889C191.894 147.889 192.56 147.811 193.234 147.654V152.072C191.934 152.432 190.68 152.613 189.474 152.613C185.088 152.613 182.895 150.192 182.895 145.352V130.947H178.712V126.718H182.895V120.538H188.605ZM203.549 152.143H197.839V126.718H203.549V152.143ZM197.487 120.115C197.487 119.238 197.761 118.509 198.309 117.93C198.873 117.35 199.672 117.06 200.706 117.06C201.74 117.06 202.539 117.35 203.103 117.93C203.667 118.509 203.949 119.238 203.949 120.115C203.949 120.976 203.667 121.697 203.103 122.277C202.539 122.841 201.74 123.123 200.706 123.123C199.672 123.123 198.873 122.841 198.309 122.277C197.761 121.697 197.487 120.976 197.487 120.115ZM224.04 145.234C224.04 144.216 223.617 143.441 222.771 142.908C221.94 142.375 220.554 141.905 218.612 141.498C216.669 141.091 215.048 140.574 213.748 139.947C210.896 138.569 209.471 136.571 209.471 133.955C209.471 131.762 210.395 129.929 212.244 128.457C214.092 126.984 216.442 126.248 219.293 126.248C222.332 126.248 224.784 127 226.648 128.504C228.528 130.008 229.468 131.958 229.468 134.355H223.758C223.758 133.258 223.35 132.349 222.536 131.629C221.721 130.893 220.64 130.524 219.293 130.524C218.04 130.524 217.014 130.814 216.215 131.394C215.432 131.974 215.04 132.749 215.04 133.72C215.04 134.597 215.408 135.279 216.144 135.765C216.881 136.25 218.369 136.744 220.609 137.245C222.849 137.731 224.604 138.318 225.872 139.007C227.157 139.681 228.105 140.495 228.716 141.451C229.342 142.407 229.656 143.566 229.656 144.929C229.656 147.216 228.708 149.072 226.812 150.498C224.917 151.908 222.434 152.613 219.364 152.613C217.28 152.613 215.424 152.237 213.795 151.485C212.165 150.733 210.896 149.699 209.988 148.383C209.079 147.067 208.625 145.649 208.625 144.13H214.17C214.249 145.477 214.758 146.519 215.698 147.255C216.638 147.976 217.883 148.336 219.434 148.336C220.938 148.336 222.081 148.054 222.865 147.49C223.648 146.91 224.04 146.158 224.04 145.234ZM240.723 152.143H235.013V126.718H240.723V152.143ZM234.661 120.115C234.661 119.238 234.935 118.509 235.483 117.93C236.047 117.35 236.846 117.06 237.88 117.06C238.914 117.06 239.713 117.35 240.277 117.93C240.841 118.509 241.123 119.238 241.123 120.115C241.123 120.976 240.841 121.697 240.277 122.277C239.713 122.841 238.914 123.123 237.88 123.123C236.846 123.123 236.047 122.841 235.483 122.277C234.935 121.697 234.661 120.976 234.661 120.115ZM252.261 126.718L252.425 129.655C254.305 127.384 256.772 126.248 259.827 126.248C265.122 126.248 267.816 129.279 267.91 135.342V152.143H262.2V135.671C262.2 134.057 261.848 132.866 261.143 132.099C260.454 131.316 259.318 130.924 257.736 130.924C255.433 130.924 253.718 131.966 252.59 134.049V152.143H246.88V126.718H252.261ZM272.751 139.242C272.751 135.295 273.675 132.146 275.524 129.796C277.388 127.431 279.855 126.248 282.925 126.248C285.824 126.248 288.103 127.258 289.763 129.279L290.022 126.718H295.168V151.367C295.168 154.704 294.126 157.336 292.043 159.262C289.975 161.189 287.179 162.153 283.654 162.153C281.79 162.153 279.965 161.761 278.179 160.978C276.409 160.21 275.061 159.2 274.137 157.947L276.839 154.516C278.594 156.599 280.756 157.641 283.325 157.641C285.22 157.641 286.716 157.124 287.813 156.09C288.91 155.072 289.458 153.568 289.458 151.579V149.863C287.813 151.696 285.62 152.613 282.878 152.613C279.902 152.613 277.466 151.43 275.571 149.064C273.691 146.699 272.751 143.425 272.751 139.242ZM278.437 139.736C278.437 142.289 278.954 144.302 279.988 145.775C281.038 147.232 282.487 147.96 284.335 147.96C286.638 147.96 288.346 146.973 289.458 144.999V133.814C288.377 131.887 286.685 130.924 284.382 130.924C282.502 130.924 281.038 131.668 279.988 133.156C278.954 134.644 278.437 136.838 278.437 139.736ZM78.8224 200.143H72.9009V165.93H78.8224V200.143ZM90.8769 174.718L91.0413 177.655C92.9212 175.384 95.3885 174.248 98.4432 174.248C103.738 174.248 106.432 177.279 106.526 183.342V200.143H100.816V183.671C100.816 182.057 100.464 180.866 99.7591 180.099C99.0698 179.316 97.9341 178.924 96.3519 178.924C94.0491 178.924 92.3337 179.966 91.2058 182.049V200.143H85.4958V174.718H90.8769ZM131.176 200.143H125.254V165.93H131.176V200.143ZM143.301 174.718L143.465 177.373C145.251 175.29 147.695 174.248 150.797 174.248C154.196 174.248 156.522 175.548 157.775 178.149C159.624 175.548 162.224 174.248 165.577 174.248C168.381 174.248 170.464 175.023 171.827 176.574C173.206 178.125 173.911 180.412 173.942 183.436V200.143H168.232V183.6C168.232 181.987 167.88 180.804 167.175 180.052C166.47 179.3 165.303 178.924 163.673 178.924C162.373 178.924 161.308 179.276 160.478 179.981C159.663 180.671 159.091 181.579 158.762 182.707L158.786 200.143H153.076V183.412C152.998 180.42 151.47 178.924 148.494 178.924C146.207 178.924 144.585 179.856 143.63 181.72V200.143H137.92V174.718H143.301ZM194.996 200.143C194.746 199.657 194.526 198.866 194.338 197.769C192.521 199.665 190.297 200.613 187.665 200.613C185.111 200.613 183.028 199.884 181.414 198.427C179.801 196.97 178.994 195.169 178.994 193.023C178.994 190.313 179.997 188.237 182.002 186.796C184.023 185.339 186.905 184.61 190.649 184.61H194.15V182.942C194.15 181.626 193.782 180.577 193.046 179.793C192.31 178.994 191.19 178.595 189.686 178.595C188.385 178.595 187.32 178.924 186.49 179.582C185.66 180.224 185.245 181.047 185.245 182.049H179.535C179.535 180.655 179.997 179.355 180.921 178.149C181.845 176.927 183.098 175.971 184.681 175.282C186.278 174.592 188.056 174.248 190.015 174.248C192.991 174.248 195.364 175 197.135 176.504C198.905 177.992 199.813 180.091 199.86 182.801V194.268C199.86 196.555 200.181 198.38 200.824 199.743V200.143H194.996ZM188.722 196.03C189.85 196.03 190.908 195.756 191.894 195.208C192.897 194.66 193.649 193.923 194.15 192.999V188.206H191.072C188.957 188.206 187.367 188.574 186.302 189.31C185.237 190.046 184.704 191.088 184.704 192.435C184.704 193.532 185.064 194.409 185.785 195.067C186.521 195.709 187.5 196.03 188.722 196.03ZM204.842 187.242C204.842 183.295 205.766 180.146 207.615 177.796C209.479 175.431 211.946 174.248 215.016 174.248C217.915 174.248 220.194 175.258 221.854 177.279L222.113 174.718H227.259V199.367C227.259 202.704 226.217 205.336 224.134 207.262C222.066 209.189 219.27 210.153 215.745 210.153C213.881 210.153 212.056 209.761 210.27 208.978C208.5 208.21 207.152 207.2 206.228 205.947L208.93 202.516C210.685 204.599 212.847 205.641 215.416 205.641C217.311 205.641 218.807 205.124 219.904 204.09C221.001 203.072 221.549 201.568 221.549 199.579V197.863C219.904 199.696 217.711 200.613 214.969 200.613C211.993 200.613 209.557 199.43 207.662 197.064C205.782 194.699 204.842 191.425 204.842 187.242ZM210.528 187.736C210.528 190.289 211.045 192.302 212.079 193.775C213.129 195.232 214.578 195.96 216.426 195.96C218.729 195.96 220.437 194.973 221.549 192.999V181.814C220.468 179.887 218.776 178.924 216.473 178.924C214.593 178.924 213.129 179.668 212.079 181.156C211.045 182.644 210.528 184.838 210.528 187.736ZM244.342 200.613C240.723 200.613 237.786 199.477 235.53 197.205C233.29 194.918 232.17 191.879 232.17 188.088V187.383C232.17 184.845 232.656 182.582 233.627 180.592C234.614 178.587 235.992 177.028 237.762 175.916C239.533 174.804 241.506 174.248 243.684 174.248C247.146 174.248 249.817 175.352 251.697 177.561C253.592 179.77 254.54 182.895 254.54 186.937V189.24H237.927C238.099 191.339 238.796 192.999 240.018 194.221C241.256 195.443 242.807 196.054 244.671 196.054C247.287 196.054 249.417 194.997 251.062 192.882L254.14 195.819C253.122 197.338 251.759 198.521 250.052 199.367C248.36 200.197 246.457 200.613 244.342 200.613ZM243.66 178.83C242.094 178.83 240.825 179.378 239.854 180.475C238.898 181.571 238.287 183.099 238.021 185.057H248.9V184.634C248.775 182.723 248.266 181.282 247.373 180.31C246.48 179.323 245.243 178.83 243.66 178.83ZM273.244 193.234C273.244 192.216 272.821 191.441 271.975 190.908C271.145 190.375 269.759 189.905 267.816 189.498C265.874 189.091 264.252 188.574 262.952 187.947C260.101 186.569 258.676 184.571 258.676 181.955C258.676 179.762 259.6 177.929 261.448 176.457C263.297 174.984 265.647 174.248 268.498 174.248C271.537 174.248 273.988 175 275.853 176.504C277.732 178.008 278.672 179.958 278.672 182.355H272.962C272.962 181.258 272.555 180.349 271.74 179.629C270.926 178.893 269.845 178.524 268.498 178.524C267.245 178.524 266.218 178.814 265.419 179.394C264.636 179.974 264.245 180.749 264.245 181.72C264.245 182.597 264.613 183.279 265.349 183.765C266.085 184.25 267.573 184.744 269.814 185.245C272.054 185.731 273.808 186.318 275.077 187.007C276.362 187.681 277.309 188.495 277.92 189.451C278.547 190.407 278.86 191.566 278.86 192.929C278.86 195.216 277.913 197.072 276.017 198.498C274.122 199.908 271.639 200.613 268.568 200.613C266.485 200.613 264.628 200.237 262.999 199.485C261.37 198.733 260.101 197.699 259.193 196.383C258.284 195.067 257.83 193.649 257.83 192.13H263.375C263.454 193.477 263.963 194.519 264.903 195.255C265.842 195.976 267.088 196.336 268.639 196.336C270.143 196.336 271.286 196.054 272.069 195.49C272.853 194.91 273.244 194.158 273.244 193.234Z" fill="url(#paint1_linear)"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.968" height="349.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="368.806" y2="88.7487" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="140.153" y1="64.1426" x2="243.092" y2="106.496" gradientUnits="userSpaceOnUse">
-<stop stop-color="#65CC76"/>
-<stop offset="1" stop-color="#60B358"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Logging.svg b/public/Features/RSM/Logging.svg
deleted file mode 100644
index 745ac77..0000000
--- a/public/Features/RSM/Logging.svg
+++ /dev/null
@@ -1,58 +0,0 @@
-<svg width="350" height="350" viewBox="0 0 350 350" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="300" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="25" y="25" width="300" height="300">
-<rect x="25" y="25" width="299.103" height="299.103" rx="25.3283" fill="url(#paint1_linear)"/>
-</mask>
-<g mask="url(#mask0)">
-<g filter="url(#filter1_d)">
-<rect x="44.4443" y="-18.1816" width="260.859" height="82.3232" rx="2.53283" fill="white"/>
-<path d="M44.4443 -15.6488C44.4443 -17.0477 45.5783 -18.1816 46.9772 -18.1816H50.5049V64.1416H46.9772C45.5783 64.1416 44.4443 63.0076 44.4443 61.6088V-15.6488Z" fill="#F27878"/>
-<rect x="44.4443" y="81.3135" width="260.859" height="82.3232" rx="2.53283" fill="white"/>
-<path d="M44.4443 83.8463C44.4443 82.4475 45.5783 81.3135 46.9772 81.3135H50.5049V163.637H46.9772C45.5783 163.637 44.4443 162.503 44.4443 161.104V83.8463Z" fill="#F27878"/>
-<rect x="44.4443" y="180.808" width="260.859" height="82.3232" rx="2.53283" fill="white"/>
-<path d="M44.4443 183.34C44.4443 181.942 45.5783 180.808 46.9772 180.808H50.5049V263.131H46.9772C45.5783 263.131 44.4443 261.997 44.4443 260.598V183.34Z" fill="#F27878"/>
-<rect x="44.4443" y="280.304" width="260.859" height="82.3232" rx="2.53283" fill="white"/>
-<path d="M44.4443 282.837C44.4443 281.438 45.5783 280.304 46.9772 280.304H50.5049V362.627H46.9772C45.5783 362.627 44.4443 361.493 44.4443 360.094V282.837Z" fill="#F27878"/>
-</g>
-</g>
-<path d="M77.2361 106.118L74.5994 108.716V115.417H73.0174V96.6899H74.5994V106.787L84.1945 96.6899H86.1881L78.3422 105.024L86.7926 115.417H84.8633L77.2361 106.118ZM94.3297 115.674C93.1464 115.674 92.0746 115.383 91.1142 114.8C90.1624 114.217 89.4207 113.406 88.8891 112.369C88.3575 111.323 88.0916 110.152 88.0916 108.857V108.304C88.0916 106.967 88.3489 105.762 88.8634 104.69C89.3864 103.618 90.111 102.778 91.0371 102.169C91.9631 101.552 92.9664 101.243 94.0468 101.243C95.736 101.243 97.0736 101.822 98.0597 102.979C99.0544 104.128 99.5517 105.702 99.5517 107.7V108.562H89.6222V108.857C89.6222 110.435 90.0724 111.751 90.9727 112.806C91.8817 113.852 93.0221 114.375 94.394 114.375C95.2172 114.375 95.9418 114.225 96.5677 113.925C97.2023 113.625 97.7768 113.145 98.2912 112.484L99.2559 113.218C98.124 114.855 96.482 115.674 94.3297 115.674ZM94.0468 102.555C92.8892 102.555 91.9117 102.979 91.1142 103.828C90.3254 104.677 89.8452 105.818 89.6737 107.25H98.0211V107.082C97.9783 105.745 97.5967 104.656 96.8764 103.815C96.1561 102.975 95.2129 102.555 94.0468 102.555ZM107.938 115.674C106.754 115.674 105.683 115.383 104.722 114.8C103.77 114.217 103.029 113.406 102.497 112.369C101.965 111.323 101.7 110.152 101.7 108.857V108.304C101.7 106.967 101.957 105.762 102.471 104.69C102.994 103.618 103.719 102.778 104.645 102.169C105.571 101.552 106.574 101.243 107.655 101.243C109.344 101.243 110.682 101.822 111.668 102.979C112.662 104.128 113.16 105.702 113.16 107.7V108.562H103.23V108.857C103.23 110.435 103.68 111.751 104.581 112.806C105.49 113.852 106.63 114.375 108.002 114.375C108.825 114.375 109.55 114.225 110.176 113.925C110.81 113.625 111.385 113.145 111.899 112.484L112.864 113.218C111.732 114.855 110.09 115.674 107.938 115.674ZM107.655 102.555C106.497 102.555 105.52 102.979 104.722 103.828C103.933 104.677 103.453 105.818 103.282 107.25H111.629V107.082C111.586 105.745 111.205 104.656 110.484 103.815C109.764 102.975 108.821 102.555 107.655 102.555ZM127.347 108.6C127.347 110.77 126.866 112.493 125.906 113.771C124.946 115.04 123.659 115.674 122.047 115.674C120.144 115.674 118.686 115.005 117.674 113.668V120.768H116.144V101.5H117.571L117.649 103.468C118.652 101.985 120.105 101.243 122.009 101.243C123.672 101.243 124.976 101.873 125.919 103.134C126.871 104.394 127.347 106.143 127.347 108.381V108.6ZM125.803 108.33C125.803 106.555 125.439 105.153 124.71 104.124C123.981 103.095 122.965 102.581 121.662 102.581C120.718 102.581 119.908 102.808 119.231 103.262C118.553 103.717 118.034 104.377 117.674 105.243V111.919C118.043 112.716 118.57 113.325 119.256 113.745C119.942 114.165 120.753 114.375 121.687 114.375C122.982 114.375 123.99 113.861 124.71 112.832C125.439 111.794 125.803 110.294 125.803 108.33ZM139.565 97.9375V101.5H142.447V102.761H139.565V112.034C139.565 112.806 139.703 113.381 139.977 113.758C140.26 114.135 140.727 114.324 141.379 114.324C141.636 114.324 142.052 114.281 142.627 114.195L142.691 115.456C142.288 115.601 141.739 115.674 141.045 115.674C139.99 115.674 139.222 115.37 138.742 114.761C138.262 114.144 138.022 113.239 138.022 112.047V102.761H135.462V101.5H138.022V97.9375H139.565ZM152.067 102.812C151.742 102.752 151.394 102.722 151.026 102.722C150.065 102.722 149.251 102.992 148.582 103.532C147.922 104.064 147.45 104.84 147.167 105.861V115.417H145.636V101.5H147.141L147.167 103.713C147.982 102.066 149.289 101.243 151.09 101.243C151.519 101.243 151.857 101.299 152.106 101.41L152.067 102.812ZM162.781 115.417C162.627 114.98 162.528 114.332 162.486 113.475C161.945 114.178 161.255 114.722 160.415 115.108C159.583 115.486 158.7 115.674 157.765 115.674C156.428 115.674 155.343 115.301 154.511 114.555C153.688 113.809 153.276 112.866 153.276 111.726C153.276 110.371 153.838 109.299 154.961 108.51C156.093 107.721 157.667 107.327 159.682 107.327H162.473V105.745C162.473 104.75 162.164 103.97 161.547 103.404C160.938 102.829 160.046 102.542 158.871 102.542C157.8 102.542 156.912 102.816 156.209 103.365C155.506 103.914 155.154 104.574 155.154 105.346L153.611 105.333C153.611 104.227 154.125 103.271 155.154 102.465C156.183 101.65 157.448 101.243 158.949 101.243C160.501 101.243 161.722 101.633 162.614 102.413C163.515 103.185 163.978 104.266 164.003 105.655V112.24C164.003 113.586 164.145 114.594 164.428 115.263V115.417H162.781ZM157.945 114.311C158.974 114.311 159.892 114.062 160.698 113.565C161.512 113.068 162.104 112.403 162.473 111.571V108.51H159.72C158.185 108.527 156.985 108.81 156.119 109.359C155.253 109.899 154.82 110.645 154.82 111.597C154.82 112.377 155.107 113.025 155.682 113.539C156.265 114.054 157.019 114.311 157.945 114.311ZM173.264 114.375C174.336 114.375 175.232 114.075 175.952 113.475C176.681 112.866 177.075 112.081 177.135 111.121H178.615C178.572 111.97 178.306 112.746 177.817 113.449C177.328 114.144 176.677 114.688 175.862 115.083C175.056 115.477 174.19 115.674 173.264 115.674C171.438 115.674 169.988 115.04 168.917 113.771C167.853 112.502 167.322 110.795 167.322 108.652V108.189C167.322 106.817 167.562 105.603 168.042 104.549C168.522 103.494 169.208 102.679 170.1 102.105C171 101.53 172.051 101.243 173.251 101.243C174.777 101.243 176.034 101.697 177.02 102.606C178.014 103.515 178.546 104.711 178.615 106.195H177.135C177.067 105.106 176.672 104.227 175.952 103.558C175.24 102.889 174.34 102.555 173.251 102.555C171.862 102.555 170.782 103.057 170.01 104.06C169.247 105.063 168.865 106.469 168.865 108.279V108.729C168.865 110.504 169.247 111.889 170.01 112.883C170.782 113.878 171.866 114.375 173.264 114.375ZM185.007 108.407L183.245 110.105V115.417H181.701V95.6609H183.245V108.304L184.698 106.735L190.023 101.5H191.965L186.062 107.365L192.48 115.417H190.641L185.007 108.407ZM200.171 108.253C200.171 106.915 200.429 105.71 200.943 104.639C201.466 103.567 202.199 102.735 203.142 102.143C204.094 101.543 205.17 101.243 206.371 101.243C208.223 101.243 209.724 101.895 210.873 103.198C212.022 104.493 212.596 106.212 212.596 108.356V108.677C212.596 110.024 212.335 111.237 211.811 112.317C211.297 113.389 210.568 114.217 209.625 114.8C208.682 115.383 207.606 115.674 206.397 115.674C204.553 115.674 203.052 115.027 201.895 113.732C200.746 112.429 200.171 110.705 200.171 108.562V108.253ZM201.715 108.677C201.715 110.341 202.144 111.708 203.001 112.78C203.867 113.844 204.999 114.375 206.397 114.375C207.786 114.375 208.909 113.844 209.766 112.78C210.632 111.708 211.065 110.298 211.065 108.549V108.253C211.065 107.19 210.868 106.216 210.474 105.333C210.079 104.45 209.526 103.768 208.815 103.288C208.103 102.799 207.288 102.555 206.371 102.555C204.999 102.555 203.88 103.095 203.014 104.176C202.148 105.247 201.715 106.654 201.715 108.394V108.677ZM216.892 115.417V102.761H214.59V101.5H216.892V99.8154C216.892 98.392 217.252 97.2987 217.972 96.5355C218.701 95.7724 219.713 95.3908 221.008 95.3908C221.591 95.3908 222.135 95.4637 222.641 95.6095L222.526 96.8957C222.097 96.7928 221.629 96.7413 221.124 96.7413C220.275 96.7413 219.614 97.0071 219.143 97.5388C218.671 98.0618 218.435 98.8078 218.435 99.7768V101.5H221.754V102.761H218.435V115.417H216.892ZM235.323 113.205L239.388 101.5H241.047L235.105 117.784L234.796 118.504C234.033 120.193 232.854 121.038 231.259 121.038C230.89 121.038 230.496 120.978 230.076 120.858L230.063 119.584L230.86 119.661C231.615 119.661 232.224 119.473 232.687 119.096C233.158 118.727 233.557 118.088 233.883 117.179L234.564 115.301L229.317 101.5H231.002L235.323 113.205ZM242.385 108.253C242.385 106.915 242.642 105.71 243.156 104.639C243.679 103.567 244.412 102.735 245.356 102.143C246.307 101.543 247.384 101.243 248.584 101.243C250.436 101.243 251.937 101.895 253.086 103.198C254.235 104.493 254.809 106.212 254.809 108.356V108.677C254.809 110.024 254.548 111.237 254.025 112.317C253.51 113.389 252.781 114.217 251.838 114.8C250.895 115.383 249.819 115.674 248.61 115.674C246.766 115.674 245.266 115.027 244.108 113.732C242.959 112.429 242.385 110.705 242.385 108.562V108.253ZM243.928 108.677C243.928 110.341 244.357 111.708 245.214 112.78C246.08 113.844 247.212 114.375 248.61 114.375C249.999 114.375 251.122 113.844 251.98 112.78C252.846 111.708 253.279 110.298 253.279 108.549V108.253C253.279 107.19 253.081 106.216 252.687 105.333C252.293 104.45 251.74 103.768 251.028 103.288C250.316 102.799 249.502 102.555 248.584 102.555C247.212 102.555 246.093 103.095 245.227 104.176C244.361 105.247 243.928 106.654 243.928 108.394V108.677ZM266.951 113.655C266.025 115.001 264.546 115.674 262.514 115.674C261.03 115.674 259.903 115.245 259.131 114.388C258.359 113.522 257.965 112.244 257.948 110.555V101.5H259.478V110.362C259.478 113.012 260.55 114.337 262.694 114.337C264.923 114.337 266.334 113.415 266.925 111.571V101.5H268.469V115.417H266.977L266.951 113.655ZM278.913 102.812C278.587 102.752 278.24 102.722 277.871 102.722C276.91 102.722 276.096 102.992 275.427 103.532C274.767 104.064 274.295 104.84 274.012 105.861V115.417H272.482V101.5H273.987L274.012 103.713C274.827 102.066 276.134 101.243 277.935 101.243C278.364 101.243 278.703 101.299 278.951 101.41L278.913 102.812ZM95.4745 132.5L95.5259 134.764C96.0404 133.924 96.6835 133.293 97.4552 132.873C98.2269 132.453 99.0844 132.243 100.028 132.243C102.223 132.243 103.616 133.143 104.208 134.944C104.705 134.078 105.37 133.413 106.201 132.95C107.033 132.479 107.951 132.243 108.954 132.243C111.938 132.243 113.46 133.872 113.52 137.131V146.417H111.976V137.246C111.968 136.003 111.698 135.081 111.166 134.481C110.643 133.881 109.786 133.581 108.594 133.581C107.488 133.598 106.553 133.958 105.79 134.661C105.027 135.356 104.602 136.205 104.516 137.208V146.417H102.973V137.131C102.964 135.939 102.681 135.051 102.124 134.468C101.575 133.877 100.726 133.581 99.5774 133.581C98.6085 133.581 97.7768 133.859 97.0822 134.417C96.3877 134.966 95.8732 135.784 95.5388 136.873V146.417H93.9953V132.5H95.4745ZM122.819 146.674C121.636 146.674 120.564 146.383 119.604 145.8C118.652 145.217 117.91 144.406 117.378 143.369C116.847 142.323 116.581 141.152 116.581 139.857V139.304C116.581 137.967 116.838 136.762 117.353 135.69C117.876 134.618 118.6 133.778 119.526 133.169C120.453 132.552 121.456 132.243 122.536 132.243C124.225 132.243 125.563 132.822 126.549 133.979C127.544 135.128 128.041 136.702 128.041 138.7V139.562H118.112V139.857C118.112 141.435 118.562 142.751 119.462 143.806C120.371 144.852 121.511 145.375 122.883 145.375C123.707 145.375 124.431 145.225 125.057 144.925C125.692 144.625 126.266 144.145 126.781 143.484L127.745 144.218C126.613 145.855 124.971 146.674 122.819 146.674ZM122.536 133.555C121.379 133.555 120.401 133.979 119.604 134.828C118.815 135.677 118.335 136.818 118.163 138.25H126.511V138.082C126.468 136.745 126.086 135.656 125.366 134.815C124.646 133.975 123.702 133.555 122.536 133.555ZM132.44 132.5L132.491 134.764C133.006 133.924 133.649 133.293 134.421 132.873C135.192 132.453 136.05 132.243 136.993 132.243C139.188 132.243 140.582 133.143 141.173 134.944C141.671 134.078 142.335 133.413 143.167 132.95C143.999 132.479 144.916 132.243 145.919 132.243C148.903 132.243 150.425 133.872 150.485 137.131V146.417H148.942V137.246C148.933 136.003 148.663 135.081 148.132 134.481C147.609 133.881 146.751 133.581 145.559 133.581C144.453 133.598 143.518 133.958 142.755 134.661C141.992 135.356 141.568 136.205 141.482 137.208V146.417H139.938V137.131C139.93 135.939 139.647 135.051 139.09 134.468C138.541 133.877 137.692 133.581 136.543 133.581C135.574 133.581 134.742 133.859 134.048 134.417C133.353 134.966 132.839 135.784 132.504 136.873V146.417H130.961V132.5H132.44ZM165.598 139.6C165.598 141.77 165.118 143.493 164.158 144.771C163.197 146.04 161.907 146.674 160.286 146.674C158.348 146.674 156.882 145.954 155.887 144.513L155.823 146.417H154.383V126.661H155.913V134.52C156.891 133.002 158.34 132.243 160.26 132.243C161.907 132.243 163.206 132.873 164.158 134.134C165.118 135.386 165.598 137.131 165.598 139.369V139.6ZM164.055 139.33C164.055 137.495 163.699 136.08 162.987 135.086C162.276 134.082 161.272 133.581 159.978 133.581C158.991 133.581 158.155 133.825 157.469 134.314C156.783 134.794 156.265 135.501 155.913 136.436V142.713C156.685 144.462 158.048 145.337 160.003 145.337C161.272 145.337 162.263 144.835 162.974 143.832C163.695 142.828 164.055 141.328 164.055 139.33ZM174.396 146.674C173.213 146.674 172.141 146.383 171.18 145.8C170.229 145.217 169.487 144.406 168.955 143.369C168.424 142.323 168.158 141.152 168.158 139.857V139.304C168.158 137.967 168.415 136.762 168.929 135.69C169.453 134.618 170.177 133.778 171.103 133.169C172.029 132.552 173.032 132.243 174.113 132.243C175.802 132.243 177.14 132.822 178.126 133.979C179.12 135.128 179.618 136.702 179.618 138.7V139.562H169.688V139.857C169.688 141.435 170.139 142.751 171.039 143.806C171.948 144.852 173.088 145.375 174.46 145.375C175.283 145.375 176.008 145.225 176.634 144.925C177.268 144.625 177.843 144.145 178.357 143.484L179.322 144.218C178.19 145.855 176.548 146.674 174.396 146.674ZM174.113 133.555C172.955 133.555 171.978 133.979 171.18 134.828C170.391 135.677 169.911 136.818 169.74 138.25H178.087V138.082C178.044 136.745 177.663 135.656 176.943 134.815C176.222 133.975 175.279 133.555 174.113 133.555ZM189.046 133.812C188.72 133.752 188.373 133.722 188.004 133.722C187.044 133.722 186.229 133.992 185.56 134.532C184.9 135.064 184.428 135.84 184.145 136.861V146.417H182.615V132.5H184.12L184.145 134.713C184.96 133.066 186.267 132.243 188.068 132.243C188.497 132.243 188.836 132.299 189.084 132.41L189.046 133.812ZM199.824 142.88C199.824 142.117 199.515 141.504 198.898 141.041C198.289 140.578 197.367 140.217 196.133 139.96C194.898 139.694 193.938 139.394 193.252 139.06C192.574 138.717 192.068 138.301 191.734 137.812C191.408 137.324 191.245 136.732 191.245 136.037C191.245 134.94 191.704 134.035 192.621 133.323C193.539 132.603 194.714 132.243 196.146 132.243C197.698 132.243 198.941 132.629 199.876 133.401C200.819 134.164 201.29 135.163 201.29 136.397H199.747C199.747 135.583 199.404 134.905 198.718 134.365C198.041 133.825 197.183 133.555 196.146 133.555C195.134 133.555 194.319 133.782 193.702 134.237C193.093 134.683 192.789 135.266 192.789 135.986C192.789 136.68 193.042 137.221 193.547 137.607C194.062 137.984 194.992 138.331 196.338 138.648C197.693 138.966 198.705 139.304 199.374 139.664C200.051 140.025 200.553 140.458 200.879 140.963C201.205 141.469 201.368 142.082 201.368 142.803C201.368 143.977 200.892 144.916 199.94 145.62C198.997 146.323 197.762 146.674 196.236 146.674C194.615 146.674 193.299 146.284 192.287 145.504C191.284 144.715 190.782 143.72 190.782 142.52H192.326C192.386 143.42 192.763 144.123 193.457 144.629C194.16 145.127 195.087 145.375 196.236 145.375C197.307 145.375 198.173 145.139 198.834 144.668C199.494 144.196 199.824 143.6 199.824 142.88ZM214.577 143.214L214.808 144.411L215.117 143.15L218.461 132.5H219.773L223.079 143.06L223.439 144.526L223.735 143.176L226.59 132.5H228.185L224.133 146.417H222.821L219.246 135.381L219.079 134.623L218.911 135.394L215.4 146.417H214.088L210.049 132.5H211.631L214.577 143.214ZM232.828 146.417H231.285V132.5H232.828V146.417ZM231.014 128.474C231.014 128.183 231.109 127.939 231.297 127.741C231.486 127.536 231.743 127.433 232.069 127.433C232.395 127.433 232.652 127.536 232.841 127.741C233.038 127.939 233.137 128.183 233.137 128.474C233.137 128.766 233.038 129.01 232.841 129.208C232.652 129.405 232.395 129.503 232.069 129.503C231.743 129.503 231.486 129.405 231.297 129.208C231.109 129.01 231.014 128.766 231.014 128.474ZM239.413 128.937V132.5H242.294V133.761H239.413V143.034C239.413 143.806 239.551 144.381 239.825 144.758C240.108 145.135 240.575 145.324 241.227 145.324C241.484 145.324 241.9 145.281 242.475 145.195L242.539 146.456C242.136 146.601 241.587 146.674 240.893 146.674C239.838 146.674 239.07 146.37 238.59 145.761C238.11 145.144 237.87 144.239 237.87 143.047V133.761H235.31V132.5H237.87V128.937H239.413ZM247.015 134.854C247.521 134.022 248.168 133.379 248.957 132.925C249.746 132.47 250.608 132.243 251.542 132.243C253.034 132.243 254.145 132.663 254.874 133.504C255.602 134.344 255.971 135.604 255.98 137.285V146.417H254.449V137.272C254.441 136.029 254.175 135.103 253.652 134.494C253.137 133.885 252.31 133.581 251.169 133.581C250.217 133.581 249.373 133.881 248.635 134.481C247.907 135.073 247.366 135.874 247.015 136.886V146.417H245.484V126.661H247.015V134.854Z" fill="black"/>
-<path d="M90.784 194.877H77.5312L74.7585 202.843H68.5785L81.5024 168.63H86.8364L99.7837 202.843H93.5803L90.784 194.877ZM79.1996 190.083H89.1157L84.1576 175.891L79.1996 190.083ZM102.063 189.942C102.063 186.026 102.972 182.885 104.789 180.52C106.606 178.139 109.042 176.948 112.097 176.948C114.791 176.948 116.969 177.888 118.629 179.768V166.75H124.339V202.843H119.17L118.888 200.211C117.18 202.279 114.901 203.313 112.05 203.313C109.073 203.313 106.661 202.114 104.812 199.718C102.979 197.321 102.063 194.062 102.063 189.942ZM107.773 190.436C107.773 193.021 108.267 195.041 109.253 196.498C110.256 197.94 111.674 198.66 113.507 198.66C115.841 198.66 117.548 197.618 118.629 195.535V184.679C117.58 182.642 115.888 181.624 113.554 181.624C111.705 181.624 110.279 182.36 109.277 183.833C108.274 185.29 107.773 187.491 107.773 190.436ZM139.26 195.605L144.641 177.418H150.539L141.728 202.843H136.769L127.887 177.418H133.809L139.26 195.605ZM168.938 202.843C168.688 202.357 168.468 201.566 168.28 200.469C166.463 202.365 164.239 203.313 161.607 203.313C159.053 203.313 156.97 202.584 155.356 201.127C153.743 199.671 152.936 197.869 152.936 195.723C152.936 193.013 153.939 190.937 155.944 189.496C157.965 188.039 160.847 187.311 164.591 187.311H168.092V185.642C168.092 184.326 167.724 183.277 166.988 182.494C166.252 181.695 165.131 181.295 163.628 181.295C162.327 181.295 161.262 181.624 160.432 182.282C159.602 182.924 159.187 183.747 159.187 184.749H153.477C153.477 183.355 153.939 182.055 154.863 180.849C155.787 179.627 157.04 178.671 158.623 177.982C160.22 177.293 161.998 176.948 163.957 176.948C166.933 176.948 169.306 177.7 171.076 179.204C172.847 180.692 173.755 182.791 173.802 185.501V196.968C173.802 199.255 174.123 201.08 174.766 202.443V202.843H168.938ZM162.664 198.731C163.792 198.731 164.85 198.456 165.836 197.908C166.839 197.36 167.591 196.624 168.092 195.699V190.906H165.014C162.899 190.906 161.309 191.274 160.244 192.01C159.179 192.746 158.646 193.788 158.646 195.135C158.646 196.232 159.006 197.109 159.727 197.767C160.463 198.409 161.442 198.731 162.664 198.731ZM185.081 177.418L185.246 180.355C187.126 178.084 189.593 176.948 192.648 176.948C197.942 176.948 200.637 179.979 200.731 186.042V202.843H195.021V186.371C195.021 184.757 194.668 183.567 193.963 182.799C193.274 182.016 192.138 181.624 190.556 181.624C188.253 181.624 186.538 182.666 185.41 184.749V202.843H179.7V177.418H185.081ZM217.015 198.754C218.44 198.754 219.623 198.339 220.563 197.509C221.503 196.678 222.004 195.652 222.067 194.431H227.448C227.385 196.013 226.892 197.493 225.968 198.872C225.043 200.235 223.79 201.315 222.208 202.114C220.626 202.913 218.918 203.313 217.085 203.313C213.529 203.313 210.71 202.161 208.626 199.859C206.543 197.556 205.501 194.376 205.501 190.318V189.731C205.501 185.862 206.535 182.768 208.603 180.449C210.67 178.115 213.49 176.948 217.062 176.948C220.085 176.948 222.545 177.833 224.44 179.603C226.351 181.358 227.354 183.668 227.448 186.535H222.067C222.004 185.078 221.503 183.88 220.563 182.94C219.639 182 218.456 181.53 217.015 181.53C215.166 181.53 213.741 182.204 212.738 183.551C211.736 184.883 211.227 186.911 211.211 189.637V190.553C211.211 193.31 211.704 195.37 212.691 196.733C213.694 198.081 215.135 198.754 217.015 198.754ZM242.957 203.313C239.338 203.313 236.401 202.177 234.145 199.906C231.905 197.618 230.785 194.579 230.785 190.788V190.083C230.785 187.546 231.27 185.282 232.242 183.292C233.228 181.287 234.607 179.729 236.377 178.616C238.147 177.504 240.121 176.948 242.299 176.948C245.761 176.948 248.432 178.052 250.311 180.261C252.207 182.47 253.155 185.595 253.155 189.637V191.94H236.542C236.714 194.039 237.411 195.699 238.633 196.921C239.871 198.143 241.421 198.754 243.286 198.754C245.902 198.754 248.032 197.697 249.677 195.582L252.755 198.519C251.737 200.039 250.374 201.221 248.667 202.067C246.975 202.898 245.071 203.313 242.957 203.313ZM242.275 181.53C240.709 181.53 239.44 182.078 238.469 183.175C237.513 184.272 236.902 185.799 236.636 187.757H247.515V187.334C247.39 185.423 246.881 183.982 245.988 183.011C245.095 182.024 243.857 181.53 242.275 181.53ZM256.538 189.942C256.538 186.026 257.447 182.885 259.264 180.52C261.081 178.139 263.517 176.948 266.572 176.948C269.266 176.948 271.444 177.888 273.104 179.768V166.75H278.814V202.843H273.645L273.363 200.211C271.655 202.279 269.376 203.313 266.525 203.313C263.549 203.313 261.136 202.114 259.288 199.718C257.455 197.321 256.538 194.062 256.538 189.942ZM262.248 190.436C262.248 193.021 262.742 195.041 263.729 196.498C264.731 197.94 266.149 198.66 267.982 198.66C270.316 198.66 272.024 197.618 273.104 195.535V184.679C272.055 182.642 270.363 181.624 268.029 181.624C266.18 181.624 264.755 182.36 263.752 183.833C262.75 185.29 262.248 187.491 262.248 190.436ZM97.199 246.096H112.731V250.843H91.254V216.63H97.199V246.096ZM115.668 237.895C115.668 235.405 116.162 233.164 117.149 231.175C118.136 229.17 119.522 227.635 121.308 226.569C123.094 225.489 125.146 224.948 127.464 224.948C130.895 224.948 133.676 226.052 135.806 228.261C137.952 230.47 139.111 233.399 139.284 237.049L139.307 238.389C139.307 240.895 138.822 243.135 137.85 245.109C136.895 247.083 135.516 248.61 133.715 249.691C131.929 250.772 129.861 251.313 127.511 251.313C123.924 251.313 121.049 250.122 118.888 247.741C116.741 245.344 115.668 242.156 115.668 238.177V237.895ZM121.378 238.389C121.378 241.005 121.919 243.057 123 244.545C124.081 246.018 125.584 246.754 127.511 246.754C129.438 246.754 130.934 246.002 131.999 244.498C133.08 242.994 133.621 240.793 133.621 237.895C133.621 235.326 133.065 233.29 131.952 231.786C130.856 230.282 129.36 229.53 127.464 229.53C125.6 229.53 124.12 230.274 123.023 231.762C121.927 233.235 121.378 235.444 121.378 238.389ZM143.137 237.942C143.137 233.995 144.062 230.846 145.91 228.496C147.774 226.131 150.242 224.948 153.312 224.948C156.21 224.948 158.489 225.958 160.15 227.979L160.408 225.418H165.554V250.067C165.554 253.404 164.513 256.036 162.429 257.963C160.361 259.889 157.565 260.853 154.04 260.853C152.176 260.853 150.351 260.461 148.565 259.678C146.795 258.91 145.448 257.9 144.524 256.647L147.226 253.216C148.981 255.3 151.142 256.341 153.712 256.341C155.607 256.341 157.103 255.824 158.2 254.79C159.296 253.772 159.844 252.268 159.844 250.279V248.563C158.2 250.396 156.006 251.313 153.265 251.313C150.289 251.313 147.853 250.13 145.957 247.765C144.077 245.399 143.137 242.125 143.137 237.942ZM148.824 238.436C148.824 240.989 149.341 243.002 150.375 244.475C151.424 245.932 152.873 246.66 154.722 246.66C157.025 246.66 158.732 245.673 159.844 243.699V232.514C158.764 230.588 157.072 229.624 154.769 229.624C152.889 229.624 151.424 230.368 150.375 231.856C149.341 233.345 148.824 235.538 148.824 238.436ZM170.442 237.942C170.442 233.995 171.366 230.846 173.215 228.496C175.079 226.131 177.546 224.948 180.617 224.948C183.515 224.948 185.794 225.958 187.455 227.979L187.713 225.418H192.859V250.067C192.859 253.404 191.817 256.036 189.734 257.963C187.666 259.889 184.87 260.853 181.345 260.853C179.481 260.853 177.656 260.461 175.87 259.678C174.1 258.91 172.753 257.9 171.828 256.647L174.531 253.216C176.285 255.3 178.447 256.341 181.016 256.341C182.912 256.341 184.408 255.824 185.504 254.79C186.601 253.772 187.149 252.268 187.149 250.279V248.563C185.504 250.396 183.311 251.313 180.57 251.313C177.593 251.313 175.157 250.13 173.262 247.765C171.382 245.399 170.442 242.125 170.442 237.942ZM176.129 238.436C176.129 240.989 176.645 243.002 177.679 244.475C178.729 245.932 180.178 246.66 182.027 246.66C184.329 246.66 186.037 245.673 187.149 243.699V232.514C186.068 230.588 184.376 229.624 182.074 229.624C180.194 229.624 178.729 230.368 177.679 231.856C176.645 233.345 176.129 235.538 176.129 238.436ZM204.82 250.843H199.11V225.418H204.82V250.843ZM198.757 218.815C198.757 217.938 199.031 217.209 199.579 216.63C200.143 216.05 200.942 215.76 201.976 215.76C203.01 215.76 203.809 216.05 204.373 216.63C204.937 217.209 205.219 217.938 205.219 218.815C205.219 219.677 204.937 220.397 204.373 220.977C203.809 221.541 203.01 221.823 201.976 221.823C200.942 221.823 200.143 221.541 199.579 220.977C199.031 220.397 198.757 219.677 198.757 218.815ZM216.357 225.418L216.521 228.355C218.401 226.084 220.869 224.948 223.923 224.948C229.218 224.948 231.913 227.979 232.007 234.042V250.843H226.297V234.371C226.297 232.757 225.944 231.567 225.239 230.799C224.55 230.016 223.414 229.624 221.832 229.624C219.529 229.624 217.814 230.666 216.686 232.749V250.843H210.976V225.418H216.357ZM236.847 237.942C236.847 233.995 237.771 230.846 239.62 228.496C241.484 226.131 243.951 224.948 247.022 224.948C249.92 224.948 252.199 225.958 253.86 227.979L254.118 225.418H259.264V250.067C259.264 253.404 258.222 256.036 256.139 257.963C254.071 259.889 251.275 260.853 247.75 260.853C245.886 260.853 244.061 260.461 242.275 259.678C240.505 258.91 239.158 257.9 238.234 256.647L240.936 253.216C242.69 255.3 244.852 256.341 247.421 256.341C249.317 256.341 250.813 255.824 251.909 254.79C253.006 253.772 253.554 252.268 253.554 250.279V248.563C251.909 250.396 249.716 251.313 246.975 251.313C243.998 251.313 241.562 250.13 239.667 247.765C237.787 245.399 236.847 242.125 236.847 237.942ZM242.534 238.436C242.534 240.989 243.051 243.002 244.085 244.475C245.134 245.932 246.583 246.66 248.432 246.66C250.734 246.66 252.442 245.673 253.554 243.699V232.514C252.473 230.588 250.781 229.624 248.479 229.624C246.599 229.624 245.134 230.368 244.085 231.856C243.051 233.345 242.534 235.538 242.534 238.436Z" fill="url(#paint2_linear)"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.968" height="349.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="36.8458" y="-25.7801" width="276.056" height="396.006" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="3.79925"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.95 0 0 0 0 0.468777 0 0 0 0 0.468777 0 0 0 1 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="368.806" y2="88.7487" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="25" y1="159.319" x2="324.103" y2="160.452" gradientUnits="userSpaceOnUse">
-<stop stop-color="#181818" stop-opacity="0.5"/>
-<stop offset="1" stop-color="#181818" stop-opacity="0"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="140.049" y1="162.843" x2="227.476" y2="216.799" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D96B6B"/>
-<stop offset="1" stop-color="#CC7665"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/NSFW.svg b/public/Features/RSM/NSFW.svg
deleted file mode 100644
index b9b975e..0000000
--- a/public/Features/RSM/NSFW.svg
+++ /dev/null
@@ -1,46 +0,0 @@
-<svg width="350" height="250" viewBox="0 0 350 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="200" rx="12.6642" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M89.8187 68.4804H85.452V72.8535H84.661V63.49H90.4618V64.1652H85.452V67.8052H89.8187V68.4804ZM96.2239 71.9725C95.7609 72.6456 95.0213 72.9821 94.0052 72.9821C93.2635 72.9821 92.6997 72.7678 92.3139 72.339C91.928 71.906 91.7308 71.2672 91.7222 70.4226V65.8952H92.4875V70.3261C92.4875 71.6509 93.0234 72.3133 94.0953 72.3133C95.21 72.3133 95.9153 71.8524 96.2111 70.9306V65.8952H96.9828V72.8535H96.2368L96.2239 71.9725ZM99.851 72.8535H99.0793V62.9755H99.851V72.8535ZM102.809 72.8535H102.038V62.9755H102.809V72.8535ZM107.112 71.7474L109.144 65.8952H109.973L107.002 74.0368L106.848 74.397C106.466 75.2416 105.877 75.6639 105.079 75.6639C104.895 75.6639 104.698 75.6339 104.488 75.5738L104.481 74.9372L104.88 74.9758C105.257 74.9758 105.562 74.8814 105.793 74.6928C106.029 74.5084 106.228 74.189 106.391 73.7346L106.732 72.7956L104.108 65.8952H104.951L107.112 71.7474ZM118.765 72.8535C118.687 72.6349 118.638 72.3112 118.617 71.8824C118.347 72.234 118.002 72.5062 117.581 72.6992C117.165 72.8878 116.724 72.9821 116.257 72.9821C115.588 72.9821 115.045 72.7956 114.63 72.4226C114.218 72.0496 114.012 71.578 114.012 71.0078C114.012 70.3304 114.293 69.7945 114.855 69.4001C115.421 69.0056 116.207 68.8084 117.215 68.8084H118.61V68.0174C118.61 67.5201 118.456 67.1299 118.147 66.8469C117.843 66.5597 117.397 66.4161 116.81 66.4161C116.274 66.4161 115.83 66.5533 115.478 66.8277C115.127 67.102 114.951 67.4322 114.951 67.818L114.179 67.8116C114.179 67.2585 114.437 66.7805 114.951 66.3775C115.466 65.9702 116.098 65.7665 116.848 65.7665C117.624 65.7665 118.235 65.9616 118.681 66.3518C119.131 66.7376 119.363 67.2778 119.376 67.9724V71.2651C119.376 71.9382 119.446 72.4419 119.588 72.7763V72.8535H118.765ZM116.347 72.3004C116.861 72.3004 117.32 72.1761 117.723 71.9274C118.13 71.6788 118.426 71.3465 118.61 70.9306V69.4001H117.234C116.467 69.4086 115.866 69.5501 115.433 69.8245C115 70.0946 114.784 70.4676 114.784 70.9435C114.784 71.3337 114.927 71.6573 115.215 71.9146C115.506 72.1718 115.884 72.3004 116.347 72.3004ZM125.91 71.9725C125.446 72.6456 124.707 72.9821 123.691 72.9821C122.949 72.9821 122.385 72.7678 121.999 72.339C121.614 71.906 121.416 71.2672 121.408 70.4226V65.8952H122.173V70.3261C122.173 71.6509 122.709 72.3133 123.781 72.3133C124.896 72.3133 125.601 71.8524 125.897 70.9306V65.8952H126.668V72.8535H125.922L125.91 71.9725ZM129.871 64.1138V65.8952H131.312V66.5254H129.871V71.1622C129.871 71.548 129.94 71.8353 130.077 72.0239C130.218 72.2126 130.452 72.3069 130.778 72.3069C130.906 72.3069 131.114 72.2854 131.402 72.2426L131.434 72.8728C131.232 72.9457 130.958 72.9821 130.611 72.9821C130.083 72.9821 129.7 72.8299 129.459 72.5255C129.219 72.2168 129.099 71.7645 129.099 71.1686V66.5254H127.82V65.8952H129.099V64.1138H129.871ZM132.353 69.2714C132.353 68.6026 132.482 68.0002 132.739 67.4643C133.001 66.9284 133.367 66.5125 133.839 66.2167C134.315 65.9166 134.853 65.7665 135.453 65.7665C136.379 65.7665 137.129 66.0924 137.704 66.7441C138.278 67.3914 138.566 68.2511 138.566 69.3229V69.4837C138.566 70.1568 138.435 70.7634 138.173 71.3036C137.916 71.8396 137.552 72.2533 137.08 72.5448C136.609 72.8364 136.071 72.9821 135.466 72.9821C134.544 72.9821 133.794 72.6584 133.215 72.0111C132.641 71.3594 132.353 70.4976 132.353 69.4258V69.2714ZM133.125 69.4837C133.125 70.3154 133.339 70.9992 133.768 71.5352C134.201 72.0668 134.767 72.3326 135.466 72.3326C136.161 72.3326 136.722 72.0668 137.151 71.5352C137.584 70.9992 137.8 70.294 137.8 69.4194V69.2714C137.8 68.7398 137.702 68.2532 137.505 67.8116C137.307 67.37 137.031 67.0292 136.675 66.7891C136.319 66.5447 135.912 66.4225 135.453 66.4225C134.767 66.4225 134.208 66.6926 133.775 67.2328C133.342 67.7687 133.125 68.4719 133.125 69.3422V69.4837ZM140.862 65.8952L140.887 67.027C141.145 66.6069 141.466 66.2917 141.852 66.0817C142.238 65.8716 142.667 65.7665 143.138 65.7665C144.236 65.7665 144.932 66.2167 145.228 67.1171C145.477 66.684 145.809 66.3518 146.225 66.1202C146.641 65.8844 147.1 65.7665 147.601 65.7665C149.093 65.7665 149.854 66.5811 149.884 68.2103V72.8535H149.113V68.2682C149.108 67.6465 148.973 67.1856 148.707 66.8855C148.446 66.5854 148.017 66.4354 147.421 66.4354C146.868 66.4439 146.401 66.624 146.019 66.9756C145.638 67.3228 145.425 67.7473 145.383 68.2489V72.8535H144.611V68.2103C144.607 67.6144 144.465 67.1706 144.186 66.8791C143.912 66.5833 143.488 66.4354 142.913 66.4354C142.429 66.4354 142.013 66.5747 141.665 66.8534C141.318 67.1278 141.061 67.5372 140.894 68.0817V72.8535H140.122V65.8952H140.862ZM156.232 72.8535C156.155 72.6349 156.105 72.3112 156.084 71.8824C155.814 72.234 155.469 72.5062 155.048 72.6992C154.633 72.8878 154.191 72.9821 153.724 72.9821C153.055 72.9821 152.512 72.7956 152.097 72.4226C151.685 72.0496 151.479 71.578 151.479 71.0078C151.479 70.3304 151.76 69.7945 152.322 69.4001C152.888 69.0056 153.674 68.8084 154.682 68.8084H156.077V68.0174C156.077 67.5201 155.923 67.1299 155.614 66.8469C155.31 66.5597 154.864 66.4161 154.277 66.4161C153.741 66.4161 153.297 66.5533 152.945 66.8277C152.594 67.102 152.418 67.4322 152.418 67.818L151.646 67.8116C151.646 67.2585 151.904 66.7805 152.418 66.3775C152.933 65.9702 153.565 65.7665 154.315 65.7665C155.091 65.7665 155.702 65.9616 156.148 66.3518C156.598 66.7376 156.83 67.2778 156.843 67.9724V71.2651C156.843 71.9382 156.913 72.4419 157.055 72.7763V72.8535H156.232ZM153.814 72.3004C154.328 72.3004 154.787 72.1761 155.19 71.9274C155.597 71.6788 155.893 71.3465 156.077 70.9306V69.4001H154.701C153.934 69.4086 153.333 69.5501 152.9 69.8245C152.467 70.0946 152.251 70.4676 152.251 70.9435C152.251 71.3337 152.395 71.6573 152.682 71.9146C152.973 72.1718 153.351 72.3004 153.814 72.3004ZM160.097 64.1138V65.8952H161.537V66.5254H160.097V71.1622C160.097 71.548 160.165 71.8353 160.303 72.0239C160.444 72.2126 160.678 72.3069 161.004 72.3069C161.132 72.3069 161.34 72.2854 161.627 72.2426L161.66 72.8728C161.458 72.9457 161.184 72.9821 160.836 72.9821C160.309 72.9821 159.925 72.8299 159.685 72.5255C159.445 72.2168 159.325 71.7645 159.325 71.1686V66.5254H158.045V65.8952H159.325V64.1138H160.097ZM165.827 72.9821C165.235 72.9821 164.699 72.8364 164.219 72.5448C163.743 72.2533 163.372 71.8481 163.106 71.3294C162.841 70.8063 162.708 70.2211 162.708 69.5737V69.2972C162.708 68.6283 162.836 68.026 163.094 67.4901C163.355 66.9541 163.717 66.534 164.18 66.2296C164.643 65.9209 165.145 65.7665 165.685 65.7665C166.53 65.7665 167.199 66.0559 167.692 66.6347C168.189 67.2092 168.438 67.996 168.438 68.9949V69.4258H163.473V69.5737C163.473 70.3626 163.698 71.0207 164.148 71.548C164.603 72.0711 165.173 72.3326 165.859 72.3326C166.271 72.3326 166.633 72.2576 166.946 72.1075C167.263 71.9575 167.55 71.7174 167.808 71.3872L168.29 71.7538C167.724 72.5727 166.903 72.9821 165.827 72.9821ZM165.685 66.4225C165.107 66.4225 164.618 66.6347 164.219 67.0592C163.825 67.4836 163.585 68.0538 163.499 68.7698H167.673V68.6862C167.651 68.0174 167.46 67.4729 167.1 67.0527C166.74 66.6326 166.268 66.4225 165.685 66.4225ZM169.628 69.31C169.628 68.2296 169.868 67.37 170.348 66.7312C170.832 66.0881 171.488 65.7665 172.316 65.7665C173.255 65.7665 173.971 66.1374 174.464 66.8791V62.9755H175.229V72.8535H174.509L174.477 71.9274C173.983 72.6306 173.259 72.9821 172.303 72.9821C171.501 72.9821 170.854 72.6606 170.361 72.0175C169.872 71.3701 169.628 70.4976 169.628 69.4001V69.31ZM170.406 69.4451C170.406 70.3326 170.584 71.0335 170.939 71.548C171.295 72.0582 171.797 72.3133 172.444 72.3133C173.392 72.3133 174.065 71.8953 174.464 71.0593V67.7923C174.065 66.8877 173.396 66.4354 172.457 66.4354C171.81 66.4354 171.306 66.6905 170.946 67.2007C170.586 67.7066 170.406 68.4547 170.406 69.4451Z" fill="black"/>
-<path d="M101.927 119.3H97.2337L85.1941 100.137V119.3H80.5007V92.2895H85.1941L97.2708 111.527V92.2895H101.927V119.3ZM121.591 112.343C121.591 111.156 121.171 110.241 120.33 109.598C119.501 108.955 117.998 108.305 115.822 107.65C113.645 106.994 111.914 106.265 110.627 105.461C108.166 103.915 106.936 101.899 106.936 99.4131C106.936 97.2365 107.82 95.4432 109.589 94.0333C111.37 92.6235 113.676 91.9185 116.508 91.9185C118.388 91.9185 120.064 92.2648 121.535 92.9574C123.007 93.65 124.164 94.6393 125.005 95.9255C125.845 97.1994 126.266 98.6154 126.266 100.174H121.591C121.591 98.7638 121.146 97.6632 120.255 96.8716C119.377 96.0678 118.116 95.6658 116.471 95.6658C114.938 95.6658 113.744 95.9936 112.891 96.649C112.05 97.3045 111.629 98.2197 111.629 99.3946C111.629 100.384 112.087 101.213 113.002 101.88C113.917 102.536 115.426 103.179 117.528 103.81C119.631 104.428 121.319 105.139 122.593 105.943C123.867 106.735 124.8 107.65 125.394 108.689C125.988 109.715 126.285 110.921 126.285 112.306C126.285 114.557 125.419 116.35 123.687 117.686C121.968 119.009 119.631 119.671 116.675 119.671C114.721 119.671 112.922 119.312 111.277 118.595C109.644 117.865 108.37 116.863 107.455 115.59C106.552 114.316 106.101 112.832 106.101 111.137H110.794C110.794 112.671 111.302 113.858 112.316 114.699C113.33 115.54 114.783 115.961 116.675 115.961C118.308 115.961 119.532 115.633 120.348 114.977C121.177 114.31 121.591 113.432 121.591 112.343ZM145.967 107.854H135.096V119.3H130.403V92.2895H147.563V96.074H135.096V104.107H145.967V107.854ZM172.477 112.621L176.632 92.2895H181.288L175.055 119.3H170.566L165.427 99.5801L160.177 119.3H155.669L149.436 92.2895H154.092L158.285 112.584L163.442 92.2895H167.375L172.477 112.621ZM41.0612 130.29L48.8527 150.992L56.6255 130.29H62.6917V157.3H58.0169V148.395L58.4806 136.486L50.5037 157.3H47.146L39.1876 136.504L39.6514 148.395V157.3H34.9765V130.29H41.0612ZM66.977 147.078C66.977 145.112 67.3666 143.343 68.1457 141.773C68.9248 140.19 70.0194 138.978 71.4292 138.137C72.8391 137.283 74.4592 136.857 76.2896 136.857C78.998 136.857 81.1932 137.728 82.8752 139.472C84.5695 141.216 85.4847 143.529 85.6207 146.41L85.6393 147.468C85.6393 149.447 85.2559 151.215 84.4891 152.773C83.7347 154.332 82.6464 155.537 81.2242 156.391C79.8143 157.244 78.1818 157.671 76.3267 157.671C73.4946 157.671 71.2252 156.731 69.5185 154.851C67.8242 152.959 66.977 150.442 66.977 147.301V147.078ZM71.4849 147.468C71.4849 149.533 71.9116 151.153 72.7649 152.328C73.6182 153.491 74.8055 154.072 76.3267 154.072C77.8479 154.072 79.029 153.478 79.8699 152.291C80.7233 151.104 81.15 149.366 81.15 147.078C81.15 145.05 80.7109 143.442 79.8328 142.255C78.9671 141.068 77.786 140.474 76.2896 140.474C74.8179 140.474 73.6492 141.061 72.7835 142.236C71.9177 143.399 71.4849 145.143 71.4849 147.468ZM88.6075 147.115C88.6075 144.023 89.3248 141.544 90.7594 139.676C92.194 137.797 94.1171 136.857 96.5287 136.857C98.6559 136.857 100.375 137.599 101.686 139.083V128.805H106.194V157.3H102.113L101.89 155.222C100.542 156.855 98.7425 157.671 96.4916 157.671C94.1418 157.671 92.2373 156.725 90.7779 154.833C89.3309 152.94 88.6075 150.368 88.6075 147.115ZM93.1154 147.505C93.1154 149.545 93.5049 151.141 94.2841 152.291C95.0756 153.429 96.1948 153.998 97.6418 153.998C99.4845 153.998 100.833 153.175 101.686 151.53V142.96C100.857 141.352 99.5216 140.548 97.6789 140.548C96.2196 140.548 95.0941 141.13 94.3026 142.292C93.5111 143.442 93.1154 145.18 93.1154 147.505ZM119.736 157.671C116.879 157.671 114.56 156.774 112.779 154.981C111.011 153.175 110.127 150.776 110.127 147.783V147.227C110.127 145.223 110.51 143.436 111.277 141.865C112.056 140.282 113.144 139.052 114.542 138.174C115.939 137.296 117.498 136.857 119.217 136.857C121.95 136.857 124.058 137.728 125.542 139.472C127.039 141.216 127.787 143.683 127.787 146.874V148.692H114.672C114.808 150.349 115.358 151.66 116.323 152.625C117.3 153.59 118.524 154.072 119.996 154.072C122.061 154.072 123.743 153.237 125.042 151.568L127.472 153.886C126.668 155.086 125.592 156.02 124.244 156.688C122.908 157.343 121.406 157.671 119.736 157.671ZM119.198 140.474C117.961 140.474 116.96 140.907 116.193 141.773C115.438 142.638 114.956 143.844 114.746 145.39H123.335V145.056C123.236 143.547 122.834 142.41 122.129 141.643C121.424 140.864 120.447 140.474 119.198 140.474ZM141.812 141.346C141.218 141.247 140.606 141.198 139.975 141.198C137.91 141.198 136.519 141.989 135.801 143.572V157.3H131.293V137.228H135.597L135.708 139.472C136.797 137.728 138.306 136.857 140.235 136.857C140.878 136.857 141.41 136.943 141.83 137.116L141.812 141.346ZM156.096 157.3C155.898 156.916 155.725 156.292 155.577 155.426C154.142 156.923 152.386 157.671 150.308 157.671C148.292 157.671 146.647 157.096 145.374 155.946C144.1 154.795 143.463 153.373 143.463 151.679C143.463 149.539 144.254 147.901 145.837 146.763C147.433 145.613 149.708 145.038 152.664 145.038H155.428V143.72C155.428 142.682 155.138 141.853 154.556 141.235C153.975 140.604 153.091 140.289 151.903 140.289C150.877 140.289 150.036 140.548 149.381 141.068C148.725 141.575 148.397 142.224 148.397 143.016H143.889C143.889 141.915 144.254 140.888 144.984 139.936C145.714 138.971 146.703 138.217 147.952 137.673C149.214 137.129 150.617 136.857 152.163 136.857C154.513 136.857 156.387 137.45 157.784 138.637C159.182 139.812 159.899 141.47 159.936 143.609V152.662C159.936 154.468 160.19 155.908 160.697 156.984V157.3H156.096ZM151.143 154.053C152.033 154.053 152.868 153.837 153.647 153.404C154.439 152.971 155.032 152.39 155.428 151.66V147.876H152.998C151.328 147.876 150.073 148.167 149.232 148.748C148.391 149.329 147.971 150.151 147.971 151.215C147.971 152.081 148.255 152.773 148.824 153.293C149.405 153.8 150.178 154.053 151.143 154.053ZM170.306 132.349V137.228H173.849V140.567H170.306V151.772C170.306 152.538 170.454 153.095 170.751 153.441C171.06 153.775 171.605 153.942 172.384 153.942C172.903 153.942 173.429 153.88 173.961 153.757V157.244C172.934 157.529 171.945 157.671 170.992 157.671C167.53 157.671 165.798 155.76 165.798 151.939V140.567H162.496V137.228H165.798V132.349H170.306ZM182.105 157.3H177.597V137.228H182.105V157.3ZM177.318 132.015C177.318 131.322 177.535 130.747 177.968 130.29C178.413 129.832 179.044 129.603 179.86 129.603C180.676 129.603 181.307 129.832 181.752 130.29C182.197 130.747 182.42 131.322 182.42 132.015C182.42 132.695 182.197 133.264 181.752 133.721C181.307 134.167 180.676 134.389 179.86 134.389C179.044 134.389 178.413 134.167 177.968 133.721C177.535 133.264 177.318 132.695 177.318 132.015ZM186.186 147.078C186.186 145.112 186.575 143.343 187.354 141.773C188.134 140.19 189.228 138.978 190.638 138.137C192.048 137.283 193.668 136.857 195.498 136.857C198.207 136.857 200.402 137.728 202.084 139.472C203.778 141.216 204.693 143.529 204.829 146.41L204.848 147.468C204.848 149.447 204.465 151.215 203.698 152.773C202.943 154.332 201.855 155.537 200.433 156.391C199.023 157.244 197.391 157.671 195.535 157.671C192.703 157.671 190.434 156.731 188.727 154.851C187.033 152.959 186.186 150.442 186.186 147.301V147.078ZM190.694 147.468C190.694 149.533 191.12 151.153 191.974 152.328C192.827 153.491 194.014 154.072 195.535 154.072C197.057 154.072 198.238 153.478 199.079 152.291C199.932 151.104 200.359 149.366 200.359 147.078C200.359 145.05 199.92 143.442 199.042 142.255C198.176 141.068 196.995 140.474 195.498 140.474C194.027 140.474 192.858 141.061 191.992 142.236C191.126 143.399 190.694 145.143 190.694 147.468ZM212.844 137.228L212.973 139.546C214.457 137.753 216.405 136.857 218.817 136.857C222.997 136.857 225.124 139.25 225.198 144.036V157.3H220.691V144.296C220.691 143.022 220.412 142.082 219.856 141.476C219.312 140.857 218.415 140.548 217.166 140.548C215.348 140.548 213.994 141.371 213.103 143.016V157.3H208.595V137.228H212.844Z" fill="url(#paint1_linear)"/>
-<path d="M43.7983 186.831V180.503H42.6472V179.873H43.7983V179.03C43.7983 178.319 43.9784 177.772 44.3385 177.39C44.7029 177.009 45.2089 176.818 45.8562 176.818C46.1478 176.818 46.42 176.854 46.673 176.927L46.6151 177.57C46.4007 177.519 46.1671 177.493 45.9141 177.493C45.4897 177.493 45.1595 177.626 44.9237 177.892C44.6879 178.153 44.57 178.526 44.57 179.011V179.873H46.2292V180.503H44.57V186.831H43.7983ZM47.181 183.249C47.181 182.58 47.3097 181.978 47.5669 181.442C47.8284 180.906 48.195 180.49 48.6666 180.194C49.1425 179.894 49.6806 179.744 50.2808 179.744C51.2068 179.744 51.9571 180.07 52.5316 180.722C53.1061 181.369 53.3934 182.229 53.3934 183.3V183.461C53.3934 184.134 53.2626 184.741 53.0011 185.281C52.7439 185.817 52.3794 186.231 51.9078 186.522C51.4362 186.814 50.8982 186.96 50.2936 186.96C49.3719 186.96 48.6216 186.636 48.0428 185.989C47.4683 185.337 47.181 184.475 47.181 183.403V183.249ZM47.9528 183.461C47.9528 184.293 48.1671 184.977 48.5959 185.513C49.0289 186.044 49.5948 186.31 50.2936 186.31C50.9882 186.31 51.5498 186.044 51.9786 185.513C52.4116 184.977 52.6281 184.272 52.6281 183.397V183.249C52.6281 182.717 52.5295 182.231 52.3323 181.789C52.1351 181.348 51.8585 181.007 51.5027 180.767C51.1468 180.522 50.7395 180.4 50.2808 180.4C49.5948 180.4 49.0353 180.67 48.6023 181.21C48.1693 181.746 47.9528 182.449 47.9528 183.32V183.461ZM58.2038 180.529C58.0409 180.499 57.8672 180.484 57.6829 180.484C57.2027 180.484 56.7954 180.619 56.461 180.889C56.1309 181.155 55.8951 181.543 55.7536 182.053V186.831H54.9883V179.873H55.7407L55.7536 180.979C56.1609 180.156 56.8147 179.744 57.715 179.744C57.9294 179.744 58.0988 179.772 58.2231 179.828L58.2038 180.529ZM63.4901 186.831H62.7184V179.873H63.4901V186.831ZM62.5833 177.86C62.5833 177.714 62.6305 177.592 62.7248 177.493C62.8191 177.39 62.9477 177.339 63.1107 177.339C63.2736 177.339 63.4022 177.39 63.4965 177.493C63.5951 177.592 63.6444 177.714 63.6444 177.86C63.6444 178.006 63.5951 178.128 63.4965 178.226C63.4022 178.325 63.2736 178.374 63.1107 178.374C62.9477 178.374 62.8191 178.325 62.7248 178.226C62.6305 178.128 62.5833 178.006 62.5833 177.86ZM66.2876 179.873L66.3133 181.005C66.5705 180.584 66.8921 180.269 67.278 180.059C67.6638 179.849 68.0925 179.744 68.5642 179.744C69.6617 179.744 70.3584 180.194 70.6542 181.095C70.9029 180.662 71.2352 180.329 71.651 180.098C72.0669 179.862 72.5257 179.744 73.0273 179.744C74.5193 179.744 75.2803 180.559 75.3103 182.188V186.831H74.5386V182.246C74.5343 181.624 74.3992 181.163 74.1334 180.863C73.8719 180.563 73.4432 180.413 72.8472 180.413C72.2941 180.421 71.8268 180.602 71.4453 180.953C71.0637 181.3 70.8515 181.725 70.8086 182.226V186.831H70.0369V182.188C70.0326 181.592 69.8911 181.148 69.6124 180.857C69.338 180.561 68.9136 180.413 68.3391 180.413C67.8546 180.413 67.4387 180.552 67.0915 180.831C66.7442 181.105 66.4869 181.515 66.3197 182.059V186.831H65.548V179.873H66.2876ZM81.6577 186.831C81.5805 186.612 81.5312 186.289 81.5098 185.86C81.2397 186.212 80.8946 186.484 80.4744 186.677C80.0585 186.865 79.6169 186.96 79.1496 186.96C78.4808 186.96 77.9384 186.773 77.5226 186.4C77.111 186.027 76.9052 185.556 76.9052 184.985C76.9052 184.308 77.186 183.772 77.7476 183.378C78.3136 182.983 79.1003 182.786 80.1078 182.786H81.5034V181.995C81.5034 181.498 81.349 181.107 81.0403 180.824C80.7359 180.537 80.29 180.394 79.7027 180.394C79.1668 180.394 78.723 180.531 78.3714 180.805C78.0199 181.08 77.8441 181.41 77.8441 181.796L77.0724 181.789C77.0724 181.236 77.3296 180.758 77.8441 180.355C78.3586 179.948 78.991 179.744 79.7413 179.744C80.5173 179.744 81.1282 179.939 81.5741 180.329C82.0243 180.715 82.2558 181.255 82.2686 181.95V185.243C82.2686 185.916 82.3394 186.419 82.4809 186.754V186.831H81.6577ZM79.2396 186.278C79.7541 186.278 80.2129 186.154 80.6159 185.905C81.0232 185.656 81.319 185.324 81.5034 184.908V183.378H80.1271C79.3597 183.386 78.7595 183.528 78.3264 183.802C77.8934 184.072 77.6769 184.445 77.6769 184.921C77.6769 185.311 77.8205 185.635 78.1078 185.892C78.3993 186.149 78.7766 186.278 79.2396 186.278ZM84.0179 183.288C84.0179 182.199 84.258 181.337 84.7382 180.702C85.2226 180.063 85.8786 179.744 86.706 179.744C87.6535 179.744 88.3738 180.121 88.8669 180.876L88.9055 179.873H89.6257V186.69C89.6257 187.586 89.3749 188.295 88.8733 188.818C88.3717 189.341 87.6921 189.603 86.8347 189.603C86.3502 189.603 85.8872 189.493 85.4456 189.275C85.0083 189.06 84.6631 188.773 84.4102 188.413L84.8411 187.95C85.3855 188.619 86.0329 188.953 86.7832 188.953C87.4263 188.953 87.9279 188.763 88.2881 188.381C88.6482 188.004 88.8347 187.478 88.8476 186.805V185.931C88.3545 186.617 87.6364 186.96 86.6932 186.96C85.8872 186.96 85.2398 186.638 84.751 185.995C84.2623 185.352 84.0179 184.484 84.0179 183.39V183.288ZM84.796 183.423C84.796 184.31 84.974 185.011 85.3298 185.526C85.6857 186.036 86.1873 186.291 86.8347 186.291C87.7822 186.291 88.4531 185.866 88.8476 185.018V181.783C88.6675 181.337 88.4081 180.998 88.0694 180.767C87.7307 180.531 87.3234 180.413 86.8475 180.413C86.2001 180.413 85.6964 180.668 85.3362 181.178C84.9761 181.684 84.796 182.432 84.796 183.423ZM94.3268 186.96C93.7351 186.96 93.1992 186.814 92.719 186.522C92.2431 186.231 91.8723 185.826 91.6065 185.307C91.3407 184.784 91.2078 184.199 91.2078 183.551V183.275C91.2078 182.606 91.3364 182.004 91.5936 181.468C91.8551 180.932 92.2174 180.512 92.6805 180.207C93.1435 179.898 93.6451 179.744 94.1853 179.744C95.0299 179.744 95.6987 180.033 96.1918 180.612C96.6891 181.187 96.9378 181.973 96.9378 182.972V183.403H91.973V183.551C91.973 184.34 92.1981 184.998 92.6483 185.526C93.1028 186.049 93.673 186.31 94.3589 186.31C94.7705 186.31 95.1328 186.235 95.4458 186.085C95.7631 185.935 96.0503 185.695 96.3075 185.365L96.7899 185.731C96.2239 186.55 95.4029 186.96 94.3268 186.96ZM94.1853 180.4C93.6065 180.4 93.1178 180.612 92.719 181.037C92.3246 181.461 92.0845 182.031 91.9988 182.747H96.1725V182.664C96.1511 181.995 95.9603 181.45 95.6001 181.03C95.24 180.61 94.7684 180.4 94.1853 180.4ZM102.604 185.063C102.604 184.681 102.449 184.374 102.14 184.143C101.836 183.911 101.375 183.731 100.758 183.603C100.14 183.47 99.6602 183.32 99.3173 183.153C98.9786 182.981 98.7256 182.773 98.5584 182.529C98.3955 182.284 98.314 181.989 98.314 181.641C98.314 181.092 98.5434 180.64 99.0021 180.284C99.4609 179.924 100.048 179.744 100.764 179.744C101.54 179.744 102.162 179.937 102.629 180.323C103.101 180.704 103.337 181.204 103.337 181.821H102.565C102.565 181.414 102.393 181.075 102.05 180.805C101.712 180.535 101.283 180.4 100.764 180.4C100.258 180.4 99.851 180.514 99.5423 180.741C99.2379 180.964 99.0857 181.255 99.0857 181.616C99.0857 181.963 99.2122 182.233 99.4652 182.426C99.7224 182.614 100.188 182.788 100.861 182.947C101.538 183.105 102.044 183.275 102.378 183.455C102.717 183.635 102.968 183.851 103.131 184.104C103.294 184.357 103.375 184.664 103.375 185.024C103.375 185.611 103.137 186.081 102.661 186.432C102.19 186.784 101.572 186.96 100.809 186.96C99.9989 186.96 99.3408 186.765 98.8349 186.374C98.3333 185.98 98.0825 185.483 98.0825 184.882H98.8542C98.8842 185.333 99.0729 185.684 99.4202 185.937C99.7717 186.186 100.235 186.31 100.809 186.31C101.345 186.31 101.778 186.192 102.108 185.956C102.438 185.721 102.604 185.423 102.604 185.063ZM112.707 186.831C112.629 186.612 112.58 186.289 112.559 185.86C112.289 186.212 111.943 186.484 111.523 186.677C111.107 186.865 110.666 186.96 110.199 186.96C109.53 186.96 108.987 186.773 108.571 186.4C108.16 186.027 107.954 185.556 107.954 184.985C107.954 184.308 108.235 183.772 108.797 183.378C109.362 182.983 110.149 182.786 111.157 182.786H112.552V181.995C112.552 181.498 112.398 181.107 112.089 180.824C111.785 180.537 111.339 180.394 110.752 180.394C110.216 180.394 109.772 180.531 109.42 180.805C109.069 181.08 108.893 181.41 108.893 181.796L108.121 181.789C108.121 181.236 108.379 180.758 108.893 180.355C109.408 179.948 110.04 179.744 110.79 179.744C111.566 179.744 112.177 179.939 112.623 180.329C113.073 180.715 113.305 181.255 113.318 181.95V185.243C113.318 185.916 113.388 186.419 113.53 186.754V186.831H112.707ZM110.289 186.278C110.803 186.278 111.262 186.154 111.665 185.905C112.072 185.656 112.368 185.324 112.552 184.908V183.378H111.176C110.409 183.386 109.808 183.528 109.375 183.802C108.942 184.072 108.726 184.445 108.726 184.921C108.726 185.311 108.869 185.635 109.157 185.892C109.448 186.149 109.826 186.278 110.289 186.278ZM116.109 179.873L116.134 181.062C116.396 180.634 116.722 180.308 117.112 180.085C117.502 179.858 117.933 179.744 118.404 179.744C119.15 179.744 119.706 179.954 120.07 180.374C120.435 180.794 120.619 181.425 120.623 182.265V186.831H119.858V182.259C119.854 181.637 119.721 181.174 119.459 180.87C119.202 180.565 118.788 180.413 118.218 180.413C117.742 180.413 117.32 180.563 116.951 180.863C116.587 181.159 116.317 181.56 116.141 182.066V186.831H115.375V179.873H116.109ZM122.308 183.288C122.308 182.207 122.548 181.348 123.028 180.709C123.513 180.066 124.169 179.744 124.996 179.744C125.935 179.744 126.651 180.115 127.144 180.857V176.953H127.91V186.831H127.189L127.157 185.905C126.664 186.608 125.94 186.96 124.983 186.96C124.182 186.96 123.534 186.638 123.041 185.995C122.553 185.348 122.308 184.475 122.308 183.378V183.288ZM123.086 183.423C123.086 184.31 123.264 185.011 123.62 185.526C123.976 186.036 124.478 186.291 125.125 186.291C126.072 186.291 126.746 185.873 127.144 185.037V181.77C126.746 180.865 126.077 180.413 125.138 180.413C124.49 180.413 123.987 180.668 123.626 181.178C123.266 181.684 123.086 182.432 123.086 183.423ZM138.733 183.423C138.733 184.507 138.493 185.369 138.013 186.008C137.532 186.642 136.889 186.96 136.083 186.96C135.132 186.96 134.403 186.625 133.897 185.956V189.506H133.132V179.873H133.845L133.884 180.857C134.386 180.115 135.112 179.744 136.064 179.744C136.896 179.744 137.547 180.059 138.019 180.689C138.495 181.32 138.733 182.194 138.733 183.313V183.423ZM137.961 183.288C137.961 182.4 137.779 181.699 137.415 181.185C137.05 180.67 136.542 180.413 135.89 180.413C135.419 180.413 135.014 180.527 134.675 180.754C134.336 180.981 134.077 181.311 133.897 181.744V185.082C134.081 185.481 134.345 185.785 134.688 185.995C135.031 186.205 135.436 186.31 135.903 186.31C136.551 186.31 137.054 186.053 137.415 185.538C137.779 185.02 137.961 184.269 137.961 183.288ZM143.659 180.529C143.496 180.499 143.323 180.484 143.138 180.484C142.658 180.484 142.251 180.619 141.916 180.889C141.586 181.155 141.35 181.543 141.209 182.053V186.831H140.444V179.873H141.196L141.209 180.979C141.616 180.156 142.27 179.744 143.17 179.744C143.385 179.744 143.554 179.772 143.678 179.828L143.659 180.529ZM144.328 183.249C144.328 182.58 144.457 181.978 144.714 181.442C144.975 180.906 145.342 180.49 145.814 180.194C146.289 179.894 146.827 179.744 147.428 179.744C148.354 179.744 149.104 180.07 149.679 180.722C150.253 181.369 150.54 182.229 150.54 183.3V183.461C150.54 184.134 150.41 184.741 150.148 185.281C149.891 185.817 149.526 186.231 149.055 186.522C148.583 186.814 148.045 186.96 147.441 186.96C146.519 186.96 145.768 186.636 145.19 185.989C144.615 185.337 144.328 184.475 144.328 183.403V183.249ZM145.1 183.461C145.1 184.293 145.314 184.977 145.743 185.513C146.176 186.044 146.742 186.31 147.441 186.31C148.135 186.31 148.697 186.044 149.125 185.513C149.558 184.977 149.775 184.272 149.775 183.397V183.249C149.775 182.717 149.676 182.231 149.479 181.789C149.282 181.348 149.005 181.007 148.65 180.767C148.294 180.522 147.886 180.4 147.428 180.4C146.742 180.4 146.182 180.67 145.749 181.21C145.316 181.746 145.1 182.449 145.1 183.32V183.461ZM152.598 186.831V180.503H151.441V179.873H152.598V179.159C152.598 178.417 152.8 177.843 153.203 177.435C153.606 177.024 154.174 176.818 154.907 176.818C155.481 176.818 156.073 176.944 156.682 177.197L156.553 177.86C156.03 177.633 155.499 177.519 154.958 177.519C153.899 177.519 153.37 178.07 153.37 179.172V179.873H154.997V180.503H153.37V186.831H152.598ZM157.1 186.831H156.328V179.873H157.1V186.831ZM160.071 186.831H159.299V176.953H160.071V186.831ZM164.862 186.96C164.271 186.96 163.735 186.814 163.254 186.522C162.779 186.231 162.408 185.826 162.142 185.307C161.876 184.784 161.743 184.199 161.743 183.551V183.275C161.743 182.606 161.872 182.004 162.129 181.468C162.391 180.932 162.753 180.512 163.216 180.207C163.679 179.898 164.18 179.744 164.721 179.744C165.565 179.744 166.234 180.033 166.727 180.612C167.224 181.187 167.473 181.973 167.473 182.972V183.403H162.508V183.551C162.508 184.34 162.733 184.998 163.184 185.526C163.638 186.049 164.208 186.31 164.894 186.31C165.306 186.31 165.668 186.235 165.981 186.085C166.298 185.935 166.586 185.695 166.843 185.365L167.325 185.731C166.759 186.55 165.938 186.96 164.862 186.96ZM164.721 180.4C164.142 180.4 163.653 180.612 163.254 181.037C162.86 181.461 162.62 182.031 162.534 182.747H166.708V182.664C166.686 181.995 166.496 181.45 166.135 181.03C165.775 180.61 165.304 180.4 164.721 180.4ZM177.769 183.423C177.769 184.507 177.529 185.369 177.049 186.008C176.569 186.642 175.926 186.96 175.12 186.96C174.168 186.96 173.439 186.625 172.933 185.956V189.506H172.168V179.873H172.882L172.92 180.857C173.422 180.115 174.149 179.744 175.1 179.744C175.932 179.744 176.584 180.059 177.055 180.689C177.531 181.32 177.769 182.194 177.769 183.313V183.423ZM176.997 183.288C176.997 182.4 176.815 181.699 176.451 181.185C176.086 180.67 175.578 180.413 174.927 180.413C174.455 180.413 174.05 180.527 173.711 180.754C173.373 180.981 173.113 181.311 172.933 181.744V185.082C173.117 185.481 173.381 185.785 173.724 185.995C174.067 186.205 174.472 186.31 174.94 186.31C175.587 186.31 176.091 186.053 176.451 185.538C176.815 185.02 176.997 184.269 176.997 183.288ZM180.342 186.831H179.57V179.873H180.342V186.831ZM179.435 177.86C179.435 177.714 179.482 177.592 179.576 177.493C179.671 177.39 179.799 177.339 179.962 177.339C180.125 177.339 180.254 177.39 180.348 177.493C180.447 177.592 180.496 177.714 180.496 177.86C180.496 178.006 180.447 178.128 180.348 178.226C180.254 178.325 180.125 178.374 179.962 178.374C179.799 178.374 179.671 178.325 179.576 178.226C179.482 178.128 179.435 178.006 179.435 177.86ZM185.011 186.31C185.546 186.31 185.994 186.16 186.355 185.86C186.719 185.556 186.916 185.163 186.946 184.683H187.686C187.664 185.108 187.531 185.496 187.287 185.847C187.043 186.194 186.717 186.467 186.31 186.664C185.907 186.861 185.474 186.96 185.011 186.96C184.097 186.96 183.373 186.642 182.837 186.008C182.305 185.373 182.039 184.52 182.039 183.448V183.217C182.039 182.531 182.159 181.924 182.4 181.397C182.64 180.87 182.983 180.462 183.428 180.175C183.879 179.888 184.404 179.744 185.004 179.744C185.767 179.744 186.395 179.971 186.888 180.426C187.386 180.88 187.652 181.478 187.686 182.22H186.946C186.912 181.676 186.715 181.236 186.355 180.902C185.999 180.567 185.549 180.4 185.004 180.4C184.31 180.4 183.769 180.651 183.383 181.152C183.002 181.654 182.811 182.357 182.811 183.262V183.487C182.811 184.374 183.002 185.067 183.383 185.564C183.769 186.061 184.312 186.31 185.011 186.31ZM190.425 178.091V179.873H191.866V180.503H190.425V185.14C190.425 185.526 190.494 185.813 190.631 186.001C190.773 186.19 191.006 186.284 191.332 186.284C191.461 186.284 191.669 186.263 191.956 186.22L191.988 186.85C191.787 186.923 191.512 186.96 191.165 186.96C190.638 186.96 190.254 186.807 190.014 186.503C189.774 186.194 189.654 185.742 189.654 185.146V180.503H188.374V179.873H189.654V178.091H190.425ZM197.937 185.95C197.474 186.623 196.734 186.96 195.718 186.96C194.976 186.96 194.413 186.745 194.027 186.317C193.641 185.884 193.444 185.245 193.435 184.4V179.873H194.2V184.304C194.2 185.628 194.736 186.291 195.808 186.291C196.923 186.291 197.628 185.83 197.924 184.908V179.873H198.696V186.831H197.95L197.937 185.95ZM203.918 180.529C203.755 180.499 203.581 180.484 203.397 180.484C202.917 180.484 202.509 180.619 202.175 180.889C201.845 181.155 201.609 181.543 201.467 182.053V186.831H200.702V179.873H201.455L201.467 180.979C201.875 180.156 202.529 179.744 203.429 179.744C203.643 179.744 203.813 179.772 203.937 179.828L203.918 180.529ZM207.706 186.96C207.114 186.96 206.578 186.814 206.098 186.522C205.622 186.231 205.251 185.826 204.985 185.307C204.719 184.784 204.587 184.199 204.587 183.551V183.275C204.587 182.606 204.715 182.004 204.972 181.468C205.234 180.932 205.596 180.512 206.059 180.207C206.522 179.898 207.024 179.744 207.564 179.744C208.409 179.744 209.078 180.033 209.571 180.612C210.068 181.187 210.317 181.973 210.317 182.972V183.403H205.352V183.551C205.352 184.34 205.577 184.998 206.027 185.526C206.482 186.049 207.052 186.31 207.738 186.31C208.149 186.31 208.512 186.235 208.825 186.085C209.142 185.935 209.429 185.695 209.686 185.365L210.169 185.731C209.603 186.55 208.782 186.96 207.706 186.96ZM207.564 180.4C206.985 180.4 206.497 180.612 206.098 181.037C205.703 181.461 205.463 182.031 205.378 182.747H209.551V182.664C209.53 181.995 209.339 181.45 208.979 181.03C208.619 180.61 208.147 180.4 207.564 180.4ZM215.982 185.063C215.982 184.681 215.828 184.374 215.519 184.143C215.215 183.911 214.754 183.731 214.137 183.603C213.519 183.47 213.039 183.32 212.696 183.153C212.357 182.981 212.104 182.773 211.937 182.529C211.774 182.284 211.693 181.989 211.693 181.641C211.693 181.092 211.922 180.64 212.381 180.284C212.84 179.924 213.427 179.744 214.143 179.744C214.919 179.744 215.541 179.937 216.008 180.323C216.48 180.704 216.715 181.204 216.715 181.821H215.944C215.944 181.414 215.772 181.075 215.429 180.805C215.091 180.535 214.662 180.4 214.143 180.4C213.637 180.4 213.23 180.514 212.921 180.741C212.617 180.964 212.465 181.255 212.465 181.616C212.465 181.963 212.591 182.233 212.844 182.426C213.101 182.614 213.566 182.788 214.239 182.947C214.917 183.105 215.423 183.275 215.757 183.455C216.096 183.635 216.347 183.851 216.51 184.104C216.673 184.357 216.754 184.664 216.754 185.024C216.754 185.611 216.516 186.081 216.04 186.432C215.569 186.784 214.951 186.96 214.188 186.96C213.378 186.96 212.72 186.765 212.214 186.374C211.712 185.98 211.461 185.483 211.461 184.882H212.233C212.263 185.333 212.452 185.684 212.799 185.937C213.15 186.186 213.614 186.31 214.188 186.31C214.724 186.31 215.157 186.192 215.487 185.956C215.817 185.721 215.982 185.423 215.982 185.063Z" fill="black"/>
-<path d="M268.705 88.0953C271.203 83.2894 278.078 83.2894 280.576 88.0954L313.043 150.564C315.357 155.017 312.126 160.339 307.107 160.339H242.174C237.155 160.339 233.924 155.017 236.238 150.564L268.705 88.0953Z" stroke="url(#paint2_linear)" stroke-width="8.51374"/>
-<path d="M271.289 105.593C271.289 103.562 272.769 101.915 274.596 101.915C276.422 101.915 277.902 103.562 277.902 105.593V130.416C277.902 132.447 276.422 134.093 274.596 134.093C272.769 134.093 271.289 132.447 271.289 130.416V105.593Z" fill="url(#paint3_linear)"/>
-<path d="M277.902 143.287C277.902 145.318 276.422 146.965 274.596 146.965C272.769 146.965 271.289 145.318 271.289 143.287C271.289 141.256 272.769 139.61 274.596 139.61C276.422 139.61 277.902 141.256 277.902 143.287Z" fill="url(#paint4_linear)"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="5.82551"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="355.091" y2="116.809" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="129.865" y1="90.2998" x2="129.865" y2="159.699" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D46899"/>
-<stop offset="1" stop-color="#F27878"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="274.641" y1="76.6748" x2="274.641" y2="160.339" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D56997"/>
-<stop offset="1" stop-color="#F27878"/>
-</linearGradient>
-<linearGradient id="paint3_linear" x1="274.607" y1="101.894" x2="274.593" y2="146.965" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D66A96"/>
-<stop offset="0.775366" stop-color="#F27878"/>
-</linearGradient>
-<linearGradient id="paint4_linear" x1="274.607" y1="101.894" x2="274.593" y2="146.965" gradientUnits="userSpaceOnUse">
-<stop stop-color="#D66A96"/>
-<stop offset="0.775366" stop-color="#F27878"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Punish.svg b/public/Features/RSM/Punish.svg
deleted file mode 100644
index 912c4cc..0000000
--- a/public/Features/RSM/Punish.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-<svg width="350" height="250" viewBox="0 0 350 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M67.8803 66.7726H55.3077V76.1915H70.0038V80.4385H49.9885V49.8269H69.8566V54.1158H55.3077V62.5677H67.8803V66.7726ZM87.4331 80.4385C87.2088 80.004 87.0126 79.2961 86.8444 78.315C85.2185 80.011 83.2282 80.859 80.8735 80.859C78.5888 80.859 76.7246 80.2072 75.2809 78.9037C73.8373 77.6002 73.1154 75.9883 73.1154 74.0681C73.1154 71.6432 74.0125 69.7861 75.8066 68.4966C77.6147 67.1931 80.1937 66.5413 83.5436 66.5413H86.6762V65.0486C86.6762 63.8712 86.3468 62.9321 85.6881 62.2313C85.0293 61.5165 84.0271 61.159 82.6816 61.159C81.5182 61.159 80.5651 61.4534 79.8222 62.0421C79.0794 62.6167 78.7079 63.3526 78.7079 64.2496H73.599C73.599 63.0022 74.0125 61.8388 74.8394 60.7596C75.6664 59.6663 76.7877 58.8113 78.2033 58.1946C79.633 57.5779 81.2239 57.2695 82.9759 57.2695C85.639 57.2695 87.7625 57.9423 89.3463 59.2879C90.9302 60.6194 91.7431 62.4976 91.7851 64.9224V75.1824C91.7851 77.2287 92.0725 78.8616 92.6472 80.0811V80.4385H87.4331ZM81.8196 76.7592C82.8287 76.7592 83.7748 76.5139 84.6579 76.0233C85.5549 75.5328 86.2277 74.874 86.6762 74.047V69.758H83.922C82.0298 69.758 80.6071 70.0874 79.654 70.7462C78.7009 71.405 78.2244 72.337 78.2244 73.5425C78.2244 74.5236 78.5467 75.3085 79.1915 75.8972C79.8503 76.4719 80.7263 76.7592 81.8196 76.7592ZM109.887 74.2573C109.887 73.3462 109.509 72.6524 108.752 72.1759C108.009 71.6993 106.769 71.2788 105.031 70.9144C103.293 70.55 101.842 70.0874 100.679 69.5268C98.1275 68.2933 96.852 66.5063 96.852 64.1655C96.852 62.2033 97.679 60.5633 99.3329 59.2458C100.987 57.9283 103.089 57.2695 105.64 57.2695C108.359 57.2695 110.553 57.9423 112.221 59.2879C113.903 60.6334 114.744 62.3785 114.744 64.523H109.635C109.635 63.5418 109.271 62.7289 108.542 62.0841C107.813 61.4254 106.846 61.096 105.64 61.096C104.519 61.096 103.601 61.3553 102.886 61.8739C102.185 62.3925 101.835 63.0863 101.835 63.9553C101.835 64.7402 102.164 65.3499 102.823 65.7844C103.482 66.2189 104.813 66.6604 106.818 67.109C108.822 67.5435 110.392 68.0691 111.527 68.6858C112.676 69.2885 113.524 70.0173 114.071 70.8723C114.632 71.7273 114.912 72.7645 114.912 73.984C114.912 76.0303 114.064 77.6913 112.368 78.9668C110.672 80.2282 108.451 80.859 105.703 80.859C103.839 80.859 102.178 80.5226 100.721 79.8498C99.2629 79.177 98.1275 78.2519 97.3146 77.0746C96.5016 75.8972 96.0952 74.6287 96.0952 73.2691H101.057C101.127 74.4745 101.583 75.4066 102.424 76.0654C103.265 76.7101 104.379 77.0325 105.766 77.0325C107.112 77.0325 108.135 76.7802 108.836 76.2756C109.537 75.757 109.887 75.0842 109.887 74.2573ZM124.815 80.4385H119.706V57.69H124.815V80.4385ZM119.39 51.7821C119.39 50.9972 119.636 50.3455 120.126 49.8269C120.631 49.3083 121.346 49.0489 122.271 49.0489C123.196 49.0489 123.911 49.3083 124.415 49.8269C124.92 50.3455 125.172 50.9972 125.172 51.7821C125.172 52.553 124.92 53.1978 124.415 53.7164C123.911 54.221 123.196 54.4733 122.271 54.4733C121.346 54.4733 120.631 54.221 120.126 53.7164C119.636 53.1978 119.39 52.553 119.39 51.7821ZM135.831 80.4385H130.722V48.1449H135.831V80.4385ZM149.371 73.122L153.997 57.69H159.442L150.401 83.8865C149.014 87.7129 146.659 89.6262 143.337 89.6262C142.594 89.6262 141.774 89.5 140.877 89.2477V85.2951L141.844 85.3582C143.134 85.3582 144.101 85.1199 144.746 84.6434C145.405 84.1808 145.923 83.3959 146.302 82.2886L147.037 80.3334L139.048 57.69H144.557L149.371 73.122ZM178.932 69.0642V80.4385H173.612V49.8269H185.323C188.743 49.8269 191.455 50.7169 193.459 52.497C195.478 54.277 196.487 56.6318 196.487 59.5612C196.487 62.5607 195.499 64.8944 193.523 66.5623C191.56 68.2303 188.806 69.0642 185.26 69.0642H178.932ZM178.932 64.7963H185.323C187.215 64.7963 188.659 64.3548 189.654 63.4717C190.649 62.5747 191.147 61.2852 191.147 59.6032C191.147 57.9493 190.642 56.6318 189.633 55.6506C188.624 54.6555 187.236 54.1439 185.47 54.1158H178.932V64.7963ZM214.442 78.2099C212.942 79.9759 210.812 80.859 208.05 80.859C205.584 80.859 203.712 80.1371 202.437 78.6934C201.175 77.2498 200.545 75.1613 200.545 72.4282V57.69H205.654V72.3651C205.654 75.2524 206.852 76.6961 209.249 76.6961C211.73 76.6961 213.405 75.8061 214.274 74.026V57.69H219.383V80.4385H214.568L214.442 78.2099ZM229.327 57.69L229.474 60.3181C231.156 58.2857 233.364 57.2695 236.097 57.2695C240.835 57.2695 243.245 59.9817 243.33 65.406V80.4385H238.221V65.7003C238.221 64.2566 237.905 63.1914 237.274 62.5046C236.658 61.8038 235.642 61.4534 234.226 61.4534C232.166 61.4534 230.631 62.3855 229.622 64.2496V80.4385H224.513V57.69H229.327ZM253.989 80.4385H248.88V57.69H253.989V80.4385ZM248.565 51.7821C248.565 50.9972 248.81 50.3455 249.3 49.8269C249.805 49.3083 250.52 49.0489 251.445 49.0489C252.37 49.0489 253.085 49.3083 253.589 49.8269C254.094 50.3455 254.346 50.9972 254.346 51.7821C254.346 52.553 254.094 53.1978 253.589 53.7164C253.085 54.221 252.37 54.4733 251.445 54.4733C250.52 54.4733 249.805 54.221 249.3 53.7164C248.81 53.1978 248.565 52.553 248.565 51.7821ZM272.322 74.2573C272.322 73.3462 271.944 72.6524 271.187 72.1759C270.444 71.6993 269.204 71.2788 267.466 70.9144C265.728 70.55 264.277 70.0874 263.114 69.5268C260.563 68.2933 259.287 66.5063 259.287 64.1655C259.287 62.2033 260.114 60.5633 261.768 59.2458C263.422 57.9283 265.524 57.2695 268.075 57.2695C270.794 57.2695 272.988 57.9423 274.656 59.2879C276.338 60.6334 277.179 62.3785 277.179 64.523H272.07C272.07 63.5418 271.706 62.7289 270.977 62.0841C270.248 61.4254 269.281 61.096 268.075 61.096C266.954 61.096 266.036 61.3553 265.321 61.8739C264.62 62.3925 264.27 63.0863 264.27 63.9553C264.27 64.7402 264.599 65.3499 265.258 65.7844C265.917 66.2189 267.248 66.6604 269.253 67.109C271.257 67.5435 272.827 68.0691 273.962 68.6858C275.111 69.2885 275.959 70.0173 276.506 70.8723C277.067 71.7273 277.347 72.7645 277.347 73.984C277.347 76.0303 276.499 77.6913 274.803 78.9668C273.107 80.2282 270.886 80.859 268.138 80.859C266.274 80.859 264.613 80.5226 263.156 79.8498C261.698 79.177 260.563 78.2519 259.75 77.0746C258.937 75.8972 258.53 74.6287 258.53 73.2691H263.492C263.562 74.4745 264.018 75.4066 264.859 76.0654C265.7 76.7101 266.814 77.0325 268.201 77.0325C269.547 77.0325 270.57 76.7802 271.271 76.2756C271.972 75.757 272.322 75.0842 272.322 74.2573ZM286.85 60.1709C288.518 58.2366 290.628 57.2695 293.179 57.2695C298.028 57.2695 300.488 60.0377 300.558 65.5742V80.4385H295.449V65.7634C295.449 64.1936 295.106 63.0863 294.419 62.4415C293.746 61.7828 292.751 61.4534 291.433 61.4534C289.387 61.4534 287.859 62.3644 286.85 64.1866V80.4385H281.741V48.1449H286.85V60.1709ZM62.8975 118.644H56.9686V130.438H51.6494V99.8269H62.414C65.9461 99.8269 68.6723 100.619 70.5925 102.203C72.5127 103.786 73.4728 106.078 73.4728 109.078C73.4728 111.124 72.9753 112.841 71.9801 114.229C70.999 115.602 69.6254 116.66 67.8593 117.403L74.7343 130.165V130.438H69.0367L62.8975 118.644ZM56.9686 114.376H62.435C64.2291 114.376 65.6307 113.927 66.6399 113.03C67.6491 112.119 68.1537 110.879 68.1537 109.309C68.1537 107.669 67.6841 106.401 66.745 105.503C65.8199 104.606 64.4323 104.144 62.5822 104.116H56.9686V114.376ZM91.8062 128.21C90.3064 129.976 88.176 130.859 85.4147 130.859C82.9479 130.859 81.0767 130.137 79.8012 128.693C78.5397 127.25 77.909 125.161 77.909 122.428V107.69H83.0179V122.365C83.0179 125.252 84.2163 126.696 86.6131 126.696C89.094 126.696 90.769 125.806 91.638 124.026V107.69H96.7469V130.438H91.9323L91.8062 128.21ZM107.385 130.438H102.276V98.1449H107.385V130.438ZM122.985 130.859C119.748 130.859 117.12 129.843 115.101 127.81C113.097 125.764 112.095 123.045 112.095 119.653V119.022C112.095 116.752 112.529 114.726 113.398 112.946C114.281 111.152 115.515 109.757 117.099 108.762C118.682 107.767 120.449 107.27 122.397 107.27C125.494 107.27 127.884 108.258 129.566 110.234C131.262 112.21 132.11 115.007 132.11 118.623V120.683H117.246C117.4 122.561 118.024 124.047 119.117 125.14C120.224 126.234 121.612 126.78 123.28 126.78C125.621 126.78 127.527 125.834 128.998 123.942L131.753 126.57C130.842 127.93 129.622 128.988 128.094 129.745C126.581 130.488 124.878 130.859 122.985 130.859ZM122.376 111.369C120.974 111.369 119.839 111.86 118.97 112.841C118.115 113.822 117.568 115.189 117.33 116.941H127.064V116.562C126.952 114.852 126.497 113.563 125.698 112.694C124.899 111.811 123.791 111.369 122.376 111.369ZM156.057 119.296C156.057 122.828 155.265 125.638 153.681 127.726C152.111 129.815 149.946 130.859 147.185 130.859C144.522 130.859 142.447 129.899 140.961 127.979L140.709 130.438H136.084V98.1449H141.193V109.877C142.664 108.139 144.648 107.27 147.143 107.27C149.918 107.27 152.097 108.3 153.681 110.36C155.265 112.421 156.057 115.301 156.057 119.001V119.296ZM150.948 118.854C150.948 116.387 150.513 114.537 149.644 113.304C148.775 112.07 147.514 111.453 145.86 111.453C143.646 111.453 142.09 112.421 141.193 114.355V123.732C142.104 125.708 143.674 126.696 145.902 126.696C147.5 126.696 148.733 126.1 149.602 124.909C150.471 123.718 150.92 121.917 150.948 119.506V118.854ZM172.267 112.357C171.594 112.245 170.9 112.189 170.185 112.189C167.845 112.189 166.268 113.086 165.455 114.88V130.438H160.346V107.69H165.224L165.35 110.234C166.583 108.258 168.293 107.27 170.48 107.27C171.209 107.27 171.811 107.368 172.288 107.564L172.267 112.357ZM185.092 130.859C181.854 130.859 179.226 129.843 177.208 127.81C175.203 125.764 174.201 123.045 174.201 119.653V119.022C174.201 116.752 174.636 114.726 175.505 112.946C176.388 111.152 177.621 109.757 179.205 108.762C180.789 107.767 182.555 107.27 184.503 107.27C187.601 107.27 189.99 108.258 191.672 110.234C193.368 112.21 194.216 115.007 194.216 118.623V120.683H179.352C179.506 122.561 180.13 124.047 181.223 125.14C182.331 126.234 183.718 126.78 185.386 126.78C187.727 126.78 189.633 125.834 191.105 123.942L193.859 126.57C192.948 127.93 191.728 128.988 190.201 129.745C188.687 130.488 186.984 130.859 185.092 130.859ZM184.482 111.369C183.08 111.369 181.945 111.86 181.076 112.841C180.221 113.822 179.674 115.189 179.436 116.941H189.17V116.562C189.058 114.852 188.603 113.563 187.804 112.694C187.005 111.811 185.898 111.369 184.482 111.369ZM211.793 130.438C211.569 130.004 211.372 129.296 211.204 128.315C209.578 130.011 207.588 130.859 205.233 130.859C202.949 130.859 201.084 130.207 199.641 128.904C198.197 127.6 197.475 125.988 197.475 124.068C197.475 121.643 198.372 119.786 200.166 118.497C201.974 117.193 204.553 116.541 207.903 116.541H211.036V115.049C211.036 113.871 210.707 112.932 210.048 112.231C209.389 111.516 208.387 111.159 207.041 111.159C205.878 111.159 204.925 111.453 204.182 112.042C203.439 112.617 203.068 113.353 203.068 114.25H197.959C197.959 113.002 198.372 111.839 199.199 110.76C200.026 109.666 201.147 108.811 202.563 108.195C203.993 107.578 205.584 107.27 207.336 107.27C209.999 107.27 212.122 107.942 213.706 109.288C215.29 110.619 216.103 112.498 216.145 114.922V125.182C216.145 127.229 216.432 128.862 217.007 130.081V130.438H211.793ZM206.179 126.759C207.188 126.759 208.135 126.514 209.018 126.023C209.915 125.533 210.587 124.874 211.036 124.047V119.758H208.282C206.39 119.758 204.967 120.087 204.014 120.746C203.061 121.405 202.584 122.337 202.584 123.542C202.584 124.524 202.906 125.309 203.551 125.897C204.21 126.472 205.086 126.759 206.179 126.759ZM228.886 120.683L226.615 123.017V130.438H221.506V98.1449H226.615V116.773L228.213 114.775L234.499 107.69H240.638L232.187 117.172L241.542 130.438H235.635L228.886 120.683ZM253.589 130.859C250.352 130.859 247.724 129.843 245.705 127.81C243.701 125.764 242.699 123.045 242.699 119.653V119.022C242.699 116.752 243.133 114.726 244.002 112.946C244.885 111.152 246.119 109.757 247.703 108.762C249.286 107.767 251.052 107.27 253.001 107.27C256.098 107.27 258.488 108.258 260.17 110.234C261.866 112.21 262.714 115.007 262.714 118.623V120.683H247.85C248.004 122.561 248.628 124.047 249.721 125.14C250.828 126.234 252.216 126.78 253.884 126.78C256.225 126.78 258.131 125.834 259.602 123.942L262.357 126.57C261.446 127.93 260.226 128.988 258.698 129.745C257.185 130.488 255.482 130.859 253.589 130.859ZM252.98 111.369C251.578 111.369 250.443 111.86 249.574 112.841C248.719 113.822 248.172 115.189 247.934 116.941H257.668V116.562C257.556 114.852 257.101 113.563 256.302 112.694C255.503 111.811 254.395 111.369 252.98 111.369ZM278.609 112.357C277.936 112.245 277.242 112.189 276.527 112.189C274.186 112.189 272.61 113.086 271.797 114.88V130.438H266.688V107.69H271.565L271.691 110.234C272.925 108.258 274.635 107.27 276.821 107.27C277.55 107.27 278.153 107.368 278.63 107.564L278.609 112.357ZM294.587 124.257C294.587 123.346 294.209 122.652 293.452 122.176C292.709 121.699 291.469 121.279 289.73 120.914C287.992 120.55 286.542 120.087 285.378 119.527C282.827 118.293 281.552 116.506 281.552 114.166C281.552 112.203 282.379 110.563 284.033 109.246C285.687 107.928 287.789 107.27 290.34 107.27C293.059 107.27 295.253 107.942 296.921 109.288C298.603 110.633 299.444 112.378 299.444 114.523H294.335C294.335 113.542 293.97 112.729 293.242 112.084C292.513 111.425 291.546 111.096 290.34 111.096C289.219 111.096 288.301 111.355 287.586 111.874C286.885 112.392 286.535 113.086 286.535 113.955C286.535 114.74 286.864 115.35 287.523 115.784C288.182 116.219 289.513 116.66 291.518 117.109C293.522 117.543 295.092 118.069 296.227 118.686C297.376 119.289 298.224 120.017 298.771 120.872C299.332 121.727 299.612 122.765 299.612 123.984C299.612 126.03 298.764 127.691 297.068 128.967C295.372 130.228 293.15 130.859 290.403 130.859C288.539 130.859 286.878 130.523 285.42 129.85C283.963 129.177 282.827 128.252 282.015 127.075C281.202 125.897 280.795 124.629 280.795 123.269H285.757C285.827 124.475 286.282 125.407 287.123 126.065C287.964 126.71 289.079 127.033 290.466 127.033C291.812 127.033 292.835 126.78 293.536 126.276C294.237 125.757 294.587 125.084 294.587 124.257Z" fill="url(#paint1_linear)"/>
-<path d="M46.0194 173.629C45.8651 173.192 45.7665 172.544 45.7236 171.687C45.1834 172.39 44.4931 172.934 43.6528 173.32C42.821 173.698 41.9379 173.886 41.0032 173.886C39.6656 173.886 38.5809 173.513 37.7491 172.767C36.926 172.021 36.5144 171.078 36.5144 169.938C36.5144 168.583 37.076 167.511 38.1993 166.722C39.3312 165.933 40.9046 165.539 42.9197 165.539H45.7107V163.957C45.7107 162.962 45.402 162.182 44.7847 161.616C44.1758 161.041 43.2841 160.754 42.1093 160.754C41.0375 160.754 40.15 161.028 39.4469 161.577C38.7438 162.126 38.3922 162.786 38.3922 163.558L36.8488 163.545C36.8488 162.439 37.3633 161.483 38.3922 160.677C39.4212 159.862 40.686 159.455 42.1865 159.455C43.7385 159.455 44.9604 159.845 45.8522 160.625C46.7525 161.397 47.2156 162.478 47.2413 163.867V170.452C47.2413 171.798 47.3828 172.806 47.6657 173.475V173.629H46.0194ZM41.1833 172.523C42.2122 172.523 43.1297 172.274 43.9358 171.777C44.7504 171.279 45.342 170.615 45.7107 169.783V166.722H42.9582C41.4234 166.739 40.2229 167.022 39.3569 167.571C38.4908 168.111 38.0578 168.857 38.0578 169.809C38.0578 170.589 38.3451 171.237 38.9196 171.751C39.5026 172.266 40.2572 172.523 41.1833 172.523ZM52.8234 159.712L52.8749 162.092C53.3979 161.234 54.0496 160.583 54.8299 160.137C55.6102 159.682 56.4719 159.455 57.4152 159.455C58.9072 159.455 60.0176 159.875 60.7464 160.715C61.4753 161.556 61.844 162.816 61.8526 164.497V173.629H60.322V164.484C60.3134 163.241 60.0476 162.315 59.5245 161.706C59.0101 161.097 58.1826 160.793 57.0422 160.793C56.0904 160.793 55.2458 161.093 54.5083 161.693C53.7795 162.285 53.2393 163.086 52.8877 164.098V173.629H51.3571V159.712H52.8234ZM65.2224 166.542C65.2224 164.381 65.7026 162.662 66.663 161.384C67.6319 160.098 68.9438 159.455 70.5987 159.455C72.4766 159.455 73.9086 160.197 74.8947 161.68V153.873H76.4252V173.629H74.9847L74.9204 171.777C73.9343 173.183 72.4852 173.886 70.573 173.886C68.9695 173.886 67.6748 173.243 66.6887 171.957C65.7112 170.662 65.2224 168.917 65.2224 166.722V166.542ZM66.7787 166.812C66.7787 168.587 67.1346 169.989 67.8463 171.018C68.558 172.038 69.5612 172.548 70.856 172.548C72.751 172.548 74.0972 171.712 74.8947 170.04V163.506C74.0972 161.697 72.7596 160.793 70.8817 160.793C69.5869 160.793 68.5794 161.303 67.8591 162.323C67.1389 163.335 66.7787 164.831 66.7787 166.812ZM95.2167 170.092C95.2167 169.329 94.908 168.716 94.2906 168.253C93.6818 167.79 92.76 167.429 91.5253 167.172C90.2905 166.906 89.3301 166.606 88.6442 166.272C87.9668 165.929 87.4609 165.513 87.1264 165.024C86.8006 164.535 86.6377 163.944 86.6377 163.249C86.6377 162.152 87.0964 161.247 88.0139 160.535C88.9314 159.815 90.1061 159.455 91.5381 159.455C93.0901 159.455 94.3335 159.841 95.2681 160.613C96.2113 161.376 96.6829 162.375 96.6829 163.609H95.1395C95.1395 162.795 94.7965 162.117 94.1105 161.577C93.4331 161.037 92.5757 160.767 91.5381 160.767C90.5263 160.767 89.7117 160.994 89.0943 161.449C88.4855 161.894 88.1811 162.478 88.1811 163.198C88.1811 163.892 88.4341 164.433 88.94 164.818C89.4545 165.196 90.3848 165.543 91.731 165.86C93.0858 166.178 94.0977 166.516 94.7665 166.876C95.4439 167.236 95.9455 167.67 96.2713 168.175C96.5972 168.681 96.7601 169.294 96.7601 170.015C96.7601 171.189 96.2842 172.128 95.3324 172.831C94.3892 173.535 93.1544 173.886 91.6282 173.886C90.0075 173.886 88.6913 173.496 87.6795 172.716C86.6763 171.927 86.1747 170.932 86.1747 169.732H87.7181C87.7781 170.632 88.1554 171.335 88.85 171.841C89.5531 172.338 90.4791 172.587 91.6282 172.587C92.7 172.587 93.566 172.351 94.2263 171.88C94.8865 171.408 95.2167 170.812 95.2167 170.092ZM105.622 173.886C104.439 173.886 103.367 173.595 102.407 173.012C101.455 172.428 100.713 171.618 100.181 170.581C99.6498 169.534 99.384 168.364 99.384 167.069V166.516C99.384 165.179 99.6412 163.974 100.156 162.902C100.679 161.83 101.403 160.99 102.329 160.381C103.255 159.764 104.259 159.455 105.339 159.455C107.028 159.455 108.366 160.034 109.352 161.191C110.347 162.34 110.844 163.914 110.844 165.912V166.773H100.915V167.069C100.915 168.647 101.365 169.963 102.265 171.018C103.174 172.064 104.314 172.587 105.686 172.587C106.51 172.587 107.234 172.437 107.86 172.137C108.495 171.837 109.069 171.357 109.584 170.696L110.548 171.429C109.416 173.067 107.774 173.886 105.622 173.886ZM105.339 160.767C104.181 160.767 103.204 161.191 102.407 162.04C101.618 162.889 101.137 164.03 100.966 165.462H109.313V165.294C109.271 163.957 108.889 162.868 108.169 162.027C107.448 161.187 106.505 160.767 105.339 160.767ZM119.23 173.886C118.047 173.886 116.975 173.595 116.015 173.012C115.063 172.428 114.321 171.618 113.789 170.581C113.258 169.534 112.992 168.364 112.992 167.069V166.516C112.992 165.179 113.249 163.974 113.764 162.902C114.287 161.83 115.011 160.99 115.937 160.381C116.863 159.764 117.867 159.455 118.947 159.455C120.636 159.455 121.974 160.034 122.96 161.191C123.955 162.34 124.452 163.914 124.452 165.912V166.773H114.523V167.069C114.523 168.647 114.973 169.963 115.873 171.018C116.782 172.064 117.922 172.587 119.294 172.587C120.118 172.587 120.842 172.437 121.468 172.137C122.103 171.837 122.677 171.357 123.192 170.696L124.156 171.429C123.024 173.067 121.382 173.886 119.23 173.886ZM118.947 160.767C117.79 160.767 116.812 161.191 116.015 162.04C115.226 162.889 114.746 164.03 114.574 165.462H122.921V165.294C122.879 163.957 122.497 162.868 121.777 162.027C121.056 161.187 120.113 160.767 118.947 160.767ZM142.639 173.629C142.485 173.192 142.386 172.544 142.343 171.687C141.803 172.39 141.113 172.934 140.272 173.32C139.441 173.698 138.557 173.886 137.623 173.886C136.285 173.886 135.2 173.513 134.369 172.767C133.545 172.021 133.134 171.078 133.134 169.938C133.134 168.583 133.696 167.511 134.819 166.722C135.951 165.933 137.524 165.539 139.539 165.539H142.33V163.957C142.33 162.962 142.022 162.182 141.404 161.616C140.795 161.041 139.904 160.754 138.729 160.754C137.657 160.754 136.77 161.028 136.066 161.577C135.363 162.126 135.012 162.786 135.012 163.558L133.468 163.545C133.468 162.439 133.983 161.483 135.012 160.677C136.041 159.862 137.305 159.455 138.806 159.455C140.358 159.455 141.58 159.845 142.472 160.625C143.372 161.397 143.835 162.478 143.861 163.867V170.452C143.861 171.798 144.002 172.806 144.285 173.475V173.629H142.639ZM137.803 172.523C138.832 172.523 139.749 172.274 140.555 171.777C141.37 171.279 141.962 170.615 142.33 169.783V166.722H139.578C138.043 166.739 136.842 167.022 135.976 167.571C135.11 168.111 134.677 168.857 134.677 169.809C134.677 170.589 134.965 171.237 135.539 171.751C136.122 172.266 136.877 172.523 137.803 172.523ZM149.7 173.629H148.157V153.873H149.7V173.629ZM155.617 173.629H154.073V153.873H155.617V173.629ZM177.405 166.812C177.405 168.981 176.925 170.705 175.964 171.983C175.004 173.252 173.718 173.886 172.106 173.886C170.202 173.886 168.745 173.217 167.733 171.88V178.98H166.202V159.712H167.63L167.707 161.68C168.71 160.197 170.164 159.455 172.067 159.455C173.731 159.455 175.034 160.085 175.977 161.346C176.929 162.606 177.405 164.355 177.405 166.593V166.812ZM175.862 166.542C175.862 164.767 175.497 163.365 174.768 162.336C174.039 161.307 173.023 160.793 171.72 160.793C170.777 160.793 169.966 161.02 169.289 161.474C168.612 161.929 168.093 162.589 167.733 163.455V170.13C168.101 170.928 168.629 171.537 169.315 171.957C170.001 172.377 170.811 172.587 171.746 172.587C173.04 172.587 174.048 172.073 174.768 171.044C175.497 170.006 175.862 168.506 175.862 166.542ZM189.778 171.867C188.852 173.213 187.373 173.886 185.341 173.886C183.857 173.886 182.73 173.457 181.958 172.6C181.186 171.734 180.792 170.456 180.775 168.767V159.712H182.305V168.574C182.305 171.224 183.377 172.548 185.521 172.548C187.75 172.548 189.161 171.627 189.753 169.783V159.712H191.296V173.629H189.804L189.778 171.867ZM196.775 159.712L196.827 162.092C197.35 161.234 198.001 160.583 198.782 160.137C199.562 159.682 200.424 159.455 201.367 159.455C202.859 159.455 203.969 159.875 204.698 160.715C205.427 161.556 205.796 162.816 205.804 164.497V173.629H204.274V164.484C204.265 163.241 203.999 162.315 203.476 161.706C202.962 161.097 202.134 160.793 200.994 160.793C200.042 160.793 199.198 161.093 198.46 161.693C197.731 162.285 197.191 163.086 196.84 164.098V173.629H195.309V159.712H196.775ZM211.515 173.629H209.972V159.712H211.515V173.629ZM209.702 155.686C209.702 155.395 209.796 155.15 209.985 154.953C210.173 154.747 210.43 154.645 210.756 154.645C211.082 154.645 211.339 154.747 211.528 154.953C211.725 155.15 211.824 155.395 211.824 155.686C211.824 155.978 211.725 156.222 211.528 156.42C211.339 156.617 211.082 156.715 210.756 156.715C210.43 156.715 210.173 156.617 209.985 156.42C209.796 156.222 209.702 155.978 209.702 155.686ZM224.043 170.092C224.043 169.329 223.734 168.716 223.117 168.253C222.508 167.79 221.586 167.429 220.351 167.172C219.117 166.906 218.156 166.606 217.47 166.272C216.793 165.929 216.287 165.513 215.952 165.024C215.627 164.535 215.464 163.944 215.464 163.249C215.464 162.152 215.922 161.247 216.84 160.535C217.757 159.815 218.932 159.455 220.364 159.455C221.916 159.455 223.16 159.841 224.094 160.613C225.037 161.376 225.509 162.375 225.509 163.609H223.966C223.966 162.795 223.623 162.117 222.937 161.577C222.259 161.037 221.402 160.767 220.364 160.767C219.352 160.767 218.538 160.994 217.92 161.449C217.312 161.894 217.007 162.478 217.007 163.198C217.007 163.892 217.26 164.433 217.766 164.818C218.281 165.196 219.211 165.543 220.557 165.86C221.912 166.178 222.924 166.516 223.593 166.876C224.27 167.236 224.772 167.67 225.097 168.175C225.423 168.681 225.586 169.294 225.586 170.015C225.586 171.189 225.11 172.128 224.158 172.831C223.215 173.535 221.981 173.886 220.454 173.886C218.834 173.886 217.517 173.496 216.506 172.716C215.502 171.927 215.001 170.932 215.001 169.732H216.544C216.604 170.632 216.981 171.335 217.676 171.841C218.379 172.338 219.305 172.587 220.454 172.587C221.526 172.587 222.392 172.351 223.052 171.88C223.713 171.408 224.043 170.812 224.043 170.092ZM230.589 162.066C231.095 161.234 231.743 160.591 232.532 160.137C233.321 159.682 234.182 159.455 235.117 159.455C236.609 159.455 237.719 159.875 238.448 160.715C239.177 161.556 239.546 162.816 239.554 164.497V173.629H238.024V164.484C238.015 163.241 237.749 162.315 237.226 161.706C236.712 161.097 235.884 160.793 234.744 160.793C233.792 160.793 232.948 161.093 232.21 161.693C231.481 162.285 230.941 163.086 230.589 164.098V173.629H229.059V153.873H230.589V162.066ZM244.918 159.712L244.969 161.976C245.484 161.136 246.127 160.505 246.899 160.085C247.67 159.665 248.528 159.455 249.471 159.455C251.666 159.455 253.059 160.355 253.651 162.156C254.148 161.29 254.813 160.625 255.645 160.162C256.476 159.691 257.394 159.455 258.397 159.455C261.381 159.455 262.903 161.084 262.963 164.343V173.629H261.42V164.458C261.411 163.215 261.141 162.293 260.609 161.693C260.086 161.093 259.229 160.793 258.037 160.793C256.931 160.81 255.996 161.17 255.233 161.873C254.47 162.568 254.046 163.416 253.96 164.42V173.629H252.416V164.343C252.408 163.151 252.125 162.263 251.567 161.68C251.019 161.088 250.17 160.793 249.021 160.793C248.052 160.793 247.22 161.071 246.526 161.629C245.831 162.177 245.317 162.996 244.982 164.085V173.629H243.439V159.712H244.918ZM272.262 173.886C271.079 173.886 270.007 173.595 269.047 173.012C268.095 172.428 267.353 171.618 266.822 170.581C266.29 169.534 266.024 168.364 266.024 167.069V166.516C266.024 165.179 266.282 163.974 266.796 162.902C267.319 161.83 268.044 160.99 268.97 160.381C269.896 159.764 270.899 159.455 271.979 159.455C273.669 159.455 275.006 160.034 275.992 161.191C276.987 162.34 277.484 163.914 277.484 165.912V166.773H267.555V167.069C267.555 168.647 268.005 169.963 268.905 171.018C269.814 172.064 270.955 172.587 272.327 172.587C273.15 172.587 273.874 172.437 274.5 172.137C275.135 171.837 275.709 171.357 276.224 170.696L277.189 171.429C276.057 173.067 274.415 173.886 272.262 173.886ZM271.979 160.767C270.822 160.767 269.844 161.191 269.047 162.04C268.258 162.889 267.778 164.03 267.606 165.462H275.954V165.294C275.911 163.957 275.529 162.868 274.809 162.027C274.089 161.187 273.146 160.767 271.979 160.767ZM281.948 159.712L281.999 162.092C282.522 161.234 283.174 160.583 283.954 160.137C284.734 159.682 285.596 159.455 286.539 159.455C288.031 159.455 289.142 159.875 289.871 160.715C290.599 161.556 290.968 162.816 290.977 164.497V173.629H289.446V164.484C289.438 163.241 289.172 162.315 288.649 161.706C288.134 161.097 287.307 160.793 286.166 160.793C285.215 160.793 284.37 161.093 283.632 161.693C282.904 162.285 282.363 163.086 282.012 164.098V173.629H280.481V159.712H281.948ZM297.356 156.149V159.712H300.237V160.973H297.356V170.246C297.356 171.018 297.493 171.592 297.768 171.97C298.051 172.347 298.518 172.536 299.17 172.536C299.427 172.536 299.843 172.493 300.417 172.407L300.482 173.667C300.079 173.813 299.53 173.886 298.835 173.886C297.781 173.886 297.013 173.582 296.533 172.973C296.053 172.356 295.813 171.451 295.813 170.259V160.973H293.253V159.712H295.813V156.149H297.356ZM311.762 170.092C311.762 169.329 311.453 168.716 310.836 168.253C310.227 167.79 309.305 167.429 308.07 167.172C306.836 166.906 305.875 166.606 305.189 166.272C304.512 165.929 304.006 165.513 303.672 165.024C303.346 164.535 303.183 163.944 303.183 163.249C303.183 162.152 303.641 161.247 304.559 160.535C305.476 159.815 306.651 159.455 308.083 159.455C309.635 159.455 310.879 159.841 311.813 160.613C312.756 161.376 313.228 162.375 313.228 163.609H311.685C311.685 162.795 311.342 162.117 310.656 161.577C309.978 161.037 309.121 160.767 308.083 160.767C307.071 160.767 306.257 160.994 305.639 161.449C305.031 161.894 304.726 162.478 304.726 163.198C304.726 163.892 304.979 164.433 305.485 164.818C306 165.196 306.93 165.543 308.276 165.86C309.631 166.178 310.643 166.516 311.312 166.876C311.989 167.236 312.491 167.67 312.816 168.175C313.142 168.681 313.305 169.294 313.305 170.015C313.305 171.189 312.829 172.128 311.877 172.831C310.934 173.535 309.7 173.886 308.173 173.886C306.553 173.886 305.236 173.496 304.225 172.716C303.221 171.927 302.72 170.932 302.72 169.732H304.263C304.323 170.632 304.7 171.335 305.395 171.841C306.098 172.338 307.024 172.587 308.173 172.587C309.245 172.587 310.111 172.351 310.771 171.88C311.432 171.408 311.762 170.812 311.762 170.092ZM81.5443 204.629H80.0009V190.712H81.5443V204.629ZM79.7308 186.686C79.7308 186.395 79.8251 186.15 80.0137 185.953C80.2024 185.747 80.4596 185.645 80.7855 185.645C81.1113 185.645 81.3685 185.747 81.5572 185.953C81.7544 186.15 81.853 186.395 81.853 186.686C81.853 186.978 81.7544 187.222 81.5572 187.42C81.3685 187.617 81.1113 187.715 80.7855 187.715C80.4596 187.715 80.2024 187.617 80.0137 187.42C79.8251 187.222 79.7308 186.978 79.7308 186.686ZM87.2036 190.712L87.2551 193.092C87.7781 192.234 88.4298 191.583 89.2101 191.137C89.9904 190.682 90.8521 190.455 91.7954 190.455C93.2874 190.455 94.3978 190.875 95.1266 191.715C95.8555 192.556 96.2242 193.816 96.2328 195.497V204.629H94.7022V195.484C94.6936 194.241 94.4278 193.315 93.9047 192.706C93.3903 192.097 92.5628 191.793 91.4224 191.793C90.4706 191.793 89.626 192.093 88.8885 192.693C88.1597 193.285 87.6195 194.086 87.2679 195.098V204.629H85.7373V190.712H87.2036ZM105.776 197.465C105.776 196.127 106.034 194.922 106.548 193.851C107.071 192.779 107.804 191.947 108.748 191.355C109.699 190.755 110.775 190.455 111.976 190.455C113.828 190.455 115.329 191.107 116.478 192.41C117.627 193.705 118.201 195.424 118.201 197.568V197.889C118.201 199.235 117.94 200.449 117.417 201.529C116.902 202.601 116.173 203.428 115.23 204.012C114.287 204.595 113.211 204.886 112.002 204.886C110.158 204.886 108.657 204.239 107.5 202.944C106.351 201.641 105.776 199.917 105.776 197.773V197.465ZM107.32 197.889C107.32 199.553 107.749 200.92 108.606 201.992C109.472 203.055 110.604 203.587 112.002 203.587C113.391 203.587 114.514 203.055 115.371 201.992C116.238 200.92 116.671 199.51 116.671 197.761V197.465C116.671 196.401 116.473 195.428 116.079 194.545C115.684 193.662 115.131 192.98 114.42 192.5C113.708 192.011 112.893 191.767 111.976 191.767C110.604 191.767 109.485 192.307 108.619 193.387C107.753 194.459 107.32 195.866 107.32 197.606V197.889ZM122.857 190.712L122.909 193.092C123.432 192.234 124.083 191.583 124.864 191.137C125.644 190.682 126.506 190.455 127.449 190.455C128.941 190.455 130.051 190.875 130.78 191.715C131.509 192.556 131.878 193.816 131.886 195.497V204.629H130.356V195.484C130.347 194.241 130.081 193.315 129.558 192.706C129.044 192.097 128.216 191.793 127.076 191.793C126.124 191.793 125.28 192.093 124.542 192.693C123.813 193.285 123.273 194.086 122.921 195.098V204.629H121.391V190.712H122.857ZM141.263 204.886C140.079 204.886 139.008 204.595 138.047 204.012C137.095 203.428 136.354 202.618 135.822 201.581C135.29 200.534 135.025 199.364 135.025 198.069V197.516C135.025 196.179 135.282 194.974 135.796 193.902C136.319 192.83 137.044 191.99 137.97 191.381C138.896 190.764 139.899 190.455 140.98 190.455C142.669 190.455 144.007 191.034 144.993 192.191C145.987 193.34 146.485 194.914 146.485 196.912V197.773H136.555V198.069C136.555 199.647 137.005 200.963 137.906 202.018C138.815 203.064 139.955 203.587 141.327 203.587C142.15 203.587 142.875 203.437 143.501 203.137C144.135 202.837 144.71 202.357 145.224 201.696L146.189 202.429C145.057 204.067 143.415 204.886 141.263 204.886ZM140.98 191.767C139.822 191.767 138.845 192.191 138.047 193.04C137.258 193.889 136.778 195.03 136.607 196.462H144.954V196.294C144.911 194.957 144.53 193.868 143.809 193.027C143.089 192.187 142.146 191.767 140.98 191.767ZM161.032 203.587C162.103 203.587 163 203.287 163.72 202.687C164.449 202.078 164.843 201.293 164.903 200.333H166.382C166.339 201.182 166.074 201.958 165.585 202.661C165.096 203.356 164.444 203.9 163.63 204.294C162.824 204.689 161.958 204.886 161.032 204.886C159.205 204.886 157.756 204.252 156.684 202.983C155.621 201.714 155.089 200.007 155.089 197.863V197.4C155.089 196.028 155.329 194.815 155.81 193.76C156.29 192.706 156.976 191.891 157.868 191.317C158.768 190.742 159.818 190.455 161.019 190.455C162.545 190.455 163.801 190.909 164.787 191.818C165.782 192.727 166.314 193.923 166.382 195.407H164.903C164.835 194.318 164.44 193.439 163.72 192.77C163.008 192.101 162.108 191.767 161.019 191.767C159.63 191.767 158.549 192.268 157.778 193.272C157.014 194.275 156.633 195.681 156.633 197.49V197.941C156.633 199.716 157.014 201.1 157.778 202.095C158.549 203.09 159.634 203.587 161.032 203.587ZM168.62 197.465C168.62 196.127 168.877 194.922 169.392 193.851C169.915 192.779 170.648 191.947 171.591 191.355C172.543 190.755 173.619 190.455 174.82 190.455C176.672 190.455 178.172 191.107 179.321 192.41C180.47 193.705 181.045 195.424 181.045 197.568V197.889C181.045 199.235 180.783 200.449 180.26 201.529C179.746 202.601 179.017 203.428 178.074 204.012C177.131 204.595 176.055 204.886 174.845 204.886C173.002 204.886 171.501 204.239 170.344 202.944C169.195 201.641 168.62 199.917 168.62 197.773V197.465ZM170.164 197.889C170.164 199.553 170.592 200.92 171.45 201.992C172.316 203.055 173.448 203.587 174.845 203.587C176.235 203.587 177.358 203.055 178.215 201.992C179.081 200.92 179.514 199.51 179.514 197.761V197.465C179.514 196.401 179.317 195.428 178.923 194.545C178.528 193.662 177.975 192.98 177.264 192.5C176.552 192.011 175.737 191.767 174.82 191.767C173.448 191.767 172.329 192.307 171.463 193.387C170.597 194.459 170.164 195.866 170.164 197.606V197.889ZM185.637 190.712L185.688 192.976C186.203 192.136 186.846 191.505 187.617 191.085C188.389 190.665 189.247 190.455 190.19 190.455C192.385 190.455 193.778 191.355 194.37 193.156C194.867 192.29 195.532 191.625 196.364 191.162C197.195 190.691 198.113 190.455 199.116 190.455C202.1 190.455 203.622 192.084 203.682 195.343V204.629H202.139V195.458C202.13 194.215 201.86 193.293 201.328 192.693C200.805 192.093 199.948 191.793 198.756 191.793C197.65 191.81 196.715 192.17 195.952 192.873C195.189 193.568 194.764 194.416 194.679 195.42V204.629H193.135V195.343C193.127 194.151 192.844 193.263 192.286 192.68C191.738 192.088 190.889 191.793 189.74 191.793C188.771 191.793 187.939 192.071 187.244 192.629C186.55 193.177 186.035 193.996 185.701 195.085V204.629H184.158V190.712H185.637ZM208.994 190.712L209.046 192.976C209.56 192.136 210.203 191.505 210.975 191.085C211.747 190.665 212.604 190.455 213.547 190.455C215.742 190.455 217.136 191.355 217.727 193.156C218.225 192.29 218.889 191.625 219.721 191.162C220.553 190.691 221.47 190.455 222.474 190.455C225.458 190.455 226.98 192.084 227.04 195.343V204.629H225.496V195.458C225.488 194.215 225.217 193.293 224.686 192.693C224.163 192.093 223.305 191.793 222.113 191.793C221.007 191.81 220.073 192.17 219.31 192.873C218.546 193.568 218.122 194.416 218.036 195.42V204.629H216.493V195.343C216.484 194.151 216.201 193.263 215.644 192.68C215.095 192.088 214.246 191.793 213.097 191.793C212.128 191.793 211.296 192.071 210.602 192.629C209.907 193.177 209.393 193.996 209.058 195.085V204.629H207.515V190.712H208.994ZM239.734 204.629C239.58 204.192 239.481 203.544 239.439 202.687C238.898 203.39 238.208 203.934 237.368 204.32C236.536 204.698 235.653 204.886 234.718 204.886C233.381 204.886 232.296 204.513 231.464 203.767C230.641 203.021 230.229 202.078 230.229 200.938C230.229 199.583 230.791 198.511 231.914 197.722C233.046 196.933 234.62 196.539 236.635 196.539H239.426V194.957C239.426 193.962 239.117 193.182 238.5 192.616C237.891 192.041 236.999 191.754 235.824 191.754C234.752 191.754 233.865 192.028 233.162 192.577C232.459 193.126 232.107 193.786 232.107 194.558L230.564 194.545C230.564 193.439 231.078 192.483 232.107 191.677C233.136 190.862 234.401 190.455 235.902 190.455C237.454 190.455 238.675 190.845 239.567 191.625C240.468 192.397 240.931 193.478 240.956 194.867V201.452C240.956 202.798 241.098 203.806 241.381 204.475V204.629H239.734ZM234.898 203.523C235.927 203.523 236.845 203.274 237.651 202.777C238.465 202.279 239.057 201.615 239.426 200.783V197.722H236.673C235.138 197.739 233.938 198.022 233.072 198.571C232.206 199.111 231.773 199.857 231.773 200.809C231.773 201.589 232.06 202.237 232.635 202.751C233.218 203.266 233.972 203.523 234.898 203.523ZM246.538 190.712L246.59 193.092C247.113 192.234 247.765 191.583 248.545 191.137C249.325 190.682 250.187 190.455 251.13 190.455C252.622 190.455 253.733 190.875 254.461 191.715C255.19 192.556 255.559 193.816 255.568 195.497V204.629H254.037V195.484C254.028 194.241 253.763 193.315 253.24 192.706C252.725 192.097 251.898 191.793 250.757 191.793C249.805 191.793 248.961 192.093 248.223 192.693C247.494 193.285 246.954 194.086 246.603 195.098V204.629H245.072V190.712H246.538ZM258.937 197.542C258.937 195.381 259.418 193.662 260.378 192.384C261.347 191.098 262.659 190.455 264.314 190.455C266.192 190.455 267.624 191.197 268.61 192.68V184.873H270.14V204.629H268.7L268.635 202.777C267.649 204.183 266.2 204.886 264.288 204.886C262.685 204.886 261.39 204.243 260.404 202.957C259.426 201.662 258.937 199.917 258.937 197.722V197.542ZM260.494 197.812C260.494 199.587 260.85 200.989 261.561 202.018C262.273 203.038 263.276 203.548 264.571 203.548C266.466 203.548 267.812 202.712 268.61 201.04V194.506C267.812 192.697 266.475 191.793 264.597 191.793C263.302 191.793 262.294 192.303 261.574 193.323C260.854 194.335 260.494 195.831 260.494 197.812Z" fill="black"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="355.091" y2="116.809" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="132.848" y1="40.4385" x2="229.932" y2="109.068" gradientUnits="userSpaceOnUse">
-<stop stop-color="#775EBF"/>
-<stop offset="1" stop-color="#6576CC"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Raids.svg b/public/Features/RSM/Raids.svg
deleted file mode 100644
index 6d3ceea..0000000
--- a/public/Features/RSM/Raids.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-<svg width="350" height="250" viewBox="0 0 350 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M67.7564 61.4922H66.1615V52.5145H55.4603V61.4922H53.8782V42.7651H55.4603V51.1768H66.1615V42.7651H67.7564V61.4922ZM77.5572 61.7494C76.3739 61.7494 75.3021 61.4579 74.3417 60.8748C73.3899 60.2917 72.6482 59.4814 72.1166 58.4439C71.585 57.3978 71.3191 56.2273 71.3191 54.9326V54.3795C71.3191 53.0418 71.5764 51.8371 72.0909 50.7653C72.6139 49.6934 73.3385 48.8531 74.2645 48.2443C75.1906 47.6269 76.1939 47.3182 77.2743 47.3182C78.9635 47.3182 80.3011 47.897 81.2872 49.0546C82.2819 50.2036 82.7792 51.7771 82.7792 53.775V54.6367H72.8497V54.9326C72.8497 56.5103 73.2999 57.8265 74.2002 58.8812C75.1092 59.9273 76.2496 60.4504 77.6215 60.4504C78.4447 60.4504 79.1693 60.3003 79.7952 60.0002C80.4297 59.7001 81.0042 59.2199 81.5187 58.5596L82.4834 59.2928C81.3515 60.9305 79.7095 61.7494 77.5572 61.7494ZM77.2743 48.6302C76.1167 48.6302 75.1392 49.0546 74.3417 49.9035C73.5528 50.7524 73.0727 51.8928 72.9012 53.3248H81.2486V53.1576C81.2058 51.8199 80.8242 50.731 80.1039 49.8906C79.3836 49.0503 78.4404 48.6302 77.2743 48.6302ZM87.4996 61.4922H85.9561V41.7361H87.4996V61.4922ZM102.883 54.6753C102.883 56.8447 102.402 58.5682 101.442 59.8458C100.482 61.1149 99.1954 61.7494 97.5834 61.7494C95.6798 61.7494 94.2221 61.0806 93.2103 59.743V66.8428H91.6797V47.5755H93.1074L93.1846 49.5434C94.1878 48.0599 95.6412 47.3182 97.5448 47.3182C99.2083 47.3182 100.512 47.9485 101.455 49.209C102.407 50.4694 102.883 52.2187 102.883 54.4567V54.6753ZM101.339 54.4052C101.339 52.6303 100.975 51.2283 100.246 50.1993C99.517 49.1704 98.5009 48.6559 97.1975 48.6559C96.2543 48.6559 95.444 48.8831 94.7666 49.3376C94.0892 49.792 93.5704 50.4523 93.2103 51.3183V57.9937C93.579 58.7912 94.1064 59.4 94.7923 59.8201C95.4783 60.2403 96.2886 60.4504 97.2233 60.4504C98.518 60.4504 99.5256 59.9359 100.246 58.9069C100.975 57.8694 101.339 56.3688 101.339 54.4052ZM117.121 59.2799L121.185 47.5755H122.844L116.902 63.8588L116.593 64.5791C115.83 66.2683 114.651 67.1129 113.056 67.1129C112.688 67.1129 112.293 67.0529 111.873 66.9328L111.86 65.6595L112.658 65.7367C113.412 65.7367 114.021 65.548 114.484 65.1707C114.956 64.802 115.354 64.1632 115.68 63.2543L116.362 61.3764L111.114 47.5755H112.799L117.121 59.2799ZM124.182 54.328C124.182 52.9904 124.439 51.7856 124.954 50.7138C125.477 49.642 126.21 48.8102 127.153 48.2186C128.105 47.6183 129.181 47.3182 130.382 47.3182C132.234 47.3182 133.734 47.9699 134.883 49.2733C136.032 50.568 136.607 52.2873 136.607 54.4309V54.7525C136.607 56.0987 136.345 57.312 135.822 58.3924C135.308 59.4643 134.579 60.2917 133.636 60.8748C132.692 61.4579 131.616 61.7494 130.407 61.7494C128.564 61.7494 127.063 61.102 125.906 59.8073C124.757 58.5039 124.182 56.7804 124.182 54.6367V54.328ZM125.726 54.7525C125.726 56.416 126.154 57.7836 127.012 58.8555C127.878 59.9187 129.01 60.4504 130.407 60.4504C131.796 60.4504 132.92 59.9187 133.777 58.8555C134.643 57.7836 135.076 56.3731 135.076 54.6239V54.328C135.076 53.2648 134.879 52.2916 134.485 51.4084C134.09 50.5252 133.537 49.8435 132.825 49.3633C132.114 48.8745 131.299 48.6302 130.382 48.6302C129.01 48.6302 127.891 49.1704 127.025 50.2508C126.159 51.3226 125.726 52.7289 125.726 54.4695V54.7525ZM148.749 59.7301C147.822 61.0763 146.343 61.7494 144.311 61.7494C142.828 61.7494 141.7 61.3207 140.928 60.4632C140.157 59.5972 139.762 58.3196 139.745 56.6303V47.5755H141.276V56.4374C141.276 59.087 142.348 60.4118 144.491 60.4118C146.721 60.4118 148.131 59.49 148.723 57.6464V47.5755H150.266V61.4922H148.774L148.749 59.7301ZM160.71 48.8874C160.384 48.8274 160.037 48.7974 159.668 48.7974C158.708 48.7974 157.893 49.0675 157.225 49.6077C156.564 50.1393 156.093 50.9153 155.81 51.9357V61.4922H154.279V47.5755H155.784L155.81 49.7877C156.624 48.1414 157.932 47.3182 159.733 47.3182C160.161 47.3182 160.5 47.374 160.749 47.4854L160.71 48.8874ZM174.704 60.4504C175.776 60.4504 176.672 60.1502 177.392 59.55C178.121 58.9412 178.516 58.1566 178.576 57.1963H180.055C180.012 58.0452 179.746 58.8212 179.257 59.5243C178.769 60.2188 178.117 60.7633 177.302 61.1578C176.496 61.5522 175.63 61.7494 174.704 61.7494C172.878 61.7494 171.429 61.1149 170.357 59.8458C169.293 58.5768 168.762 56.8704 168.762 54.7268V54.2637C168.762 52.8918 169.002 51.6785 169.482 50.6238C169.962 49.5691 170.648 48.7545 171.54 48.18C172.44 47.6055 173.491 47.3182 174.691 47.3182C176.218 47.3182 177.474 47.7727 178.46 48.6816C179.454 49.5905 179.986 50.7867 180.055 52.2701H178.576C178.507 51.1811 178.113 50.3022 177.392 49.6334C176.681 48.9646 175.78 48.6302 174.691 48.6302C173.302 48.6302 172.222 49.1318 171.45 50.135C170.687 51.1383 170.305 52.5445 170.305 54.3538V54.8039C170.305 56.5789 170.687 57.9637 171.45 58.9584C172.222 59.953 173.306 60.4504 174.704 60.4504ZM182.293 54.328C182.293 52.9904 182.55 51.7856 183.064 50.7138C183.587 49.642 184.321 48.8102 185.264 48.2186C186.216 47.6183 187.292 47.3182 188.492 47.3182C190.344 47.3182 191.845 47.9699 192.994 49.2733C194.143 50.568 194.717 52.2873 194.717 54.4309V54.7525C194.717 56.0987 194.456 57.312 193.933 58.3924C193.418 59.4643 192.69 60.2917 191.746 60.8748C190.803 61.4579 189.727 61.7494 188.518 61.7494C186.674 61.7494 185.174 61.102 184.016 59.8073C182.867 58.5039 182.293 56.7804 182.293 54.6367V54.328ZM183.836 54.7525C183.836 56.416 184.265 57.7836 185.122 58.8555C185.988 59.9187 187.12 60.4504 188.518 60.4504C189.907 60.4504 191.03 59.9187 191.888 58.8555C192.754 57.7836 193.187 56.3731 193.187 54.6239V54.328C193.187 53.2648 192.99 52.2916 192.595 51.4084C192.201 50.5252 191.648 49.8435 190.936 49.3633C190.224 48.8745 189.41 48.6302 188.492 48.6302C187.12 48.6302 186.001 49.1704 185.135 50.2508C184.269 51.3226 183.836 52.7289 183.836 54.4695V54.7525ZM199.309 47.5755L199.361 49.8392C199.875 48.9989 200.518 48.3686 201.29 47.9485C202.062 47.5283 202.919 47.3182 203.862 47.3182C206.057 47.3182 207.451 48.2186 208.042 50.0193C208.54 49.1532 209.204 48.4887 210.036 48.0256C210.868 47.554 211.785 47.3182 212.789 47.3182C215.773 47.3182 217.295 48.9474 217.355 52.2058V61.4922H215.811V52.3216C215.803 51.0782 215.532 50.1565 215.001 49.5562C214.478 48.956 213.62 48.6559 212.428 48.6559C211.322 48.673 210.388 49.0332 209.625 49.7363C208.861 50.4308 208.437 51.2797 208.351 52.283V61.4922H206.808V52.2058C206.799 51.0139 206.516 50.1264 205.959 49.5434C205.41 48.9517 204.561 48.6559 203.412 48.6559C202.443 48.6559 201.611 48.9346 200.917 49.4919C200.222 50.0407 199.708 50.8596 199.373 51.9486V61.4922H197.83V47.5755H199.309ZM222.667 47.5755L222.718 49.8392C223.233 48.9989 223.876 48.3686 224.647 47.9485C225.419 47.5283 226.277 47.3182 227.22 47.3182C229.415 47.3182 230.808 48.2186 231.4 50.0193C231.897 49.1532 232.562 48.4887 233.394 48.0256C234.225 47.554 235.143 47.3182 236.146 47.3182C239.13 47.3182 240.652 48.9474 240.712 52.2058V61.4922H239.169V52.3216C239.16 51.0782 238.89 50.1565 238.358 49.5562C237.835 48.956 236.978 48.6559 235.786 48.6559C234.68 48.673 233.745 49.0332 232.982 49.7363C232.219 50.4308 231.794 51.2797 231.709 52.283V61.4922H230.165V52.2058C230.157 51.0139 229.874 50.1264 229.316 49.5434C228.768 48.9517 227.919 48.6559 226.77 48.6559C225.801 48.6559 224.969 48.9346 224.274 49.4919C223.58 50.0407 223.065 50.8596 222.731 51.9486V61.4922H221.187V47.5755H222.667ZM253.574 59.7301C252.648 61.0763 251.169 61.7494 249.137 61.7494C247.653 61.7494 246.526 61.3207 245.754 60.4632C244.982 59.5972 244.588 58.3196 244.571 56.6303V47.5755H246.101V56.4374C246.101 59.087 247.173 60.4118 249.317 60.4118C251.546 60.4118 252.957 59.49 253.548 57.6464V47.5755H255.092V61.4922H253.6L253.574 59.7301ZM260.571 47.5755L260.622 49.9549C261.146 49.0975 261.797 48.4458 262.577 47.9999C263.358 47.5455 264.22 47.3182 265.163 47.3182C266.655 47.3182 267.765 47.7384 268.494 48.5787C269.223 49.419 269.592 50.6795 269.6 52.3601V61.4922H268.07V52.3473C268.061 51.104 267.795 50.1779 267.272 49.5691C266.758 48.9603 265.93 48.6559 264.79 48.6559C263.838 48.6559 262.993 48.956 262.256 49.5562C261.527 50.1479 260.987 50.9496 260.635 51.9614V61.4922H259.105V47.5755H260.571ZM275.311 61.4922H273.767V47.5755H275.311V61.4922ZM273.497 43.5497C273.497 43.2581 273.592 43.0137 273.78 42.8165C273.969 42.6107 274.226 42.5078 274.552 42.5078C274.878 42.5078 275.135 42.6107 275.324 42.8165C275.521 43.0137 275.62 43.2581 275.62 43.5497C275.62 43.8412 275.521 44.0856 275.324 44.2828C275.135 44.48 274.878 44.5786 274.552 44.5786C274.226 44.5786 273.969 44.48 273.78 44.2828C273.592 44.0856 273.497 43.8412 273.497 43.5497ZM281.896 44.0127V47.5755H284.777V48.836H281.896V58.1095C281.896 58.8812 282.033 59.4557 282.308 59.833C282.591 60.2103 283.058 60.3989 283.71 60.3989C283.967 60.3989 284.383 60.356 284.957 60.2703L285.022 61.5308C284.619 61.6765 284.07 61.7494 283.375 61.7494C282.321 61.7494 281.553 61.445 281.073 60.8362C280.593 60.2188 280.353 59.3142 280.353 58.1223V48.836H277.793V47.5755H280.353V44.0127H281.896ZM292.379 59.2799L296.443 47.5755H298.102L292.16 63.8588L291.851 64.5791C291.088 66.2683 289.909 67.1129 288.314 67.1129C287.946 67.1129 287.551 67.0529 287.131 66.9328L287.118 65.6595L287.916 65.7367C288.67 65.7367 289.279 65.548 289.742 65.1707C290.214 64.802 290.612 64.1632 290.938 63.2543L291.62 61.3764L286.372 47.5755H288.057L292.379 59.2799ZM116.105 75.0127V78.5755H118.986V79.836H116.105V89.1095C116.105 89.8812 116.242 90.4557 116.516 90.833C116.799 91.2103 117.267 91.3989 117.918 91.3989C118.176 91.3989 118.591 91.356 119.166 91.2703L119.23 92.5308C118.827 92.6765 118.278 92.7494 117.584 92.7494C116.529 92.7494 115.762 92.445 115.282 91.8362C114.801 91.2188 114.561 90.3142 114.561 89.1223V79.836H112.002V78.5755H114.561V75.0127H116.105ZM121.069 85.328C121.069 83.9904 121.327 82.7856 121.841 81.7138C122.364 80.642 123.097 79.8102 124.041 79.2186C124.992 78.6183 126.068 78.3182 127.269 78.3182C129.121 78.3182 130.622 78.9699 131.771 80.2733C132.92 81.568 133.494 83.2873 133.494 85.4309V85.7525C133.494 87.0987 133.233 88.312 132.71 89.3924C132.195 90.4643 131.466 91.2917 130.523 91.8748C129.58 92.4579 128.504 92.7494 127.295 92.7494C125.451 92.7494 123.951 92.102 122.793 90.8073C121.644 89.5039 121.069 87.7804 121.069 85.6367V85.328ZM122.613 85.7525C122.613 87.416 123.042 88.7836 123.899 89.8555C124.765 90.9187 125.897 91.4504 127.295 91.4504C128.684 91.4504 129.807 90.9187 130.665 89.8555C131.531 88.7836 131.964 87.3731 131.964 85.6239V85.328C131.964 84.2648 131.766 83.2916 131.372 82.4084C130.978 81.5252 130.424 80.8435 129.713 80.3633C129.001 79.8745 128.186 79.6302 127.269 79.6302C125.897 79.6302 124.778 80.1704 123.912 81.2508C123.046 82.3226 122.613 83.7289 122.613 85.4695V85.7525ZM145.482 75.0127V78.5755H148.363V79.836H145.482V89.1095C145.482 89.8812 145.619 90.4557 145.893 90.833C146.176 91.2103 146.643 91.3989 147.295 91.3989C147.552 91.3989 147.968 91.356 148.543 91.2703L148.607 92.5308C148.204 92.6765 147.655 92.7494 146.961 92.7494C145.906 92.7494 145.139 92.445 144.658 91.8362C144.178 91.2188 143.938 90.3142 143.938 89.1223V79.836H141.379V78.5755H143.938V75.0127H145.482ZM153.083 80.9292C153.589 80.0975 154.236 79.4544 155.025 78.9999C155.814 78.5455 156.676 78.3182 157.61 78.3182C159.102 78.3182 160.213 78.7384 160.942 79.5787C161.671 80.419 162.039 81.6795 162.048 83.3601V92.4922H160.517V83.3473C160.509 82.104 160.243 81.1779 159.72 80.5691C159.205 79.9603 158.378 79.6559 157.237 79.6559C156.286 79.6559 155.441 79.956 154.704 80.5562C153.975 81.1479 153.435 81.9496 153.083 82.9614V92.4922H151.552V72.7361H153.083V80.9292ZM172.44 79.8874C172.115 79.8274 171.767 79.7974 171.399 79.7974C170.438 79.7974 169.624 80.0675 168.955 80.6077C168.295 81.1393 167.823 81.9153 167.54 82.9357V92.4922H166.009V78.5755H167.514L167.54 80.7877C168.355 79.1414 169.662 78.3182 171.463 78.3182C171.892 78.3182 172.23 78.374 172.479 78.4854L172.44 79.8874ZM176.608 92.4922H175.064V78.5755H176.608V92.4922ZM174.794 74.5497C174.794 74.2581 174.888 74.0137 175.077 73.8165C175.266 73.6107 175.523 73.5078 175.849 73.5078C176.175 73.5078 176.432 73.6107 176.621 73.8165C176.818 74.0137 176.916 74.2581 176.916 74.5497C176.916 74.8412 176.818 75.0856 176.621 75.2828C176.432 75.48 176.175 75.5786 175.849 75.5786C175.523 75.5786 175.266 75.48 175.077 75.2828C174.888 75.0856 174.794 74.8412 174.794 74.5497ZM185.135 90.37L189.367 78.5755H190.949L185.753 92.4922H184.505L179.283 78.5755H180.865L185.135 90.37ZM198.692 92.7494C197.508 92.7494 196.437 92.4579 195.476 91.8748C194.524 91.2917 193.783 90.4814 193.251 89.4439C192.72 88.3978 192.454 87.2273 192.454 85.9326V85.3795C192.454 84.0418 192.711 82.8371 193.225 81.7653C193.748 80.6934 194.473 79.8531 195.399 79.2443C196.325 78.6269 197.328 78.3182 198.409 78.3182C200.098 78.3182 201.436 78.897 202.422 80.0546C203.416 81.2036 203.914 82.7771 203.914 84.775V85.6367H193.984V85.9326C193.984 87.5103 194.434 88.8265 195.335 89.8812C196.244 90.9273 197.384 91.4504 198.756 91.4504C199.579 91.4504 200.304 91.3003 200.93 91.0002C201.564 90.7001 202.139 90.2199 202.653 89.5596L203.618 90.2928C202.486 91.9305 200.844 92.7494 198.692 92.7494ZM198.409 79.6302C197.251 79.6302 196.274 80.0546 195.476 80.9035C194.687 81.7524 194.207 82.8928 194.036 84.3248H202.383V84.1576C202.34 82.8199 201.959 81.731 201.238 80.8906C200.518 80.0503 199.575 79.6302 198.409 79.6302ZM224.519 85.6753C224.519 87.8447 224.039 89.5682 223.078 90.8458C222.118 92.1149 220.827 92.7494 219.207 92.7494C217.269 92.7494 215.803 92.0292 214.808 90.5886L214.744 92.4922H213.303V72.7361H214.834V80.5948C215.811 79.0771 217.26 78.3182 219.181 78.3182C220.827 78.3182 222.126 78.9485 223.078 80.209C224.039 81.4609 224.519 83.2058 224.519 85.4438V85.6753ZM222.975 85.4052C222.975 83.5702 222.619 82.1554 221.908 81.1607C221.196 80.1575 220.193 79.6559 218.898 79.6559C217.912 79.6559 217.076 79.9003 216.39 80.389C215.704 80.8692 215.185 81.5766 214.834 82.5113V88.7879C215.605 90.5372 216.969 91.4118 218.924 91.4118C220.193 91.4118 221.183 90.9102 221.895 89.9069C222.615 88.9037 222.975 87.4031 222.975 85.4052ZM232.185 90.2799L236.249 78.5755H237.908L231.966 94.8588L231.657 95.5791C230.894 97.2683 229.715 98.1129 228.12 98.1129C227.751 98.1129 227.357 98.0529 226.937 97.9328L226.924 96.6595L227.721 96.7367C228.476 96.7367 229.085 96.548 229.548 96.1707C230.019 95.802 230.418 95.1632 230.744 94.2543L231.426 92.3764L226.178 78.5755H227.863L232.185 90.2799Z" fill="black"/>
-<path d="M77.1527 137.955V149.664H71.677V118.152H83.7321C87.2527 118.152 90.0446 119.068 92.1079 120.901C94.1856 122.733 95.2245 125.157 95.2245 128.173C95.2245 131.26 94.2072 133.663 92.1728 135.38C90.1528 137.097 87.3176 137.955 83.6672 137.955H77.1527ZM77.1527 133.562H83.7321C85.68 133.562 87.1661 133.107 88.1905 132.198C89.215 131.275 89.7272 129.947 89.7272 128.216C89.7272 126.513 89.2077 125.157 88.1689 124.147C87.13 123.123 85.7016 122.596 83.8836 122.567H77.1527V133.562ZM111.781 131.051C111.089 130.936 110.374 130.878 109.639 130.878C107.229 130.878 105.606 131.802 104.769 133.648V149.664H99.5097V126.247H104.531L104.661 128.865C105.93 126.831 107.691 125.814 109.942 125.814C110.692 125.814 111.312 125.915 111.803 126.117L111.781 131.051ZM124.983 150.097C121.65 150.097 118.945 149.051 116.867 146.959C114.804 144.852 113.772 142.053 113.772 138.561V137.912C113.772 135.575 114.22 133.49 115.114 131.657C116.023 129.81 117.293 128.375 118.923 127.35C120.554 126.326 122.372 125.814 124.377 125.814C127.566 125.814 130.026 126.831 131.758 128.865C133.503 130.9 134.376 133.778 134.376 137.501V139.622H119.075C119.234 141.555 119.876 143.085 121.001 144.21C122.141 145.335 123.569 145.898 125.286 145.898C127.696 145.898 129.658 144.924 131.173 142.976L134.008 145.682C133.071 147.081 131.815 148.171 130.243 148.95C128.684 149.715 126.931 150.097 124.983 150.097ZM124.356 130.034C122.913 130.034 121.744 130.539 120.85 131.549C119.969 132.559 119.407 133.966 119.161 135.769H129.182V135.38C129.067 133.62 128.598 132.292 127.775 131.398C126.953 130.489 125.813 130.034 124.356 130.034ZM146.431 142.998L151.388 126.247H156.82L148.704 149.664H144.137L135.956 126.247H141.41L146.431 142.998ZM170.13 150.097C166.797 150.097 164.092 149.051 162.014 146.959C159.951 144.852 158.919 142.053 158.919 138.561V137.912C158.919 135.575 159.367 133.49 160.261 131.657C161.17 129.81 162.44 128.375 164.07 127.35C165.701 126.326 167.519 125.814 169.524 125.814C172.713 125.814 175.173 126.831 176.905 128.865C178.65 130.9 179.523 133.778 179.523 137.501V139.622H164.222C164.381 141.555 165.023 143.085 166.148 144.21C167.288 145.335 168.716 145.898 170.433 145.898C172.843 145.898 174.805 144.924 176.32 142.976L179.155 145.682C178.218 147.081 176.962 148.171 175.39 148.95C173.831 149.715 172.078 150.097 170.13 150.097ZM169.503 130.034C168.06 130.034 166.891 130.539 165.997 131.549C165.116 132.559 164.554 133.966 164.308 135.769H174.329V135.38C174.214 133.62 173.745 132.292 172.922 131.398C172.1 130.489 170.96 130.034 169.503 130.034ZM188.505 126.247L188.657 128.952C190.388 126.86 192.66 125.814 195.474 125.814C200.351 125.814 202.833 128.606 202.919 134.189V149.664H197.66V134.492C197.66 133.006 197.335 131.91 196.686 131.203C196.051 130.481 195.005 130.121 193.548 130.121C191.427 130.121 189.847 131.08 188.808 132.999V149.664H183.549V126.247H188.505ZM214.888 120.554V126.247H219.021V130.142H214.888V143.214C214.888 144.109 215.061 144.758 215.407 145.162C215.768 145.552 216.403 145.747 217.312 145.747C217.918 145.747 218.531 145.675 219.151 145.53V149.599C217.954 149.931 216.799 150.097 215.688 150.097C211.648 150.097 209.628 147.868 209.628 143.409V130.142H205.776V126.247H209.628V120.554H214.888ZM228.653 149.664H223.393V126.247H228.653V149.664ZM223.069 120.165C223.069 119.357 223.321 118.686 223.826 118.152C224.346 117.618 225.081 117.351 226.034 117.351C226.986 117.351 227.722 117.618 228.241 118.152C228.761 118.686 229.02 119.357 229.02 120.165C229.02 120.958 228.761 121.622 228.241 122.156C227.722 122.675 226.986 122.935 226.034 122.935C225.081 122.935 224.346 122.675 223.826 122.156C223.321 121.622 223.069 120.958 223.069 120.165ZM239.279 126.247L239.431 128.952C241.162 126.86 243.435 125.814 246.248 125.814C251.125 125.814 253.607 128.606 253.693 134.189V149.664H248.434V134.492C248.434 133.006 248.109 131.91 247.46 131.203C246.825 130.481 245.779 130.121 244.322 130.121C242.201 130.121 240.621 131.08 239.582 132.999V149.664H234.323V126.247H239.279ZM258.152 137.782C258.152 134.146 259.003 131.246 260.706 129.082C262.423 126.903 264.695 125.814 267.523 125.814C270.192 125.814 272.292 126.744 273.821 128.606L274.059 126.247H278.799V148.95C278.799 152.023 277.839 154.447 275.92 156.222C274.016 157.997 271.44 158.884 268.194 158.884C266.477 158.884 264.796 158.523 263.151 157.802C261.521 157.095 260.28 156.164 259.429 155.01L261.918 151.85C263.534 153.769 265.525 154.728 267.891 154.728C269.637 154.728 271.015 154.252 272.025 153.3C273.035 152.362 273.54 150.977 273.54 149.145V147.565C272.025 149.253 270.005 150.097 267.48 150.097C264.738 150.097 262.495 149.008 260.749 146.829C259.017 144.65 258.152 141.635 258.152 137.782ZM263.389 138.237C263.389 140.589 263.865 142.443 264.818 143.799C265.784 145.141 267.119 145.812 268.822 145.812C270.943 145.812 272.515 144.903 273.54 143.085V132.783C272.544 131.008 270.986 130.121 268.865 130.121C267.133 130.121 265.784 130.806 264.818 132.177C263.865 133.547 263.389 135.567 263.389 138.237ZM134.333 189.522H128.23V201.664H122.754V170.152H133.835C137.471 170.152 140.278 170.967 142.254 172.598C144.231 174.228 145.219 176.587 145.219 179.675C145.219 181.782 144.707 183.549 143.683 184.977C142.673 186.391 141.259 187.481 139.441 188.246L146.518 201.383V201.664H140.653L134.333 189.522ZM128.23 185.129H133.857C135.704 185.129 137.147 184.667 138.185 183.744C139.224 182.806 139.744 181.529 139.744 179.913C139.744 178.225 139.26 176.919 138.294 175.996C137.341 175.072 135.913 174.596 134.008 174.567H128.23V185.129ZM163.897 201.664C163.666 201.217 163.464 200.488 163.291 199.478C161.617 201.224 159.569 202.097 157.145 202.097C154.793 202.097 152.874 201.426 151.388 200.084C149.901 198.742 149.158 197.083 149.158 195.106C149.158 192.61 150.082 190.698 151.929 189.371C153.79 188.029 156.445 187.358 159.893 187.358H163.118V185.822C163.118 184.61 162.779 183.643 162.101 182.921C161.423 182.186 160.391 181.818 159.006 181.818C157.808 181.818 156.827 182.121 156.062 182.727C155.298 183.318 154.915 184.076 154.915 184.999H149.656C149.656 183.715 150.082 182.517 150.933 181.406C151.784 180.281 152.939 179.401 154.396 178.766C155.868 178.131 157.505 177.814 159.309 177.814C162.05 177.814 164.236 178.506 165.867 179.891C167.497 181.262 168.334 183.196 168.377 185.692V196.253C168.377 198.36 168.673 200.041 169.265 201.296V201.664H163.897ZM158.119 197.877C159.157 197.877 160.131 197.624 161.04 197.119C161.964 196.614 162.656 195.936 163.118 195.085V190.67H160.283C158.335 190.67 156.87 191.009 155.889 191.687C154.908 192.365 154.418 193.324 154.418 194.565C154.418 195.575 154.749 196.383 155.413 196.989C156.091 197.581 156.993 197.877 158.119 197.877ZM179.48 201.664H174.221V178.247H179.48V201.664ZM173.896 172.165C173.896 171.357 174.149 170.686 174.654 170.152C175.173 169.618 175.909 169.351 176.861 169.351C177.814 169.351 178.549 169.618 179.069 170.152C179.588 170.686 179.848 171.357 179.848 172.165C179.848 172.958 179.588 173.622 179.069 174.156C178.549 174.675 177.814 174.935 176.861 174.935C175.909 174.935 175.173 174.675 174.654 174.156C174.149 173.622 173.896 172.958 173.896 172.165ZM184.241 189.782C184.241 186.175 185.078 183.282 186.752 181.103C188.426 178.91 190.669 177.814 193.483 177.814C195.965 177.814 197.97 178.679 199.5 180.411V168.421H204.759V201.664H199.997L199.738 199.24C198.165 201.145 196.066 202.097 193.44 202.097C190.698 202.097 188.476 200.993 186.774 198.786C185.086 196.578 184.241 193.577 184.241 189.782ZM189.501 190.237C189.501 192.617 189.955 194.479 190.864 195.82C191.788 197.148 193.093 197.812 194.781 197.812C196.931 197.812 198.504 196.852 199.5 194.933V184.934C198.533 183.058 196.975 182.121 194.825 182.121C193.122 182.121 191.809 182.799 190.886 184.155C189.962 185.497 189.501 187.524 189.501 190.237ZM223.372 195.301C223.372 194.363 222.982 193.649 222.203 193.158C221.438 192.668 220.161 192.235 218.372 191.86C216.583 191.485 215.09 191.009 213.892 190.431C211.266 189.162 209.953 187.322 209.953 184.913C209.953 182.893 210.804 181.204 212.507 179.848C214.21 178.492 216.374 177.814 219 177.814C221.799 177.814 224.057 178.506 225.774 179.891C227.505 181.277 228.371 183.073 228.371 185.28H223.112C223.112 184.27 222.737 183.434 221.987 182.77C221.236 182.092 220.241 181.753 219 181.753C217.846 181.753 216.9 182.02 216.165 182.553C215.443 183.087 215.082 183.802 215.082 184.696C215.082 185.504 215.422 186.132 216.1 186.579C216.778 187.026 218.149 187.481 220.212 187.943C222.275 188.39 223.891 188.931 225.06 189.566C226.243 190.186 227.116 190.936 227.679 191.817C228.256 192.697 228.544 193.764 228.544 195.02C228.544 197.126 227.671 198.836 225.926 200.149C224.18 201.448 221.893 202.097 219.065 202.097C217.146 202.097 215.436 201.751 213.935 201.058C212.435 200.365 211.266 199.413 210.429 198.201C209.592 196.989 209.174 195.683 209.174 194.284H214.282C214.354 195.525 214.823 196.484 215.688 197.162C216.554 197.826 217.701 198.158 219.13 198.158C220.515 198.158 221.568 197.898 222.29 197.379C223.011 196.845 223.372 196.152 223.372 195.301Z" fill="#E6AB71"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="355.091" y2="116.809" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Statistics.svg b/public/Features/RSM/Statistics.svg
deleted file mode 100644
index e51d14e..0000000
--- a/public/Features/RSM/Statistics.svg
+++ /dev/null
@@ -1,40 +0,0 @@
-<svg width="350" height="250" viewBox="0 0 350 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="300" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="25" y="25" width="300" height="200">
-<rect x="25" y="25" width="300" height="200" rx="25.3283" fill="#181818"/>
-</mask>
-<g mask="url(#mask0)">
-<path d="M314.633 57.0008L314.644 56.987L314.653 56.9722L329.05 34.5878C331.272 31.1322 332.92 28.572 334.263 26.9507C334.935 26.1396 335.508 25.5918 336.016 25.2836C336.513 24.9821 336.918 24.9253 337.293 25.043C337.668 25.1608 337.968 25.4389 338.204 25.97C338.444 26.5131 338.602 27.2903 338.69 28.3399C338.866 30.4381 338.756 33.4805 338.606 37.5863L330.403 261.787C330.356 263.067 330.322 263.989 330.203 264.691C330.085 265.381 329.894 265.804 329.57 266.116C329.247 266.427 328.818 266.603 328.123 266.695C327.418 266.789 326.495 266.789 325.214 266.789H24.6464C23.3223 266.789 22.3674 266.789 21.6399 266.691C20.9234 266.594 20.4846 266.41 20.1589 266.085C19.8332 265.759 19.6491 265.32 19.5528 264.604C19.455 263.876 19.4541 262.921 19.4541 261.597V198.717C19.4541 197.748 19.4589 197.351 19.5837 196.986C19.7084 196.621 19.9482 196.304 20.542 195.537L37.9973 173.008C38.7657 172.017 39.3198 171.303 39.8155 170.811C40.3035 170.327 40.6979 170.097 41.1346 170.029C41.5713 169.96 42.0171 170.058 42.6299 170.369C43.2525 170.685 43.9988 171.195 45.0341 171.903L51.0029 175.988L51.0252 176.003C51.9416 176.63 52.659 177.121 53.2751 177.438C53.9057 177.763 54.4714 177.929 55.0831 177.864C55.6948 177.799 56.2133 177.519 56.7619 177.069C57.298 176.63 57.8967 175.999 58.6616 175.194L58.6799 175.175L74.4656 158.555C75.3599 157.614 75.7317 157.234 76.204 157.046C76.6763 156.858 77.2073 156.877 78.504 156.946L91.1233 157.612L91.1892 157.615C92.0058 157.658 92.501 157.685 92.9777 157.56C93.4545 157.435 93.8736 157.17 94.5648 156.732L94.6201 156.697L106.621 149.102C107.258 148.699 107.714 148.411 108.099 148.215C108.477 148.024 108.761 147.935 109.048 147.917C109.335 147.899 109.628 147.952 110.027 148.095C110.433 148.24 110.922 148.469 111.605 148.79L134.181 159.393L134.198 159.401C134.859 159.712 135.379 159.956 135.823 160.115C136.278 160.278 136.678 160.362 137.103 160.336C137.528 160.31 137.915 160.177 138.347 159.959C138.767 159.746 139.253 159.44 139.87 159.051L139.887 159.041L163.895 143.902C164.514 143.512 164.956 143.233 165.33 143.043C165.697 142.857 165.973 142.769 166.252 142.748C166.53 142.727 166.816 142.773 167.207 142.903C167.604 143.036 168.083 143.246 168.753 143.54L189.509 152.661L189.531 152.671C190.436 153.068 191.146 153.38 191.742 153.563C192.353 153.751 192.884 153.816 193.427 153.688C193.969 153.56 194.415 153.266 194.879 152.826C195.331 152.396 195.828 151.8 196.461 151.041L196.476 151.022L204.445 141.459C205.233 140.514 205.805 139.828 206.293 139.35C206.78 138.872 207.143 138.643 207.5 138.561C208.004 138.445 208.532 138.495 209.005 138.703C209.34 138.849 209.654 139.143 210.043 139.702C210.434 140.264 210.868 141.045 211.465 142.119L211.476 142.14C212.564 144.097 213.393 145.59 214.102 146.626C214.799 147.646 215.446 148.331 216.205 148.508C217.061 148.707 217.961 148.541 218.691 148.051C219.337 147.616 219.698 146.745 219.987 145.544C220.281 144.323 220.524 142.633 220.844 140.417L220.848 140.394L225.696 106.801C225.788 106.164 225.828 105.903 225.92 105.661C226.013 105.419 226.158 105.198 226.515 104.663L237.077 88.8195C238.153 87.2057 238.937 86.0318 239.636 85.2579C240.331 84.4891 240.88 84.1878 241.473 84.1938C242.066 84.1998 242.608 84.5121 243.288 85.2947C243.972 86.0826 244.731 87.272 245.775 88.9072L256.361 105.502L256.377 105.528C257.138 106.721 257.731 107.65 258.289 108.303C258.857 108.97 259.429 109.399 260.164 109.522C260.899 109.646 261.581 109.428 262.336 108.984C263.076 108.549 263.94 107.865 265.049 106.986L265.074 106.967L274.885 99.1978L274.925 99.1663C275.426 98.7695 275.73 98.529 275.967 98.2226L275.666 97.9902L275.967 98.2225C276.204 97.9162 276.36 97.5617 276.617 96.9769L276.638 96.9299L286.591 74.3239C287.228 72.8791 287.69 71.8295 288.137 71.0886C288.58 70.3516 288.969 69.9864 289.425 69.8326C289.635 69.7619 289.853 69.7204 290.074 69.7094C290.555 69.6854 291.051 69.8827 291.734 70.4059C292.42 70.9319 293.235 71.7389 294.357 72.8501L294.376 72.869C295.246 73.7312 295.923 74.4028 296.516 74.8634C297.119 75.332 297.677 75.6175 298.313 75.6538C298.567 75.6683 298.821 75.6523 299.07 75.6061C299.697 75.49 300.215 75.1366 300.754 74.5959C301.284 74.0646 301.872 73.3132 302.626 72.3487L302.643 72.3272L314.633 57.0008Z" fill="url(#paint1_linear)" fill-opacity="0.35" stroke="#424242" stroke-width="0.759849"/>
-</g>
-<path d="M111.994 65.9695H103.571V89.1953H98.9151V65.9695H90.5671V62.1851H111.994V65.9695ZM124.404 73.2415C123.811 73.1425 123.198 73.093 122.568 73.093C120.502 73.093 119.111 73.8846 118.394 75.4676V89.1953H113.886V69.1231H118.19L118.301 71.3678C119.389 69.624 120.898 68.7521 122.827 68.7521C123.47 68.7521 124.002 68.8387 124.423 69.0118L124.404 73.2415ZM138.688 89.1953C138.491 88.8119 138.317 88.1874 138.169 87.3217C136.734 88.8181 134.978 89.5663 132.901 89.5663C130.885 89.5663 129.24 88.9913 127.966 87.8411C126.692 86.6909 126.055 85.2687 126.055 83.5744C126.055 81.4348 126.847 79.7961 128.43 78.6583C130.025 77.5082 132.301 76.9331 135.257 76.9331H138.021V75.616C138.021 74.5771 137.73 73.7485 137.149 73.1301C136.567 72.4994 135.683 72.184 134.496 72.184C133.469 72.184 132.628 72.4438 131.973 72.9632C131.318 73.4702 130.99 74.1195 130.99 74.911H126.482C126.482 73.8104 126.847 72.7839 127.576 71.8316C128.306 70.8669 129.295 70.1125 130.545 69.5684C131.806 69.0242 133.21 68.7521 134.756 68.7521C137.105 68.7521 138.979 69.3457 140.377 70.533C141.774 71.7079 142.491 73.3651 142.528 75.5047V84.5576C142.528 86.3632 142.782 87.804 143.289 88.8799V89.1953H138.688ZM133.735 85.9489C134.626 85.9489 135.461 85.7325 136.24 85.2996C137.031 84.8667 137.625 84.2855 138.021 83.5558V79.7714H135.59C133.921 79.7714 132.666 80.062 131.825 80.6433C130.984 81.2246 130.563 82.047 130.563 83.1106C130.563 83.9763 130.848 84.6689 131.416 85.1883C131.998 85.6954 132.771 85.9489 133.735 85.9489ZM155.496 85.9674C156.621 85.9674 157.555 85.6397 158.297 84.9842C159.039 84.3288 159.435 83.5187 159.484 82.5541H163.732C163.683 83.8032 163.293 84.9719 162.564 86.0602C161.834 87.1362 160.845 87.9895 159.595 88.6202C158.346 89.251 156.998 89.5663 155.551 89.5663C152.744 89.5663 150.518 88.6573 148.873 86.8393C147.228 85.0213 146.406 82.5108 146.406 79.3076V78.8439C146.406 75.7891 147.222 73.3466 148.854 71.5162C150.487 69.6735 152.713 68.7521 155.533 68.7521C157.92 68.7521 159.861 69.4509 161.358 70.8484C162.867 72.2335 163.658 74.0577 163.732 76.3209H159.484C159.435 75.1708 159.039 74.2247 158.297 73.4826C157.567 72.7406 156.633 72.3696 155.496 72.3696C154.036 72.3696 152.911 72.9014 152.119 73.9649C151.328 75.0162 150.926 76.6177 150.914 78.7697V79.4931C150.914 81.6698 151.303 83.2961 152.082 84.3721C152.874 85.4356 154.012 85.9674 155.496 85.9674ZM173.657 80.5876L171.654 82.6468V89.1953H167.146V60.701H171.654V77.1372L173.063 75.3748L178.61 69.1231H184.027L176.57 77.4896L184.825 89.1953H179.612L173.657 80.5876ZM74.0568 127.239C74.0568 126.051 73.6363 125.136 72.7953 124.493C71.9667 123.85 70.464 123.201 68.2874 122.545C66.1107 121.89 64.3793 121.16 63.0931 120.356C60.632 118.81 59.4015 116.794 59.4015 114.309C59.4015 112.132 60.2857 110.339 62.0543 108.929C63.8352 107.519 66.1417 106.814 68.9738 106.814C70.8536 106.814 72.5294 107.16 74.0011 107.853C75.4728 108.545 76.6292 109.535 77.4701 110.821C78.3111 112.095 78.7316 113.511 78.7316 115.069H74.0568C74.0568 113.659 73.6115 112.559 72.7211 111.767C71.843 110.963 70.5815 110.561 68.9367 110.561C67.4031 110.561 66.2097 110.889 65.3563 111.545C64.5154 112.2 64.0949 113.115 64.0949 114.29C64.0949 115.279 64.5525 116.108 65.4676 116.776C66.3828 117.431 67.8916 118.074 69.9941 118.705C72.0965 119.324 73.7847 120.035 75.0585 120.839C76.3323 121.63 77.2661 122.545 77.8597 123.584C78.4533 124.611 78.7502 125.816 78.7502 127.202C78.7502 129.452 77.8844 131.246 76.153 132.581C74.434 133.905 72.0965 134.566 69.1407 134.566C67.1867 134.566 65.3873 134.208 63.7424 133.49C62.1099 132.761 60.8361 131.759 59.9209 130.485C59.0181 129.211 58.5667 127.727 58.5667 126.033H63.2601C63.2601 127.566 63.7671 128.754 64.7813 129.595C65.7954 130.436 67.2485 130.856 69.1407 130.856C70.7732 130.856 71.9976 130.528 72.8138 129.873C73.6425 129.205 74.0568 128.327 74.0568 127.239ZM88.0813 109.244V114.123H91.6246V117.462H88.0813V128.667C88.0813 129.434 88.2297 129.99 88.5265 130.337C88.8357 130.671 89.3799 130.838 90.159 130.838C90.6785 130.838 91.2041 130.776 91.7359 130.652V134.14C90.7094 134.424 89.72 134.566 88.7677 134.566C85.3048 134.566 83.5734 132.656 83.5734 128.834V117.462H80.2713V114.123H83.5734V109.244H88.0813ZM107.078 134.195C106.88 133.812 106.707 133.187 106.558 132.322C105.124 133.818 103.367 134.566 101.29 134.566C99.2738 134.566 97.6289 133.991 96.3551 132.841C95.0812 131.691 94.4443 130.269 94.4443 128.574C94.4443 126.435 95.2358 124.796 96.8188 123.658C98.4142 122.508 100.69 121.933 103.646 121.933H106.41V120.616C106.41 119.577 106.119 118.749 105.538 118.13C104.957 117.499 104.072 117.184 102.885 117.184C101.859 117.184 101.018 117.444 100.362 117.963C99.7066 118.47 99.3789 119.12 99.3789 119.911H94.871C94.871 118.81 95.2358 117.784 95.9655 116.832C96.6952 115.867 97.6846 115.113 98.9337 114.568C100.195 114.024 101.599 113.752 103.145 113.752C105.495 113.752 107.368 114.346 108.766 115.533C110.163 116.708 110.88 118.365 110.918 120.505V129.558C110.918 131.363 111.171 132.804 111.678 133.88V134.195H107.078ZM102.124 130.949C103.015 130.949 103.85 130.732 104.629 130.3C105.42 129.867 106.014 129.285 106.41 128.556V124.771H103.98C102.31 124.771 101.055 125.062 100.214 125.643C99.3727 126.225 98.9522 127.047 98.9522 128.111C98.9522 128.976 99.2367 129.669 99.8055 130.188C100.387 130.695 101.16 130.949 102.124 130.949ZM121.288 109.244V114.123H124.831V117.462H121.288V128.667C121.288 129.434 121.436 129.99 121.733 130.337C122.042 130.671 122.586 130.838 123.365 130.838C123.885 130.838 124.41 130.776 124.942 130.652V134.14C123.916 134.424 122.926 134.566 121.974 134.566C118.511 134.566 116.78 132.656 116.78 128.834V117.462H113.478V114.123H116.78V109.244H121.288ZM133.086 134.195H128.578V114.123H133.086V134.195ZM128.3 108.91C128.3 108.218 128.516 107.643 128.949 107.185C129.394 106.727 130.025 106.499 130.841 106.499C131.658 106.499 132.288 106.727 132.734 107.185C133.179 107.643 133.401 108.218 133.401 108.91C133.401 109.591 133.179 110.159 132.734 110.617C132.288 111.062 131.658 111.285 130.841 111.285C130.025 111.285 129.394 111.062 128.949 110.617C128.516 110.159 128.3 109.591 128.3 108.91ZM149.263 128.741C149.263 127.937 148.929 127.325 148.261 126.905C147.605 126.484 146.511 126.113 144.977 125.792C143.444 125.47 142.164 125.062 141.137 124.567C138.886 123.479 137.761 121.902 137.761 119.837C137.761 118.105 138.491 116.658 139.95 115.496C141.409 114.333 143.264 113.752 145.515 113.752C147.914 113.752 149.85 114.346 151.322 115.533C152.806 116.72 153.548 118.26 153.548 120.152H149.04C149.04 119.286 148.718 118.569 148.075 118C147.432 117.419 146.579 117.128 145.515 117.128C144.526 117.128 143.716 117.357 143.085 117.815C142.467 118.272 142.157 118.885 142.157 119.651C142.157 120.344 142.448 120.882 143.029 121.265C143.611 121.649 144.786 122.038 146.554 122.434C148.323 122.817 149.708 123.281 150.709 123.825C151.724 124.357 152.472 125 152.954 125.755C153.449 126.509 153.696 127.424 153.696 128.5C153.696 130.306 152.948 131.771 151.452 132.897C149.955 134.01 147.995 134.566 145.571 134.566C143.926 134.566 142.46 134.27 141.174 133.676C139.888 133.082 138.886 132.266 138.169 131.227C137.452 130.188 137.093 129.069 137.093 127.869H141.471C141.533 128.933 141.935 129.755 142.677 130.337C143.419 130.906 144.402 131.19 145.627 131.19C146.814 131.19 147.717 130.967 148.335 130.522C148.953 130.065 149.263 129.471 149.263 128.741ZM163.287 109.244V114.123H166.83V117.462H163.287V128.667C163.287 129.434 163.435 129.99 163.732 130.337C164.041 130.671 164.586 130.838 165.365 130.838C165.884 130.838 166.41 130.776 166.942 130.652V134.14C165.915 134.424 164.926 134.566 163.973 134.566C160.511 134.566 158.779 132.656 158.779 128.834V117.462H155.477V114.123H158.779V109.244H163.287ZM175.086 134.195H170.578V114.123H175.086V134.195ZM170.299 108.91C170.299 108.218 170.516 107.643 170.949 107.185C171.394 106.727 172.025 106.499 172.841 106.499C173.657 106.499 174.288 106.727 174.733 107.185C175.178 107.643 175.401 108.218 175.401 108.91C175.401 109.591 175.178 110.159 174.733 110.617C174.288 111.062 173.657 111.285 172.841 111.285C172.025 111.285 171.394 111.062 170.949 110.617C170.516 110.159 170.299 109.591 170.299 108.91ZM188.257 130.967C189.382 130.967 190.316 130.64 191.058 129.984C191.8 129.329 192.196 128.519 192.245 127.554H196.493C196.444 128.803 196.054 129.972 195.325 131.06C194.595 132.136 193.606 132.989 192.356 133.62C191.107 134.251 189.759 134.566 188.312 134.566C185.505 134.566 183.279 133.657 181.634 131.839C179.989 130.021 179.167 127.511 179.167 124.308V123.844C179.167 120.789 179.983 118.347 181.615 116.516C183.248 114.673 185.474 113.752 188.294 113.752C190.681 113.752 192.622 114.451 194.119 115.848C195.628 117.234 196.419 119.058 196.493 121.321H192.245C192.196 120.171 191.8 119.225 191.058 118.483C190.328 117.741 189.395 117.37 188.257 117.37C186.797 117.37 185.672 117.901 184.88 118.965C184.089 120.016 183.687 121.618 183.675 123.77V124.493C183.675 126.67 184.064 128.296 184.843 129.372C185.635 130.436 186.773 130.967 188.257 130.967ZM211.149 128.741C211.149 127.937 210.815 127.325 210.147 126.905C209.491 126.484 208.397 126.113 206.863 125.792C205.33 125.47 204.05 125.062 203.023 124.567C200.772 123.479 199.647 121.902 199.647 119.837C199.647 118.105 200.377 116.658 201.836 115.496C203.295 114.333 205.15 113.752 207.401 113.752C209.801 113.752 211.736 114.346 213.208 115.533C214.692 116.72 215.434 118.26 215.434 120.152H210.926C210.926 119.286 210.604 118.569 209.961 118C209.318 117.419 208.465 117.128 207.401 117.128C206.412 117.128 205.602 117.357 204.971 117.815C204.353 118.272 204.044 118.885 204.044 119.651C204.044 120.344 204.334 120.882 204.916 121.265C205.497 121.649 206.672 122.038 208.44 122.434C210.209 122.817 211.594 123.281 212.596 123.825C213.61 124.357 214.358 125 214.84 125.755C215.335 126.509 215.582 127.424 215.582 128.5C215.582 130.306 214.834 131.771 213.338 132.897C211.841 134.01 209.881 134.566 207.457 134.566C205.812 134.566 204.347 134.27 203.06 133.676C201.774 133.082 200.772 132.266 200.055 131.227C199.338 130.188 198.979 129.069 198.979 127.869H203.357C203.419 128.933 203.821 129.755 204.563 130.337C205.305 130.906 206.288 131.19 207.513 131.19C208.7 131.19 209.603 130.967 210.221 130.522C210.839 130.065 211.149 129.471 211.149 128.741Z" fill="url(#paint2_linear)"/>
-<path d="M128.82 176.723C128.666 176.285 128.567 175.638 128.524 174.78C127.984 175.484 127.294 176.028 126.453 176.414C125.622 176.791 124.738 176.98 123.804 176.98C122.466 176.98 121.381 176.607 120.55 175.861C119.726 175.115 119.315 174.172 119.315 173.031C119.315 171.676 119.877 170.605 121 169.816C122.132 169.027 123.705 168.632 125.72 168.632H128.511V167.05C128.511 166.056 128.203 165.275 127.585 164.71C126.976 164.135 126.085 163.848 124.91 163.848C123.838 163.848 122.951 164.122 122.247 164.671C121.544 165.22 121.193 165.88 121.193 166.652L119.649 166.639C119.649 165.533 120.164 164.577 121.193 163.771C122.222 162.956 123.486 162.549 124.987 162.549C126.539 162.549 127.761 162.939 128.653 163.719C129.553 164.491 130.016 165.571 130.042 166.96V173.546C130.042 174.892 130.183 175.899 130.466 176.568V176.723H128.82ZM123.984 175.617C125.013 175.617 125.93 175.368 126.736 174.871C127.551 174.373 128.143 173.709 128.511 172.877V169.816H125.759C124.224 169.833 123.023 170.116 122.157 170.665C121.291 171.205 120.858 171.951 120.858 172.903C120.858 173.683 121.146 174.33 121.72 174.845C122.303 175.359 123.058 175.617 123.984 175.617ZM135.624 162.806L135.675 165.185C136.198 164.328 136.85 163.676 137.63 163.23C138.411 162.776 139.272 162.549 140.216 162.549C141.708 162.549 142.818 162.969 143.547 163.809C144.276 164.65 144.645 165.91 144.653 167.591V176.723H143.123V167.578C143.114 166.334 142.848 165.408 142.325 164.8C141.811 164.191 140.983 163.886 139.843 163.886C138.891 163.886 138.046 164.186 137.309 164.787C136.58 165.378 136.04 166.18 135.688 167.192V176.723H134.158V162.806H135.624ZM148.023 169.636C148.023 167.475 148.503 165.756 149.463 164.478C150.432 163.192 151.744 162.549 153.399 162.549C155.277 162.549 156.709 163.29 157.695 164.774V156.967H159.226V176.723H157.785L157.721 174.871C156.735 176.277 155.286 176.98 153.374 176.98C151.77 176.98 150.475 176.337 149.489 175.051C148.512 173.756 148.023 172.011 148.023 169.816V169.636ZM149.579 169.906C149.579 171.681 149.935 173.083 150.647 174.112C151.358 175.132 152.362 175.642 153.657 175.642C155.552 175.642 156.898 174.806 157.695 173.134V166.6C156.898 164.791 155.56 163.886 153.682 163.886C152.387 163.886 151.38 164.397 150.66 165.417C149.939 166.429 149.579 167.925 149.579 169.906ZM178.635 174.961C177.708 176.307 176.229 176.98 174.197 176.98C172.714 176.98 171.586 176.551 170.814 175.694C170.043 174.828 169.648 173.55 169.631 171.861V162.806H171.162V171.668C171.162 174.317 172.234 175.642 174.377 175.642C176.607 175.642 178.017 174.72 178.609 172.877V162.806H180.152V176.723H178.66L178.635 174.961ZM192.5 173.186C192.5 172.422 192.191 171.809 191.574 171.346C190.965 170.883 190.043 170.523 188.808 170.266C187.574 170 186.613 169.7 185.927 169.366C185.25 169.023 184.744 168.607 184.41 168.118C184.084 167.629 183.921 167.038 183.921 166.343C183.921 165.245 184.38 164.341 185.297 163.629C186.215 162.909 187.389 162.549 188.821 162.549C190.373 162.549 191.617 162.935 192.551 163.706C193.494 164.469 193.966 165.468 193.966 166.703H192.423C192.423 165.889 192.08 165.211 191.394 164.671C190.716 164.131 189.859 163.861 188.821 163.861C187.809 163.861 186.995 164.088 186.378 164.542C185.769 164.988 185.464 165.571 185.464 166.292C185.464 166.986 185.717 167.526 186.223 167.912C186.738 168.289 187.668 168.637 189.014 168.954C190.369 169.271 191.381 169.61 192.05 169.97C192.727 170.33 193.229 170.763 193.555 171.269C193.88 171.775 194.043 172.388 194.043 173.108C194.043 174.283 193.567 175.222 192.616 175.925C191.672 176.628 190.438 176.98 188.911 176.98C187.291 176.98 185.974 176.59 184.963 175.809C183.959 175.021 183.458 174.026 183.458 172.825H185.001C185.061 173.726 185.439 174.429 186.133 174.935C186.836 175.432 187.762 175.681 188.911 175.681C189.983 175.681 190.849 175.445 191.509 174.973C192.17 174.502 192.5 173.906 192.5 173.186ZM202.905 176.98C201.722 176.98 200.65 176.688 199.69 176.105C198.738 175.522 197.996 174.712 197.465 173.674C196.933 172.628 196.667 171.458 196.667 170.163V169.61C196.667 168.272 196.924 167.068 197.439 165.996C197.962 164.924 198.686 164.084 199.613 163.475C200.539 162.857 201.542 162.549 202.622 162.549C204.311 162.549 205.649 163.127 206.635 164.285C207.63 165.434 208.127 167.008 208.127 169.005V169.867H198.198V170.163C198.198 171.741 198.648 173.057 199.548 174.112C200.457 175.158 201.598 175.681 202.97 175.681C203.793 175.681 204.517 175.531 205.143 175.231C205.778 174.931 206.352 174.45 206.867 173.79L207.831 174.523C206.7 176.161 205.057 176.98 202.905 176.98ZM202.622 163.861C201.465 163.861 200.487 164.285 199.69 165.134C198.901 165.983 198.421 167.123 198.249 168.555H206.597V168.388C206.554 167.05 206.172 165.961 205.452 165.121C204.732 164.281 203.788 163.861 202.622 163.861ZM219.922 159.243V162.806H222.803V164.066H219.922V173.34C219.922 174.112 220.059 174.686 220.333 175.063C220.616 175.441 221.084 175.629 221.735 175.629C221.992 175.629 222.408 175.587 222.983 175.501L223.047 176.761C222.644 176.907 222.095 176.98 221.401 176.98C220.346 176.98 219.579 176.675 219.099 176.067C218.618 175.449 218.378 174.545 218.378 173.353V164.066H215.819V162.806H218.378V159.243H219.922ZM227.523 165.16C228.029 164.328 228.676 163.685 229.465 163.23C230.254 162.776 231.116 162.549 232.051 162.549C233.543 162.549 234.653 162.969 235.382 163.809C236.111 164.65 236.479 165.91 236.488 167.591V176.723H234.957V167.578C234.949 166.334 234.683 165.408 234.16 164.8C233.645 164.191 232.818 163.886 231.678 163.886C230.726 163.886 229.881 164.186 229.144 164.787C228.415 165.378 227.875 166.18 227.523 167.192V176.723H225.993V156.967H227.523V165.16ZM245.839 176.98C244.655 176.98 243.584 176.688 242.623 176.105C241.671 175.522 240.93 174.712 240.398 173.674C239.866 172.628 239.601 171.458 239.601 170.163V169.61C239.601 168.272 239.858 167.068 240.372 165.996C240.895 164.924 241.62 164.084 242.546 163.475C243.472 162.857 244.475 162.549 245.556 162.549C247.245 162.549 248.583 163.127 249.569 164.285C250.563 165.434 251.061 167.008 251.061 169.005V169.867H241.131V170.163C241.131 171.741 241.581 173.057 242.482 174.112C243.391 175.158 244.531 175.681 245.903 175.681C246.726 175.681 247.451 175.531 248.077 175.231C248.711 174.931 249.286 174.45 249.8 173.79L250.765 174.523C249.633 176.161 247.991 176.98 245.839 176.98ZM245.556 163.861C244.398 163.861 243.421 164.285 242.623 165.134C241.834 165.983 241.354 167.123 241.183 168.555H249.53V168.388C249.487 167.05 249.106 165.961 248.385 165.121C247.665 164.281 246.722 163.861 245.556 163.861ZM255.459 162.806L255.511 165.07C256.025 164.229 256.668 163.599 257.44 163.179C258.212 162.759 259.069 162.549 260.013 162.549C262.208 162.549 263.601 163.449 264.193 165.25C264.69 164.384 265.355 163.719 266.186 163.256C267.018 162.785 267.936 162.549 268.939 162.549C271.923 162.549 273.445 164.178 273.505 167.436V176.723H271.961V167.552C271.953 166.309 271.683 165.387 271.151 164.787C270.628 164.186 269.771 163.886 268.579 163.886C267.473 163.904 266.538 164.264 265.775 164.967C265.012 165.661 264.587 166.51 264.501 167.513V176.723H262.958V167.436C262.949 166.244 262.666 165.357 262.109 164.774C261.56 164.182 260.711 163.886 259.562 163.886C258.594 163.886 257.762 164.165 257.067 164.722C256.373 165.271 255.858 166.09 255.524 167.179V176.723H253.98V162.806H255.459ZM286.213 159.243V162.806H289.094V164.066H286.213V173.34C286.213 174.112 286.35 174.686 286.624 175.063C286.907 175.441 287.374 175.629 288.026 175.629C288.283 175.629 288.699 175.587 289.274 175.501L289.338 176.761C288.935 176.907 288.386 176.98 287.692 176.98C286.637 176.98 285.87 176.675 285.389 176.067C284.909 175.449 284.669 174.545 284.669 173.353V164.066H282.11V162.806H284.669V159.243H286.213ZM291.177 169.559C291.177 168.221 291.435 167.016 291.949 165.944C292.472 164.872 293.205 164.041 294.148 163.449C295.1 162.849 296.176 162.549 297.377 162.549C299.229 162.549 300.729 163.2 301.879 164.504C303.028 165.799 303.602 167.518 303.602 169.661V169.983C303.602 171.329 303.34 172.542 302.817 173.623C302.303 174.695 301.574 175.522 300.631 176.105C299.688 176.688 298.612 176.98 297.403 176.98C295.559 176.98 294.058 176.333 292.901 175.038C291.752 173.734 291.177 172.011 291.177 169.867V169.559ZM292.721 169.983C292.721 171.646 293.149 173.014 294.007 174.086C294.873 175.149 296.005 175.681 297.403 175.681C298.792 175.681 299.915 175.149 300.772 174.086C301.638 173.014 302.071 171.604 302.071 169.854V169.559C302.071 168.495 301.874 167.522 301.48 166.639C301.085 165.756 300.532 165.074 299.821 164.594C299.109 164.105 298.294 163.861 297.377 163.861C296.005 163.861 294.886 164.401 294.02 165.481C293.154 166.553 292.721 167.959 292.721 169.7V169.983ZM113.514 200.636C113.514 198.458 113.994 196.734 114.955 195.465C115.924 194.188 117.236 193.549 118.89 193.549C120.785 193.549 122.226 194.303 123.212 195.812L123.289 193.806H124.73V207.44C124.73 209.232 124.228 210.651 123.225 211.697C122.222 212.743 120.863 213.266 119.148 213.266C118.179 213.266 117.253 213.048 116.369 212.61C115.495 212.181 114.805 211.607 114.299 210.887L115.16 209.961C116.249 211.298 117.544 211.967 119.045 211.967C120.331 211.967 121.334 211.586 122.055 210.822C122.775 210.068 123.148 209.017 123.174 207.671V205.922C122.187 207.294 120.751 207.98 118.865 207.98C117.253 207.98 115.958 207.337 114.98 206.051C114.003 204.764 113.514 203.028 113.514 200.841V200.636ZM115.07 200.906C115.07 202.681 115.426 204.083 116.138 205.112C116.85 206.132 117.853 206.642 119.148 206.642C121.043 206.642 122.385 205.793 123.174 204.096V197.626C122.813 196.734 122.295 196.057 121.617 195.594C120.94 195.122 120.125 194.886 119.173 194.886C117.879 194.886 116.871 195.397 116.151 196.417C115.431 197.429 115.07 198.925 115.07 200.906ZM135.174 195.118C134.848 195.058 134.501 195.028 134.132 195.028C133.172 195.028 132.357 195.298 131.688 195.838C131.028 196.37 130.556 197.146 130.273 198.166V207.723H128.743V193.806H130.248L130.273 196.018C131.088 194.372 132.396 193.549 134.196 193.549C134.625 193.549 134.964 193.604 135.212 193.716L135.174 195.118ZM136.511 200.559C136.511 199.221 136.769 198.016 137.283 196.944C137.806 195.872 138.539 195.041 139.483 194.449C140.434 193.849 141.51 193.549 142.711 193.549C144.563 193.549 146.064 194.2 147.213 195.504C148.362 196.799 148.936 198.518 148.936 200.661V200.983C148.936 202.329 148.675 203.542 148.152 204.623C147.637 205.695 146.908 206.522 145.965 207.105C145.022 207.688 143.946 207.98 142.737 207.98C140.893 207.98 139.393 207.333 138.235 206.038C137.086 204.734 136.511 203.011 136.511 200.867V200.559ZM138.055 200.983C138.055 202.646 138.484 204.014 139.341 205.086C140.207 206.149 141.339 206.681 142.737 206.681C144.126 206.681 145.249 206.149 146.106 205.086C146.973 204.014 147.406 202.604 147.406 200.854V200.559C147.406 199.495 147.208 198.522 146.814 197.639C146.419 196.756 145.866 196.074 145.155 195.594C144.443 195.105 143.628 194.861 142.711 194.861C141.339 194.861 140.22 195.401 139.354 196.481C138.488 197.553 138.055 198.959 138.055 200.7V200.983ZM155.457 204.52L155.689 205.716L155.997 204.456L159.342 193.806H160.653L163.959 204.366L164.319 205.832L164.615 204.481L167.47 193.806H169.065L165.014 207.723H163.702L160.126 196.687L159.959 195.928L159.792 196.7L156.28 207.723H154.968L150.93 193.806H152.512L155.457 204.52ZM182.802 205.51L186.866 193.806H188.525L182.583 210.089L182.275 210.81C181.511 212.499 180.332 213.343 178.737 213.343C178.369 213.343 177.974 213.283 177.554 213.163L177.541 211.89L178.339 211.967C179.093 211.967 179.702 211.778 180.165 211.401C180.637 211.032 181.035 210.394 181.361 209.485L182.043 207.607L176.795 193.806H178.48L182.802 205.51ZM189.863 200.559C189.863 199.221 190.12 198.016 190.635 196.944C191.158 195.872 191.891 195.041 192.834 194.449C193.786 193.849 194.862 193.549 196.063 193.549C197.915 193.549 199.415 194.2 200.564 195.504C201.713 196.799 202.288 198.518 202.288 200.661V200.983C202.288 202.329 202.026 203.542 201.503 204.623C200.989 205.695 200.26 206.522 199.317 207.105C198.373 207.688 197.297 207.98 196.088 207.98C194.245 207.98 192.744 207.333 191.587 206.038C190.438 204.734 189.863 203.011 189.863 200.867V200.559ZM191.407 200.983C191.407 202.646 191.835 204.014 192.693 205.086C193.559 206.149 194.691 206.681 196.088 206.681C197.477 206.681 198.601 206.149 199.458 205.086C200.324 204.014 200.757 202.604 200.757 200.854V200.559C200.757 199.495 200.56 198.522 200.166 197.639C199.771 196.756 199.218 196.074 198.506 195.594C197.795 195.105 196.98 194.861 196.063 194.861C194.691 194.861 193.572 195.401 192.706 196.481C191.84 197.553 191.407 198.959 191.407 200.7V200.983ZM214.43 205.961C213.504 207.307 212.024 207.98 209.992 207.98C208.509 207.98 207.381 207.551 206.609 206.694C205.838 205.828 205.443 204.55 205.426 202.861V193.806H206.957V202.668C206.957 205.317 208.029 206.642 210.172 206.642C212.402 206.642 213.812 205.72 214.404 203.877V193.806H215.947V207.723H214.455L214.43 205.961ZM226.391 195.118C226.065 195.058 225.718 195.028 225.349 195.028C224.389 195.028 223.574 195.298 222.906 195.838C222.245 196.37 221.774 197.146 221.491 198.166V207.723H219.96V193.806H221.465L221.491 196.018C222.305 194.372 223.613 193.549 225.414 193.549C225.842 193.549 226.181 193.604 226.43 193.716L226.391 195.118ZM243.575 204.186C243.575 203.422 243.266 202.809 242.649 202.346C242.04 201.883 241.118 201.523 239.884 201.266C238.649 201 237.688 200.7 237.002 200.366C236.325 200.023 235.819 199.607 235.485 199.118C235.159 198.629 234.996 198.038 234.996 197.343C234.996 196.245 235.455 195.341 236.372 194.629C237.29 193.909 238.464 193.549 239.896 193.549C241.448 193.549 242.692 193.935 243.626 194.706C244.57 195.469 245.041 196.468 245.041 197.703H243.498C243.498 196.889 243.155 196.211 242.469 195.671C241.791 195.131 240.934 194.861 239.896 194.861C238.885 194.861 238.07 195.088 237.453 195.542C236.844 195.988 236.539 196.571 236.539 197.292C236.539 197.986 236.792 198.526 237.298 198.912C237.813 199.289 238.743 199.637 240.089 199.954C241.444 200.271 242.456 200.61 243.125 200.97C243.802 201.33 244.304 201.763 244.63 202.269C244.955 202.775 245.118 203.388 245.118 204.108C245.118 205.283 244.642 206.222 243.691 206.925C242.747 207.628 241.513 207.98 239.986 207.98C238.366 207.98 237.05 207.59 236.038 206.809C235.035 206.021 234.533 205.026 234.533 203.825H236.076C236.136 204.726 236.514 205.429 237.208 205.935C237.911 206.432 238.837 206.681 239.986 206.681C241.058 206.681 241.924 206.445 242.585 205.973C243.245 205.502 243.575 204.906 243.575 204.186ZM253.98 207.98C252.797 207.98 251.725 207.688 250.765 207.105C249.813 206.522 249.071 205.712 248.54 204.674C248.008 203.628 247.742 202.458 247.742 201.163V200.61C247.742 199.272 247.999 198.068 248.514 196.996C249.037 195.924 249.762 195.084 250.688 194.475C251.614 193.857 252.617 193.549 253.697 193.549C255.387 193.549 256.724 194.127 257.71 195.285C258.705 196.434 259.202 198.008 259.202 200.005V200.867H249.273V201.163C249.273 202.741 249.723 204.057 250.623 205.112C251.532 206.158 252.673 206.681 254.045 206.681C254.868 206.681 255.592 206.531 256.218 206.231C256.853 205.931 257.427 205.45 257.942 204.79L258.906 205.523C257.775 207.161 256.133 207.98 253.98 207.98ZM253.697 194.861C252.54 194.861 251.562 195.285 250.765 196.134C249.976 196.983 249.496 198.123 249.324 199.555H257.672V199.388C257.629 198.05 257.247 196.961 256.527 196.121C255.807 195.281 254.864 194.861 253.697 194.861ZM268.63 195.118C268.304 195.058 267.957 195.028 267.588 195.028C266.628 195.028 265.813 195.298 265.145 195.838C264.484 196.37 264.013 197.146 263.73 198.166V207.723H262.199V193.806H263.704L263.73 196.018C264.544 194.372 265.852 193.549 267.653 193.549C268.081 193.549 268.42 193.604 268.669 193.716L268.63 195.118ZM275.64 205.6L279.872 193.806H281.454L276.257 207.723H275.01L269.788 193.806H271.37L275.64 205.6ZM289.197 207.98C288.013 207.98 286.941 207.688 285.981 207.105C285.029 206.522 284.288 205.712 283.756 204.674C283.224 203.628 282.958 202.458 282.958 201.163V200.61C282.958 199.272 283.216 198.068 283.73 196.996C284.253 195.924 284.978 195.084 285.904 194.475C286.83 193.857 287.833 193.549 288.914 193.549C290.603 193.549 291.94 194.127 292.927 195.285C293.921 196.434 294.419 198.008 294.419 200.005V200.867H284.489V201.163C284.489 202.741 284.939 204.057 285.84 205.112C286.748 206.158 287.889 206.681 289.261 206.681C290.084 206.681 290.809 206.531 291.435 206.231C292.069 205.931 292.644 205.45 293.158 204.79L294.123 205.523C292.991 207.161 291.349 207.98 289.197 207.98ZM288.914 194.861C287.756 194.861 286.778 195.285 285.981 196.134C285.192 196.983 284.712 198.123 284.54 199.555H292.888V199.388C292.845 198.05 292.463 196.961 291.743 196.121C291.023 195.281 290.08 194.861 288.914 194.861ZM303.846 195.118C303.521 195.058 303.173 195.028 302.805 195.028C301.844 195.028 301.03 195.298 300.361 195.838C299.701 196.37 299.229 197.146 298.946 198.166V207.723H297.415V193.806H298.92L298.946 196.018C299.761 194.372 301.068 193.549 302.869 193.549C303.298 193.549 303.636 193.604 303.885 193.716L303.846 195.118Z" fill="black"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="349.967" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="355.091" y2="116.809" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="174.831" y1="105.76" x2="174.905" y2="207.102" gradientUnits="userSpaceOnUse">
-<stop stop-color="#8D58B3"/>
-<stop offset="1" stop-color="#775EBF" stop-opacity="0.25"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="107.11" y1="54.1953" x2="185.525" y2="98.9423" gradientUnits="userSpaceOnUse">
-<stop stop-color="#8D58B3"/>
-<stop offset="1" stop-color="#775EBF"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Features/RSM/Tags.svg b/public/Features/RSM/Tags.svg
deleted file mode 100644
index 62accb1..0000000
--- a/public/Features/RSM/Tags.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-<svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g filter="url(#filter0_bd)">
-<rect x="25" y="25" width="200" height="200" rx="25.3283" fill="url(#paint0_linear)" fill-opacity="0.65" shape-rendering="crispEdges"/>
-</g>
-<path d="M107.194 206.786L108.648 206.786L107.194 206.786C107.194 208.775 108.821 210.388 110.828 210.388L110.828 208.947L110.828 210.388L121.994 210.388C122.958 210.388 123.882 210.008 124.564 209.333L147.918 186.187C149.337 184.781 149.337 182.5 147.918 181.094L136.752 170.028C135.333 168.622 133.032 168.622 131.613 170.028L108.258 193.174C107.577 193.849 107.194 194.765 107.194 195.72L107.194 206.786ZM116.401 201.15C114.954 199.716 114.954 197.391 116.401 195.957C117.848 194.523 120.194 194.523 121.641 195.957C123.088 197.391 123.088 199.716 121.641 201.15C120.194 202.584 117.848 202.584 116.401 201.15Z" stroke="url(#paint1_linear)" stroke-width="2.89423"/>
-<path d="M33.9368 147.908V135.252H31.6345V133.991H33.9368V132.307C33.9368 130.883 34.297 129.79 35.0172 129.027C35.7461 128.264 36.7579 127.882 38.0527 127.882C38.6357 127.882 39.1802 127.955 39.6861 128.101L39.5704 129.387C39.1416 129.284 38.6743 129.233 38.1684 129.233C37.3195 129.233 36.6593 129.498 36.1877 130.03C35.7161 130.553 35.4803 131.299 35.4803 132.268V133.991H38.7987V135.252H35.4803V147.908H33.9368ZM40.7022 140.744C40.7022 139.406 40.9595 138.202 41.474 137.13C41.997 136.058 42.7302 135.226 43.6734 134.635C44.6252 134.034 45.7013 133.734 46.9017 133.734C48.7539 133.734 50.2544 134.386 51.4034 135.689C52.5525 136.984 53.127 138.703 53.127 140.847V141.169C53.127 142.515 52.8654 143.728 52.3424 144.808C51.8279 145.88 51.099 146.708 50.1558 147.291C49.2126 147.874 48.1365 148.165 46.9275 148.165C45.0839 148.165 43.5833 147.518 42.4258 146.223C41.2767 144.92 40.7022 143.196 40.7022 141.053V140.744ZM42.2457 141.169C42.2457 142.832 42.6744 144.2 43.5319 145.271C44.3979 146.335 45.5298 146.866 46.9275 146.866C48.3166 146.866 49.4398 146.335 50.2973 145.271C51.1634 144.2 51.5964 142.789 51.5964 141.04V140.744C51.5964 139.681 51.3992 138.708 51.0047 137.824C50.6103 136.941 50.0572 136.259 49.3455 135.779C48.6338 135.291 47.8192 135.046 46.9017 135.046C45.5298 135.046 44.4108 135.586 43.5447 136.667C42.6787 137.739 42.2457 139.145 42.2457 140.886V141.169ZM62.7478 135.303C62.4219 135.243 62.0746 135.213 61.7059 135.213C60.7456 135.213 59.931 135.483 59.2621 136.024C58.6019 136.555 58.1303 137.331 57.8473 138.352V147.908H56.3167V133.991H57.8216L57.8473 136.204C58.6619 134.557 59.9696 133.734 61.7702 133.734C62.199 133.734 62.5377 133.79 62.7863 133.901L62.7478 135.303ZM70.9794 140.821C70.9794 138.643 71.4596 136.92 72.42 135.651C73.3889 134.373 74.7094 133.734 76.3815 133.734C78.2594 133.734 79.687 134.45 80.6646 135.882L80.7417 133.991H82.1823V153.259H80.6388V146.185C79.627 147.505 78.1993 148.165 76.3558 148.165C74.7266 148.165 73.4232 147.522 72.4457 146.236C71.4682 144.95 70.9794 143.214 70.9794 141.027V140.821ZM72.5358 141.091C72.5358 142.892 72.8959 144.307 73.6162 145.336C74.345 146.356 75.3525 146.866 76.6387 146.866C78.4823 146.866 79.8157 146.065 80.6388 144.461V137.644C80.253 136.813 79.7171 136.174 79.0311 135.728C78.3537 135.273 77.5648 135.046 76.6645 135.046C75.3697 135.046 74.3579 135.561 73.629 136.59C72.9002 137.61 72.5358 139.111 72.5358 141.091ZM95.2372 146.146C94.3112 147.492 92.832 148.165 90.7998 148.165C89.3164 148.165 88.1888 147.737 87.4171 146.879C86.6454 146.013 86.251 144.736 86.2338 143.046V133.991H87.7644V142.853C87.7644 145.503 88.8362 146.828 90.9799 146.828C93.2093 146.828 94.6199 145.906 95.2115 144.062V133.991H96.755V147.908H95.263L95.2372 146.146ZM102.491 147.908H100.948V133.991H102.491V147.908ZM100.678 129.966C100.678 129.674 100.772 129.43 100.961 129.233C101.149 129.027 101.407 128.924 101.733 128.924C102.058 128.924 102.316 129.027 102.504 129.233C102.701 129.43 102.8 129.674 102.8 129.966C102.8 130.257 102.701 130.502 102.504 130.699C102.316 130.896 102.058 130.995 101.733 130.995C101.407 130.995 101.149 130.896 100.961 130.699C100.772 130.502 100.678 130.257 100.678 129.966ZM111.829 146.866C112.901 146.866 113.797 146.566 114.517 145.966C115.246 145.357 115.641 144.573 115.701 143.612H117.18C117.137 144.461 116.871 145.237 116.382 145.94C115.894 146.635 115.242 147.179 114.427 147.574C113.621 147.968 112.755 148.165 111.829 148.165C110.003 148.165 108.554 147.531 107.482 146.262C106.419 144.993 105.887 143.286 105.887 141.143V140.68C105.887 139.308 106.127 138.094 106.607 137.04C107.087 135.985 107.773 135.171 108.665 134.596C109.566 134.022 110.616 133.734 111.816 133.734C113.343 133.734 114.599 134.189 115.585 135.098C116.58 136.007 117.111 137.203 117.18 138.686H115.701C115.632 137.597 115.238 136.718 114.517 136.049C113.806 135.381 112.905 135.046 111.816 135.046C110.427 135.046 109.347 135.548 108.575 136.551C107.812 137.554 107.43 138.961 107.43 140.77V141.22C107.43 142.995 107.812 144.38 108.575 145.374C109.347 146.369 110.432 146.866 111.829 146.866ZM123.572 140.898L121.81 142.596V147.908H120.267V128.152H121.81V140.796L123.264 139.226L128.588 133.991H130.531L124.627 139.857L131.045 147.908H129.206L123.572 140.898ZM148.37 147.908C148.216 147.471 148.117 146.824 148.074 145.966C147.534 146.669 146.844 147.214 146.004 147.6C145.172 147.977 144.289 148.165 143.354 148.165C142.016 148.165 140.932 147.792 140.1 147.046C139.277 146.3 138.865 145.357 138.865 144.217C138.865 142.862 139.427 141.79 140.55 141.001C141.682 140.212 143.255 139.818 145.271 139.818H148.062V138.236C148.062 137.241 147.753 136.461 147.136 135.895C146.527 135.321 145.635 135.033 144.46 135.033C143.388 135.033 142.501 135.308 141.798 135.856C141.095 136.405 140.743 137.066 140.743 137.837L139.2 137.824C139.2 136.718 139.714 135.762 140.743 134.956C141.772 134.142 143.037 133.734 144.537 133.734C146.089 133.734 147.311 134.124 148.203 134.905C149.103 135.676 149.566 136.757 149.592 138.146V144.731C149.592 146.078 149.734 147.085 150.017 147.754V147.908H148.37ZM143.534 146.802C144.563 146.802 145.481 146.553 146.287 146.056C147.101 145.559 147.693 144.894 148.062 144.062V141.001H145.309C143.774 141.018 142.574 141.301 141.708 141.85C140.842 142.39 140.409 143.136 140.409 144.088C140.409 144.868 140.696 145.516 141.27 146.03C141.854 146.545 142.608 146.802 143.534 146.802ZM158.853 146.866C159.925 146.866 160.821 146.566 161.541 145.966C162.27 145.357 162.664 144.573 162.724 143.612H164.203C164.161 144.461 163.895 145.237 163.406 145.94C162.917 146.635 162.266 147.179 161.451 147.574C160.645 147.968 159.779 148.165 158.853 148.165C157.026 148.165 155.577 147.531 154.505 146.262C153.442 144.993 152.911 143.286 152.911 141.143V140.68C152.911 139.308 153.151 138.094 153.631 137.04C154.111 135.985 154.797 135.171 155.689 134.596C156.589 134.022 157.639 133.734 158.84 133.734C160.366 133.734 161.622 134.189 162.609 135.098C163.603 136.007 164.135 137.203 164.203 138.686H162.724C162.656 137.597 162.261 136.718 161.541 136.049C160.829 135.381 159.929 135.046 158.84 135.046C157.451 135.046 156.37 135.548 155.599 136.551C154.836 137.554 154.454 138.961 154.454 140.77V141.22C154.454 142.995 154.836 144.38 155.599 145.374C156.37 146.369 157.455 146.866 158.853 146.866ZM172.435 146.866C173.507 146.866 174.403 146.566 175.123 145.966C175.852 145.357 176.247 144.573 176.307 143.612H177.786C177.743 144.461 177.477 145.237 176.988 145.94C176.5 146.635 175.848 147.179 175.033 147.574C174.227 147.968 173.361 148.165 172.435 148.165C170.609 148.165 169.16 147.531 168.088 146.262C167.024 144.993 166.493 143.286 166.493 141.143V140.68C166.493 139.308 166.733 138.094 167.213 137.04C167.693 135.985 168.379 135.171 169.271 134.596C170.171 134.022 171.222 133.734 172.422 133.734C173.949 133.734 175.205 134.189 176.191 135.098C177.185 136.007 177.717 137.203 177.786 138.686H176.307C176.238 137.597 175.844 136.718 175.123 136.049C174.412 135.381 173.511 135.046 172.422 135.046C171.033 135.046 169.953 135.548 169.181 136.551C168.418 137.554 168.036 138.961 168.036 140.77V141.22C168.036 142.995 168.418 144.38 169.181 145.374C169.953 146.369 171.037 146.866 172.435 146.866ZM186.262 148.165C185.078 148.165 184.007 147.874 183.046 147.291C182.095 146.708 181.353 145.897 180.821 144.86C180.29 143.814 180.024 142.643 180.024 141.349V140.796C180.024 139.458 180.281 138.253 180.795 137.181C181.318 136.109 182.043 135.269 182.969 134.66C183.895 134.043 184.898 133.734 185.979 133.734C187.668 133.734 189.006 134.313 189.992 135.471C190.986 136.62 191.484 138.193 191.484 140.191V141.053H181.554V141.349C181.554 142.926 182.004 144.243 182.905 145.297C183.814 146.343 184.954 146.866 186.326 146.866C187.149 146.866 187.874 146.716 188.5 146.416C189.134 146.116 189.709 145.636 190.223 144.976L191.188 145.709C190.056 147.347 188.414 148.165 186.262 148.165ZM185.979 135.046C184.821 135.046 183.844 135.471 183.046 136.32C182.257 137.168 181.777 138.309 181.606 139.741H189.953V139.574C189.91 138.236 189.529 137.147 188.808 136.307C188.088 135.466 187.145 135.046 185.979 135.046ZM202.815 144.371C202.815 143.608 202.507 142.995 201.889 142.532C201.28 142.069 200.359 141.709 199.124 141.451C197.889 141.186 196.929 140.886 196.243 140.551C195.565 140.208 195.059 139.792 194.725 139.304C194.399 138.815 194.236 138.223 194.236 137.529C194.236 136.431 194.695 135.526 195.612 134.815C196.53 134.094 197.705 133.734 199.137 133.734C200.689 133.734 201.932 134.12 202.867 134.892C203.81 135.655 204.281 136.654 204.281 137.889H202.738C202.738 137.074 202.395 136.397 201.709 135.856C201.032 135.316 200.174 135.046 199.137 135.046C198.125 135.046 197.31 135.273 196.693 135.728C196.084 136.174 195.78 136.757 195.78 137.477C195.78 138.172 196.033 138.712 196.539 139.098C197.053 139.475 197.983 139.822 199.33 140.14C200.684 140.457 201.696 140.796 202.365 141.156C203.042 141.516 203.544 141.949 203.87 142.455C204.196 142.961 204.359 143.574 204.359 144.294C204.359 145.469 203.883 146.408 202.931 147.111C201.988 147.814 200.753 148.165 199.227 148.165C197.606 148.165 196.29 147.775 195.278 146.995C194.275 146.206 193.773 145.211 193.773 144.011H195.317C195.377 144.911 195.754 145.614 196.449 146.12C197.152 146.618 198.078 146.866 199.227 146.866C200.299 146.866 201.165 146.631 201.825 146.159C202.485 145.687 202.815 145.091 202.815 144.371ZM216.166 144.371C216.166 143.608 215.857 142.995 215.24 142.532C214.631 142.069 213.709 141.709 212.475 141.451C211.24 141.186 210.279 140.886 209.594 140.551C208.916 140.208 208.41 139.792 208.076 139.304C207.75 138.815 207.587 138.223 207.587 137.529C207.587 136.431 208.046 135.526 208.963 134.815C209.881 134.094 211.055 133.734 212.487 133.734C214.039 133.734 215.283 134.12 216.217 134.892C217.161 135.655 217.632 136.654 217.632 137.889H216.089C216.089 137.074 215.746 136.397 215.06 135.856C214.382 135.316 213.525 135.046 212.487 135.046C211.476 135.046 210.661 135.273 210.044 135.728C209.435 136.174 209.13 136.757 209.13 137.477C209.13 138.172 209.383 138.712 209.889 139.098C210.404 139.475 211.334 139.822 212.68 140.14C214.035 140.457 215.047 140.796 215.716 141.156C216.393 141.516 216.895 141.949 217.221 142.455C217.547 142.961 217.709 143.574 217.709 144.294C217.709 145.469 217.234 146.408 216.282 147.111C215.339 147.814 214.104 148.165 212.577 148.165C210.957 148.165 209.641 147.775 208.629 146.995C207.626 146.206 207.124 145.211 207.124 144.011H208.667C208.727 144.911 209.105 145.614 209.799 146.12C210.502 146.618 211.428 146.866 212.577 146.866C213.649 146.866 214.515 146.631 215.176 146.159C215.836 145.687 216.166 145.091 216.166 144.371Z" fill="black"/>
-<path d="M103.933 88.026H94.3883V114.349H89.1112V88.026H79.6502V83.737H103.933V88.026ZM117.536 114.349C117.312 113.914 117.116 113.206 116.948 112.225C115.322 113.921 113.331 114.769 110.977 114.769C108.692 114.769 106.828 114.117 105.384 112.814C103.94 111.51 103.219 109.898 103.219 107.978C103.219 105.553 104.116 103.696 105.91 102.407C107.718 101.103 110.297 100.451 113.647 100.451H116.779V98.9587C116.779 97.7814 116.45 96.8423 115.791 96.1414C115.132 95.4266 114.13 95.0692 112.785 95.0692C111.621 95.0692 110.668 95.3635 109.925 95.9522C109.183 96.5269 108.811 97.2628 108.811 98.1598H103.702C103.702 96.9123 104.116 95.749 104.943 94.6697C105.77 93.5765 106.891 92.7215 108.307 92.1047C109.736 91.488 111.327 91.1797 113.079 91.1797C115.742 91.1797 117.866 91.8525 119.45 93.198C121.033 94.5296 121.846 96.4078 121.888 98.8326V109.093C121.888 111.139 122.176 112.772 122.75 113.991V114.349H117.536ZM111.923 110.669C112.932 110.669 113.878 110.424 114.761 109.933C115.658 109.443 116.331 108.784 116.779 107.957V103.668H114.025C112.133 103.668 110.71 103.998 109.757 104.656C108.804 105.315 108.328 106.247 108.328 107.453C108.328 108.434 108.65 109.219 109.295 109.807C109.953 110.382 110.829 110.669 111.923 110.669ZM126.346 102.806C126.346 99.2741 127.172 96.4568 128.826 94.3544C130.494 92.2379 132.702 91.1797 135.449 91.1797C138.042 91.1797 140.082 92.0837 141.567 93.8918L141.799 91.6002H146.403V113.655C146.403 116.64 145.471 118.995 143.607 120.719C141.756 122.443 139.255 123.305 136.101 123.305C134.433 123.305 132.8 122.955 131.202 122.254C129.618 121.567 128.413 120.663 127.586 119.542L130.004 116.472C131.574 118.336 133.508 119.268 135.807 119.268C137.503 119.268 138.841 118.806 139.822 117.881C140.803 116.97 141.294 115.624 141.294 113.844V112.309C139.822 113.949 137.86 114.769 135.407 114.769C132.744 114.769 130.564 113.711 128.868 111.594C127.187 109.478 126.346 106.549 126.346 102.806ZM131.433 103.248C131.433 105.532 131.896 107.333 132.821 108.651C133.76 109.955 135.057 110.606 136.711 110.606C138.771 110.606 140.299 109.723 141.294 107.957V97.9495C140.327 96.2255 138.813 95.3635 136.753 95.3635C135.071 95.3635 133.76 96.0293 132.821 97.3609C131.896 98.6924 131.433 100.655 131.433 103.248ZM164.421 108.167C164.421 107.256 164.042 106.563 163.286 106.086C162.543 105.609 161.302 105.189 159.564 104.825C157.826 104.46 156.375 103.998 155.212 103.437C152.661 102.203 151.386 100.416 151.386 98.0757C151.386 96.1134 152.213 94.4735 153.867 93.156C155.52 91.8384 157.623 91.1797 160.174 91.1797C162.893 91.1797 165.087 91.8525 166.755 93.198C168.437 94.5436 169.277 96.2886 169.277 98.4331H164.169C164.169 97.452 163.804 96.639 163.075 95.9943C162.346 95.3355 161.379 95.0061 160.174 95.0061C159.053 95.0061 158.135 95.2654 157.42 95.784C156.719 96.3026 156.368 96.9964 156.368 97.8655C156.368 98.6504 156.698 99.2601 157.357 99.6946C158.015 100.129 159.347 100.571 161.351 101.019C163.356 101.454 164.925 101.979 166.061 102.596C167.21 103.199 168.058 103.928 168.605 104.783C169.165 105.637 169.446 106.675 169.446 107.894C169.446 109.941 168.598 111.601 166.902 112.877C165.206 114.138 162.984 114.769 160.237 114.769C158.373 114.769 156.712 114.433 155.254 113.76C153.796 113.087 152.661 112.162 151.848 110.985C151.035 109.807 150.629 108.539 150.629 107.179H155.591C155.661 108.385 156.116 109.317 156.957 109.976C157.798 110.62 158.912 110.943 160.3 110.943C161.646 110.943 162.669 110.69 163.37 110.186C164.07 109.667 164.421 108.994 164.421 108.167Z" fill="url(#paint2_linear)"/>
-<path d="M55.7894 64.4399C55.575 66.4121 54.8676 67.9213 53.6672 68.9674C52.4753 70.0135 50.8847 70.5365 48.8953 70.5365C47.5063 70.5365 46.2758 70.1893 45.2039 69.4947C44.1407 68.8002 43.3175 67.8184 42.7344 66.5493C42.1514 65.2717 41.8555 63.814 41.847 62.1762V59.7453C41.847 58.0818 42.1385 56.607 42.7216 55.3208C43.3047 54.0346 44.1407 53.0442 45.2297 52.3496C46.3272 51.6465 47.5877 51.2949 49.0111 51.2949C51.0176 51.2949 52.5996 51.8394 53.7572 52.9284C54.9234 54.0088 55.6008 55.5051 55.7894 57.4173H54.1945C53.8001 54.2361 52.0723 52.6455 49.0111 52.6455C47.3133 52.6455 45.9585 53.28 44.9467 54.549C43.9435 55.8181 43.4418 57.5716 43.4418 59.8096V62.099C43.4418 64.2599 43.9306 65.9834 44.9081 67.2696C45.8942 68.5558 47.2233 69.1989 48.8953 69.1989C50.5503 69.1989 51.7979 68.8045 52.6382 68.0156C53.4785 67.2181 53.9973 66.0263 54.1945 64.4399H55.7894ZM65.706 57.6745C65.3802 57.6145 65.0329 57.5845 64.6642 57.5845C63.7038 57.5845 62.8892 57.8546 62.2204 58.3948C61.5602 58.9264 61.0885 59.7024 60.8056 60.7228V70.2793H59.275V56.3626H60.7799L60.8056 58.5749C61.6202 56.9285 62.9278 56.1053 64.7285 56.1053C65.1572 56.1053 65.4959 56.1611 65.7446 56.2725L65.706 57.6745ZM73.2818 70.5365C72.0984 70.5365 71.0266 70.245 70.0662 69.6619C69.1145 69.0788 68.3727 68.2685 67.8411 67.231C67.3095 66.1849 67.0437 65.0144 67.0437 63.7197V63.1666C67.0437 61.8289 67.3009 60.6242 67.8154 59.5524C68.3384 58.4805 69.063 57.6402 69.9891 57.0314C70.9151 56.414 71.9184 56.1053 72.9988 56.1053C74.688 56.1053 76.0256 56.6841 77.0117 57.8417C78.0064 58.9907 78.5037 60.5642 78.5037 62.5621V63.4238H68.5742V63.7197C68.5742 65.2974 69.0244 66.6136 69.9248 67.6683C70.8337 68.7144 71.9741 69.2375 73.3461 69.2375C74.1692 69.2375 74.8938 69.0874 75.5197 68.7873C76.1543 68.4872 76.7288 68.007 77.2433 67.3468L78.2079 68.0799C77.076 69.7177 75.434 70.5365 73.2818 70.5365ZM72.9988 57.4173C71.8412 57.4173 70.8637 57.8417 70.0662 58.6906C69.2774 59.5395 68.7972 60.6799 68.6257 62.1119H76.9732V61.9447C76.9303 60.6071 76.5487 59.5181 75.8284 58.6777C75.1082 57.8374 74.1649 57.4173 72.9988 57.4173ZM90.2854 70.2793C90.131 69.842 90.0324 69.1946 89.9895 68.3371C89.4493 69.0403 88.7591 69.5847 87.9187 69.9706C87.087 70.3479 86.2038 70.5365 85.2692 70.5365C83.9315 70.5365 82.8468 70.1635 82.0151 69.4175C81.1919 68.6715 80.7803 67.7283 80.7803 66.5879C80.7803 65.2331 81.342 64.1613 82.4652 63.3724C83.5971 62.5835 85.1706 62.1891 87.1856 62.1891H89.9767V60.6071C89.9767 59.6124 89.668 58.8321 89.0506 58.2662C88.4418 57.6917 87.55 57.4044 86.3753 57.4044C85.3035 57.4044 84.416 57.6788 83.7129 58.2276C83.0097 58.7764 82.6582 59.4366 82.6582 60.2083L81.1147 60.1955C81.1147 59.0893 81.6292 58.1333 82.6582 57.3272C83.6871 56.5126 84.9519 56.1053 86.4525 56.1053C88.0045 56.1053 89.2264 56.4955 90.1181 57.2758C91.0185 58.0475 91.4815 59.1279 91.5072 60.517V67.1024C91.5072 68.4486 91.6487 69.4561 91.9317 70.125V70.2793H90.2854ZM85.4492 69.1732C86.4782 69.1732 87.3957 68.9245 88.2017 68.4272C89.0163 67.9298 89.608 67.2653 89.9767 66.4336V63.3724H87.2242C85.6893 63.3895 84.4889 63.6725 83.6228 64.2213C82.7568 64.7615 82.3238 65.5075 82.3238 66.4593C82.3238 67.2396 82.611 67.887 83.1855 68.4014C83.7686 68.9159 84.5232 69.1732 85.4492 69.1732ZM98.0154 52.7998V56.3626H100.897V57.6231H98.0154V66.8966C98.0154 67.6683 98.1526 68.2428 98.427 68.6201C98.71 68.9974 99.1773 69.186 99.829 69.186C100.086 69.186 100.502 69.1432 101.077 69.0574L101.141 70.3179C100.738 70.4637 100.189 70.5365 99.4946 70.5365C98.4399 70.5365 97.6724 70.2321 97.1923 69.6233C96.7121 69.006 96.472 68.1013 96.472 66.9094V57.6231H93.9124V56.3626H96.472V52.7998H98.0154ZM109.475 70.5365C108.292 70.5365 107.22 70.245 106.26 69.6619C105.308 69.0788 104.566 68.2685 104.035 67.231C103.503 66.1849 103.237 65.0144 103.237 63.7197V63.1666C103.237 61.8289 103.495 60.6242 104.009 59.5524C104.532 58.4805 105.257 57.6402 106.183 57.0314C107.109 56.414 108.112 56.1053 109.193 56.1053C110.882 56.1053 112.219 56.6841 113.205 57.8417C114.2 58.9907 114.697 60.5642 114.697 62.5621V63.4238H104.768V63.7197C104.768 65.2974 105.218 66.6136 106.119 67.6683C107.027 68.7144 108.168 69.2375 109.54 69.2375C110.363 69.2375 111.088 69.0874 111.713 68.7873C112.348 68.4872 112.923 68.007 113.437 67.3468L114.402 68.0799C113.27 69.7177 111.628 70.5365 109.475 70.5365ZM109.193 57.4173C108.035 57.4173 107.057 57.8417 106.26 58.6906C105.471 59.5395 104.991 60.6799 104.819 62.1119H113.167V61.9447C113.124 60.6071 112.742 59.5181 112.022 58.6777C111.302 57.8374 110.359 57.4173 109.193 57.4173ZM129.244 69.2375C130.316 69.2375 131.212 68.9374 131.933 68.3371C132.661 67.7283 133.056 66.9437 133.116 65.9834H134.595C134.552 66.8323 134.286 67.6083 133.798 68.3114C133.309 69.006 132.657 69.5504 131.843 69.9449C131.037 70.3393 130.17 70.5365 129.244 70.5365C127.418 70.5365 125.969 69.902 124.897 68.633C123.834 67.3639 123.302 65.6575 123.302 63.5139V63.0508C123.302 61.6789 123.542 60.4656 124.022 59.4109C124.503 58.3562 125.189 57.5416 126.08 56.9671C126.981 56.3926 128.031 56.1053 129.232 56.1053C130.758 56.1053 132.014 56.5598 133 57.4687C133.995 58.3776 134.526 59.5738 134.595 61.0572H133.116C133.047 59.9682 132.653 59.0893 131.933 58.4205C131.221 57.7517 130.321 57.4173 129.232 57.4173C127.842 57.4173 126.762 57.9189 125.99 58.9221C125.227 59.9254 124.846 61.3316 124.846 63.1409V63.591C124.846 65.366 125.227 66.7508 125.99 67.7455C126.762 68.7401 127.847 69.2375 129.244 69.2375ZM146.634 68.5172C145.708 69.8634 144.229 70.5365 142.196 70.5365C140.713 70.5365 139.586 70.1078 138.814 69.2503C138.042 68.3843 137.648 67.1067 137.63 65.4175V56.3626H139.161V65.2245C139.161 67.8741 140.233 69.1989 142.377 69.1989C144.606 69.1989 146.017 68.2771 146.608 66.4336V56.3626H148.152V70.2793H146.66L146.634 68.5172ZM160.499 66.7422C160.499 65.9791 160.19 65.366 159.573 64.903C158.964 64.4399 158.043 64.0798 156.808 63.8226C155.573 63.5567 154.613 63.2566 153.927 62.9222C153.249 62.5792 152.743 62.1634 152.409 61.6746C152.083 61.1858 151.92 60.5942 151.92 59.8996C151.92 58.8021 152.379 57.8975 153.296 57.1858C154.214 56.4655 155.389 56.1053 156.821 56.1053C158.373 56.1053 159.616 56.4912 160.551 57.2629C161.494 58.0261 161.965 59.025 161.965 60.2598H160.422C160.422 59.4452 160.079 58.7678 159.393 58.2276C158.716 57.6874 157.858 57.4173 156.821 57.4173C155.809 57.4173 154.994 57.6445 154.377 58.099C153.768 58.5448 153.464 59.1279 153.464 59.8482C153.464 60.5427 153.717 61.0829 154.222 61.4688C154.737 61.8461 155.667 62.1934 157.014 62.5106C158.368 62.8279 159.38 63.1666 160.049 63.5267C160.726 63.8869 161.228 64.3199 161.554 64.8258C161.88 65.3317 162.043 65.9448 162.043 66.6651C162.043 67.8398 161.567 68.7787 160.615 69.4819C159.672 70.185 158.437 70.5365 156.911 70.5365C155.29 70.5365 153.974 70.1464 152.962 69.3661C151.959 68.5772 151.457 67.5826 151.457 66.3821H153.001C153.061 67.2824 153.438 67.9856 154.132 68.4915C154.836 68.9888 155.762 69.2375 156.911 69.2375C157.982 69.2375 158.849 69.0017 159.509 68.5301C160.169 68.0585 160.499 67.4625 160.499 66.7422ZM167.908 52.7998V56.3626H170.789V57.6231H167.908V66.8966C167.908 67.6683 168.045 68.2428 168.319 68.6201C168.602 68.9974 169.07 69.186 169.721 69.186C169.978 69.186 170.394 69.1432 170.969 69.0574L171.033 70.3179C170.63 70.4637 170.081 70.5365 169.387 70.5365C168.332 70.5365 167.565 70.2321 167.085 69.6233C166.604 69.006 166.364 68.1013 166.364 66.9094V57.6231H163.805V56.3626H166.364V52.7998H167.908ZM172.872 63.1151C172.872 61.7775 173.13 60.5728 173.644 59.5009C174.167 58.4291 174.9 57.5973 175.844 57.0057C176.795 56.4055 177.871 56.1053 179.072 56.1053C180.924 56.1053 182.425 56.757 183.574 58.0604C184.723 59.3551 185.297 61.0744 185.297 63.218V63.5396C185.297 64.8858 185.036 66.0991 184.513 67.1795C183.998 68.2514 183.269 69.0788 182.326 69.6619C181.383 70.245 180.307 70.5365 179.098 70.5365C177.254 70.5365 175.754 69.8891 174.596 68.5944C173.447 67.291 172.872 65.5675 172.872 63.4238V63.1151ZM174.416 63.5396C174.416 65.2031 174.845 66.5707 175.702 67.6426C176.568 68.7058 177.7 69.2375 179.098 69.2375C180.487 69.2375 181.61 68.7058 182.467 67.6426C183.334 66.5707 183.767 65.1602 183.767 63.411V63.1151C183.767 62.0519 183.569 61.0787 183.175 60.1955C182.78 59.3123 182.227 58.6306 181.516 58.1504C180.804 57.6616 179.989 57.4173 179.072 57.4173C177.7 57.4173 176.581 57.9575 175.715 59.0379C174.849 60.1097 174.416 61.516 174.416 63.2566V63.5396ZM189.889 56.3626L189.94 58.6263C190.455 57.786 191.098 57.1557 191.87 56.7356C192.641 56.3154 193.499 56.1053 194.442 56.1053C196.637 56.1053 198.031 57.0057 198.622 58.8064C199.12 57.9403 199.784 57.2758 200.616 56.8128C201.448 56.3411 202.365 56.1053 203.368 56.1053C206.352 56.1053 207.874 57.7345 207.934 60.9929V70.2793H206.391V61.1087C206.382 59.8653 206.112 58.9436 205.581 58.3433C205.058 57.7431 204.2 57.443 203.008 57.443C201.902 57.4601 200.967 57.8203 200.204 58.5234C199.441 59.218 199.017 60.0668 198.931 61.0701V70.2793H197.387V60.9929C197.379 59.801 197.096 58.9136 196.539 58.3305C195.99 57.7388 195.141 57.443 193.992 57.443C193.023 57.443 192.191 57.7217 191.497 58.279C190.802 58.8278 190.288 59.6467 189.953 60.7357V70.2793H188.41V56.3626H189.889Z" fill="black"/>
-<defs>
-<filter id="filter0_bd" x="0.0161667" y="0.0161667" width="249.968" height="249.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feGaussianBlur in="BackgroundImage" stdDeviation="11.651"/>
-<feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feMorphology radius="4.16397" operator="dilate" in="SourceAlpha" result="effect2_dropShadow"/>
-<feOffset/>
-<feGaussianBlur stdDeviation="10.4099"/>
-<feComposite in2="hardAlpha" operator="out"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
-<feBlend mode="normal" in2="effect1_backgroundBlur" result="effect2_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="25" y1="25" x2="254.204" y2="67.4991" gradientUnits="userSpaceOnUse">
-<stop stop-color="white" stop-opacity="0.9"/>
-<stop offset="1" stop-color="white" stop-opacity="0.7"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="134.142" y1="213.143" x2="123.377" y2="171.038" gradientUnits="userSpaceOnUse">
-<stop stop-color="#6576CC"/>
-<stop offset="1" stop-color="#71AFE5"/>
-</linearGradient>
-<linearGradient id="paint2_linear" x1="98.1791" y1="77.3486" x2="143.651" y2="123.662" gradientUnits="userSpaceOnUse">
-<stop stop-color="#6576CC"/>
-<stop offset="1" stop-color="#71AFE5"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Headers/CA.svg b/public/Headers/CA.svg
deleted file mode 100644
index a6d54c1..0000000
--- a/public/Headers/CA.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="1920" height="794" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m1919 11-78.96 66.591c-79.96 67-239.87 202-399.79 240-159.92 38-319.83-19-479.75-106-159.917-86-319.834-201-479.75-211-159.917-9-319.834 87-399.792 135L0 183.5V794H1920l-1-783Z" fill="url(#a)"/><defs><linearGradient id="a" x1="1920" y1="976.589" x2=".001" y2="976.589" gradientUnits="userSpaceOnUse"><stop stop-color="#F2D478"/><stop offset="1" stop-color="#EDC575"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Headers/CF.svg b/public/Headers/CF.svg
deleted file mode 100644
index 99b5791..0000000
--- a/public/Headers/CF.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="1920" height="833" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 460 64 10c64 10 192 29 320-48s256-250 384-259c128-10 256 144 384 153 128 10 256-124 384-201s256-96 320-106l64-9v832.5H0V460Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="1023.94" x2="1920" y2="1023.94" gradientUnits="userSpaceOnUse"><stop stop-color="#6576CC"/><stop offset="1" stop-color="#775EBF"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Headers/GS.svg b/public/Headers/GS.svg
deleted file mode 100644
index 56da3ad..0000000
--- a/public/Headers/GS.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="1920" height="794" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 112.259 80 38c80 39 240 116 400 144 160 29 320 10 480-57s320-183 480-221 320 0 400 19l80 19V794H0V112.259Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="976.589" x2="1920" y2="976.589" gradientUnits="userSpaceOnUse"><stop stop-color="#71AFE5"/><stop offset="1" stop-color="#6576CC"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Headers/Main.svg b/public/Headers/Main.svg
deleted file mode 100644
index 7c7bbd6..0000000
--- a/public/Headers/Main.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="1920" height="668" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M64 154.115 0 116.087V668h1920V0l-64 39.03-2.82 1.678c-64.89 38.57-191.04 113.552-317.18 123.415-89.87 6.324-179.74-19.914-269.62-46.151-38.12-11.131-76.25-22.262-114.38-30.907-128-29.021-256-29.021-384 19.014-45.85 17.207-91.7 40.577-137.549 63.947l-.003.002C548.298 211.9 466.149 253.772 384 260.195c-126.545 8.904-253.09-66.311-317.793-104.768L64 154.115Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="821.614" x2="1920" y2="821.614" gradientUnits="userSpaceOnUse"><stop stop-color="#78ECF2"/><stop offset="1" stop-color="#71AFE5"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Headers/RM.svg b/public/Headers/RM.svg
deleted file mode 100644
index 5866629..0000000
--- a/public/Headers/RM.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="1920" height="865" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 0 80 67c80 67 240 201 400 288 160 86 320 125 480 48s320-269 480-288 320 134 400 211l80 77v462H0V0Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="1063.92" x2="1920" y2="1063.92" gradientUnits="userSpaceOnUse"><stop stop-color="#8D8D8D"/><stop offset="1" stop-color="#424242"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Icons/CA.svg b/public/Icons/CA.svg
deleted file mode 100644
index a20408e..0000000
--- a/public/Icons/CA.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="2048" height="2048" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="2048" height="2048" rx="1024" fill="url(#a)"/><g filter="url(#b)"><path d="M1673 1235c-76.4-47.88-80.3-64.8-146.44-64.89l-44.92 1.55c-6.75.23-13.04-3.07-17.58-8.07-26.3-29.05-76.53-46.4-166.06-53.21 26.77-10.95 94.1-5.97 134.31-1.68 14.69 1.56 26.31-12.45 21.25-26.33-11.21-30.71-30.17-78.37-50.79-111.37 44.42 28.819 69.21 52.77 106.22 136.76 2.57 5.82 7.72 10.09 13.85 11.8 55.91 15.59 93.48 49.47 150.16 115.44Z" fill="#424242"/></g><g filter="url(#c)"><path d="M1567 839c-76.4-47.697-80.3-64.553-146.44-64.647l-44.94 1.549c-6.74.232-13.02-3.056-17.56-8.046-26.3-28.932-76.53-46.215-166.06-53.006 26.77-10.902 94.08-5.948 134.29-1.678 14.7 1.56 26.3-12.468 21.22-26.344-11.21-30.602-30.15-77.994-50.74-110.828 44.42 28.707 69.2 52.562 106.21 136.215 2.57 5.813 7.73 10.075 13.86 11.777 55.91 15.536 93.48 49.287 150.16 115.008Z" fill="#424242"/></g><g filter="url(#d)"><path d="M632 1103c-76.401-47.88-80.3-64.8-146.439-64.89l-44.917 1.55c-6.753.23-13.047-3.07-17.583-8.07-26.298-29.05-76.529-46.396-166.061-53.213 26.772-10.944 94.101-5.968 134.314-1.681 14.688 1.565 26.303-12.445 21.242-26.323-11.201-30.714-30.166-78.37-50.784-111.373 44.423 28.819 69.205 52.766 106.219 136.756 2.565 5.82 7.723 10.091 13.849 11.8C537.755 1003.15 575.325 1037.03 632 1103Z" fill="#424242"/></g><g filter="url(#e)"><path d="M1088 1046c-76.4-47.878-80.3-64.799-146.439-64.892l-44.917 1.553c-6.753.234-13.047-3.067-17.583-8.075-26.298-29.043-76.529-46.392-166.061-53.209 26.772-10.944 94.101-5.968 134.314-1.681 14.688 1.565 26.303-12.445 21.242-26.323-11.201-30.714-30.166-78.37-50.784-111.373 44.423 28.819 69.205 52.766 106.219 136.756 2.565 5.82 7.723 10.091 13.849 11.8 55.915 15.595 93.48 49.475 150.16 115.444Z" fill="#424242"/></g><g filter="url(#f)"><path d="M1177 418c-76.4-47.878-80.3-64.799-146.44-64.892l-44.916 1.553c-6.753.234-13.047-3.067-17.583-8.075-26.298-29.043-76.529-46.392-166.061-53.209 26.772-10.944 94.101-5.968 134.314-1.681 14.688 1.565 26.303-12.445 21.242-26.323-11.201-30.714-30.166-78.37-50.784-111.373 44.423 28.819 69.205 52.766 106.218 136.756 2.57 5.82 7.72 10.091 13.85 11.8 55.91 15.595 93.48 49.475 150.16 115.444Z" fill="#424242"/></g><path fill-rule="evenodd" clip-rule="evenodd" d="M354.304 1798.67C533.844 1954.02 767.947 2048 1024 2048c417.23 0 776.18-249.53 935.75-607.5-72.05.78-145.34 3.32-219.59 7.69-570.76 33.64-1072.169 168.52-1385.856 350.48Z" fill="url(#g)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M354.304 1798.67c313.687-181.96 815.096-316.84 1385.856-350.48 74.25-4.37 147.54-6.91 219.59-7.69C1800.18 1798.47 1441.23 2048 1024 2048c-256.053 0-490.156-93.98-669.696-249.33Z" fill="url(#h)"/><defs><filter id="b" x="1298" y="971" width="382.5" height="271.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="5" dy="5"/><feGaussianBlur stdDeviation="1.25"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7645"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7645" result="shape"/></filter><filter id="c" x="1192" y="576" width="382.5" height="270.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="5" dy="5"/><feGaussianBlur stdDeviation="1.25"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7645"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7645" result="shape"/></filter><filter id="d" x="257" y="839" width="382.5" height="271.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="5" dy="5"/><feGaussianBlur stdDeviation="1.25"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7645"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7645" result="shape"/></filter><filter id="e" x="713" y="782" width="382.5" height="271.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="5" dy="5"/><feGaussianBlur stdDeviation="1.25"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7645"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7645" result="shape"/></filter><filter id="f" x="802" y="154" width="382.5" height="271.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dx="5" dy="5"/><feGaussianBlur stdDeviation="1.25"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7645"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7645" result="shape"/></filter><linearGradient id="a" x1="2048" y1="0" x2="0" y2="2048" gradientUnits="userSpaceOnUse"><stop stop-color="#78ECF2"/><stop offset="1" stop-color="#71AFE5"/></linearGradient><linearGradient id="g" x1="-28" y1="1552.39" x2="1925.63" y2="2212.59" gradientUnits="userSpaceOnUse"><stop stop-color="#F2D478"/><stop offset=".927083" stop-color="#EDC575"/></linearGradient><linearGradient id="h" x1="-28" y1="1552.39" x2="1925.63" y2="2212.59" gradientUnits="userSpaceOnUse"><stop stop-color="#F2D478"/><stop offset=".927083" stop-color="#EDC575"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Icons/CF.svg b/public/Icons/CF.svg
deleted file mode 100644
index c4d9f97..0000000
--- a/public/Icons/CF.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-<svg width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect width="52.9231" height="52.9231" rx="26.4615" fill="url(#paint0_linear)"/>
-<rect x="14.1353" y="14.1348" width="24.6526" height="24.6526" rx="3.95074" stroke="white" stroke-width="3.14447"/>
-<path d="M19.3501 26.4616L22.9736 30.085C23.5907 30.7022 24.5913 30.7022 25.2084 30.085L33.5728 21.7207" stroke="white" stroke-width="3.14447" stroke-linecap="round" stroke-linejoin="round"/>
-<defs>
-<linearGradient id="paint0_linear" x1="52.9231" y1="0" x2="0" y2="52.9231" gradientUnits="userSpaceOnUse">
-<stop stop-color="#6576CC"/>
-<stop offset="1" stop-color="#775EBF"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Icons/CL.svg b/public/Icons/CL.svg
deleted file mode 100644
index 98631cb..0000000
--- a/public/Icons/CL.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-<svg width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect width="52.81" height="52.81" rx="26.405" fill="url(#paint0_linear)"/>
-<path d="M25.8364 30.5051C24.577 30.5051 23.6157 30.1549 22.9525 29.4544C22.2967 28.7539 21.9688 27.7591 21.9688 26.4699C21.9688 25.829 22.0694 25.2589 22.2706 24.7596C22.4718 24.2529 22.7475 23.8281 23.0978 23.4853C23.448 23.1351 23.8653 22.8706 24.3497 22.6917C24.8341 22.5129 25.3595 22.4234 25.9258 22.4234C26.2537 22.4234 26.5518 22.4495 26.82 22.5017C27.0883 22.5464 27.3231 22.6023 27.5243 22.6694C27.7255 22.729 27.8931 22.7923 28.0273 22.8594C28.1614 22.9264 28.2583 22.9786 28.3179 23.0159L27.8149 24.4243C27.5764 24.2976 27.297 24.1896 26.9765 24.1001C26.6636 24.0107 26.3059 23.966 25.9034 23.966C25.6352 23.966 25.3706 24.0107 25.1098 24.1001C24.8564 24.1896 24.6292 24.3349 24.428 24.5361C24.2342 24.7298 24.0777 24.9832 23.9585 25.2962C23.8392 25.6092 23.7796 25.9892 23.7796 26.4363C23.7796 26.794 23.8169 27.1294 23.8914 27.4424C23.9734 27.7479 24.1001 28.0124 24.2715 28.236C24.4503 28.4596 24.6813 28.6384 24.9645 28.7725C25.2477 28.8992 25.5905 28.9626 25.9929 28.9626C26.2462 28.9626 26.4735 28.9477 26.6747 28.9178C26.8759 28.888 27.0548 28.8545 27.2113 28.8172C27.3678 28.7725 27.5056 28.7241 27.6249 28.6719C27.7441 28.6198 27.8521 28.5713 27.949 28.5266L28.4297 29.9239C28.1838 30.0729 27.8372 30.207 27.3901 30.3263C26.943 30.4455 26.4251 30.5051 25.8364 30.5051ZM31.788 30.4604C31.3036 30.453 30.9086 30.4008 30.6031 30.3039C30.305 30.207 30.0666 30.0729 29.8877 29.9015C29.7163 29.7227 29.5971 29.5103 29.53 29.2644C29.4704 29.011 29.4406 28.7278 29.4406 28.4148V21.9428L31.1061 21.6745V28.0795C31.1061 28.2285 31.1173 28.3627 31.1396 28.4819C31.162 28.6011 31.203 28.7017 31.2626 28.7837C31.3297 28.8657 31.4228 28.9328 31.542 28.9849C31.6613 29.0371 31.8215 29.0706 32.0227 29.0855L31.788 30.4604ZM32.6979 27.4088C32.6979 26.9841 32.765 26.5854 32.8991 26.2128C33.0407 25.8327 33.2419 25.5048 33.5027 25.2291C33.7636 24.9459 34.0803 24.7224 34.4529 24.5584C34.8255 24.3945 35.2502 24.3125 35.7272 24.3125C36.0401 24.3125 36.327 24.3423 36.5879 24.4019C36.8487 24.4541 37.1021 24.5323 37.348 24.6367L37.0014 25.9669C36.845 25.9072 36.6736 25.8551 36.4873 25.8104C36.301 25.7657 36.0923 25.7433 35.8613 25.7433C35.3695 25.7433 35.0006 25.8961 34.7547 26.2016C34.5162 26.5071 34.397 26.9095 34.397 27.4088C34.397 27.9379 34.5088 28.3478 34.7323 28.6384C34.9633 28.929 35.362 29.0743 35.9284 29.0743C36.1296 29.0743 36.3457 29.0557 36.5767 29.0185C36.8077 28.9812 37.0201 28.9216 37.2138 28.8396L37.4486 30.2033C37.2548 30.2853 37.0126 30.3561 36.722 30.4157C36.4314 30.4753 36.1109 30.5051 35.7607 30.5051C35.2241 30.5051 34.7621 30.4269 34.3746 30.2704C33.9871 30.1064 33.6667 29.8866 33.4133 29.6109C33.1674 29.3352 32.9848 29.011 32.8656 28.6384C32.7538 28.2583 32.6979 27.8485 32.6979 27.4088ZM40.2319 26.5928C40.3958 26.414 40.5635 26.2277 40.7349 26.0339C40.9137 25.8402 41.0851 25.6501 41.2491 25.4638C41.413 25.2701 41.5658 25.0875 41.7074 24.9161C41.8564 24.7447 41.9831 24.5957 42.0874 24.469H44.0659C43.671 24.9236 43.2835 25.3595 42.9034 25.7768C42.5308 26.1867 42.121 26.6115 41.6739 27.0511C41.8974 27.2523 42.1284 27.4945 42.3669 27.7777C42.6054 28.0534 42.8364 28.3403 43.0599 28.6384C43.2835 28.9365 43.4884 29.2346 43.6747 29.5326C43.861 29.8307 44.0175 30.1027 44.1442 30.3486H42.2328C42.1135 30.1549 41.9757 29.9425 41.8192 29.7115C41.6701 29.473 41.5099 29.2383 41.3385 29.0073C41.1671 28.7688 40.9845 28.5415 40.7908 28.3254C40.6045 28.1093 40.4182 27.9267 40.2319 27.7777V30.3486H38.5664V21.9428L40.2319 21.6745V26.5928ZM46.7274 29.1526C47.033 29.1526 47.2491 29.1228 47.3758 29.0632C47.5024 29.0035 47.5658 28.888 47.5658 28.7166C47.5658 28.5825 47.4838 28.467 47.3199 28.3701C47.1559 28.2658 46.9063 28.1503 46.5709 28.0236C46.3101 27.9267 46.0717 27.8261 45.8556 27.7218C45.6469 27.6175 45.4681 27.4945 45.319 27.3529C45.17 27.2039 45.0545 27.0288 44.9725 26.8276C44.8905 26.6264 44.8495 26.3842 44.8495 26.101C44.8495 25.5495 45.0545 25.1136 45.4643 24.7932C45.8742 24.4727 46.4368 24.3125 47.1522 24.3125C47.5099 24.3125 47.8527 24.346 48.1806 24.4131C48.5085 24.4727 48.7693 24.5398 48.963 24.6143L48.6724 25.911C48.4787 25.8439 48.2663 25.7843 48.0353 25.7321C47.8117 25.68 47.5583 25.6539 47.2752 25.6539C46.7535 25.6539 46.4927 25.7992 46.4927 26.0898C46.4927 26.1569 46.5039 26.2165 46.5262 26.2687C46.5486 26.3208 46.5933 26.373 46.6604 26.4252C46.7274 26.4699 46.8169 26.522 46.9286 26.5816C47.0479 26.6338 47.1969 26.6934 47.3758 26.7605C47.7409 26.8946 48.0427 27.0288 48.2812 27.1629C48.5196 27.2896 48.7059 27.4312 48.8401 27.5877C48.9817 27.7367 49.0785 27.9044 49.1307 28.0907C49.1903 28.277 49.2201 28.4931 49.2201 28.739C49.2201 29.3203 49.0003 29.7599 48.5606 30.058C48.1284 30.3561 47.5136 30.5051 46.7163 30.5051C46.1946 30.5051 45.7587 30.4604 45.4084 30.371C45.0656 30.2816 44.8272 30.207 44.693 30.1474L44.9725 28.7949C45.2557 28.9067 45.5463 28.9961 45.8444 29.0632C46.1425 29.1228 46.4368 29.1526 46.7274 29.1526Z" fill="#4A4A4A"/>
-<path d="M7.13743 35.2584L7.13379 17.3467L12.4258 29.9283L7.13743 35.2584Z" fill="#C4C4C4"/>
-<path d="M19.9326 29.7854L7.13379 17.3467L12.4258 29.9283L19.9326 29.7854Z" fill="#8D8D8D"/>
-<defs>
-<linearGradient id="paint0_linear" x1="52.81" y1="0" x2="0" y2="52.81" gradientUnits="userSpaceOnUse">
-<stop stop-color="#78ECF2"/>
-<stop offset="1" stop-color="#71AFE5"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Icons/CMP.svg b/public/Icons/CMP.svg
deleted file mode 100644
index 43e00c5..0000000
--- a/public/Icons/CMP.svg
+++ /dev/null
@@ -1,57 +0,0 @@
-<svg width="75" height="75" viewBox="0 0 75 75" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<rect width="75" height="75" rx="37.5" fill="url(#paint0_linear)"/>
-<g filter="url(#filter0_d)">
-<path d="M15.6183 1.00756C18.0956 2.8301 19.3903 4.47675 19.3903 9.04589C19.3903 19.3678 16.2186 19.9485 21.5208 34.8381C25.7626 46.7499 27.211 49.1637 27.4049 48.8816" stroke="black" stroke-width="0.732422" stroke-linecap="round" stroke-linejoin="bevel"/>
-<g filter="url(#filter1_i)">
-<path d="M21.5605 35.1094L18.115 36.3502C14.3092 37.7207 12.3351 41.9169 13.7056 45.7227L20.5299 64.673C22.5857 70.3817 28.8801 73.343 34.5888 71.2872V71.2872L21.5605 35.1094Z" fill="#C4C4C4"/>
-<path d="M34.379 38.2797C33.0085 34.4739 28.8123 32.4997 25.0065 33.8702L21.5609 35.111L34.5892 71.2888V71.2888C40.2979 69.233 43.2591 62.9387 41.2033 57.23L34.379 38.2797Z" fill="#8D8D8D"/>
-<g filter="url(#filter2_i)">
-<rect width="4.24805" height="10.6201" rx="0.549316" transform="matrix(-0.940853 0.338816 0.338816 0.940853 25.4819 39.7305)" fill="#424242"/>
-</g>
-</g>
-</g>
-<path d="M29.9095 18.1973C28.2591 18.1973 26.9993 17.7383 26.1302 16.8203C25.2708 15.9023 24.8411 14.5986 24.8411 12.9092C24.8411 12.0693 24.973 11.3223 25.2366 10.668C25.5003 10.0039 25.8616 9.44726 26.3206 8.99805C26.7796 8.53906 27.3265 8.19238 27.9612 7.95801C28.596 7.72363 29.2845 7.60644 30.0267 7.60644C30.4564 7.60644 30.847 7.64062 31.1985 7.70898C31.5501 7.76758 31.8577 7.84082 32.1214 7.92871C32.3851 8.00683 32.6048 8.08984 32.7806 8.17773C32.9564 8.26562 33.0833 8.33398 33.1614 8.38281L32.5022 10.2285C32.1897 10.0625 31.8235 9.9209 31.4036 9.80371C30.9935 9.68652 30.5247 9.62793 29.9974 9.62793C29.6458 9.62793 29.2991 9.68652 28.9573 9.80371C28.6253 9.9209 28.3274 10.1113 28.0638 10.375C27.8099 10.6289 27.6048 10.9609 27.4485 11.3711C27.2923 11.7812 27.2142 12.2793 27.2142 12.8652C27.2142 13.334 27.263 13.7734 27.3606 14.1836C27.4681 14.584 27.6341 14.9307 27.8587 15.2236C28.0931 15.5166 28.3958 15.751 28.7669 15.9268C29.138 16.0928 29.5872 16.1758 30.1146 16.1758C30.4466 16.1758 30.7444 16.1562 31.0081 16.1172C31.2718 16.0781 31.5062 16.0342 31.7112 15.9854C31.9163 15.9268 32.097 15.8633 32.2532 15.7949C32.4095 15.7266 32.5511 15.6631 32.678 15.6045L33.3079 17.4355C32.9856 17.6309 32.5315 17.8066 31.9456 17.9629C31.3597 18.1191 30.681 18.1973 29.9095 18.1973ZM37.7089 18.1387C37.0741 18.1289 36.5565 18.0605 36.1561 17.9336C35.7655 17.8066 35.453 17.6309 35.2186 17.4062C34.994 17.1719 34.8378 16.8936 34.7499 16.5713C34.6717 16.2393 34.6327 15.8682 34.6327 15.458V6.97656L36.8153 6.625V15.0186C36.8153 15.2139 36.8299 15.3896 36.8592 15.5459C36.8885 15.7021 36.9423 15.834 37.0204 15.9414C37.1083 16.0488 37.2303 16.1367 37.3866 16.2051C37.5428 16.2734 37.7528 16.3174 38.0165 16.3369L37.7089 18.1387ZM41.4502 17.9922H39.2675V10.2871H41.4502V17.9922ZM41.6552 8.06055C41.6552 8.46094 41.5234 8.77832 41.2597 9.01269C41.0058 9.2373 40.7031 9.34961 40.3515 9.34961C40 9.34961 39.6923 9.2373 39.4287 9.01269C39.1748 8.77832 39.0478 8.46094 39.0478 8.06055C39.0478 7.66016 39.1748 7.34765 39.4287 7.12305C39.6923 6.88867 40 6.77148 40.3515 6.77148C40.7031 6.77148 41.0058 6.88867 41.2597 7.12305C41.5234 7.34765 41.6552 7.66016 41.6552 8.06055ZM43.1356 14.1396C43.1356 13.583 43.2235 13.0605 43.3993 12.5723C43.5849 12.0742 43.8485 11.6445 44.1903 11.2832C44.5321 10.9121 44.9472 10.6191 45.4354 10.4043C45.9237 10.1895 46.4804 10.082 47.1054 10.082C47.5155 10.082 47.8915 10.1211 48.2333 10.1992C48.5751 10.2676 48.9071 10.3701 49.2294 10.5068L48.7753 12.25C48.5702 12.1719 48.3456 12.1035 48.1015 12.0449C47.8573 11.9863 47.5839 11.957 47.2812 11.957C46.6366 11.957 46.1532 12.1572 45.831 12.5576C45.5185 12.958 45.3622 13.4854 45.3622 14.1396C45.3622 14.833 45.5087 15.3701 45.8017 15.751C46.1044 16.1318 46.6269 16.3223 47.369 16.3223C47.6327 16.3223 47.9159 16.2979 48.2187 16.249C48.5214 16.2002 48.7997 16.1221 49.0536 16.0146L49.3612 17.8018C49.1073 17.9092 48.7899 18.002 48.4091 18.0801C48.0282 18.1582 47.6083 18.1973 47.1493 18.1973C46.4462 18.1973 45.8407 18.0947 45.3329 17.8896C44.8251 17.6748 44.4052 17.3867 44.0731 17.0254C43.7509 16.6641 43.5116 16.2393 43.3554 15.751C43.2089 15.2529 43.1356 14.7158 43.1356 14.1396ZM53.0087 13.0703C53.2235 12.8359 53.4433 12.5918 53.6679 12.3379C53.9022 12.084 54.1269 11.835 54.3417 11.5908C54.5565 11.3369 54.7567 11.0977 54.9423 10.873C55.1376 10.6484 55.3036 10.4531 55.4403 10.2871H58.0331C57.5155 10.8828 57.0077 11.4541 56.5097 12.001C56.0214 12.5381 55.4843 13.0947 54.8983 13.6709C55.1913 13.9346 55.494 14.252 55.8065 14.623C56.119 14.9844 56.4218 15.3604 56.7147 15.751C57.0077 16.1416 57.2763 16.5322 57.5204 16.9229C57.7646 17.3135 57.9696 17.6699 58.1356 17.9922H55.6308C55.4745 17.7383 55.2938 17.46 55.0888 17.1572C54.8935 16.8447 54.6835 16.5371 54.4589 16.2344C54.2343 15.9219 53.995 15.624 53.7411 15.3408C53.497 15.0576 53.2528 14.8184 53.0087 14.623V17.9922H50.8261V6.97656L53.0087 6.625V13.0703ZM61.5209 16.4248C61.9213 16.4248 62.2045 16.3857 62.3705 16.3076C62.5365 16.2295 62.6196 16.0781 62.6196 15.8535C62.6196 15.6777 62.5121 15.5264 62.2973 15.3994C62.0824 15.2627 61.7553 15.1113 61.3158 14.9453C60.974 14.8184 60.6615 14.6865 60.3783 14.5498C60.1049 14.4131 59.8705 14.252 59.6752 14.0664C59.4799 13.8711 59.3285 13.6416 59.2211 13.3779C59.1137 13.1143 59.06 12.7969 59.06 12.4258C59.06 11.7031 59.3285 11.1318 59.8656 10.7119C60.4028 10.292 61.1401 10.082 62.0776 10.082C62.5463 10.082 62.9955 10.126 63.4252 10.2139C63.8549 10.292 64.1967 10.3799 64.4506 10.4775L64.0697 12.1768C63.8158 12.0889 63.5375 12.0107 63.2348 11.9424C62.9418 11.874 62.6098 11.8398 62.2387 11.8398C61.5551 11.8398 61.2133 12.0303 61.2133 12.4111C61.2133 12.499 61.228 12.5771 61.2572 12.6455C61.2865 12.7139 61.3451 12.7822 61.433 12.8506C61.5209 12.9092 61.6381 12.9775 61.7846 13.0557C61.9408 13.124 62.1362 13.2021 62.3705 13.29C62.849 13.4658 63.2446 13.6416 63.5571 13.8174C63.8696 13.9834 64.1137 14.1689 64.2895 14.374C64.475 14.5693 64.602 14.7891 64.6703 15.0332C64.7485 15.2773 64.7875 15.5605 64.7875 15.8828C64.7875 16.6445 64.4994 17.2207 63.9233 17.6113C63.3569 18.002 62.5512 18.1973 61.5063 18.1973C60.8227 18.1973 60.2514 18.1387 59.7924 18.0215C59.3432 17.9043 59.0307 17.8066 58.8549 17.7285L59.2211 15.9561C59.5922 16.1025 59.9731 16.2197 60.3637 16.3076C60.7543 16.3857 61.1401 16.4248 61.5209 16.4248Z" fill="#4A4A4A"/>
-<path d="M27.2416 21.3947C27.3884 21.6638 27.5555 21.9981 27.7431 22.3977C27.9388 22.7891 28.1386 23.2172 28.3424 23.682C28.5544 24.1386 28.7624 24.6075 28.9662 25.0886C29.1701 25.5697 29.3617 26.0223 29.5411 26.4463C29.7205 26.0223 29.9121 25.5697 30.116 25.0886C30.3198 24.6075 30.5237 24.1386 30.7276 23.682C30.9396 23.2172 31.1393 22.7891 31.3269 22.3977C31.5226 21.9981 31.6938 21.6638 31.8406 21.3947H33.5775C33.659 21.9573 33.7324 22.5893 33.7977 23.2906C33.871 23.9837 33.9322 24.7094 33.9811 25.4678C34.0382 26.218 34.0871 26.9722 34.1279 27.7306C34.1768 28.4889 34.2176 29.2024 34.2502 29.8711H32.391C32.3666 29.0475 32.334 28.1505 32.2932 27.1802C32.2524 26.2098 32.1913 25.2313 32.1097 24.2446C31.9629 24.5871 31.7998 24.9663 31.6205 25.3822C31.4411 25.798 31.2617 26.2139 31.0823 26.6298C30.911 27.0456 30.7439 27.4452 30.5808 27.8284C30.4177 28.2035 30.2791 28.5256 30.1649 28.7947H28.8317C28.7175 28.5256 28.5789 28.2035 28.4158 27.8284C28.2527 27.4452 28.0815 27.0456 27.9021 26.6298C27.7309 26.2139 27.5555 25.798 27.3761 25.3822C27.1967 24.9663 27.0337 24.5871 26.8869 24.2446C26.8053 25.2313 26.7442 26.2098 26.7034 27.1802C26.6626 28.1505 26.63 29.0475 26.6056 29.8711H24.7464C24.779 29.2024 24.8157 28.4889 24.8565 27.7306C24.9054 26.9722 24.9543 26.218 25.0032 25.4678C25.0603 24.7094 25.1215 23.9837 25.1867 23.2906C25.2601 22.5893 25.3376 21.9573 25.4191 21.3947H27.2416ZM37.6684 29.8711H35.8459V23.4374H37.6684V29.8711ZM37.8397 21.5782C37.8397 21.9125 37.7296 22.1775 37.5094 22.3732C37.2974 22.5608 37.0446 22.6545 36.7511 22.6545C36.4575 22.6545 36.2007 22.5608 35.9805 22.3732C35.7685 22.1775 35.6625 21.9125 35.6625 21.5782C35.6625 21.2438 35.7685 20.9829 35.9805 20.7954C36.2007 20.5997 36.4575 20.5018 36.7511 20.5018C37.0446 20.5018 37.2974 20.5997 37.5094 20.7954C37.7296 20.9829 37.8397 21.2438 37.8397 21.5782ZM39.3816 23.6575C39.6915 23.5678 40.091 23.4863 40.5803 23.4129C41.0695 23.3313 41.5833 23.2906 42.1214 23.2906C42.6678 23.2906 43.1203 23.364 43.4791 23.5107C43.8461 23.6494 44.1355 23.8491 44.3476 24.1101C44.5596 24.371 44.7104 24.6809 44.8001 25.0397C44.8898 25.3985 44.9347 25.798 44.9347 26.2384V29.8711H43.1122V26.4585C43.1122 25.8714 43.0347 25.4555 42.8798 25.2109C42.7249 24.9663 42.4354 24.844 42.0114 24.844C41.8809 24.844 41.7423 24.8521 41.5955 24.8684C41.4487 24.8766 41.3182 24.8888 41.2041 24.9051V29.8711H39.3816V23.6575ZM52.0762 29.6509C51.7663 29.7406 51.3668 29.8222 50.8775 29.8956C50.3883 29.9771 49.8745 30.0179 49.3364 30.0179C48.79 30.0179 48.3334 29.9445 47.9664 29.7977C47.6077 29.6509 47.3223 29.4471 47.1102 29.1861C46.8982 28.917 46.7474 28.599 46.6577 28.2321C46.568 27.8651 46.5231 27.4615 46.5231 27.0212V23.4374H48.3456V26.801C48.3456 27.3881 48.4231 27.8121 48.578 28.0731C48.7329 28.334 49.0224 28.4645 49.4464 28.4645C49.5769 28.4645 49.7155 28.4604 49.8623 28.4522C50.0091 28.4359 50.1396 28.4196 50.2537 28.4033V23.4374H52.0762V29.6509ZM53.7258 21.835L55.5483 21.5415V23.4374H57.7377V24.9541H55.5483V27.2169C55.5483 27.6001 55.6136 27.9059 55.744 28.1342C55.8826 28.3625 56.1558 28.4767 56.5635 28.4767C56.7592 28.4767 56.959 28.4604 57.1629 28.4278C57.3749 28.387 57.5665 28.334 57.7377 28.2688L57.9946 29.6876C57.7744 29.7773 57.5298 29.8548 57.2607 29.92C56.9916 29.9853 56.6614 30.0179 56.27 30.0179C55.7726 30.0179 55.3608 29.9526 55.0346 29.8222C54.7084 29.6835 54.4475 29.496 54.2518 29.2595C54.0561 29.0149 53.9175 28.7213 53.8359 28.3789C53.7625 28.0364 53.7258 27.6572 53.7258 27.2413V21.835ZM58.6772 26.7031C58.6772 26.1323 58.7628 25.6349 58.934 25.2109C59.1134 24.7787 59.3458 24.4199 59.6312 24.1345C59.9166 23.8491 60.2428 23.6331 60.6097 23.4863C60.9848 23.3395 61.3681 23.2661 61.7595 23.2661C62.6728 23.2661 63.3944 23.5474 63.9245 24.1101C64.4545 24.6646 64.7195 25.4841 64.7195 26.5686C64.7195 26.6746 64.7154 26.7928 64.7073 26.9233C64.6991 27.0456 64.691 27.1557 64.6828 27.2536H60.5486C60.5894 27.6287 60.7647 27.9263 61.0745 28.1465C61.3844 28.3666 61.8003 28.4767 62.3221 28.4767C62.6565 28.4767 62.9826 28.4482 63.3007 28.3911C63.6268 28.3259 63.8919 28.2484 64.0957 28.1587L64.3403 29.6387C64.2425 29.6876 64.112 29.7365 63.9489 29.7855C63.7858 29.8344 63.6024 29.8752 63.3985 29.9078C63.2028 29.9486 62.9908 29.9812 62.7625 30.0056C62.5342 30.0301 62.3058 30.0423 62.0775 30.0423C61.4986 30.0423 60.993 29.9567 60.5608 29.7855C60.1368 29.6142 59.7821 29.3818 59.4967 29.0883C59.2194 28.7866 59.0115 28.4319 58.8729 28.0241C58.7424 27.6164 58.6772 27.1761 58.6772 26.7031ZM62.9582 26.006C62.95 25.851 62.9215 25.7002 62.8726 25.5534C62.8318 25.4066 62.7625 25.2761 62.6646 25.162C62.5749 25.0478 62.4567 24.9541 62.3099 24.8807C62.1713 24.8073 61.996 24.7706 61.784 24.7706C61.5801 24.7706 61.4048 24.8073 61.258 24.8807C61.1112 24.9459 60.9889 25.0356 60.8911 25.1498C60.7932 25.2639 60.7158 25.3985 60.6587 25.5534C60.6097 25.7002 60.5731 25.851 60.5486 26.006H62.9582Z" fill="#4A4A4A"/>
-<path d="M45.6773 33.1748C47.1909 33.1748 48.353 33.4434 49.1636 33.9805C49.9741 34.5078 50.3794 35.377 50.3794 36.5879C50.3794 37.8086 49.9693 38.6924 49.1489 39.2393C48.3286 39.7764 47.1568 40.0449 45.6333 40.0449H44.9155V43.4434H42.6304V33.4385C43.1284 33.3408 43.6558 33.2725 44.2124 33.2334C44.7691 33.1943 45.2573 33.1748 45.6773 33.1748ZM45.8237 35.123C45.6577 35.123 45.4917 35.1279 45.3257 35.1377C45.1694 35.1475 45.0327 35.1572 44.9155 35.167V38.0967H45.6333C46.4243 38.0967 47.02 37.9893 47.4204 37.7744C47.8208 37.5596 48.021 37.1592 48.021 36.5732C48.021 36.29 47.9673 36.0557 47.8599 35.8701C47.7622 35.6846 47.6157 35.5381 47.4204 35.4307C47.2349 35.3135 47.0054 35.2354 46.7319 35.1963C46.4585 35.1475 46.1558 35.123 45.8237 35.123ZM51.3302 39.6494C51.3302 38.9658 51.4327 38.3701 51.6378 37.8623C51.8526 37.3447 52.131 36.915 52.4728 36.5732C52.8146 36.2314 53.2052 35.9727 53.6446 35.7969C54.0939 35.6211 54.5528 35.5332 55.0216 35.5332C56.1153 35.5332 56.9796 35.8701 57.6144 36.5439C58.2491 37.208 58.5665 38.1895 58.5665 39.4883C58.5665 39.6152 58.5616 39.7568 58.5519 39.9131C58.5421 40.0596 58.5323 40.1914 58.5226 40.3086H53.5714C53.6202 40.7578 53.8302 41.1143 54.2013 41.3779C54.5724 41.6416 55.0704 41.7734 55.6954 41.7734C56.0958 41.7734 56.4864 41.7393 56.8673 41.6709C57.2579 41.5928 57.5753 41.5 57.8194 41.3926L58.1124 43.165C57.9952 43.2236 57.839 43.2822 57.6437 43.3408C57.4483 43.3994 57.2286 43.4482 56.9845 43.4873C56.7501 43.5361 56.4962 43.5752 56.2228 43.6045C55.9493 43.6338 55.6759 43.6484 55.4025 43.6484C54.7091 43.6484 54.1036 43.5459 53.586 43.3408C53.0782 43.1357 52.6534 42.8574 52.3116 42.5059C51.9796 42.1445 51.7306 41.7197 51.5646 41.2314C51.4083 40.7432 51.3302 40.2158 51.3302 39.6494ZM56.4571 38.8145C56.4474 38.6289 56.4132 38.4482 56.3546 38.2725C56.3058 38.0967 56.2228 37.9404 56.1056 37.8037C55.9982 37.667 55.8566 37.5547 55.6808 37.4668C55.5148 37.3789 55.3048 37.335 55.0509 37.335C54.8067 37.335 54.5968 37.3789 54.421 37.4668C54.2452 37.5449 54.0987 37.6523 53.9816 37.7891C53.8644 37.9258 53.7716 38.0869 53.7032 38.2725C53.6446 38.4482 53.6007 38.6289 53.5714 38.8145H56.4571ZM64.8944 37.6719C64.6991 37.623 64.4696 37.5742 64.2059 37.5254C63.9423 37.4668 63.6591 37.4375 63.3563 37.4375C63.2196 37.4375 63.0536 37.4521 62.8583 37.4814C62.6727 37.501 62.5311 37.5254 62.4335 37.5547V43.4434H60.2509V36.1484C60.6415 36.0117 61.1005 35.8848 61.6278 35.7676C62.1649 35.6406 62.7606 35.5771 63.4149 35.5771C63.5321 35.5771 63.6737 35.5869 63.8397 35.6064C64.0057 35.6162 64.1718 35.6357 64.3378 35.665C64.5038 35.6846 64.6698 35.7139 64.8358 35.7529C65.0018 35.7822 65.1434 35.8213 65.2606 35.8701L64.8944 37.6719Z" fill="#4A4A4A"/>
-</g>
-<defs>
-<filter id="filter0_d" x="12.6846" y="0.0556641" width="30.9295" height="76.713" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="0.585938" dy="0.585938"/>
-<feGaussianBlur stdDeviation="0.585938"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.3625 0 0 0 0 0.3625 0 0 0 0 0.3625 0 0 0 0.2 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_i" x="13.2705" y="33.4346" width="28.8787" height="41.8693" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="0.292969" dy="0.292969"/>
-<feGaussianBlur stdDeviation="0.292969"/>
-<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.975 0 0 0 0 0.975 0 0 0 0 0.975 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="shape" result="effect1_innerShadow"/>
-</filter>
-<filter id="filter2_i" x="21.6387" y="39.8838" width="7.43458" height="11.4173" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="0.146484" dy="0.292969"/>
-<feGaussianBlur stdDeviation="0.292969"/>
-<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.816667 0 0 0 0 0.816667 0 0 0 0 0.816667 0 0 0 0.2 0"/>
-<feBlend mode="normal" in2="shape" result="effect1_innerShadow"/>
-</filter>
-<linearGradient id="paint0_linear" x1="75" y1="0" x2="0" y2="75" gradientUnits="userSpaceOnUse">
-<stop stop-color="#71AFE5"/>
-<stop offset="1" stop-color="#78ECF2"/>
-<stop offset="1" stop-color="#78ECF2"/>
-</linearGradient>
-<clipPath id="clip0">
-<rect width="75" height="75" rx="37.5" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Icons/DS.svg b/public/Icons/DS.svg
deleted file mode 100644
index 6e7afeb..0000000
--- a/public/Icons/DS.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M81.4215 17.856C75.3665 15.0777 68.8735 13.0308 62.0846 11.8584C61.961 11.8358 61.8375 11.8924 61.7738 12.0054C60.9387 13.4907 60.0137 15.4283 59.366 16.9512C52.0641 15.858 44.7997 15.858 37.6475 16.9512C36.9996 15.3944 36.0411 13.4907 35.2023 12.0054C35.1386 11.8961 35.0151 11.8396 34.8915 11.8584C28.1063 13.027 21.6133 15.074 15.5545 17.856C15.5021 17.8786 15.4571 17.9163 15.4273 17.9653C3.11134 36.3651 -0.262511 54.3126 1.39259 72.0376C1.40008 72.1243 1.44876 72.2072 1.51616 72.2599C9.64187 78.2273 17.513 81.85 25.238 84.2512C25.3616 84.289 25.4926 84.2437 25.5713 84.1419C27.3986 81.6465 29.0275 79.0152 30.4242 76.2482C30.5066 76.0862 30.4279 75.8939 30.2595 75.8298C27.6757 74.8497 25.2155 73.6547 22.8489 72.2977C22.6617 72.1884 22.6468 71.9206 22.819 71.7924C23.317 71.4193 23.8151 71.031 24.2907 70.6389C24.3767 70.5673 24.4966 70.5522 24.5977 70.5974C40.1451 77.6958 56.9769 77.6958 72.3409 70.5974C72.442 70.5485 72.5619 70.5636 72.6517 70.6352C73.1273 71.0272 73.6254 71.4193 74.1271 71.7924C74.2993 71.9206 74.2881 72.1884 74.1009 72.2977C71.7343 73.6811 69.2741 74.8497 66.6866 75.8261C66.5182 75.8902 66.4432 76.0862 66.5257 76.2482C67.9523 79.0114 69.5812 81.6426 71.3748 84.1382C71.4497 84.2437 71.5845 84.289 71.7081 84.2512C79.4705 81.85 87.3416 78.2273 95.4673 72.2599C95.5385 72.2072 95.5835 72.128 95.591 72.0413C97.5718 51.5493 92.2732 33.7489 81.545 17.969C81.5188 17.9163 81.474 17.8786 81.4215 17.856ZM32.7459 61.2449C28.0651 61.2449 24.2082 56.9475 24.2082 51.67C24.2082 46.3924 27.9903 42.095 32.7459 42.095C37.5389 42.095 41.3584 46.4301 41.2835 51.67C41.2835 56.9475 37.5014 61.2449 32.7459 61.2449ZM64.3125 61.2449C59.6319 61.2449 55.775 56.9475 55.775 51.67C55.775 46.3924 59.5569 42.095 64.3125 42.095C69.1056 42.095 72.925 46.4301 72.8502 51.67C72.8502 56.9475 69.1056 61.2449 64.3125 61.2449Z" fill="#5865F2"/>
-</svg>
diff --git a/public/Icons/GH.svg b/public/Icons/GH.svg
deleted file mode 100644
index 6507a6d..0000000
--- a/public/Icons/GH.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect width="100" height="100" rx="50" fill="white"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M50.5 7C25.9137 7 6 26.7292 6 51.0876C6 70.5964 18.7381 87.0742 36.4269 92.9158C38.6519 93.3015 39.4862 91.9789 39.4862 90.8216C39.4862 89.7745 39.4306 86.3026 39.4306 82.6103C28.25 84.6493 25.3575 79.9099 24.4675 77.43C23.9669 76.1625 21.7975 72.2497 19.9062 71.2026C18.3487 70.376 16.1237 68.3369 19.8506 68.2818C23.355 68.2267 25.8581 71.4782 26.6925 72.8008C30.6975 79.469 37.0944 77.5953 39.6531 76.438C40.0425 73.5723 41.2106 71.6435 42.49 70.5413C32.5887 69.4391 22.2425 65.6366 22.2425 48.773C22.2425 43.9785 23.9669 40.0106 26.8038 36.9245C26.3588 35.8223 24.8012 31.3033 27.2487 25.2413C27.2487 25.2413 30.9756 24.084 39.4862 29.7602C43.0462 28.7683 46.8288 28.2723 50.6113 28.2723C54.3938 28.2723 58.1763 28.7683 61.7363 29.7602C70.2469 24.0288 73.9738 25.2413 73.9738 25.2413C76.4213 31.3033 74.8638 35.8223 74.4188 36.9245C77.2556 40.0106 78.98 43.9234 78.98 48.773C78.98 65.6917 68.5781 69.4391 58.6769 70.5413C60.29 71.919 61.6806 74.5643 61.6806 78.6975C61.6806 84.5942 61.625 89.3337 61.625 90.8216C61.625 91.9789 62.4594 93.3567 64.6844 92.9158C82.2619 87.0742 95 70.5413 95 51.0876C95 26.7292 75.0863 7 50.5 7Z" fill="#1B1F23"/>
-</svg>
diff --git a/public/Icons/GPS/cards.svg b/public/Icons/GPS/cards.svg
deleted file mode 100644
index 1425217..0000000
--- a/public/Icons/GPS/cards.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path d="M88.5 188.5V179.5H159.5V67.5H168.5V188.5L88.5 188.5Z" fill="#775EBF"/>
-<path d="M108.5 208.5V199.5H179.5V87.5H188.5L188.5 208.5L108.5 208.5Z" fill="#775EBF"/>
-<path d="M68.5 168.5L68.5 47.5H148.5V168.5H68.5Z" fill="#775EBF"/>
-<path fill-rule="evenodd" clip-rule="evenodd" d="M0 50C0 22.386 22.386 0 50 0H206C233.614 0 256 22.386 256 50V206C256 233.614 233.614 256 206 256H50C22.386 256 0 233.614 0 206V50ZM57.5 36.5L57.5 179.5L77.5 179.5V199.5L97.5 199.5V219.5L199.5 219.5L199.5 76.5H179.5V56.5H159.5V36.5H57.5Z" fill="#775EBF"/>
-</svg>
diff --git a/public/Icons/GPS/customisation.svg b/public/Icons/GPS/customisation.svg
deleted file mode 100644
index 265aff5..0000000
--- a/public/Icons/GPS/customisation.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M50 0C22.386 0 0 22.386 0 50V206C0 233.614 22.386 256 50 256H206C233.614 256 256 233.614 256 206V50C256 22.386 233.614 0 206 0H50ZM221.364 106.6C215.143 106.6 209.818 102.342 207.543 96.5534C206.334 93.4805 204.955 90.4945 203.413 87.6092C200.71 82.552 201.187 76.2106 205.241 72.1545C209.858 67.534 209.857 60.0458 205.238 55.427L200.561 50.7505C195.944 46.1332 188.457 46.1345 183.842 50.7534C179.793 54.8045 173.461 55.2873 168.41 52.5884C165.515 51.0415 162.52 49.6585 159.437 48.4467C153.652 46.1729 149.4 40.8507 149.4 34.635C149.4 27.1046 143.295 21 135.765 21H120.235C112.705 21 106.6 27.1045 106.6 34.6348C106.6 40.8556 102.341 46.1801 96.5507 48.4542C93.4774 49.6613 90.4922 51.0396 87.6076 52.5819C82.5516 55.2852 76.2101 54.8101 72.156 50.756C67.5411 46.1411 60.0589 46.1411 55.444 50.756L50.756 55.444C46.1411 60.0589 46.1411 67.5411 50.756 72.156C54.8101 76.2101 55.2852 82.5516 52.5819 87.6076C51.0396 90.4922 49.6613 93.4774 48.4542 96.5507C46.1801 102.341 40.8556 106.6 34.6349 106.6C27.1045 106.6 21 112.705 21 120.235V135.765C21 143.295 27.1045 149.4 34.6348 149.4C40.8556 149.4 46.1805 153.659 48.4555 159.449C49.6634 162.523 51.0425 165.509 52.5842 168.393C55.287 173.448 54.8107 179.789 50.757 183.843C46.1415 188.458 46.1415 195.942 50.757 200.557L55.4383 205.238C60.0563 209.856 67.5437 209.856 72.1617 205.238C76.2139 201.186 82.5507 200.706 87.6045 203.408C90.4921 204.952 93.4794 206.332 96.5537 207.542C102.342 209.818 106.6 215.143 106.6 221.364C106.6 228.895 112.705 235 120.236 235H135.765C143.295 235 149.4 228.895 149.4 221.365C149.4 215.144 153.659 209.819 159.448 207.543C162.528 206.332 165.519 204.949 168.411 203.403C173.461 200.702 179.793 201.185 183.842 205.236C188.457 209.855 195.944 209.856 200.561 205.239L205.244 200.556C209.859 195.941 209.86 188.458 205.246 183.841C201.196 179.787 200.719 173.45 203.419 168.396C204.963 165.505 206.343 162.514 207.553 159.435C209.826 153.651 215.148 149.4 221.363 149.4C228.895 149.4 235 143.295 235 135.763V120.236C235 112.705 228.895 106.6 221.364 106.6ZM170.8 128C170.8 151.637 151.637 170.8 128 170.8C104.362 170.8 85.2 151.637 85.2 128C85.2 104.362 104.362 85.2 128 85.2C151.637 85.2 170.8 104.362 170.8 128Z" fill="#8D8D8D"/>
-</svg>
diff --git a/public/Icons/GPS/players.svg b/public/Icons/GPS/players.svg
deleted file mode 100644
index 4746ae7..0000000
--- a/public/Icons/GPS/players.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M50 0C22.3858 0 0 22.386 0 50V206C0 233.61 22.3858 256 50 256H206C233.614 256 256 233.61 256 206V50C256 22.386 233.614 0 206 0H50ZM176.471 192.76C162.793 202.42 146.102 208.09 128.087 208.09C110.044 208.09 93.3302 202.4 79.6405 192.72C80.7657 183.89 85.6834 175.59 93.6448 169.25C102.77 162 115.148 157.92 128.053 157.92C140.959 157.92 153.336 162 162.461 169.25C170.436 175.6 175.357 183.91 176.471 192.76ZM186.82 184.14C184.084 175.99 178.691 168.48 171.063 162.41C159.656 153.34 144.185 148.24 128.053 148.24C111.921 148.24 96.4498 153.34 85.0428 162.41C77.4302 168.47 72.0438 175.96 69.3027 184.09C53.7417 168.84 44.0864 147.59 44.0864 124.09C44.0864 77.695 81.6946 40.086 128.087 40.086C174.479 40.086 212.087 77.695 212.087 124.09C212.087 147.62 202.411 168.89 186.82 184.14ZM224.173 124.09C224.173 177.15 181.154 220.17 128.087 220.17C75.0195 220.17 32 177.15 32 124.09C32 71.019 75.0195 28 128.087 28C181.154 28 224.173 71.019 224.173 124.09ZM128.053 123.62C141.115 123.62 151.576 113.12 151.576 100.33C151.576 87.542 141.115 77.045 128.053 77.045C114.991 77.045 104.53 87.542 104.53 100.33C104.53 113.12 114.991 123.62 128.053 123.62ZM128.053 134.62C147.119 134.62 162.576 119.27 162.576 100.33C162.576 81.397 147.119 66.045 128.053 66.045C108.987 66.045 93.5302 81.397 93.5302 100.33C93.5302 119.27 108.987 134.62 128.053 134.62Z" fill="#6576CC"/>
-</svg>
diff --git a/public/Icons/GPS/shuffles.svg b/public/Icons/GPS/shuffles.svg
deleted file mode 100644
index 416c14e..0000000
--- a/public/Icons/GPS/shuffles.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M50 0C22.386 0 0 22.386 0 50V206C0 233.614 22.386 256 50 256H206C233.614 256 256 233.614 256 206V50C256 22.386 233.614 0 206 0H50ZM208.901 159.793H188.445C162.62 159.793 147.694 144.809 134.096 128C147.694 111.191 162.62 96.2065 188.445 96.2065H208.901V115.283L235 89.1413L208.901 63V82.0761L179.275 82.0761C152.801 82.0761 137.781 97.8226 123.904 115.14C110.026 97.8226 95.0065 82.0762 68.5319 82.0761L29.032 82.0761C25.1363 82.0761 22 85.2393 22 89.1413C22 93.0434 25.1404 96.2066 29.0361 96.2066H59.362C85.1878 96.2066 100.113 111.191 113.711 128C100.113 144.809 85.1878 159.793 59.362 159.793H29.0361C25.1404 159.793 22 162.957 22 166.859C22 170.761 25.1363 173.924 29.032 173.924L68.5319 173.924C95.0065 173.924 110.026 158.177 123.904 140.86C137.781 158.177 152.801 173.924 179.275 173.924L208.901 173.924V193L235 166.859L208.901 140.717V159.793Z" fill="#71AFE5"/>
-</svg>
diff --git a/public/Icons/GPS/time.svg b/public/Icons/GPS/time.svg
deleted file mode 100644
index 51ba8fb..0000000
--- a/public/Icons/GPS/time.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M0 50C0 22.386 22.386 0 50 0H206C233.614 0 256 22.386 256 50V206C256 233.614 233.614 256 206 256H50C22.386 256 0 233.614 0 206V50ZM59.5839 167.5C81.3992 205.285 129.715 218.231 167.5 196.416C205.285 174.601 218.231 126.285 196.416 88.4999C174.601 50.7148 126.285 37.7687 88.4999 59.5839C50.7148 81.3992 37.7687 129.715 59.5839 167.5ZM42.2634 177.5C69.6015 224.851 130.149 241.075 177.5 213.736C224.851 186.398 241.075 125.851 213.736 78.4999C210.836 73.476 207.561 68.8024 203.969 64.4941C204.088 64.3992 204.204 64.2965 204.314 64.1859L209.724 58.7764C211.286 57.2143 211.286 54.6817 209.724 53.1196L201.238 44.6343C199.676 43.0722 197.144 43.0722 195.581 44.6343L190.172 50.0438C190.007 50.2086 189.86 50.3841 189.73 50.5682C174.774 38.652 156.742 31.4174 138 29.499V24C138 21.7909 136.209 20 134 20H122C119.791 20 118 21.7909 118 24V29.4817C104.483 30.8458 91.0292 35.0296 78.4999 42.2634C31.149 69.6015 14.9253 130.149 42.2634 177.5ZM180.828 97.4999C178.066 92.717 171.95 91.0783 167.167 93.8397L123 119.34C118.217 122.101 116.578 128.217 119.34 133C122.101 137.783 128.217 139.422 133 136.66L177.167 111.16C181.95 108.399 183.589 102.283 180.828 97.4999Z" fill="#F27878"/>
-</svg>
diff --git a/public/Icons/GS.svg b/public/Icons/GS.svg
deleted file mode 100644
index a335c3c..0000000
--- a/public/Icons/GS.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-<svg width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect width="52.8" height="52.8" rx="26.4" fill="url(#paint0_linear)"/>
-<g filter="url(#filter0_d)">
-<rect x="14.1191" y="8.27246" width="22.9122" height="34.4231" rx="0.386719" fill="#424242"/>
-</g>
-<g filter="url(#filter1_d)">
-<rect x="15.7695" y="10.1035" width="22.9122" height="34.4231" rx="0.386719" fill="#C4C4C4"/>
-</g>
-<path d="M20.8578 23.0633C20.2958 23.0633 19.8884 23.2206 19.6358 23.5351C19.3883 23.8445 19.2645 24.2699 19.2645 24.8113C19.2645 25.0743 19.2954 25.314 19.3573 25.5306C19.4192 25.742 19.512 25.925 19.6358 26.0797C19.7595 26.2344 19.9142 26.3556 20.0998 26.4432C20.2854 26.5257 20.502 26.567 20.7495 26.567C20.8836 26.567 20.997 26.5644 21.0898 26.5593C21.1878 26.5541 21.2729 26.5438 21.345 26.5283V24.6643H22.5516V27.3172C22.4072 27.3739 22.1752 27.4332 21.8555 27.4951C21.5358 27.5621 21.1414 27.5957 20.6722 27.5957C20.27 27.5957 19.9039 27.5338 19.5739 27.41C19.249 27.2863 18.9706 27.1058 18.7386 26.8686C18.5065 26.6314 18.3261 26.3401 18.1972 25.9946C18.0734 25.6492 18.0115 25.2547 18.0115 24.8113C18.0115 24.3627 18.0811 23.9657 18.2204 23.6202C18.3596 23.2747 18.5504 22.9834 18.7927 22.7462C19.035 22.5039 19.3186 22.3208 19.6435 22.1971C19.9735 22.0733 20.3241 22.0114 20.6954 22.0114C20.948 22.0114 21.1749 22.0295 21.376 22.0656C21.5822 22.0965 21.7575 22.1352 21.9019 22.1816C22.0515 22.2229 22.1726 22.2667 22.2654 22.3131C22.3634 22.3595 22.433 22.3956 22.4743 22.4214L22.1262 23.3882C21.9612 23.3005 21.7704 23.2257 21.5539 23.1639C21.3425 23.0968 21.1104 23.0633 20.8578 23.0633ZM27.4022 25.4532C27.4022 25.7729 27.3558 26.0668 27.263 26.335C27.1702 26.5979 27.0361 26.8248 26.8608 27.0156C26.6855 27.2012 26.4741 27.3456 26.2266 27.4487C25.9842 27.5518 25.711 27.6034 25.4067 27.6034C25.1077 27.6034 24.8344 27.5518 24.5869 27.4487C24.3446 27.3456 24.1357 27.2012 23.9604 27.0156C23.7851 26.8248 23.6485 26.5979 23.5505 26.335C23.4525 26.0668 23.4035 25.7729 23.4035 25.4532C23.4035 25.1336 23.4525 24.8422 23.5505 24.5793C23.6536 24.3163 23.7928 24.092 23.9681 23.9064C24.1486 23.7207 24.36 23.5764 24.6024 23.4732C24.8499 23.3701 25.118 23.3186 25.4067 23.3186C25.7006 23.3186 25.9688 23.3701 26.2111 23.4732C26.4586 23.5764 26.67 23.7207 26.8453 23.9064C27.0206 24.092 27.1573 24.3163 27.2553 24.5793C27.3532 24.8422 27.4022 25.1336 27.4022 25.4532ZM26.2266 25.4532C26.2266 25.0975 26.1544 24.819 26.01 24.6179C25.8708 24.4117 25.6697 24.3086 25.4067 24.3086C25.1438 24.3086 24.9401 24.4117 24.7957 24.6179C24.6514 24.819 24.5792 25.0975 24.5792 25.4532C24.5792 25.809 24.6514 26.0926 24.7957 26.304C24.9401 26.5103 25.1438 26.6134 25.4067 26.6134C25.6697 26.6134 25.8708 26.5103 26.01 26.304C26.1544 26.0926 26.2266 25.809 26.2266 25.4532ZM28.2949 23.5661C28.4909 23.5093 28.7435 23.4578 29.0529 23.4114C29.3623 23.3598 29.6871 23.334 30.0274 23.334C30.3729 23.334 30.6591 23.3804 30.8859 23.4732C31.118 23.5609 31.301 23.6872 31.4351 23.8522C31.5691 24.0172 31.6645 24.2132 31.7213 24.44C31.778 24.6669 31.8063 24.9196 31.8063 25.198V27.4951H30.6539V25.3372C30.6539 24.966 30.6049 24.703 30.507 24.5483C30.409 24.3936 30.2259 24.3163 29.9578 24.3163C29.8753 24.3163 29.7877 24.3214 29.6949 24.3318C29.602 24.3369 29.5195 24.3446 29.4474 24.355V27.4951H28.2949V23.5661ZM32.6561 25.4919C32.6561 25.131 32.7102 24.8164 32.8185 24.5483C32.9319 24.275 33.0789 24.0482 33.2594 23.8677C33.4398 23.6872 33.6461 23.5506 33.8781 23.4578C34.1153 23.365 34.3577 23.3186 34.6052 23.3186C35.1827 23.3186 35.639 23.4964 35.9741 23.8522C36.3093 24.2029 36.4769 24.7211 36.4769 25.4068C36.4769 25.4739 36.4743 25.5486 36.4691 25.6311C36.464 25.7085 36.4588 25.7781 36.4537 25.84H33.8394C33.8652 26.0771 33.9761 26.2654 34.172 26.4046C34.368 26.5438 34.6309 26.6134 34.9609 26.6134C35.1723 26.6134 35.3786 26.5954 35.5797 26.5593C35.7859 26.518 35.9535 26.469 36.0824 26.4123L36.2371 27.3482C36.1752 27.3791 36.0927 27.41 35.9896 27.441C35.8865 27.4719 35.7705 27.4977 35.6416 27.5183C35.5178 27.5441 35.3837 27.5647 35.2394 27.5802C35.095 27.5957 34.9506 27.6034 34.8062 27.6034C34.4402 27.6034 34.1205 27.5493 33.8472 27.441C33.5791 27.3327 33.3548 27.1857 33.1743 27.0001C32.999 26.8093 32.8675 26.585 32.7798 26.3272C32.6973 26.0694 32.6561 25.791 32.6561 25.4919ZM35.3631 25.0511C35.358 24.9531 35.3399 24.8577 35.309 24.7649C35.2832 24.6721 35.2394 24.5896 35.1775 24.5174C35.1208 24.4452 35.046 24.3859 34.9532 24.3395C34.8655 24.2931 34.7547 24.2699 34.6206 24.2699C34.4917 24.2699 34.3809 24.2931 34.288 24.3395C34.1952 24.3807 34.1179 24.4375 34.056 24.5096C33.9941 24.5818 33.9452 24.6669 33.9091 24.7649C33.8781 24.8577 33.8549 24.9531 33.8394 25.0511H35.3631Z" fill="#4A4A4A"/>
-<path d="M19.5506 41.9108C19.6641 41.9108 19.7569 41.9022 19.8291 41.885C19.9047 41.8644 19.9649 41.8386 20.0095 41.8077C20.0542 41.7733 20.0852 41.7338 20.1024 41.6891C20.1195 41.6444 20.1281 41.5946 20.1281 41.5396C20.1281 41.4227 20.0731 41.3264 19.9631 41.2508C19.8531 41.1718 19.6641 41.0875 19.3959 40.9982C19.2791 40.9569 19.1622 40.9105 19.0453 40.8589C18.9284 40.8039 18.8236 40.7369 18.7308 40.6579C18.638 40.5754 18.5624 40.4774 18.5039 40.3639C18.4455 40.2471 18.4163 40.1061 18.4163 39.9411C18.4163 39.7761 18.4472 39.6283 18.5091 39.4977C18.5709 39.3636 18.6586 39.2502 18.772 39.1574C18.8855 39.0646 19.023 38.9941 19.1845 38.946C19.3461 38.8944 19.5283 38.8686 19.7311 38.8686C19.9717 38.8686 20.1797 38.8944 20.355 38.946C20.5303 38.9975 20.6747 39.0543 20.7881 39.1161L20.5561 39.7504C20.4564 39.6988 20.3447 39.6541 20.2209 39.6163C20.1006 39.575 19.9545 39.5544 19.7827 39.5544C19.5902 39.5544 19.4509 39.5819 19.365 39.6369C19.2825 39.6885 19.2413 39.7693 19.2413 39.8793C19.2413 39.9446 19.2567 39.9996 19.2877 40.0443C19.3186 40.0889 19.3616 40.1302 19.4166 40.168C19.475 40.2024 19.5403 40.235 19.6125 40.266C19.6881 40.2935 19.7706 40.3227 19.86 40.3536C20.0456 40.4224 20.2072 40.4911 20.3447 40.5599C20.4822 40.6252 20.5956 40.7025 20.685 40.7919C20.7778 40.8813 20.8466 40.9861 20.8913 41.1064C20.9359 41.2268 20.9583 41.3729 20.9583 41.5447C20.9583 41.8782 20.8414 42.1377 20.6077 42.3233C20.3739 42.5055 20.0216 42.5966 19.5506 42.5966C19.3925 42.5966 19.2499 42.5863 19.1227 42.5657C18.9955 42.5485 18.882 42.5261 18.7824 42.4986C18.6861 42.4711 18.6019 42.4419 18.5297 42.411C18.4609 42.38 18.4025 42.3508 18.3544 42.3233L18.5813 41.6839C18.6878 41.7424 18.8184 41.7957 18.9731 41.8438C19.1313 41.8885 19.3238 41.9108 19.5506 41.9108ZM21.5256 42.5244V38.6469L22.2939 38.5232V39.8225C22.3455 39.8054 22.4108 39.7899 22.4899 39.7761C22.5724 39.7589 22.6514 39.7504 22.727 39.7504C22.947 39.7504 23.1292 39.7813 23.2736 39.8432C23.4214 39.9016 23.5383 39.9858 23.6242 40.0958C23.7136 40.2058 23.7755 40.3364 23.8099 40.4877C23.8477 40.6389 23.8666 40.8074 23.8666 40.993V42.5244H23.0983V41.0858C23.0983 40.8383 23.0656 40.663 23.0003 40.5599C22.9384 40.4568 22.8216 40.4052 22.6497 40.4052C22.5809 40.4052 22.5156 40.4121 22.4538 40.4258C22.3953 40.4361 22.342 40.4482 22.2939 40.4619V42.5244H21.5256ZM25.5984 41.9882C25.674 41.9882 25.7462 41.9864 25.815 41.983C25.8837 41.9796 25.9387 41.9744 25.98 41.9675V41.3849C25.949 41.378 25.9026 41.3711 25.8407 41.3643C25.7789 41.3574 25.7221 41.3539 25.6706 41.3539C25.5984 41.3539 25.5296 41.3591 25.4643 41.3694C25.4025 41.3763 25.3475 41.3918 25.2993 41.4158C25.2512 41.4399 25.2134 41.4725 25.1859 41.5138C25.1584 41.555 25.1446 41.6066 25.1446 41.6685C25.1446 41.7888 25.1842 41.873 25.2632 41.9211C25.3457 41.9658 25.4575 41.9882 25.5984 41.9882ZM25.5365 39.74C25.7634 39.74 25.9525 39.7658 26.1037 39.8174C26.255 39.8689 26.3753 39.9429 26.4646 40.0391C26.5575 40.1354 26.6228 40.2522 26.6606 40.3897C26.6984 40.5272 26.7173 40.6802 26.7173 40.8486V42.4471C26.6073 42.4711 26.4543 42.4986 26.2584 42.5296C26.0625 42.5639 25.8253 42.5811 25.5468 42.5811C25.3715 42.5811 25.2117 42.5657 25.0673 42.5347C24.9264 42.5038 24.8043 42.4539 24.7012 42.3852C24.5981 42.313 24.519 42.2202 24.464 42.1068C24.409 41.9933 24.3815 41.8541 24.3815 41.6891C24.3815 41.531 24.4125 41.3969 24.4743 41.2869C24.5396 41.1769 24.6256 41.0893 24.7321 41.0239C24.8387 40.9586 24.9607 40.9122 25.0982 40.8847C25.2357 40.8538 25.3784 40.8383 25.5262 40.8383C25.6259 40.8383 25.7135 40.8435 25.7892 40.8538C25.8682 40.8607 25.9318 40.871 25.98 40.8847V40.8125C25.98 40.6819 25.9404 40.5771 25.8614 40.498C25.7823 40.4189 25.6448 40.3794 25.4489 40.3794C25.3182 40.3794 25.1893 40.3897 25.0621 40.4104C24.935 40.4275 24.825 40.4533 24.7321 40.4877L24.6342 39.8689C24.6789 39.8552 24.7339 39.8414 24.7992 39.8277C24.8679 39.8105 24.9418 39.7968 25.0209 39.7864C25.1 39.7727 25.1825 39.7624 25.2684 39.7555C25.3578 39.7452 25.4471 39.74 25.5365 39.74ZM29.1497 41.1889C29.1497 40.9518 29.0964 40.7627 28.9898 40.6218C28.8833 40.4774 28.7251 40.4052 28.5155 40.4052C28.4467 40.4052 28.3831 40.4086 28.3247 40.4155C28.2662 40.4189 28.2181 40.4241 28.1803 40.431V41.818C28.2284 41.8489 28.2903 41.8747 28.3659 41.8954C28.445 41.916 28.5241 41.9263 28.6031 41.9263C28.9675 41.9263 29.1497 41.6805 29.1497 41.1889ZM29.9334 41.1683C29.9334 41.378 29.9076 41.5688 29.8561 41.7407C29.8045 41.9125 29.7289 42.0604 29.6292 42.1841C29.5295 42.3079 29.4058 42.4041 29.258 42.4729C29.1101 42.5416 28.94 42.576 28.7475 42.576C28.6409 42.576 28.5412 42.5657 28.4484 42.545C28.3556 42.5244 28.2662 42.4952 28.1803 42.4574V43.4783H27.412V39.905C27.4808 39.8844 27.5598 39.8655 27.6492 39.8483C27.7386 39.8277 27.8314 39.8105 27.9276 39.7968C28.0273 39.783 28.127 39.7727 28.2267 39.7658C28.3298 39.7555 28.4278 39.7504 28.5206 39.7504C28.7441 39.7504 28.9434 39.7847 29.1187 39.8535C29.2941 39.9188 29.4419 40.0133 29.5622 40.1371C29.6825 40.2574 29.7736 40.4052 29.8355 40.5805C29.9008 40.7558 29.9334 40.9518 29.9334 41.1683ZM30.395 41.1889C30.395 40.9483 30.4311 40.7386 30.5033 40.5599C30.5789 40.3777 30.6769 40.2264 30.7972 40.1061C30.9175 39.9858 31.055 39.8947 31.2097 39.8329C31.3678 39.771 31.5294 39.74 31.6944 39.74C32.0794 39.74 32.3836 39.8586 32.607 40.0958C32.8305 40.3296 32.9422 40.675 32.9422 41.1322C32.9422 41.1769 32.9405 41.2268 32.937 41.2818C32.9336 41.3333 32.9301 41.3797 32.9267 41.421H31.1839C31.2011 41.5791 31.275 41.7046 31.4056 41.7974C31.5362 41.8902 31.7116 41.9366 31.9316 41.9366C32.0725 41.9366 32.21 41.9246 32.3441 41.9005C32.4816 41.873 32.5933 41.8404 32.6792 41.8025L32.7823 42.4264C32.7411 42.4471 32.6861 42.4677 32.6173 42.4883C32.5486 42.5089 32.4712 42.5261 32.3853 42.5399C32.3028 42.5571 32.2134 42.5708 32.1172 42.5811C32.0209 42.5914 31.9247 42.5966 31.8284 42.5966C31.5844 42.5966 31.3712 42.5605 31.1891 42.4883C31.0103 42.4161 30.8608 42.3182 30.7405 42.1944C30.6236 42.0672 30.5359 41.9177 30.4775 41.7458C30.4225 41.5739 30.395 41.3883 30.395 41.1889ZM32.1997 40.895C32.1962 40.8297 32.1842 40.7661 32.1636 40.7043C32.1464 40.6424 32.1172 40.5874 32.0759 40.5393C32.0381 40.4911 31.9883 40.4516 31.9264 40.4207C31.868 40.3897 31.7941 40.3743 31.7047 40.3743C31.6187 40.3743 31.5448 40.3897 31.483 40.4207C31.4211 40.4482 31.3695 40.486 31.3283 40.5341C31.287 40.5822 31.2544 40.6389 31.2303 40.7043C31.2097 40.7661 31.1942 40.8297 31.1839 40.895H32.1997ZM34.1899 41.1477C34.1899 41.3849 34.2432 41.5757 34.3498 41.72C34.4563 41.8644 34.6144 41.9366 34.8241 41.9366C34.8929 41.9366 34.9565 41.9349 35.0149 41.9314C35.0733 41.9246 35.1215 41.9177 35.1593 41.9108V40.5135C35.1112 40.4825 35.0476 40.4568 34.9685 40.4361C34.8929 40.4155 34.8155 40.4052 34.7365 40.4052C34.3721 40.4052 34.1899 40.6527 34.1899 41.1477ZM35.9276 42.4368C35.8588 42.4574 35.7798 42.478 35.6904 42.4986C35.601 42.5158 35.5065 42.5313 35.4068 42.545C35.3105 42.5588 35.2108 42.5691 35.1077 42.576C35.008 42.5863 34.9118 42.5914 34.819 42.5914C34.5955 42.5914 34.3962 42.5588 34.2208 42.4935C34.0455 42.4282 33.8977 42.3354 33.7774 42.215C33.6571 42.0913 33.5643 41.9435 33.499 41.7716C33.4371 41.5963 33.4062 41.4004 33.4062 41.1838C33.4062 40.9638 33.4337 40.7661 33.4887 40.5908C33.5437 40.4121 33.6227 40.2608 33.7258 40.1371C33.829 40.0133 33.9544 39.9188 34.1023 39.8535C34.2535 39.7882 34.4254 39.7555 34.6179 39.7555C34.7244 39.7555 34.819 39.7658 34.9015 39.7864C34.9874 39.8071 35.0733 39.8363 35.1593 39.8741V38.6469L35.9276 38.5232V42.4368Z" fill="#4A4A4A"/>
-<path d="M20.4737 29.9028C21.5394 29.9028 22.3575 30.0918 22.9281 30.47C23.4987 30.8412 23.7841 31.4531 23.7841 32.3056C23.7841 33.165 23.4953 33.7871 22.9178 34.1721C22.3403 34.5503 21.5153 34.7393 20.4428 34.7393H19.9375V37.1318H18.3287V30.0884C18.6794 30.0196 19.0506 29.9715 19.4425 29.944C19.8344 29.9165 20.1781 29.9028 20.4737 29.9028ZM20.5769 31.2743C20.46 31.2743 20.3431 31.2778 20.2262 31.2846C20.1162 31.2915 20.02 31.2984 19.9375 31.3053V33.3678H20.4428C20.9997 33.3678 21.4191 33.2921 21.7009 33.1409C21.9828 32.9896 22.1237 32.7078 22.1237 32.2953C22.1237 32.0959 22.0859 31.9309 22.0103 31.8003C21.9416 31.6696 21.8384 31.5665 21.7009 31.4909C21.5703 31.4084 21.4087 31.3534 21.2162 31.3259C21.0237 31.2915 20.8106 31.2743 20.5769 31.2743ZM26.7337 36.0593C26.8849 36.0593 27.0293 36.0559 27.1668 36.049C27.3043 36.0421 27.4143 36.0318 27.4968 36.0181V34.8528C27.4349 34.839 27.3421 34.8253 27.2184 34.8115C27.0946 34.7978 26.9812 34.7909 26.8781 34.7909C26.7337 34.7909 26.5962 34.8012 26.4656 34.8218C26.3418 34.8356 26.2318 34.8665 26.1356 34.9146C26.0393 34.9628 25.9637 35.0281 25.9087 35.1106C25.8537 35.1931 25.8262 35.2962 25.8262 35.42C25.8262 35.6606 25.9052 35.829 26.0634 35.9253C26.2284 36.0146 26.4518 36.0593 26.7337 36.0593ZM26.6099 31.5631C27.0637 31.5631 27.4418 31.6146 27.7443 31.7178C28.0468 31.8209 28.2874 31.9687 28.4662 32.1612C28.6518 32.3537 28.7824 32.5875 28.8581 32.8625C28.9337 33.1375 28.9715 33.4434 28.9715 33.7803V36.9771C28.7515 37.0253 28.4456 37.0803 28.0537 37.1421C27.6618 37.2109 27.1874 37.2453 26.6306 37.2453C26.2799 37.2453 25.9602 37.2143 25.6715 37.1525C25.3896 37.0906 25.1456 36.9909 24.9393 36.8534C24.7331 36.709 24.5749 36.5234 24.4649 36.2965C24.3549 36.0696 24.2999 35.7912 24.2999 35.4612C24.2999 35.145 24.3618 34.8768 24.4856 34.6568C24.6162 34.4368 24.7881 34.2615 25.0012 34.1309C25.2143 34.0003 25.4584 33.9075 25.7334 33.8525C26.0084 33.7906 26.2937 33.7596 26.5893 33.7596C26.7887 33.7596 26.964 33.77 27.1152 33.7906C27.2734 33.8043 27.4006 33.825 27.4968 33.8525V33.7081C27.4968 33.4468 27.4177 33.2371 27.2596 33.079C27.1015 32.9209 26.8265 32.8418 26.4346 32.8418C26.1734 32.8418 25.9156 32.8625 25.6612 32.9037C25.4068 32.9381 25.1868 32.9896 25.0012 33.0584L24.8052 31.8209C24.8946 31.7934 25.0046 31.7659 25.1352 31.7384C25.2727 31.704 25.4206 31.6765 25.5787 31.6559C25.7368 31.6284 25.9018 31.6078 26.0737 31.594C26.2524 31.5734 26.4312 31.5631 26.6099 31.5631ZM31.8975 37.1318H30.3609V31.7075H31.8975V37.1318ZM32.0419 30.14C32.0419 30.4218 31.9491 30.6453 31.7634 30.8103C31.5847 30.9684 31.3716 31.0475 31.1241 31.0475C30.8766 31.0475 30.66 30.9684 30.4744 30.8103C30.2956 30.6453 30.2063 30.4218 30.2063 30.14C30.2063 29.8581 30.2956 29.6381 30.4744 29.48C30.66 29.315 30.8766 29.2325 31.1241 29.2325C31.3716 29.2325 31.5847 29.315 31.7634 29.48C31.9491 29.6381 32.0419 29.8581 32.0419 30.14ZM36.611 33.0687C36.4735 33.0343 36.3119 33 36.1263 32.9656C35.9406 32.9243 35.7413 32.9037 35.5281 32.9037C35.4319 32.9037 35.315 32.914 35.1775 32.9346C35.0469 32.9484 34.9472 32.9656 34.8785 32.9862V37.1318H33.3419V31.9962C33.6169 31.9 33.94 31.8106 34.3113 31.7281C34.6894 31.6387 35.1088 31.594 35.5694 31.594C35.6519 31.594 35.7516 31.6009 35.8685 31.6146C35.9853 31.6215 36.1022 31.6353 36.2191 31.6559C36.336 31.6696 36.4528 31.6903 36.5697 31.7178C36.6866 31.7384 36.7863 31.7659 36.8688 31.8003L36.611 33.0687Z" fill="#4A4A4A"/>
-<defs>
-<filter id="filter0_d" x="13.7324" y="8.01465" width="23.9434" height="35.4543" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="0.128906" dy="0.257813"/>
-<feGaussianBlur stdDeviation="0.257813"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 1 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<filter id="filter1_d" x="15.3828" y="9.8457" width="23.9434" height="35.4543" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="0.128906" dy="0.257813"/>
-<feGaussianBlur stdDeviation="0.257813"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 0 0.258824 0 0 0 1 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="0" y1="0" x2="26.4" y2="52.8" gradientUnits="userSpaceOnUse">
-<stop stop-color="#78ECF2"/>
-<stop offset="1" stop-color="#71AFE5"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Icons/HY.svg b/public/Icons/HY.svg
deleted file mode 100644
index 7c594e0..0000000
--- a/public/Icons/HY.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-<svg width="53" height="53" viewBox="0 0 53 53" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<rect width="52.8104" height="52.8104" rx="26.4052" fill="url(#paint0_linear)"/>
-<path d="M38.8246 32.8069C39.1433 31.6908 38.4968 30.5277 37.3807 30.2091C36.2647 29.8904 35.1016 30.5369 34.783 31.653L38.8246 32.8069ZM26.5067 13.0739H24.4051H26.5067ZM34.783 31.653C34.3501 33.1691 33.504 34.5349 32.3393 35.5976L35.1723 38.7025C36.9131 37.1142 38.1777 35.0729 38.8246 32.8069L34.783 31.653ZM32.3393 35.5976C31.1746 36.6603 29.7372 37.3781 28.1879 37.6706L28.9676 41.8008C31.2832 41.3636 33.4316 40.2909 35.1723 38.7025L32.3393 35.5976ZM28.1879 37.6706C26.6386 37.9631 25.0384 37.8188 23.5664 37.2538L22.0604 41.1779C24.2604 42.0223 26.652 42.2379 28.9676 41.8008L28.1879 37.6706ZM23.5664 37.2538C22.0944 36.6889 20.8086 35.7256 19.8528 34.4716L16.51 37.0196C17.9386 38.8938 19.8603 40.3336 22.0604 41.1779L23.5664 37.2538ZM19.8528 34.4716C18.897 33.2177 18.3089 31.7226 18.1543 30.1535L13.9714 30.5657C14.2025 32.9109 15.0815 35.1455 16.51 37.0196L19.8528 34.4716ZM18.1543 30.1535C17.9996 28.5844 18.2846 27.0032 18.9772 25.5868L15.2013 23.7404C14.1661 25.8574 13.7403 28.2206 13.9714 30.5657L18.1543 30.1535ZM18.9772 25.5868C19.6199 24.2725 20.8585 23.0474 22.3034 22.1356L20.0603 18.581C18.179 19.7682 16.2864 21.5214 15.2013 23.7404L18.9772 25.5868ZM24.4051 8.83407e-08L24.4051 13.0739H28.6083L28.6083 -8.83407e-08L24.4051 8.83407e-08ZM22.3034 22.1356C23.7343 21.2326 25.2674 20.0531 26.462 18.5948C27.6626 17.1291 28.6083 15.2696 28.6083 13.0739H24.4051C24.4051 14.0058 24.0109 14.954 23.2104 15.9313C22.4039 16.916 21.2745 17.8148 20.0603 18.581L22.3034 22.1356Z" fill="black"/>
-</g>
-<defs>
-<linearGradient id="paint0_linear" x1="52.8104" y1="0" x2="0" y2="52.8104" gradientUnits="userSpaceOnUse">
-<stop stop-color="#F2D478"/>
-<stop offset="1" stop-color="#EDC575"/>
-</linearGradient>
-<clipPath id="clip0">
-<rect width="52.8104" height="52.8104" rx="26.4052" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Icons/Homepage.svg b/public/Icons/Homepage.svg
deleted file mode 100644
index bc56da2..0000000
--- a/public/Icons/Homepage.svg
+++ /dev/null
@@ -1,25 +0,0 @@
-<svg width="2048" height="2048" viewBox="0 0 2048 2048" fill="none" xmlns="http://www.w3.org/2000/svg">
-<rect width="2048" height="2048" rx="1024" fill="url(#paint0_linear)"/>
-<g filter="url(#filter0_d)">
-<path d="M557.16 885.5V1472C557.16 1516.18 592.977 1552 637.16 1552H843.16C887.343 1552 923.16 1516.18 923.16 1472V1344C923.16 1299.82 958.977 1264 1003.16 1264H1045.16C1089.34 1264 1125.16 1299.82 1125.16 1344V1472C1125.16 1516.18 1160.98 1552 1205.16 1552H1411.16C1455.34 1552 1491.16 1516.18 1491.16 1472V885.5M1708.32 885.5L1076.83 333.078C1046.67 306.695 1001.65 306.695 971.487 333.078L340 885.5" stroke="url(#paint1_linear)" stroke-width="100" stroke-linecap="round"/>
-</g>
-<defs>
-<filter id="filter0_d" x="280" y="247.289" width="1508.32" height="1378.71" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
-<feFlood flood-opacity="0" result="BackgroundImageFix"/>
-<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
-<feOffset dx="10" dy="4"/>
-<feGaussianBlur stdDeviation="10"/>
-<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
-<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
-<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
-</filter>
-<linearGradient id="paint0_linear" x1="2048" y1="0" x2="0" y2="2048" gradientUnits="userSpaceOnUse">
-<stop stop-color="#78ECF2"/>
-<stop offset="1" stop-color="#71AFE5"/>
-</linearGradient>
-<linearGradient id="paint1_linear" x1="1708.16" y1="287" x2="340.16" y2="1552" gradientUnits="userSpaceOnUse">
-<stop stop-color="#8D8D8D"/>
-<stop offset="1" stop-color="#424242"/>
-</linearGradient>
-</defs>
-</svg>
diff --git a/public/Icons/PY.svg b/public/Icons/PY.svg
deleted file mode 100644
index f2df632..0000000
--- a/public/Icons/PY.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-<svg width="101" height="101" viewBox="0 0 101 101" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<path d="M74.5879 65.1915V84.6933L91.4252 78.5653V59.0635L74.5879 65.1915Z" fill="white" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M57.9224 71.2521V90.7529L74.7607 84.6249V65.123L57.9224 71.2521Z" fill="#FFD242" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M71.7089 76.0061C71.709 76.4581 71.6254 76.9361 71.4629 77.4128C71.3004 77.8896 71.0622 78.3557 70.7619 78.7846C70.4616 79.2136 70.105 79.5968 69.7126 79.9125C69.3201 80.2283 68.8995 80.4703 68.4748 80.6248C67.6175 80.9365 66.7953 80.8732 66.1891 80.4488C65.5828 80.0243 65.242 79.2735 65.2417 78.3613C65.2415 77.9094 65.3251 77.4315 65.4875 76.9548C65.6499 76.4781 65.888 76.012 66.1882 75.5831C66.4884 75.1542 66.8449 74.7709 67.2372 74.4551C67.6296 74.1393 68.0501 73.8972 68.4748 73.7426C68.8995 73.588 69.32 73.524 69.7124 73.5541C70.1048 73.5843 70.4613 73.708 70.7616 73.9183C71.062 74.1286 71.3002 74.4213 71.4627 74.7797C71.6253 75.1381 71.7089 75.5552 71.7089 76.0072V76.0061Z" fill="white"/>
-<path d="M41.2578 77.3117V96.8135L58.0962 90.6845V71.1826L41.2578 77.3117Z" fill="#FFD242" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M24.5933 83.3712V102.873L41.4306 96.7439V77.2432L24.5933 83.3712Z" fill="white" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M8 77.332L24.593 83.3715V102.873L8 96.8339V77.332Z" fill="#EFEEEA" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M74.5879 45.4972V64.998L91.4252 58.87V39.3682L74.5879 45.4972Z" fill="#FFD242" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M57.9946 19.7628L74.5877 25.8023L91.425 19.6732L74.833 13.6338L57.9946 19.7628Z" fill="#FFC91D" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M74.5879 25.8029V45.3037L91.4252 39.1757V19.6738L74.5879 25.8029ZM57.9224 51.5575V71.0583L74.7607 64.9303V45.4284L57.9224 51.5575Z" fill="#FFD242" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M57.9224 31.8625V51.3632L74.7607 45.2352V25.7334L57.9224 31.8625Z" fill="#3775A9" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M41.3301 6.12799L57.922 12.1674L74.7604 6.03839L58.1684 0L41.3301 6.12799Z" fill="#2F6491" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M57.9224 12.1661V31.6679L74.7607 25.5399V6.03809L57.9224 12.1661Z" fill="#3775A9" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M41.2578 57.6173V77.1192L58.0962 70.9901V51.4883L41.2578 57.6173Z" fill="#FFD242" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M41.2578 37.922V57.4239L58.0961 51.2948V31.793L41.2578 37.922ZM24.5933 63.6766V83.1785L41.4306 77.0494V57.5487L24.5933 63.6766Z" fill="#3775A9" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M8 57.6384L24.593 63.6768V83.1786L8 77.1392V57.6384ZM8 37.9424L24.593 43.9819L41.4303 37.8539L24.8384 31.8145L8 37.9424Z" fill="#2F6491" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M24.5933 43.9815V63.4833L41.4306 57.3543V37.8535L24.5933 43.9815Z" fill="#3775A9" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M8 37.9422L24.593 43.9816V63.4835L8 57.444V37.9422ZM24.6656 12.1876L41.2575 18.227L58.0959 12.098L41.5029 6.05957L24.6656 12.1876Z" fill="#2F6491" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M41.2578 18.2267V37.7285L58.0962 31.5995V12.0977L41.2578 18.2267Z" fill="#3775A9" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M24.6655 12.1875L41.2575 18.227V37.7288L24.6655 31.6893V12.1875Z" fill="#2F6491" stroke="#CCCCCC" stroke-width="0.378666" stroke-linejoin="bevel"/>
-<path d="M50.7778 24.4906C50.7779 24.9425 50.6944 25.4206 50.5319 25.8973C50.3694 26.3741 50.1312 26.8402 49.8308 27.2691C49.5305 27.698 49.1739 28.0813 48.7815 28.397C48.3891 28.7127 47.9685 28.9548 47.5437 29.1092C47.119 29.2638 46.6985 29.3279 46.3061 29.2977C45.9137 29.2676 45.5571 29.1439 45.2568 28.9336C44.9565 28.7233 44.7183 28.4306 44.5557 28.0722C44.3932 27.7137 44.3096 27.2966 44.3096 26.8447C44.3095 26.3927 44.3931 25.9147 44.5555 25.4379C44.718 24.9612 44.9562 24.4951 45.2566 24.0661C45.5569 23.6372 45.9135 23.254 46.3059 22.9382C46.6983 22.6225 47.119 22.3805 47.5437 22.226C47.9684 22.0714 48.3889 22.0074 48.7813 22.0375C49.1737 22.0677 49.5303 22.1914 49.8306 22.4017C50.1309 22.612 50.3691 22.9047 50.5317 23.2631C50.6942 23.6215 50.7778 24.0386 50.7778 24.4906Z" fill="white"/>
-</g>
-<defs>
-<clipPath id="clip0">
-<rect width="101" height="101" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/Icons/RM.svg b/public/Icons/RM.svg
deleted file mode 100644
index 4343d08..0000000
--- a/public/Icons/RM.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="2048" height="2048" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="2048" height="2048" rx="1024" fill="url(#a)"/><path fill-rule="evenodd" clip-rule="evenodd" d="M354 478c-35.899 0-65 29.101-65 65v181c0 35.898 29.102 65 65 65h1339c35.9 0 65-29.102 65-65V543c0-35.899-29.1-65-65-65H354Zm1248 283c70.14 0 127-56.86 127-127s-56.86-127-127-127-127 56.86-127 127 56.86 127 127 127Z" fill="#424242"/><g filter="url(#b)"><path fill-rule="evenodd" clip-rule="evenodd" d="M354 868c-35.899 0-65 29.101-65 65v181c0 35.9 29.102 65 65 65h1339c35.9 0 65-29.1 65-65V933c0-35.899-29.1-65-65-65H354Zm1248 283c70.14 0 127-56.86 127-127s-56.86-127-127-127-127 56.86-127 127 56.86 127 127 127Z" fill="#424242"/></g><path fill-rule="evenodd" clip-rule="evenodd" d="M354 1258c-35.899 0-65 29.1-65 65v181c0 35.9 29.102 65 65 65h1339c35.9 0 65-29.1 65-65v-181c0-35.9-29.1-65-65-65H354Zm1248 283c70.14 0 127-56.86 127-127s-56.86-127-127-127-127 56.86-127 127 56.86 127 127 127Z" fill="#424242"/><defs><linearGradient id="a" x1="2048" y1="0" x2="0" y2="2048" gradientUnits="userSpaceOnUse"><stop stop-color="#F27878"/><stop offset="1" stop-color="#D96B6B"/></linearGradient><filter id="b" x="285" y="868" width="1477" height="319" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4"/><feGaussianBlur stdDeviation="2"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_3103:7635"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3103:7635" result="shape"/></filter></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/CA.svg b/public/Waves/CA.svg
deleted file mode 100644
index dd74904..0000000
--- a/public/Waves/CA.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="528" height="186" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m528 48.013-21.862 13.2c-22.276 13.2-66 39.6-110.138 34.237-44.137-5.362-87.863-42.075-132-47.437-44.137-5.363-87.862 21.037-132 18.562C87.862 63.688 44.138 32.338 21.862 16.25L0 .575v184.8h528V48.013Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="185.375" x2="528" y2="185.375" gradientUnits="userSpaceOnUse"><stop stop-color="#F2D478"/><stop offset="1" stop-color="#EDC575"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/CF.svg b/public/Waves/CF.svg
deleted file mode 100644
index 355fa40..0000000
--- a/public/Waves/CF.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="529" height="186" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m.104 38.45 22 8.445c22 8.445 66 25.336 110 33.781 44 8.446 88 8.446 132-11.26s88-59.118 132-67.563 88 14.076 110 25.336l22 11.26.002 146.764h-528L.104 38.45Z" fill="url(#a)"/><defs><linearGradient id="a" x1=".106" y1="-72.524" x2="508.737" y2="219.177" gradientUnits="userSpaceOnUse"><stop stop-color="#6576CC"/><stop offset="1" stop-color="#775EBF"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/CL.svg b/public/Waves/CL.svg
deleted file mode 100644
index 2c28577..0000000
--- a/public/Waves/CL.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="529" height="185" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m.104 63.705 17.742 8.252c17.33 7.84 52.815 23.519 87.887 31.358 35.072 8.253 70.556 8.253 105.628-10.315 35.072-18.567 70.557-55.702 105.629-60.654 35.072-5.364 70.556 21.044 105.628 21.044s70.557-26.408 87.886-39.611L528.247.575v183.819H.104V63.704Z" fill="url(#a)"/><defs><linearGradient id="a" x1=".104" y1="184.394" x2="528.247" y2="184.394" gradientUnits="userSpaceOnUse"><stop stop-color="#71AFE5"/><stop offset="1" stop-color="#78ECF2"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/DS.svg b/public/Waves/DS.svg
deleted file mode 100644
index 5069f5d..0000000
--- a/public/Waves/DS.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="528" height="157" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 29.816 18-5c17-5 52-16 88-21 35-5 70-5 105 3 35 7 71 23 106 36 35 14 70 24 105 24 36 0 71-10 88-16l18-5v110.559H0V29.815Z" fill="#7289DA"/></svg>
\ No newline at end of file
diff --git a/public/Waves/GH.svg b/public/Waves/GH.svg
deleted file mode 100644
index 4ad1139..0000000
--- a/public/Waves/GH.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="528" height="218" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 142.375h22c22 0 66 0 110-16 44-15 88-47 132-50 44-2 88 24 132 16s88-50 110-71l22-21v217H0v-75Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="217.375" x2="528" y2="217.375" gradientUnits="userSpaceOnUse"><stop stop-color="#8D8D8D"/><stop offset="1" stop-color="#424242"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/GS.svg b/public/Waves/GS.svg
deleted file mode 100644
index c34151c..0000000
--- a/public/Waves/GS.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="528" height="191" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 110.963 21.863-16.088C44.138 79.2 87.862 47.437 132 52.8c44.137 5.363 87.863 47.437 132 66 44.137 18.563 87.862 13.2 132-10.725 44.137-23.513 87.862-66 110.137-87.037L528 0v190.575H0v-79.612Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="190.575" x2="528" y2="190.575" gradientUnits="userSpaceOnUse"><stop stop-color="#71AFE5"/><stop offset="1" stop-color="#6576CC"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/HY.svg b/public/Waves/HY.svg
deleted file mode 100644
index 7fdb309..0000000
--- a/public/Waves/HY.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="529" height="179" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 .575 21.867 5.94c22.28 5.363 66.013 16.09 110.159 34.244 44.146 18.566 87.88 44.971 132.026 44.971 44.146 0 87.88-26.405 132.026-28.88 44.146-2.888 87.88 18.566 110.159 28.88l21.867 10.727v82.929H0V.575Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="178.81" x2="528.104" y2="178.81" gradientUnits="userSpaceOnUse"><stop stop-color="#EDC575"/><stop offset="1" stop-color="#E6AB71"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/PY.svg b/public/Waves/PY.svg
deleted file mode 100644
index b875d8a..0000000
--- a/public/Waves/PY.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="528" height="207" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m528 126.775-22 2.633c-22 2.634-66 7.9-110-10.533s-88-60.567-132-68.467c-44-7.9-88 18.434-132 15.8-44-2.633-88-34.233-110-50.033L0 .375v206h528v-79.6Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="206.375" x2="528" y2="206.375" gradientUnits="userSpaceOnUse"><stop stop-color="#F9DE65"/><stop offset="1" stop-color="#FFC91E"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/Waves/RM.svg b/public/Waves/RM.svg
deleted file mode 100644
index f1dc5de..0000000
--- a/public/Waves/RM.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="529" height="150" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m0 .707 21.867 13.202c22.28 13.203 66.013 39.608 110.159 34.245C176.172 43.203 219.906 6.07 264.052.707c44.146-5.364 87.88 21.041 132.026 37.132 44.146 15.678 87.88 21.042 110.159 23.517l21.867 2.888v85.11H0V.707Z" fill="url(#a)"/><defs><linearGradient id="a" x1="0" y1="149.354" x2="528.104" y2="149.354" gradientUnits="userSpaceOnUse"><stop stop-color="#8D8D8D"/><stop offset="1" stop-color="#424242"/></linearGradient></defs></svg>
\ No newline at end of file
diff --git a/public/dark.svg b/public/dark.svg
deleted file mode 100644
index ef69bb9..0000000
--- a/public/dark.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<path fill-rule="evenodd" clip-rule="evenodd" d="M30 25.7375C29.1235 25.8837 28.2232 25.9597 27.3051 25.9597C18.3648 25.9597 11.1173 18.7465 11.1173 9.84854C11.1173 6.13948 12.3766 2.72316 14.4929 0C6.83533 1.2771 1 7.9048 1 15.889C1 24.7869 8.24752 32.0002 17.1878 32.0002C22.4014 32.0002 27.0393 29.5472 30 25.7375Z" fill="white"/>
-</g>
-<defs>
-<clipPath id="clip0">
-<rect width="32" height="32" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/light.svg b/public/light.svg
deleted file mode 100644
index 1c03848..0000000
--- a/public/light.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0)">
-<circle cx="16" cy="16" r="8" fill="black"/>
-<path d="M15 1C15 0.447715 15.4477 0 16 0C16.5523 0 17 0.447715 17 1V5C17 5.55228 16.5523 6 16 6C15.4477 6 15 5.55228 15 5V1Z" fill="black"/>
-<path d="M25.8995 4.68629C26.29 4.29577 26.9232 4.29577 27.3137 4.68629C27.7042 5.07682 27.7042 5.70998 27.3137 6.10051L24.4853 8.92893C24.0948 9.31946 23.4616 9.31946 23.0711 8.92893C22.6805 8.53841 22.6805 7.90524 23.0711 7.51472L25.8995 4.68629Z" fill="black"/>
-<path d="M31 15C31.5523 15 32 15.4477 32 16C32 16.5523 31.5523 17 31 17H27C26.4477 17 26 16.5523 26 16C26 15.4477 26.4477 15 27 15H31Z" fill="black"/>
-<path d="M27.3137 25.8995C27.7042 26.29 27.7042 26.9232 27.3137 27.3137C26.9232 27.7042 26.29 27.7042 25.8995 27.3137L23.0711 24.4853C22.6805 24.0948 22.6805 23.4616 23.0711 23.0711C23.4616 22.6805 24.0948 22.6805 24.4853 23.0711L27.3137 25.8995Z" fill="black"/>
-<path d="M15 27C15 26.4477 15.4477 26 16 26C16.5523 26 17 26.4477 17 27V31C17 31.5523 16.5523 32 16 32C15.4477 32 15 31.5523 15 31V27Z" fill="black"/>
-<path d="M7.51472 23.0711C7.90524 22.6805 8.53841 22.6805 8.92893 23.0711C9.31946 23.4616 9.31946 24.0948 8.92893 24.4853L6.10051 27.3137C5.70998 27.7042 5.07682 27.7042 4.68629 27.3137C4.29577 26.9232 4.29577 26.29 4.68629 25.8995L7.51472 23.0711Z" fill="black"/>
-<path d="M5 15C5.55228 15 6 15.4477 6 16C6 16.5523 5.55228 17 5 17H1C0.447715 17 -2.41411e-08 16.5523 0 16C2.41411e-08 15.4477 0.447715 15 1 15H5Z" fill="black"/>
-<path d="M8.92893 7.51472C9.31946 7.90524 9.31946 8.53841 8.92893 8.92893C8.53841 9.31946 7.90524 9.31946 7.51472 8.92893L4.68629 6.1005C4.29577 5.70998 4.29577 5.07682 4.68629 4.68629C5.07682 4.29577 5.70998 4.29577 6.10051 4.68629L8.92893 7.51472Z" fill="black"/>
-</g>
-<defs>
-<clipPath id="clip0">
-<rect width="32" height="32" fill="white"/>
-</clipPath>
-</defs>
-</svg>
diff --git a/public/theme.svg b/public/theme.svg
deleted file mode 100644
index 481435d..0000000
--- a/public/theme.svg
+++ /dev/null
@@ -1,83 +0,0 @@
-<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<style>.animation_989 {
-	animation: 1s ease-in-out 0s 1 normal forwards running animation_989;
-		transform: translateX(3022px) translateY(5292px) rotate(0deg);
-		width: 32px;
-		height: 32px;
-		rx: 0px;
-		opacity: 1;
-		fill: ;
-}
-@keyframes animation_989 {
-	0% {
-		transform: translateX(3022px) translateY(5292px) rotate(0deg);
-		width: 32px;
-		height: 32px;
-		rx: 0px;
-		opacity: 1;
-		fill: ;
-	}
-	100% {
-		transform: translateX(3022px) translateY(5292px) rotate(0deg);
-		width: 32px;
-		height: 32px;
-		rx: 0px;
-		opacity: 1;
-		fill: ;
-	}
-}.Vector_411 {
-	animation: 1s ease-in-out 0s 1 normal forwards running Vector_411;
-		opacity: 0;
-		transform: translateX(9px) translateY(9px) rotate(0deg);
-		width: 14px;
-		height: 14px;
-}
-@keyframes Vector_411 {
-	0% {
-		opacity: 0;
-		transform: translateX(9px) translateY(9px) rotate(0deg);
-		width: 14px;
-		height: 14px;
-	}
-	40% {
-		transform: translateX(9px) translateY(9px) rotate(0deg);
-		width: 14px;
-		height: 14px;
-		opacity: 0;
-	}
-	100% {
-		transform: translateX(1px) translateY(1px) rotate(0deg);
-		width: 30px;
-		height: 30px;
-		opacity: 1;
-	}
-}.Subtract_790 {
-	animation: 1s ease-in-out 0.3s 1 normal forwards running Subtract_790;
-		fill: rgba(255,255,255,1);
-}
-@keyframes Subtract_790 {
-	0% {
-		fill: rgba(255,255,255,1);
-	}
-	30% {
-		fill: rgba(255,255,255,1);
-	}
-	100% {
-		fill: rgba(0,0,0,1);
-	}
-}
-</style>
-<g clip-path="url(#clip_0_468)" class="animation_989" width="32" height="32" data-name="animation">
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path d="M14.0625 0.9375C14.0625 0.419733 14.4822 0 15 0C15.5178 0 15.9375 0.419733 15.9375 0.9375V4.6875C15.9375 5.20527 15.5178 5.625 15 5.625C14.4822 5.625 14.0625 5.20527 14.0625 4.6875V0.9375ZM24.2808 4.3934C24.6469 4.02728 25.2405 4.02728 25.6066 4.3934C25.9727 4.75951 25.9727 5.35311 25.6066 5.71922L22.955 8.37087C22.5888 8.73699 21.9952 8.73699 21.6291 8.37087C21.263 8.00476 21.263 7.41117 21.6291 7.04505L24.2808 4.3934ZM29.0625 14.0625C29.5803 14.0625 30 14.4822 30 15C30 15.5178 29.5803 15.9375 29.0625 15.9375H25.3125C24.7947 15.9375 24.375 15.5178 24.375 15C24.375 14.4822 24.7947 14.0625 25.3125 14.0625H29.0625ZM25.6066 24.2808C25.9727 24.6469 25.9727 25.2405 25.6066 25.6066C25.2405 25.9727 24.6469 25.9727 24.2808 25.6066L21.6291 22.955C21.263 22.5888 21.263 21.9952 21.6291 21.6291C21.9952 21.263 22.5888 21.263 22.955 21.6291L25.6066 24.2808ZM14.0625 25.3125C14.0625 24.7947 14.4822 24.375 15 24.375C15.5178 24.375 15.9375 24.7947 15.9375 25.3125V29.0625C15.9375 29.5803 15.5178 30 15 30C14.4822 30 14.0625 29.5803 14.0625 29.0625V25.3125ZM7.04505 21.6291C7.41117 21.263 8.00476 21.263 8.37087 21.6291C8.73699 21.9952 8.73699 22.5888 8.37087 22.955L5.71922 25.6066C5.35311 25.9727 4.75951 25.9727 4.3934 25.6066C4.02728 25.2405 4.02728 24.6469 4.3934 24.2808L7.04505 21.6291ZM4.6875 14.0625C5.20527 14.0625 5.625 14.4822 5.625 15C5.625 15.5178 5.20527 15.9375 4.6875 15.9375H0.9375C0.419733 15.9375 -2.26323e-08 15.5178 0 15C2.26323e-08 14.4822 0.419733 14.0625 0.9375 14.0625H4.6875ZM8.37087 7.04505C8.73699 7.41117 8.73699 8.00476 8.37087 8.37087C8.00476 8.73699 7.41117 8.73699 7.04505 8.37087L4.3934 5.71922C4.02728 5.35311 4.02728 4.75951 4.3934 4.3934C4.75951 4.02728 5.35311 4.02728 5.71922 4.3934L8.37087 7.04505Z" fill="black" data-name="Vector" class="Vector_411"/>
-	<path fill-rule="evenodd" clip-rule="evenodd" d="M8.03809 16.0001C12.4774 16.0001 16.0762 12.4184 16.0762 8.00007C16.0762 3.58175 12.4774 9.53674e-07 8.03809 9.53674e-07C3.59878 9.53674e-07 0 3.58175 0 8.00007C0 12.4184 3.59878 16.0001 8.03809 16.0001Z" fill="black" data-name="Subtract" class="Subtract_790" transform="translate(8 8)"/>
-</g>
-<defs><clipPath id="clip_0_468"><rect width="32" height="32"/></clipPath>
-</defs>
-</svg>
\ No newline at end of file
diff --git a/styles/card.module.css b/styles/card.module.css
index 883ddc7..220d865 100644
--- a/styles/card.module.css
+++ b/styles/card.module.css
@@ -1,7 +1,7 @@
 .backgroundImage {
 	position: absolute;
-	bottom: -1px;
-	left: -1px;
+	bottom: -5px;
+	left: 0;
 	width: calc(100% + 5px);
 	height: auto;
 	scale: stretch;
@@ -10,6 +10,18 @@
 	transition: filter 0.3s ease-in-out;
 }
 
+.backgroundGradient {
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	width: 100%;
+	height: 100%;
+	scale: stretch;
+	border-radius: 0;
+	filter: var(--theme-ui-colors-cardFilter);
+	transition: filter 0.3s ease-in-out;
+}
+
 .card {
 	border-radius: 17px;
 	width: 100%;
@@ -19,7 +31,6 @@
 	position: relative;
 	overflow: hidden;
 	margin: 100px;
-	filter: var(--theme-ui-colors-cardFilter);
 	transition: filter 0.3s ease-in-out;
 }
 
@@ -64,6 +75,7 @@
 .image {
 	height: 50px;
 	width: 50px;
+	border-radius: 50vw;
 }
 
 .subtext {
diff --git a/styles/header.module.css b/styles/header.module.css
index 7353e3d..09a850a 100644
--- a/styles/header.module.css
+++ b/styles/header.module.css
@@ -7,13 +7,21 @@
 	filter: var(--theme-ui-colors-cardFilter);
 	transition: filter 0.3s ease-in-out;
 }
+.backgroundGradient {
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	width: 100%;
+	height: 100%;
+	filter: var(--theme-ui-colors-cardFilter);
+	transition: filter 0.3s ease-in-out;
+}
 
 .header {
 	width: 100vw;
 	height: 100vh;
 	position: relative;
 	overflow: hidden;
-	filter: var(--theme-ui-colors-cardFilter);
 	transition: filter 0.3s ease-in-out;
 	display: flex;
 	flex-direction: column;
diff --git a/styles/navbar.module.css b/styles/navbar.module.css
index 5ad34ec..a80f54e 100644
--- a/styles/navbar.module.css
+++ b/styles/navbar.module.css
@@ -12,6 +12,7 @@
 
     width: 64px;
     max-height: 64px;
+    padding-bottom: -1px;
     height: auto;
 
     border-radius: 32px;