first commit

This commit is contained in:
LogolicusZ 2024-03-30 16:44:54 +01:00
commit 0f7fb522c6
78 changed files with 5117 additions and 0 deletions

37
.github/workflows/deployontag.yml vendored Normal file
View file

@ -0,0 +1,37 @@
name: Deploy on Tag
on:
push:
tags:
- '*'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '21'
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn run build
- name: Upload to SSH host
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.SSH_HOST }}
username: logo
key: ${{ secrets.SSH_PRIVATE_KEY }}
passphrase: ${{ secrets.SSH_PASSPHRASE }}
port: 22
source: "build/"
target: ${{ secrets.SSH_TARGET_DIRECTORY }}
overwrite: true

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

1
.npmrc Normal file
View file

@ -0,0 +1 @@
engine-strict=true

13
.prettierignore Normal file
View file

@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

8
.prettierrc Normal file
View file

@ -0,0 +1,8 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}

38
README.md Normal file
View file

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

1567
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

31
package.json Normal file
View file

@ -0,0 +1,31 @@
{
"name": "webframe",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.4.3",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.12"
},
"type": "module",
"dependencies": {
"gsap": "^3.12.2",
"sass": "^1.69.5"
}
}

0
src/animate.js Normal file
View file

12
src/app.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
}
export {};

18
src/app.html Normal file
View file

@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<title>LogolicusZ's Space</title>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.svg">
<!-- <link rel="icon" href="%sveltekit.assets%/favicon.ico"> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

400
src/app.scss Normal file
View file

@ -0,0 +1,400 @@
@import url('https://fonts.cdnfonts.com/css/general-sans?styles=135312,135307,135305,135306,135308,135309,135310,135311,135313,135314,135303,135304');
// Color Palette Light mode
$space-beige: #FEFCED; //Background
$space-black: #181816; //Text
$space-purple: #7b41f5; //Accent
// Color Palette Dark mode
$universe-black: #181816; //Background
$universe-beige: #FEFCED; //Text
$lime-green: #C0FE1F; //Accent
// Font Family
$font-family: 'General Sans', sans-serif;
/* general style */
html,
body,
main {
font-family: 'General Sans', sans-serif;
margin: 0;
color: #181816;
background-color: $space-beige;
margin-bottom: 0px;
scroll-behavior: smooth;
margin-left: auto;
margin-right: auto;
min-height: 100%;
}
@media (prefers-color-scheme: dark) {
html,
body,
main {
font-family: 'General Sans', sans-serif;
margin: 0;
color: #FEFCED;
background-color: #181816;
margin-bottom: 0px;
scroll-behavior: smooth;
margin-left: auto;
margin-right: auto;
}
}
main {
max-width: 1512px;
}
.nav-container {
display: flex;
justify-content: center;
position: sticky;
top: 0;
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
z-index: 100;
}
.nav {
display: flex;
flex-direction: row;
align-items: center;
position: sticky;
width: 98%;
border-bottom: 1px;
border-bottom-color: #181816;
border-bottom-style: solid;
background: rgba(254, 252, 237, 0.9);
.nav-items {
margin-left: auto;
}
}
@media (prefers-color-scheme: dark) {
.nav {
border-bottom-color: rgba(254, 252, 237, 0.9);;
background: rgba(24, 24, 22, 0.9);
}
}
.about {
background-color: transparent;
font-size: 30px;
border-color: transparent;
font-family: 'General Sans', sans-serif;
font-weight: 200;
cursor: pointer;
transition: 0.5s ease;
user-select: none;
color: #181816;
}
@media (prefers-color-scheme: dark) {
.about {
color: #FEFCED;
}
}
.about:hover {
color: #7b41f5;
}
@media (prefers-color-scheme: dark) {
.about:hover {
color: #C0FE1F;
}
}
.about:active {
transform: scale(0.9);
color: #7b41f5;
}
@media (prefers-color-scheme: dark) {
.about:active {
color: #C0FE1F;
}
}
.gallery {
background-color: $space-purple;
font-size: 30px;
border-color: transparent;
border: 0px solid transparent;
border-radius: 30px;
color: #f4f1eb;
width: 164px;
font-weight: 200;
font-family: 'General Sans', sans-serif;
cursor: pointer;
transition: 0.2s ease;
user-select: none;
padding: 5px 0 5px 0;
outline: none;
}
@media (prefers-color-scheme: dark) {
.gallery {
background-color: #C0FE1F;
color:#181816;
}
}
.gallery:hover {
opacity: 0.9;
box-shadow:rgb(123, 65, 245) 0px 0px 20px 0px;
transition-duration: .3s;
outline: none;
}
@media (prefers-color-scheme: dark) {
.gallery:hover {
box-shadow:rgb(192, 254, 31) 0px 0px 20px 0px;
outline: none;
}
}
.gallery:active {
opacity: 0.8;
transform: scale(0.96);
}
.logo {
width: 80px;
height: 80px;
user-select: none;
text-decoration: none;
}
.logo-link {
text-decoration: none;
}
@media (prefers-color-scheme: light) {
.logo {
visibility: 1;
}
}
.logodark {
width: 80px;
height: 80px;
user-select: none;
visibility: hidden;
}
@media (prefers-color-scheme: dark) {
.logodark {
visibility: visible;
display: inline;
}
.logo {
visibility: hidden;
display: none;
}
}
.footer {
display: flex;
width: 98%;
justify-content: center;
align-items: center;
}
.rights {
font-size: 1.3em;
text-align: center;
user-select: none;
}
.footer.button-container {
display: block;
margin: 0;
}
.button-container {
display: flex;
align-items: center;
margin-left: auto;
}
.Footer-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 0.5em;
}
.arrow {
height: 30px;
width: 30px;
}
.Btn {
display: flex;
align-items: center;
justify-content: flex-start;
width: 45px;
height: 45px;
border-radius: calc(45px/2);
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
transition-duration: .3s;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
background: #181816;
}
.arrow-up {
width: 100%;
font-size: 2.2em;
color: #f4f1eb;
transition-duration: .3s;
display: flex;
align-items: center;
justify-content: center;
}
/* text */
.text-top {
position: absolute;
right: 0%;
width: 0%;
opacity: 0;
color: #f4f1eb;
font-size: 1.4em;
font-weight: 500;
transition-duration: .3s;
}
/* hover effect on button width */
.Btn:hover {
width: 8em;
transition-duration: .3s;
background: #7b41f5;
box-shadow:rgb(123, 65, 245) 0px 0px 20px 0px;
}
.Btn:hover .arrow-up {
width: 30%;
transition-duration: .3s;
padding-left: 15px;
}
/* hover effect button's text */
.Btn:hover .text-top {
opacity: 1;
width: 70%;
right: -15%;
transition-duration: .3s;
padding-right: 15px;
}
/* button click effect*/
.Btn:active {
transform: translate(2px, 2px);
}
@media (prefers-color-scheme: dark) {
.text-top {
color: #181816;
}
.Btn:hover {
box-shadow:rgb(192, 254, 31) 0px 0px 20px 0px;
background-color: #C0FE1F;
}
.arrow-up {
filter: invert(1);
}
.Btn {
background: #FEFCED;
}
}
/* Scrollbars */
// Firefox
* {
scrollbar-width: thin;
scrollbar-color: #fefced;
/* Set the thumb and track colors */
background-clip: padding-box;
/* Remove the background */
}
// Webkit & Blink
*::-webkit-scrollbar {
width: 6px;
background-color: #fefced;
background-clip: padding-box;
/* Remove the background */
}
*::-webkit-scrollbar-thumb {
background-color: #7b41f5;
border-radius: 5px;
}
*::-webkit-scrollbar-track {
background-color: #fefced;
/* Set a fallback color */
}
*::-webkit-scrollbar-track-piece {
background-color: #fefced;
}
@media (prefers-color-scheme: dark) {
* {
scrollbar-width: thin;
scrollbar-color: #fefced;
/* Set the thumb and track colors */
background-clip: padding-box;
/* Remove the background */
}
// Webkit & Blink
*::-webkit-scrollbar {
width: 6px;
background-color: #181816;;
background-clip: padding-box;
/* Remove the background */
}
*::-webkit-scrollbar-thumb {
background-color: #C0FE1F;
border-radius: 5px;
}
*::-webkit-scrollbar-track {
background-color: #181816;;
/* Set a fallback color */
}
*::-webkit-scrollbar-track-piece {
background-color: #181816;;
}
}

1
src/lib/index.ts Normal file
View file

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

69
src/routes/+layout.svelte Normal file
View file

@ -0,0 +1,69 @@
<script lang="ts">
import '../app.scss';
import '../styles/Mobile/app-mobile.scss';
import { fly } from 'svelte/transition';
export let data;
function smoothScrollTo(elementId: string) {
const element = document.getElementById(elementId);
if (element) {
element.scrollIntoView({
behavior: 'smooth'
});
}
}
function scrollToTop() {
// goto('/');
smoothScrollTo('section-1');
smoothScrollTo('section-5');
}
function handleKeydown(event: KeyboardEvent) {
// Trigger redirection on Enter key or Space bar
if (event.key === 'Enter' || event.key === ' ') {
scrollToTop();
}
}
</script>
<div class="nav-container" id="top">
<div class="nav">
<div class="nav-logo">
<a class="logo-link" href="/">
<img class="logo" src="assets/logo1.svg" alt="LogolicusZ Logo" />
<img class="logodark" src="assets/logodark.svg" alt="LogolicusZ Logo" />
</a>
</div>
<div class="nav-items">
<a href="/#section-3">
<button class="about">About</button>
</a>
<a href="/gallery">
<button class="gallery">Gallery</button>
</a>
</div>
</div>
</div>
{#key data.pathname}
<main in:fly={{ x: -10, duration: 250, delay: 125 }} out:fly={{ x: 5, duration: 125 }}>
<slot />
</main>
{/key}
<div class="Footer-container">
<div class="footer">
<p class="rights">&copy; LogolicusZ 2023-2024, All rights reserved.</p>
<div class="button-container">
<a on:click={() => scrollToTop()} role="button" href="#top">
<button class="Btn">
<div class="arrow-up"><img src="../icons/arrowup.svg" class="arrow" alt="arrow-up" /></div>
<div class="text-top">Top</div>
</button>
</a>
</div>
</div>
</div>

8
src/routes/+layout.ts Normal file
View file

@ -0,0 +1,8 @@
export const load = ({ url }) => {
const { pathname } = url;
return {
pathname
};
};
export const prerender = true

19
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,19 @@
<script lang="ts">
import Home from './Home.svelte';
import Text from './Text.svelte';
import About from './About.svelte';
// import Designs from './Designs.svelte';
// import Projects from './Projects.svelte';
</script>
<div class="container">
<Home />
<Text />
<About />
<!-- <Designs />
<Projects /> -->
</div>
<style lang="scss">
@import '../app.scss';
</style>

43
src/routes/About.svelte Normal file
View file

@ -0,0 +1,43 @@
<body>
<section id="section-3">
<div class="Title">
<div id="addon1">
<img src="/icons/star.svg" alt="circle" class="light" />
<img src="/icons/stardark.svg" alt="circledark" class="dark" />
</div>
<div class="title1">
<h1>About</h1>
</div>
<div id="addon2">
<img src="/icons/star.svg" alt="circle" class="light1" />
<img src="/icons/stardark.svg" alt="circledark" class="dark1"/>
</div>
</div>
<div class="about-container">
<div class="About">
<div id="Picture">
<img class="picture" src="assets/pfp-aboutme.JPG" alt="About me" />
</div>
<div class="text-container">
<h2 class="who">Who am I?</h2>
<p class="text-1">I am an independent artist dabbling into the world of photography.</p>
<p class="text-2">
When I am not taking photos or painting, I enjoy studying frontend development and
designing.
</p>
</div>
</div>
</div>
<!-- <div class="button-gallery-container">y
<a href="/gallery">
<button class="Gallery-About">Gallery</button>
</a>
</div> -->
</section>
</body>
<style lang="scss">
@import '../app.scss';
@import '../styles/about.scss';
@import '../styles/Mobile/about-mobile.scss';
</style>

61
src/routes/Designs.svelte Normal file
View file

@ -0,0 +1,61 @@
<body>
<section id="section-6" class="section-6">
<div class="Title">
<div id="addon1">
<img src="/icons/starweirdlight.svg" alt="circle" class="light" />
<img src="/icons/Starweird.svg" alt="circledark" class="dark" />
</div>
<div class="title1">
<h1>Designs</h1>
</div>
<div id="addon2">
<img src="/icons/starweirdlight.svg" alt="circle" class="light1" />
<img src="/icons/Starweird.svg" alt="circledark" class="dark1" />
</div>
</div>
<div class="container">
<div class="box">
<img src="assets/logodark.svg" class="logodark" />
<img src="assets/logo1.svg" class="logo3" />
<div>
<strong>PERSONAL LOGO</strong>
<span>CURRENT</span> <span>09/23</span>
</div>
</div>
<a class="dashinit-link" href="https://gitpot.dev/dashinit/cli">
<div class="box">
<img src="assets/dashinitdark.svg" class="dashinitdark" />
<img src="assets/dashinitlight.svg" class="dashinit" />
<div class="desc">
<strong>DASHINIT</strong>
<span>CURRENT</span> <span>09/23</span>
</div>
</div>
</a>
<div class="box">
<img src="assets/old23dark.svg" class="old23dark" />
<img src="assets/old23light.svg" class="old23" />
<div>
<strong>PERSONAL LOGO</strong>
<span>OUTDATED</span> <span>04/23</span>
</div>
</div>
<div class="box">
<img src="assets/old22dark.svg" class="old22dark" />
<img src="assets/22oldlight.svg" class="old22" />
<div>
<strong>PERSONAL LOGO</strong>
<span>OUTDATED</span> <span>12/22</span>
</div>
</div>
</div>
</section>
</body>
<style lang="scss">
@import '../app.scss';
@import '../styles/designs.scss';
@import '../styles/Mobile/designs-mobile.scss';
</style>

48
src/routes/Home.svelte Normal file
View file

@ -0,0 +1,48 @@
<body>
<section id="section-1">
<div class="landing">
<div class="hey">
<p>Hey I'm</p>
</div>
<div class="name">
<p>LogolicusZ</p>
</div>
<div class="arrowdown">
<a href="#section-2">
<svg
class="arrowdown"
width="800px"
height="800px"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<style>
path {
fill: #181816;
}
@media (prefers-color-scheme: dark) {
path {
fill: #fefced;
}
}
</style>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M12 3C12.5523 3 13 3.44772 13 4V17.5858L18.2929 12.2929C18.6834 11.9024 19.3166 11.9024 19.7071 12.2929C20.0976 12.6834 20.0976 13.3166 19.7071 13.7071L12.7071 20.7071C12.3166 21.0976 11.6834 21.0976 11.2929 20.7071L4.29289 13.7071C3.90237 13.3166 3.90237 12.6834 4.29289 12.2929C4.68342 11.9024 5.31658 11.9024 5.70711 12.2929L11 17.5858V4C11 3.44772 11.4477 3 12 3Z"
/>
</svg>
</a>
</div>
</div>
</section>
</body>
<style lang="scss">
@import '../app.scss';
@import '../styles/home.scss';
@import '../styles/Mobile/home-mobile.scss';
</style>

View file

@ -0,0 +1,62 @@
<body>
<section id="section-7" class="section-7">
<div class="Title">
<div id="addon1">
<img src="/icons/cleanstarlight.svg" alt="circle" class="light" />
<img src="/icons/cleanstar.svg" alt="circledark" class="dark" />
</div>
<div class="title1">
<h1>Projects</h1>
</div>
<div id="addon2">
<img src="/icons/cleanstarlight.svg" alt="circle" class="light1" />
<img src="/icons/cleanstar.svg" alt="circledark" class="dark1"/>
</div>
</div>
<div class="card-container">
<a class="Old-Portfolio-link" href="https://logolicusz.github.io/Website_Brutalism/">
<div class="card">
<div class="tools">
<div class="circle">
<span class="red box"></span>
</div>
<div class="circle">
<span class="yellow box"></span>
</div>
<div class="circle">
<span class="green box"></span>
</div>
</div>
<div class="card_content">
<img src="/assets/ScreenOld.png" class="image" />
</div>
</div>
</a>
<a class="Explore-link" href="https://explorecraft.net">
<div class="card">
<div class="tools">
<div class="circle">
<span class="red box"></span>
</div>
<div class="circle">
<span class="yellow box"></span>
</div>
<div class="circle">
<span class="green box"></span>
</div>
</div>
<div class="card_content">
<img src="/assets/ScreenExplore.png" class="image" />
</div>
</div>
</a>
</div>
</body>
<style lang="scss">
@import '../app.scss';
@import '../styles/projects.scss';
@import '../styles/Mobile/projects-mobile.scss';
</style>

16
src/routes/Text.svelte Normal file
View file

@ -0,0 +1,16 @@
<body>
<section id="section-2">
<div class="text">
<p>
I envision and bring to life compelling digital encounters that ignite inspiration and
foster connections, achieved through a seamless blend of photography and design.
</p>
</div>
</section>
</body>
<style lang="scss">
@import '../app.scss';
@import '../styles/text.scss';
@import '../styles/Mobile/text-mobile.scss';
</style>

View file

@ -0,0 +1,50 @@
<div class="container">
<body>
<div id="top">
<section id="section-5">
<div class="Title">
<div id="addon1">
<img src="/icons/klammer1.svg" alt="circle" class="light" />
<img src="/icons/klammer1dark.svg" alt="circle" class="dark" />
</div>
<div class="title-gallery">
<p>Gallery</p>
</div>
<div id="addon2">
<img src="/icons/klammer1.svg" alt="circle" class="light1" />
<img src="/icons/klammer1dark.svg" alt="circle" class="dark1" />
</div>
</div>
<div class="Gallery-container">
<div class="Gallery">
<img class="img1 img" src="/assets/img/picture1.png" alt="1" />
<img class="img2" src="/assets/img/picture2.png" alt="2" />
<img class="img3" src="/assets/img/picture3.png" alt="3" />
<img class="img4" src="/assets/img/Picture4.JPG" alt="4" />
<img class="img5" src="/assets/img/Picture5.JPG" alt="5" />
<img class="img6" src="/assets/img/picture6.jpg" alt="6" />
<img class="img7" src="/assets/img/picture7.jpg" alt="7" />
<img class="img8" src="/assets/img/picture8.jpg" alt="8" />
<img class="img9" src="/assets/img/Picture9.JPG" alt="9" />
<img class="img10" src="/assets/img/Picture10.JPG" alt="10" />
</div>
</div>
</section>
</div>
</body>
</div>
<style lang="scss">
@import '../../app.scss';
@import '../../styles/gallery.scss';
@import '../../styles/Mobile/gallery-mobile.scss';
</style>

View file

@ -0,0 +1,128 @@
@media (max-width: 850px) {
.title1 h1 {
font-size: 65px;
}
#addon2 img {
width: 3em;
height: 3em;
margin-right: 1em;
}
#addon1 img {
width: 3em;
height: 3em;
margin-left: 1em;
}
.About {
flex-direction: column;
gap: 0;
}
.who {
font-size: 60px;
}
.text-1 {
font-size: 20px;
}
.text-2 {
font-size: 20px;
}
}
@media (max-width: 768px) {
.title1 h1 {
font-size: 90px;
margin-left: -0.2em;
margin-right: -0.2em;
}
#addon2 img {
width: 2em;
height: 2em;
}
#addon1 img {
width: 2em;
height: 2em;
}
.About {
flex-direction: column;
gap: 0;
margin-top: 0px;
}
.picture {
width: 363px;
height: 470px;
}
.who {
font-size: 54px;
}
.text-1 {
font-size: 18px;
}
.text-2 {
font-size: 18px;
}
}
@media (max-width: 380px) {
.title1 h1 {
font-size: 75px;
margin-left: -0.3em;
margin-right: -0.3em;
}
#addon2 img {
width: 1.8em;
height: 1.8em;
}
#addon1 img {
width: 1.8em;
height: 1.8em;
}
.About {
flex-direction: column;
gap: 0;
margin-top: 0px;
}
.picture {
height: 25em;
width: 20em;
}
.who {
font-size: 45px;
}
.text-1 {
font-size: 15px;
}
.text-2 {
font-size: 15px;
}
}

View file

@ -0,0 +1,105 @@
@media (max-width: 850px) {
.about {
display: none;
}
.rights {
font-size: 0.9em;
}
.nav {
width: 95%;
}
.logo {
width: 70px;
height: 70px;
}
.logodark {
width: 70px;
height: 70px;
}
.gallery {
font-size: 30px;
width: 154px;
pointer-events: none;
}
main {
max-width: 95%;
}
.footer {
width: 90%;
}
.Btn {
pointer-events: none;
}
}
@media (max-width: 600px) {
main {
max-width: 95%;
}
}
@media (max-width: 500px) {
.about {
display: none;
}
.rights {
font-size: 0.8em;
}
.nav {
width: 95%;
}
.logo {
width: 70px;
height: 70px;
}
.logodark {
width: 70px;
height: 70px;
}
.gallery {
font-size: 30px;
width: 154px;
pointer-events: none;
}
main {
max-width: 90%;
}
.footer {
width: 90%;
}
.Btn {
pointer-events: none;
height: 40px;
width: 40px;
}
.arrow {
height: 25px;
width: 25px;
}
.Footer-container {
padding-bottom: 1em;
}
}

View file

@ -0,0 +1,56 @@
@media (max-width: 678px) {
#section-6 {
height: 155vh;
}
.title1 h1 {
font-size: 75px;
margin-left: -0.3em;
margin-right: -0.3em;
}
#addon2 img {
width: 2em;
height: 2em;
margin-right: 0em;
}
#addon1 img {
width: 2em;
height: 2em;
margin-left: 0;
}
.container {
flex-direction: column;
margin-bottom: 1em;
pointer-events: none;
justify-content: space-around;
}
.container .box {
width: 16.625em;
height: 9.7125em;
}
.container .box .logodark,
.dashinitdark,
.old23dark,
.old22dark,
.dashinit,
.old23,
.old22 {
width: 5.6em;
height: 5.6em ;
}
.container .box .logo3 {
width: 5.6em;
height: 5.6em ;
}
}

View file

@ -0,0 +1,118 @@
@media (max-width: 650px) {
.Gallery-container {
flex-direction: column;
margin-bottom: 1em;
}
}
@media (max-width: 850px) {
.Gallery img {
margin-bottom: 0;
height: 30em;
width: 22em;
}
p {
font-size: 90px;
}
#addon2 img {
width: 1.8em;
height: 1.8em;
}
#addon1 img {
width: 1.8em;
height: 1.8em;
}
.img1,
.img2,
.img3,
.img4,
.img5,
.img6,
.img7,
.img8,
.img9,
.img10 {
pointer-events: none;
}
}
@media (max-width: 768px) {
.Gallery img {
margin-bottom: 0;
height: 30em;
width: 22em;
}
p {
font-size: 80px;
margin-left: -0.2em;
margin-right: -0.2em;
}
#addon2 img {
width: 2em;
height: 2em;
margin-right: 0em;
}
#addon1 img {
width: 2em;
height: 2em;
margin-left: 0;
}
.img1,
.img2,
.img3,
.img4,
.img5,
.img6,
.img7,
.img8,
.img9,
.img10 {
pointer-events: none;
}
}
@media (max-width: 380px) {
.Gallery img {
margin-bottom: 0;
height: 27em;
width: 22em;
}
p {
font-size: 75px;
margin-left: -0.3em;
margin-right: -0.3em;
}
#addon2 img {
width: 1.8em;
height: 1.8em;
margin-right: 0em;
}
#addon1 img {
width: 1.8em;
height: 1.8em;
margin-left: 0;
}
.img1,
.img2,
.img3,
.img4,
.img5,
.img6,
.img7,
.img8,
.img9,
.img10 {
pointer-events: none;
}
}

View file

@ -0,0 +1,131 @@
@media (max-width: 850px) {
.hey {
font-size: 30px;
}
.name {
font-size: 110px;
letter-spacing: -7px;
margin-top: 10px;
}
.arrowdown {
width: 3em;
height: 3em;
svg {
width: 3em;
height: 3em;
}
}
}
@media (max-width: 678px) {
.hey {
font-size: 27px;
}
.name {
font-size: 85px;
letter-spacing: -7px;
margin-top: 10px;
}
.arrowdown {
width:2em;
height: 2em;
svg {
width: 2em;
height: 2em;
}
}
div.landing {
height: 70vh;
}
@-moz-keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-moz-transform: translateY(0);
transform: translateY(0);
}
40% {
-moz-transform: translateY(-20px);
transform: translateY(-20px);
}
60% {
-moz-transform: translateY(-5px);
transform: translateY(-5px);
}
}
@-webkit-keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
60% {
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
}
}
@keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-moz-transform: translateY(-20px);
-ms-transform: translateY(-20px);
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
60% {
-moz-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
}
}
}
@media (max-width: 380px) {
.hey {
font-size: 23px;
}
.name {
font-size: 75px;
letter-spacing: -7px;
margin-top: 14px;
}
div.landing {
height: 70vh;
}
}

View file

@ -0,0 +1,43 @@
@media (max-width: 678px) {
#section-6 {
height: 100vh;
}
.card-container {
flex-direction: column;
margin-bottom: 1em;
}
.title1 h1 {
font-size: 75px;
margin-left: -0.3em;
margin-right: -0.3em;
}
#addon2 img {
width: 2em;
height: 2em;
margin-right: 0em;
}
#addon1 img {
width: 2em;
height: 2em;
margin-left: 0;
}
.card {
width: 21em;
height: 15.7em;
margin-bottom: 1em;
pointer-events: none;
}
.image {
width: 21em;
height: 13.2em;
}
}

View file

@ -0,0 +1,20 @@
@media (max-width: 850px) {
.text {
font-size: 35px;
letter-spacing: -2.5px;
}
}
@media (max-width: 678px) {
.text {
font-size: 30px;
letter-spacing: -2.4px;
}
}
@media (max-width: 380px) {
.text {
font-size: 29px;
letter-spacing: -2.3px;
}
}

122
src/styles/about.scss Normal file
View file

@ -0,0 +1,122 @@
#section-3 {
height: auto;
margin-top: 30px;
margin-bottom: 30px;
scroll-snap-align: start;
}
.about-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 2em;
}
.About {
display: flex;
font-weight: 200;
margin-top: 50px;
height: auto;
gap: 3em;
align-items: center;
justify-content: center;
width: 75%;
}
.Title {
display: flex;
justify-content: center;
align-items: center;
gap: 2em;
}
.title1 h1 {
font-weight: 500;
margin: 0;
user-select: none;
font-size: 130px;
}
#addon1 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
#addon2 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
.light,
.light1 {
visibility: visible;
display: inline;
}
.dark,
.dark1 {
visibility: hidden;
display: none;
}
@media (prefers-color-scheme: dark) {
.light,
.light1 {
visibility: hidden;
display: none;
}
.dark,
.dark1 {
visibility: visible;
display: inline;
}
}
.picture {
width: 441px;
height: 588px;
border-radius: 5px;
user-select: none;
}
.who {
font-size: 80px;
font-weight: 600;
margin-bottom: 0;
margin: 0;
text-align: left;
}
.text-1 {
font-size: 25px;
font-weight: 400;
}
.text-2 {
font-size: 25px;
font-weight: 400;
}
.text-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}

220
src/styles/designs.scss Normal file
View file

@ -0,0 +1,220 @@
#section-6 {
height: 85vh;
margin-top: 8em;
scroll-snap-align: start;
width: 100%;
margin-bottom: 1em;
}
.Title {
display: flex;
justify-content: center;
align-items: center;
gap: 2em;
}
.title1 h1 {
font-weight: 500;
margin: 0;
user-select: none;
font-size: 130px;
}
#addon1 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
#addon2 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
.light,
.light1 {
visibility: visible;
display: inline;
}
.dark,
.dark1 {
visibility: hidden;
display: none;
}
@media (prefers-color-scheme: dark) {
.light,
.light1 {
visibility: hidden;
display: none;
}
.dark,
.dark1 {
visibility: visible;
display: inline;
}
}
.container {
color: #FEFCED;
position: relative;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
gap: 2em;
margin-top: 5em;
margin-bottom: 5em;
width: 100%;
flex-wrap: wrap;
}
.container .box {
width: 11.875em;
height: 13.875em;
padding: 1rem;
background-color: #282622;
border: 1px solid #605C54;
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border-radius: 0.7rem;
transition: all ease 0.3s;
}
.container .box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
justify-content: space-between;
top: 0;
}
.container .box .logo3,
.dashinit,
.old23,
.old22 {
height: 8em;
width: 8em;
user-select: none;
position: absolute;
top: 10;
}
.container .box .logodark,
.dashinitdark,
.old23dark,
.old22dark {
height: 8em;
width: 8em;
visibility: hidden;
user-select: none;
position: relative;
top: 0;
}
.dashinit-link {
text-decoration: none;
color: #FEFCED;
}
.container .box div strong {
display: block;
margin-bottom: 0.5rem;
}
.container .box div p {
margin: 0;
font-size: 0.9em;
font-weight: 300;
letter-spacing: 0.1em;
}
.container .box div span {
font-size: 0.7rem;
font-weight: 300;
}
.container .box div span:nth-child(3) {
font-weight: 500;
margin-right: 0.2rem;
}
.container .box:hover {
box-shadow: 0px 0px 20px 1px #C0FE1F;
border: 1px solid #605C54;
}
@media (prefers-color-scheme: light) {
.container .box .logo3,
.dashinit,
.old23,
.old22 {
visibility: 1;
}
}
@media (prefers-color-scheme: dark) {
.container .box .logodark,
.dashinitdark,
.old23dark,
.old22dark {
visibility: visible;
display: inline;
}
.container .box .logo3,
.dashinit,
.old23,
.old22 {
visibility: hidden;
display: none;
}
}
@media (prefers-color-scheme: light) {
.container .box:hover {
box-shadow: 0px 0px 20px 1px #7b41f5;
border: 1px solid #C5C4B9;
}
.container .box {
background-color: #ECEADC;
border: 1px solid #C5C4B9;
}
.container {
color: #181816;
}
.dashinit-link {
color: #181816;
}
}

126
src/styles/gallery.scss Normal file
View file

@ -0,0 +1,126 @@
.section-5 {
height: 100vh;
}
.Title {
display: flex;
justify-content: center;
align-items: center;
gap: 2em;
}
.title-gallery {
font-size: 130px;
font-weight: 500;
margin: 0;
user-select: none;
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
}
#addon1 img {
user-select: none;
}
#addon2 img {
transform: scaleX(-1);
user-select: none;
}
.light,
.light1 {
visibility: visible;
display: inline;
}
.dark,
.dark1 {
visibility: hidden;
display: none;
}
@media (prefers-color-scheme: dark) {
.light,
.light1 {
visibility: hidden;
display: none;
}
.dark,
.dark1 {
visibility: visible;
display: inline;
}
}
.Gallery-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.Gallery {
display: flex;
justify-content: center;
height: auto;
font-weight: 200;
gap: 2em;
align-items: center;
width: 70%;
flex-direction: row;
flex-wrap: wrap;
}
.Gallery img {
height: 37em;
width: 28em;
border-radius: 8px;
display: block;
margin-left: auto;
margin-right: auto;
}
.img1,
.img2,
.img3,
.img4,
.img5,
.img6,
.img7,
.img8,
.img9,
.img10 {
user-select: none;
transition: transform 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}
.img1:hover,
.img2:hover,
.img3:hover,
.img4:hover,
.img5:hover,
.img6:hover,
.img7:hover,
.img8:hover,
.img9:hover,
.img10:hover {
transform: scale(1.05);
border-radius: 16px;
}

126
src/styles/home.scss Normal file
View file

@ -0,0 +1,126 @@
div.landing {
display: flex;
height: 90vh;
font-weight: 200;
gap: 0em;
flex-direction: column;
align-items: center;
justify-content: center;
}
.hey {
display: grid;
place-items: center;
font-size: 50px;
align-items: center;
font-weight: 400;
user-select: none;
p {
margin: 0;
user-select: none;
}
}
.name {
font-weight: 600;
font-style: italic;
font-size: 270px;
letter-spacing: -15px;
place-items: center;
p {
margin: 0;
margin-top: -30px;
user-select: none;
}
}
.arrowdown {
width: 3em;
height: 3em;
svg {
width: 3em;
height: 3em;
-webkit-animation-name: jumping-arrow;
-moz-animation-name: jumping-arrow;
animation-name: jumping-arrow;
-webkit-animation-duration: 2s;
-moz-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-iteration-count: once;
-moz-animation-iteration-count: once;
animation-iteration-count: once;
-webkit-animation-fill-mode: once;
animation-fill-mode: once;
-webkit-animation-delay: 2s; /* Delay of 2 seconds */
-moz-animation-delay: 2s; /* Delay of 2 seconds */
animation-delay: 2s; /* Delay of 2 seconds */
cursor: pointer;
}
}
@-moz-keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-moz-transform: translateY(0);
transform: translateY(0);
}
40% {
-moz-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-moz-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@-webkit-keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes jumping-arrow {
0%,
20%,
50%,
80%,
100% {
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-moz-transform: translateY(-30px);
-ms-transform: translateY(-30px);
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-moz-transform: translateY(-15px);
-ms-transform: translateY(-15px);
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}

154
src/styles/projects.scss Normal file
View file

@ -0,0 +1,154 @@
#section-6 {
height: 100vh;
margin-top: 8em;
margin-bottom: 30px;
scroll-snap-align: start;
}
.card-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 8em;
margin-top: 5em;
gap: 1.5em;
}
.Title {
display: flex;
justify-content: center;
align-items: center;
gap: 2em;
}
.title1 h1 {
font-weight: 500;
margin: 0;
user-select: none;
font-size: 130px;
}
#addon1 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
#addon2 img {
user-select: none;
width: 3.5em;
height: 3.5em;
}
.light,
.light1 {
visibility: visible;
display: inline;
}
.dark,
.dark1 {
visibility: hidden;
display: none;
}
@media (prefers-color-scheme: dark) {
.light,
.light1 {
visibility: hidden;
display: none;
}
.dark,
.dark1 {
visibility: visible;
display: inline;
}
}
.card {
width: 35em;
height: 24.5em;
margin: 0;
background-color: rgba(40, 38, 34,);
border-radius: 8px;
z-index: 1;
transition: all ease 0.3s;
border: 1px solid #605C54;
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
}
.tools {
display: flex;
align-items: center;
padding: 9px;
}
.circle {
padding: 0 4px;
}
.box {
display: inline-block;
align-items: center;
width: 10px;
height: 10px;
padding: 1px;
border-radius: 50%;
}
.red {
background-color: #ff605c;
}
.yellow {
background-color: #ffbd44;
}
.green {
background-color: #00ca4e;
}
.card:hover {
box-shadow: 0px 0px 20px 1px #C0FE1F;
border: 1px solid #605C54;
}
.image {
height: 22em;
width: 35em;
border-radius: 0px 0px 8px 8px;
}
@media (prefers-color-scheme: light) {
.card:hover {
box-shadow: 0px 0px 20px 1px #7b41f5;
border: 1px solid #C5C4B9;
}
.card {
background-color: #ECEADC;
border: 1px solid #C5C4B9;
}
.image {
border-radius: 0px 0px 8px 8px;
}
}

15
src/styles/text.scss Normal file
View file

@ -0,0 +1,15 @@
#section-2 {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
// margin-bottom: 50px;
}
.text {
margin-left: 2em;
margin-right: 2em;
font-size: 70px;
font-weight: 500;
letter-spacing: -5px;
}

0
src/variables.scss Normal file
View file

View file

@ -0,0 +1,78 @@
<svg width="381" height="364" viewBox="0 0 381 364" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="115.68" width="201.6" height="285.6" rx="18.48" transform="rotate(-35.0162 0 115.68)" fill="#191816"/>
<circle cx="168.417" cy="175.135" r="81.9" transform="rotate(-35.02 168.417 175.135)" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M122.152 108.247L215.779 241.861" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M235.833 127.894L101.001 222.375" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M174.57 170.822C187.61 189.432 198.708 206.768 206.11 219.752C209.812 226.246 212.582 231.64 214.21 235.555C215.025 237.516 215.544 239.085 215.756 240.226C215.862 240.799 215.885 241.238 215.843 241.554C215.801 241.872 215.702 242.006 215.619 242.065C215.536 242.123 215.375 242.17 215.062 242.101C214.751 242.033 214.346 241.861 213.844 241.566C212.844 240.977 211.546 239.954 209.981 238.518C206.857 235.652 202.732 231.206 197.892 225.51C188.215 214.121 175.709 197.772 162.669 179.162C149.629 160.553 138.531 143.217 131.129 130.233C127.427 123.739 124.656 118.345 123.029 114.43C122.214 112.469 121.695 110.9 121.483 109.758C121.377 109.186 121.354 108.747 121.396 108.431C121.438 108.113 121.537 107.979 121.62 107.92C121.703 107.862 121.864 107.815 122.177 107.884C122.488 107.952 122.893 108.124 123.395 108.419C124.395 109.007 125.693 110.031 127.258 111.467C130.382 114.333 134.506 118.779 139.347 124.475C149.024 135.864 161.53 152.213 174.57 170.822Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M180.256 166.838C193.292 185.441 203.77 203.198 210.174 216.863C213.378 223.699 215.553 229.493 216.525 233.848C217.011 236.027 217.19 237.821 217.059 239.193C216.927 240.57 216.492 241.453 215.822 241.922C215.152 242.392 214.174 242.499 212.835 242.153C211.5 241.808 209.875 241.028 207.992 239.827C204.23 237.427 199.528 233.404 194.196 228.06C183.538 217.375 170.425 201.465 157.389 182.862C144.353 164.259 133.875 146.503 127.471 132.837C124.267 126.001 122.092 120.208 121.12 115.853C120.634 113.674 120.455 111.88 120.586 110.507C120.718 109.13 121.154 108.247 121.823 107.778C122.493 107.309 123.471 107.201 124.81 107.547C126.146 107.892 127.771 108.673 129.653 109.874C133.415 112.274 138.118 116.296 143.449 121.641C154.108 132.325 167.221 148.236 180.256 166.838Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M185.943 162.855C198.973 181.45 208.786 199.658 214.122 214.056C216.792 221.258 218.332 227.483 218.605 232.316C218.88 237.176 217.87 240.488 215.62 242.065C213.369 243.642 209.911 243.461 205.437 241.544C200.988 239.637 195.662 236.064 189.804 231.096C178.093 221.166 164.329 205.727 151.298 187.131C138.267 168.535 128.454 150.328 123.118 135.93C120.449 128.728 118.909 122.503 118.635 117.67C118.36 112.81 119.37 109.498 121.621 107.921C123.871 106.344 127.329 106.525 131.803 108.442C136.253 110.349 141.578 113.922 147.437 118.889C159.148 128.82 172.912 144.259 185.943 162.855Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M190.673 159.236C203.66 177.769 212.888 196.3 217.316 211.267C219.531 218.753 220.538 225.324 220.229 230.547C219.919 235.777 218.297 239.582 215.335 241.658C212.372 243.734 208.242 243.959 203.221 242.465C198.205 240.973 192.373 237.783 186.092 233.146C173.536 223.875 159.269 208.876 146.282 190.342C133.295 171.809 124.067 153.278 119.639 138.311C117.424 130.825 116.417 124.254 116.727 119.03C117.036 113.801 118.658 109.996 121.621 107.92C124.583 105.844 128.713 105.619 133.734 107.113C138.75 108.605 144.583 111.795 150.863 116.432C163.419 125.703 177.686 140.702 190.673 159.236Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M196.765 154.967C209.747 173.493 218.311 192.475 221.675 208.176C223.358 216.027 223.735 223.037 222.73 228.751C221.725 234.463 219.345 238.848 215.538 241.516C211.731 244.184 206.797 244.923 201.085 243.918C195.371 242.913 188.911 240.165 182.105 235.904C168.496 227.382 153.578 212.852 140.596 194.327C127.615 175.801 119.05 156.819 115.686 141.118C114.004 133.267 113.627 126.257 114.632 120.543C115.637 114.831 118.017 110.446 121.824 107.778C125.631 105.11 130.565 104.37 136.277 105.375C141.991 106.381 148.451 109.129 155.257 113.39C168.866 121.912 183.784 136.442 196.765 154.967Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M202.858 150.699C215.833 169.216 223.713 188.665 225.978 205.127C228.247 221.613 224.875 234.974 215.538 241.516C206.201 248.059 192.493 246.667 177.771 238.907C163.071 231.158 147.481 217.113 134.505 198.596C121.529 180.078 113.65 160.629 111.385 144.168C109.116 127.681 112.487 114.321 121.824 107.778C131.161 101.236 144.87 102.627 159.592 110.388C174.291 118.136 189.882 132.182 202.858 150.699Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M210.574 145.293C223.541 163.798 230.532 183.855 231.371 201.309C232.21 218.769 226.895 233.559 215.335 241.659C203.775 249.76 188.059 249.707 171.934 242.958C155.815 236.212 139.35 222.794 126.382 204.288C113.415 185.782 106.423 165.726 105.585 148.272C104.746 130.811 110.061 116.021 121.621 107.921C133.181 99.821 148.897 99.8737 165.022 106.623C181.141 113.369 197.606 126.787 210.574 145.293Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M217.619 140.657C230.618 159.208 236.828 179.877 236.376 198.287C235.924 216.697 228.816 232.817 215.213 242.349C201.61 251.881 184.031 253.06 166.573 247.2C149.114 241.34 131.806 228.448 118.807 209.897C105.809 191.347 99.5991 170.678 100.051 152.268C100.503 133.857 107.611 117.737 121.214 108.205C134.817 98.673 152.396 97.4945 169.854 103.354C187.312 109.214 204.62 122.107 217.619 140.657Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M230.067 131.633C255.964 168.589 249.234 217.905 215.132 241.802C181.03 265.698 132.379 255.189 106.482 218.232C80.5857 181.276 87.3157 131.96 121.418 108.063C155.52 84.1671 204.171 94.676 230.067 131.633Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M223.975 135.901C249.896 172.892 245.749 220.347 214.929 241.944C184.109 263.54 138.088 251.239 112.168 214.248C86.2474 177.257 90.3946 129.802 121.215 108.205C152.035 86.609 198.055 98.9105 223.975 135.901Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M164.105 168.982C182.714 155.942 200.05 144.844 213.034 137.442C219.528 133.74 224.922 130.97 228.837 129.342C230.798 128.527 232.367 128.008 233.509 127.796C234.081 127.69 234.52 127.667 234.836 127.709C235.154 127.751 235.289 127.85 235.347 127.933C235.405 128.016 235.452 128.177 235.383 128.49C235.315 128.801 235.143 129.206 234.848 129.708C234.26 130.708 233.236 132.006 231.8 133.571C228.934 136.695 224.488 140.82 218.792 145.66C207.403 155.337 191.054 167.843 172.445 180.883C153.835 193.923 136.499 205.021 123.515 212.423C117.021 216.125 111.627 218.896 107.712 220.523C105.751 221.338 104.182 221.857 103.041 222.069C102.468 222.175 102.029 222.198 101.713 222.156C101.396 222.114 101.261 222.015 101.202 221.932C101.144 221.849 101.097 221.688 101.166 221.375C101.234 221.064 101.406 220.659 101.701 220.157C102.29 219.157 103.314 217.859 104.749 216.294C107.615 213.17 112.061 209.046 117.757 204.205C129.146 194.528 145.495 182.022 164.105 168.982Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M160.12 163.296C178.723 150.261 196.48 139.782 210.145 133.378C216.981 130.174 222.775 127.999 227.13 127.027C229.309 126.541 231.103 126.362 232.475 126.494C233.852 126.625 234.735 127.061 235.204 127.73C235.674 128.4 235.781 129.378 235.435 130.718C235.09 132.053 234.31 133.678 233.109 135.56C230.709 139.322 226.686 144.025 221.342 149.356C210.657 160.015 194.747 173.128 176.144 186.163C157.541 199.199 139.785 209.677 126.119 216.081C119.283 219.285 113.49 221.46 109.135 222.432C106.956 222.918 105.162 223.097 103.789 222.966C102.412 222.834 101.529 222.399 101.06 221.729C100.591 221.059 100.483 220.081 100.829 218.742C101.174 217.407 101.955 215.782 103.156 213.899C105.556 210.138 109.578 205.435 114.923 200.103C125.607 189.445 141.518 176.332 160.12 163.296Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M156.136 157.61C174.732 144.58 192.94 134.767 207.338 129.431C214.539 126.761 220.765 125.221 225.598 124.948C230.458 124.673 233.77 125.683 235.347 127.933C236.924 130.184 236.743 133.642 234.825 138.116C232.918 142.565 229.345 147.891 224.378 153.749C214.448 165.46 199.009 179.224 180.413 192.255C161.817 205.286 143.609 215.099 129.212 220.435C122.01 223.104 115.784 224.644 110.951 224.918C106.091 225.193 102.779 224.182 101.203 221.932C99.6256 219.682 99.8064 216.224 101.724 211.75C103.631 207.3 107.204 201.974 112.171 196.116C122.102 184.405 137.541 170.641 156.136 157.61Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M152.518 152.878C171.052 139.891 189.582 130.664 204.549 126.236C212.035 124.021 218.606 123.014 223.83 123.323C229.06 123.633 232.865 125.255 234.941 128.217C237.017 131.18 237.242 135.31 235.748 140.331C234.256 145.347 231.066 151.179 226.429 157.459C217.157 170.016 202.158 184.283 183.625 197.27C165.091 210.257 146.561 219.485 131.594 223.913C124.108 226.127 117.537 227.135 112.313 226.825C107.084 226.516 103.278 224.894 101.203 221.931C99.1267 218.969 98.9012 214.838 100.395 209.817C101.888 204.802 105.077 198.969 109.715 192.689C118.986 180.132 133.985 165.865 152.518 152.878Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M148.249 146.787C166.775 133.805 185.757 125.241 201.458 121.877C209.309 120.194 216.319 119.817 222.033 120.823C227.745 121.828 232.13 124.207 234.798 128.014C237.466 131.822 238.205 136.756 237.2 142.467C236.195 148.181 233.447 154.642 229.186 161.447C220.664 175.057 206.134 189.974 187.609 202.956C169.083 215.937 150.101 224.502 134.4 227.866C126.549 229.548 119.539 229.926 113.825 228.92C108.113 227.915 103.728 225.536 101.06 221.728C98.392 217.921 97.6523 212.987 98.6574 207.275C99.6629 201.561 102.411 195.101 106.672 188.296C115.194 174.686 129.724 159.768 148.249 146.787Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M143.981 140.695C162.498 127.719 181.947 119.839 198.409 117.574C214.895 115.305 228.255 118.677 234.798 128.014C241.341 137.351 239.949 151.06 232.189 165.781C224.44 180.481 210.395 196.072 191.877 209.047C173.36 222.023 153.911 229.902 137.449 232.168C120.963 234.436 107.603 231.065 101.06 221.728C94.5173 212.391 95.9091 198.682 103.669 183.961C111.418 169.261 125.463 153.67 143.981 140.695Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M138.573 132.978C157.079 120.011 177.136 113.02 194.59 112.181C212.05 111.342 226.84 116.657 234.94 128.217C243.04 139.777 242.988 155.493 236.239 171.618C229.492 187.737 216.074 204.202 197.569 217.17C179.063 230.137 159.006 237.129 141.553 237.967C124.092 238.806 109.302 233.491 101.202 221.931C93.1018 210.371 93.1544 194.655 99.9033 178.53C106.65 162.411 120.068 145.946 138.573 132.978Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M133.939 125.933C152.489 112.934 173.158 106.724 191.568 107.176C209.978 107.628 226.099 114.736 235.631 128.339C245.163 141.942 246.341 159.521 240.481 176.979C234.621 194.438 221.729 211.745 203.179 224.744C184.628 237.743 163.959 243.953 145.549 243.501C127.139 243.049 111.019 235.941 101.487 222.338C91.9545 208.735 90.776 191.156 96.6359 173.698C102.496 156.239 115.388 138.931 133.939 125.933Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M124.914 113.486C161.871 87.5889 211.187 94.3189 235.083 128.421C258.979 162.523 248.47 211.174 211.514 237.071C174.557 262.967 125.241 256.237 101.345 222.135C77.4483 188.033 87.9573 139.382 124.914 113.486Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M129.183 119.577C166.173 93.6571 213.629 97.8043 235.225 128.624C256.822 159.444 244.52 205.465 207.529 231.385C170.539 257.306 123.083 253.158 101.487 222.338C79.8905 191.518 92.192 145.498 129.183 119.577Z" stroke="#FEFCED" stroke-width="0.84"/>
<rect x="60.48" y="95.3892" width="201.6" height="285.6" rx="18.48" transform="rotate(-23.9849 60.48 95.3892)" fill="#3F3D38"/>
<circle cx="209.471" cy="179.232" r="81.9" transform="rotate(-23.98 209.471 179.232)" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M176.871 104.721L243.179 253.791" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M284.686 145.775L134.256 212.688" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M216.337 176.178C225.572 196.94 233.145 216.081 237.923 230.242C240.313 237.324 241.999 243.149 242.847 247.303C243.271 249.384 243.481 251.024 243.47 252.184C243.464 252.766 243.403 253.202 243.301 253.504C243.199 253.808 243.076 253.921 242.983 253.962C242.89 254.004 242.724 254.019 242.43 253.892C242.137 253.765 241.773 253.519 241.337 253.133C240.468 252.364 239.39 251.11 238.129 249.402C235.611 245.99 232.415 240.837 228.755 234.32C221.438 221.288 212.293 202.847 203.058 182.085C193.823 161.323 186.25 142.182 181.472 128.021C179.083 120.939 177.396 115.114 176.548 110.959C176.124 108.879 175.915 107.239 175.926 106.078C175.931 105.496 175.992 105.061 176.094 104.758C176.196 104.455 176.319 104.342 176.412 104.3C176.505 104.259 176.671 104.244 176.965 104.371C177.258 104.498 177.622 104.744 178.058 105.13C178.928 105.899 180.005 107.152 181.266 108.861C183.784 112.272 186.981 117.425 190.64 123.943C197.957 136.974 207.102 155.416 216.337 176.178Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M222.68 173.357C231.912 194.111 238.796 213.546 242.465 228.185C244.301 235.508 245.326 241.61 245.446 246.071C245.506 248.303 245.338 250.098 244.946 251.42C244.553 252.746 243.957 253.529 243.21 253.862C242.463 254.194 241.482 254.112 240.234 253.516C238.989 252.922 237.544 251.845 235.926 250.305C232.694 247.23 228.848 242.381 224.639 236.114C216.224 223.586 206.4 205.46 197.168 184.705C187.936 163.95 181.052 144.515 177.383 129.877C175.548 122.554 174.522 116.451 174.402 111.99C174.342 109.758 174.51 107.963 174.902 106.641C175.295 105.315 175.891 104.532 176.639 104.2C177.386 103.867 178.367 103.949 179.615 104.545C180.859 105.139 182.304 106.217 183.922 107.756C187.155 110.832 191 115.68 195.21 121.947C203.625 134.475 213.448 152.602 222.68 173.357Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M229.024 170.535C238.253 191.282 244.397 211.031 246.878 226.185C248.118 233.764 248.438 240.17 247.781 244.966C247.12 249.788 245.494 252.845 242.984 253.962C240.473 255.079 237.113 254.239 233.089 251.501C229.088 248.777 224.545 244.25 219.746 238.253C210.153 226.264 199.6 208.475 190.372 187.728C181.143 166.981 174.999 147.231 172.518 132.078C171.278 124.498 170.958 118.093 171.615 113.297C172.276 108.474 173.902 105.417 176.412 104.3C178.923 103.183 182.282 104.023 186.306 106.762C190.308 109.485 194.851 114.012 199.65 120.009C209.243 131.999 219.796 149.788 229.024 170.535Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M234.36 167.89C243.558 188.567 249.066 208.521 250.546 224.06C251.286 231.831 251.017 238.473 249.713 243.541C248.407 248.615 246.087 252.039 242.781 253.509C239.476 254.979 235.379 254.41 230.737 251.982C226.1 249.556 220.986 245.309 215.71 239.555C205.162 228.05 194.031 210.597 184.833 189.92C175.636 169.242 170.127 149.288 168.647 133.75C167.907 125.978 168.177 119.336 169.481 114.268C170.786 109.195 173.107 105.77 176.412 104.3C179.717 102.83 183.814 103.4 188.456 105.827C193.093 108.253 198.207 112.5 203.483 118.254C214.032 129.759 225.162 147.212 234.36 167.89Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M241.157 164.867C250.351 185.535 255.122 205.806 255.417 221.86C255.565 229.889 254.593 236.841 252.512 242.257C250.432 247.671 247.256 251.519 243.009 253.408C238.761 255.298 233.777 255.079 228.363 252.999C222.947 250.918 217.133 246.984 211.269 241.498C199.544 230.528 187.684 213.41 178.491 192.741C169.297 172.073 164.526 151.802 164.23 135.747C164.083 127.719 165.055 120.767 167.136 115.351C169.216 109.937 172.391 106.089 176.639 104.199C180.887 102.31 185.871 102.529 191.285 104.609C196.7 106.69 202.515 110.624 208.378 116.11C220.104 127.08 231.963 144.198 241.157 164.867Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M247.953 161.844C257.142 182.503 261.152 203.101 260.223 219.692C259.292 236.307 253.425 248.775 243.008 253.409C232.591 258.042 219.402 254.051 206.439 243.615C193.495 233.195 180.883 216.424 171.693 195.765C162.504 175.105 158.494 154.508 159.423 137.917C160.354 121.301 166.221 108.833 176.638 104.2C187.055 99.5662 200.244 103.557 213.207 113.993C226.151 124.413 238.763 141.184 247.953 161.844Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M256.562 158.014C265.746 178.66 268.768 199.685 266.248 216.976C263.728 234.274 255.679 247.773 242.782 253.509C229.885 259.246 214.47 256.185 199.936 246.473C185.407 236.765 171.816 220.442 162.632 199.796C153.448 179.149 150.427 158.125 152.946 140.833C155.466 123.536 163.515 110.037 176.412 104.3C189.309 98.5637 204.724 101.625 219.259 111.337C233.788 121.045 247.379 137.368 256.562 158.014Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M264.366 154.814C273.572 175.511 275.708 196.986 271.74 214.969C267.771 232.952 257.707 247.413 242.53 254.164C227.354 260.914 209.875 258.705 193.861 249.61C177.848 240.516 163.329 224.548 154.124 203.851C144.918 183.155 142.781 161.679 146.75 143.696C150.718 125.713 160.782 111.252 175.959 104.502C191.136 97.751 208.615 99.9605 224.628 109.055C240.641 118.15 255.16 134.118 264.366 154.814Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M278.311 148.339C296.651 189.571 280.602 236.686 242.555 253.609C204.508 270.533 158.77 250.902 140.43 209.671C122.089 168.439 138.138 121.324 176.186 104.401C214.233 87.4768 259.971 107.108 278.311 148.339Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M271.514 151.363C289.871 192.633 276.714 238.416 242.328 253.711C207.943 269.005 165.13 248.119 146.773 206.849C128.416 165.579 141.573 119.797 175.959 104.502C210.344 89.2067 253.157 110.093 271.514 151.363Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M206.417 172.365C227.179 163.13 246.32 155.557 260.481 150.779C267.563 148.389 273.388 146.703 277.542 145.855C279.623 145.431 281.263 145.221 282.423 145.233C283.005 145.238 283.441 145.299 283.743 145.401C284.047 145.503 284.16 145.626 284.201 145.719C284.243 145.812 284.258 145.978 284.131 146.272C284.004 146.565 283.758 146.929 283.372 147.365C282.603 148.235 281.349 149.312 279.641 150.573C276.229 153.091 271.076 156.287 264.559 159.947C251.527 167.264 233.086 176.409 212.324 185.644C191.562 194.879 172.421 202.452 158.26 207.23C151.178 209.62 145.353 211.306 141.198 212.154C139.118 212.578 137.478 212.788 136.317 212.777C135.735 212.771 135.3 212.71 134.997 212.608C134.694 212.506 134.581 212.383 134.539 212.29C134.498 212.197 134.483 212.031 134.61 211.737C134.737 211.444 134.983 211.08 135.369 210.644C136.138 209.774 137.391 208.697 139.1 207.436C142.511 204.918 147.664 201.722 154.182 198.062C167.213 190.745 185.655 181.6 206.417 172.365Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M203.596 166.023C224.35 156.791 243.785 149.907 258.424 146.238C265.747 144.402 271.849 143.377 276.31 143.257C278.542 143.197 280.337 143.365 281.659 143.757C282.985 144.15 283.768 144.746 284.101 145.493C284.433 146.24 284.351 147.221 283.755 148.469C283.161 149.714 282.084 151.159 280.544 152.777C277.469 156.009 272.62 159.855 266.353 164.064C253.825 172.479 235.699 182.303 214.944 191.535C194.189 200.767 174.755 207.651 160.116 211.32C152.793 213.155 146.69 214.181 142.229 214.301C139.997 214.361 138.202 214.193 136.88 213.801C135.554 213.408 134.771 212.811 134.439 212.064C134.106 211.317 134.188 210.336 134.784 209.088C135.378 207.844 136.456 206.398 137.995 204.781C141.071 201.548 145.919 197.703 152.186 193.493C164.714 185.078 182.841 175.255 203.596 166.023Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M200.774 159.678C221.521 150.45 241.271 144.305 256.424 141.825C264.003 140.584 270.409 140.264 275.205 140.921C280.027 141.582 283.084 143.208 284.201 145.719C285.318 148.229 284.478 151.589 281.74 155.613C279.016 159.615 274.489 164.158 268.492 168.956C256.503 178.549 238.714 189.102 217.967 198.33C197.22 207.559 177.47 213.704 162.317 216.184C154.737 217.425 148.332 217.744 143.536 217.087C138.713 216.427 135.656 214.801 134.539 212.29C133.422 209.779 134.262 206.42 137.001 202.396C139.724 198.394 144.251 193.851 150.248 189.052C162.238 179.459 180.027 168.907 200.774 159.678Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M198.129 154.341C218.806 145.144 238.761 139.635 254.299 138.155C262.07 137.415 268.713 137.685 273.78 138.989C278.854 140.294 282.278 142.615 283.748 145.92C285.218 149.225 284.649 153.322 282.221 157.964C279.796 162.601 275.548 167.715 269.794 172.991C258.29 183.54 240.836 194.671 220.159 203.868C199.481 213.066 179.527 218.574 163.989 220.054C156.217 220.795 149.575 220.525 144.507 219.221C139.434 217.915 136.01 215.595 134.539 212.29C133.069 208.985 133.639 204.887 136.067 200.245C138.492 195.608 142.74 190.494 148.494 185.219C159.998 174.67 177.451 163.539 198.129 154.341Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M195.106 147.546C215.775 138.352 236.045 133.581 252.1 133.286C260.128 133.138 267.081 134.11 272.497 136.191C277.91 138.271 281.759 141.447 283.648 145.694C285.537 149.942 285.318 154.926 283.238 160.34C281.157 165.756 277.223 171.57 271.737 177.434C260.767 189.159 243.65 201.019 222.981 210.212C202.312 219.406 182.042 224.177 165.987 224.472C157.959 224.62 151.006 223.648 145.59 221.567C140.177 219.487 136.328 216.312 134.439 212.064C132.55 207.816 132.768 202.832 134.849 197.418C136.93 192.003 140.864 186.188 146.35 180.325C157.32 168.599 174.437 156.739 195.106 147.546Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M192.083 140.75C212.742 131.56 233.34 127.551 249.931 128.48C266.546 129.41 279.014 135.278 283.648 145.695C288.281 156.112 284.29 169.3 273.854 182.263C263.434 195.207 246.663 207.82 226.004 217.009C205.344 226.199 184.747 230.208 168.156 229.279C151.54 228.349 139.072 222.481 134.439 212.064C129.805 201.647 133.796 188.459 144.232 175.496C154.652 162.552 171.423 149.939 192.083 140.75Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M188.253 132.14C208.899 122.956 229.924 119.935 247.215 122.454C264.513 124.974 278.011 133.023 283.748 145.92C289.485 158.817 286.424 174.232 276.712 188.767C267.003 203.296 250.681 216.887 230.034 226.07C209.388 235.254 188.364 238.275 171.072 235.756C153.774 233.236 140.276 225.187 134.539 212.29C128.803 199.393 131.864 183.978 141.576 169.443C151.284 154.914 167.607 141.323 188.253 132.14Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M185.054 124.337C205.75 115.131 227.226 112.995 245.208 116.963C263.191 120.932 277.652 130.996 284.403 146.173C291.154 161.349 288.944 178.828 279.85 194.842C270.755 210.855 254.787 225.373 234.09 234.579C213.394 243.785 191.918 245.922 173.936 241.953C155.953 237.984 141.492 227.921 134.741 212.744C127.99 197.567 130.2 180.088 139.294 164.075C148.389 148.062 164.357 133.543 185.054 124.337Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M178.579 110.391C219.811 92.0507 266.925 108.1 283.849 146.147C300.773 184.194 281.142 229.932 239.91 248.272C198.678 266.613 151.564 250.564 134.64 212.517C117.716 174.47 137.347 128.731 178.579 110.391Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M181.602 117.189C222.872 98.8315 268.655 111.989 283.95 146.375C299.245 180.76 278.358 223.573 237.088 241.93C195.819 260.287 150.036 247.129 134.741 212.744C119.446 178.359 140.332 135.546 181.602 117.189Z" stroke="#FEFCED" stroke-width="0.84"/>
<rect x="137.76" y="80.9146" width="201.6" height="285.6" rx="18.48" transform="rotate(-8.70593 137.76 80.9146)" fill="#827F77"/>
<path d="M179.148 106.972C182.137 106.514 184.901 108.579 185.359 111.568C185.817 114.557 183.792 117.315 180.803 117.772C179.567 117.962 178.39 117.734 177.364 117.157C172.62 114.947 167.04 115.802 163.175 119.331C162.369 120.189 161.314 120.758 160.038 120.954C157.089 121.405 154.331 119.38 153.874 116.391C153.458 113.681 155.069 111.15 157.559 110.361C166.013 106.7 171.321 98.218 170.926 88.9784C170.829 86.2194 172.777 83.759 175.527 83.3377C178.517 82.8798 181.28 84.9446 181.738 87.9337C182.153 90.6439 180.542 93.1749 178.053 93.9643C172.319 96.4743 167.981 101.177 165.958 106.871C164.981 109.55 167.404 112.32 170.163 111.693C172.331 111.198 174.373 110.151 176.057 108.628C176.864 107.77 177.913 107.161 179.148 106.972Z" fill="#FEFCED"/>
<path d="M103.526 108.691C106.289 107.462 109.499 108.726 110.728 111.489C111.957 114.252 110.73 117.446 107.967 118.675C106.825 119.183 105.63 119.273 104.487 118.987C99.3288 118.104 94.1713 120.398 91.3724 124.821C90.82 125.861 89.9524 126.688 88.7735 127.212C86.0474 128.425 82.8538 127.198 81.6248 124.435C80.5105 121.93 81.398 119.064 83.5918 117.646C90.783 111.888 93.6704 102.308 90.8552 93.4986C90.0356 90.8624 91.267 87.9758 93.8089 86.8451C96.5719 85.6161 99.7819 86.8801 101.011 89.6431C102.125 92.1482 101.238 95.0142 99.0438 96.4314C94.1733 100.363 91.2275 106.042 90.7749 112.068C90.5383 114.91 93.6052 116.943 96.1021 115.612C98.0628 114.563 99.7571 113.015 100.981 111.103C101.533 110.063 102.384 109.199 103.526 108.691Z" fill="#FEFCED"/>
<path d="M45.7641 122.109C48.2406 120.373 51.6333 120.999 53.3686 123.476C55.104 125.952 54.5111 129.322 52.0346 131.057C51.0109 131.774 49.855 132.092 48.679 132.03C43.4469 132.151 38.8241 135.391 36.9239 140.267C36.5809 141.394 35.8877 142.372 34.8311 143.112C32.3876 144.824 29.0181 144.231 27.2827 141.755C25.7093 139.51 26.0316 136.527 27.9135 134.716C33.8689 127.687 34.8682 117.731 30.4182 109.624C29.109 107.193 29.7648 104.124 32.0432 102.528C34.5197 100.792 37.9124 101.418 39.6477 103.895C41.2211 106.14 40.8989 109.123 39.017 110.934C34.9895 115.726 33.1856 121.864 33.8954 127.865C34.2073 130.699 37.6069 132.108 39.8027 130.323C41.5262 128.919 42.8928 127.075 43.7275 124.964C44.0705 123.837 44.7405 122.826 45.7641 122.109Z" fill="#FEFCED"/>
<path d="M362.268 313.612C365.257 313.154 368.021 315.219 368.479 318.208C368.937 321.197 366.912 323.955 363.923 324.413C362.687 324.602 361.51 324.374 360.484 323.797C355.74 321.587 350.16 322.442 346.295 325.971C345.489 326.829 344.434 327.398 343.158 327.594C340.209 328.046 337.451 326.021 336.993 323.031C336.578 320.321 338.189 317.79 340.679 317.001C346.986 314.24 351.539 308.811 353.287 302.384C353.788 300.594 352.379 298.852 350.521 298.973C347.655 299.167 344.895 300.324 342.675 302.337C341.868 303.195 340.819 303.804 339.544 304C336.594 304.451 333.831 302.387 333.373 299.397C332.915 296.408 334.934 293.611 337.883 293.159C339.158 292.964 340.341 293.231 341.368 293.808C346.112 296.018 351.692 295.163 355.556 291.634C356.363 290.777 357.412 290.167 358.647 289.978C361.636 289.52 364.4 291.585 364.858 294.574C365.273 297.284 363.662 299.815 361.173 300.604C355.399 303.121 351.067 307.863 349.05 313.597C348.107 316.23 350.484 318.966 353.204 318.345C355.377 317.89 357.459 316.837 359.177 315.268C359.984 314.411 361.033 313.801 362.268 313.612Z" fill="#FEFCED"/>
<circle cx="258.477" cy="206.397" r="81.9" transform="rotate(-8.71 258.477 206.397)" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M246.652 125.93L271.359 287.201" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M339.847 193.93L177.106 218.862" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M265.905 205.259C269.346 227.72 271.611 248.179 272.491 263.098C272.931 270.56 273.024 276.624 272.747 280.855C272.609 282.974 272.379 284.61 272.062 285.727C271.904 286.287 271.73 286.692 271.552 286.956C271.374 287.222 271.225 287.299 271.125 287.314C271.025 287.33 270.86 287.301 270.61 287.101C270.361 286.901 270.074 286.568 269.755 286.081C269.119 285.11 268.41 283.617 267.643 281.637C266.113 277.683 264.386 271.869 262.572 264.618C258.945 250.12 254.981 229.921 251.54 207.459C248.099 184.998 245.835 164.539 244.955 149.62C244.514 142.158 244.421 136.094 244.698 131.863C244.836 129.744 245.066 128.108 245.383 126.991C245.541 126.431 245.715 126.026 245.893 125.762C246.071 125.496 246.22 125.419 246.32 125.404C246.421 125.388 246.585 125.417 246.835 125.617C247.084 125.817 247.371 126.15 247.69 126.637C248.326 127.608 249.035 129.101 249.802 131.081C251.332 135.035 253.059 140.849 254.873 148.1C258.5 162.598 262.464 182.797 265.905 205.259Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M272.767 204.208C276.207 226.661 277.73 247.222 277.414 262.311C277.256 269.858 276.638 276.016 275.579 280.35C275.049 282.52 274.414 284.207 273.688 285.379C272.959 286.555 272.178 287.153 271.369 287.277C270.561 287.401 269.636 287.064 268.589 286.16C267.545 285.259 266.435 283.839 265.28 281.928C262.971 278.11 260.538 272.42 258.128 265.265C253.31 250.963 248.607 230.889 245.167 208.436C241.727 185.982 240.204 165.421 240.52 150.333C240.678 142.785 241.296 136.627 242.355 132.293C242.885 130.124 243.52 128.437 244.246 127.264C244.975 126.089 245.756 125.49 246.565 125.366C247.373 125.242 248.298 125.58 249.345 126.483C250.389 127.384 251.499 128.804 252.654 130.715C254.963 134.534 257.396 140.224 259.806 147.378C264.624 161.68 269.327 181.754 272.767 204.208Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M279.63 203.157C283.069 225.602 283.795 246.273 282.197 261.544C281.398 269.183 280.019 275.446 278.122 279.9C276.215 284.378 273.841 286.899 271.125 287.315C268.409 287.731 265.389 286.037 262.228 282.335C259.085 278.653 255.895 273.09 252.845 266.041C246.748 251.948 241.253 232.008 237.815 209.563C234.376 187.118 233.65 166.447 235.248 151.176C236.047 143.537 237.426 137.273 239.323 132.82C241.23 128.342 243.604 125.82 246.32 125.404C249.036 124.988 252.056 126.683 255.216 130.385C258.36 134.066 261.55 139.63 264.6 146.679C270.696 160.771 276.192 180.712 279.63 203.157Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M285.476 202.01C288.903 224.38 288.962 245.081 286.297 260.46C284.965 268.152 282.955 274.489 280.362 279.034C277.767 283.585 274.626 286.277 271.051 286.825C267.475 287.373 263.672 285.744 259.834 282.179C255.999 278.618 252.185 273.174 248.61 266.234C241.464 252.357 235.323 232.588 231.896 210.219C228.469 187.849 228.41 167.148 231.074 151.769C232.407 144.077 234.417 137.74 237.009 133.195C239.605 128.644 242.745 125.952 246.321 125.404C249.896 124.856 253.699 126.485 257.538 130.05C261.372 133.61 265.187 139.055 268.761 145.995C275.908 159.872 282.049 179.64 285.476 202.01Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M292.828 200.883C296.254 223.244 295.518 244.055 291.574 259.621C289.602 267.404 286.834 273.855 283.4 278.532C279.967 283.206 275.89 286.083 271.295 286.787C266.7 287.491 261.949 285.967 257.275 282.534C252.598 279.1 248.025 273.774 243.813 266.938C235.391 253.266 228.458 233.63 225.033 211.269C221.607 188.909 222.343 168.098 226.286 152.532C228.258 144.748 231.027 138.297 234.461 133.621C237.893 128.946 241.97 126.07 246.565 125.366C251.161 124.662 255.912 126.186 260.586 129.618C265.263 133.052 269.836 138.379 274.047 145.215C282.47 158.886 289.402 178.523 292.828 200.883Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M300.18 199.757C303.604 222.107 302.048 243.034 296.782 258.795C291.508 274.579 282.564 285.061 271.295 286.787C260.025 288.514 248.353 281.19 238.596 267.709C228.854 254.247 221.103 234.747 217.679 212.396C214.255 190.046 215.812 169.12 221.078 153.359C226.351 137.575 235.295 127.093 246.565 125.366C257.835 123.64 269.506 130.964 279.263 144.445C289.006 157.906 296.756 177.407 300.18 199.757Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M309.494 198.329C312.916 220.666 310.293 241.743 303.309 257.761C296.322 273.784 285.002 284.686 271.05 286.824C257.097 288.961 243.032 281.948 231.569 268.751C220.11 255.559 211.297 236.233 207.876 213.897C204.454 191.561 207.076 170.484 214.06 154.466C221.047 138.443 232.367 127.541 246.32 125.403C260.272 123.266 274.337 130.279 285.8 143.475C297.26 156.667 306.072 175.993 309.494 198.329Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M317.865 197.297C321.295 219.688 317.7 240.968 309.135 257.271C300.57 273.573 287.053 284.873 270.635 287.389C254.216 289.904 237.936 283.169 224.883 270.178C211.831 257.187 202.03 237.959 198.6 215.569C195.169 193.178 198.764 171.898 207.329 155.596C215.894 139.293 229.411 127.993 245.83 125.478C262.249 122.962 278.528 129.697 291.581 142.688C304.634 155.679 314.434 174.907 317.865 197.297Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M333.023 194.726C339.856 239.332 311.965 280.556 270.804 286.862C229.643 293.168 190.69 262.184 183.857 217.578C177.023 172.972 204.914 131.747 246.075 125.442C287.236 119.136 326.189 150.119 333.023 194.726Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M325.67 195.851C332.51 240.499 307.759 281.2 270.559 286.899C233.36 292.598 197.559 261.173 190.719 216.526C183.879 171.878 208.63 131.177 245.83 125.478C283.029 119.779 318.83 151.204 325.67 195.851Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M257.34 198.967C279.801 195.526 300.26 193.262 315.179 192.382C322.641 191.942 328.705 191.849 332.936 192.125C335.055 192.264 336.692 192.494 337.808 192.81C338.368 192.969 338.773 193.142 339.037 193.32C339.303 193.499 339.38 193.647 339.396 193.748C339.411 193.848 339.382 194.013 339.182 194.263C338.982 194.512 338.649 194.798 338.162 195.117C337.191 195.754 335.698 196.463 333.718 197.229C329.764 198.76 323.95 200.486 316.699 202.3C302.201 205.927 282.002 209.892 259.54 213.333C237.079 216.774 216.62 219.038 201.701 219.918C194.239 220.358 188.175 220.451 183.944 220.175C181.825 220.036 180.189 219.806 179.072 219.49C178.512 219.331 178.107 219.158 177.843 218.98C177.577 218.801 177.5 218.653 177.485 218.552C177.469 218.452 177.498 218.287 177.698 218.037C177.898 217.788 178.231 217.502 178.718 217.183C179.689 216.547 181.182 215.837 183.162 215.071C187.117 213.54 192.93 211.814 200.181 210C214.68 206.373 234.878 202.408 257.34 198.967Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M256.288 192.105C278.742 188.665 299.303 187.143 314.392 187.458C321.939 187.616 328.097 188.234 332.431 189.293C334.6 189.824 336.288 190.458 337.46 191.184C338.636 191.913 339.234 192.694 339.358 193.503C339.482 194.311 339.145 195.236 338.241 196.283C337.34 197.327 335.92 198.437 334.009 199.593C330.191 201.901 324.5 204.334 317.346 206.744C303.044 211.563 282.97 216.265 260.517 219.705C238.063 223.145 217.502 224.668 202.414 224.352C194.866 224.194 188.708 223.576 184.374 222.517C182.205 221.987 180.517 221.352 179.345 220.626C178.169 219.897 177.571 219.116 177.447 218.307C177.323 217.499 177.66 216.574 178.564 215.527C179.465 214.484 180.885 213.373 182.796 212.218C186.615 209.909 192.305 207.476 199.459 205.066C213.761 200.248 233.835 195.545 256.288 192.105Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M255.237 185.243C277.682 181.804 298.353 181.078 313.625 182.676C321.263 183.476 327.527 184.854 331.98 186.751C336.459 188.659 338.98 191.032 339.396 193.749C339.812 196.465 338.117 199.484 334.415 202.645C330.734 205.788 325.17 208.979 318.121 212.028C304.029 218.125 284.088 223.62 261.643 227.059C239.199 230.497 218.528 231.224 203.256 229.626C195.617 228.826 189.354 227.448 184.9 225.551C180.422 223.643 177.901 221.27 177.485 218.553C177.069 215.837 178.764 212.817 182.465 209.657C186.147 206.514 191.71 203.323 198.76 200.274C212.852 194.177 232.792 188.682 255.237 185.243Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M254.091 179.398C276.461 175.97 297.161 175.912 312.541 178.576C320.233 179.909 326.569 181.919 331.115 184.511C335.665 187.107 338.358 190.247 338.905 193.823C339.453 197.398 337.825 201.201 334.26 205.04C330.699 208.874 325.254 212.689 318.314 216.263C304.438 223.409 284.669 229.551 262.299 232.978C239.929 236.405 219.229 236.463 203.849 233.799C196.157 232.466 189.821 230.457 185.275 227.864C180.725 225.269 178.032 222.128 177.485 218.552C176.937 214.977 178.565 211.174 182.13 207.336C185.691 203.501 191.136 199.686 198.076 196.112C211.952 188.966 231.721 182.825 254.091 179.398Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M252.964 172.045C275.325 168.619 296.136 169.355 311.702 173.299C319.485 175.271 325.937 178.039 330.613 181.473C335.287 184.906 338.164 188.983 338.868 193.578C339.572 198.173 338.048 202.924 334.615 207.599C331.181 212.275 325.855 216.848 319.019 221.06C305.347 229.482 285.711 236.415 263.351 239.84C240.99 243.266 220.179 242.53 204.613 238.587C196.83 236.615 190.378 233.846 185.702 230.412C181.027 226.98 178.151 222.903 177.447 218.308C176.743 213.712 178.267 208.961 181.699 204.287C185.133 199.611 190.46 195.037 197.296 190.826C210.967 182.403 230.604 175.471 252.964 172.045Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M251.838 164.693C274.188 161.269 295.115 162.826 310.875 168.091C326.659 173.365 337.141 182.309 338.868 193.579C340.594 204.848 333.271 216.52 319.789 226.277C306.328 236.02 286.827 243.77 264.477 247.194C242.127 250.618 221.2 249.061 205.44 243.795C189.656 238.522 179.174 229.578 177.447 218.308C175.721 207.039 183.044 195.367 196.526 185.61C209.987 175.867 229.488 168.117 251.838 164.693Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M250.411 155.379C272.747 151.958 293.825 154.58 309.842 161.564C325.866 168.551 336.768 179.871 338.905 193.824C341.043 207.776 334.03 221.841 320.833 233.304C307.641 244.764 288.315 253.576 265.979 256.998C243.643 260.42 222.565 257.797 206.547 250.813C190.524 243.826 179.622 232.506 177.485 218.553C175.347 204.601 182.36 190.536 195.557 179.073C208.749 167.614 228.075 158.801 250.411 155.379Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M249.379 147.008C271.77 143.578 293.05 147.172 309.353 155.737C325.655 164.302 336.955 177.819 339.471 194.238C341.986 210.657 335.251 226.937 322.26 239.989C309.269 253.042 290.041 262.842 267.651 266.273C245.26 269.703 223.98 266.108 207.678 257.543C191.375 248.978 180.075 235.461 177.56 219.043C175.044 202.624 181.779 186.344 194.77 173.291C207.761 160.239 226.989 150.438 249.379 147.008Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M246.806 131.85C291.413 125.016 332.637 152.907 338.943 194.068C345.249 235.229 314.265 274.182 269.659 281.016C225.052 287.849 183.828 259.959 177.522 218.798C171.216 177.637 202.2 138.683 246.806 131.85Z" stroke="#FEFCED" stroke-width="0.84"/>
<path d="M247.933 139.203C292.58 132.363 333.282 157.114 338.981 194.313C344.679 231.513 313.255 267.313 268.607 274.153C223.96 280.993 183.259 256.242 177.56 219.043C171.861 181.843 203.285 146.043 247.933 139.203Z" stroke="#FEFCED" stroke-width="0.84"/>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

BIN
static/assets/ScreenOld.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View file

@ -0,0 +1,4 @@
<svg width="146" height="154" viewBox="0 0 146 154" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.1657 131.421C36.4065 134.359 41.3312 135.828 46.94 135.828C50.6336 135.828 54.0193 135.23 57.0973 134.034C60.1753 132.805 62.8942 131.148 65.2539 129.063C67.6479 126.945 69.6144 124.554 71.1534 121.889H71.769L69.6144 134.803H97.7266L115.168 29.8477H86.8511L80.1821 69.821H79.7717C79.1903 67.1561 78.0959 64.7133 76.4886 62.4925C74.8812 60.2376 72.7095 58.4439 69.9735 57.1115C67.2717 55.7449 63.9715 55.0616 60.0727 55.0616C54.8743 55.0616 49.6931 56.4453 44.5289 59.2127C39.3989 61.98 34.8504 66.3361 30.8832 72.2809C26.9502 78.2256 24.1972 85.9469 22.624 95.4449C21.1192 104.533 21.2731 112.066 23.0857 118.045C24.9325 124.024 27.9591 128.483 32.1657 131.421ZM65.1159 89.9014L64.4712 76.0298C64.368 73.8101 61.5307 72.9549 60.218 74.7477L51.9528 86.0363C51.3692 86.8334 50.4499 87.3158 49.4625 87.3432L36.5131 87.7029C34.2215 87.7666 33.3621 90.7341 35.2651 92.0124L45.918 99.1689C46.7606 99.735 47.2843 100.668 47.3289 101.682L47.9676 116.204C48.0666 118.457 50.969 119.296 52.2551 117.444L60.4902 105.588C61.074 104.747 62.0249 104.237 63.048 104.216L75.7031 103.948C77.986 103.9 78.8715 100.957 76.9944 99.6569L66.4889 92.3807C65.6698 91.8134 65.1621 90.8966 65.1159 89.9014Z" fill="#FEFCED"/>
<path d="M105.562 17.1349L107.012 26.2205C107.169 27.2043 106.858 28.2052 106.172 28.9271L100.519 34.8705C98.9452 36.525 100.41 39.2262 102.655 38.8094L110.616 37.3316C111.622 37.1448 112.657 37.4511 113.399 38.1554L120.334 44.7342C121.97 46.2858 124.641 44.8739 124.28 42.6485L122.737 33.1312C122.575 32.1292 122.898 31.1095 123.608 30.384L129.356 24.5104C130.959 22.8719 129.514 20.1411 127.258 20.5445L119.064 22.0095C118.092 22.1833 117.093 21.8978 116.36 21.236L109.466 15.0151C107.816 13.5265 105.212 14.9406 105.562 17.1349Z" fill="#C0FE1F"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,4 @@
<svg width="437" height="462" viewBox="0 0 437 462" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M97.4165 394.662C110.139 403.477 124.913 407.884 141.739 407.884C152.82 407.884 162.977 406.09 172.211 402.503C181.445 398.813 189.602 393.842 196.681 387.59C203.863 381.235 209.763 374.06 214.38 366.066H216.226L209.763 404.809H294.099L346.425 89.9424H261.473L241.466 209.862H240.235C238.49 201.868 235.207 194.539 230.385 187.877C225.563 181.112 219.048 175.731 210.84 171.734C202.735 167.634 192.834 165.584 181.137 165.584C165.542 165.584 149.999 169.735 134.506 178.037C119.116 186.34 105.471 199.408 93.5691 217.242C81.7702 235.076 73.5109 258.24 68.7914 286.734C64.277 313.998 64.7387 336.598 70.1764 354.535C75.7168 372.472 84.7968 385.847 97.4165 394.662ZM196.267 270.104L194.333 228.489C194.024 221.83 185.512 219.264 181.574 224.643L156.778 258.509C155.027 260.9 152.269 262.347 149.307 262.43L110.459 263.509C103.584 263.7 101.006 272.602 106.715 276.437L138.674 297.907C141.201 299.605 142.772 302.403 142.906 305.445L144.822 349.012C145.12 355.769 153.827 358.288 157.685 352.733L182.39 317.163C184.142 314.642 186.994 313.111 190.064 313.046L228.029 312.244C234.878 312.099 237.534 303.271 231.903 299.371L200.386 277.542C197.929 275.84 196.406 273.09 196.267 270.104Z" fill="#191816"/>
<path d="M317.606 51.8052L321.955 79.0617C322.426 82.0134 321.494 85.016 319.434 87.1818L302.476 105.012C297.755 109.975 302.15 118.079 308.885 116.829L332.767 112.395C335.785 111.835 338.889 112.754 341.117 114.866L361.922 134.603C366.829 139.258 374.843 135.022 373.76 128.346L369.131 99.7941C368.643 96.7879 369.613 93.729 371.743 91.5524L388.986 73.9316C393.796 69.0161 389.462 60.8236 382.692 62.034L358.111 66.4288C355.194 66.9504 352.2 66.0938 349.999 64.1085L329.317 45.4457C324.368 40.9799 316.555 45.2223 317.606 51.8052Z" fill="#7B41F5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
static/assets/grain.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,014 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

BIN
static/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

7
static/assets/logo1.svg Normal file
View file

@ -0,0 +1,7 @@
<svg width="77" height="58" viewBox="0 0 77 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.0688 57.2069L14.6033 44.7759L44.5344 17.3793H21.362L24.9826 0L76.9999 0L74.3447 12.7931L45.2585 39.8276H69.3964L65.7758 57.2069H12.0688Z" fill="#ADB5BD"/>
<path d="M9.41382 57.2069L11.9483 44.7759L41.8793 17.3793H18.7069L22.3276 0L74.3449 0L71.6897 12.7931L42.6035 39.8276H66.7414L63.1207 57.2069H9.41382Z" fill="#6C757D"/>
<path d="M6.51721 57.2069L9.0517 44.7759L38.9827 17.3793H15.8103L19.431 0L71.4483 0L68.7931 12.7931L39.7069 39.8276H63.8448L60.2241 57.2069H6.51721Z" fill="#495057"/>
<path d="M3.37939 57.2069L5.91388 44.7759L35.8449 17.3793H12.6725L16.2932 0L68.3104 0L65.6553 12.7931L36.5691 39.8276H60.707L57.0863 57.2069H3.37939Z" fill="#343A40"/>
<path d="M0 57.2069L2.53448 44.7759L32.4655 17.3793H5.18966L8.81035 0L64.931 0L62.2759 12.7931L33.1897 39.8276H57.3276L53.7069 57.2069H0Z" fill="#161718"/>
</svg>

After

Width:  |  Height:  |  Size: 931 B

View file

@ -0,0 +1,7 @@
<svg width="77" height="58" viewBox="0 0 77 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.0688 57.2069L14.6033 44.7759L44.5344 17.3793H21.362L24.9826 0L76.9999 0L74.3447 12.7931L45.2585 39.8276H69.3964L65.7758 57.2069H12.0688Z" fill="#23231F"/>
<path d="M9.41382 57.2069L11.9483 44.7759L41.8793 17.3793H18.7069L22.3276 0L74.3449 0L71.6897 12.7931L42.6035 39.8276H66.7414L63.1207 57.2069H9.41382Z" fill="#525148"/>
<path d="M6.51721 57.2069L9.0517 44.7759L38.9827 17.3793H15.8103L19.431 0L71.4483 0L68.7931 12.7931L39.7069 39.8276H63.8448L60.2241 57.2069H6.51721Z" fill="#858376"/>
<path d="M3.37939 57.2069L5.91388 44.7759L35.8449 17.3793H12.6725L16.2932 0L68.3104 0L65.6553 12.7931L36.5691 39.8276H60.707L57.0863 57.2069H3.37939Z" fill="#CFCDBC"/>
<path d="M0 57.2069L2.53448 44.7759L32.4655 17.3793H5.18966L8.81035 0L64.931 0L62.2759 12.7931L33.1897 39.8276H57.3276L53.7069 57.2069H0Z" fill="#FEFCED"/>
</svg>

After

Width:  |  Height:  |  Size: 931 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,78 @@
<svg width="153" height="146" viewBox="0 0 153 146" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="46.272" width="80.64" height="114.24" rx="7.392" transform="rotate(-35.0162 0 46.272)" fill="#858376"/>
<circle cx="67.3667" cy="70.0542" r="32.76" transform="rotate(-35.02 67.3667 70.0542)" stroke="#191816" stroke-width="0.336"/>
<path d="M48.8608 43.2988L86.3116 96.7444" stroke="#191816" stroke-width="0.336"/>
<path d="M94.3333 51.1577L40.4004 88.95" stroke="#191816" stroke-width="0.336"/>
<path d="M69.8281 68.329C75.0442 75.7727 79.4833 82.7073 82.4439 87.9007C83.9246 90.4983 85.033 92.6559 85.6839 94.222C86.01 95.0063 86.2177 95.634 86.3023 96.0906C86.3447 96.3195 86.3541 96.4952 86.3373 96.6216C86.3204 96.7486 86.2808 96.8025 86.2475 96.8258C86.2142 96.8491 86.1501 96.868 86.0249 96.8405C85.9004 96.8131 85.7384 96.7443 85.5377 96.6263C85.1374 96.391 84.6184 95.9814 83.9924 95.4072C82.7426 94.2608 81.093 92.4825 79.1569 90.204C75.2861 85.6484 70.2834 79.1087 65.0674 71.665C59.8514 64.2213 55.4122 57.2867 52.4517 52.0932C50.9709 49.4957 49.8626 47.3381 49.2116 45.772C48.8856 44.9877 48.6778 44.36 48.5933 43.9034C48.5509 43.6745 48.5415 43.4987 48.5583 43.3723C48.5752 43.2453 48.6148 43.1914 48.6481 43.1681C48.6813 43.1448 48.7455 43.126 48.8706 43.1534C48.9952 43.1808 49.1572 43.2496 49.3579 43.3676C49.7582 43.603 50.2772 44.0125 50.9031 44.5867C52.1529 45.7332 53.8026 47.5114 55.7386 49.79C59.6095 54.3456 64.6121 60.8853 69.8281 68.329Z" stroke="#191816" stroke-width="0.336"/>
<path d="M72.1024 66.7355C77.3167 74.1766 81.5079 81.2792 84.0697 86.7454C85.3511 89.4798 86.2213 91.7972 86.61 93.5391C86.8045 94.4109 86.876 95.1284 86.8235 95.6775C86.7707 96.2282 86.5966 96.5814 86.3288 96.7691C86.0609 96.9568 85.6695 96.9999 85.1339 96.8614C84.5998 96.7234 83.9498 96.4112 83.1968 95.9308C81.6922 94.9709 79.811 93.3619 77.6784 91.224C73.415 86.9501 68.1698 80.5861 62.9556 73.1449C57.7414 65.7038 53.5501 58.6012 50.9884 53.135C49.7069 50.4007 48.8367 48.0833 48.4481 46.3413C48.2536 45.4695 48.182 44.752 48.2346 44.2029C48.2873 43.6522 48.4614 43.2991 48.7293 43.1114C48.9972 42.9237 49.3885 42.8806 49.9242 43.019C50.4582 43.157 51.1082 43.4692 51.8612 43.9496C53.3659 44.9096 55.247 46.5186 57.3797 48.6565C61.643 52.9303 66.8882 59.2943 72.1024 66.7355Z" stroke="#191816" stroke-width="0.336"/>
<path d="M74.3769 65.1419C79.5892 72.5802 83.5144 79.8633 85.6488 85.6223C86.7165 88.5031 87.3326 90.9933 87.4421 92.9265C87.5521 94.8704 87.1479 96.1953 86.2477 96.826C85.3476 97.4568 83.9644 97.3845 82.1748 96.6175C80.395 95.8547 78.2647 94.4255 75.9215 92.4386C71.237 88.4664 65.7313 82.2908 60.5191 74.8525C55.3068 67.4141 51.3816 60.1311 49.2472 54.372C48.1795 51.4913 47.5634 49.001 47.4539 47.0678C47.3439 45.1239 47.7481 43.7991 48.6483 43.1683C49.5484 42.5375 50.9316 42.6099 52.7212 43.3769C54.501 44.1396 56.6313 45.5688 58.9745 47.5558C63.659 51.5279 69.1647 57.7036 74.3769 65.1419Z" stroke="#191816" stroke-width="0.336"/>
<path d="M76.2693 63.6944C81.4641 71.1078 85.1552 78.5199 86.9264 84.5068C87.8123 87.5011 88.2152 90.1296 88.0914 92.2191C87.9676 94.3108 87.3188 95.833 86.1338 96.6633C84.9488 97.4937 83.2967 97.5838 81.2883 96.9862C79.282 96.3893 76.949 95.1134 74.4369 93.2585C69.4143 89.55 63.7075 83.5504 58.5127 76.137C53.3179 68.7235 49.6268 61.3115 47.8556 55.3246C46.9697 52.3303 46.5668 49.7018 46.6906 47.6123C46.8144 45.5205 47.4632 43.9984 48.6482 43.168C49.8332 42.3377 51.4853 42.2475 53.4937 42.8451C55.5 43.4421 57.833 44.718 60.3451 46.5728C65.3677 50.2814 71.0745 56.281 76.2693 63.6944Z" stroke="#191816" stroke-width="0.336"/>
<path d="M78.7061 61.987C83.8987 69.3973 87.3245 76.99 88.6702 83.2704C89.3431 86.4109 89.4941 89.215 89.0919 91.5006C88.6899 93.7853 87.738 95.5394 86.2151 96.6065C84.6923 97.6736 82.7186 97.9695 80.4339 97.5675C78.1483 97.1653 75.5642 96.0662 72.842 94.3616C67.3983 90.9529 61.4311 85.141 56.2385 77.7307C51.0459 70.3204 47.6201 62.7277 46.2745 56.4473C45.6016 53.3068 45.4506 50.5027 45.8528 48.2171C46.2548 45.9325 47.2066 44.1784 48.7295 43.1112C50.2524 42.0441 52.2261 41.7482 54.5107 42.1503C56.7963 42.5525 59.3804 43.6516 62.1026 45.3561C67.5464 48.7649 73.5135 54.5767 78.7061 61.987Z" stroke="#191816" stroke-width="0.336"/>
<path d="M81.1431 60.2796C86.3333 67.6865 89.4851 75.466 90.3913 82.0507C91.2987 88.6453 89.9501 93.9895 86.2154 96.6065C82.4806 99.2236 76.997 98.6669 71.1084 95.5628C65.2285 92.4633 58.9922 86.8451 53.802 79.4382C48.6118 72.0313 45.4599 64.2518 44.5538 57.6671C43.6463 51.0725 44.995 45.7283 48.7297 43.1113C52.4645 40.4942 57.948 41.0509 63.8367 44.155C69.7165 47.2545 75.9529 52.8727 81.1431 60.2796Z" stroke="#191816" stroke-width="0.336"/>
<path d="M84.2293 58.117C89.4162 65.5192 92.2128 73.5419 92.5483 80.5235C92.8839 87.5076 90.7577 93.4236 86.1338 96.6637C81.5099 99.9037 75.2235 99.8827 68.7735 97.1831C62.3258 94.4846 55.7397 89.1173 50.5527 81.7151C45.3658 74.3129 42.5692 66.2902 42.2337 59.3086C41.8982 52.3245 44.0243 46.4085 48.6482 43.1684C53.2721 39.9283 59.5585 39.9494 66.0086 42.6489C72.4563 45.3475 79.0423 50.7148 84.2293 58.117Z" stroke="#191816" stroke-width="0.336"/>
<path d="M87.0477 56.2628C92.2472 63.683 94.731 71.9507 94.5504 79.3147C94.3697 86.6788 91.5263 93.1269 86.0851 96.9397C80.6438 100.753 73.6124 101.224 66.629 98.88C59.6457 96.536 52.7225 91.3791 47.523 83.9589C42.3234 76.5387 39.8396 68.271 40.0203 60.907C40.201 53.543 43.0444 47.0948 48.4856 43.282C53.9268 39.4692 60.9583 38.9978 67.9417 41.3418C74.925 43.6857 81.8481 48.8426 87.0477 56.2628Z" stroke="#191816" stroke-width="0.336"/>
<path d="M92.0268 52.6529C102.385 67.4356 99.6935 87.1619 86.0526 96.7204C72.4118 106.279 52.9514 102.075 42.5928 87.2927C32.2341 72.51 34.9261 52.7837 48.567 43.2252C62.2079 33.6666 81.6682 37.8702 92.0268 52.6529Z" stroke="#191816" stroke-width="0.336"/>
<path d="M89.5902 54.3603C99.9584 69.1566 98.2995 88.1387 85.9715 96.7773C73.6435 105.416 55.2354 100.495 44.8672 85.699C34.499 70.9027 36.1579 51.9206 48.4859 43.282C60.8139 34.6434 79.2221 39.564 89.5902 54.3603Z" stroke="#191816" stroke-width="0.336"/>
<path d="M65.642 67.5927C73.0857 62.3767 80.0202 57.9376 85.2137 54.977C87.8113 53.4963 89.9689 52.3879 91.5349 51.737C92.3193 51.4109 92.947 51.2032 93.4035 51.1186C93.6325 51.0762 93.8082 51.0668 93.9346 51.0836C94.0616 51.1005 94.1155 51.1401 94.1388 51.1734C94.1621 51.2067 94.181 51.2708 94.1535 51.396C94.1261 51.5205 94.0573 51.6825 93.9393 51.8832C93.704 52.2835 93.2944 52.8025 92.7202 53.4285C91.5738 54.6782 89.7955 56.3279 87.5169 58.264C82.9614 62.1348 76.4217 67.1375 68.9779 72.3535C61.5342 77.5695 54.5997 82.0087 49.4062 84.9692C46.8087 86.45 44.651 87.5583 43.085 88.2093C42.3006 88.5353 41.673 88.7431 41.2164 88.8276C40.9875 88.87 40.8117 88.8794 40.6853 88.8626C40.5583 88.8457 40.5044 88.8061 40.4811 88.7728C40.4578 88.7396 40.439 88.6754 40.4664 88.5503C40.4938 88.4257 40.5626 88.2637 40.6806 88.063C40.916 87.6627 41.3255 87.1437 41.8997 86.5178C43.0462 85.268 44.8244 83.6183 47.103 81.6823C51.6585 77.8114 58.1983 72.8088 65.642 67.5927Z" stroke="#191816" stroke-width="0.336"/>
<path d="M64.0482 65.3185C71.4894 60.1042 78.592 55.913 84.0582 53.3512C86.7925 52.0698 89.1099 51.1996 90.8519 50.8109C91.7236 50.6164 92.4412 50.5449 92.9902 50.5974C93.541 50.6502 93.8941 50.8243 94.0818 51.0921C94.2695 51.36 94.3126 51.7514 94.1742 52.287C94.0362 52.8211 93.724 53.4711 93.2436 54.2241C92.2836 55.7287 90.6746 57.6099 88.5367 59.7425C84.2629 64.0059 77.8988 69.2511 70.4577 74.4653C63.0165 79.6795 55.9139 83.8708 50.4478 86.4325C47.7134 87.714 45.396 88.5842 43.654 88.9728C42.7823 89.1673 42.0647 89.2389 41.5157 89.1863C40.965 89.1336 40.6118 88.9595 40.4241 88.6916C40.2364 88.4237 40.1933 88.0324 40.3317 87.4967C40.4698 86.9627 40.7819 86.3127 41.2624 85.5597C42.2223 84.055 43.8313 82.1739 45.9692 80.0412C50.243 75.7779 56.6071 70.5327 64.0482 65.3185Z" stroke="#191816" stroke-width="0.336"/>
<path d="M62.4546 63.044C69.8929 57.8317 77.176 53.9065 82.9351 51.7721C85.8158 50.7044 88.3061 50.0883 90.2393 49.9788C92.1832 49.8688 93.508 50.273 94.1388 51.1732C94.7695 52.0733 94.6972 53.4565 93.9302 55.2461C93.1674 57.0259 91.7382 59.1562 89.7513 61.4994C85.7791 66.1839 79.6035 71.6896 72.1652 76.9018C64.7269 82.1141 57.4438 86.0393 51.6848 88.1737C48.804 89.2414 46.3138 89.8575 44.3806 89.967C42.4366 90.077 41.1118 89.6728 40.4811 88.7726C39.8503 87.8725 39.9226 86.4893 40.6896 84.6997C41.4524 82.9199 42.8816 80.7896 44.8685 78.4464C48.8407 73.7619 55.0163 68.2562 62.4546 63.044Z" stroke="#191816" stroke-width="0.336"/>
<path d="M61.0074 61.1513C68.4208 55.9566 75.8329 52.2655 81.8198 50.4942C84.8141 49.6083 87.4426 49.2055 89.5321 49.3292C91.6238 49.4531 93.146 50.1019 93.9763 51.2868C94.8066 52.4718 94.8968 54.124 94.2992 56.1324C93.7022 58.1386 92.4263 60.4717 90.5715 62.9837C86.8629 68.0063 80.8634 73.7132 73.4499 78.908C66.0365 84.1027 58.6244 87.7938 52.6376 89.5651C49.6432 90.451 47.0148 90.8538 44.9253 90.7301C42.8335 90.6062 41.3114 89.9574 40.481 88.7725C39.6507 87.5875 39.5605 85.9353 40.1581 83.9269C40.7551 81.9207 42.031 79.5876 43.8858 77.0756C47.5944 72.053 53.594 66.3461 61.0074 61.1513Z" stroke="#191816" stroke-width="0.336"/>
<path d="M59.2998 58.7148C66.7101 53.5222 74.3027 50.0964 80.5831 48.7507C83.7237 48.0778 86.5277 47.9268 88.8133 48.329C91.098 48.731 92.8521 49.6829 93.9192 51.2058C94.9864 52.7286 95.2822 54.7023 94.8802 56.987C94.478 59.2726 93.3789 61.8567 91.6743 64.5789C88.2656 70.0226 82.4537 75.9898 75.0434 81.1824C67.6332 86.375 60.0405 89.8008 53.7601 91.1464C50.6195 91.8193 47.8155 91.9703 45.5299 91.5681C43.2452 91.1661 41.4911 90.2143 40.424 88.6914C39.3568 87.1685 39.061 85.1948 39.463 82.9102C39.8652 80.6246 40.9643 78.0405 42.6689 75.3183C46.0776 69.8745 51.8895 63.9074 59.2998 58.7148Z" stroke="#191816" stroke-width="0.336"/>
<path d="M57.5923 56.2778C64.9992 51.0876 72.7788 47.9357 79.3635 47.0296C85.958 46.1222 91.3022 47.4708 93.9193 51.2055C96.5363 54.9403 95.9796 60.4239 92.8755 66.3125C89.7761 72.1924 84.1579 78.4287 76.751 83.6189C69.3441 88.8091 61.5645 91.961 54.9798 92.8671C48.3853 93.7746 43.0411 92.4259 40.424 88.6912C37.807 84.9564 38.3637 79.4729 41.4678 73.5842C44.5672 67.7044 50.1854 61.468 57.5923 56.2778Z" stroke="#191816" stroke-width="0.336"/>
<path d="M55.4295 53.1914C62.8317 48.0044 70.8544 45.2078 77.836 44.8724C84.8201 44.5368 90.7361 46.6629 93.9762 51.2868C97.2162 55.9107 97.1952 62.1971 94.4956 68.6472C91.7971 75.0949 86.4298 81.681 79.0276 86.8679C71.6254 92.0549 63.6027 94.8515 56.6211 95.1869C49.637 95.5225 43.721 93.3963 40.4809 88.7725C37.2408 84.1486 37.2619 77.8621 39.9614 71.4121C42.66 64.9644 48.0273 58.3783 55.4295 53.1914Z" stroke="#191816" stroke-width="0.336"/>
<path d="M53.5753 50.3732C60.9955 45.1737 69.2632 42.6899 76.6272 42.8705C83.9913 43.0512 90.4394 45.8946 94.2522 51.3358C98.0651 56.7771 98.5365 63.8085 96.1925 70.7919C93.8485 77.7752 88.6916 84.6984 81.2714 89.8979C73.8512 95.0975 65.5835 97.5813 58.2195 97.4006C50.8555 97.2199 44.4073 94.3765 40.5945 88.9353C36.7817 83.4941 36.3103 76.4626 38.6543 69.4792C40.9982 62.4959 46.1551 55.5727 53.5753 50.3732Z" stroke="#191816" stroke-width="0.336"/>
<path d="M49.9656 45.3943C64.7483 35.0357 84.4747 37.7277 94.0332 51.3685C103.592 65.0094 99.3881 84.4697 84.6055 94.8284C69.8228 105.187 50.0964 102.495 40.5379 88.8542C30.9794 75.2133 35.183 55.7529 49.9656 45.3943Z" stroke="#191816" stroke-width="0.336"/>
<path d="M51.673 47.8309C66.4693 37.4627 85.4514 39.1216 94.09 51.4496C102.729 63.7776 97.808 82.1858 83.0117 92.554C68.2154 102.922 49.2333 101.263 40.5947 88.9352C31.9562 76.6072 36.8767 58.1991 51.673 47.8309Z" stroke="#191816" stroke-width="0.336"/>
<rect x="24.1919" y="38.1558" width="80.64" height="114.24" rx="7.392" transform="rotate(-23.9849 24.1919 38.1558)" fill="#CFCDBC"/>
<circle cx="83.7885" cy="71.6926" r="32.76" transform="rotate(-23.98 83.7885 71.6926)" stroke="#191816" stroke-width="0.336"/>
<path d="M70.7485 41.8887L97.2717 101.517" stroke="#191816" stroke-width="0.336"/>
<path d="M113.875 58.3101L53.7027 85.0751" stroke="#191816" stroke-width="0.336"/>
<path d="M86.535 70.4714C90.229 78.7762 93.2581 86.4325 95.1694 92.0968C96.1253 94.9299 96.8 97.2598 97.139 98.9215C97.3088 99.7538 97.3925 100.41 97.3881 100.874C97.3858 101.107 97.3614 101.281 97.3207 101.402C97.2798 101.523 97.2306 101.569 97.1935 101.585C97.1564 101.602 97.0898 101.608 96.9722 101.557C96.8552 101.506 96.7094 101.408 96.535 101.253C96.1872 100.946 95.7562 100.444 95.2518 99.761C94.2447 98.3964 92.9661 96.3351 91.5022 93.728C88.5753 88.5155 84.9176 81.1388 81.2235 72.834C77.5295 64.5292 74.5004 56.8729 72.5891 51.2087C71.6332 48.3756 70.9585 46.0457 70.6195 44.3839C70.4497 43.5517 70.366 42.8958 70.3704 42.4315C70.3727 42.1987 70.3971 42.0244 70.4378 41.9036C70.4787 41.7822 70.5279 41.7368 70.565 41.7203C70.6021 41.7038 70.6687 41.6976 70.7863 41.7486C70.9033 41.7993 71.0491 41.8978 71.2235 42.0521C71.5713 42.3597 72.0023 42.8611 72.5067 43.5445C73.5138 44.9091 74.7924 46.9704 76.2563 49.5775C79.1832 54.79 82.8409 62.1666 86.535 70.4714Z" stroke="#191816" stroke-width="0.336"/>
<path d="M89.0723 69.3426C92.7651 77.6446 95.5186 85.4183 96.9862 91.2739C97.7204 94.203 98.1307 96.6442 98.1786 98.4283C98.2025 99.3212 98.1354 100.039 97.9786 100.568C97.8214 101.098 97.5829 101.412 97.284 101.545C96.9852 101.678 96.5928 101.645 96.0936 101.406C95.5959 101.169 95.0177 100.738 94.3706 100.122C93.0776 98.8918 91.5394 96.9524 89.8556 94.4457C86.4896 89.4345 82.5601 82.1838 78.8673 73.8819C75.1745 65.5799 72.421 57.8062 70.9533 51.9506C70.2192 49.0215 69.8089 46.5803 69.761 44.7962C69.737 43.9033 69.8042 43.1853 69.961 42.6565C70.1182 42.1261 70.3567 41.8128 70.6555 41.6798C70.9544 41.5469 71.3468 41.5796 71.846 41.818C72.3437 42.0557 72.9219 42.4866 73.569 43.1023C74.862 44.3327 76.4002 46.2721 78.084 48.7788C81.45 53.79 85.3795 61.0407 89.0723 69.3426Z" stroke="#191816" stroke-width="0.336"/>
<path d="M91.6097 68.2142C95.3011 76.513 97.759 84.4129 98.7511 90.4741C99.2474 93.506 99.3753 96.0681 99.1125 97.9865C98.8482 99.9155 98.1978 101.138 97.1935 101.585C96.1892 102.032 94.8455 101.696 93.2359 100.601C91.6351 99.511 89.8179 97.7003 87.8985 95.3015C84.0614 90.5058 79.8402 83.3901 76.1488 75.0914C72.4574 66.7926 69.9995 58.8926 69.0074 52.8314C68.5111 49.7995 68.3833 47.2374 68.6461 45.319C68.9103 43.39 69.5607 42.1671 70.565 41.7204C71.5693 41.2736 72.9131 41.6095 74.5227 42.705C76.1234 43.7945 77.9406 45.6052 79.86 48.004C83.6972 52.7998 87.9183 59.9154 91.6097 68.2142Z" stroke="#191816" stroke-width="0.336"/>
<path d="M93.7441 67.156C97.4232 75.427 99.6266 83.4087 100.219 89.624C100.515 92.7326 100.407 95.3895 99.8852 97.4167C99.363 99.446 98.4348 100.816 97.1127 101.404C95.7907 101.992 94.1518 101.764 92.295 100.793C90.4402 99.8227 88.3947 98.1237 86.2843 95.8221C82.0648 91.2204 77.6125 84.239 73.9335 75.968C70.2544 67.697 68.051 59.7153 67.459 53.5C67.1629 50.3915 67.2708 47.7345 67.7924 45.7074C68.3146 43.678 69.2428 42.3083 70.5649 41.7202C71.8869 41.1322 73.5258 41.36 75.3826 42.3312C77.2374 43.3013 79.2829 45.0004 81.3933 47.3019C85.6128 51.9036 90.0651 58.885 93.7441 67.156Z" stroke="#191816" stroke-width="0.336"/>
<path d="M96.463 65.947C100.14 74.2145 102.049 82.3227 102.167 88.7446C102.226 91.9558 101.837 94.7369 101.005 96.9032C100.173 99.0686 98.9027 100.608 97.2036 101.364C95.5046 102.119 93.5108 102.032 91.3454 101.2C89.1791 100.367 86.8533 98.7938 84.5079 96.5995C79.8176 92.2114 75.0738 85.3644 71.3963 77.0969C67.7189 68.8294 65.8104 60.7212 65.6923 54.2994C65.6333 51.0881 66.0221 48.307 66.8545 46.1407C67.6866 43.9753 68.9567 42.4359 70.6557 41.6802C72.3548 40.9244 74.3486 41.012 76.514 41.8441C78.6803 42.6765 81.0061 44.2501 83.3515 46.4444C88.0418 50.8325 92.7855 57.6795 96.463 65.947Z" stroke="#191816" stroke-width="0.336"/>
<path d="M99.1812 64.7375C102.857 73.0012 104.461 81.2403 104.089 87.8767C103.717 94.523 101.37 99.51 97.2032 101.363C93.0364 103.217 87.761 101.62 82.5757 97.4461C77.3982 93.2781 72.3531 86.5696 68.6774 78.3059C65.0016 70.0422 63.3978 61.803 63.7694 55.1667C64.1415 48.5204 66.4886 43.5333 70.6553 41.6799C74.8221 39.8265 80.0976 41.423 85.2828 45.5972C90.4604 49.7653 95.5054 56.4737 99.1812 64.7375Z" stroke="#191816" stroke-width="0.336"/>
<path d="M102.625 63.2057C106.299 71.4642 107.507 79.8739 106.499 86.7905C105.491 93.7097 102.272 99.1091 97.1129 101.404C91.9541 103.698 85.7881 102.474 79.9743 98.5892C74.1627 94.7059 68.7263 88.1767 65.0528 79.9182C61.3794 71.6597 60.1708 63.25 61.1785 56.3334C62.1866 49.4142 65.4063 44.0148 70.565 41.7202C75.7238 39.4255 81.8899 40.65 87.7036 44.5347C93.5152 48.418 98.9516 54.9472 102.625 63.2057Z" stroke="#191816" stroke-width="0.336"/>
<path d="M105.746 61.9258C109.429 70.2044 110.283 78.7947 108.696 85.9878C107.108 93.181 103.083 98.9653 97.0122 101.666C90.9416 104.366 83.95 103.482 77.5447 99.8442C71.1395 96.2063 65.3319 89.8191 61.6495 81.5406C57.9672 73.262 57.1125 64.6717 58.7 57.4786C60.2875 50.2854 64.3131 44.5011 70.3837 41.8008C76.4544 39.1005 83.446 39.9843 89.8513 43.6222C96.2565 47.26 102.064 53.6472 105.746 61.9258Z" stroke="#191816" stroke-width="0.336"/>
<path d="M111.325 59.336C118.661 75.8287 112.241 94.6745 97.0222 101.444C81.8034 108.213 63.5081 100.361 56.172 83.8684C48.8358 67.3757 55.2555 48.5299 70.4743 41.7604C85.6931 34.9909 103.988 42.8432 111.325 59.336Z" stroke="#191816" stroke-width="0.336"/>
<path d="M108.606 60.5455C115.949 77.0534 110.685 95.3665 96.9313 101.485C83.1772 107.602 66.052 99.2479 58.7091 82.74C51.3662 66.2321 56.6294 47.9189 70.3834 41.8009C84.1375 35.683 101.263 44.0376 108.606 60.5455Z" stroke="#191816" stroke-width="0.336"/>
<path d="M82.5669 68.9465C90.8717 65.2524 98.528 62.2233 104.192 60.3121C107.025 59.3561 109.355 58.6815 111.017 58.3425C111.849 58.1727 112.505 58.089 112.969 58.0934C113.202 58.0956 113.376 58.12 113.497 58.1607C113.619 58.2016 113.664 58.2508 113.681 58.288C113.697 58.3251 113.703 58.3917 113.652 58.5092C113.602 58.6263 113.503 58.772 113.349 58.9464C113.041 59.2942 112.54 59.7253 111.856 60.2296C110.492 61.2368 108.431 62.5154 105.823 63.9793C100.611 66.9061 93.2343 70.5639 84.9295 74.2579C76.6247 77.952 68.9684 80.9811 63.3041 82.8923C60.4711 83.8482 58.1411 84.5229 56.4794 84.8619C55.6472 85.0317 54.9913 85.1154 54.527 85.111C54.2942 85.1088 54.1199 85.0844 53.999 85.0436C53.8776 85.0027 53.8323 84.9536 53.8158 84.9164C53.7993 84.8793 53.7931 84.8127 53.844 84.6952C53.8947 84.5781 53.9933 84.4324 54.1475 84.258C54.4552 83.9102 54.9566 83.4791 55.64 82.9747C57.0045 81.9676 59.0658 80.689 61.6729 79.2251C66.8854 76.2983 74.2621 72.6405 82.5669 68.9465Z" stroke="#191816" stroke-width="0.336"/>
<path d="M81.4383 66.4094C89.7403 62.7166 97.514 59.9631 103.37 58.4955C106.299 57.7613 108.74 57.351 110.524 57.3031C111.417 57.2791 112.135 57.3463 112.664 57.5031C113.194 57.6603 113.507 57.8988 113.64 58.1977C113.773 58.4965 113.741 58.8889 113.502 59.3881C113.264 59.8858 112.834 60.464 112.218 61.1111C110.988 62.4041 109.048 63.9423 106.541 65.6261C101.53 68.9921 94.2795 72.9216 85.9776 76.6144C77.6756 80.3072 69.9019 83.0607 64.0463 84.5283C61.1172 85.2625 58.676 85.6728 56.8919 85.7207C55.999 85.7446 55.281 85.6775 54.7522 85.5207C54.2218 85.3635 53.9085 85.125 53.7755 84.8261C53.6426 84.5273 53.6753 84.1349 53.9137 83.6357C54.1514 83.138 54.5823 82.5598 55.198 81.9127C56.4284 80.6197 58.3678 79.0815 60.8745 77.3977C65.8857 74.0317 73.1364 70.1022 81.4383 66.4094Z" stroke="#191816" stroke-width="0.336"/>
<path d="M80.3096 63.8717C88.6084 60.1803 96.5083 57.7224 102.57 56.7303C105.601 56.234 108.164 56.1062 110.082 56.369C112.011 56.6332 113.234 57.2836 113.681 58.2879C114.127 59.2922 113.791 60.636 112.696 62.2456C111.606 63.8463 109.796 65.6635 107.397 67.5829C102.601 71.4201 95.4856 75.6412 87.1868 79.3326C78.888 83.024 70.9881 85.4819 64.9269 86.4741C61.895 86.9703 59.3328 87.0982 57.4145 86.8354C55.4854 86.5711 54.2625 85.9207 53.8158 84.9164C53.3691 83.9121 53.705 82.5684 54.8005 80.9588C55.8899 79.358 57.7006 77.5408 60.0995 75.6214C64.8952 71.7843 72.0109 67.5631 80.3096 63.8717Z" stroke="#191816" stroke-width="0.336"/>
<path d="M79.2517 61.7371C87.5227 58.058 95.5044 55.8546 101.72 55.2626C104.828 54.9665 107.485 55.0745 109.512 55.596C111.542 56.1182 112.911 57.0464 113.499 58.3685C114.088 59.6905 113.86 61.3294 112.889 63.1862C111.918 65.041 110.219 67.0865 107.918 69.1969C103.316 73.4164 96.3347 77.8687 88.0637 81.5477C79.7927 85.2268 71.811 87.4302 65.5957 88.0222C62.4872 88.3183 59.8302 88.2104 57.8031 87.6888C55.7737 87.1666 54.404 86.2384 53.8159 84.9163C53.2279 83.5943 53.4557 81.9554 54.4269 80.0986C55.397 78.2438 57.0961 76.1983 59.3976 74.0879C63.9993 69.8684 70.9807 65.4161 79.2517 61.7371Z" stroke="#191816" stroke-width="0.336"/>
<path d="M78.0425 59.0187C86.31 55.3412 94.4182 53.4328 100.84 53.3147C104.051 53.2556 106.832 53.6444 108.999 54.4768C111.164 55.3089 112.703 56.579 113.459 58.2781C114.215 59.9771 114.127 61.9709 113.295 64.1363C112.463 66.3026 110.889 68.6284 108.695 70.9738C104.307 75.6641 97.4599 80.4079 89.1924 84.0853C80.9249 87.7628 72.8167 89.6713 66.3948 89.7894C63.1836 89.8484 60.4025 89.4596 58.2362 88.6272C56.0708 87.7951 54.5314 86.525 53.7756 84.826C53.0199 83.1269 53.1074 81.1331 53.9395 78.9677C54.772 76.8014 56.3456 74.4756 58.5399 72.1302C62.928 67.4399 69.775 62.6962 78.0425 59.0187Z" stroke="#191816" stroke-width="0.336"/>
<path d="M76.8332 56.3002C85.0969 52.6244 93.336 51.0207 99.9724 51.3922C106.619 51.7644 111.606 54.1114 113.459 58.2782C115.313 62.445 113.716 67.7205 109.542 72.9057C105.374 78.0832 98.6653 83.1283 90.4016 86.8041C82.1379 90.4799 73.8987 92.0837 67.2624 91.7121C60.6161 91.3399 55.629 88.9929 53.7756 84.8261C51.9222 80.6593 53.5187 75.3838 57.6929 70.1986C61.861 65.0211 68.5694 59.976 76.8332 56.3002Z" stroke="#191816" stroke-width="0.336"/>
<path d="M75.3014 52.8564C83.5599 49.1829 91.9696 47.9743 98.8862 48.982C105.805 49.9901 111.205 53.2098 113.499 58.3686C115.794 63.5273 114.57 69.6934 110.685 75.5071C106.802 81.3187 100.272 86.7551 92.0139 90.4286C83.7554 94.1021 75.3457 95.3106 68.4291 94.3029C61.5099 93.2949 56.1105 90.0752 53.8159 84.9164C51.5212 79.7577 52.7457 73.5916 56.6304 67.7779C60.5137 61.9663 67.0429 56.5298 75.3014 52.8564Z" stroke="#191816" stroke-width="0.336"/>
<path d="M74.0215 49.7352C82.3001 46.0529 90.8904 45.1982 98.0835 46.7857C105.277 48.3732 111.061 52.3988 113.761 58.4695C116.462 64.5401 115.578 71.5317 111.94 77.937C108.302 84.3422 101.915 90.1497 93.6363 93.8321C85.3577 97.5145 76.7674 98.3692 69.5743 96.7817C62.3811 95.1941 56.5968 91.1686 53.8965 85.0979C51.1962 79.0273 52.08 72.0357 55.7179 65.6304C59.3557 59.2252 65.7429 53.4176 74.0215 49.7352Z" stroke="#191816" stroke-width="0.336"/>
<path d="M71.4317 44.1569C87.9244 36.8208 106.77 43.2404 113.54 58.4593C120.309 73.6781 112.457 91.9733 95.9641 99.3095C79.4714 106.646 60.6256 100.226 53.8561 85.0071C47.0866 69.7883 54.9389 51.4931 71.4317 44.1569Z" stroke="#191816" stroke-width="0.336"/>
<path d="M72.6409 46.8758C89.1488 39.5329 107.462 44.796 113.58 58.5501C119.698 72.3042 111.343 89.4295 94.8354 96.7724C78.3275 104.115 60.0144 98.8521 53.8964 85.098C47.7784 71.3439 56.133 54.2187 72.6409 46.8758Z" stroke="#191816" stroke-width="0.336"/>
<rect x="55.104" y="32.3657" width="80.64" height="114.24" rx="7.392" transform="rotate(-8.70593 55.104 32.3657)" fill="#FEFCED"/>
<path d="M71.6897 42.9862C72.8853 42.803 73.9908 43.629 74.174 44.8246C74.3572 46.0203 73.5472 47.1233 72.3515 47.3065C71.8573 47.3822 71.3865 47.2912 70.9759 47.0604C69.0783 46.1763 66.8464 46.5183 65.3005 47.9298C64.9778 48.273 64.5559 48.5008 64.0457 48.5789C62.866 48.7597 61.763 47.9497 61.5798 46.754C61.4137 45.67 62.0581 44.6576 63.054 44.3418C66.4355 42.8774 68.559 39.4847 68.4007 35.7888C68.3621 34.6853 69.1414 33.7011 70.2414 33.5326C71.437 33.3494 72.5425 34.1753 72.7257 35.371C72.8918 36.4551 72.2474 37.4675 71.2515 37.7832C68.9579 38.7872 67.2229 40.6683 66.4134 42.9461C66.0228 44.0175 66.992 45.1254 68.0957 44.8747C68.9628 44.6766 69.7797 44.2578 70.4532 43.6488C70.7759 43.3057 71.1955 43.0619 71.6897 42.9862Z" fill="#191816"/>
<path d="M41.4918 43.6591C42.597 43.1675 43.881 43.6731 44.3726 44.7783C44.8642 45.8835 44.3733 47.1609 43.2681 47.6525C42.8113 47.8557 42.3332 47.8919 41.8762 47.7774C39.8128 47.4243 37.7498 48.342 36.6302 50.1109C36.4093 50.5269 36.0622 50.8578 35.5907 51.0675C34.5002 51.5526 33.2228 51.0617 32.7312 49.9565C32.2855 48.9545 32.6405 47.8081 33.518 47.2412C36.3945 44.938 37.5494 41.1057 36.4234 37.5821C36.0955 36.5276 36.5881 35.373 37.6049 34.9207C38.7101 34.4291 39.994 34.9347 40.4856 36.0399C40.9314 37.0419 40.5764 38.1883 39.6988 38.7552C37.7506 40.3278 36.5723 42.5995 36.3912 45.01C36.2966 46.1465 37.5234 46.96 38.5221 46.4275C39.3064 46.008 39.9841 45.3888 40.4735 44.6239C40.6945 44.2079 41.035 43.8623 41.4918 43.6591Z" fill="#191816"/>
<path d="M18.4204 49.0074C19.411 48.3132 20.768 48.5636 21.4622 49.5542C22.1563 50.5448 21.9192 51.8926 20.9285 52.5868C20.5191 52.8737 20.0567 53.0007 19.5863 52.9759C17.4935 53.0245 15.6444 54.3202 14.8843 56.2707C14.7471 56.7214 14.4698 57.1126 14.0471 57.4088C13.0698 58.0936 11.722 57.8565 11.0278 56.8659C10.3985 55.9677 10.5274 54.7746 11.2801 54.0501C13.6623 51.2387 14.062 47.2562 12.282 44.0134C11.7583 43.0412 12.0207 41.8136 12.932 41.175C13.9226 40.4809 15.2797 40.7312 15.9738 41.7218C16.6032 42.62 16.4743 43.8132 15.7215 44.5376C14.1105 46.4542 13.389 48.9094 13.6729 51.31C13.7977 52.4436 15.1575 53.0071 16.0358 52.2932C16.7252 51.7313 17.2718 50.9938 17.6057 50.1493C17.7429 49.6987 18.0109 49.2943 18.4204 49.0074Z" fill="#191816"/>
<path d="M144.937 125.642C146.133 125.459 147.239 126.285 147.422 127.481C147.605 128.677 146.795 129.78 145.599 129.963C145.105 130.038 144.634 129.947 144.224 129.717C142.326 128.833 140.094 129.175 138.548 130.586C138.226 130.929 137.804 131.157 137.294 131.235C136.114 131.416 135.011 130.606 134.828 129.41C134.662 128.326 135.306 127.314 136.302 126.998C138.825 125.894 140.646 123.722 141.345 121.151C141.545 120.435 140.982 119.738 140.239 119.787C139.092 119.865 137.988 120.327 137.1 121.132C136.777 121.476 136.358 121.719 135.848 121.798C134.668 121.978 133.562 121.152 133.379 119.957C133.196 118.761 134.004 117.642 135.183 117.461C135.694 117.383 136.167 117.49 136.577 117.721C138.475 118.605 140.707 118.263 142.253 116.851C142.575 116.508 142.995 116.265 143.489 116.189C144.685 116.006 145.79 116.832 145.973 118.027C146.14 119.111 145.495 120.124 144.499 120.439C142.19 121.446 140.457 123.343 139.65 125.637C139.273 126.69 140.224 127.784 141.312 127.536C142.181 127.354 143.014 126.932 143.701 126.305C144.024 125.962 144.443 125.718 144.937 125.642Z" fill="#191816"/>
<circle cx="103.391" cy="82.5589" r="32.76" transform="rotate(-8.71 103.391 82.5589)" stroke="#191816" stroke-width="0.336"/>
<path d="M98.6609 50.3721L108.544 114.88" stroke="#191816" stroke-width="0.336"/>
<path d="M135.939 77.5723L70.8425 87.5451" stroke="#191816" stroke-width="0.336"/>
<path d="M106.362 82.1034C107.739 91.0879 108.644 99.2717 108.996 105.239C109.172 108.224 109.21 110.649 109.099 112.342C109.044 113.189 108.952 113.844 108.825 114.291C108.762 114.515 108.692 114.677 108.621 114.783C108.55 114.889 108.49 114.92 108.45 114.926C108.41 114.932 108.344 114.92 108.244 114.84C108.145 114.761 108.03 114.627 107.902 114.432C107.648 114.044 107.364 113.447 107.057 112.655C106.445 111.073 105.755 108.748 105.029 105.847C103.578 100.048 101.993 91.9682 100.616 82.9838C99.2397 73.9993 98.3339 65.8155 97.982 59.8478C97.8059 56.863 97.7687 54.4377 97.8793 52.7453C97.9347 51.8978 98.0266 51.243 98.1532 50.7962C98.2167 50.5722 98.2861 50.4105 98.3572 50.3047C98.4287 50.1983 98.488 50.1676 98.5282 50.1614C98.5684 50.1553 98.6342 50.1668 98.7342 50.2469C98.8338 50.3266 98.9484 50.4601 99.0761 50.6549C99.3306 51.0432 99.6143 51.6404 99.9209 52.4326C100.533 54.0142 101.224 56.3394 101.949 59.24C103.4 65.0394 104.986 73.119 106.362 82.1034Z" stroke="#191816" stroke-width="0.336"/>
<path d="M109.107 81.683C110.483 90.6644 111.092 98.8889 110.966 104.924C110.902 107.943 110.655 110.406 110.231 112.14C110.019 113.008 109.766 113.683 109.475 114.152C109.184 114.622 108.871 114.861 108.548 114.911C108.224 114.96 107.855 114.826 107.436 114.464C107.018 114.104 106.574 113.536 106.112 112.771C105.189 111.244 104.215 108.968 103.251 106.106C101.324 100.385 99.4427 92.3558 98.0668 83.3744C96.6908 74.393 96.0818 66.1685 96.2082 60.1331C96.2714 57.114 96.5185 54.651 96.9422 52.9172C97.1542 52.0495 97.4081 51.3746 97.6986 50.9057C97.99 50.4354 98.3026 50.196 98.6259 50.1465C98.9492 50.097 99.3191 50.2318 99.7379 50.5933C100.155 50.9537 100.6 51.5217 101.062 52.2861C101.985 53.8135 102.958 56.0896 103.922 58.9513C105.85 64.672 107.731 72.7016 109.107 81.683Z" stroke="#191816" stroke-width="0.336"/>
<path d="M111.852 81.2626C113.228 90.2406 113.518 98.5089 112.879 104.617C112.559 107.673 112.008 110.178 111.249 111.96C110.486 113.751 109.536 114.76 108.45 114.926C107.363 115.092 106.156 114.415 104.891 112.934C103.634 111.461 102.358 109.236 101.138 106.416C98.6994 100.779 96.5013 92.803 95.1258 83.8251C93.7504 74.8471 93.4599 66.5787 94.0991 60.4702C94.4189 57.4146 94.9703 54.9093 95.7291 53.1278C96.492 51.3365 97.4415 50.3281 98.528 50.1616C99.6145 49.9952 100.822 50.6731 102.087 52.1538C103.344 53.6264 104.62 55.8518 105.84 58.6715C108.279 64.3085 110.477 72.2846 111.852 81.2626Z" stroke="#191816" stroke-width="0.336"/>
<path d="M114.19 80.804C115.561 89.7519 115.585 98.0322 114.519 104.184C113.986 107.261 113.182 109.795 112.145 111.614C111.107 113.434 109.851 114.511 108.42 114.73C106.99 114.949 105.469 114.298 103.934 112.872C102.4 111.447 100.874 109.269 99.4442 106.493C96.5856 100.943 94.1291 93.0353 92.7583 84.0874C91.3875 75.1395 91.364 66.8592 92.4298 60.7074C92.9628 57.6306 93.7667 55.0959 94.8038 53.2777C95.8419 51.4575 97.0981 50.3806 98.5284 50.1615C99.9586 49.9424 101.48 50.5938 103.015 52.0197C104.549 53.4441 106.075 55.6219 107.504 58.398C110.363 63.9485 112.82 71.8561 114.19 80.804Z" stroke="#191816" stroke-width="0.336"/>
<path d="M117.131 80.3533C118.502 89.2974 118.207 97.622 116.63 103.848C115.841 106.962 114.734 109.542 113.36 111.413C111.987 113.283 110.356 114.433 108.518 114.715C106.68 114.996 104.78 114.387 102.91 113.014C101.039 111.64 99.2101 109.51 97.5254 106.775C94.1564 101.307 91.3834 93.4519 90.0132 84.5078C88.6429 75.5636 88.9373 67.2391 90.5147 61.0128C91.3035 57.8994 92.411 55.3189 93.7845 53.4483C95.1575 51.5785 96.7882 50.428 98.6263 50.1464C100.464 49.8648 102.365 50.4743 104.235 51.8474C106.105 53.2209 107.934 55.3515 109.619 58.086C112.988 63.5545 115.761 71.4091 117.131 80.3533Z" stroke="#191816" stroke-width="0.336"/>
<path d="M120.072 79.9028C121.442 88.8429 120.819 97.2135 118.713 103.518C116.603 109.831 113.026 114.024 108.518 114.715C104.01 115.405 99.3413 112.476 95.4385 107.083C91.5415 101.699 88.4414 93.8985 87.0718 84.9585C85.7021 76.0184 86.3249 67.6478 88.4312 61.3435C90.5406 55.0299 94.1182 50.8371 98.626 50.1465C103.134 49.4559 107.803 52.3854 111.705 57.7779C115.602 63.1624 118.703 70.9627 120.072 79.9028Z" stroke="#191816" stroke-width="0.336"/>
<path d="M123.798 79.3319C125.166 88.2663 124.117 96.6974 121.324 103.104C118.529 109.514 114.001 113.875 108.42 114.73C102.839 115.585 97.2131 112.779 92.6277 107.501C88.0441 102.224 84.5191 94.4935 83.1504 85.5591C81.7816 76.6246 82.8306 68.1935 85.6243 61.7865C88.4191 55.3771 92.9471 51.0163 98.5281 50.1613C104.109 49.3063 109.735 52.1115 114.32 57.3902C118.904 62.6671 122.429 70.3975 123.798 79.3319Z" stroke="#191816" stroke-width="0.336"/>
<path d="M127.146 78.9188C128.518 87.875 127.08 96.3871 123.654 102.908C120.228 109.429 114.822 113.949 108.254 114.955C101.686 115.961 95.1745 113.268 89.9534 108.071C84.7324 102.875 80.8121 95.1835 79.4401 86.2274C78.068 77.2713 79.5059 68.7592 82.9318 62.2381C86.3577 55.717 91.7646 51.1971 98.3321 50.1909C104.9 49.1848 111.412 51.8787 116.633 57.0752C121.854 62.2715 125.774 69.9627 127.146 78.9188Z" stroke="#191816" stroke-width="0.336"/>
<path d="M133.209 77.8903C135.943 95.7329 124.786 112.223 108.322 114.745C91.8575 117.267 76.2762 104.874 73.5427 87.0312C70.8092 69.1887 81.9656 52.699 98.43 50.1766C114.894 47.6543 130.476 60.0477 133.209 77.8903Z" stroke="#191816" stroke-width="0.336"/>
<path d="M130.268 78.3405C133.004 96.1995 123.104 112.48 108.224 114.76C93.3441 117.039 79.0238 104.469 76.2878 86.6103C73.5518 68.7513 83.4523 52.4709 98.3321 50.1913C113.212 47.9117 127.532 60.4816 130.268 78.3405Z" stroke="#191816" stroke-width="0.336"/>
<path d="M102.936 79.5872C111.92 78.2108 120.104 77.3051 126.072 76.9531C129.057 76.777 131.482 76.7398 133.174 76.8504C134.022 76.9058 134.677 76.9978 135.123 77.1244C135.347 77.1878 135.509 77.2573 135.615 77.3284C135.721 77.3998 135.752 77.4592 135.758 77.4993C135.764 77.5395 135.753 77.6054 135.673 77.7054C135.593 77.8049 135.46 77.9196 135.265 78.0472C134.876 78.3017 134.279 78.5855 133.487 78.8921C131.906 79.5042 129.58 80.1948 126.68 80.9204C120.88 82.3711 112.801 83.957 103.816 85.3334C94.8318 86.7098 86.648 87.6155 80.6804 87.9675C77.6956 88.1436 75.2702 88.1808 73.5779 88.0702C72.7303 88.0148 72.0755 87.9228 71.6288 87.7962C71.4048 87.7328 71.2431 87.6633 71.1372 87.5922C71.0308 87.5208 71.0001 87.4614 70.9939 87.4213C70.9878 87.3811 70.9993 87.3152 71.0794 87.2152C71.1592 87.1157 71.2927 87.001 71.4874 86.8734C71.8758 86.6189 72.473 86.3351 73.2651 86.0285C74.8467 85.4164 77.172 84.7258 80.0726 84.0002C85.8719 82.5495 93.9515 80.9636 102.936 79.5872Z" stroke="#191816" stroke-width="0.336"/>
<path d="M102.515 76.8421C111.497 75.4661 119.721 74.8571 125.757 74.9835C128.776 75.0467 131.239 75.2938 132.972 75.7175C133.84 75.9295 134.515 76.1834 134.984 76.4739C135.454 76.7653 135.694 77.0779 135.743 77.4012C135.793 77.7245 135.658 78.0944 135.296 78.5132C134.936 78.9307 134.368 79.3751 133.604 79.8371C132.076 80.7604 129.8 81.7336 126.938 82.6977C121.218 84.6251 113.188 86.5063 104.207 87.8822C95.2252 89.2582 87.0008 89.8672 80.9654 89.7408C77.9463 89.6776 75.4833 89.4305 73.7495 89.0068C72.8818 88.7947 72.2069 88.5408 71.738 88.2504C71.2677 87.959 71.0283 87.6464 70.9788 87.3231C70.9293 86.9998 71.0641 86.6298 71.4256 86.211C71.786 85.7935 72.354 85.3492 73.1184 84.8871C74.6458 83.9638 76.9219 82.9907 79.7836 82.0265C85.5043 80.0991 93.5339 78.218 102.515 76.8421Z" stroke="#191816" stroke-width="0.336"/>
<path d="M102.095 74.0973C111.073 72.7219 119.341 72.4313 125.45 73.0706C128.505 73.3903 131.011 73.9418 132.792 74.7005C134.583 75.4635 135.592 76.413 135.758 77.4995C135.925 78.586 135.247 79.7939 133.766 81.0581C132.294 82.3154 130.068 83.5916 127.248 84.8114C121.611 87.2501 113.635 89.4482 104.657 90.8236C95.6794 92.199 87.411 92.4896 81.3025 91.8504C78.2469 91.5306 75.7415 90.9792 73.9601 90.2204C72.1688 89.4574 71.1604 88.5079 70.9939 87.4214C70.8275 86.3349 71.5054 85.1271 72.9861 83.8628C74.4587 82.6055 76.6841 81.3293 79.5038 80.1095C85.1408 77.6709 93.1169 75.4727 102.095 74.0973Z" stroke="#191816" stroke-width="0.336"/>
<path d="M101.636 71.7591C110.584 70.3883 118.864 70.3648 125.016 71.4306C128.093 71.9636 130.628 72.7675 132.446 73.8046C134.266 74.8427 135.343 76.099 135.562 77.5292C135.781 78.9594 135.13 80.4804 133.704 82.0159C132.28 83.5497 130.102 85.0756 127.326 86.5053C121.775 89.3639 113.868 91.8204 104.92 93.1912C95.9717 94.562 87.6915 94.5855 81.5397 93.5197C78.4629 92.9867 75.9282 92.1828 74.11 91.1457C72.2898 90.1075 71.2129 88.8513 70.9938 87.4211C70.7747 85.9908 71.4261 84.4698 72.852 82.9344C74.2764 81.4006 76.4542 79.8747 79.2303 78.445C84.7808 75.5864 92.6883 73.1299 101.636 71.7591Z" stroke="#191816" stroke-width="0.336"/>
<path d="M101.186 68.8181C110.13 67.4478 118.454 67.7422 124.681 69.3196C127.794 70.1084 130.375 71.2159 132.245 72.5894C134.115 73.9624 135.266 75.5931 135.547 77.4312C135.829 79.2694 135.219 81.1697 133.846 83.0395C132.473 84.9101 130.342 86.7393 127.608 88.424C122.139 91.793 114.284 94.566 105.34 95.9363C96.3961 97.3065 88.0716 97.0122 81.8454 95.4348C78.7319 94.646 76.1514 93.5385 74.2808 92.1649C72.411 90.7919 71.2605 89.1612 70.9789 87.3231C70.6973 85.485 71.3069 83.5847 72.6799 81.7149C74.0534 79.8443 76.184 78.015 78.9186 76.3304C84.387 72.9613 92.2416 70.1883 101.186 68.8181Z" stroke="#191816" stroke-width="0.336"/>
<path d="M100.735 65.8773C109.675 64.5076 118.046 65.1304 124.35 67.2367C130.664 69.3461 134.856 72.9237 135.547 77.4315C136.238 81.9394 133.308 86.6081 127.916 90.5109C122.531 94.4079 114.731 97.5081 105.791 98.8777C96.8507 100.247 88.48 99.6246 82.1758 97.5183C75.8622 95.4089 71.6694 91.8312 70.9788 87.3234C70.2882 82.8156 73.2177 78.1468 78.6102 74.244C83.9947 70.347 91.795 67.2469 100.735 65.8773Z" stroke="#191816" stroke-width="0.336"/>
<path d="M100.164 62.1518C109.099 60.783 117.53 61.832 123.937 64.6257C130.346 67.4205 134.707 71.9485 135.562 77.5295C136.417 83.1105 133.612 88.7364 128.333 93.3217C123.056 97.9054 115.326 101.43 106.392 102.799C97.4572 104.168 89.026 103.119 82.619 100.325C76.2096 97.5304 71.8488 93.0024 70.9938 87.4214C70.1388 81.8404 72.944 76.2145 78.2228 71.6291C83.4996 67.0454 91.23 63.5205 100.164 62.1518Z" stroke="#191816" stroke-width="0.336"/>
<path d="M99.7519 58.8032C108.708 57.4311 117.22 58.8691 123.741 62.295C130.262 65.7209 134.782 71.1277 135.788 77.6952C136.794 84.2627 134.101 90.7747 128.904 95.9958C123.708 101.217 116.017 105.137 107.06 106.509C98.1043 107.881 89.5922 106.443 83.0711 103.017C76.55 99.5915 72.0301 94.1847 71.0239 87.6171C70.0178 81.0496 72.7118 74.5376 77.9082 69.3166C83.1045 64.0956 90.7957 60.1753 99.7519 58.8032Z" stroke="#191816" stroke-width="0.336"/>
<path d="M98.7226 52.74C116.565 50.0066 133.055 61.1629 135.577 77.6273C138.1 94.0917 125.706 109.673 107.863 112.407C90.0209 115.14 73.5312 103.984 71.0089 87.5192C68.4865 71.0548 80.88 55.4735 98.7226 52.74Z" stroke="#191816" stroke-width="0.336"/>
<path d="M99.1731 55.6811C117.032 52.9451 133.313 62.8455 135.592 77.7253C137.872 92.6051 125.302 106.925 107.443 109.661C89.5839 112.397 73.3034 102.497 71.0238 87.6172C68.7442 72.7374 81.3141 58.4171 99.1731 55.6811Z" stroke="#191816" stroke-width="0.336"/>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View file

@ -0,0 +1,15 @@
<svg width="892" height="776" viewBox="0 0 892 776" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M835.071 5H15L375.471 275.353L51.0471 761.988L808.035 771L506.392 490.119L835.071 5ZM835.071 5L605.271 140.176" stroke="#FEFCED" stroke-width="9.49858"/>
<mask id="path-2-outside-1_1495_7" maskUnits="userSpaceOnUse" x="30.7117" y="202.417" width="861" height="344" fill="black">
<rect fill="white" x="30.7117" y="202.417" width="861" height="344"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M501.202 492.139C732.974 429.786 902.994 326.561 880.953 261.58C858.912 196.6 653.156 194.47 421.385 256.823C189.613 319.177 19.5932 422.401 41.6341 487.382C63.675 552.363 269.431 554.493 501.202 492.139ZM491.029 480.666C711.212 421.43 866.618 321.933 847.698 266.154C828.778 210.374 598.296 218.772 378.113 278.008C157.93 337.244 32.9908 428.94 51.9107 484.719C70.8306 540.499 270.846 539.902 491.029 480.666Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M501.202 492.139C732.974 429.786 902.994 326.561 880.953 261.58C858.912 196.6 653.156 194.47 421.385 256.823C189.613 319.177 19.5932 422.401 41.6341 487.382C63.675 552.363 269.431 554.493 501.202 492.139ZM491.029 480.666C711.212 421.43 866.618 321.933 847.698 266.154C828.778 210.374 598.296 218.772 378.113 278.008C157.93 337.244 32.9908 428.94 51.9107 484.719C70.8306 540.499 270.846 539.902 491.029 480.666Z" fill="#191816"/>
<path d="M880.953 261.58L888.707 258.95L880.953 261.58ZM501.202 492.139L503.329 500.046L503.329 500.046L501.202 492.139ZM421.385 256.823L423.512 264.73L423.512 264.73L421.385 256.823ZM41.6341 487.382L49.3886 484.752L49.3886 484.752L41.6341 487.382ZM847.698 266.154L855.452 263.524L847.698 266.154ZM491.029 480.666L493.156 488.573L493.156 488.573L491.029 480.666ZM378.113 278.008L380.24 285.915L380.24 285.915L378.113 278.008ZM51.9107 484.719L44.1562 487.349L44.1562 487.349L51.9107 484.719ZM873.198 264.21C877.326 276.381 873.032 291.996 857.213 311.014C841.575 329.814 816.005 350.205 782.008 370.845C714.126 412.059 614.447 453.193 499.075 484.232L503.329 500.046C619.729 468.731 720.946 427.077 790.507 384.844C825.231 363.762 852.519 342.266 869.803 321.487C886.907 300.926 895.6 279.27 888.707 258.95L873.198 264.21ZM423.512 264.73C538.874 233.695 647.494 218.788 729.733 219.639C770.904 220.066 805.019 224.439 829.933 232.45C855.22 240.581 868.972 251.751 873.198 264.21L888.707 258.95C881.913 238.919 861.68 225.455 834.946 216.859C807.84 208.144 771.898 203.698 729.903 203.263C645.811 202.393 535.668 217.598 419.258 248.916L423.512 264.73ZM49.3886 484.752C45.2606 472.582 49.5546 456.966 65.374 437.948C81.0122 419.149 106.582 398.758 140.579 378.117C208.461 336.904 308.14 295.769 423.512 264.73L419.258 248.916C302.858 280.231 201.641 321.885 132.08 364.118C97.3563 385.2 70.0681 406.696 52.7836 427.475C35.6803 448.037 26.9872 469.692 33.8796 490.012L49.3886 484.752ZM499.075 484.232C383.713 515.268 275.093 530.174 192.854 529.323C151.683 528.897 117.568 524.523 92.6537 516.512C67.3669 508.382 53.6147 497.211 49.3886 484.752L33.8796 490.012C40.674 510.043 60.9066 523.507 87.6408 532.103C114.747 540.819 150.689 545.264 192.684 545.699C276.776 546.569 386.919 531.364 503.329 500.046L499.075 484.232ZM839.943 268.784C843.229 278.471 839.524 292.062 824.668 309.577C810.111 326.741 786.393 345.727 754.746 365.133C691.563 403.878 598.434 443.291 488.901 472.759L493.156 488.573C603.806 458.805 698.472 418.852 763.307 379.094C795.67 359.249 821.017 339.201 837.158 320.17C853.001 301.49 861.626 281.727 855.452 263.524L839.943 268.784ZM380.24 285.915C489.812 256.437 601.84 239.646 688.616 237.135C732.059 235.879 768.766 238.215 795.537 244.139C808.935 247.104 819.45 250.883 826.987 255.288C834.539 259.702 838.434 264.335 839.943 268.784L855.452 263.524C852.231 254.028 844.785 246.722 835.251 241.149C825.703 235.569 813.387 231.316 799.076 228.149C770.43 221.811 732.208 219.491 688.142 220.765C599.901 223.318 486.597 240.343 375.986 270.101L380.24 285.915ZM59.6652 482.089C56.1466 471.715 58.8307 458.336 70.5819 442C82.2713 425.751 102.103 407.853 129.866 389.489C185.304 352.82 270.698 315.385 380.24 285.915L375.986 270.101C265.345 299.867 178.178 337.898 120.831 375.83C92.2004 394.768 70.5837 413.954 57.2876 432.437C44.0532 450.834 38.2148 469.833 44.1562 487.349L59.6652 482.089ZM488.901 472.759C379.326 502.238 274.983 517.06 195.937 517.635C156.359 517.923 123.546 514.634 99.721 508.055C75.2586 501.3 62.9797 491.861 59.6652 482.089L44.1562 487.349C50.3016 505.467 70.1196 516.871 95.362 523.841C121.241 530.987 155.742 534.305 196.056 534.012C276.792 533.424 382.548 518.33 493.156 488.573L488.901 472.759Z" fill="#191816" mask="url(#path-2-outside-1_1495_7)"/>
<mask id="path-4-inside-2_1495_7" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M485.713 492.14C717.484 429.786 887.505 326.561 865.464 261.581C843.423 196.6 637.667 194.47 405.896 256.824C174.124 319.177 4.10392 422.402 26.1448 487.383C48.1857 552.363 253.941 554.493 485.713 492.14ZM475.539 480.666C695.722 421.431 851.128 321.934 832.208 266.154C813.288 210.375 582.806 218.773 362.624 278.009C142.441 337.244 17.5013 428.94 36.4212 484.719C55.3412 540.499 255.356 539.902 475.539 480.666Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M485.713 492.14C717.484 429.786 887.505 326.561 865.464 261.581C843.423 196.6 637.667 194.47 405.896 256.824C174.124 319.177 4.10392 422.402 26.1448 487.383C48.1857 552.363 253.941 554.493 485.713 492.14ZM475.539 480.666C695.722 421.431 851.128 321.934 832.208 266.154C813.288 210.375 582.806 218.773 362.624 278.009C142.441 337.244 17.5013 428.94 36.4212 484.719C55.3412 540.499 255.356 539.902 475.539 480.666Z" fill="#FEFCED"/>
<path d="M865.464 261.581L860.811 263.159L860.811 263.159L865.464 261.581ZM485.713 492.14L486.989 496.884L486.989 496.884L485.713 492.14ZM26.1448 487.383L30.7975 485.804L30.7975 485.804L26.1448 487.383ZM832.208 266.154L836.861 264.576L832.208 266.154ZM475.539 480.666L474.263 475.922L474.263 475.922L475.539 480.666ZM362.624 278.009L363.9 282.753L363.9 282.753L362.624 278.009ZM860.811 263.159C865.492 276.959 860.318 293.782 844.242 313.109C828.274 332.305 802.361 352.917 768.218 373.646C700 415.063 600.014 456.301 484.436 487.395L486.989 496.884C603.183 465.624 704.092 424.074 773.318 382.045C807.896 361.051 834.841 339.776 851.796 319.393C868.642 299.14 876.456 278.693 870.116 260.003L860.811 263.159ZM407.172 261.568C522.743 230.476 631.668 215.51 714.278 216.365C755.613 216.793 790.094 221.181 815.447 229.332C841.023 237.556 856.071 249.185 860.811 263.159L870.116 260.003C863.836 241.486 844.899 228.481 818.454 219.978C791.786 211.403 756.209 206.972 714.379 206.539C630.658 205.673 520.819 220.818 404.619 252.079L407.172 261.568ZM30.7975 485.804C26.1166 472.004 31.2905 455.181 47.3666 435.854C63.3341 416.659 89.2476 396.047 123.39 375.318C191.608 333.9 291.595 292.662 407.172 261.568L404.619 252.079C288.425 283.339 187.516 324.89 118.291 366.918C83.7121 387.912 56.7676 409.187 39.8124 429.571C22.9659 449.823 15.1526 470.27 21.4921 488.961L30.7975 485.804ZM484.436 487.395C368.865 518.487 259.94 533.454 177.331 532.599C135.995 532.171 101.515 527.783 76.1619 519.631C50.5855 511.407 35.5372 499.778 30.7975 485.804L21.4921 488.961C27.7729 507.477 46.7093 520.482 73.1541 528.985C99.8221 537.56 135.399 541.991 177.229 542.424C260.95 543.291 370.789 528.145 486.989 496.884L484.436 487.395ZM827.556 267.732C831.419 279.123 826.73 293.948 811.677 311.696C796.803 329.233 772.759 348.432 740.969 367.926C677.455 406.873 584.019 446.394 474.263 475.922L476.816 485.411C587.242 455.703 681.601 415.857 746.106 376.303C778.325 356.545 803.347 336.709 819.171 318.052C834.816 299.605 842.458 281.076 836.861 264.576L827.556 267.732ZM363.9 282.753C473.68 253.219 585.963 236.381 673.032 233.862C716.599 232.601 753.609 234.935 780.756 240.942C794.336 243.947 805.211 247.821 813.151 252.461C821.099 257.106 825.704 262.274 827.556 267.732L836.861 264.576C833.983 256.09 827.246 249.318 818.109 243.978C808.963 238.632 797.007 234.474 782.879 231.348C754.608 225.092 716.688 222.769 672.747 224.04C584.8 226.584 471.75 243.562 361.347 273.264L363.9 282.753ZM41.0739 483.141C37.0708 471.339 40.3857 456.836 52.4336 440.088C64.4444 423.392 84.6334 405.236 112.569 386.758C168.389 349.836 254.138 312.282 363.9 282.753L361.347 273.264C250.926 302.971 164.114 340.883 107.148 378.562C78.6916 397.385 57.4318 416.314 44.457 434.35C31.5192 452.334 26.3117 470.21 31.7686 486.298L41.0739 483.141ZM474.263 475.922C364.481 505.457 259.855 520.333 180.471 520.911C140.746 521.2 107.596 517.905 83.3598 511.212C58.7414 504.414 44.9547 494.582 41.0739 483.141L31.7686 486.298C37.3478 502.746 55.658 513.757 80.7444 520.684C106.213 527.717 140.376 531.029 180.542 530.737C260.941 530.152 366.414 515.112 476.816 485.411L474.263 475.922Z" fill="#FEFCED" mask="url(#path-4-inside-2_1495_7)"/>
<path d="M835.07 5H231.282L33.0232 230.294H474.6C517.856 237.504 513.651 272.349 501.635 293.376L33.0232 771H636.811L835.07 554.718H384.482C341.226 547.508 354.443 509.659 366.459 491.635L835.07 5Z" fill="#FEFCED"/>
</svg>

After

Width:  |  Height:  |  Size: 8.9 KiB

View file

@ -0,0 +1,15 @@
<svg width="531" height="458" viewBox="0 0 531 458" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M494.624 5H15L225.824 163.118L36.0824 447.729L478.812 453L302.394 288.725L494.624 5ZM494.624 5L360.224 84.0588" stroke="#191816" stroke-width="9.49858"/>
<mask id="path-2-outside-1_1495_7" maskUnits="userSpaceOnUse" x="20.4528" y="116.724" width="511" height="208" fill="black">
<rect fill="white" x="20.4528" y="116.724" width="511" height="208"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M299.358 289.906C434.911 253.439 534.349 193.067 521.458 155.063C508.567 117.058 388.23 115.813 252.677 152.28C117.124 188.748 17.6864 249.12 30.5772 287.124C43.4679 325.129 163.805 326.374 299.358 289.906ZM293.408 283.196C422.184 248.552 513.074 190.361 502.009 157.738C490.943 125.115 356.144 130.026 227.369 164.671C98.5935 199.315 25.522 252.944 36.5874 285.567C47.6529 318.19 164.633 317.841 293.408 283.196Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M299.358 289.906C434.911 253.439 534.349 193.067 521.458 155.063C508.567 117.058 388.23 115.813 252.677 152.28C117.124 188.748 17.6864 249.12 30.5772 287.124C43.4679 325.129 163.805 326.374 299.358 289.906ZM293.408 283.196C422.184 248.552 513.074 190.361 502.009 157.738C490.943 125.115 356.144 130.026 227.369 164.671C98.5935 199.315 25.522 252.944 36.5874 285.567C47.6529 318.19 164.633 317.841 293.408 283.196Z" fill="#ECEADC"/>
<path d="M521.458 155.063L513.704 157.693L513.704 157.693L521.458 155.063ZM299.358 289.906L301.486 297.814L301.486 297.814L299.358 289.906ZM252.677 152.28L254.804 160.188L252.677 152.28ZM30.5772 287.124L38.3317 284.494L38.3317 284.494L30.5772 287.124ZM502.009 157.738L509.763 155.107L509.763 155.107L502.009 157.738ZM293.408 283.196L295.536 291.104L295.536 291.104L293.408 283.196ZM227.369 164.671L229.496 172.578L227.369 164.671ZM36.5874 285.567L28.8329 288.197L28.8329 288.197L36.5874 285.567ZM513.704 157.693C515.544 163.119 513.946 170.998 504.96 181.8C496.156 192.385 481.558 204.081 461.825 216.061C422.473 239.954 364.494 263.904 297.231 281.999L301.486 297.814C369.776 279.442 429.293 254.972 470.324 230.06C490.784 217.639 507.1 204.837 517.551 192.273C527.82 179.928 533.818 166.009 529.213 152.432L513.704 157.693ZM254.804 160.188C322.056 142.095 385.268 133.439 432.981 133.932C456.889 134.18 476.462 136.723 490.578 141.262C505.067 145.921 511.765 151.978 513.704 157.693L529.213 152.432C524.706 139.145 511.527 130.795 495.591 125.671C479.283 120.427 457.883 117.812 433.151 117.556C383.584 117.043 318.85 125.998 250.55 144.373L254.804 160.188ZM38.3317 284.494C36.4912 279.068 38.0894 271.189 47.075 260.387C55.8794 249.802 70.4774 238.106 90.2101 226.126C129.563 202.233 187.542 178.283 254.804 160.188L250.55 144.373C182.259 162.745 122.743 187.215 81.711 212.127C61.2516 224.548 44.9353 237.35 34.4846 249.914C24.2152 262.259 18.2178 276.178 22.8227 289.755L38.3317 284.494ZM297.231 281.999C229.979 300.092 166.768 308.748 119.054 308.254C95.1465 308.007 75.5735 305.464 61.4569 300.925C46.9681 296.266 40.2702 290.209 38.3317 284.494L22.8227 289.755C27.3295 303.042 40.5078 311.392 56.4439 316.516C72.7521 321.759 94.1526 324.374 118.885 324.63C168.451 325.143 233.185 316.189 301.486 297.814L297.231 281.999ZM494.254 160.368C495.576 164.266 494.43 170.933 485.947 180.935C477.762 190.586 464.228 201.47 445.868 212.728C409.258 235.178 355.11 258.117 291.281 275.289L295.536 291.104C360.482 273.631 416.167 250.152 454.429 226.689C473.506 214.992 488.668 203.046 498.437 191.528C507.908 180.361 513.974 167.521 509.763 155.107L494.254 160.368ZM229.496 172.578C293.364 155.395 358.62 145.623 409.067 144.164C434.345 143.433 455.499 144.803 470.768 148.181C478.414 149.873 484.189 151.985 488.181 154.318C492.186 156.659 493.727 158.813 494.254 160.368L509.763 155.107C507.524 148.506 502.432 143.678 496.444 140.179C490.443 136.671 482.865 134.085 474.306 132.191C457.163 128.398 434.495 127.045 408.593 127.794C356.681 129.296 290.149 139.301 225.242 156.763L229.496 172.578ZM44.3419 282.937C42.7869 278.352 43.702 271.693 50.2669 262.568C56.7701 253.528 67.9986 243.327 84.0553 232.706C116.083 211.522 165.658 189.752 229.496 172.578L225.242 156.763C160.304 174.233 108.956 196.6 75.0204 219.047C58.0955 230.242 45.0824 241.731 36.9726 253.004C28.9245 264.192 24.8552 276.47 28.8329 288.197L44.3419 282.937ZM291.281 275.289C227.41 292.472 166.677 301.085 120.797 301.419C97.8026 301.586 78.9624 299.668 65.4544 295.938C51.3093 292.032 45.6928 286.919 44.3419 282.937L28.8329 288.197C33.0147 300.526 46.1703 307.603 61.0954 311.724C76.6576 316.021 97.1856 317.968 120.916 317.795C168.486 317.449 230.632 308.565 295.536 291.104L291.281 275.289Z" fill="#ECEADC" mask="url(#path-2-outside-1_1495_7)"/>
<mask id="path-4-inside-2_1495_7" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M290.299 289.907C425.852 253.439 525.29 193.067 512.399 155.063C499.508 117.058 379.171 115.813 243.618 152.281C108.065 188.748 8.62738 249.12 21.5181 287.124C34.4089 325.129 154.746 326.374 290.299 289.907ZM284.349 283.197C413.125 248.552 504.015 190.361 492.95 157.738C481.884 125.115 347.085 130.026 218.31 164.671C89.5345 199.315 16.463 252.944 27.5284 285.567C38.5938 318.19 155.574 317.841 284.349 283.197Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M290.299 289.907C425.852 253.439 525.29 193.067 512.399 155.063C499.508 117.058 379.171 115.813 243.618 152.281C108.065 188.748 8.62738 249.12 21.5181 287.124C34.4089 325.129 154.746 326.374 290.299 289.907ZM284.349 283.197C413.125 248.552 504.015 190.361 492.95 157.738C481.884 125.115 347.085 130.026 218.31 164.671C89.5345 199.315 16.463 252.944 27.5284 285.567C38.5938 318.19 155.574 317.841 284.349 283.197Z" fill="#191816"/>
<path d="M512.399 155.063L517.052 153.485L517.052 153.485L512.399 155.063ZM243.618 152.281L242.341 147.536L243.618 152.281ZM21.5181 287.124L16.8654 288.703L16.8654 288.703L21.5181 287.124ZM492.95 157.738L488.297 159.316L492.95 157.738ZM284.349 283.197L283.073 278.452L284.349 283.197ZM218.31 164.671L217.034 159.926L217.034 159.926L218.31 164.671ZM27.5284 285.567L22.8757 287.145L22.8757 287.145L27.5284 285.567ZM507.746 156.641C510.14 163.697 507.662 172.784 498.419 183.895C489.286 194.875 474.344 206.793 454.466 218.861C414.778 242.957 356.491 267.011 289.023 285.162L291.576 294.651C359.661 276.334 418.87 251.968 459.565 227.26C479.88 214.927 495.852 202.347 505.974 190.179C515.986 178.142 521.104 165.431 517.052 153.485L507.746 156.641ZM244.894 157.025C312.356 138.876 375.872 130.16 423.956 130.657C448.029 130.907 467.967 133.464 482.522 138.144C497.3 142.896 505.294 149.411 507.746 156.641L517.052 153.485C513.059 141.712 501.176 133.82 485.53 128.789C469.66 123.687 448.625 121.086 424.058 120.832C374.862 120.323 310.432 129.218 242.341 147.536L244.894 157.025ZM26.1708 285.546C23.7775 278.49 26.2556 269.403 35.4979 258.292C44.6315 247.312 59.5732 235.394 79.4513 223.326C119.14 199.23 177.426 175.176 244.894 157.025L242.341 147.536C174.257 165.853 115.048 190.219 74.3518 214.927C54.0377 227.26 38.0651 239.841 27.9437 252.008C17.931 264.045 12.8134 276.756 16.8654 288.703L26.1708 285.546ZM289.023 285.162C221.561 303.311 158.045 312.027 109.961 311.53C85.8887 311.281 65.9502 308.723 51.3953 304.043C36.617 299.292 28.623 292.776 26.1708 285.546L16.8654 288.703C20.8586 300.475 32.7408 308.367 48.3875 313.398C64.2574 318.5 85.2923 321.101 109.86 321.355C159.055 321.865 223.485 312.969 291.576 294.651L289.023 285.162ZM488.297 159.316C490.197 164.917 488.067 172.819 479.386 183.054C470.884 193.078 457.025 204.174 438.521 215.521C401.581 238.173 347.126 261.22 283.073 278.452L285.626 287.941C350.349 270.528 405.726 247.157 443.658 223.897C462.591 212.288 477.428 200.554 486.88 189.409C496.153 178.476 501.235 166.87 497.602 156.16L488.297 159.316ZM219.586 169.415C283.662 152.177 349.173 142.358 399.913 140.89C425.316 140.155 446.773 141.522 462.416 144.983C470.245 146.716 476.381 148.922 480.774 151.49C485.176 154.063 487.427 156.752 488.297 159.316L497.602 156.16C495.706 150.568 491.324 146.274 485.733 143.007C480.133 139.734 472.916 137.243 464.539 135.389C447.772 131.679 425.406 130.322 399.629 131.068C348.01 132.561 281.733 142.52 217.034 159.926L219.586 169.415ZM32.1811 283.989C30.1416 277.976 31.6875 270.193 38.549 260.655C45.3735 251.168 56.9589 240.71 73.1893 229.975C105.598 208.538 155.528 186.649 219.586 169.415L217.034 159.926C152.316 177.337 101.323 199.585 67.7684 221.779C51.0171 232.859 38.3609 244.09 30.5724 254.917C22.821 265.692 19.3825 276.847 22.8757 287.145L32.1811 283.989ZM283.073 278.452C218.995 295.691 157.98 304.358 111.762 304.694C88.6202 304.862 69.4424 302.939 55.5236 299.095C41.2225 295.146 34.0982 289.641 32.1811 283.989L22.8757 287.145C26.4913 297.805 38.1391 304.489 52.9082 308.567C68.0595 312.751 88.25 314.692 111.833 314.52C159.066 314.176 220.928 305.346 285.626 287.941L283.073 278.452Z" fill="#191816" mask="url(#path-4-inside-2_1495_7)"/>
<path d="M494.623 5H141.494L25.541 136.765H283.8C309.099 140.981 306.639 161.361 299.612 173.659L25.541 453H378.67L494.623 326.506H231.094C205.795 322.289 213.525 300.153 220.553 289.612L494.623 5Z" fill="#191816"/>
</svg>

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

8
static/favicon.svg Normal file
View file

@ -0,0 +1,8 @@
<svg width="538" height="538" viewBox="0 0 538 538" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="538" height="538" rx="30" fill="#F4F1EB"/>
<path d="M159 387L169.5 335.5L293.5 222H197.5L212.5 150H428L417 203L296.5 315H396.5L381.5 387H159Z" fill="#ADB5BD"/>
<path d="M148 387L158.5 335.5L282.5 222H186.5L201.5 150H417L406 203L285.5 315H385.5L370.5 387H148Z" fill="#6C757D"/>
<path d="M136 387L146.5 335.5L270.5 222H174.5L189.5 150H405L394 203L273.5 315H373.5L358.5 387H136Z" fill="#495057"/>
<path d="M123 387L133.5 335.5L257.5 222H161.5L176.5 150H392L381 203L260.5 315H360.5L345.5 387H123Z" fill="#343A40"/>
<path d="M109 387L119.5 335.5L243.5 222H130.5L145.5 150H378L367 203L246.5 315H346.5L331.5 387H109Z" fill="#212529"/>
</svg>

After

Width:  |  Height:  |  Size: 748 B

View file

@ -0,0 +1,10 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1476_326)">
<path d="M15.3776 24.0887C26.4888 26.9331 10.6665 10.3998 10.6665 10.3998L20.7999 18.4887C25.8665 22.6664 25.1554 20.7109 24.7999 15.822L23.4665 4.88866L27.7332 15.6442C28.8888 18.5776 31.0221 18.9331 32.1776 14.7553L37.0665 2.93311L35.7332 15.9109C35.1999 20.3553 36.4443 19.1109 40.711 15.1109L52.3554 4.97755L42.6665 17.0664C39.8221 20.9776 37.7777 23.022 41.511 23.3776L54.9332 22.7553L43.3776 25.5998C36.7999 27.9998 41.511 29.422 47.6443 31.822L55.3776 35.2887L45.5999 33.3331C38.311 31.2887 36.3554 32.622 41.511 38.4887L50.4888 48.622L40.2665 40.7998C38.0443 38.7553 34.2221 37.0664 34.3999 40.5331L35.5554 52.9775L31.7332 40.4442C30.8443 37.1553 29.8665 37.0664 28.1776 42.222L24.7999 52.3553L25.511 43.1998C25.6888 37.5109 24.8888 37.2442 21.2443 40.2664L10.6665 48.3553L18.4888 38.3109C20.8888 35.4664 21.8665 33.422 18.6665 33.2442L5.59987 35.3776L14.5776 31.6442C17.511 30.3109 21.2443 29.3331 14.311 26.6664L0.533203 20.8887L15.3776 24.0887Z" fill="#C0FE1F"/>
</g>
<defs>
<clipPath id="clip0_1476_326">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,10 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1079_28)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.9981 46.0704C34.281 50.5991 30.9952 52.64 28 52.64C25.0047 52.64 21.719 50.5991 19.0018 46.0704C16.3247 41.6086 14.56 35.2276 14.56 28C14.56 20.7723 16.3247 14.3915 19.0018 9.92972C21.719 5.40106 25.0047 3.36 28 3.36C30.9952 3.36 34.281 5.40106 36.9981 9.92972C39.6752 14.3915 41.44 20.7723 41.44 28C41.44 35.2276 39.6752 41.6086 36.9981 46.0704ZM56 28C56 12.536 43.4638 0 28 0C12.536 0 0 12.536 0 28C0 43.4638 12.536 56 28 56C43.4638 56 56 43.4638 56 28ZM3.36 28C3.36 38.0604 9.38913 46.7124 18.0312 50.54C13.8875 45.4409 11.2 37.2436 11.2 28C11.2 18.7564 13.8875 10.559 18.0312 5.45986C9.38913 9.28763 3.36 17.9397 3.36 28ZM52.64 28C52.64 38.0604 46.6108 46.7124 37.9688 50.54C42.1126 45.4409 44.8 37.2436 44.8 28C44.8 18.7564 42.1126 10.559 37.9688 5.45986C46.6108 9.28763 52.64 17.9397 52.64 28ZM28 31.08C29.701 31.08 31.08 29.701 31.08 28C31.08 26.299 29.701 24.92 28 24.92C26.299 24.92 24.92 26.299 24.92 28C24.92 29.701 26.299 31.08 28 31.08Z" fill="#7B41F5"/>
</g>
<defs>
<clipPath id="clip0_1079_28">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

4
static/icons/arrowup.svg Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 12L12 8M12 8L16 12M12 8V20M4 4H20" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 357 B

16
static/icons/circle.svg Normal file
View file

@ -0,0 +1,16 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1116_18)">
<circle cx="28" cy="28" r="24.64" stroke="#4F3BB5" stroke-width="6.72001"/>
<mask id="mask0_1116_18" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="56" height="56">
<circle cx="28" cy="28" r="28" fill="black"/>
</mask>
<g mask="url(#mask0_1116_18)">
<circle cx="18.5294" cy="16.4706" r="20.9341" stroke="#4F3BB5" stroke-width="6.72001"/>
</g>
</g>
<defs>
<clipPath id="clip0_1116_18">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 611 B

View file

@ -0,0 +1,35 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1465_202)">
<g clip-path="url(#clip1_1465_202)">
<g clip-path="url(#clip2_1465_202)">
<g clip-path="url(#clip3_1465_202)">
<g clip-path="url(#clip4_1465_202)">
<mask id="mask0_1465_202" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="56" height="56">
<path d="M56 0H0V56H56V0Z" fill="white"/>
</mask>
<g mask="url(#mask0_1465_202)">
<path d="M28 56C27.1893 29.4734 26.5266 28.8148 0 28C26.5266 27.1893 27.1853 26.5266 28 0C28.8106 26.5266 29.4734 27.1853 56 28C29.4734 28.8148 28.8148 29.4652 28 56Z" fill="#C0FE1F"/>
</g>
</g>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="clip0_1465_202">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip1_1465_202">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip2_1465_202">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip3_1465_202">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip4_1465_202">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,35 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1500_117)">
<g clip-path="url(#clip1_1500_117)">
<g clip-path="url(#clip2_1500_117)">
<g clip-path="url(#clip3_1500_117)">
<g clip-path="url(#clip4_1500_117)">
<mask id="mask0_1500_117" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="56" height="56">
<path d="M56 0H0V56H56V0Z" fill="white"/>
</mask>
<g mask="url(#mask0_1500_117)">
<path d="M28 56C27.1893 29.4734 26.5266 28.8148 0 28C26.5266 27.1893 27.1853 26.5266 28 0C28.8106 26.5266 29.4734 27.1853 56 28C29.4734 28.8148 28.8148 29.4652 28 56Z" fill="#7B41F5"/>
</g>
</g>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="clip0_1500_117">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip1_1500_117">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip2_1500_117">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip3_1500_117">
<rect width="56" height="56" fill="white"/>
</clipPath>
<clipPath id="clip4_1500_117">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M59 8.15796e-07L59 14.75L29.5 29.5L59 44.25L59 59L29.5 44.25V59L2.6226e-06 44.25V29.5V14.75L29.5 0V14.75L59 8.15796e-07ZM29.5 14.75V29.5V44.25L2.6226e-06 29.5L29.5 14.75Z" fill="#7b41f5"/>
</svg>

After

Width:  |  Height:  |  Size: 341 B

View file

@ -0,0 +1,3 @@
<svg width="59" height="59" viewBox="0 0 59 59" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M59 8.15796e-07L59 14.75L29.5 29.5L59 44.25L59 59L29.5 44.25V59L2.6226e-06 44.25V29.5V14.75L29.5 0V14.75L59 8.15796e-07ZM29.5 14.75V29.5V44.25L2.6226e-06 29.5L29.5 14.75Z" fill="#C0FE1F"/>
</svg>

After

Width:  |  Height:  |  Size: 341 B

10
static/icons/star.svg Normal file
View file

@ -0,0 +1,10 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1327_338)">
<path d="M44.3528 56C36.8052 43.0766 19.1949 43.0766 11.6473 56C15.7321 43.0766 12.924 40.2688 0 44.3534C12.924 36.806 12.924 19.1969 0 11.6497C12.924 15.7313 15.7321 12.9233 11.6473 0C19.1949 12.9233 36.8052 12.9233 44.3528 0C40.2707 12.9233 43.0791 15.7313 56 11.6497C43.0791 19.1969 43.0791 36.806 56 44.3534C43.0791 40.2688 40.2707 43.0766 44.3528 56Z" fill="#7B41F5"/>
</g>
<defs>
<clipPath id="clip0_1327_338">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 621 B

10
static/icons/stardark.svg Normal file
View file

@ -0,0 +1,10 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1327_338)">
<path d="M44.3528 56C36.8052 43.0766 19.1949 43.0766 11.6473 56C15.7321 43.0766 12.924 40.2688 0 44.3534C12.924 36.806 12.924 19.1969 0 11.6497C12.924 15.7313 15.7321 12.9233 11.6473 0C19.1949 12.9233 36.8052 12.9233 44.3528 0C40.2707 12.9233 43.0791 15.7313 56 11.6497C43.0791 19.1969 43.0791 36.806 56 44.3534C43.0791 40.2688 40.2707 43.0766 44.3528 56Z" fill="#C0FE1F"/>
</g>
<defs>
<clipPath id="clip0_1327_338">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 621 B

View file

@ -0,0 +1,10 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1500_114)">
<path d="M15.3778 24.0887C26.4889 26.9331 10.6667 10.3998 10.6667 10.3998L20.8 18.4887C25.8667 22.6664 25.1555 20.7109 24.8 15.822L23.4667 4.88866L27.7333 15.6442C28.8889 18.5776 31.0222 18.9331 32.1778 14.7553L37.0667 2.93311L35.7333 15.9109C35.2 20.3553 36.4444 19.1109 40.7111 15.1109L52.3556 4.97755L42.6667 17.0664C39.8222 20.9776 37.7778 23.022 41.5111 23.3776L54.9333 22.7553L43.3778 25.5998C36.8 27.9998 41.5111 29.422 47.6444 31.822L55.3778 35.2887L45.6 33.3331C38.3111 31.2887 36.3555 32.622 41.5111 38.4887L50.4889 48.622L40.2667 40.7998C38.0444 38.7553 34.2222 37.0664 34.4 40.5331L35.5555 52.9775L31.7333 40.4442C30.8444 37.1553 29.8667 37.0664 28.1778 42.222L24.8 52.3553L25.5111 43.1998C25.6889 37.5109 24.8889 37.2442 21.2444 40.2664L10.6667 48.3553L18.4889 38.3109C20.8889 35.4664 21.8667 33.422 18.6667 33.2442L5.59999 35.3776L14.5778 31.6442C17.5111 30.3109 21.2444 29.3331 14.3111 26.6664L0.533325 20.8887L15.3778 24.0887Z" fill="#7B41F5"/>
</g>
<defs>
<clipPath id="clip0_1500_114">
<rect width="56" height="56" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

27
svelte.config.js Normal file
View file

@ -0,0 +1,27 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [vitePreprocess({})],
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
strict: true
})
}
};
export default config;

18
tsconfig.json Normal file
View file

@ -0,0 +1,18 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}

16
vite.config.ts Normal file
View file

@ -0,0 +1,16 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
css: {
preprocessorOptions: {
scss: {
additionalData: "@use \"src/variables.scss\" as *;"
}
}
}
});

818
yarn.lock Normal file
View file

@ -0,0 +1,818 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.2.1":
version "2.2.1"
resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@esbuild/darwin-arm64@0.19.11":
version "0.19.11"
resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz"
integrity sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==
"@jridgewell/gen-mapping@^0.3.0":
version "0.3.3"
resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.1.0":
version "3.1.1"
resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
"@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15":
version "1.4.15"
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9":
version "0.3.20"
resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz"
integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
dependencies:
"@nodelib/fs.stat" "2.0.5"
run-parallel "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
version "2.0.5"
resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
"@nodelib/fs.walk@^1.2.3":
version "1.2.8"
resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
dependencies:
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
"@polka/url@^1.0.0-next.24":
version "1.0.0-next.24"
resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz"
integrity sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==
"@rollup/rollup-darwin-arm64@4.9.2":
version "4.9.2"
resolved "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.2.tgz"
integrity sha512-vqJ/pAUh95FLc/G/3+xPqlSBgilPnauVf2EXOQCZzhZJCXDXt/5A8mH/OzU6iWhb3CNk5hPJrh8pqJUPldN5zw==
"@sveltejs/adapter-static@^3.0.1":
version "3.0.1"
resolved "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.1.tgz"
integrity sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==
"@sveltejs/kit@^2.0.0", "@sveltejs/kit@^2.4.3":
version "2.4.3"
resolved "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.4.3.tgz"
integrity sha512-nKNhUdt61vtD961kQpUk6vLDhpnV0yku5F1uYNWvrJYFV0+cGfmW7ol0JVMSjHMXlMtmmv2FTc+nPRrTFwb2UA==
dependencies:
"@types/cookie" "^0.6.0"
cookie "^0.6.0"
devalue "^4.3.2"
esm-env "^1.0.0"
import-meta-resolve "^4.0.0"
kleur "^4.1.5"
magic-string "^0.30.5"
mrmime "^2.0.0"
sade "^1.8.1"
set-cookie-parser "^2.6.0"
sirv "^2.0.4"
tiny-glob "^0.2.9"
"@sveltejs/vite-plugin-svelte-inspector@^2.0.0-next.0 || ^2.0.0":
version "2.0.0"
resolved "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.0.0.tgz"
integrity sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==
dependencies:
debug "^4.3.4"
"@sveltejs/vite-plugin-svelte@^3.0.0":
version "3.0.1"
resolved "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.0.1.tgz"
integrity sha512-CGURX6Ps+TkOovK6xV+Y2rn8JKa8ZPUHPZ/NKgCxAmgBrXReavzFl8aOSCj3kQ1xqT7yGJj53hjcV/gqwDAaWA==
dependencies:
"@sveltejs/vite-plugin-svelte-inspector" "^2.0.0-next.0 || ^2.0.0"
debug "^4.3.4"
deepmerge "^4.3.1"
kleur "^4.1.5"
magic-string "^0.30.5"
svelte-hmr "^0.15.3"
vitefu "^0.2.5"
"@types/cookie@^0.6.0":
version "0.6.0"
resolved "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz"
integrity sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==
"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.1":
version "1.0.5"
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz"
integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
"@types/pug@^2.0.6":
version "2.0.10"
resolved "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz"
integrity sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==
acorn@^8.10.0, acorn@^8.9.0:
version "8.11.2"
resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz"
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==
anymatch@~3.1.2:
version "3.1.3"
resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
aria-query@^5.3.0:
version "5.3.0"
resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz"
integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
dependencies:
dequal "^2.0.3"
axobject-query@^3.2.1:
version "3.2.1"
resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz"
integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==
dependencies:
dequal "^2.0.3"
balanced-match@^1.0.0:
version "1.0.2"
resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
binary-extensions@^2.0.0:
version "2.2.0"
resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
dependencies:
balanced-match "^1.0.0"
concat-map "0.0.1"
braces@^3.0.2, braces@~3.0.2:
version "3.0.2"
resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
dependencies:
fill-range "^7.0.1"
buffer-crc32@^0.2.5:
version "0.2.13"
resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==
callsites@^3.0.0:
version "3.1.0"
resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
chokidar@^3.4.1, "chokidar@>=3.0.0 <4.0.0":
version "3.5.3"
resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
dependencies:
anymatch "~3.1.2"
braces "~3.0.2"
glob-parent "~5.1.2"
is-binary-path "~2.1.0"
is-glob "~4.0.1"
normalize-path "~3.0.0"
readdirp "~3.6.0"
optionalDependencies:
fsevents "~2.3.2"
code-red@^1.0.3:
version "1.0.4"
resolved "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz"
integrity sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==
dependencies:
"@jridgewell/sourcemap-codec" "^1.4.15"
"@types/estree" "^1.0.1"
acorn "^8.10.0"
estree-walker "^3.0.3"
periscopic "^3.1.0"
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
cookie@^0.6.0:
version "0.6.0"
resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz"
integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
css-tree@^2.3.1:
version "2.3.1"
resolved "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz"
integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
dependencies:
mdn-data "2.0.30"
source-map-js "^1.0.1"
debug@^4.3.4:
version "4.3.4"
resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
deepmerge@^4.3.1:
version "4.3.1"
resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz"
integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
dequal@^2.0.3:
version "2.0.3"
resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz"
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
detect-indent@^6.1.0:
version "6.1.0"
resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz"
integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
devalue@^4.3.2:
version "4.3.2"
resolved "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz"
integrity sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==
es6-promise@^3.1.2:
version "3.3.1"
resolved "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz"
integrity sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==
esbuild@^0.19.3:
version "0.19.11"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz"
integrity sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==
optionalDependencies:
"@esbuild/aix-ppc64" "0.19.11"
"@esbuild/android-arm" "0.19.11"
"@esbuild/android-arm64" "0.19.11"
"@esbuild/android-x64" "0.19.11"
"@esbuild/darwin-arm64" "0.19.11"
"@esbuild/darwin-x64" "0.19.11"
"@esbuild/freebsd-arm64" "0.19.11"
"@esbuild/freebsd-x64" "0.19.11"
"@esbuild/linux-arm" "0.19.11"
"@esbuild/linux-arm64" "0.19.11"
"@esbuild/linux-ia32" "0.19.11"
"@esbuild/linux-loong64" "0.19.11"
"@esbuild/linux-mips64el" "0.19.11"
"@esbuild/linux-ppc64" "0.19.11"
"@esbuild/linux-riscv64" "0.19.11"
"@esbuild/linux-s390x" "0.19.11"
"@esbuild/linux-x64" "0.19.11"
"@esbuild/netbsd-x64" "0.19.11"
"@esbuild/openbsd-x64" "0.19.11"
"@esbuild/sunos-x64" "0.19.11"
"@esbuild/win32-arm64" "0.19.11"
"@esbuild/win32-ia32" "0.19.11"
"@esbuild/win32-x64" "0.19.11"
esm-env@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz"
integrity sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==
estree-walker@^3.0.0, estree-walker@^3.0.3:
version "3.0.3"
resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz"
integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==
dependencies:
"@types/estree" "^1.0.0"
fast-glob@^3.2.7:
version "3.3.2"
resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz"
integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
glob-parent "^5.1.2"
merge2 "^1.3.0"
micromatch "^4.0.4"
fastq@^1.6.0:
version "1.15.0"
resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz"
integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
fill-range@^7.0.1:
version "7.0.1"
resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
dependencies:
to-regex-range "^5.0.1"
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
fsevents@~2.3.2, fsevents@~2.3.3:
version "2.3.3"
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
glob-parent@^5.1.2, glob-parent@~5.1.2:
version "5.1.2"
resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
dependencies:
is-glob "^4.0.1"
glob@^7.1.3:
version "7.2.3"
resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
inherits "2"
minimatch "^3.1.1"
once "^1.3.0"
path-is-absolute "^1.0.0"
globalyzer@0.1.0:
version "0.1.0"
resolved "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz"
integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==
globrex@^0.1.2:
version "0.1.2"
resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"
integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==
graceful-fs@^4.1.3:
version "4.2.11"
resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
gsap@^3.12.2:
version "3.12.2"
resolved "https://registry.npmjs.org/gsap/-/gsap-3.12.2.tgz"
integrity sha512-EkYnpG8qHgYBFAwsgsGEqvT1WUidX0tt/ijepx7z8EUJHElykg91RvW1XbkT59T0gZzzszOpjQv7SE41XuIXyQ==
immutable@^4.0.0:
version "4.3.4"
resolved "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz"
integrity sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==
import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
dependencies:
parent-module "^1.0.0"
resolve-from "^4.0.0"
import-meta-resolve@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz"
integrity sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
dependencies:
once "^1.3.0"
wrappy "1"
inherits@2:
version "2.0.4"
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
dependencies:
binary-extensions "^2.0.0"
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
is-glob@^4.0.1, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
dependencies:
is-extglob "^2.1.1"
is-number@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
is-reference@^3.0.0, is-reference@^3.0.1:
version "3.0.2"
resolved "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz"
integrity sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==
dependencies:
"@types/estree" "*"
kleur@^4.1.5:
version "4.1.5"
resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz"
integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
locate-character@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz"
integrity sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==
magic-string@^0.27.0:
version "0.27.0"
resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz"
integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==
dependencies:
"@jridgewell/sourcemap-codec" "^1.4.13"
magic-string@^0.30.4, magic-string@^0.30.5:
version "0.30.5"
resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz"
integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==
dependencies:
"@jridgewell/sourcemap-codec" "^1.4.15"
mdn-data@2.0.30:
version "2.0.30"
resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz"
integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
merge2@^1.3.0:
version "1.4.1"
resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
micromatch@^4.0.4:
version "4.0.5"
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
dependencies:
braces "^3.0.2"
picomatch "^2.3.1"
min-indent@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
minimatch@^3.1.1:
version "3.1.2"
resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
dependencies:
brace-expansion "^1.1.7"
minimist@^1.2.0, minimist@^1.2.6:
version "1.2.8"
resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mkdirp@^0.5.1:
version "0.5.6"
resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
dependencies:
minimist "^1.2.6"
mri@^1.1.0:
version "1.2.0"
resolved "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz"
integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
mrmime@^2.0.0:
version "2.0.0"
resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz"
integrity sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==
ms@2.1.2:
version "2.1.2"
resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
nanoid@^3.3.7:
version "3.3.7"
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
once@^1.3.0:
version "1.4.0"
resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
dependencies:
wrappy "1"
parent-module@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
dependencies:
callsites "^3.0.0"
path-is-absolute@^1.0.0:
version "1.0.1"
resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
periscopic@^3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz"
integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==
dependencies:
"@types/estree" "^1.0.0"
estree-walker "^3.0.0"
is-reference "^3.0.0"
picocolors@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
version "2.3.1"
resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
"postcss@^7 || ^8", postcss@^8.4.32:
version "8.4.32"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz"
integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==
dependencies:
nanoid "^3.3.7"
picocolors "^1.0.0"
source-map-js "^1.0.2"
prettier-plugin-svelte@^3.0.0:
version "3.1.2"
resolved "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.1.2.tgz"
integrity sha512-7xfMZtwgAWHMT0iZc8jN4o65zgbAQ3+O32V6W7pXrqNvKnHnkoyQCGCbKeUyXKZLbYE0YhFRnamfxfkEGxm8qA==
prettier@^3.0.0:
version "3.1.0"
resolved "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz"
integrity sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==
queue-microtask@^1.2.2:
version "1.2.3"
resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
readdirp@~3.6.0:
version "3.6.0"
resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
dependencies:
picomatch "^2.2.1"
resolve-from@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
reusify@^1.0.4:
version "1.0.4"
resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
rimraf@^2.5.2:
version "2.7.1"
resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
rollup@^4.2.0:
version "4.9.2"
resolved "https://registry.npmjs.org/rollup/-/rollup-4.9.2.tgz"
integrity sha512-66RB8OtFKUTozmVEh3qyNfH+b+z2RXBVloqO2KCC/pjFaGaHtxP9fVfOQKPSGXg2mElmjmxjW/fZ7iKrEpMH5Q==
optionalDependencies:
"@rollup/rollup-android-arm-eabi" "4.9.2"
"@rollup/rollup-android-arm64" "4.9.2"
"@rollup/rollup-darwin-arm64" "4.9.2"
"@rollup/rollup-darwin-x64" "4.9.2"
"@rollup/rollup-linux-arm-gnueabihf" "4.9.2"
"@rollup/rollup-linux-arm64-gnu" "4.9.2"
"@rollup/rollup-linux-arm64-musl" "4.9.2"
"@rollup/rollup-linux-riscv64-gnu" "4.9.2"
"@rollup/rollup-linux-x64-gnu" "4.9.2"
"@rollup/rollup-linux-x64-musl" "4.9.2"
"@rollup/rollup-win32-arm64-msvc" "4.9.2"
"@rollup/rollup-win32-ia32-msvc" "4.9.2"
"@rollup/rollup-win32-x64-msvc" "4.9.2"
fsevents "~2.3.2"
run-parallel@^1.1.9:
version "1.2.0"
resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
dependencies:
queue-microtask "^1.2.2"
sade@^1.7.4, sade@^1.8.1:
version "1.8.1"
resolved "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz"
integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
dependencies:
mri "^1.1.0"
sander@^0.5.0:
version "0.5.1"
resolved "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz"
integrity sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==
dependencies:
es6-promise "^3.1.2"
graceful-fs "^4.1.3"
mkdirp "^0.5.1"
rimraf "^2.5.2"
sass@*, sass@^1.26.8, sass@^1.69.5:
version "1.69.5"
resolved "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz"
integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==
dependencies:
chokidar ">=3.0.0 <4.0.0"
immutable "^4.0.0"
source-map-js ">=0.6.2 <2.0.0"
set-cookie-parser@^2.6.0:
version "2.6.0"
resolved "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz"
integrity sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==
sirv@^2.0.4:
version "2.0.4"
resolved "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz"
integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==
dependencies:
"@polka/url" "^1.0.0-next.24"
mrmime "^2.0.0"
totalist "^3.0.0"
sorcery@^0.11.0:
version "0.11.0"
resolved "https://registry.npmjs.org/sorcery/-/sorcery-0.11.0.tgz"
integrity sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==
dependencies:
"@jridgewell/sourcemap-codec" "^1.4.14"
buffer-crc32 "^0.2.5"
minimist "^1.2.0"
sander "^0.5.0"
source-map-js@^1.0.1, source-map-js@^1.0.2, "source-map-js@>=0.6.2 <2.0.0":
version "1.0.2"
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
strip-indent@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz"
integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
dependencies:
min-indent "^1.0.0"
svelte-check@^3.6.0:
version "3.6.1"
resolved "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.1.tgz"
integrity sha512-v+mmXKp+hZ+mZ/n9MQpAe+0q/GhRKXmhQOkWYAdRozXRkPiuLOdhsjp9KtNBpP0TRqvvrB0cwWL5HUjCLpI46g==
dependencies:
"@jridgewell/trace-mapping" "^0.3.17"
chokidar "^3.4.1"
fast-glob "^3.2.7"
import-fresh "^3.2.1"
picocolors "^1.0.0"
sade "^1.7.4"
svelte-preprocess "^5.1.0"
typescript "^5.0.3"
svelte-hmr@^0.15.3:
version "0.15.3"
resolved "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.3.tgz"
integrity sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==
svelte-preprocess@^5.1.0:
version "5.1.1"
resolved "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.1.tgz"
integrity sha512-p/Dp4hmrBW5mrCCq29lEMFpIJT2FZsRlouxEc5qpbOmXRbaFs7clLs8oKPwD3xCFyZfv1bIhvOzpQkhMEVQdMw==
dependencies:
"@types/pug" "^2.0.6"
detect-indent "^6.1.0"
magic-string "^0.27.0"
sorcery "^0.11.0"
strip-indent "^3.0.0"
"svelte@^3.19.0 || ^4.0.0", "svelte@^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0", "svelte@^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", "svelte@^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", "svelte@^4.0.0 || ^5.0.0-next.0", svelte@^4.2.7:
version "4.2.7"
resolved "https://registry.npmjs.org/svelte/-/svelte-4.2.7.tgz"
integrity sha512-UExR1KS7raTdycsUrKLtStayu4hpdV3VZQgM0akX8XbXgLBlosdE/Sf3crOgyh9xIjqSYB3UEBuUlIQKRQX2hg==
dependencies:
"@ampproject/remapping" "^2.2.1"
"@jridgewell/sourcemap-codec" "^1.4.15"
"@jridgewell/trace-mapping" "^0.3.18"
acorn "^8.9.0"
aria-query "^5.3.0"
axobject-query "^3.2.1"
code-red "^1.0.3"
css-tree "^2.3.1"
estree-walker "^3.0.3"
is-reference "^3.0.1"
locate-character "^3.0.0"
magic-string "^0.30.4"
periscopic "^3.1.0"
tiny-glob@^0.2.9:
version "0.2.9"
resolved "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz"
integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==
dependencies:
globalyzer "0.1.0"
globrex "^0.1.2"
to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
dependencies:
is-number "^7.0.0"
totalist@^3.0.0:
version "3.0.1"
resolved "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz"
integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
tslib@^2.4.1:
version "2.6.2"
resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
typescript@^5.0.0, typescript@^5.0.3, "typescript@>=3.9.5 || ^4.0.0 || ^5.0.0":
version "5.3.2"
resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz"
integrity sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==
"vite@^3.0.0 || ^4.0.0 || ^5.0.0", vite@^5.0.0, vite@^5.0.12, vite@^5.0.3:
version "5.0.12"
resolved "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz"
integrity sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==
dependencies:
esbuild "^0.19.3"
postcss "^8.4.32"
rollup "^4.2.0"
optionalDependencies:
fsevents "~2.3.3"
vitefu@^0.2.5:
version "0.2.5"
resolved "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz"
integrity sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==
wrappy@1:
version "1.0.2"
resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==