init
33
.gitignore
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
node_modules
|
||||
.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
.next
|
||||
out
|
||||
|
||||
# production
|
||||
build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local env files
|
||||
.env*
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
.vscode
|
3
app/.eslintrc.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": ["next/core-web-vitals", "next/babel"]
|
||||
}
|
3
app/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
node_modules
|
||||
# Keep environment variables out of version control
|
||||
.env
|
41
app/README.md
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Vitality
|
||||
Vitality
|
||||
|
||||
## Development
|
||||
Local development does NOT work on FCPS wifi. Use a hotspot if you want to work in school.
|
||||
|
||||
## Default
|
||||
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
|
||||
|
||||
## Getting Started
|
||||
|
||||
First, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
|
||||
|
||||
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn more about Next.js, take a look at the following resources:
|
||||
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||
|
||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
||||
|
||||
## Deploy on Vercel
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
|
||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
5
app/next-env.d.ts
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
11
app/next.config.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
module.exports = {
|
||||
reactStrictMode: true,
|
||||
redirects: async () => [
|
||||
{
|
||||
source: '/u/:slug*',
|
||||
destination: '/url/:slug*',
|
||||
permanent: true
|
||||
}
|
||||
]
|
||||
}
|
7001
app/package-lock.json
generated
Normal file
41
app/package.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "app",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"license": "UNLICENSED",
|
||||
"scripts": {
|
||||
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
|
||||
"db": "yarn prisma generate && yarn prisma db push",
|
||||
"build": "yarn prisma generate && next build",
|
||||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prisma/client": "^4.2.1",
|
||||
"better-react-mathjax": "^2.0.2",
|
||||
"cookie": "^0.5.0",
|
||||
"mongoose": "^6.0.12",
|
||||
"next": "^12.0.3",
|
||||
"next-auth": "^4.20.1",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2",
|
||||
"react-tsparticles": "^1.36.0",
|
||||
"swr": "^1.0.1",
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/mongoose": "^5.11.97",
|
||||
"@types/node": "^18.6.5",
|
||||
"@types/react": "17.0.33",
|
||||
"@types/uuid": "^8.3.4",
|
||||
"autoprefixer": "^10.4.7",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "8.1.0",
|
||||
"eslint-config-next": "11.1.2",
|
||||
"js-cookie": "^3.0.1",
|
||||
"postcss": "^8.4.14",
|
||||
"prisma": "^4.2.1",
|
||||
"tailwindcss": "^3.0.24",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.7.4"
|
||||
}
|
||||
}
|
6
app/postcss.config.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
module.exports = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
BIN
app/public/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
app/public/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 203 KiB |
BIN
app/public/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 35 KiB |
9
app/public/browserconfig.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
BIN
app/public/favicon-16x16.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
app/public/favicon-32x32.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
app/public/favicon.ico
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/public/fonts/Inter/Inter-VariableFont_slnt,wght.ttf
Normal file
93
app/public/fonts/Inter/OFL.txt
Normal file
|
@ -0,0 +1,93 @@
|
|||
Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
72
app/public/fonts/Inter/README.txt
Normal file
|
@ -0,0 +1,72 @@
|
|||
Inter Variable Font
|
||||
===================
|
||||
|
||||
This download contains Inter as both a variable font and static fonts.
|
||||
|
||||
Inter is a variable font with these axes:
|
||||
slnt
|
||||
wght
|
||||
|
||||
This means all the styles are contained in a single file:
|
||||
Inter-VariableFont_slnt,wght.ttf
|
||||
|
||||
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||
in those cases you can use the static font files for Inter:
|
||||
static/Inter-Thin.ttf
|
||||
static/Inter-ExtraLight.ttf
|
||||
static/Inter-Light.ttf
|
||||
static/Inter-Regular.ttf
|
||||
static/Inter-Medium.ttf
|
||||
static/Inter-SemiBold.ttf
|
||||
static/Inter-Bold.ttf
|
||||
static/Inter-ExtraBold.ttf
|
||||
static/Inter-Black.ttf
|
||||
|
||||
Get started
|
||||
-----------
|
||||
|
||||
1. Install the font files you want to use
|
||||
|
||||
2. Use your app's font picker to view the font family and all the
|
||||
available styles
|
||||
|
||||
Learn more about variable fonts
|
||||
-------------------------------
|
||||
|
||||
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||
https://variablefonts.typenetwork.com
|
||||
https://medium.com/variable-fonts
|
||||
|
||||
In desktop apps
|
||||
|
||||
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||
|
||||
Online
|
||||
|
||||
https://developers.google.com/fonts/docs/getting_started
|
||||
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||
|
||||
Installing fonts
|
||||
|
||||
MacOS: https://support.apple.com/en-us/HT201749
|
||||
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||
|
||||
Android Apps
|
||||
|
||||
https://developers.google.com/fonts/docs/android
|
||||
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||
|
||||
License
|
||||
-------
|
||||
Please read the full license text (OFL.txt) to understand the permissions,
|
||||
restrictions and requirements for usage, redistribution, and modification.
|
||||
|
||||
You can use them freely in your products & projects - print or digital,
|
||||
commercial or otherwise.
|
||||
|
||||
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||
license for all details.
|
BIN
app/public/fonts/Inter/static/Inter-Black.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-Bold.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-ExtraBold.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-ExtraLight.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-Light.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-Medium.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-Regular.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-SemiBold.ttf
Normal file
BIN
app/public/fonts/Inter/static/Inter-Thin.ttf
Normal file
3
app/public/icons/bullet.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="12" height="15" viewBox="0 0 12 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.825 7.47834L1.26953 13.5939C0.936723 13.8069 0.5 13.5679 0.5 13.1727V1.70612C0.5 1.32413 0.911012 1.08323 1.2443 1.26987L10.7998 6.62095C11.1293 6.8055 11.1432 7.27475 10.825 7.47834Z" stroke="#FF6699"/>
|
||||
</svg>
|
After Width: | Height: | Size: 320 B |
BIN
app/public/images/logo.png
Normal file
After Width: | Height: | Size: 806 KiB |
BIN
app/public/mstile-150x150.png
Normal file
After Width: | Height: | Size: 24 KiB |
578
app/public/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1,578 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="1024.000000pt" height="1024.000000pt" viewBox="0 0 1024.000000 1024.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M8610 8935 c32 -85 92 -157 113 -136 19 19 -77 161 -109 161 -10 0
|
||||
-11 -6 -4 -25z"/>
|
||||
<path d="M8780 8845 c0 -5 9 -23 20 -40 13 -20 20 -24 20 -14 0 18 -39 71 -40
|
||||
54z"/>
|
||||
<path d="M8860 8741 c0 -26 36 -91 51 -91 17 0 9 24 -21 70 -26 39 -30 42 -30
|
||||
21z"/>
|
||||
<path d="M7636 8648 c-4 -35 -7 -82 -9 -105 -1 -22 -5 -39 -9 -36 -5 2 -8 -8
|
||||
-8 -22 0 -17 4 -24 12 -19 7 5 8 3 3 -6 -10 -17 -7 -142 6 -198 10 -48 1 -172
|
||||
-11 -151 -6 8 -9 6 -13 -7 -2 -10 -5 0 -6 24 -1 52 -12 54 -30 5 -16 -45 -17
|
||||
-76 -6 -165 8 -68 1 -138 -14 -138 -5 0 -15 30 -22 66 -15 74 -27 64 -28 -23
|
||||
-1 -61 -8 -83 -27 -83 -8 0 -14 -4 -14 -10 0 -5 -7 -10 -16 -10 -11 0 -14 -6
|
||||
-10 -17 5 -15 4 -15 -9 1 -8 11 -15 23 -15 28 0 17 -29 -5 -34 -27 -5 -20 -41
|
||||
-61 -90 -102 -9 -7 -22 -13 -30 -13 -8 0 -16 -3 -19 -7 -2 -5 -2 -2 -1 5 2 6
|
||||
-2 12 -8 12 -6 0 -17 8 -24 18 -12 15 -13 15 -14 -9 0 -26 13 -64 51 -146 10
|
||||
-24 19 -49 19 -57 0 -7 7 -33 16 -57 17 -46 31 -96 40 -139 2 -14 16 -63 30
|
||||
-110 14 -47 39 -130 56 -185 16 -55 36 -114 44 -132 8 -17 14 -40 14 -51 0
|
||||
-18 86 -242 125 -329 8 -17 15 -38 15 -46 0 -9 4 -18 9 -22 6 -3 9 -13 9 -23
|
||||
-2 -31 13 -92 22 -92 6 0 10 -6 10 -14 0 -24 41 -108 90 -183 15 -24 40 -31
|
||||
40 -12 0 5 4 7 10 4 6 -4 7 6 4 25 -4 16 -4 30 -2 30 3 0 22 -27 42 -60 41
|
||||
-67 51 -76 59 -55 4 9 1 12 -9 8 -8 -3 -14 -2 -13 3 1 5 -2 20 -8 34 -6 14
|
||||
-12 30 -13 35 -1 6 -11 21 -21 34 -11 13 -19 33 -19 44 0 20 1 20 17 5 9 -9
|
||||
17 -27 19 -40 1 -13 3 -24 4 -25 2 -2 3 -7 4 -13 0 -5 4 -10 9 -10 4 0 10 0
|
||||
13 0 4 0 1 7 -6 15 -7 8 -10 15 -7 15 3 0 -26 66 -65 148 -75 157 -160 354
|
||||
-154 359 1 2 27 -50 56 -114 61 -136 99 -206 135 -248 l26 -30 -6 30 c-4 23
|
||||
-3 27 5 15 56 -76 -192 521 -314 757 l-64 122 54 31 c52 29 55 30 85 14 24
|
||||
-12 37 -13 60 -5 22 8 31 7 34 -2 3 -7 21 -59 41 -116 43 -126 107 -265 159
|
||||
-346 52 -84 125 -166 137 -159 6 4 8 2 5 -3 -7 -10 36 -48 80 -71 18 -10 21
|
||||
-9 19 4 -1 9 -10 21 -19 26 -10 5 -14 14 -11 20 4 6 2 8 -4 4 -11 -7 -25 9
|
||||
-28 32 -4 26 -14 42 -25 42 -6 0 -9 -8 -5 -17 5 -16 4 -15 -9 1 -15 19 -11 41
|
||||
6 31 5 -4 9 -1 9 4 0 6 -4 11 -9 11 -10 0 -24 38 -21 58 0 8 -4 20 -11 28 -9
|
||||
11 -7 14 14 14 58 0 58 2 -5 158 -33 81 -61 156 -63 167 -1 11 -23 101 -48
|
||||
200 -47 182 -66 318 -47 330 10 6 6 105 -7 155 -4 14 -7 28 -7 32 -1 3 -4 10
|
||||
-8 14 -5 4 -8 18 -8 30 0 13 -4 25 -9 28 -4 3 -11 25 -15 48 -4 23 -12 48 -18
|
||||
56 -6 7 -15 34 -20 60 -18 95 -21 107 -29 112 -6 4 -17 86 -32 240 -3 24 -4
|
||||
19 -5 -18 -4 -111 56 -566 97 -743 11 -46 27 -126 36 -177 21 -123 74 -305
|
||||
136 -470 27 -73 47 -138 43 -144 -4 -6 -3 -8 3 -5 6 4 13 -4 16 -18 4 -25 4
|
||||
-25 -22 -9 l-26 17 18 -21 c18 -20 18 -20 -1 -15 -25 6 -86 120 -136 251 -19
|
||||
49 -44 110 -55 134 -31 69 -50 125 -76 228 -28 110 -29 114 -13 104 8 -5 9 -2
|
||||
5 9 -4 11 -1 17 8 17 8 0 15 9 15 19 0 11 4 22 9 25 14 9 6 86 -28 259 -35
|
||||
182 -69 436 -78 585 -3 56 -10 102 -15 102 -5 0 -7 23 -5 50 2 28 0 50 -3 50
|
||||
-4 0 -5 23 -2 50 2 28 2 50 -1 50 -3 0 -8 -28 -11 -62z m78 -944 c9 -22 8 -23
|
||||
-14 -21 -20 1 -27 17 -13 30 11 11 20 8 27 -9z m2 -70 c-9 -9 -20 -13 -24 -9
|
||||
-4 3 1 11 11 16 9 6 14 16 11 22 -5 9 -4 9 6 0 10 -9 9 -15 -4 -29z m433
|
||||
-1130 c14 -12 -19 -1 -35 12 -18 14 -18 14 6 3 14 -6 27 -13 29 -15z"/>
|
||||
<path d="M8990 8520 c5 -18 12 -35 16 -39 10 -9 -6 53 -17 63 -5 6 -5 -4 1
|
||||
-24z"/>
|
||||
<path d="M7712 8480 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z"/>
|
||||
<path d="M9046 8370 c3 -14 10 -29 15 -34 14 -16 10 6 -7 34 l-15 25 7 -25z"/>
|
||||
<path d="M2844 7968 c1 -191 5 -327 10 -325 5 2 13 13 17 26 5 13 5 20 -1 16
|
||||
-11 -7 -9 -33 -19 320 l-8 290 1 -327z"/>
|
||||
<path d="M8950 8296 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21
|
||||
13z"/>
|
||||
<path d="M8943 8220 c20 -144 74 -189 68 -57 -1 17 -7 27 -16 27 -8 0 -25 15
|
||||
-36 33 l-21 32 5 -35z"/>
|
||||
<path d="M9090 8083 c0 -16 3 -46 7 -68 6 -36 7 -37 13 -15 8 32 1 110 -11
|
||||
110 -5 0 -9 -12 -9 -27z"/>
|
||||
<path d="M9187 7913 c6 -79 11 -89 12 -23 0 30 -3 61 -8 68 -4 7 -6 -13 -4
|
||||
-45z"/>
|
||||
<path d="M9162 7895 c0 -22 4 -51 8 -65 7 -23 8 -22 8 10 0 19 -4 49 -8 65 -7
|
||||
29 -8 28 -8 -10z"/>
|
||||
<path d="M2050 7701 c-11 -21 -14 -529 -4 -593 14 -81 24 -32 19 90 -6 151 -6
|
||||
420 0 480 5 46 1 52 -15 23z"/>
|
||||
<path d="M6951 7087 c-5 -56 157 -538 249 -745 22 -49 25 -61 11 -44 -26 30
|
||||
-31 28 -31 -17 0 -67 -39 -76 -106 -25 -30 22 -53 22 -35 0 4 -6 11 -19 15
|
||||
-30 5 -14 2 -17 -9 -12 -8 3 -15 1 -15 -5 0 -6 -4 -7 -10 -4 -6 4 -10 -5 -10
|
||||
-19 0 -30 -14 -34 -29 -8 -10 16 -10 15 -11 -3 0 -17 -2 -18 -11 -5 -8 11 -9
|
||||
1 -3 -35 4 -27 8 -69 8 -92 0 -23 4 -39 8 -37 5 3 8 -2 8 -10 0 -9 -4 -16 -8
|
||||
-16 -4 0 -9 -11 -10 -25 -2 -34 -29 -85 -48 -92 -12 -4 -12 -8 3 -19 10 -7 13
|
||||
-14 7 -14 -12 0 -30 17 -36 35 -1 6 -7 9 -11 7 -5 -1 -6 2 -2 8 3 6 10 8 15 5
|
||||
4 -3 3 6 -3 19 -8 17 -14 21 -20 13 -5 -7 -7 3 -4 23 3 19 3 28 0 21 -3 -9
|
||||
-16 17 -30 60 -13 40 -42 111 -64 156 -21 45 -39 86 -39 92 0 5 -16 38 -36 73
|
||||
-41 71 -115 152 -158 173 -48 25 -54 17 -8 -11 23 -14 40 -29 37 -34 -3 -4 3
|
||||
-14 12 -21 9 -8 29 -32 45 -53 29 -40 37 -41 17 -3 -6 12 -7 18 -2 12 32 -32
|
||||
113 -229 113 -273 0 -12 15 -71 34 -130 19 -59 44 -152 56 -207 12 -55 28
|
||||
-127 35 -160 16 -70 34 -219 37 -296 l1 -54 7 60 7 60 1 -76 c4 -169 -31 -437
|
||||
-58 -454 -5 -3 -6 4 -3 15 8 31 -4 23 -16 -10 -6 -18 -6 -28 -1 -25 6 3 7 -1
|
||||
4 -9 -3 -9 -11 -13 -17 -9 -5 3 -7 1 -4 -4 8 -13 -39 -80 -82 -116 -18 -15
|
||||
-29 -27 -24 -28 4 0 -2 -4 -15 -10 -22 -8 -22 -29 -1 -29 17 0 111 93 141 139
|
||||
15 25 28 40 28 35 0 -6 -14 -32 -32 -58 -54 -82 -171 -161 -268 -180 -57 -12
|
||||
-71 -17 -65 -25 2 -5 15 -7 27 -5 13 2 55 8 95 13 103 12 156 47 243 157 22
|
||||
27 81 166 68 158 -8 -5 -9 -1 -5 10 4 10 3 15 -3 11 -6 -3 -10 -14 -10 -23 0
|
||||
-12 -3 -13 -11 -5 -7 7 -8 17 -3 25 13 20 19 174 19 479 0 230 2 273 13 260 8
|
||||
-9 11 -11 8 -4 -8 15 4 44 15 37 5 -3 9 0 9 5 0 54 86 -92 94 -159 3 -25 5
|
||||
-49 5 -53 1 -5 6 -5 11 -2 6 3 10 32 10 63 l0 57 53 20 c28 11 54 21 57 22 3
|
||||
2 34 -38 70 -88 65 -93 91 -112 141 -107 32 3 32 2 23 -47 -10 -57 1 -85 36
|
||||
-85 26 0 36 8 65 54 54 85 54 88 -13 243 -78 178 -187 451 -272 678 -74 200
|
||||
-236 628 -280 745 -16 41 -29 71 -29 67z m-321 -664 c0 -8 -38 17 -51 33 -9
|
||||
11 -2 9 19 -6 17 -13 32 -25 32 -27z m88 -148 c-3 -3 -9 2 -12 12 -6 14 -5 15
|
||||
5 6 7 -7 10 -15 7 -18z m231 -449 c-9 -8 -10 -7 -5 7 3 10 7 24 7 30 1 7 3 4
|
||||
6 -7 3 -10 -1 -23 -8 -30z m-2 -73 c-3 -10 -5 -4 -5 12 0 17 2 24 5 18 2 -7 2
|
||||
-21 0 -30z m-20 -215 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/>
|
||||
<path d="M2057 7053 c-4 -3 -7 -57 -7 -120 l0 -113 29 0 c33 0 113 -39 150
|
||||
-73 13 -12 41 -44 62 -70 22 -27 39 -45 39 -40 0 4 -9 19 -20 33 -11 14 -20
|
||||
32 -21 40 -2 25 -85 91 -120 95 -18 3 -37 9 -43 15 -8 8 -3 10 17 6 16 -3 25
|
||||
-1 22 5 -4 5 -18 9 -33 9 -38 0 -72 11 -72 22 0 5 4 7 8 4 5 -3 5 20 0 52 -5
|
||||
31 -8 76 -6 100 2 23 3 42 2 42 0 0 -4 -3 -7 -7z m30 -219 c-3 -3 -12 -4 -19
|
||||
-1 -8 3 -5 6 6 6 11 1 17 -2 13 -5z"/>
|
||||
<path d="M2196 6831 c-3 -4 7 -6 22 -4 23 3 24 2 7 -6 -18 -9 -17 -10 8 -10
|
||||
33 -1 90 -26 107 -46 9 -10 7 -20 -6 -40 l-17 -26 27 7 c27 7 56 -9 56 -31 0
|
||||
-6 -12 -18 -27 -25 l-28 -14 45 -6 c32 -3 46 -10 48 -23 3 -12 -5 -19 -27 -23
|
||||
-44 -9 -38 -24 9 -24 29 0 42 -5 50 -19 14 -28 14 -29 -30 -36 -22 -4 -40 -11
|
||||
-40 -17 0 -6 16 -7 41 -3 44 8 59 -2 59 -37 0 -13 -11 -20 -40 -24 -54 -9 -51
|
||||
-20 5 -16 41 4 46 2 55 -23 14 -36 14 -35 -22 -35 -18 0 -40 -5 -48 -11 -11
|
||||
-7 -3 -9 33 -7 43 3 48 1 54 -20 7 -30 2 -34 -46 -35 -27 -1 -41 -7 -41 -16 0
|
||||
-11 11 -12 49 -7 47 6 49 5 55 -20 9 -33 7 -34 -43 -41 -23 -3 -41 -10 -41
|
||||
-16 0 -6 17 -7 45 -4 47 7 49 6 59 -35 6 -26 4 -28 -28 -28 -41 0 -66 -8 -66
|
||||
-22 0 -5 23 -8 53 -6 52 3 52 3 55 -28 2 -21 -1 -32 -10 -31 -51 2 -88 -5 -88
|
||||
-15 0 -9 16 -12 55 -10 l55 4 0 -37 0 -37 -50 4 -50 3 0 -35 c0 -19 4 -30 8
|
||||
-23 4 6 28 14 55 18 l47 7 0 -36 0 -36 -50 0 -50 0 1 -142 c1 -79 3 -136 6
|
||||
-127 4 18 32 29 76 29 24 0 27 -3 27 -35 l0 -35 -49 0 c-31 0 -51 5 -54 13 -2
|
||||
6 -7 -31 -11 -83 -12 -168 -47 -373 -66 -390 -7 -7 -32 -72 -33 -87 0 -7 -3
|
||||
-13 -7 -13 -3 0 -14 -14 -24 -30 -9 -17 -22 -28 -27 -25 -14 9 -11 27 4 19 9
|
||||
-5 9 -3 -1 7 -11 12 -14 12 -23 -1 -9 -13 -10 -13 -6 1 77 241 100 414 100
|
||||
724 0 298 -18 446 -82 700 -34 131 -110 301 -159 353 -16 17 -27 33 -25 36 9
|
||||
9 -73 50 -106 52 -20 1 -27 0 -16 -3 11 -3 31 -10 45 -15 14 -5 27 -10 30 -11
|
||||
16 -4 86 -102 115 -162 56 -117 122 -380 149 -591 26 -203 31 -497 11 -664
|
||||
-16 -144 -46 -284 -68 -326 -13 -23 -77 -81 -77 -68 0 4 -8 0 -17 -8 -10 -8
|
||||
-45 -23 -78 -33 -33 -10 -67 -23 -75 -30 -8 -6 -30 -12 -49 -14 -19 -1 -40 -6
|
||||
-46 -11 -7 -6 -24 -11 -39 -12 -14 -1 -26 -5 -26 -9 0 -4 -8 -5 -19 -2 -20 5
|
||||
-36 -21 -24 -39 3 -6 1 -8 -5 -4 -20 12 -22 -12 -2 -37 11 -14 44 -33 73 -43
|
||||
28 -9 66 -28 84 -41 17 -13 43 -25 58 -27 37 -4 64 -46 30 -46 -35 0 -143 -73
|
||||
-137 -92 1 -5 -2 -7 -7 -4 -5 4 -23 -13 -39 -36 -36 -52 -75 -128 -66 -128 4
|
||||
0 2 -6 -3 -12 -24 -30 -42 -209 -24 -232 5 -6 11 -34 14 -63 3 -29 13 -64 23
|
||||
-77 9 -14 14 -33 10 -41 -3 -9 -2 -14 3 -10 11 6 41 -50 41 -77 0 -10 5 -18
|
||||
10 -18 14 0 12 20 -6 55 -8 16 -13 37 -11 47 3 10 1 18 -3 18 -5 0 -7 31 -6
|
||||
69 3 54 8 74 25 92 11 12 21 29 21 36 0 8 4 12 9 8 5 -3 12 -1 16 5 4 6 11 7
|
||||
17 4 6 -4 8 -2 4 4 -3 6 -1 14 5 18 6 4 31 -14 58 -43 34 -36 52 -66 66 -112
|
||||
10 -34 22 -64 27 -67 4 -3 8 -12 8 -19 0 -20 142 -278 213 -387 32 -48 57 -91
|
||||
57 -96 0 -4 -33 -19 -72 -31 -40 -13 -95 -35 -122 -48 l-49 -25 -23 29 c-13
|
||||
15 -21 34 -19 41 3 7 0 10 -5 7 -6 -3 -10 0 -10 8 0 8 -7 20 -15 27 -20 16
|
||||
-19 6 1 -25 9 -14 12 -25 8 -25 -5 0 0 -7 10 -15 11 -8 15 -15 9 -15 -6 0 -9
|
||||
-9 -6 -20 3 -11 10 -20 15 -20 5 0 6 10 3 23 -7 22 -7 22 8 2 14 -19 13 -21
|
||||
-15 -39 -22 -14 -32 -16 -37 -7 -5 7 -15 2 -32 -16 -13 -15 -17 -22 -7 -15 9
|
||||
8 19 9 22 4 8 -14 46 -22 43 -9 -3 17 154 95 240 118 l82 22 100 -93 c71 -65
|
||||
121 -122 165 -189 36 -53 103 -140 150 -193 111 -127 125 -152 85 -155 -32 -3
|
||||
-68 19 -118 71 -24 25 -47 43 -51 41 -4 -3 -16 5 -26 17 -12 14 -14 18 -4 13
|
||||
13 -8 13 -6 1 8 -7 9 -18 14 -25 10 -6 -3 -8 -2 -3 2 7 9 -30 55 -44 55 -18 0
|
||||
-39 -34 -39 -63 0 -35 27 -81 95 -162 58 -70 225 -296 225 -305 0 -4 -8 -11
|
||||
-17 -15 -13 -4 -30 7 -61 42 -24 26 -70 76 -103 110 -32 34 -59 66 -59 71 0
|
||||
16 -89 92 -108 92 -24 0 -42 -19 -42 -46 0 -38 56 -170 114 -270 31 -52 56
|
||||
-100 56 -105 0 -6 4 -8 9 -4 6 3 15 -4 21 -15 6 -11 9 -20 6 -20 -3 0 2 -16
|
||||
10 -35 17 -41 11 -43 -51 -20 -29 12 -52 32 -85 77 -25 34 -66 87 -92 118 -26
|
||||
30 -61 80 -78 111 -32 61 -54 77 -77 57 -23 -18 -9 -76 47 -206 57 -130 61
|
||||
-165 25 -205 -32 -34 -49 -34 -82 0 -26 29 -153 277 -153 299 0 19 -41 44 -73
|
||||
44 -28 0 -28 -1 -26 -52 3 -74 14 -98 64 -152 25 -26 45 -51 45 -56 0 -5 9 -7
|
||||
20 -5 12 2 20 -2 20 -10 0 -23 -22 -65 -35 -65 -13 0 -52 41 -86 90 -25 37
|
||||
-28 42 -59 80 -18 22 -18 20 2 -21 13 -25 26 -44 31 -42 4 2 7 -5 7 -17 0 -13
|
||||
4 -19 11 -14 7 4 9 0 5 -12 -6 -22 28 -69 44 -59 5 3 7 0 5 -7 -3 -8 6 -24 20
|
||||
-37 15 -12 33 -38 41 -57 8 -19 18 -34 23 -34 4 0 8 -10 7 -23 -1 -12 3 -25 8
|
||||
-29 6 -4 5 -13 -3 -22 -8 -9 -10 -16 -5 -16 5 0 -5 -12 -21 -28 -36 -33 -65
|
||||
-69 -48 -59 6 4 14 3 17 -2 4 -5 2 -12 -4 -16 -6 -4 -7 -11 -4 -17 4 -7 2 -8
|
||||
-5 -4 -6 4 -9 11 -6 16 3 4 -2 11 -11 14 -10 4 -13 2 -8 -6 5 -8 1 -9 -11 -4
|
||||
-18 6 -18 6 1 -15 l19 -22 -25 13 c-23 12 -24 12 -11 -3 26 -33 146 -105 206
|
||||
-125 70 -24 303 -61 604 -96 118 -14 215 -27 217 -28 1 -2 -18 -36 -43 -76
|
||||
-24 -41 -58 -108 -75 -150 -16 -42 -33 -80 -37 -84 -8 -9 -168 -24 -461 -43
|
||||
-314 -21 -346 -24 -480 -41 -63 -8 -149 -19 -190 -24 -41 -5 -92 -18 -113 -29
|
||||
l-38 -19 49 -25 c57 -28 109 -37 357 -56 172 -14 326 -20 640 -26 143 -3 349
|
||||
-10 458 -15 109 -6 307 -10 440 -10 256 0 390 13 532 50 178 46 238 52 635 60
|
||||
400 9 455 14 630 55 58 13 157 31 220 40 128 17 150 22 150 35 0 10 -27 16
|
||||
-140 30 -47 6 -100 13 -119 15 -19 2 -40 0 -47 -6 -18 -15 -36 -1 -29 22 4 10
|
||||
2 19 -4 19 -5 0 -11 -9 -13 -20 -2 -12 -6 -21 -10 -21 -4 0 -19 -10 -34 -24
|
||||
-14 -13 -32 -21 -39 -19 -7 3 -16 1 -20 -5 -11 -19 -80 -13 -105 9 -30 26 -35
|
||||
91 -12 140 15 31 23 36 67 42 34 5 52 3 57 -5 6 -9 8 -9 8 1 0 23 56 -18 74
|
||||
-54 14 -31 36 -46 36 -25 0 24 -23 70 -33 64 -6 -3 -7 -1 -3 5 11 19 -60 116
|
||||
-135 185 l-68 64 77 6 c287 23 469 29 546 19 272 -38 803 -42 1011 -8 93 15
|
||||
213 43 260 60 15 6 16 5 6 -2 -12 -8 -7 -19 22 -60 67 -91 158 -167 229 -191
|
||||
78 -27 252 -40 583 -43 215 -3 244 -1 282 16 24 10 41 21 38 25 -2 4 -37 20
|
||||
-77 35 -40 16 -77 34 -83 40 -5 7 -25 17 -42 24 -18 7 -46 17 -63 23 -16 6
|
||||
-27 16 -23 22 3 6 1 7 -5 3 -7 -4 -20 -2 -29 3 -15 8 -10 11 22 12 22 1 46 1
|
||||
53 0 6 -1 12 5 12 13 0 12 -35 15 -228 18 -173 2 -233 6 -245 16 -9 8 -21 11
|
||||
-27 7 -5 -3 -10 -1 -10 4 0 6 -5 11 -11 11 -5 0 -7 -4 -4 -10 4 -6 -1 -7 -11
|
||||
-3 -11 4 -13 8 -6 11 7 2 12 8 12 14 0 6 -7 8 -15 5 -8 -4 -17 -1 -21 5 -5 7
|
||||
-2 8 7 3 11 -6 12 -5 2 5 -12 13 -48 22 -86 21 -10 0 -15 5 -11 11 5 7 -2 9
|
||||
-22 4 -18 -4 -24 -3 -16 2 19 13 -9 24 -29 11 -12 -7 -12 -9 0 -9 8 0 12 -3 8
|
||||
-6 -3 -3 -12 -2 -20 3 -13 7 -13 10 1 23 9 8 18 14 19 12 2 -1 36 14 76 34 95
|
||||
47 244 147 228 152 -6 2 -54 -21 -105 -51 -115 -69 -168 -91 -201 -83 -14 4
|
||||
-23 11 -20 16 6 9 -9 42 -34 73 -15 18 -51 24 -51 7 0 -5 -7 -6 -17 -3 -11 4
|
||||
-14 3 -9 -5 21 -34 -45 10 -106 71 -29 28 -36 47 -18 47 6 0 10 15 10 34 0 24
|
||||
-9 44 -35 72 -19 21 -35 43 -35 49 0 6 -16 28 -35 48 -19 20 -35 43 -36 50 0
|
||||
6 -6 -4 -13 -23 l-13 -35 -8 55 c-6 53 -1 282 8 348 3 17 1 32 -3 32 -5 0 -11
|
||||
-26 -15 -57 -11 -103 -14 -91 -9 37 11 280 76 445 213 536 34 23 94 57 133 76
|
||||
188 88 212 103 222 131 15 43 -9 77 -69 100 -28 11 -63 25 -80 32 l-30 12 50
|
||||
7 c28 4 66 12 85 18 41 12 100 54 100 70 0 7 -6 4 -13 -6 -8 -11 -20 -17 -27
|
||||
-14 -10 3 -9 8 3 20 15 15 14 18 -8 42 -13 14 -31 26 -40 26 -21 0 -19 8 11
|
||||
34 21 18 29 36 36 87 8 63 8 64 -19 84 -15 11 -36 28 -46 38 -10 10 -22 15
|
||||
-27 12 -4 -3 -16 2 -25 11 -11 11 -25 14 -46 10 l-31 -6 31 29 c36 33 40 66
|
||||
11 81 -11 6 -20 17 -20 25 0 7 -12 23 -27 35 -16 12 -22 18 -14 14 9 -5 12 -3
|
||||
7 4 -4 7 -39 21 -79 33 -206 59 -207 67 -17 104 99 20 200 55 200 69 0 2 -17
|
||||
2 -37 0 -21 -2 -31 0 -23 3 8 3 25 17 37 30 25 26 39 29 47 11 3 -7 3 1 -1 17
|
||||
-13 66 -37 82 -213 140 l-85 29 121 22 c66 12 146 30 177 40 61 19 127 66 127
|
||||
90 0 12 -2 12 -14 2 -8 -7 -12 -16 -10 -20 2 -4 -1 -10 -7 -14 -8 -4 -9 -3 -5
|
||||
4 8 13 -5 16 -20 5 -5 -5 5 7 23 25 19 18 31 37 28 43 -12 18 -65 39 -137 54
|
||||
-112 23 -118 25 -118 35 0 9 12 13 145 46 52 13 79 26 103 50 39 39 40 57 6
|
||||
91 -23 23 -31 25 -77 20 -67 -8 -187 -67 -226 -112 -36 -41 -42 -93 -14 -121
|
||||
26 -25 89 -51 162 -65 56 -11 61 -13 40 -21 -13 -5 -77 -13 -141 -17 -86 -6
|
||||
-128 -14 -161 -30 -87 -42 -112 -98 -67 -146 14 -15 83 -48 172 -82 81 -32
|
||||
148 -61 148 -64 0 -8 -54 -22 -177 -48 -141 -30 -203 -70 -203 -131 0 -39 24
|
||||
-66 101 -111 39 -22 85 -53 102 -69 l31 -27 -43 -28 c-38 -25 -42 -32 -39 -64
|
||||
3 -39 -10 -33 176 -81 63 -16 120 -34 128 -41 27 -22 31 -18 -134 -171 -72
|
||||
-68 -82 -81 -82 -112 0 -27 8 -43 37 -71 l37 -36 -27 -53 c-23 -49 -35 -59
|
||||
-119 -109 -161 -95 -229 -191 -270 -384 -18 -80 -22 -134 -22 -293 -1 -191 0
|
||||
-198 36 -347 36 -150 103 -329 173 -461 18 -34 30 -64 26 -66 -14 -9 -264 -47
|
||||
-371 -56 -145 -12 -442 -13 -585 0 -269 23 -575 17 -760 -15 -57 -10 -388 -34
|
||||
-397 -29 -4 3 -52 0 -105 -6 -115 -13 -226 -21 -483 -35 -58 -3 -128 -8 -156
|
||||
-10 -383 -32 -427 -31 -614 16 -69 17 -129 34 -135 37 -5 4 -12 7 -15 8 -33 6
|
||||
-74 19 -115 36 -72 30 -84 34 -142 54 -29 10 -50 21 -47 26 3 4 -2 5 -10 2 -8
|
||||
-3 -25 0 -38 7 -26 15 -30 16 -57 18 -11 0 -26 7 -33 13 -15 14 -30 19 -71 23
|
||||
-15 1 -31 6 -35 10 -4 5 -1 5 7 0 9 -5 12 -4 7 3 -4 7 -22 12 -39 12 -34 0
|
||||
-59 12 -58 26 0 5 -5 9 -12 9 -26 1 -87 27 -87 38 -1 7 -8 1 -16 -13 -8 -14
|
||||
-13 -17 -10 -7 5 16 -15 24 -47 18 -5 -1 -5 4 -1 10 3 6 0 15 -7 20 -10 6 -11
|
||||
9 -1 9 6 0 21 9 32 20 11 11 15 20 9 20 -6 0 -9 5 -7 11 2 7 29 13 61 14 38 2
|
||||
64 9 82 23 23 18 24 21 8 25 -16 4 -15 6 4 12 13 4 20 11 17 16 -3 5 5 9 17 9
|
||||
16 0 20 5 17 18 -4 13 1 18 21 20 30 2 142 53 136 62 -2 3 3 16 11 30 l15 25
|
||||
-7 -24 c-4 -16 -3 -21 5 -17 6 4 11 15 11 24 0 13 2 13 15 -4 11 -13 15 -15
|
||||
13 -4 -1 8 1 58 5 110 6 87 16 286 22 450 3 59 -7 474 -21 910 -3 96 -7 321
|
||||
-8 500 -5 475 -8 584 -16 595 -4 6 -11 64 -14 130 -7 128 -14 168 -26 160 -4
|
||||
-3 -10 32 -13 78 -11 175 -53 481 -66 485 -6 2 -9 7 -6 12 3 5 -2 15 -10 24
|
||||
-9 9 -11 17 -5 21 5 3 10 13 10 21 0 9 -5 12 -12 8 -8 -5 -9 -2 -5 9 4 10 2
|
||||
16 -5 14 -7 -1 -13 7 -14 18 -5 41 -40 146 -47 139 -4 -4 -7 6 -8 22 -1 46 -9
|
||||
78 -20 85 -6 3 -15 28 -20 55 -5 26 -13 50 -18 53 -4 4 -16 32 -26 64 -10 31
|
||||
-21 57 -25 57 -5 0 -6 10 -3 23 4 18 3 19 -7 7 -10 -12 -11 -11 -7 8 3 12 1
|
||||
22 -4 22 -5 0 -11 12 -15 28 -3 15 -14 46 -25 69 -10 24 -19 48 -19 53 0 6 -4
|
||||
8 -10 5 -5 -3 -10 -2 -10 4 0 5 -3 17 -7 27 -4 12 -3 15 5 10 8 -5 10 -2 5 9
|
||||
-4 12 -8 13 -13 5 -4 -7 -10 -8 -12 -4 -5 10 -5 9 33 -111 55 -171 85 -360 99
|
||||
-630 11 -192 3 -448 -12 -439 -6 4 -7 -7 -5 -25 3 -17 1 -33 -4 -37 -5 -3 -9
|
||||
-19 -9 -35 0 -44 -21 -120 -31 -113 -5 3 -9 -3 -9 -13 0 -26 -69 -113 -110
|
||||
-140 -19 -13 -42 -28 -50 -35 -8 -7 -19 -12 -23 -10 -5 1 -16 -5 -24 -15 -8
|
||||
-10 -12 -13 -10 -8 3 6 8 34 11 63 3 29 8 63 11 75 2 12 6 49 9 82 3 33 11
|
||||
119 17 190 24 250 8 576 -41 852 -22 125 -79 333 -91 333 -4 0 -13 17 -18 38
|
||||
-15 56 -110 192 -159 229 -34 26 -53 33 -87 33 -24 0 -46 -4 -49 -9z m424
|
||||
-1071 c0 -28 -2 -30 -40 -30 -22 0 -43 -1 -47 -2 -5 -2 -9 12 -11 30 l-3 32
|
||||
50 0 c50 0 51 -1 51 -30z m0 -105 c0 -35 0 -35 -44 -35 -39 0 -45 3 -50 25 -9
|
||||
37 0 45 50 45 44 0 44 0 44 -35z m-10 -210 l0 -35 -48 0 -48 0 4 35 c4 34 5
|
||||
35 48 35 44 0 44 0 44 -35z m0 -105 c0 -29 -1 -30 -48 -30 -57 0 -61 2 -54 35
|
||||
4 23 9 25 53 25 48 0 49 -1 49 -30z m-15 -97 c-9 -37 -8 -36 -58 -29 -40 6
|
||||
-44 9 -39 31 4 23 9 25 54 25 50 0 50 0 43 -27z m-37 -69 c17 -5 22 -14 22
|
||||
-37 l0 -30 -47 7 c-25 3 -48 8 -50 10 -2 2 -1 15 3 30 6 27 25 32 72 20z m12
|
||||
-106 c0 -4 -4 -9 -10 -13 -5 -3 -7 -11 -4 -18 3 -9 -10 -11 -46 -9 -50 4 -55
|
||||
8 -44 36 5 12 18 15 55 14 27 -1 49 -6 49 -10z m5026 0 c8 -9 -114 -70 -129
|
||||
-65 -7 2 12 16 41 31 28 14 52 30 52 35 0 10 26 9 36 -1z m-143 -33 c-3 -9 -8
|
||||
-14 -10 -11 -3 3 -2 9 2 15 9 16 15 13 8 -4z m-38 -22 c-19 -13 -31 -11 -21 5
|
||||
3 5 13 9 22 9 15 0 15 -2 -1 -14z m-35 -7 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2
|
||||
-9 4 6 10 25 14 25 6z m-4892 -40 c-13 -14 -28 -12 -28 5 0 5 9 9 20 9 17 0
|
||||
19 -2 8 -14z m4862 -794 c19 -8 39 -14 43 -13 5 1 6 -3 3 -8 -3 -5 1 -14 9
|
||||
-21 35 -29 -1 -82 -65 -95 -36 -8 -36 0 1 19 12 6 27 19 33 28 13 21 -21 60
|
||||
-76 89 -21 11 -38 22 -38 24 0 8 49 -5 90 -23z m-4563 -267 c0 -8 -4 -15 -9
|
||||
-15 -10 0 -11 14 -1 23 9 10 10 9 10 -8z m4743 -214 c0 -11 -55 -31 -87 -31
|
||||
-28 0 -22 17 11 30 28 12 76 12 76 1z m-27 -217 c29 -9 20 -20 -51 -61 l-68
|
||||
-39 19 35 c10 20 16 47 14 59 -4 22 -2 23 32 17 20 -3 44 -8 54 -11z m-4698
|
||||
-594 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z
|
||||
m-130 -260 c15 -16 31 -28 35 -27 9 2 78 -79 102 -121 17 -28 16 -30 -9 -67
|
||||
l-26 -39 -19 43 c-10 24 -39 73 -65 110 -42 60 -71 131 -54 131 4 0 20 -13 36
|
||||
-30z m-480 -360 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4
|
||||
11 -10z m730 -180 c-3 -5 -14 -10 -23 -9 -14 0 -13 2 3 9 27 11 27 11 20 0z
|
||||
m4646 -347 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m-3375
|
||||
-498 c21 -32 7 -69 -31 -87 -62 -28 -100 37 -50 87 31 32 60 32 81 0z"/>
|
||||
<path d="M2261 6781 c14 -4 36 -14 50 -21 22 -11 23 -11 9 4 -8 8 -31 18 -50
|
||||
21 -29 4 -31 4 -9 -4z"/>
|
||||
<path d="M2686 6678 c3 -5 10 -6 15 -3 13 9 11 12 -6 12 -8 0 -12 -4 -9 -9z"/>
|
||||
<path d="M1817 6656 c4 -5 -5 -7 -21 -4 -15 3 -24 3 -21 0 5 -6 -34 -73 -49
|
||||
-84 -15 -10 -16 -38 0 -38 15 0 19 -31 7 -44 -4 -4 -8 -23 -10 -42 -2 -42 -20
|
||||
-67 -43 -61 -8 2 -21 -1 -27 -8 -14 -15 -28 -59 -16 -52 21 13 3 -57 -21 -82
|
||||
-15 -15 -23 -30 -19 -34 3 -4 2 -7 -3 -7 -5 0 -10 -16 -12 -36 -1 -22 2 -33 8
|
||||
-29 11 7 41 -55 34 -67 -3 -5 -17 -8 -32 -9 -25 -1 -25 -2 5 -9 47 -11 61 -26
|
||||
78 -83 17 -57 19 -79 6 -58 -19 29 -41 4 -41 -46 0 -35 -3 -44 -10 -33 -5 8
|
||||
-10 27 -10 41 0 37 -29 116 -48 131 -9 7 -13 8 -9 2 4 -7 -1 -15 -10 -18 -9
|
||||
-4 -19 -2 -22 3 -4 5 -14 3 -25 -5 -13 -9 -15 -14 -6 -14 7 0 10 -3 7 -6 -3
|
||||
-4 0 -16 8 -27 11 -16 12 -24 2 -35 -10 -13 -18 -93 -18 -187 0 -20 -2 -25 -8
|
||||
-17 -9 15 -23 -2 -65 -87 -18 -35 -24 -57 -18 -63 16 -16 29 -2 46 49 19 56
|
||||
42 84 64 76 12 -5 14 -2 9 12 -6 15 -3 17 22 12 17 -4 33 -2 36 3 4 6 11 8 16
|
||||
5 5 -4 13 4 18 17 6 13 10 17 10 10 1 -21 -19 -53 -29 -47 -6 3 -7 -1 -4 -9 4
|
||||
-11 -3 -19 -21 -26 -31 -12 -58 -13 -51 -2 2 4 -4 8 -15 8 -10 0 -19 -4 -19
|
||||
-8 0 -4 5 -8 11 -8 6 0 9 -9 6 -20 -3 -11 0 -18 6 -17 7 1 14 -14 17 -33 6
|
||||
-41 46 -120 61 -120 6 0 7 6 3 13 -4 6 2 3 14 -7 12 -11 22 -25 22 -33 0 -7 9
|
||||
-13 20 -13 11 0 20 -7 20 -16 0 -9 5 -12 12 -8 7 4 8 3 4 -5 -4 -6 0 -14 8
|
||||
-17 9 -3 16 -11 16 -17 0 -5 -8 -3 -18 6 -22 20 -37 11 -19 -11 9 -11 4 -11
|
||||
-15 2 -25 17 -33 15 -29 -6 0 -5 -3 -7 -8 -5 -5 1 -9 -1 -10 -5 -3 -21 0 -29
|
||||
8 -24 5 3 12 -10 15 -29 7 -37 22 -43 57 -24 11 6 18 17 15 24 -3 9 0 12 9 8
|
||||
8 -3 12 -9 9 -14 -3 -5 0 -9 5 -9 18 0 26 5 24 12 -2 4 3 5 11 2 15 -6 30 22
|
||||
19 38 -4 7 -1 8 7 3 9 -6 12 -4 8 6 -4 10 3 15 24 16 20 0 26 -2 17 -7 -7 -5
|
||||
-17 -6 -23 -3 -5 4 -6 1 -2 -6 5 -7 14 -10 22 -7 11 4 14 -6 15 -42 4 -99 10
|
||||
-111 55 -108 37 2 60 26 58 61 -1 11 -2 30 -3 42 0 12 -15 38 -32 58 -17 19
|
||||
-29 41 -26 49 4 10 0 12 -15 8 -22 -6 -20 6 9 40 11 12 12 18 2 24 -8 5 -10 3
|
||||
-4 -6 6 -9 4 -11 -5 -5 -9 6 -11 4 -5 -5 5 -8 4 -11 -3 -7 -7 5 -7 14 1 31 8
|
||||
17 14 21 19 13 6 -9 11 -8 18 3 5 8 10 11 10 5 0 -5 7 1 16 13 8 12 24 22 34
|
||||
22 10 0 22 5 25 10 3 6 18 10 32 10 15 0 23 3 20 7 -4 3 17 17 46 31 28 14 67
|
||||
38 85 53 18 16 37 29 42 29 5 0 20 19 34 43 28 47 28 63 1 162 -9 33 -19 71
|
||||
-21 83 -3 13 -13 42 -23 65 -11 23 -38 98 -61 167 -46 137 -112 282 -162 357
|
||||
-51 76 -127 143 -159 141 -15 -1 -25 -6 -22 -12z m69 -204 c1 -13 -5 -30 -13
|
||||
-37 -16 -16 -43 -9 -43 11 0 7 6 11 14 8 8 -3 17 -1 21 5 3 6 -1 11 -9 11 -17
|
||||
0 -21 12 -9 24 14 14 38 0 39 -22z m27 -157 c-8 -23 15 -18 28 6 10 20 12 20
|
||||
27 5 24 -23 19 -86 -8 -108 -34 -28 -67 -23 -85 12 -20 39 -19 52 6 84 21 27
|
||||
43 27 32 1z m-44 -166 c25 -23 25 -62 1 -67 -11 -2 -16 5 -15 24 0 15 -6 29
|
||||
-12 31 -18 7 -29 -27 -12 -37 7 -5 10 -12 6 -16 -12 -13 -37 18 -37 46 0 43
|
||||
33 52 69 19z m-104 -32 c34 -28 65 -138 65 -227 0 -63 0 -64 -19 -45 -10 11
|
||||
-28 52 -40 91 -15 51 -30 80 -56 105 -35 34 -38 55 -13 87 15 18 34 15 63 -11z
|
||||
m194 -278 c15 -42 14 -71 -2 -93 -12 -16 -13 -12 -12 35 1 30 0 44 -2 32 -2
|
||||
-13 -9 -23 -14 -23 -6 0 -8 -4 -5 -9 3 -4 -6 -6 -19 -3 -28 5 -24 22 6 22 20
|
||||
0 27 34 9 45 -13 8 -3 25 15 25 7 0 18 -14 24 -31z m-320 -64 c0 -5 -4 -3 -9
|
||||
5 -5 8 -9 22 -9 30 0 16 17 -16 18 -35z m21 -129 c0 -2 -8 -10 -17 -17 -16
|
||||
-13 -17 -12 -4 4 13 16 21 21 21 13z m27 -338 c-3 -7 -5 -2 -5 12 0 14 2 19 5
|
||||
13 2 -7 2 -19 0 -25z m220 -66 c9 -10 14 -9 22 5 6 10 11 13 11 8 0 -13 -20
|
||||
-35 -32 -35 -13 0 -48 63 -47 85 0 15 5 11 17 -15 9 -19 22 -41 29 -48z"/>
|
||||
<path d="M1917 6248 c-6 -21 4 -48 19 -48 16 0 37 37 29 50 -9 14 -43 12 -48
|
||||
-2z"/>
|
||||
<path d="M2711 6635 c0 -5 6 -21 14 -35 8 -14 14 -20 14 -15 0 6 -6 21 -14 35
|
||||
-8 14 -14 21 -14 15z"/>
|
||||
<path d="M2336 6607 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/>
|
||||
<path d="M2746 6607 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/>
|
||||
<path d="M2361 6564 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
|
||||
<path d="M6470 6518 c93 -85 103 -93 79 -60 -13 19 -37 41 -54 49 -16 9 -28
|
||||
13 -25 11z"/>
|
||||
<path d="M6460 6493 c1 -5 25 -35 55 -68 56 -62 71 -57 22 7 -28 36 -77 76
|
||||
-77 61z"/>
|
||||
<path d="M1672 6433 c2 -26 8 -38 18 -38 10 0 15 11 16 38 1 30 -2 37 -18 37
|
||||
-16 0 -19 -6 -16 -37z"/>
|
||||
<path d="M1594 6308 c-5 -8 -1 -9 12 -5 18 7 18 6 2 -7 -21 -15 -23 -32 -6
|
||||
-42 18 -11 39 25 27 47 -11 22 -25 24 -35 7z"/>
|
||||
<path d="M6751 6243 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22 -17 16 -18 16 -5
|
||||
-5z"/>
|
||||
<path d="M6776 6197 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/>
|
||||
<path d="M6795 6155 c4 -11 16 -42 27 -70 11 -27 22 -60 25 -73 3 -12 9 -25
|
||||
14 -27 9 -6 -1 29 -30 105 -20 53 -52 111 -36 65z"/>
|
||||
<path d="M4281 6131 c6 -2 -14 -14 -43 -28 -29 -13 -63 -34 -75 -45 -13 -12
|
||||
-23 -17 -23 -12 0 5 21 24 47 42 26 17 43 32 38 32 -6 0 -32 -16 -58 -36 -32
|
||||
-23 -47 -40 -43 -50 3 -8 1 -12 -4 -9 -12 7 -77 -90 -94 -140 -19 -54 -26 -20
|
||||
-10 43 8 30 11 59 7 64 -3 7 -1 8 5 4 7 -4 10 1 9 14 -1 21 -17 29 -17 8 0 -6
|
||||
-3 -8 -7 -5 -3 4 2 16 12 27 16 18 16 20 2 14 -17 -6 -65 -79 -85 -129 -38
|
||||
-98 -52 -252 -31 -345 17 -75 80 -190 133 -242 62 -61 113 -86 196 -94 44 -4
|
||||
44 -4 -22 20 -84 30 -127 56 -171 105 -66 74 -118 191 -116 265 l0 31 14 -30
|
||||
c7 -16 23 -54 36 -82 12 -29 24 -51 26 -49 2 1 -6 23 -17 47 -20 45 -27 115
|
||||
-11 105 5 -4 12 0 15 6 3 7 4 -8 2 -34 -2 -30 0 -45 6 -42 6 4 7 -2 3 -16 -5
|
||||
-17 -4 -21 5 -15 8 5 11 4 6 -3 -9 -15 25 -83 38 -75 6 4 5 0 -2 -9 -27 -34
|
||||
162 -180 230 -177 18 1 16 3 -11 10 -18 6 -31 12 -29 14 2 3 20 0 39 -5 88
|
||||
-26 220 4 303 67 96 74 143 172 153 318 9 142 -40 271 -138 359 -71 64 -140
|
||||
88 -245 84 -46 -2 -79 -5 -73 -7z m208 -116 c42 -21 81 -72 81 -105 0 -16 -11
|
||||
-41 -24 -57 -22 -26 -30 -28 -90 -27 -54 1 -71 5 -100 28 -48 36 -66 94 -42
|
||||
131 10 14 27 30 39 35 35 14 105 11 136 -5z m-299 -669 c25 -14 40 -26 34 -26
|
||||
-20 0 -99 58 -139 101 l-40 44 50 -47 c28 -26 70 -58 95 -72z"/>
|
||||
<path d="M6736 5970 c3 -36 7 -79 9 -97 7 -60 -16 -98 -31 -50 -4 12 -10 24
|
||||
-15 27 -4 3 -9 12 -11 20 -2 8 -9 20 -15 28 -7 7 -16 19 -21 27 -4 8 -18 16
|
||||
-32 18 -13 2 -26 9 -28 16 -3 8 -8 7 -17 -5 -12 -17 -50 -30 -40 -14 3 5 0 12
|
||||
-6 16 -9 5 -10 -20 -6 -102 4 -60 10 -201 13 -313 7 -192 8 -202 23 -175 8 16
|
||||
16 31 16 34 3 15 37 70 44 70 5 0 11 8 13 18 6 22 115 57 150 49 45 -12 51
|
||||
-50 45 -275 -3 -114 -10 -227 -17 -252 -29 -115 -140 -294 -171 -275 -7 5 -6
|
||||
11 1 20 6 7 10 17 9 21 -1 5 3 22 10 39 8 20 9 31 2 33 -6 2 -11 10 -11 18 0
|
||||
8 -4 14 -10 14 -5 0 -10 6 -10 14 0 8 -11 14 -26 14 -46 0 -64 32 -65 119 -1
|
||||
43 -8 -28 -15 -157 -11 -201 -11 -236 1 -243 8 -4 11 -15 8 -23 -5 -14 0 -15
|
||||
38 -9 49 8 135 43 126 51 -3 3 -18 -1 -35 -10 -16 -8 -32 -12 -35 -9 -4 3 -12
|
||||
1 -19 -4 -23 -17 -47 -22 -54 -11 -4 7 -3 8 4 4 7 -4 12 -2 12 4 0 7 7 10 15
|
||||
6 8 -3 15 -1 15 4 0 5 16 16 35 24 19 8 35 20 35 26 0 6 -6 8 -12 4 -7 -4 -5
|
||||
2 6 14 16 19 36 22 36 6 0 -3 -5 -2 -12 2 -7 4 -8 3 -4 -4 9 -15 11 -15 27 5
|
||||
12 14 12 16 0 9 -9 -6 -12 -4 -9 5 3 8 11 14 19 14 8 0 14 5 14 10 1 6 6 20
|
||||
13 33 7 12 10 22 6 22 -3 0 -2 6 4 13 6 6 10 14 10 17 1 3 5 17 11 33 6 15 16
|
||||
39 22 54 44 114 57 476 25 713 -17 129 -54 295 -80 365 l-15 40 5 -65z m14
|
||||
-1173 c0 -2 -10 -12 -22 -23 l-23 -19 19 23 c18 21 26 27 26 19z m-130 -122
|
||||
c0 -2 -10 -9 -22 -15 -22 -11 -22 -10 -4 4 21 17 26 19 26 11z"/>
|
||||
<path d="M5711 5989 c12 -7 12 -9 -1 -9 -9 0 -34 -9 -55 -20 -40 -19 -40 -19
|
||||
-16 0 13 11 19 20 14 20 -5 0 -24 -14 -43 -31 -19 -17 -26 -25 -15 -18 18 13
|
||||
19 13 6 -3 -7 -10 -17 -16 -21 -13 -20 13 -80 -88 -105 -178 l-14 -52 1 65 c0
|
||||
36 -2 74 -6 86 -3 11 1 38 9 60 l16 39 -20 -25 c-79 -97 -110 -277 -72 -418
|
||||
16 -60 75 -174 111 -216 46 -52 120 -95 176 -102 50 -7 60 1 13 9 -39 7 -141
|
||||
62 -165 88 -72 78 -125 211 -123 308 l1 56 18 -65 c16 -56 18 -60 19 -30 1 19
|
||||
4 46 8 60 5 19 10 7 19 -52 7 -45 24 -101 42 -136 17 -33 29 -62 26 -65 -2 -2
|
||||
4 -10 13 -18 17 -13 17 -13 3 6 -8 11 4 3 27 -17 158 -139 352 -107 443 73
|
||||
101 198 27 490 -143 574 -51 24 -202 47 -166 24z m125 -114 c31 -20 64 -73 64
|
||||
-102 0 -76 -72 -114 -153 -79 -54 23 -81 60 -81 113 -1 43 2 49 34 71 40 27
|
||||
92 26 136 -3z"/>
|
||||
<path d="M6905 5900 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0
|
||||
-7 -4 -4 -10z"/>
|
||||
<path d="M1555 5664 c-20 -15 -12 -17 19 -5 11 4 15 10 10 13 -5 4 -18 0 -29
|
||||
-8z"/>
|
||||
<path d="M1535 5449 c-4 -16 0 -41 9 -64 19 -45 19 -48 4 -39 -7 4 -8 3 -4 -4
|
||||
5 -8 13 -9 25 -3 21 12 47 41 36 41 -4 0 -2 6 4 14 9 11 9 16 0 21 -8 6 -8 10
|
||||
2 16 10 6 7 8 -8 6 -12 0 -19 -6 -15 -11 10 -17 8 -57 -3 -66 -7 -6 -9 3 -7
|
||||
29 3 26 -2 44 -16 61 l-20 25 -7 -26z"/>
|
||||
<path d="M1640 5385 c0 -8 2 -15 4 -15 2 0 6 7 10 15 3 8 1 15 -4 15 -6 0 -10
|
||||
-7 -10 -15z"/>
|
||||
<path d="M5520 5326 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21
|
||||
13z"/>
|
||||
<path d="M5584 5281 c19 -21 64 -44 106 -55 14 -4 -2 7 -35 25 -33 17 -61 35
|
||||
-63 40 -2 5 -8 9 -14 9 -6 0 -3 -9 6 -19z"/>
|
||||
<path d="M4328 5283 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z"/>
|
||||
<path d="M1825 5202 c3 -23 0 -32 -8 -29 -7 3 -11 10 -9 16 1 6 -1 10 -5 10
|
||||
-20 -3 -26 2 -13 11 9 6 10 10 3 10 -17 0 -25 -17 -13 -25 7 -5 5 -11 -6 -19
|
||||
-14 -11 -15 -18 -5 -48 17 -53 54 -64 73 -23 8 18 8 28 -1 39 -7 8 -10 20 -6
|
||||
27 6 8 10 7 16 -2 6 -10 9 -10 9 -2 0 6 -5 15 -11 18 -6 4 -8 14 -5 22 3 8 2
|
||||
12 -3 8 -5 -3 -12 1 -14 7 -3 7 -4 -2 -2 -20z"/>
|
||||
<path d="M1669 5116 c14 -17 18 -63 7 -93 -5 -17 -4 -23 8 -23 9 0 18 11 22
|
||||
25 10 42 -13 105 -38 105 -6 0 -6 -6 1 -14z"/>
|
||||
<path d="M3782 5113 c-20 -8 -44 -62 -44 -99 0 -65 52 -116 116 -113 12 0 5 5
|
||||
-19 13 -79 24 -105 106 -55 176 12 17 20 30 18 29 -2 0 -9 -3 -16 -6z"/>
|
||||
<path d="M3865 5100 c3 -5 11 -10 17 -10 7 0 22 -9 34 -21 12 -11 30 -19 41
|
||||
-17 14 3 10 9 -22 28 -42 26 -80 37 -70 20z"/>
|
||||
<path d="M3786 5065 c-55 -83 37 -175 101 -101 30 35 29 71 -2 101 -32 33 -77
|
||||
33 -99 0z"/>
|
||||
<path d="M1786 5018 c-16 -50 -16 -70 -2 -65 8 3 22 -3 32 -14 26 -28 34 -23
|
||||
34 20 0 30 -5 42 -25 55 -29 19 -34 20 -39 4z"/>
|
||||
<path d="M5990 5008 c-43 -46 -12 -52 40 -8 l35 29 -27 1 c-15 0 -36 -10 -48
|
||||
-22z"/>
|
||||
<path d="M6046 4988 c-34 -48 -9 -118 42 -118 49 0 72 95 30 124 -31 22 -54
|
||||
20 -72 -6z"/>
|
||||
<path d="M1787 4936 c-3 -8 2 -20 11 -27 14 -11 15 -11 5 0 -6 7 -9 20 -6 27
|
||||
3 8 3 14 0 14 -3 0 -7 -6 -10 -14z"/>
|
||||
<path d="M1730 4912 c0 -31 21 -72 37 -72 20 0 16 22 -12 60 -22 29 -25 31
|
||||
-25 12z"/>
|
||||
<path d="M3908 4893 c17 -2 47 -2 65 0 17 2 3 4 -33 4 -36 0 -50 -2 -32 -4z"/>
|
||||
<path d="M4068 4883 c18 -2 45 -2 60 0 15 2 0 4 -33 4 -33 0 -45 -2 -27 -4z"/>
|
||||
<path d="M4528 4873 c23 -2 59 -2 80 0 20 2 1 4 -43 4 -44 0 -61 -2 -37 -4z"/>
|
||||
<path d="M4713 4863 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z"/>
|
||||
<path d="M4853 4863 c15 -2 37 -2 50 0 12 2 0 4 -28 4 -27 0 -38 -2 -22 -4z"/>
|
||||
<path d="M5033 4853 c26 -2 68 -2 95 0 26 2 4 3 -48 3 -52 0 -74 -1 -47 -3z"/>
|
||||
<path d="M5293 4843 c26 -2 68 -2 95 0 26 2 4 3 -48 3 -52 0 -74 -1 -47 -3z"/>
|
||||
<path d="M5538 4833 c17 -2 47 -2 65 0 17 2 3 4 -33 4 -36 0 -50 -2 -32 -4z"/>
|
||||
<path d="M5798 4823 c39 -2 105 -2 145 0 39 1 7 3 -73 3 -80 0 -112 -2 -72 -3z"/>
|
||||
<path d="M6028 4823 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z"/>
|
||||
<path d="M3916 4177 c-27 -35 -33 -78 -17 -120 11 -29 66 -51 105 -41 30 7 73
|
||||
54 82 89 7 27 -18 80 -45 95 -31 16 -48 12 -23 -6 12 -8 22 -19 22 -25 0 -16
|
||||
-32 -10 -46 9 -11 15 -16 15 -34 4 -14 -9 -19 -9 -15 -2 4 6 17 15 29 20 20 8
|
||||
19 9 -6 9 -19 1 -34 -9 -52 -32z m142 -74 c-4 -22 -47 -38 -79 -30 -33 9 -55
|
||||
25 -46 33 3 4 13 1 21 -5 16 -14 71 -7 81 10 10 16 27 10 23 -8z"/>
|
||||
<path d="M6128 4203 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z"/>
|
||||
<path d="M6170 4200 c11 -7 6 -10 -21 -10 -26 0 -43 -8 -64 -29 -24 -26 -27
|
||||
-35 -22 -68 12 -73 81 -96 137 -45 20 17 33 40 37 64 5 33 2 41 -27 68 -18 16
|
||||
-37 30 -44 30 -6 0 -4 -5 4 -10z m20 -42 c27 -29 25 -54 -5 -74 -20 -13 -31
|
||||
-14 -48 -6 l-22 11 22 0 c28 1 57 40 42 57 -6 7 -17 10 -25 7 -14 -5 -19 8 -7
|
||||
20 11 12 21 8 43 -15z"/>
|
||||
<path d="M3427 3982 c-15 -17 -16 -25 -6 -73 9 -39 10 -143 4 -379 -4 -179 -8
|
||||
-437 -8 -575 0 -251 0 -261 43 -470 12 -57 28 -103 30 -85 1 8 8 -7 15 -35 10
|
||||
-44 13 -15 20 260 7 272 0 1354 -9 1363 -2 1 -19 5 -37 8 -26 5 -39 1 -52 -14z"/>
|
||||
<path d="M5048 3983 c-558 -3 -608 -5 -608 -20 0 -15 51 -16 677 -9 372 3 679
|
||||
8 681 11 2 2 1 8 -3 14 -3 7 -34 10 -73 9 -37 -2 -340 -4 -674 -5z"/>
|
||||
<path d="M4374 3855 c0 -55 1 -76 3 -47 2 29 2 74 0 100 -2 26 -3 2 -3 -53z"/>
|
||||
<path d="M4453 3903 c-24 -9 -13 -29 15 -27 15 1 321 3 680 3 572 1 652 3 652
|
||||
16 0 13 -80 15 -667 14 -368 0 -674 -3 -680 -6z"/>
|
||||
<path d="M4903 3833 c-402 -3 -463 -5 -463 -18 0 -13 84 -15 680 -15 570 0
|
||||
680 2 680 14 0 21 -49 26 -249 24 -102 -2 -394 -4 -648 -5z"/>
|
||||
<path d="M4763 3753 c-278 -3 -323 -5 -323 -18 0 -18 215 -19 933 -8 346 5
|
||||
427 9 427 20 0 13 -70 14 -1037 6z"/>
|
||||
<path d="M4372 3720 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z"/>
|
||||
<path d="M1963 3710 c6 -16 13 -28 15 -26 6 6 -10 56 -18 56 -5 0 -3 -13 3
|
||||
-30z"/>
|
||||
<path d="M4533 3673 c-75 -3 -93 -7 -93 -19 0 -13 74 -14 668 -9 367 4 673 8
|
||||
680 10 6 3 12 9 12 15 0 9 -1015 12 -1267 3z"/>
|
||||
<path d="M4763 3603 c-278 -3 -323 -5 -323 -18 0 -13 38 -15 273 -15 151 0
|
||||
457 3 680 7 330 5 407 9 407 20 0 13 -70 14 -1037 6z"/>
|
||||
<path d="M6033 3433 c-21 -8 -15 -33 7 -33 11 0 23 -6 26 -14 3 -8 13 -17 21
|
||||
-20 12 -5 13 -3 6 6 -6 7 -13 25 -17 41 -6 26 -17 31 -43 20z"/>
|
||||
<path d="M2080 3365 c0 -5 5 -17 10 -25 5 -8 10 -10 10 -5 0 6 -5 17 -10 25
|
||||
-5 8 -10 11 -10 5z"/>
|
||||
<path d="M6030 3349 c0 -27 22 -49 49 -49 34 0 56 23 47 47 -5 13 -9 14 -15 5
|
||||
-6 -10 -15 -10 -35 -2 -35 13 -46 13 -46 -1z"/>
|
||||
<path d="M5626 3331 c-8 -12 9 -57 24 -66 18 -11 47 22 33 36 -6 6 -9 18 -6
|
||||
25 6 16 -42 20 -51 5z m26 -8 c-6 -2 -9 -10 -6 -15 4 -7 2 -8 -5 -4 -13 9 -5
|
||||
26 12 25 9 0 8 -2 -1 -6z"/>
|
||||
<path d="M2060 3315 c0 -8 2 -15 4 -15 2 0 6 7 10 15 3 8 1 15 -4 15 -6 0 -10
|
||||
-7 -10 -15z"/>
|
||||
<path d="M3937 3313 c-16 -15 -7 -72 12 -83 23 -12 108 -14 115 -2 3 5 -9 7
|
||||
-27 4 -22 -2 -28 0 -19 6 11 7 8 11 -10 17 -12 4 -26 8 -30 10 -20 7 -24 7
|
||||
-32 6 -5 -1 -6 10 -4 24 6 27 5 29 -5 18z"/>
|
||||
<path d="M4033 3313 c15 -2 27 -9 27 -14 0 -5 7 -9 16 -9 35 0 5 25 -32 26
|
||||
-24 1 -29 0 -11 -3z"/>
|
||||
<path d="M2106 3243 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z"/>
|
||||
<path d="M5655 3230 c-19 -8 -19 -9 2 -9 12 -1 25 4 28 9 7 12 -2 12 -30 0z"/>
|
||||
<path d="M7770 3150 c-91 -25 -180 -65 -257 -118 -55 -38 -152 -120 -125 -107
|
||||
6 3 12 3 12 -2 0 -4 16 -9 35 -10 19 -2 58 -12 87 -23 29 -11 68 -20 86 -20
|
||||
18 0 31 -4 28 -9 -3 -4 7 -6 22 -3 26 4 26 3 -10 -28 -21 -17 -38 -38 -38 -46
|
||||
0 -8 -7 -17 -15 -20 -8 -4 -15 -12 -15 -20 0 -8 -5 -14 -12 -14 -6 0 -9 -3 -6
|
||||
-6 4 -3 0 -17 -7 -31 -8 -15 -12 -30 -10 -33 2 -4 -2 -7 -10 -7 -11 0 -12 5
|
||||
-4 20 8 13 8 22 0 30 -17 17 -45 -60 -44 -120 0 -29 -3 -50 -8 -47 -5 3 -9 0
|
||||
-9 -5 0 -6 -3 -10 -7 -9 -20 4 -103 -15 -103 -24 0 -6 -6 -5 -15 2 -12 10 -15
|
||||
10 -15 0 0 -7 -7 -10 -15 -6 -8 3 -15 2 -15 -2 0 -17 57 -62 105 -84 44 -20
|
||||
66 -22 180 -22 109 0 140 4 194 23 166 58 319 154 412 258 48 53 89 143 96
|
||||
209 12 113 -40 200 -153 255 -61 30 -76 33 -178 36 -87 2 -127 -1 -186 -17z
|
||||
m-70 -340 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 8 10 11 10 2 0 4 -4 4
|
||||
-10z m-40 -10 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11
|
||||
-4 11 -10z m-20 -20 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6
|
||||
0 11 -4 11 -10z m160 -10 c0 -23 -22 -35 -46 -26 -15 6 -15 8 1 26 23 26 45
|
||||
26 45 0z"/>
|
||||
<path d="M4512 3115 c-16 -13 -49 -50 -73 -81 l-44 -57 -4 -135 c-4 -185 1
|
||||
-211 47 -242 20 -14 40 -29 43 -33 3 -5 9 -8 13 -8 3 1 33 -12 66 -29 69 -35
|
||||
92 -36 140 -10 29 16 31 19 13 20 -12 0 -26 7 -31 16 -5 9 -12 15 -15 15 -22
|
||||
-3 -18 2 13 19 19 11 29 19 22 20 -7 0 4 21 26 48 76 90 101 164 76 218 -31
|
||||
64 -81 78 -138 39 -19 -14 -18 -14 12 -11 37 5 89 -26 112 -67 14 -25 13 -30
|
||||
-13 -81 -42 -81 -93 -136 -123 -134 -13 1 -24 6 -24 11 0 4 -4 6 -9 2 -6 -3
|
||||
-14 2 -19 11 -5 9 -13 15 -18 14 -5 -1 -10 3 -12 9 -2 6 2 12 10 12 7 1 0 5
|
||||
-17 9 l-30 8 28 1 c15 0 27 5 27 11 0 5 -7 7 -17 3 -13 -5 -15 -2 -11 15 3 12
|
||||
0 26 -7 32 -11 9 -18 36 -27 98 -1 6 -13 12 -28 12 -29 0 -70 32 -70 55 0 8 9
|
||||
20 20 27 11 7 20 20 20 28 0 13 -1 13 -10 0 -13 -21 -12 -7 2 27 6 15 12 31
|
||||
12 34 2 15 81 87 89 82 6 -3 7 -1 3 5 -11 17 -21 15 -54 -13z m82 -532 c45
|
||||
-27 67 -63 40 -63 -20 0 -124 53 -154 79 l-25 22 48 -6 c26 -3 67 -18 91 -32z"/>
|
||||
<path d="M6035 3060 c-3 -5 2 -23 11 -40 13 -20 25 -29 41 -28 30 3 29 12 -2
|
||||
32 -14 9 -25 23 -25 31 0 17 -16 20 -25 5z"/>
|
||||
<path d="M6116 3051 c-3 -5 0 -11 8 -14 8 -3 17 1 20 9 6 15 -19 20 -28 5z"/>
|
||||
<path d="M4325 2985 c-11 -45 -12 -265 -1 -338 7 -42 13 -52 52 -80 24 -17 44
|
||||
-38 44 -46 0 -14 1 -14 10 -1 9 13 10 13 10 -1 0 -14 86 -65 103 -61 4 1 26
|
||||
-7 48 -19 22 -11 45 -19 50 -17 5 2 -44 32 -108 68 -64 36 -134 77 -155 92
|
||||
l-38 28 -2 207 c-2 163 -5 199 -13 168z"/>
|
||||
<path d="M5646 2981 c-3 -5 -5 -21 -4 -35 2 -20 8 -26 25 -26 17 0 23 6 23 23
|
||||
0 34 -31 60 -44 38z"/>
|
||||
<path d="M6035 2969 c-11 -18 16 -39 51 -39 36 0 45 7 35 30 -7 17 -77 25 -86
|
||||
9z"/>
|
||||
<path d="M5627 2889 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z"/>
|
||||
<path d="M2119 2887 c-7 -20 -6 -50 2 -82 10 -39 12 -40 55 -43 33 -2 43 1 38
|
||||
10 -5 7 -2 9 8 6 9 -4 15 0 15 8 0 8 -5 14 -11 14 -16 1 -56 36 -56 49 0 6 -6
|
||||
10 -12 9 -7 -2 -12 2 -11 9 2 9 -25 28 -28 20z"/>
|
||||
<path d="M4877 2819 c-11 -39 -8 -65 12 -109 l18 -41 -5 73 c-5 83 -15 114
|
||||
-25 77z"/>
|
||||
<path d="M8631 2824 c-1 -12 6 -37 14 -55 l16 -34 -7 35 c-4 19 -10 44 -15 55
|
||||
-7 19 -8 19 -8 -1z"/>
|
||||
<path d="M4707 2790 c4 -14 0 -20 -12 -20 -11 0 -15 5 -12 14 4 10 1 13 -9 9
|
||||
-13 -5 -13 -9 4 -26 11 -11 25 -16 31 -13 13 9 15 43 2 50 -5 4 -7 -3 -4 -14z"/>
|
||||
<path d="M2241 2761 c-7 -5 -12 -14 -10 -20 2 -6 10 -2 17 9 14 22 13 23 -7
|
||||
11z"/>
|
||||
<path d="M6044 2714 c-18 -14 -18 -15 4 -4 12 6 22 13 22 15 0 8 -5 6 -26 -11z"/>
|
||||
<path d="M7536 2717 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/>
|
||||
<path d="M6055 2682 c-8 -22 8 -34 39 -26 34 8 33 17 -3 31 -25 9 -31 8 -36
|
||||
-5z"/>
|
||||
<path d="M5640 2629 c-9 -15 -8 -24 1 -35 14 -17 39 -18 39 -1 0 6 3 22 6 35
|
||||
5 18 2 22 -14 22 -12 0 -26 -9 -32 -21z"/>
|
||||
<path d="M6032 2624 c-7 -8 -9 -14 -4 -14 6 0 9 -8 8 -17 -1 -13 8 -19 32 -21
|
||||
35 -3 63 12 59 31 -3 18 -21 27 -28 15 -5 -8 -14 -7 -31 4 -20 13 -25 13 -36
|
||||
2z"/>
|
||||
<path d="M8581 2614 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/>
|
||||
<path d="M5638 2548 c5 -5 16 -8 23 -6 8 3 3 7 -10 11 -17 4 -21 3 -13 -5z"/>
|
||||
<path d="M8601 2475 c-1 -55 2 -75 9 -65 12 18 12 98 0 125 -6 13 -9 -6 -9
|
||||
-60z"/>
|
||||
<path d="M6098 2338 c-7 -13 -11 -29 -9 -37 1 -7 -2 -11 -6 -8 -16 10 2 -89
|
||||
21 -119 10 -16 13 -23 5 -16 -18 17 -25 15 -25 -7 0 -15 7 -18 42 -15 95 6
|
||||
155 39 153 84 0 10 -3 9 -9 -5 l-9 -20 -1 20 c-1 19 -2 19 -12 -2 -13 -27 -26
|
||||
-29 -34 -8 -4 8 -12 15 -19 15 -12 0 -30 34 -27 50 0 3 -6 12 -13 20 -24 26
|
||||
-2 45 50 44 28 -1 41 2 33 7 -22 14 -62 10 -102 -10 -36 -19 -37 -19 -21 -1
|
||||
10 11 12 20 6 24 -5 4 -16 -4 -23 -16z"/>
|
||||
<path d="M6262 2290 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z"/>
|
||||
<path d="M3936 2243 c-4 -5 -12 -9 -17 -9 -5 -1 -13 -2 -17 -3 -15 -2 -40 -56
|
||||
-47 -101 -10 -70 25 -137 82 -154 16 -5 26 -2 35 13 8 13 23 21 41 21 20 0 40
|
||||
11 63 34 31 31 34 40 34 90 0 47 -4 61 -25 81 -26 27 -73 33 -120 15 -23 -9
|
||||
-26 -8 -21 5 6 16 3 19 -8 8z m116 -32 c3 -1 4 -11 1 -23 -4 -19 -3 -20 7 -8
|
||||
10 13 11 13 7 0 -4 -18 -34 -20 -59 -6 -32 19 -16 47 22 40 8 -1 18 -3 22 -3z"/>
|
||||
<path d="M5842 2228 c-25 -25 -6 -88 26 -88 45 0 57 58 17 84 -29 19 -28 19
|
||||
-43 4z m30 -36 c3 8 7 6 11 -6 4 -9 3 -15 -2 -11 -5 3 -12 1 -16 -5 -9 -14
|
||||
-25 -3 -25 17 0 12 3 13 14 4 11 -9 15 -9 18 1z"/>
|
||||
<path d="M4375 2220 c-11 -4 -29 -6 -41 -3 -12 2 -28 -2 -36 -11 -9 -8 -18
|
||||
-13 -21 -10 -3 3 -8 -4 -12 -15 -3 -12 -10 -21 -15 -21 -4 0 -10 -9 -13 -21
|
||||
-10 -36 5 -87 34 -121 l29 -33 -25 39 c-24 38 -35 93 -15 81 6 -3 10 -13 10
|
||||
-22 0 -9 3 -13 7 -10 4 4 20 -5 35 -20 23 -22 39 -28 74 -28 39 0 50 5 75 33
|
||||
23 26 29 41 29 80 0 74 -49 110 -115 82z m86 -31 c12 -19 11 -29 -1 -29 -5 0
|
||||
-10 5 -10 10 0 7 -7 7 -17 2 -29 -13 -48 -8 -45 12 2 12 -1 16 -9 10 -8 -4
|
||||
-10 -3 -5 4 9 15 76 9 87 -9z"/>
|
||||
<path d="M8446 2148 c0 -46 2 -91 2 -100 3 -30 20 -20 32 18 10 29 9 42 -3 72
|
||||
-9 21 -19 50 -24 65 -6 20 -8 4 -7 -55z"/>
|
||||
<path d="M5572 2196 c6 -29 -1 -33 -21 -13 -11 10 -12 9 -6 -3 16 -30 38 -50
|
||||
55 -50 10 0 26 8 37 18 10 9 14 14 8 11 -5 -3 -19 -9 -30 -12 -17 -6 -18 -5
|
||||
-5 5 9 7 16 24 15 38 0 20 -6 26 -29 28 -26 3 -28 1 -24 -22z"/>
|
||||
<path d="M5142 2123 l-113 -4 4 -32 4 -32 96 1 c117 2 148 11 97 29 l-35 12
|
||||
38 7 c20 4 37 11 37 16 0 6 -3 9 -7 8 -5 -1 -59 -4 -121 -5z"/>
|
||||
<path d="M8526 2004 c-3 -9 -6 -22 -6 -31 0 -13 2 -13 15 1 16 16 20 46 6 46
|
||||
-5 0 -12 -7 -15 -16z"/>
|
||||
<path d="M7812 1974 c-63 -44 21 -157 86 -115 17 10 19 68 4 83 -9 9 -12 6
|
||||
-12 -14 0 -32 -21 -41 -49 -22 -23 17 -28 53 -9 72 17 17 7 15 -20 -4z"/>
|
||||
<path d="M8545 1941 c-3 -12 -11 -19 -16 -16 -5 4 -9 -9 -9 -27 l1 -33 20 43
|
||||
c11 24 18 46 16 49 -3 2 -8 -5 -12 -16z"/>
|
||||
<path d="M8195 1624 l-30 -12 35 -15 c34 -15 71 -10 77 10 7 19 -49 31 -82 17z"/>
|
||||
<path d="M7380 1394 c-410 -25 -460 -39 -239 -68 443 -58 1004 -65 1148 -15
|
||||
38 13 28 33 -22 43 -140 28 -677 52 -887 40z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 38 KiB |
19
app/public/site.webmanifest
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
96
app/src/components/Background.tsx
Normal file
|
@ -0,0 +1,96 @@
|
|||
import Particles, { IOptions, RecursivePartial } from "react-tsparticles";
|
||||
|
||||
const Background = ({className}) => {
|
||||
const particleParams: RecursivePartial<IOptions> = {
|
||||
"particles": {
|
||||
"number": {
|
||||
"value": 70,
|
||||
"density": {
|
||||
"enable": true,
|
||||
"area": 450
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"value": "#ffffff"
|
||||
},
|
||||
"size": {
|
||||
"value": 30,
|
||||
"random": true
|
||||
},
|
||||
"shape": {
|
||||
"type": "image",
|
||||
"image": {
|
||||
"src": "/images/snowflake.svg",
|
||||
}
|
||||
},
|
||||
"opacity": {
|
||||
"value": 0.75,
|
||||
"random": true,
|
||||
},
|
||||
"move": {
|
||||
"enable": true,
|
||||
"speed": {min: 1, max: 2},
|
||||
"direction": "bottom",
|
||||
"straight": false,
|
||||
"out_mode": "out",
|
||||
"bounce": false,
|
||||
"attract": {
|
||||
"enable": false,
|
||||
"rotateX": 600,
|
||||
"rotateY": 1200
|
||||
}
|
||||
}
|
||||
},
|
||||
"interactivity": {
|
||||
"detect_on": "canvas",
|
||||
"events": {
|
||||
"onhover": {
|
||||
"enable": false,
|
||||
"mode": "repulse"
|
||||
},
|
||||
"onclick": {
|
||||
"enable": false,
|
||||
"mode": "push"
|
||||
},
|
||||
"resize": true
|
||||
},
|
||||
"modes": {
|
||||
"grab": {
|
||||
"distance": 800,
|
||||
"line_linked": {
|
||||
"opacity": 1
|
||||
}
|
||||
},
|
||||
"bubble": {
|
||||
"distance": 800,
|
||||
"size": 80,
|
||||
"duration": 2,
|
||||
"opacity": 0.8,
|
||||
// "speed": 3
|
||||
},
|
||||
"repulse": {
|
||||
"distance": 400,
|
||||
"duration": 0.4
|
||||
},
|
||||
"push": {
|
||||
"particles_nb": 4
|
||||
},
|
||||
"remove": {
|
||||
"particles_nb": 2
|
||||
}
|
||||
}
|
||||
},
|
||||
"retina_detect": true,
|
||||
}
|
||||
|
||||
return (
|
||||
<div className='fixed top-0 left-0 w-full h-full bg-navy z-[-1]'>
|
||||
{/* <Particles
|
||||
className={`w-full h-full ${className}`}
|
||||
options={particleParams}
|
||||
/> */}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Background;
|
10
app/src/components/Checkbox.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
export const Dropdown = ({ id, label, options, value, onChange, className=''}) => {
|
||||
return (
|
||||
<div className={`${className}`}>
|
||||
<label htmlFor={id} className='text-white text-xl'>{label}</label>
|
||||
<select id={id} name={id} value={value} onChange={onChange} className='ml-2'>
|
||||
{options?.map((op, i) => <option key={i} value={op.value}>{op.label}</option>)}
|
||||
</select>
|
||||
</div>
|
||||
);
|
||||
}
|
10
app/src/components/Dropdown.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
export const Dropdown = ({ id, label, options, value, onChange, className=''}) => {
|
||||
return (
|
||||
<div className={`${className}`}>
|
||||
<label htmlFor={id} className='text-white text-xl'>{label}</label>
|
||||
<select id={id} name={id} value={value} onChange={onChange} className='ml-2'>
|
||||
{options.map((op, i) => <option key={i} value={op.value}>{op.label}</option>)}
|
||||
</select>
|
||||
</div>
|
||||
);
|
||||
}
|
11
app/src/components/InputField.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
export const InputField = ({ id, name, value, onChange, className='' }) => {
|
||||
let filled = String(value).length > 0;
|
||||
let labelClass = filled ? '-top-6 text-sm': 'text-xl top-0 group-focus-within:-top-6 group-focus-within:text-sm';
|
||||
|
||||
return (
|
||||
<div className={`relative w-full mt-6 group ${className}`}>
|
||||
<label className={`pointer-events-none absolute block transition-all ${labelClass} text-white group-focus-within:text-pink`} htmlFor={name}>{name}</label>
|
||||
<input className='w-full pb-2 border-solid border-b-2 border-white text-white bg-transparent transition-all group-focus-within:border-pink' name={id} id={id} value={value} onChange={onChange}></input>
|
||||
</div>
|
||||
);
|
||||
}
|
24
app/src/components/MathText.tsx
Normal file
|
@ -0,0 +1,24 @@
|
|||
import { MathJax, MathJaxContext } from "better-react-mathjax";
|
||||
|
||||
const config = {
|
||||
loader: { load: ["[tex]/html"] },
|
||||
tex: {
|
||||
packages: { "[+]": ["html"] },
|
||||
inlineMath: [
|
||||
["$", "$"],
|
||||
["\\(", "\\)"]
|
||||
],
|
||||
displayMath: [
|
||||
["$$", "$$"],
|
||||
["\\[", "\\]"]
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
export const MathText = ({children, inline=false, dynamic=false, className=''}) => {
|
||||
return (
|
||||
<MathJaxContext version={3} config={config}>
|
||||
<MathJax hideUntilTypeset="first" inline={inline} dynamic={dynamic} className={className}>{children}</MathJax>
|
||||
</MathJaxContext>
|
||||
);
|
||||
}
|
17
app/src/components/OutlineButton.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import Link from "next/link";
|
||||
|
||||
const OutlineButton = ({name="", className="", link="", onClick=()=>{}}) => {
|
||||
const btn = <button className={`w-fit px-2 py-1 text-md md:px-4 md:py-2 md:text-base text-pink border-solid border-2 border-pink bg-pink bg-opacity-0 hover:bg-opacity-10 transition-all ease-in-out ${className}`} onClick={onClick}>{name}</button>
|
||||
|
||||
if(link.length > 0){
|
||||
return <Link href={link} passHref>
|
||||
<a target='_blank'>
|
||||
{btn}
|
||||
</a>
|
||||
</Link>
|
||||
}
|
||||
|
||||
return btn;
|
||||
}
|
||||
|
||||
export default OutlineButton
|
9
app/src/components/SiteLink.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
import Link from "next/link";
|
||||
|
||||
const SiteLink = ({txt, href, className=""}) => {
|
||||
return (
|
||||
<Link href={href} passHref><a className={`${className}`}>{txt}</a></Link>
|
||||
);
|
||||
}
|
||||
|
||||
export default SiteLink
|
37
app/src/components/Spinner.tsx
Normal file
|
@ -0,0 +1,37 @@
|
|||
import { useEffect, useState } from "react";
|
||||
|
||||
export const Spinner = ({ className, show, cycle=2 }) => {
|
||||
const [cycled, setCycled] = useState(false)
|
||||
useEffect(() => {
|
||||
const delay = setTimeout(() => {
|
||||
setCycled(true)
|
||||
}, cycle*1000/2)
|
||||
}, [])
|
||||
return (
|
||||
<>
|
||||
{show || !cycled ?
|
||||
<span className={`m-4 aspect-square ${className}`}>
|
||||
{/* <span className="animate-spin absolute w-32 h-32 border-solid border-x-4 border-b-4 border-t-0 border-pink rounded-full top-0 left-0 "/> */}
|
||||
<span className="absolute w-full h-full top-0 left-0 rounded-full border-solid border-4 border-white" style={{
|
||||
animationFillMode: 'both',
|
||||
animation: 'scale, fade',
|
||||
animationDuration: `${cycle}s`,
|
||||
animationIterationCount: 'infinite',
|
||||
animationTimingFunction: 'cubic-bezier(0.165, 0.84, 0.44, 1), cubic-bezier(0.3, 0.61, 0.355, 1)',
|
||||
animationDelay: `-${cycle/2}s`
|
||||
}} />
|
||||
<span className="absolute w-full h-full top-0 left-0 rounded-full border-solid border-4 border-white" style={{
|
||||
animationFillMode: 'both',
|
||||
animation: 'scale, fade',
|
||||
animationDuration: `${cycle}s`,
|
||||
animationIterationCount: 'infinite',
|
||||
animationTimingFunction: 'cubic-bezier(0.165, 0.84, 0.44, 1), cubic-bezier(0.3, 0.61, 0.355, 1)',
|
||||
animationDelay: '0s'
|
||||
}} />
|
||||
</span>
|
||||
: null
|
||||
}
|
||||
</>
|
||||
|
||||
);
|
||||
}
|
9
app/src/components/TabSelect.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
export const TabSelect = ({ id, options, value, onChange, className = '' }) => {
|
||||
return (
|
||||
<div id={id} onChange={onChange} className={`flex justify-center w-fit mx-auto ${className}`}>
|
||||
{options.map((op, i) =>
|
||||
<button key={i} value={op.value} onClick={() => onChange(op.value)} className={`block text-white bg-navy-light border-solid border-b-2 ${value == op.value ? 'bg-opacity-100 border-white ' : 'bg-opacity-50 border-transparent'} py-2 px-4 transition-all duration-1000`}>{op.label}</button>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
7
app/src/components/TextArea.tsx
Normal file
|
@ -0,0 +1,7 @@
|
|||
export const TextArea = ({id, label, value, onChange, className=''}) => {
|
||||
return (
|
||||
<>
|
||||
<textarea id={id} name={id} value={value} onChange={onChange} className={`${className} bg-transparent text-white outline-none resize-none`}/>
|
||||
</>
|
||||
);
|
||||
}
|
42
app/src/components/ToastProvider.tsx
Normal file
|
@ -0,0 +1,42 @@
|
|||
import { createContext, useContext, useEffect, useReducer, useState } from "react"
|
||||
import { v4 as uuid } from 'uuid';
|
||||
// TODO: https://dev.to/kevjose/building-a-reusable-notification-system-with-react-hooks-and-context-api-2phj
|
||||
const ctx = createContext(null)
|
||||
|
||||
export enum ToastAction {
|
||||
ADD,
|
||||
REMOVE
|
||||
}
|
||||
|
||||
const toastReducer = (state, action) => {
|
||||
switch(action.type) {
|
||||
case ToastAction.ADD:
|
||||
return [
|
||||
...state,
|
||||
{
|
||||
id: uuid(),
|
||||
timestamp: new Date(),
|
||||
content: action.payload.content,
|
||||
type: action.payload.type,
|
||||
duration: action.payload.duration ? action.payload.duration : 5
|
||||
}
|
||||
]
|
||||
case ToastAction.REMOVE:
|
||||
return state.filter(toast => toast.id !== action.payload.id)
|
||||
}
|
||||
}
|
||||
|
||||
export const ToastProvider = ({children}) => {
|
||||
const [toasts, toastDispatch] = useReducer(toastReducer, [])
|
||||
|
||||
return (
|
||||
<ctx.Provider value={{toasts, toastDispatch}}>
|
||||
{children}
|
||||
</ctx.Provider>
|
||||
);
|
||||
}
|
||||
|
||||
export const useToasts = () => {
|
||||
const {toasts, toastDispatch} = useContext(ctx)
|
||||
return {toasts, toastDispatch}
|
||||
}
|
12
app/src/components/footer.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
import Image from 'next/image'
|
||||
import Link from 'next/link'
|
||||
import SiteLink from './SiteLink';
|
||||
|
||||
|
||||
export const Footer = () => {
|
||||
return (
|
||||
<footer className="relative mt-12 p-4 md:p-16 lg:px-24 bg-pink bg-opacity-75 z-20">
|
||||
|
||||
</footer>
|
||||
);
|
||||
}
|
149
app/src/components/header.tsx
Normal file
|
@ -0,0 +1,149 @@
|
|||
import Image from 'next/image';
|
||||
import OutlineButton from "./OutlineButton";
|
||||
import Link from "next/link";
|
||||
import { useEffect, useState } from 'react';
|
||||
import { Router, useRouter } from 'next/router';
|
||||
import { useSession, signIn, signOut } from 'next-auth/react';
|
||||
import { ToastAction, useToasts } from './ToastProvider';
|
||||
|
||||
const NavLink = ({ index, href, name, onClick = () => { } }) => {
|
||||
return (
|
||||
<Link href={href} passHref>
|
||||
<a className='mb-2 md:mx-4 md:mb-0 text-white hover:text-pink text-md transition-all' onClick={onClick}><span className='text-pink'>#{index}. </span>{name}</a>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
||||
const HamburgerButton = ({ open, onClick = () => { } }) => {
|
||||
return (
|
||||
<button className='relative md:hidden' onClick={onClick}>
|
||||
<div className={`w-8 h-[2px] bg-pink ${open ? 'translate-y-[10px] rotate-45' : ''} transition-all`}></div>
|
||||
<div className={`my-2 w-8 h-[2px] ${open ? 'bg-transparent' : 'bg-pink'} transition-all`}></div>
|
||||
<div className={`w-8 h-[2px] bg-pink ${open ? ' -translate-y-[10px] -rotate-45' : ''} transition-all`}></div>
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
const CloseButton = ({ open, className = '', onClick = () => { } }) => {
|
||||
return (
|
||||
<button className={`${className}`} onClick={onClick}>
|
||||
<div className={`w-2 h-[2px] bg-pink ${open ? 'translate-y-[10px] rotate-45' : ''} transition-all`}></div>
|
||||
<div className={`w-2 h-[2px] my-2 ${open ? 'bg-transparent' : 'bg-pink'} transition-all`}></div>
|
||||
<div className={`w-2 h-[2px] bg-pink ${open ? ' -translate-y-[10px] -rotate-45' : ''} transition-all`}></div>
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
const NavBar = () => {
|
||||
const [isOpen, setOpen] = useState(false);
|
||||
const [atTop, setAtTop] = useState(true);
|
||||
const {data: session} = useSession()
|
||||
const router = useRouter()
|
||||
const { toastDispatch } = useToasts()
|
||||
|
||||
useEffect(() => {
|
||||
const atTopCallback = () => {
|
||||
if (window.scrollY >= 80) setAtTop(false);
|
||||
else setAtTop(true)
|
||||
}
|
||||
|
||||
window.addEventListener('scroll', atTopCallback)
|
||||
return () => window.removeEventListener('scroll', atTopCallback)
|
||||
})
|
||||
|
||||
return (
|
||||
<nav className={`relative h-ful ${atTop ? 'bg-transparent' : 'bg-navy'} flex items-center justify-between z-10 py-2 px-4 sm:px-12 lg:px-24 transition-all ease-in-out duration-500`}>
|
||||
<div className='flex relative z-20'>
|
||||
<HamburgerButton open={isOpen} onClick={() => setOpen(!isOpen)} />
|
||||
<Link href="/" passHref>
|
||||
<a className="relative ml-4 w-12 md:w-24 aspect-[5/3] opacity-90 hover:opacity-100 transition-all ease-in-out">
|
||||
<Image src="/images/logo.png" alt="Logo" layout="fill" />
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
<div className={`block w-full md:w-fit h-screen md:h-full z-10 absolute md:relative top-0 ${isOpen ? 'left-0' : 'left-[-200%] md:left-0'} px-4 sm:px-12 md:px-0 flex flex-col md:flex-row items-start md:items-center justify-center bg-navy bg-opacity-90 md:bg-transparent transition-all`}>
|
||||
|
||||
{
|
||||
session ?
|
||||
<OutlineButton className='mt-4 md:ml-4 md:mt-0' name="Log Out" onClick={signOut} />
|
||||
:
|
||||
<OutlineButton className='mt-4 md:ml-4 md:mt-0' name="Log In" onClick={() => signIn("google")}/>
|
||||
}
|
||||
</div>
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
|
||||
export enum ToastType {
|
||||
SUCCESS,
|
||||
DANGER,
|
||||
DEFAULT
|
||||
}
|
||||
|
||||
export const DefaultToast = ({ title, description, type = ToastType.DEFAULT }) => {
|
||||
let color = 'text-white'
|
||||
switch (type) {
|
||||
case ToastType.SUCCESS:
|
||||
color = 'text-green-300';
|
||||
break;
|
||||
case ToastType.DANGER:
|
||||
color = 'text-pink'
|
||||
break;
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<h5 className={`${color} text-xl font-bold`}>{title}</h5>
|
||||
<p className={`${color} text-sm`}>{description}</p>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export const notify = (toastDispatch, title, description, type = ToastType.SUCCESS) => {
|
||||
toastDispatch({
|
||||
type: ToastAction.ADD, payload: {
|
||||
content: <DefaultToast title={title} description={description} type={type} />,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const Toast = ({ toast }) => {
|
||||
const { toastDispatch } = useToasts()
|
||||
const close = () => {
|
||||
toastDispatch({ type: ToastAction.REMOVE, payload: { id: toast.id } })
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
const t = setTimeout(() => close(), 1e3 * toast.duration)
|
||||
return () => clearTimeout(t)
|
||||
})
|
||||
|
||||
return (
|
||||
<div key={toast.id} className='relative m-2 p-2 w-64 bg-navy-light rounded-md'>
|
||||
<CloseButton open={true} onClick={close} className='absolute top-0 right-2' />
|
||||
{toast.content}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const Toaster = () => {
|
||||
const { toasts } = useToasts();
|
||||
|
||||
return (
|
||||
<div className='absolute top-0 right-0 z-20'>
|
||||
{toasts.map(t => <Toast key={t.id} toast={t} />)}
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
const Header = () => {
|
||||
return (
|
||||
<header className='fixed z-50 w-full h-16 sm:h-24'>
|
||||
<Toaster />
|
||||
<NavBar />
|
||||
</header>
|
||||
);
|
||||
}
|
||||
|
||||
export default Header
|
38
app/src/components/layout.tsx
Normal file
|
@ -0,0 +1,38 @@
|
|||
import { FC } from "react";
|
||||
import { Footer } from "./footer";
|
||||
import Head from 'next/head';
|
||||
import Header from "./header";
|
||||
import Background from "./Background";
|
||||
|
||||
export const Layout: FC<any> = ({ dim=false, children }) => {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Vitality</title>
|
||||
<meta charSet="UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"/>
|
||||
<meta name="description" content="Vitality"/>
|
||||
<meta name="keywords" content="Vitality"/>
|
||||
<meta name="robots" content="index, follow"/>
|
||||
<meta name="web_author" content="Alvan Caleb Arulandu"/>
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
|
||||
<link rel="manifest" href="/site.webmanifest"/>
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#64a2ff"/>
|
||||
<meta name="msapplication-TileColor" content="#0a192f"/>
|
||||
<meta name="theme-color" content="#64A2FF"/>
|
||||
<meta name="background-color" content="#0a192f"/>
|
||||
</Head>
|
||||
<Header/>
|
||||
<div className='relative w-full m-0 h-screen'>
|
||||
<Background className={dim ? "opacity-25" : 'opacity-100'}/>
|
||||
<main className='relative w-full min-h-screen bg-transparent'>
|
||||
{children}
|
||||
{/* <Footer/> */}
|
||||
</main>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
33
app/src/lib/api/authorize.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
import { PrismaClient } from '@prisma/client';
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
import {db} from '@/lib/db/db'
|
||||
|
||||
export const authorize = async (req: NextApiRequest, res: NextApiResponse, admin=false) => {
|
||||
let authorization = null
|
||||
if(!authorization) authorization = req.headers.authorization
|
||||
if(!authorization && req.cookies.auth) {
|
||||
const auth = JSON.parse(req.cookies.auth)
|
||||
if(auth) authorization = `Bearer ${auth.access_token}`
|
||||
}
|
||||
req.headers.authorization = authorization
|
||||
|
||||
const profileRes = await fetch('https://ion.tjhsst.edu/api/profile', {headers: {
|
||||
'Authorization': authorization
|
||||
}})
|
||||
let profileBody = await profileRes.json()
|
||||
let authorized = Boolean(profileBody.id)
|
||||
|
||||
let user = await db.user.findFirst({
|
||||
where: {
|
||||
ionId: String(profileBody.id)
|
||||
}
|
||||
})
|
||||
|
||||
if(admin && authorized && !user.admin) authorized = false;
|
||||
|
||||
return {
|
||||
authorized,
|
||||
user,
|
||||
profileBody
|
||||
}
|
||||
}
|
10
app/src/lib/api/parsePath.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
export const parsePath = (path) => {
|
||||
let parts = (new RegExp(/^\w*:\/\/[^\/]*/)).exec(path);
|
||||
const baseUrl = parts.length == 0 ? '' : parts[0];
|
||||
parts = (new RegExp(/\/[\w|\/]*$/)).exec(path);
|
||||
const route = parts.length == 0 ? '' : parts[0]
|
||||
return {
|
||||
baseUrl,
|
||||
route
|
||||
}
|
||||
}
|
16
app/src/lib/api/setCookie.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { NextApiResponse } from 'next';
|
||||
import { serialize, CookieSerializeOptions } from 'cookie';
|
||||
|
||||
export const setCookie = (
|
||||
res: NextApiResponse,
|
||||
name: string,
|
||||
value: unknown,
|
||||
options: CookieSerializeOptions = {}
|
||||
) => {
|
||||
const stringValue = JSON.stringify(value)
|
||||
if(typeof options.maxAge === 'number'){
|
||||
options.expires = new Date(Date.now() + options.maxAge*1000)
|
||||
}
|
||||
|
||||
res.setHeader('Set-Cookie', serialize(name, stringValue, options))
|
||||
}
|
10
app/src/lib/db/db.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import { PrismaClient } from "@prisma/client";
|
||||
|
||||
declare global {
|
||||
var __globalDb: PrismaClient | undefined
|
||||
}
|
||||
|
||||
const db = global.__globalDb || new PrismaClient()
|
||||
if(process.env.NODE_ENV !== 'production') global.__globalDb = db
|
||||
|
||||
export {db};
|
11
app/src/lib/handleInputChange.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
export const handleInputChange = (e, input, setInput) => {
|
||||
const target = e.target
|
||||
const val = target.type == 'checkbox' ? target.checked : target.value
|
||||
const name = target.name
|
||||
|
||||
//@ts-ignore
|
||||
setInput({
|
||||
...input,
|
||||
[name]: val
|
||||
})
|
||||
}
|
13
app/src/lib/hooks/useResize.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { useEffect } from 'react';
|
||||
|
||||
const useResize = (callback: () => void) => {
|
||||
useEffect(() => {
|
||||
window.addEventListener('resize', callback)
|
||||
callback()
|
||||
return () => {
|
||||
window.removeEventListener('resize', callback)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
export default useResize
|
14
app/src/lib/timer.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
export class Timer {
|
||||
t: Date
|
||||
|
||||
constructor(){
|
||||
this.t = new Date()
|
||||
}
|
||||
|
||||
time(){
|
||||
const tmp = new Date();
|
||||
const diff = (tmp.getTime()-this.t.getTime())/1000
|
||||
this.t = tmp;
|
||||
return diff
|
||||
}
|
||||
}
|
38
app/src/pages/404.tsx
Normal file
|
@ -0,0 +1,38 @@
|
|||
import { Layout } from '@/components/layout';
|
||||
import OutlineButton from '@/components/OutlineButton';
|
||||
import { useSession } from 'next-auth/react';
|
||||
import { useEffect, useState } from 'react';
|
||||
import Error from 'next/error'
|
||||
import { useRouter } from 'next/router';
|
||||
|
||||
const Custom404 = () => {
|
||||
const { data:session } = useSession()
|
||||
const router = useRouter()
|
||||
const [path, setPath] = useState(router.asPath)
|
||||
useEffect(() => {
|
||||
if (typeof window !== 'undefined') {
|
||||
setPath(window.location.href.match(/^https?:\/{2}[\w:\.]*/)[0] + '/dashboard')
|
||||
}
|
||||
}, [path])
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<section className='h-screen flex flex-col justify-center items-center'>
|
||||
{/* <div> */}
|
||||
<p className=' text-white text-xl md:text-3xl text-center mx-4'>Hmm... this page doesn't exist.</p>
|
||||
{session ? null :
|
||||
<div className='mt-4 flex items-center'>
|
||||
<p className='text-white text-lg md:text-xl font-light text-center'>Maybe try logging in...?</p>
|
||||
<a className='' href={`/api/auth/ion?path=${path}`}>
|
||||
<OutlineButton className='mt-4 md:ml-4 md:mt-0' name="Log In" />
|
||||
</a>
|
||||
</div>
|
||||
}
|
||||
{/* </div> */}
|
||||
|
||||
</section>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
|
||||
export default Custom404
|
16
app/src/pages/_app.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import '../styles/globals.css'
|
||||
import type { AppProps } from 'next/app'
|
||||
import { createContext } from 'react';
|
||||
import { SessionProvider } from 'next-auth/react'
|
||||
import { ToastProvider } from '@/components/ToastProvider';
|
||||
|
||||
function MyApp({ Component, pageProps: {session, ...pageProps} }: AppProps) {
|
||||
return (
|
||||
<SessionProvider session={session}>
|
||||
<ToastProvider>
|
||||
<Component {...pageProps} />
|
||||
</ToastProvider>
|
||||
</SessionProvider>
|
||||
);
|
||||
}
|
||||
export default MyApp
|
40
app/src/pages/api/auth/[...nextauth].ts
Normal file
|
@ -0,0 +1,40 @@
|
|||
import NextAuth from "next-auth"
|
||||
import GoogleProvider from "next-auth/providers/google"
|
||||
export const authOptions = {
|
||||
// Configure one or more authentication providers
|
||||
providers: [
|
||||
GoogleProvider({
|
||||
clientId: process.env.GOOGLE_ID,
|
||||
clientSecret: process.env.GOOGLE_SECRET,
|
||||
}),
|
||||
// ...add more providers here
|
||||
],
|
||||
callbacks: {
|
||||
async signIn({ user, account, profile, email, credentials }) {
|
||||
return true
|
||||
},
|
||||
async redirect({ url, baseUrl }) {
|
||||
return baseUrl
|
||||
},
|
||||
async session({ session, user, token }) {
|
||||
const data = await (await fetch(process.env.NEXT_PUBLIC_API_URL+'/operator/login', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify({
|
||||
token: token,
|
||||
session: session,
|
||||
user: user
|
||||
})
|
||||
})).json()
|
||||
session.token = token
|
||||
|
||||
return session
|
||||
},
|
||||
async jwt({ token, user, account, profile, isNewUser }) {
|
||||
return token
|
||||
}
|
||||
}
|
||||
}
|
||||
export default NextAuth(authOptions)
|
11
app/src/pages/api/auth/authorize.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { authorize } from '@/lib/api/authorize';
|
||||
import { setCookie } from '@/lib/api/setCookie';
|
||||
import { db } from '@/lib/db/db';
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
|
||||
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
||||
const {authorized, user} = await authorize(req, res)
|
||||
res.status(200).json({user})
|
||||
}
|
||||
|
||||
export default handler;
|
68
app/src/pages/api/debug/index.ts
Normal file
|
@ -0,0 +1,68 @@
|
|||
import { authorize } from '@/lib/api/authorize';
|
||||
import { db } from '@/lib/db/db';
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
|
||||
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
||||
try {
|
||||
const { authorized, user } = await authorize(req, res, false)
|
||||
if (!authorized) return res.status(401).send(null)
|
||||
const hm = await db.application.findMany({ where: {
|
||||
selection: {
|
||||
name: "HMMT"
|
||||
}
|
||||
},
|
||||
select: {
|
||||
author: {
|
||||
select: {
|
||||
ionUsername: true
|
||||
}
|
||||
},
|
||||
index: true
|
||||
}})
|
||||
|
||||
const hmp = await db.application.findMany({ where: {
|
||||
selection: {
|
||||
name: "HMMT Proof"
|
||||
}
|
||||
},
|
||||
select: {
|
||||
author: {
|
||||
select: {
|
||||
ionUsername: true
|
||||
}
|
||||
},
|
||||
index: true,
|
||||
|
||||
}})
|
||||
|
||||
let o = {}
|
||||
for(let s of hm) {
|
||||
let k = s.author.ionUsername
|
||||
if(o[k] == undefined || o[k] == null) o[k] = {name: k, hm: 0, hmp: 0}
|
||||
o[k]["hm"] = s.index
|
||||
}
|
||||
for(let s of hmp) {
|
||||
let k = s.author.ionUsername
|
||||
if(o[k] == undefined || o[k] == null) o[k] = {name: k, hm: 0, hmp: 0}
|
||||
o[k]["hmp"] = s.index
|
||||
}
|
||||
|
||||
// let r = l.map(m => [m.author.ionUsername, m.index])
|
||||
o = Object.entries(o).map(m => m[1])
|
||||
let s1 = o.map(m => m.name).join('\n')
|
||||
let s2 = o.map(m => m.hm).join('\n')
|
||||
let s3 = o.map(m => m.hmp).join('\n')
|
||||
|
||||
if (req.method == 'GET') {
|
||||
return res.status(200).send([s1, s2, s3].join('\n\n\n'))
|
||||
}
|
||||
} catch (e) {
|
||||
return res.status(400).json({
|
||||
message: e.message
|
||||
})
|
||||
}
|
||||
|
||||
return res.status(400).send(null)
|
||||
}
|
||||
|
||||
export default handler;
|
68
app/src/pages/api/debug/index.txt
Normal file
|
@ -0,0 +1,68 @@
|
|||
import { authorize } from '@/lib/api/authorize';
|
||||
import { db } from '@/lib/db/db';
|
||||
import { NextApiRequest, NextApiResponse } from 'next';
|
||||
|
||||
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
||||
try {
|
||||
const { authorized, user } = await authorize(req, res, false)
|
||||
if (!authorized) return res.status(401).send(null)
|
||||
const hm = await db.application.findMany({ where: {
|
||||
selection: {
|
||||
name: "HMMT"
|
||||
}
|
||||
},
|
||||
select: {
|
||||
author: {
|
||||
select: {
|
||||
ionUsername: true
|
||||
}
|
||||
},
|
||||
index: true
|
||||
}})
|
||||
|
||||
const hmp = await db.application.findMany({ where: {
|
||||
selection: {
|
||||
name: "HMMT Proof"
|
||||
}
|
||||
},
|
||||
select: {
|
||||
author: {
|
||||
select: {
|
||||
ionUsername: true
|
||||
}
|
||||
},
|
||||
index: true,
|
||||
|
||||
}})
|
||||
|
||||
let o = {}
|
||||
for(let s of hm) {
|
||||
let k = s.author.ionUsername
|
||||
if(o[k] == undefined || o[k] == null) o[k] = {name: k, hm: 0, hmp: 0}
|
||||
o[k]["hm"] = s.index
|
||||
}
|
||||
for(let s of hmp) {
|
||||
let k = s.author.ionUsername
|
||||
if(o[k] == undefined || o[k] == null) o[k] = {name: k, hm: 0, hmp: 0}
|
||||
o[k]["hmp"] = s.index
|
||||
}
|
||||
|
||||
// let r = l.map(m => [m.author.ionUsername, m.index])
|
||||
o = Object.entries(o).map(m => m[1])
|
||||
let s1 = o.map(m => m.name).join('\n')
|
||||
let s2 = o.map(m => m.hm).join('\n')
|
||||
let s3 = o.map(m => m.hmp).join('\n')
|
||||
|
||||
if (req.method == 'GET') {
|
||||
return res.status(200).send([s1, s2, s3].join('\n\n\n'))
|
||||
}
|
||||
} catch (e) {
|
||||
return res.status(400).json({
|
||||
message: e.message
|
||||
})
|
||||
}
|
||||
|
||||
return res.status(400).send(null)
|
||||
}
|
||||
|
||||
export default handler;
|
13
app/src/pages/api/hello.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
||||
import type { NextApiRequest, NextApiResponse } from 'next'
|
||||
|
||||
type Data = {
|
||||
name: string
|
||||
}
|
||||
|
||||
export default function handler(
|
||||
req: NextApiRequest,
|
||||
res: NextApiResponse<Data>
|
||||
) {
|
||||
res.status(200).json({ name: 'John Doe' })
|
||||
}
|
62
app/src/pages/index.tsx
Normal file
|
@ -0,0 +1,62 @@
|
|||
import type { NextPage } from "next";
|
||||
import { Layout } from "@/components/layout";
|
||||
import Image from "next/image";
|
||||
import { useState, useEffect, useLayoutEffect, useRef } from "react";
|
||||
import Header, { notify, ToastType } from "@/components/header";
|
||||
import { Footer } from "@/components/footer";
|
||||
import Background from "@/components/Background";
|
||||
import React from "react";
|
||||
import { handleInputChange } from "@/lib/handleInputChange";
|
||||
import { InputField } from "@/components/InputField";
|
||||
import OutlineButton from "@/components/OutlineButton";
|
||||
import { useToasts } from "@/components/ToastProvider";
|
||||
import { useSession } from 'next-auth/react'
|
||||
|
||||
const Home: NextPage<any> = ({ officers }) => {
|
||||
const { toastDispatch } = useToasts();
|
||||
const [input, setInput] = useState({
|
||||
phone: '',
|
||||
})
|
||||
const { data: session } = useSession()
|
||||
const submit = async () => {
|
||||
const operator = await fetch(process.env.NEXT_PUBLIC_API_URL + '/operator/update', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `Bearer ${session.token.sub}`
|
||||
},
|
||||
body: JSON.stringify({
|
||||
phone: input.phone
|
||||
})
|
||||
})
|
||||
|
||||
notify(toastDispatch, "", "Updated Phone: " + input.phone, ToastType.SUCCESS)
|
||||
}
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<div className="py-16 sm:py-24">
|
||||
<div className='w-full mt-4 flex justify-start flex-wrap'>
|
||||
<h1 className="text-white text-4xl font-bold">Vitality</h1>
|
||||
{
|
||||
session ?
|
||||
<div>
|
||||
<div className='w-72 mr-4'>
|
||||
<InputField name="Phone Number" id="phone" value={input.phone} onChange={(e) => handleInputChange(e, input, setInput)} className="w-96" />
|
||||
</div>
|
||||
<div className='mt-4 flex items-center justify-center'>
|
||||
<OutlineButton name="Register" onClick={submit} />
|
||||
</div>
|
||||
</div>
|
||||
: null
|
||||
}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
export default Home;
|
35
app/src/pages/url/[...slug].tsx
Normal file
|
@ -0,0 +1,35 @@
|
|||
import { Layout } from "@/components/layout";
|
||||
import { NextPage } from "next";
|
||||
import { useRouter } from "next/router";
|
||||
|
||||
export const getServerSideProps = async (ctx) => {
|
||||
const res = await fetch(process.env.PREFIXER_API_URL)
|
||||
const data = await res.json()
|
||||
const route = ctx.query.slug.join('/')
|
||||
const row = data.values.filter(row => row[0] == route)[0]
|
||||
|
||||
if(row){
|
||||
return {
|
||||
redirect: {
|
||||
destination: row[1],
|
||||
permanent: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return { props: {}}
|
||||
}
|
||||
|
||||
const Post: NextPage<any> = () => {
|
||||
const router = useRouter()
|
||||
|
||||
return (
|
||||
<Layout>
|
||||
<div className="h-screen flex justify-center items-center">
|
||||
<h1 className="text-white font-bold text-2xl xl:text-4xl">Oops! Looks like this doesn't exist. Time to yell at an officer <s>or maybe yourself</s>!</h1>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
|
||||
export default Post;
|
77
app/src/styles/globals.css
Normal file
|
@ -0,0 +1,77 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
/* font */
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
src: url('/fonts/Inter/Inter-VariableFont_slnt,wght.ttf') format('truetype-variations');
|
||||
font-weight: 1 999;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
||||
}
|
||||
|
||||
/* general */
|
||||
body {
|
||||
background-color: #0A1D2F;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* scroll bar */
|
||||
::-webkit-scrollbar {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #A8BDD1;
|
||||
border-radius: 20px;
|
||||
border: 6px solid transparent;
|
||||
background-clip: content-box;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #889CB0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* animation */
|
||||
@keyframes scale {
|
||||
0% {
|
||||
transform: scale(0.2);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1.0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
40
app/tailwind.config.js
Normal file
|
@ -0,0 +1,40 @@
|
|||
const defaultTheme = require('tailwindcss/defaultTheme')
|
||||
const colors = require('tailwindcss/colors')
|
||||
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{ts,tsx}"
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
navy: {
|
||||
lightest: '#233C54',
|
||||
light: '#112940',
|
||||
DEFAULT: '#0A1D2F'
|
||||
},
|
||||
slate: {
|
||||
lightest: '#CCE1F6',
|
||||
light: '#A8BDD1',
|
||||
DEFAULT: '#889CB0'
|
||||
},
|
||||
white: {
|
||||
DEFAULT: '#E6F3FF',
|
||||
},
|
||||
blue: {
|
||||
DEFAULT: '#66B3FF'
|
||||
},
|
||||
pink: {
|
||||
DEFAULT: '#FF6687'
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {
|
||||
borderColor: ['group-focus', 'group-focus-within'],
|
||||
textColor: ['group-focus-within', 'placeholder-shown'],
|
||||
}
|
||||
},
|
||||
plugins: [],
|
||||
}
|
35
app/tsconfig.json
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"],
|
||||
"~/*": ["./*"]
|
||||
},
|
||||
"target": "es5",
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": false, // TODO: change to true. i'm too lazy to fix all the type issues rn.
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true
|
||||
},
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|