@@ -1,33 +0,0 @@
|
|||||||
# Update the arg in docker-compose.yml or devcontainer.json to switch arg versions
|
|
||||||
ARG NODE_VERSION=18
|
|
||||||
|
|
||||||
# main image
|
|
||||||
FROM mcr.microsoft.com/devcontainers/javascript-node:${NODE_VERSION}
|
|
||||||
|
|
||||||
# Update the arg in docker-compose.yml or devcontainer.json to switch arg versions
|
|
||||||
ARG GO_VERSION=latest
|
|
||||||
ARG HUGO_VERSION=latest
|
|
||||||
|
|
||||||
# Download necessary tools
|
|
||||||
RUN apt-get update && apt-get install -y \
|
|
||||||
ca-certificates openssl git curl && \
|
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
|
||||||
# set architecture
|
|
||||||
case $(uname -m) in \
|
|
||||||
aarch64) \
|
|
||||||
export ARCH=arm64 ;; \
|
|
||||||
*) \
|
|
||||||
export ARCH=amd64 ;; \
|
|
||||||
esac && \
|
|
||||||
# install Hugo
|
|
||||||
wget -O hugo_extended_${HUGO_VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-${ARCH}.tar.gz && \
|
|
||||||
tar xf hugo_extended_${HUGO_VERSION}.tar.gz && \
|
|
||||||
mv hugo /usr/bin/hugo && \
|
|
||||||
rm hugo_extended_${HUGO_VERSION}.tar.gz && \
|
|
||||||
# install Go
|
|
||||||
wget -O go${GO_VERSION}.linux-${ARCH}.tar.gz https://dl.google.com/go/go${GO_VERSION}.linux-${ARCH}.tar.gz && \
|
|
||||||
tar -C /usr/local -xzf go${GO_VERSION}.linux-${ARCH}.tar.gz && \
|
|
||||||
rm go${GO_VERSION}.linux-${ARCH}.tar.gz
|
|
||||||
|
|
||||||
# Export Go path
|
|
||||||
ENV PATH=$PATH:/usr/local/go/bin
|
|
@@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Hugo",
|
|
||||||
"build": {
|
|
||||||
"dockerfile": "Dockerfile",
|
|
||||||
"args": {
|
|
||||||
"NODE_VERSION": "20",
|
|
||||||
"GO_VERSION": "1.21.4",
|
|
||||||
"HUGO_VERSION": "0.120.4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"customizations": {
|
|
||||||
"vscode": {
|
|
||||||
"settings": {},
|
|
||||||
"extensions": [
|
|
||||||
"bradlc.vscode-tailwindcss",
|
|
||||||
"budparr.language-hugo-vscode",
|
|
||||||
"tamasfe.even-better-toml"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"remoteUser": "node",
|
|
||||||
"postCreateCommand": "npm install && npm run dev:example",
|
|
||||||
"forwardPorts": [1313]
|
|
||||||
}
|
|
@@ -1,14 +0,0 @@
|
|||||||
; https://editorconfig.org
|
|
||||||
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
charset = utf-8
|
|
||||||
end_of_line = lf
|
|
||||||
indent_size = 2
|
|
||||||
indent_style = space
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
36
.github/workflows/cd.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
name: cd
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cd:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest]
|
||||||
|
node: [14]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Setup node env
|
||||||
|
uses: actions/setup-node@v2.1.2
|
||||||
|
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: yarn
|
||||||
|
|
||||||
|
- name: Generate
|
||||||
|
run: yarn generate
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: ./dist
|
||||||
|
|
||||||
|
|
88
.github/workflows/deployment.yml
vendored
@@ -1,77 +1,41 @@
|
|||||||
# Sample workflow for building and deploying a Hugo site to GitHub Pages
|
# https://github.com/actions/deploy-pages#usage
|
||||||
name: Deploy Snigdha OS
|
name: Deploy to GitHub Pages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Runs on pushes targeting the default branch
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: ["master"]
|
branches:
|
||||||
pull_request:
|
- master
|
||||||
branches: ["master"]
|
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
# Environment variables available to all jobs and steps in this workflow
|
|
||||||
env:
|
|
||||||
HUGO_ENV: production
|
|
||||||
HUGO_VERSION: "0.121.2"
|
|
||||||
GO_VERSION: "1.20.5"
|
|
||||||
NODE_VERSION: "20.0.0"
|
|
||||||
TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }}
|
|
||||||
TINA_TOKEN: ${{ vars.TINA_TOKEN }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Build job
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Node.js
|
- run: corepack enable
|
||||||
uses: actions/setup-node@v4
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: "16"
|
||||||
|
# Pick your own package manager and build script
|
||||||
- name: Install Hugo
|
- run: npm install
|
||||||
run: |
|
- run: npx nuxt build --preset github_pages
|
||||||
curl -LO "https://github.com/gohugoio/hugo/releases/download/v${{ env.HUGO_VERSION }}/hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz"
|
|
||||||
tar -xvf hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
|
||||||
sudo mv hugo /usr/local/bin/
|
|
||||||
rm hugo_extended_${{ env.HUGO_VERSION }}_Linux-64bit.tar.gz
|
|
||||||
hugo version
|
|
||||||
|
|
||||||
- name: Install Go
|
|
||||||
run: |
|
|
||||||
curl -LO "https://dl.google.com/go/go${{ env.GO_VERSION }}.linux-amd64.tar.gz"
|
|
||||||
sudo tar -C /usr/local -xzf go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
|
||||||
echo "export PATH=$PATH:/usr/local/go/bin" >> $GITHUB_ENV
|
|
||||||
rm go${{ env.GO_VERSION }}.linux-amd64.tar.gz
|
|
||||||
go version
|
|
||||||
|
|
||||||
- name: Setup Project
|
|
||||||
run: npm run project-setup
|
|
||||||
|
|
||||||
- name: Install npm dependencies
|
|
||||||
run: npm install
|
|
||||||
|
|
||||||
- name: Publish to GitHub Pages
|
|
||||||
run: npm run build
|
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v3
|
uses: actions/upload-pages-artifact@v1
|
||||||
with:
|
with:
|
||||||
path: ./public
|
path: ./.output/public
|
||||||
|
|
||||||
# Deployment job
|
# Deployment job
|
||||||
deploy:
|
deploy:
|
||||||
environment:
|
# Add a dependency to the build job
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
needs: build
|
||||||
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||||||
|
permissions:
|
||||||
|
pages: write # to deploy to Pages
|
||||||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||||||
|
# Deploy to the github_pages environment
|
||||||
|
environment:
|
||||||
|
name: github_pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
# Specify runner + deployment step
|
||||||
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
id: deployment
|
id: deployment
|
||||||
uses: actions/deploy-pages@v4
|
uses: actions/deploy-pages@v1
|
||||||
|
23
.gitignore
vendored
Executable file → Normal file
@@ -1,17 +1,8 @@
|
|||||||
Thumbs.db
|
|
||||||
.DS_Store
|
|
||||||
.dist
|
|
||||||
.tmp
|
|
||||||
.lock
|
|
||||||
.sass-cache
|
|
||||||
npm-debug.log
|
|
||||||
node_modules
|
node_modules
|
||||||
builds
|
*.log*
|
||||||
package-lock.json
|
.nuxt
|
||||||
public
|
.nitro
|
||||||
resources
|
.cache
|
||||||
.hugo_build.lock
|
.output
|
||||||
jsconfig.json
|
.env
|
||||||
hugo_stats.json
|
dist
|
||||||
go.sum
|
|
||||||
yarn.lock
|
|
||||||
|
@@ -1,38 +0,0 @@
|
|||||||
stages:
|
|
||||||
- build
|
|
||||||
|
|
||||||
variables:
|
|
||||||
HUGO_ENV: production
|
|
||||||
HUGO_VERSION: "0.121.2"
|
|
||||||
GO_VERSION: "1.20.5"
|
|
||||||
NODE_VERSION: "18.16.1"
|
|
||||||
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- node_modules/
|
|
||||||
|
|
||||||
default:
|
|
||||||
image: node:${NODE_VERSION}
|
|
||||||
before_script:
|
|
||||||
- echo "USING NODE ${NODE_VERSION}"
|
|
||||||
- apt-get update && apt-get install -y curl
|
|
||||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
|
|
||||||
- tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
|
||||||
- mv hugo /usr/local/bin/
|
|
||||||
- rm hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
|
|
||||||
- echo "HUGO ${HUGO_VERSION} INSTALLED"
|
|
||||||
- curl -LO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz"
|
|
||||||
- tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
|
|
||||||
- export PATH=$PATH:/usr/local/go/bin
|
|
||||||
- rm go${GO_VERSION}.linux-amd64.tar.gz
|
|
||||||
- echo "GO ${GO_VERSION} INSTALLED"
|
|
||||||
- npm install
|
|
||||||
|
|
||||||
pages:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- npm run project-setup
|
|
||||||
- npm run build
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
59
.jshintrc
@@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"maxerr": 50,
|
|
||||||
"bitwise": true,
|
|
||||||
"camelcase": false,
|
|
||||||
"curly": true,
|
|
||||||
"eqeqeq": true,
|
|
||||||
"forin": true,
|
|
||||||
"freeze": true,
|
|
||||||
"immed": true,
|
|
||||||
"indent": 2,
|
|
||||||
"latedef": true,
|
|
||||||
"newcap": false,
|
|
||||||
"noarg": true,
|
|
||||||
"noempty": true,
|
|
||||||
"nonbsp": true,
|
|
||||||
"nonew": true,
|
|
||||||
"plusplus": false,
|
|
||||||
"undef": true,
|
|
||||||
"unused": false,
|
|
||||||
"strict": true,
|
|
||||||
"maxparams": false,
|
|
||||||
"maxdepth": 4,
|
|
||||||
"maxstatements": false,
|
|
||||||
"maxcomplexity": false,
|
|
||||||
"maxlen": 400,
|
|
||||||
"browser": true,
|
|
||||||
"devel": true,
|
|
||||||
"asi": false,
|
|
||||||
"boss": false,
|
|
||||||
"debug": false,
|
|
||||||
"eqnull": false,
|
|
||||||
"es3": false,
|
|
||||||
"es5": false,
|
|
||||||
"esversion": 12,
|
|
||||||
"moz": false,
|
|
||||||
"evil": true,
|
|
||||||
"expr": true,
|
|
||||||
"funcscope": false,
|
|
||||||
"globalstrict": false,
|
|
||||||
"iterator": false,
|
|
||||||
"lastsemic": false,
|
|
||||||
"laxbreak": false,
|
|
||||||
"laxcomma": false,
|
|
||||||
"loopfunc": true,
|
|
||||||
"multistr": true,
|
|
||||||
"noyield": false,
|
|
||||||
"notypeof": false,
|
|
||||||
"proto": false,
|
|
||||||
"scripturl": false,
|
|
||||||
"shadow": false,
|
|
||||||
"sub": false,
|
|
||||||
"supernew": false,
|
|
||||||
"validthis": false,
|
|
||||||
"globals": {
|
|
||||||
"jQuery": false,
|
|
||||||
"google": false,
|
|
||||||
"$": false
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"MD033": false,
|
|
||||||
"MD034": false,
|
|
||||||
"MD013": false
|
|
||||||
}
|
|
13
.prettierrc
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"plugins": ["prettier-plugin-go-template"],
|
|
||||||
"overrides": [
|
|
||||||
{
|
|
||||||
"files": ["*.html"],
|
|
||||||
"options": {
|
|
||||||
"parser": "go-template",
|
|
||||||
"goTemplateBracketSpacing": true,
|
|
||||||
"bracketSameLine": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
7
.vscode/extensions.json
vendored
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"recommendations": [
|
|
||||||
"bradlc.vscode-tailwindcss",
|
|
||||||
"budparr.language-hugo-vscode",
|
|
||||||
"tamasfe.even-better-toml"
|
|
||||||
]
|
|
||||||
}
|
|
4
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"css.customData": [".vscode/tailwind.json"],
|
||||||
|
"scss.lint.unknownAtRules": "ignore"
|
||||||
|
}
|
55
.vscode/tailwind.json
vendored
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
{
|
||||||
|
"version": 1.1,
|
||||||
|
"atDirectives": [
|
||||||
|
{
|
||||||
|
"name": "@tailwind",
|
||||||
|
"description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.",
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"name": "Tailwind Documentation",
|
||||||
|
"url": "https://tailwindcss.com/docs/functions-and-directives#tailwind"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "@apply",
|
||||||
|
"description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS. This is useful when you find a common utility pattern in your HTML that you’d like to extract to a new component.",
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"name": "Tailwind Documentation",
|
||||||
|
"url": "https://tailwindcss.com/docs/functions-and-directives#apply"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "@responsive",
|
||||||
|
"description": "You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n",
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"name": "Tailwind Documentation",
|
||||||
|
"url": "https://tailwindcss.com/docs/functions-and-directives#responsive"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "@screen",
|
||||||
|
"description": "The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n",
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"name": "Tailwind Documentation",
|
||||||
|
"url": "https://tailwindcss.com/docs/functions-and-directives#screen"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "@variants",
|
||||||
|
"description": "Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n",
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"name": "Tailwind Documentation",
|
||||||
|
"url": "https://tailwindcss.com/docs/functions-and-directives#variants"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
25
.vscode/tasks.json
vendored
@@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"label": "Development",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "yarn dev:example",
|
|
||||||
"isBackground": true,
|
|
||||||
"group": {
|
|
||||||
"kind": "test",
|
|
||||||
"isDefault": true
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Build",
|
|
||||||
"type": "shell",
|
|
||||||
"command": "yarn build:example",
|
|
||||||
"group": {
|
|
||||||
"kind": "build",
|
|
||||||
"isDefault": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
4
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023 - Present, Zeon Studio
|
Copyright (c) 2022 Álex Rueda
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
228
README.md
@@ -1,206 +1,80 @@
|
|||||||
Version: 2024-04-25
|
<h1 align="center">
|
||||||
|
SNIGDHA OS
|
||||||
|
</h1>
|
||||||
|
<p align="center">
|
||||||
|
This website has been developed with the open source version of <a href="https://www.figma.com/community/file/1100794861710979147" target="_blank"> Portfolio for Developers Concept V.2</a>, designed by <a href="https://www.behance.net/darelova" target="_blank">@darelova</a> and developed by <a href="https://github.com/alexdeploy">@alexdeploy</a>. Built with <a href="https://nuxt.com/" target="_blank">Nuxt.js 3.0</a>.
|
||||||
|
</p>
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
# Privacy Policy
|
[](https://app.netlify.com/sites/developer-portfolio-v2/deploys)
|
||||||
|
|
||||||
## 1. Privacy Policy
|
</div>
|
||||||
|
|
||||||
The Snigdha OS Team (hereinafter referred to as "Snigdha OS" or "we") operates the website and its services available on the Internet at https://snigdhaos.org/ including the respective sub-directories (hereinafter referred to as the "website").
|
<p align="center">
|
||||||
|
<a href="" target="_blank">
|
||||||
|
<img src="./public/images/snigdhaos-view.png" />
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
With this privacy policy, we would like to inform you which data will be processed in which form when you visit the website or use its services. Where the GDPR applies, we hereby also comply with our duty to inform you in accordance with Art. 13 and Art. 14 of the EU-General Data Protection Regulation (GDPR).
|
## 🛠 Installation
|
||||||
|
|
||||||
## 2. Controller
|
1. Clone the project to your local machine.
|
||||||
|
|
||||||
The controller for the data processing on our website is the Snigdha OS Team. And the lead maintainer [Eshan Roy](https://eshanized.github.io)
|
```sh
|
||||||
|
git clone https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
|
||||||
|
```
|
||||||
|
|
||||||
Email: privacy@snigdhaos.org
|
2. Navigate to the project directory
|
||||||
|
|
||||||
## 3. Purposes, legal bases and storage period
|
```sh
|
||||||
|
cd Snigdha-OS.github.io
|
||||||
|
```
|
||||||
|
|
||||||
### 3.1. General use of the platform
|
3. Install the required dependencies
|
||||||
|
|
||||||
The web server of our hosting service provider automatically records the accesses to our website. Therefore, when you visit our website, you transmit certain technical data to us, namely:
|
```sh
|
||||||
|
yarn install
|
||||||
|
```
|
||||||
|
|
||||||
- IP address,
|
4. Start the development server
|
||||||
- accessed content,
|
|
||||||
- information about the transmission,
|
|
||||||
- date of access,
|
|
||||||
- the amount of data transmitted,
|
|
||||||
- the referrer,
|
|
||||||
- the web browser/user agent.
|
|
||||||
|
|
||||||
Where the GDPR applies, the processing of the IP address when establishing a connection is based on Art. 6 par. 1 lit. b) GDPR to provide the website you requested.
|
```sh
|
||||||
|
yarn dev
|
||||||
|
```
|
||||||
|
|
||||||
Our host also creates so-called log files to maintain system security, in order to guarantee the security and integrity of our IT systems. These purposes also represent the legitimate interest for which the processing is carried out (Art. 6 par. 1 lit. f) GDPR). We store the log files for a period of 91 days and delete them afterwards.
|
5. The development server should now be running on <a href="http://localhost:3000/">http://localhost:3000/</a>
|
||||||
|
|
||||||
### 3.2. Registering for a user account
|
|
||||||
|
|
||||||
Some of our services require that you sign up and create a user account(e.g Snigdha OS Cloud). For this purpose we will collect and process your user name, email address and a password. We will send you a validation email to the email address you have provided. Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR.
|
## ✒️ Customization
|
||||||
|
|
||||||
When you use our services we will collect certain information from you and associate it with your account, such as:
|
The template includes some default content, but you can easily customize it to fit your needs. Here are some of the things you can change:
|
||||||
|
|
||||||
- password for the cloud service, the forums, uptime,
|
* Update the `developer.json` file on root directory, which contains all the text for the project and the portfolio "user" information, including *projects*, *about-me*, *gists* (Ids) and *contact* info.
|
||||||
- github username (for issue tracker)
|
|
||||||
- IRC nickname,
|
|
||||||
- IP address,
|
|
||||||
- language preference\*,
|
|
||||||
- timezone,
|
|
||||||
- geographic coordinates (longitude/latitude),
|
|
||||||
|
|
||||||
\* Your language preference will be asked if we need to translate our website & services. Till now, we don't need your language preferences. If user requests for translation, we will collect your language preference.
|
* Update the `nuxt.config.ts` file for meta tags of website and some additional config.
|
||||||
|
|
||||||
We generally process your personal data for as long as you have an account with us and delete it afterwards.
|
* Update the `public/pwa/manifest.json` file for PWA config.
|
||||||
|
|
||||||
## 4. Services of the websites
|
* Change the styling and design of the website to match your personal style.
|
||||||
|
|
||||||
Our websites offer you a range of services for which we process certain personal data:
|
## 🚀 Building and Running for Production
|
||||||
|
|
||||||
### 4.1. [Forum](https://forum.snigdhaos.org/)
|
1. Generate a full static production build
|
||||||
|
|
||||||
You can read in our forums without giving us any personal data. However, if you wish to participate by posting entries, we will ask you to sign up for an account. In this case, we will collect your user name, email address and a captcha question. You are able to select if you wish that other users could see your email address and if other users shall be able to send you mails via the forums mail function. Furthermore, you can set location options as time zone and language preference.
|
```sh
|
||||||
|
yarn build
|
||||||
|
```
|
||||||
|
|
||||||
We process your data to provide you with the account, the forums and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings.
|
2. Preview the site as it will appear once deployed.
|
||||||
|
|
||||||
When you post comments, we display certain information about your user account next to your post such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
```sh
|
||||||
|
yarn preview
|
||||||
|
```
|
||||||
|
|
||||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent forums according to Art. 6 para. 1 lit. f) GDPR, but we anonymize the author of your entries.
|
## 🤝 Contributions
|
||||||
|
|
||||||
### 4.2. [Documentation](https://snigdhaos.org/documentation/)
|
If you find any bugs or have any suggestions, you can open an <a href="https://github.com/Snigdha-OS/Snigdha-OS.github.io/issues">issue</a>.
|
||||||
|
|
||||||
You can read in our documentation without giving us any personal data. However, if you wish to participate creating entries, you will need your github account. In this case, we will collect your user name and email address. Furthermore, you can set location options as time zone and language preference.
|
## 🧾 License
|
||||||
|
|
||||||
We process your data to provide you with the account, the documentation and the respective functions. The captcha question is required to avoid abuse by spammers using automated tools to post their content and links to many sites. We process your location options and language preferences to provide you with the according account settings. When you contribute entries, we display certain information about your user account next to your entries such as user name, registration date, and country of origin (if you add these personal details in your user account).
|
This project is licensed under the MIT License. See the <a href="https://github.com/Snigdha-OS/Snigdha-OS.github.io/blob/master/LICENSE">LICENSE</a> file for more information.
|
||||||
|
|
||||||
### 4.3. [Cloud](https://cloud.snigdhaos.org)
|
|
||||||
|
|
||||||
This Privacy Policy describes how Snigdha OS Cloud ("we", "us", or "our") collects, uses, and shares information when you use our website and services ("Services"). By using our Services, you agree to the collection and use of information in accordance with this policy.
|
|
||||||
|
|
||||||
**Information We Collect**
|
|
||||||
|
|
||||||
1. **Personal Information**: When you sign up for an account, we collect personal information such as your name, email address, and payment information. We may also collect additional information you choose to provide, such as profile pictures or contact information.
|
|
||||||
|
|
||||||
2. **Usage Information**: We collect information about how you interact with our Services, such as the files you upload, download, or share, your IP address, browser type, and operating system.
|
|
||||||
|
|
||||||
3. **Cookies and Similar Technologies**: We use cookies and similar tracking technologies to enhance your experience and collect information about your usage patterns on our website.
|
|
||||||
|
|
||||||
**How We Use Your Information**
|
|
||||||
|
|
||||||
1. **Providing and Improving Services**: We use the information we collect to provide, maintain, and improve our Services, as well as to develop new features and offerings.
|
|
||||||
|
|
||||||
2. **Communication**: We may use your email address to communicate with you about your account, updates to our Services, or promotional offers. You can opt out of promotional emails at any time.
|
|
||||||
|
|
||||||
3. **Security**: We use your information to ensure the security of our Services and to protect against unauthorized access or use.
|
|
||||||
|
|
||||||
4. **Analytics**: We may use aggregate, non-personally identifiable information for analytics purposes to better understand how users interact with our website and Services.
|
|
||||||
|
|
||||||
**Information Sharing and Disclosure**
|
|
||||||
|
|
||||||
1. **Third-Party Service Providers**: We may share your information with third-party service providers who assist us in providing and improving our Services. These providers are contractually obligated to use your information only for the purpose of providing the services we request.
|
|
||||||
|
|
||||||
2. **Legal Compliance**: We may disclose your information if required to do so by law or in response to a valid legal request, such as a court order or subpoena.
|
|
||||||
|
|
||||||
3. **Business Transfers**: In the event of a merger, acquisition, or sale of all or a portion of our assets, your information may be transferred as part of the transaction. We will notify you of any such change in ownership or control of your personal information.
|
|
||||||
|
|
||||||
**Data Retention**
|
|
||||||
|
|
||||||
We will retain your personal information for as long as necessary to fulfill the purposes outlined in this Privacy Policy, unless a longer retention period is required or permitted by law.
|
|
||||||
|
|
||||||
**Your Choices**
|
|
||||||
|
|
||||||
You can access, update, or delete your personal information by logging into your account settings. You can also choose to disable cookies in your browser settings, although this may affect your ability to use certain features of our website.
|
|
||||||
|
|
||||||
**Children's Privacy**
|
|
||||||
|
|
||||||
Our Services are not directed to children under the age of 13, and we do not knowingly collect personal information from children. If we become aware that we have inadvertently collected personal information from a child under the age of 13, we will take steps to delete it as soon as possible.
|
|
||||||
|
|
||||||
**Changes to this Policy**
|
|
||||||
|
|
||||||
We may update this Privacy Policy from time to time to reflect changes in our practices or legal requirements. We will notify you of any material changes by posting the new Privacy Policy on this page.
|
|
||||||
|
|
||||||
**Contact Us**
|
|
||||||
|
|
||||||
If you have any questions or concerns about this Privacy Policy or our practices, you can contact us at [privacy@snigdhaos.org](mailto:privacy@snigdhaos.org).
|
|
||||||
|
|
||||||
Where the GDPR applies, the legal basis for the processing is Art. 6 para. 1 lit. b) GDPR. In case you delete your account, we store your entries based on our legitimate interest of a consistent wiki according to Art. 6 para. 1 lit. f) GDPR.
|
|
||||||
|
|
||||||
## 5. Contact
|
|
||||||
|
|
||||||
We offer you the opportunity to contact us via email. We will then process your email address and, if applicable, your name, a subject and the content of your request to answer your enquiry due to our legitimate interests (Art. 6 para. 1 lit. f) GDPR).
|
|
||||||
|
|
||||||
We will store your enquiry as long as we have lawful bases for processing the data. Where the GDPR applies, we may store data in accordance unless legal provisions prevent deletion. Where the GDPR applies, we may store data in accordance with Art. 6 para. 1 lit. f) GDPR where it is necessary for the purpose of providing evidence or to comply with legal retention periods in accordance with Art. 6 para. 1 lit. c) GDPR. If the request is made within the framework of an existing or prospective contractual relationship with us, the storage period shall be based on the underlying contractual relationship.
|
|
||||||
|
|
||||||
## 6. Donations
|
|
||||||
|
|
||||||
You can donate to Snigdha OS as a member project of the Software in the Public Interest, Inc. (SPI) as non-profit corporation using via Click&Pledge or via SPI directly using PayPal or Credit Card payment. For further information, please see the SPI donation website at: https://www.spi-inc.org/donations/. We publish the past donors on the website https://snigdhaos.org/donate/.
|
|
||||||
|
|
||||||
This processing is based on your consent (Art. 6 Abs. 1 lit. a) GDPR) until your withdrawal or until we end this publication of past donors. You have the right to withdraw consent at any time, without affecting the lawfulness of processing based on consent before its withdrawal e.g. by sending us an email.
|
|
||||||
|
|
||||||
## 7. Storage period
|
|
||||||
|
|
||||||
Unless explicitly stated otherwise, we will process and store your personal data for as long as it is required for the respective purpose and delete it thereafter.
|
|
||||||
|
|
||||||
## 8. Categories of recipients
|
|
||||||
|
|
||||||
We use external service providers if we are unable to provide services ourselves or if it is not reasonable to do so. These external service providers are primarily providers of IT services, such as our hosting service provider **TONMOY INFRASTRUCTURE™**.
|
|
||||||
Street: Landstrasse 39,
|
|
||||||
City: Sattel,
|
|
||||||
Zip code: 6417
|
|
||||||
Country calling code: +41
|
|
||||||
Country: Switzerland.
|
|
||||||
|
|
||||||
## 9. General rights of data subjects
|
|
||||||
|
|
||||||
The GDPR guarantees you certain rights, which you can assert against us - if the legal requirements are met.
|
|
||||||
|
|
||||||
### 9.1. Art. 15 GDPR - Right of access
|
|
||||||
|
|
||||||
You have the right to obtain confirmation from us as to whether personal data relating to you are being processed and, if so, what these data are and the detailed circumstances of the processing.
|
|
||||||
|
|
||||||
### 9.2. Art. 16 GDPR - Right of rectification
|
|
||||||
|
|
||||||
You have the right to ask us to rectify incorrect personal data concerning you immediately. You also have the right to request the completion of incomplete personal data, including by means of a supplementary declaration, taking into account the purposes of the processing.
|
|
||||||
|
|
||||||
### 9.3. Art. 17 GDPR - Right to deletion
|
|
||||||
|
|
||||||
You have the right to demand that we delete any personal data relating to you immediately.
|
|
||||||
|
|
||||||
### 9.4. Art. 18 GDPR - Right to restriction of processing
|
|
||||||
|
|
||||||
You have the right to request us to restrict processing.
|
|
||||||
|
|
||||||
### 9.5. Art. 20 GDPR - Right to data portability
|
|
||||||
|
|
||||||
You have the right, in the event of processing based on consent or for the fulfilment of a contract, to receive the personal data concerning you which you have provided us with in a structured, common and machine-readable format and to transfer this data to another responsible party without hindrance from us or to have the data transferred directly to the other responsible party, insofar as this is technically feasible.
|
|
||||||
|
|
||||||
### 9.6. Art. 77 GDPR in conjunction with Section 19 BDSG - Right to lodge a complaint with a supervisory authority
|
|
||||||
|
|
||||||
You have the right to lodge a complaint with a supervisory authority at any time, in particular in the Member State in which you are resident, your place of work or place of the alleged infringement if you consider that the processing of personal data relating to you infringes data protection law.
|
|
||||||
|
|
||||||
## 10. In particular right to object and right to withdraw consent
|
|
||||||
|
|
||||||
### 10.1. Art. 21 GDPR - Right to object
|
|
||||||
|
|
||||||
You have the right to object at any time, for reasons arising from your particular situation, to the processing of personal data concerning you which is necessary on the basis of a legitimate interest on our part or in order to carry out a task in the public interest, or which is carried out in the exercise of official authority.
|
|
||||||
|
|
||||||
If you object, we will no longer process your personal data unless we can prove compelling legitimate grounds for processing that override your interests, rights and freedoms, or unless the processing serves to assert, exercise or defend legal claims.
|
|
||||||
|
|
||||||
If we process your personal data for direct marketing purposes, you have the right to object to the processing at any time. If you object to processing for direct marketing purposes, we will no longer process your personal data for these purposes.
|
|
||||||
|
|
||||||
In order to exercise your right of objection, you can, for example, send us an email to the email address mentioned above.
|
|
||||||
|
|
||||||
### 10.2. Withdrawal of consent
|
|
||||||
|
|
||||||
If you have given us your informed consent, you have the right to withdraw your consent at any time. In this case, all data processing that we have carried out until your withdrawal remains lawful.
|
|
||||||
|
|
||||||
## 11. Obligation to provide data
|
|
||||||
|
|
||||||
You have no contractual or legal obligation to provide us with personal data. However, we then might not be able to offer you the requested services.
|
|
||||||
|
|
||||||
## 12. The existence of automated decision-making (including profiling)
|
|
||||||
|
|
||||||
We will not make you subject to any automated decision-making, including profiling in accordance with Art. 22 para. 1 and 4 GDPR, which has legal effects on you or affects you.
|
|
||||||
|
|
||||||
## 13. Internet-specific data processing and cookies
|
|
||||||
|
|
||||||
On some sub-directories of our website, cookies are set in your browser. Cookies are small text files that are stored on your hard drive and are assigned to the browser you are using. The provider who sets the cookie can collect certain information through the cookie. The only purpose of the cookies set on our website is to enable you to use the website and its functions safely. The legal basis for the processing is our legitimate interests in the aforementioned purpose according to Art. 6 para. 1 lit. f) GDPR. The cookies are necessary for the services you have requested.
|
|
||||||
|
|
||||||
> Forked from Arch Linux Privacy Policy
|
|
29
amplify.yml
@@ -1,29 +0,0 @@
|
|||||||
version: 1
|
|
||||||
frontend:
|
|
||||||
phases:
|
|
||||||
preBuild:
|
|
||||||
commands:
|
|
||||||
- yum install -y curl
|
|
||||||
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.121.2/hugo_extended_0.121.2_Linux-64bit.tar.gz"
|
|
||||||
- tar -xvf hugo_extended_0.121.2_Linux-64bit.tar.gz
|
|
||||||
- mv hugo /usr/local/bin/
|
|
||||||
- rm hugo_extended_0.121.2_Linux-64bit.tar.gz
|
|
||||||
- echo "HUGO 0.121.2 INSTALLED"
|
|
||||||
- curl -LO "https://dl.google.com/go/go1.20.5.linux-amd64.tar.gz"
|
|
||||||
- tar -C /usr/local -xzf go1.20.5.linux-amd64.tar.gz
|
|
||||||
- export PATH=$PATH:/usr/local/go/bin
|
|
||||||
- rm go1.20.5.linux-amd64.tar.gz
|
|
||||||
- echo "GO 1.20.5 INSTALLED"
|
|
||||||
- npm install
|
|
||||||
build:
|
|
||||||
commands:
|
|
||||||
- npm run project-setup
|
|
||||||
- npm run build
|
|
||||||
artifacts:
|
|
||||||
# IMPORTANT - Please verify your build output directory
|
|
||||||
baseDirectory: /public
|
|
||||||
files:
|
|
||||||
- "**/*"
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- node_modules/**/*
|
|
16
app.config.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
* Nuxt 3 Config File
|
||||||
|
* https://nuxt.com/docs/getting-started/configuration#app-configuration
|
||||||
|
*/
|
||||||
|
export default defineAppConfig({
|
||||||
|
title: 'Hello Nuxt',
|
||||||
|
blog:{
|
||||||
|
enabled: true,
|
||||||
|
},
|
||||||
|
theme: {
|
||||||
|
dark: true,
|
||||||
|
colors: {
|
||||||
|
primary: '#ff0000'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
46
app.vue
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<template>
|
||||||
|
<MobileMenu/>
|
||||||
|
<AppHeader/>
|
||||||
|
<NuxtPage data-aos="fade-in"/>
|
||||||
|
<AppFooter/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AOS from 'aos';
|
||||||
|
import 'aos/dist/aos.css'; // You can also use <link> for styles
|
||||||
|
export default {
|
||||||
|
/**
|
||||||
|
* * Watch for route changes
|
||||||
|
* This event is triggered when the route changes.
|
||||||
|
* @param {Object} to - Route object
|
||||||
|
* @param {Object} from - Route object
|
||||||
|
*/
|
||||||
|
watch: {
|
||||||
|
$route(to, from) {
|
||||||
|
console.log('De', from.fullPath, 'a', to.fullPath);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
AOS.init({
|
||||||
|
// Global settings:
|
||||||
|
disable: false, // accepts following values: 'phone', 'tablet', 'mobile', boolean, expression or function
|
||||||
|
startEvent: 'DOMContentLoaded', // name of the event dispatched on the document, that AOS should initialize on
|
||||||
|
initClassName: 'aos-init', // class applied after initialization
|
||||||
|
animatedClassName: 'aos-animate', // class applied on animation
|
||||||
|
useClassNames: false, // if true, will add content of `data-aos` as classes on scroll
|
||||||
|
disableMutationObserver: false, // disables automatic mutations' detections (advanced)
|
||||||
|
debounceDelay: 50, // the delay on debounce used while resizing window (advanced)
|
||||||
|
throttleDelay: 99, // the delay on throttle used while scrolling the page (advanced)
|
||||||
|
|
||||||
|
// Settings that can be overridden on per-element basis, by `data-aos-*` attributes:
|
||||||
|
offset: 120, // offset (in px) from the original trigger point
|
||||||
|
delay: 0, // values from 0 to 3000, with step 50ms
|
||||||
|
duration: 400, // values from 0 to 3000, with step 50ms
|
||||||
|
easing: 'ease', // default easing for AOS animations
|
||||||
|
once: false, // whether animation should happen only once - while scrolling down
|
||||||
|
mirror: false, // whether elements should animate out while scrolling past them
|
||||||
|
anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
20
assets/README.md
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# `assets/` Directory
|
||||||
|
|
||||||
|
Nuxt uses **Vite** or **webpack** to build and bundle your application. The main function of these build tools is to process JavaScript files, but they can be extended through plugins (for Vite) or loaders (for webpack) to process other kind of assets, like stylesheets, fonts or SVG. This step transforms the original file mainly for performance or caching purposes (such as stylesheets minification or browser cache invalidation).
|
||||||
|
|
||||||
|
By convention, Nuxt uses the `assets/` directory to store these files but there is no auto-scan functionality for this directory, and you can use any other name for it.
|
||||||
|
|
||||||
|
In your application's code, you can reference a file located in the `assets/` directory by using the `~/assets/ path`.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
For example, referencing an image file that will be processed if a build tool is configured to handle this file extension:
|
||||||
|
|
||||||
|
`app.vue`
|
||||||
|
```html
|
||||||
|
<template>
|
||||||
|
<img src="~/assets/img/snigdhaos.png" alt="Download Snigdha OS" />
|
||||||
|
</template>
|
||||||
|
```
|
||||||
|
|
||||||
|
> Nuxt won't serve files in the `assets/` directory at a static URL like `/assets/my-file.png`. If you need a static URL, use the `public/` directory.
|
BIN
assets/fonts/fira-code/FiraCode-Bold.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-Light.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-Medium.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-Regular.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-Retina.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-SemiBold.ttf
Normal file
BIN
assets/fonts/fira-code/FiraCode-Variable.ttf
Normal file
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 2.2 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z"/></svg>
|
|
Before Width: | Height: | Size: 594 B |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 320 KiB |
Before Width: | Height: | Size: 152 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 697 KiB |
Before Width: | Height: | Size: 254 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 61 KiB |
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
|
||||||
<title>Snigdha OS Web</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #000000 }
|
|
||||||
.s1 { fill: #c1e7e3 }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#c1e7e3" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
|
||||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
|
||||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
|
||||||
</g>
|
|
||||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
|
||||||
<title>Snigdha OS Web</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #000000 }
|
|
||||||
.s1 { fill: #754ffe }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
|
||||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
|
||||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
|
||||||
</g>
|
|
||||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 30 KiB |
@@ -1,43 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 837 679" width="837" height="679">
|
|
||||||
<title>58981-ai</title>
|
|
||||||
<style>
|
|
||||||
.s0 { mix-blend-mode: multiply;fill: #7daaf6 }
|
|
||||||
.s1 { mix-blend-mode: multiply;fill: #637ecf }
|
|
||||||
.s2 { mix-blend-mode: multiply;fill: #fbf470 }
|
|
||||||
.s3 { mix-blend-mode: multiply;fill: #80c573 }
|
|
||||||
.s4 { mix-blend-mode: multiply;fill: #caeaf8 }
|
|
||||||
.s5 { mix-blend-mode: multiply;fill: #b95ce1 }
|
|
||||||
.s6 { mix-blend-mode: multiply;fill: #795ce1 }
|
|
||||||
.s7 { mix-blend-mode: multiply;fill: #e79c69 }
|
|
||||||
.s8 { mix-blend-mode: multiply;fill: #e8ff71 }
|
|
||||||
.s9 { mix-blend-mode: multiply;fill: #64689f }
|
|
||||||
.s10 { mix-blend-mode: multiply;fill: #d88ed9 }
|
|
||||||
.s11 { mix-blend-mode: multiply;fill: #a1d956 }
|
|
||||||
.s12 { mix-blend-mode: multiply;fill: #f0c76c }
|
|
||||||
.s13 { mix-blend-mode: multiply;fill: #efc5c5 }
|
|
||||||
.s14 { mix-blend-mode: multiply;fill: #df6666 }
|
|
||||||
.s15 { mix-blend-mode: multiply;fill: #d88e8e }
|
|
||||||
</style>
|
|
||||||
<g id="_Artboards_">
|
|
||||||
</g>
|
|
||||||
<g id="Objects">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m448.1 501.1c3.7-45.4-30.1-85.2-75.5-88.8-45.4-3.7-85.2 30.2-88.9 75.6-3.4 42.1 25.5 79.4 66 87.5l-11.6 36 41.8-35.6c36.3-6.2 65.2-36.3 68.2-74.7z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m642.1 428.9c6.2-77.5-51.5-145.4-129-151.6-77.5-6.3-145.3 51.5-151.6 128.9-5.8 72 43.6 135.6 112.7 149.3l-19.9 61.5 71.4-60.7c61.8-10.6 111.1-62 116.4-127.4z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m358.7 506.3c4.2-52.2-34.7-98-86.9-102.2-52.3-4.2-98 34.7-102.2 87-3.9 48.4 29.3 91.3 75.9 100.6l-13.3 41.4 48.1-40.9c41.6-7.2 74.8-41.8 78.4-85.9z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m180.6 199.4c7.4-91.4 87.5-159.5 178.9-152.2 91.4 7.4 159.6 87.5 152.2 178.9-6.8 84.9-76.4 149.7-159.5 152.6l11.5 75.4-71.7-84.3c-70-24-117.6-93.2-111.4-170.4z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m446.7 117.4c3-42.7 40-75 82.8-72 42.7 3 75 40 72 82.8-2.8 39.7-34.9 70.3-73.7 72.1l5.7 35.2-33.9-39c-32.8-10.9-55.4-43-52.9-79.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m505.9 514.2c2.6-36.6 34.2-64.1 70.8-61.6 36.5 2.5 64.1 34.2 61.6 70.8-2.4 33.9-29.9 60.1-63.1 61.6l5 30-29-33.3c-28.1-9.3-47.4-36.7-45.3-67.5z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m703.2 257.5c5.4-58.8-37.8-110.8-96.5-116.2-58.8-5.4-110.8 37.9-116.2 96.6-5 54.5 31.9 103.2 84.3 114.3l-15.6 46.4 54.7-45.5c47-7.5 84.8-46 89.3-95.6z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m234.6 509.7c0.1-27.6-22.2-50-49.7-50.1-27.6-0.1-50 22.2-50.1 49.8-0.1 25.6 19.1 46.7 44 49.7l-5.4 22.2 23.6-23.4c21.6-5.5 37.6-25 37.6-48.2z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m49.1 303.2c5.3-66.5 63.5-116 130-110.6 66.4 5.4 115.9 63.6 110.5 130-4.9 61.7-55.5 108.8-115.9 110.9l8.4 54.7-52.1-61.2c-50.9-17.5-85.5-67.7-80.9-123.8z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m374 553.2c0-23.3 19-42.1 42.3-42.1 23.3 0.1 42.1 19 42 42.3 0 21.7-16.4 39.4-37.4 41.8l4.4 18.9-19.8-20c-18.2-4.7-31.6-21.2-31.5-40.9z"/>
|
|
||||||
<path id="<Path>" class="s10" d="m800.6 375.1c5.1-63.1-42-118.4-105.1-123.5-63.2-5.1-118.5 41.9-123.6 105.1-4.7 58.6 35.5 110.4 91.9 121.6l-16.2 50.1 58.1-49.5c50.4-8.6 90.6-50.5 94.9-103.8z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m219.8 424.4c0.2-47.3 38.6-85.4 85.8-85.3 47.2 0.2 85.3 38.6 85.2 85.8-0.1 43.8-33.2 79.8-75.8 84.6l8.9 38.2-40.1-40.4c-36.9-9.5-64.1-43.1-64-82.9z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m215.9 413.5c4-49.9-33.1-93.6-83-97.6-49.8-4-93.5 33.1-97.5 83-3.8 46.3 28 87.2 72.5 96.1l-12.8 39.5 45.9-39.1c39.8-6.8 71.5-39.8 74.9-81.9z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m605.3 510.8c2.2-26.6 25.4-46.4 52-44.2 26.6 2.1 46.4 25.4 44.2 52-2 24.6-22.2 43.4-46.3 44.3l3.3 21.9-20.8-24.5c-20.4-7-34.2-27.1-32.4-49.5z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m82.1 518c0.1-21.1 17.2-38.2 38.3-38.1 21.1 0 38.2 17.2 38.1 38.3 0 19.6-14.8 35.7-33.8 37.8l3.9 17.1-17.9-18c-16.5-4.3-28.6-19.3-28.6-37.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m789.6 470.6c2.7-33.8-22.5-63.4-56.3-66.2-33.9-2.7-63.5 22.5-66.2 56.3-2.6 31.5 19 59.2 49.2 65.2l-8.7 26.9 31.2-26.6c27-4.6 48.5-27 50.8-55.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,594 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
|
||||||
<title>4884420-ai</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #282740 }
|
|
||||||
.s1 { fill: #53538c }
|
|
||||||
.s2 { opacity: .4;fill: #282740 }
|
|
||||||
.s3 { fill: #48cad9 }
|
|
||||||
.s4 { fill: #1eb3ba }
|
|
||||||
.s5 { fill: #ffffff }
|
|
||||||
.s6 { fill: #76e0e5 }
|
|
||||||
.s7 { opacity: .1;fill: #282740 }
|
|
||||||
.s8 { fill: #f4f0e1 }
|
|
||||||
.s9 { fill: #b7e5e5 }
|
|
||||||
.s10 { fill: #ed6332 }
|
|
||||||
.s11 { opacity: .2;fill: #48cad9 }
|
|
||||||
.s12 { opacity: .2;fill: #282740 }
|
|
||||||
.s13 { fill: #db3e0e }
|
|
||||||
.s14 { fill: #d8b560 }
|
|
||||||
</style>
|
|
||||||
<g id="OBJECTS">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m586.2 839.6c0 1.2-1 2.3-2.3 2.3h-201.8c-1.2 0-2.3-1.1-2.3-2.3v-8.1c0-1.3 1.1-2.3 2.3-2.3h201.8c1.3 0 2.3 1 2.3 2.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s1" d="m519.8 769.4h-34.7-4.2-34.6c0 33.3-50.2 61.5-50.2 61.5h84.8 4.2 84.8c0 0-50.1-28.2-50.1-61.5z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m519.8 769.4h-34.7-4.2-14.8c10.4 19.3 28.7 43.2 59.9 61.5h43.9c0 0-50.1-28.2-50.1-61.5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m795 765.4c0 2.2-1.8 4-4 4h-616c-2.2 0-4-1.8-4-4v-373c0-2.2 1.8-4 4-4h616c2.2 0 4 1.8 4 4z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m771.4 744.4c0 2.2-1.8 4-4 4h-568.8c-2.2 0-4-1.8-4-4v-331c0-2.2 1.8-4 4-4h568.8c2.2 0 4 1.8 4 4z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m771.4 436.9v-23.5c0-2.2-1.8-4-4-4h-568.8c-2.2 0-4 1.8-4 4v23.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m242 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m218 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m266 423.1c0 3.2-2.6 5.8-5.8 5.8-3.1 0-5.7-2.6-5.7-5.8 0-3.2 2.6-5.7 5.7-5.7 3.2 0 5.8 2.5 5.8 5.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m727.9 556.9h-489.7v-98.7h489.7z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m444.5 638.6h-206.3v-65.7h206.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m444.5 653.2h-206.3v9.7h206.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m444.5 673.2h-206.3v9.7h206.3z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m444.5 693.2h-206.3v9.7h206.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m444.5 713.2h-206.3v9.7h206.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s6" d="m565 682.9h-102v-110h102z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m564.9 693.2h-103v9.7h103z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m564.9 713.2h-103v9.7h103z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s6" d="m727.9 638.6h-141.7v-65.7h141.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m725.4 653.2h-139.2v9.7h139.2z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m725.4 673.2h-139.2v9.7h139.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m725.4 693.2h-139.2v9.7h139.2z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m725.4 713.2h-139.2v9.7h139.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s7" d="m795 765.4v-373c0-2.2-1.8-4-4-4h-54.1c-16.6 296.9-317.2 381-317.2 381h371.3c2.2 0 4-1.8 4-4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m223.2 646.1c-2.2 0-4.6 1.7-5.2 3.8l-7.7 24.3c-0.6 2.1-2.9 3.8-5.1 3.8h-83.4c-2.2 0-3.7 1.7-3.3 3.9l24.6 136c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m280.9 777.5h-134v-190h108.3l25.7 26z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m255.2 587.5l25.7 26h-25.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 641h-109.3v-3.1h109.3z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 653.6h-109.3v-3.2h109.3z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 666.2h-109.3v-3.2h109.3z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 678.7h-109.3v-3.1h109.3z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 691.3h-109.3v-3.1h109.3z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m268.5 703.9h-109.3v-3.2h109.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Compound Path>" class="s10" d="m177.7 616.6c0-6.2 4.7-10.6 11.1-10.6 3.8 0 6.8 1.4 8.8 3.8l-3.7 3.3c-1.3-1.5-2.8-2.3-4.8-2.3-3.3 0-5.6 2.3-5.6 5.8 0 3.4 2.3 5.8 5.6 5.8 2 0 3.5-0.9 4.8-2.4l3.7 3.3c-2 2.4-5 3.8-8.8 3.8-6.4 0-11.1-4.4-11.1-10.5z"/>
|
|
||||||
<path id="<Compound Path>" class="s10" d="m221.5 626.7v-10.8l-5.2 8.8h-2.6l-5.2-8.5v10.5h-5.3v-20.3h4.7l7.2 11.7 6.9-11.7h4.7l0.1 20.3z"/>
|
|
||||||
<path id="<Compound Path>" class="s10" d="m232.5 624.9l1.9-4.3c1.8 1.2 4.4 2 6.7 2 2.4 0 3.3-0.6 3.3-1.6 0-3.2-11.5-0.9-11.5-8.4 0-3.6 2.9-6.6 9-6.6 2.6 0 5.3 0.6 7.3 1.8l-1.7 4.2c-2-1-3.9-1.5-5.7-1.5-2.4 0-3.2 0.8-3.2 1.8 0 3.1 11.5 0.8 11.5 8.3 0 3.5-3 6.5-9 6.5-3.4 0-6.7-0.9-8.6-2.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s1" d="m223.2 666.1c-2.2 0-4.6 1.7-5.2 3.8l-7.7 24.3c-0.6 2.1-2.9 3.8-5.1 3.8h-83.4c-2.2 0-3.7 1.7-3.3 3.9l24.6 136c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s2" d="m284.4 837.9l24.8-167.9c0.4-2.2-1.2-3.9-3.4-3.9h-8c-13.4 127.6-109.9 159.2-155.6 167l0.9 4.8c0.4 2.2 2.5 4 4.7 4h132c2.2 0 4.3-1.8 4.6-4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m870.9 837.4c0 2.2-1.7 3.9-3.8 3.9h-240.5c-2.1 0-3.9-1.7-3.9-3.9v-174.7c0-2.1 1.8-3.8 3.9-3.8h240.5c2.1 0 3.8 1.7 3.8 3.8z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m861.2 817.1c0 2-1.6 3.6-3.5 3.6h-221.7c-1.9 0-3.5-1.6-3.5-3.6v-147.5c0-2 1.6-3.5 3.5-3.5h221.7c1.9 0 3.5 1.5 3.5 3.5z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s1" d="m861.2 830.2c0 0.8-0.6 1.4-1.4 1.4h-226c-0.7 0-1.3-0.6-1.3-1.4 0-0.7 0.6-1.3 1.3-1.3h226c0.8 0 1.4 0.6 1.4 1.3z"/>
|
|
||||||
<path id="<Path>" class="s10" d="m784.3 830.2c0 0.8-0.6 1.4-1.3 1.4h-149.2c-0.7 0-1.3-0.6-1.3-1.4 0-0.7 0.6-1.3 1.3-1.3h149.2c0.7 0 1.3 0.6 1.3 1.3z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s10" d="m787.8 830.4c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-2.9 2.4-5.3 5.3-5.3 2.9 0 5.3 2.4 5.3 5.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s11" d="m807.7 745.5c0 33.6-27.3 60.9-60.9 60.9-33.6 0-60.8-27.3-60.8-60.9 0-33.6 27.2-60.8 60.8-60.8 33.6 0 60.9 27.2 60.9 60.8z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m794.4 745.5c0 26.3-21.3 47.6-47.6 47.6-26.2 0-47.5-21.3-47.5-47.6 0-26.2 21.3-47.5 47.5-47.5 26.3 0 47.6 21.3 47.6 47.5z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m737.4 725.6v39.9l26-19.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s12" d="m867.1 841.3c2.1 0 3.8-1.7 3.8-3.9v-174.7c0-2.1-1.7-3.8-3.8-3.8h-22.5c0 121-62.4 166.6-96 182.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m690.9 442.6c0 1.1-0.9 2-2 2h-241.9c-1.1 0-2-0.9-2-2v-159.2c0-1.1 0.9-2 2-2h241.9c1.1 0 2 0.9 2 2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s1" d="m681.9 433.3c0 0.9-0.8 1.8-1.8 1.8h-224.4c-0.9 0-1.8-0.9-1.8-1.8v-140.5c0-1 0.9-1.8 1.8-1.8h224.4c1 0 1.8 0.8 1.8 1.8z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m632.3 340.2c-5.2-6-13.7-6-18.9 0l-64.3 74.3c-5.2 6.1-13.7 6.1-18.9 0l-29.2-33.8c-5.2-6-13.7-6-18.9 0l-28.2 32.6v21.9c0 0.9 0.9 1.7 1.8 1.7h224.4c1 0 1.8-0.8 1.8-1.7v-37.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s3" d="m557.8 334c0 13.1-10.6 23.7-23.6 23.7-13.1 0-23.7-10.6-23.7-23.7 0-13 10.6-23.6 23.7-23.6 13 0 23.6 10.6 23.6 23.6z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s7" d="m688.9 444.6c1.1 0 2-0.9 2-2v-159.2c0-1.1-0.9-2-2-2h-28.7c-5.1 95.6-44 141.4-77.2 163.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m480.4 598.6c0 1.1-0.9 2.1-2.1 2.1h-162.9c-1.2 0-2.1-1-2.1-2.1v-116.3c0-1.2 0.9-2.1 2.1-2.1h162.9c1.2 0 2.1 0.9 2.1 2.1z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m480.4 494.8v-12.5c0-1.2-0.9-2.1-2.1-2.1h-162.9c-1.2 0-2.1 0.9-2.1 2.1v12.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m338.5 487.5c0 1.7-1.4 3.1-3.1 3.1-1.6 0-3-1.4-3-3.1 0-1.7 1.4-3.1 3-3.1 1.7 0 3.1 1.4 3.1 3.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m325.7 487.5c0 1.7-1.3 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3.1 3.1-3.1 1.7 0 3 1.4 3 3.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m351.3 487.5c0 1.7-1.4 3.1-3.1 3.1-1.7 0-3-1.4-3-3.1 0-1.7 1.3-3.1 3-3.1 1.7 0 3.1 1.4 3.1 3.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m468.5 528.4h-107.9v-4.4h107.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m357.2 514.4h-32v-4.4h32z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m342.2 542.4h-17v-4.4h17z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m357.2 556.4h-32v-4.4h32z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m350.1 570.4h-24.9v-4.4h24.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m437.6 514.4h-62.1v-4.4h62.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m350.1 528.4h-24.9v-4.4h24.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m422.7 542.4h-73.4v-4.4h73.4z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m437.6 556.4h-62.1v-4.4h62.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m468.5 570.4h-107.9v-4.4h107.9z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m342.2 584.4h-17v-4.4h17z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m422.7 584.4h-73.4v-4.4h73.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s2" d="m480.4 482.3c0-1.2-0.9-2.1-2.1-2.1h-40c-0.9 74.5-52 108.7-75.4 120.5h115.4c1.2 0 2.1-1 2.1-2.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m742.2 496.3c0 1.2-1 2.1-2.2 2.1h-142.9c-1.1 0-2.1-0.9-2.1-2.1v-76.2c0-1.2 1-2.2 2.1-2.2h142.9c1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m742.2 432.6v-12.5c0-1.2-1-2.2-2.2-2.2h-142.9c-1.1 0-2.1 1-2.1 2.2v12.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m620.2 425.2c0 1.7-1.3 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.7 0 3 1.3 3 3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m607.5 425.2c0 1.7-1.4 3.1-3.1 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.7 0 3.1 1.3 3.1 3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m633 425.2c0 1.7-1.4 3.1-3 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3 3.1-3 1.6 0 3 1.3 3 3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m672 448.4q-5 15.2-10 30.4c-0.7 2 2.5 2.9 3.1 0.9q5.1-15.2 10.1-30.5c0.7-2-2.5-2.8-3.2-0.8z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m659.9 469.7q-4.1-2.8-8.3-5.7 4.2-2.8 8.3-5.7c1.8-1.2 0.1-4-1.6-2.8q-5.2 3.5-10.4 7.1c-1.1 0.7-1.1 2.1 0 2.8q5.2 3.6 10.4 7.2c1.7 1.2 3.4-1.7 1.6-2.9z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m677.3 469.7q4.1-2.8 8.3-5.7-4.2-2.8-8.3-5.7c-1.8-1.2-0.1-4 1.6-2.8q5.2 3.5 10.4 7.1c1 0.7 1 2.1 0 2.8q-5.2 3.6-10.4 7.2c-1.7 1.2-3.4-1.7-1.6-2.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s2" d="m740 498.4c1.2 0 2.2-0.9 2.2-2.1v-76.2c0-1.2-1-2.2-2.2-2.2h-32c-2.4 47.3-29.4 69.9-51.6 80.5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Compound Path>" fill-rule="evenodd" class="s5" d="m848.4 642.8l-6.9 16.9-34.1-14 2.2-5.4-34.5-14.2c-13 27.3-45.3 40-73.6 28.4-29.3-12.1-43.4-45.7-31.3-75.1 12-29.3 45.7-43.3 75-31.3 28.3 11.6 42.3 43.3 32.4 71.9l34.5 14.2 2.2-5.4zm-106.5-86.5c-24.8-10.2-53.3 1.7-63.5 26.5-10.2 24.8 1.7 53.3 26.5 63.5 24.8 10.2 53.3-1.7 63.5-26.5 10.2-24.8-1.7-53.3-26.5-63.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m707.7 566.3c-5.4 2.3-8 8.5-5.7 14 2.3 5.4 8.5 8 13.9 5.7 5.5-2.3 8-8.5 5.8-14-2.3-5.4-8.5-8-14-5.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Compound Path>" fill-rule="evenodd" class="s10" d="m901.2 401.3v7.4c0 1.1-0.9 2-2 2h-7.9c-1 6.7-3.6 12.8-7.5 18l5.7 5.6c0.7 0.8 0.7 2.1 0 2.8l-5.3 5.3c-0.8 0.8-2.1 0.8-2.9 0l-5.6-5.6c-5.1 3.8-11.3 6.5-17.9 7.4v8c0 1.1-0.9 2-2 2h-7.5c-1.1 0-2-0.9-2-2v-8c-6.7-0.9-12.8-3.6-17.9-7.4l-5.7 5.6c-0.7 0.8-2 0.8-2.8 0l-5.3-5.3c-0.7-0.7-0.7-2 0-2.8l5.7-5.6c-3.9-5.2-6.5-11.3-7.5-18h-7.9c-1.1 0-2-0.9-2-2v-7.4c0-1.1 0.9-2 2-2h7.9c1-6.7 3.6-12.8 7.5-18l-5.7-5.6c-0.7-0.8-0.7-2 0-2.8l5.3-5.3c0.8-0.8 2.1-0.8 2.8 0l5.7 5.6c5.1-3.8 11.3-6.4 17.9-7.4v-8c0-1.1 0.9-2 2-2h7.5c1.1 0 2 0.9 2 2v8c6.6 1 12.8 3.6 17.9 7.4l5.6-5.6c0.8-0.8 2.1-0.8 2.9 0l5.3 5.3c0.7 0.8 0.7 2 0 2.8l-5.7 5.6c3.9 5.2 6.5 11.3 7.5 18h7.9c1.1 0 2 0.9 2 2zm-20.2 3.7c0-16-12.9-29-29-29-16 0-29 13-29 29 0 16 13 29 29 29 16.1 0 29-13 29-29z"/>
|
|
||||||
<path id="<Compound Path>" fill-rule="evenodd" class="s10" d="m821 323.8v6c0 0.8-0.8 1.5-1.6 1.5h-6.3c-0.8 5.3-2.9 10.2-5.9 14.3l4.4 4.4c0.6 0.6 0.6 1.7 0 2.3l-4.2 4.2c-0.6 0.6-1.6 0.6-2.2 0l-4.5-4.5c-4.1 3.1-8.9 5.1-14.2 5.9v6.3c0 0.9-0.7 1.6-1.6 1.6h-5.9c-0.9 0-1.6-0.7-1.6-1.6v-6.3c-5.3-0.8-10.1-2.8-14.2-5.9l-4.5 4.5c-0.6 0.6-1.6 0.6-2.2 0l-4.2-4.2c-0.6-0.6-0.6-1.7 0-2.3l4.5-4.4c-3.1-4.1-5.2-9-5.9-14.3h-6.3c-0.9 0-1.6-0.7-1.6-1.5v-6c0-0.8 0.7-1.5 1.6-1.5h6.3c0.7-5.3 2.8-10.2 5.9-14.3l-4.5-4.4c-0.6-0.6-0.6-1.7 0-2.3l4.2-4.2c0.6-0.6 1.6-0.6 2.2 0l4.5 4.5c4.1-3 8.9-5.1 14.2-5.9v-6.3c0-0.9 0.7-1.6 1.6-1.6h5.9c0.9 0 1.6 0.7 1.6 1.6v6.3c5.3 0.8 10.1 2.9 14.2 5.9l4.5-4.5c0.6-0.6 1.6-0.6 2.2 0l4.2 4.2c0.6 0.6 0.6 1.7 0 2.3l-4.4 4.4c3 4.1 5.1 9 5.9 14.3h6.3c0.8 0 1.6 0.7 1.6 1.5zm-23.3 3c0-8.7-7-15.8-15.7-15.8-8.7 0-15.8 7.1-15.8 15.8 0 8.7 7.1 15.8 15.8 15.8 8.7 0 15.7-7.1 15.7-15.8z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s10" d="m370.6 836.8c0.1 4.7-3.7 8.6-8.4 8.6h-4.2c-4.8 0-8.5-3.9-8.4-8.6l3-130.5c0.1-4.7 3.5-8.6 7.5-8.6 4 0 7.3 3.9 7.4 8.6z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m358 845.4h4.2c1.5 0 2.9-0.4 4.1-1.1l-1.4-61.9c-0.1-3-2.3-5.5-4.8-5.5-2.6 0-4.8 2.5-4.8 5.5l-1.5 61.9c1.3 0.7 2.7 1.1 4.2 1.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s10" d="m377.7 651.3v24.1l-17.6 17.4-17.7-17.4v-24.1c-12.3 6.4-20.7 19.3-20.7 34.1 0 21.2 17.2 38.3 38.4 38.3 21.1 0 38.3-17.1 38.3-38.3 0-14.8-8.4-27.7-20.7-34.1z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s13" d="m360.1 716.3c-14.2 0-26.8-6.3-35.4-16.1 5.8 13.8 19.4 23.5 35.4 23.5 15.9 0 29.6-9.7 35.4-23.5-8.6 9.8-21.3 16.1-35.4 16.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s10" d="m397.5 383.7c0 3-2.5 5.4-5.5 5.4h-154.7c-3.1 0-5.5-2.4-5.5-5.4v-81.4c0-3 2.4-5.4 5.5-5.4h154.7c3 0 5.5 2.4 5.5 5.4z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m392 296.9h-154.7q-1.2 0-2.2 0.4l74.5 54c2.7 2 7.3 2 10.1 0l74.5-54q-1-0.4-2.2-0.4z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s7" d="m392 296.9h-27.9c-6.9 57.3-51.8 81.8-85.8 92.2h113.7c3 0 5.5-2.4 5.5-5.4v-81.4c0-3-2.5-5.4-5.5-5.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m318.6 221.3c-14.9 30.6-48.1 37.4-48.1 37.4 6.3 54.6 48.1 65.9 48.1 65.9 0 0 41.7-11.3 48.1-65.9 0 0-33.3-6.8-48.1-37.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m318.6 245.6c-9.1 18.7-29.4 22.8-29.4 22.8 3.9 33.3 29.4 40.2 29.4 40.2 0 0 25.4-6.9 29.3-40.2 0 0-20.3-4.1-29.3-22.8z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m331.4 268.5q-6.7 8.1-13.3 16.3-4.2-3.2-8.4-6.4c-2.7-2-5.3 2.5-2.7 4.5q5.2 3.8 10.3 7.7c0.8 0.7 2.4 0.4 3.1-0.4q7.3-9 14.6-18.1c2.1-2.6-1.5-6.2-3.6-3.6z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s7" d="m291 306.4c13.2 14.3 27.6 18.2 27.6 18.2 0 0 41.7-11.3 48.1-65.9 0 0-10.3-2.1-22-9.3-9.4 33.9-37.1 50.1-53.7 57z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m186.9 468.3c-3 0-5.9 0.4-8.5 1.3-4.2-16.6-19.1-28.8-37-28.8-21 0-38 17-38 38.1q0 2.3 0.2 4.5-2-0.4-4.1-0.4c-11.3 0-20.5 9.2-20.5 20.5 0 11.4 9.2 20.6 20.5 20.6h87.4c15.4 0 27.9-12.5 27.9-27.9 0-15.4-12.5-27.9-27.9-27.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m201.1 472.2c1.8 3.7 2.8 7.7 2.8 12.1 0 15.4-12.5 27.9-27.9 27.9h-87.4c-3 0-5.9-0.7-8.5-1.9 2.8 8 10.5 13.8 19.4 13.8h87.4c15.4 0 27.9-12.5 27.9-27.9 0-10.2-5.5-19.1-13.7-24z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m168.4 488.3l-8.7-11.1-8.7 11.1h5.3v8.7h6.8v-8.7z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m121.4 487.6l8.7 11.1 8.6-11.1h-5.2v-8.7h-6.8v8.7z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m693.6 255.6c-2.8 0-5.5 0.4-8 1.2-3.9-15.6-18-27.1-34.8-27.1-19.9 0-36 16-36 35.9q0 2.1 0.3 4.2-1.9-0.4-3.9-0.4c-10.7 0-19.4 8.7-19.4 19.4 0 10.7 8.7 19.4 19.4 19.4h82.4c14.5 0 26.3-11.8 26.3-26.3 0-14.5-11.8-26.3-26.3-26.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m707 259.3c1.7 3.4 2.6 7.3 2.6 11.4 0 14.5-11.8 26.3-26.3 26.3h-82.4c-2.8 0-5.5-0.7-8-1.8 2.7 7.6 9.9 13 18.3 13h82.4c14.5 0 26.3-11.8 26.3-26.3 0-9.6-5.2-18-12.9-22.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s3" d="m664.1 270.4l-10.6-13.6-10.6 13.6h6.4v10.6h8.3v-10.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m879.2 534.2q-3 0-5.6 0.8c-2.7-10.8-12.6-18.9-24.3-18.9-13.8 0-25 11.2-25 25q0 1.5 0.2 3-1.3-0.3-2.7-0.3c-7.4 0-13.5 6.1-13.5 13.5 0 7.5 6.1 13.5 13.5 13.5h57.4c10.1 0 18.3-8.2 18.3-18.3 0-10.1-8.2-18.3-18.3-18.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m888.5 536.7c1.2 2.4 1.8 5.1 1.8 8 0 10.1-8.2 18.3-18.3 18.3h-57.3c-2 0-3.9-0.5-5.6-1.2 1.8 5.2 6.8 9 12.7 9h57.4c10.1 0 18.3-8.2 18.3-18.3 0-6.7-3.6-12.6-9-15.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s3" d="m842.8 542.4l7.8 10 7.9-10h-4.8v-7.8h-6.1v7.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m165 329.5h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m165 353.6h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m181.8 336.7h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m157.8 336.7h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m169.1 332l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m152.1 349l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m175.9 349l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m158.9 332l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m214 262.6h-1.2v-7.1h1.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m214 277.4h-1.2v-7.2h1.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m224.3 267h-7.1v-1.2h7.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m209.6 267h-7.2v-1.2h7.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m216.5 264.2l-0.8-0.9 5-5 0.8 0.8z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m206.1 274.6l-0.9-0.9 5-5 0.9 0.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m220.7 274.6l-5-5 0.8-0.9 5 5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m210.2 264.2l-5-5.1 0.9-0.8 5 5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m904.2 478.6h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m904.2 502.6h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m921 485.8h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m897 485.8h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m908.3 481.1l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m891.3 498.1l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m915.1 498.1l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m898.1 481.1l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m867.3 606.8h-1.2v-7.1h1.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m867.3 621.5h-1.2v-7.1h1.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m877.7 611.2h-7.1v-1.2h7.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m862.9 611.2h-7.1v-1.2h7.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m869.9 608.3l-0.9-0.8 5-5.1 0.9 0.9z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m859.4 618.8l-0.8-0.9 5-5 0.9 0.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m874 618.8l-5-5.1 0.9-0.8 5 5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m863.6 608.3l-5-5 0.8-0.9 5.1 5.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m454.8 187.6h-2.7v-15.7h2.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m454.8 220.1h-2.7v-15.7h2.7z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m477.5 197.3h-15.7v-2.7h15.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m445 197.3h-15.7v-2.7h15.7z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m460.3 191l-1.9-1.9 11.1-11.1 1.9 1.9z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m437.3 214l-1.9-1.9 11.1-11.1 1.9 1.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m469.5 214l-11.1-11.1 1.9-1.9 11.1 11.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m446.5 191l-11.1-11.1 1.9-1.9 11.1 11.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m868 306.5h-1.3v-7.1h1.3z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m868 321.3h-1.3v-7.1h1.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m878.3 311h-7.1v-1.2h7.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m863.5 311h-7.1v-1.2h7.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m870.5 308.1l-0.9-0.9 5.1-5 0.8 0.9z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m860 318.5l-0.8-0.8 5-5.1 0.9 0.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m874.7 318.5l-5.1-5 0.9-0.9 5 5.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m864.2 308.1l-5-5 0.8-0.9 5.1 5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m758.1 225.1h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m758.1 249.1h-2v-11.6h2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m774.9 232.3h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m750.9 232.3h-11.6v-2h11.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m762.2 227.6l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m745.2 244.6l-1.4-1.4 8.2-8.2 1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m769 244.6l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m752 227.6l-8.2-8.2 1.4-1.4 8.2 8.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m95 409.4h-1.2v-7.1h1.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m95 424.2h-1.2v-7.1h1.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m105.3 413.9h-7.1v-1.3h7.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m90.6 413.9h-7.2v-1.3h7.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m97.5 411l-0.9-0.9 5.1-5 0.8 0.8z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m87.1 421.4l-0.9-0.9 5-5 0.9 0.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m101.7 421.4l-5.1-5 0.9-0.9 5 5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m91.2 411l-5-5.1 0.9-0.8 5 5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s14" d="m161.2 215.4c0 2.2-1.8 4.1-4.1 4.1-2.2 0-4-1.9-4-4.1 0-2.2 1.8-4.1 4-4.1 2.3 0 4.1 1.9 4.1 4.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m259.8 143.4c0 3-2.4 5.3-5.3 5.3-3 0-5.3-2.3-5.3-5.3 0-2.9 2.3-5.3 5.3-5.3 2.9 0 5.3 2.4 5.3 5.3z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m914.8 641c0 2.9-2.4 5.3-5.4 5.3-2.9 0-5.3-2.4-5.3-5.3 0-2.9 2.4-5.3 5.3-5.3 3 0 5.4 2.4 5.4 5.3z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m825 245.6c0 2.2-1.8 4-4 4-2.3 0-4.1-1.8-4.1-4 0-2.3 1.8-4.1 4.1-4.1 2.2 0 4 1.8 4 4.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m514.6 247.9c0 2.3-1.9 4.1-4.1 4.1-2.2 0-4.1-1.8-4.1-4.1 0-2.2 1.9-4 4.1-4 2.2 0 4.1 1.8 4.1 4z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m643.5 158.9c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-3 2.4-5.4 5.3-5.4 2.9 0 5.3 2.4 5.3 5.4z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m104.9 599.7c0 2.9-2.4 5.3-5.3 5.3-2.9 0-5.3-2.4-5.3-5.3 0-3 2.4-5.3 5.3-5.3 2.9 0 5.3 2.3 5.3 5.3z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m357.9 201c0 2.2-1.8 4-4.1 4-2.2 0-4-1.8-4-4 0-2.3 1.8-4.1 4-4.1 2.3 0 4.1 1.8 4.1 4.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 30 KiB |
@@ -1,427 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 715 731" width="715" height="731">
|
|
||||||
<title>481-ai</title>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-281.923,0,0,-212.83,328.429,410.647)">
|
|
||||||
<stop offset="0" stop-color="#0b0244"/>
|
|
||||||
<stop offset="1" stop-color="#24126a"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(154.827,113.668,-167.156,227.683,168.892,604.719)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(122.169,62.716,-75.551,147.172,204.995,508.302)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(111.416,76.992,-105.444,152.589,229.83,424.582)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(120.242,56.402,-33.331,71.058,212.761,424.122)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,728.745,774.013)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,595.622)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,737.001)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,609.405,697.674)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,551.387)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,680.58)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,662.69)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,728.745,690.68)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,512.288)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,653.667)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,609.405,614.34)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,468.054)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,597.247)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,579.357)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,728.745,607.346)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,428.955)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,570.334)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,609.405,531.007)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,384.721)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,513.914)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.084,561.69,496.024)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,728.745,524.013)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,345.622)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,523.603,487.001)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,609.405,447.674)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,496.999,301.387)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,502.675,430.58)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,561.69,412.69)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g34" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-235.895,76.835,0,93.748,328.489)">
|
|
||||||
<stop offset="0" stop-color="#42e8e0"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<style>
|
|
||||||
.s0 { opacity: .8;fill: url(#g1) }
|
|
||||||
.s1 { fill: #160a5b }
|
|
||||||
.s2 { fill: #24126a }
|
|
||||||
.s3 { opacity: .7;fill: url(#g2) }
|
|
||||||
.s4 { fill: #453c9e }
|
|
||||||
.s5 { opacity: .7;fill: url(#g3) }
|
|
||||||
.s6 { fill: #f0f6ff }
|
|
||||||
.s7 { fill: #fcd1c5 }
|
|
||||||
.s8 { fill: #4846a5 }
|
|
||||||
.s9 { opacity: .7;fill: url(#g4) }
|
|
||||||
.s10 { opacity: .7;fill: url(#g5) }
|
|
||||||
.s11 { fill: #aa8383 }
|
|
||||||
.s12 { fill: #c4ccd6 }
|
|
||||||
.s13 { fill: #e2b1a6 }
|
|
||||||
.s14 { fill: #936d6d }
|
|
||||||
.s15 { fill: #312a91 }
|
|
||||||
.s16 { opacity: .7;fill: url(#g6) }
|
|
||||||
.s17 { fill: url(#g7) }
|
|
||||||
.s18 { opacity: .7;fill: url(#g8) }
|
|
||||||
.s19 { opacity: .7;fill: url(#g9) }
|
|
||||||
.s20 { opacity: .3;fill: #42e8e0 }
|
|
||||||
.s21 { fill: #42e8e0 }
|
|
||||||
.s22 { fill: url(#g10) }
|
|
||||||
.s23 { opacity: .7;fill: url(#g11) }
|
|
||||||
.s24 { opacity: .5;fill: #5cfff3 }
|
|
||||||
.s25 { fill: url(#g12) }
|
|
||||||
.s26 { opacity: .5;fill: #42e8e0 }
|
|
||||||
.s27 { opacity: .7;fill: url(#g13) }
|
|
||||||
.s28 { fill: url(#g14) }
|
|
||||||
.s29 { opacity: .7;fill: url(#g15) }
|
|
||||||
.s30 { opacity: .7;fill: url(#g16) }
|
|
||||||
.s31 { fill: url(#g17) }
|
|
||||||
.s32 { opacity: .7;fill: url(#g18) }
|
|
||||||
.s33 { fill: url(#g19) }
|
|
||||||
.s34 { opacity: .7;fill: url(#g20) }
|
|
||||||
.s35 { fill: url(#g21) }
|
|
||||||
.s36 { opacity: .7;fill: url(#g22) }
|
|
||||||
.s37 { opacity: .7;fill: url(#g23) }
|
|
||||||
.s38 { fill: url(#g24) }
|
|
||||||
.s39 { opacity: .7;fill: url(#g25) }
|
|
||||||
.s40 { fill: url(#g26) }
|
|
||||||
.s41 { opacity: .7;fill: url(#g27) }
|
|
||||||
.s42 { fill: url(#g28) }
|
|
||||||
.s43 { opacity: .7;fill: url(#g29) }
|
|
||||||
.s44 { opacity: .7;fill: url(#g30) }
|
|
||||||
.s45 { fill: url(#g31) }
|
|
||||||
.s46 { opacity: .7;fill: url(#g32) }
|
|
||||||
.s47 { fill: url(#g33) }
|
|
||||||
.s48 { opacity: .7;fill: url(#g34) }
|
|
||||||
.s49 { opacity: .9;fill: #42e8e0 }
|
|
||||||
.s50 { opacity: .2;fill: #42e8e0 }
|
|
||||||
</style>
|
|
||||||
<g id="321353356351 1">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m57.2 413.9c15.5-8.4 38.7 2.1 38.7 2.1 0 0 5.5 2.3 6.1 4.5 3.2 2.1 5.2 4 5.5 4.6 1.2 2.3 5.8 5.5 8.3 7.3 2.3 1.6 5.2 6.3 6.3 8.2h0.1c0 0 15.1-3.8 20.1-5.1 0.4 0 0.7 0 1.1 0 0-0.1-0.1-0.1-0.1-0.1 0 0 3.2-1 32.3 9.5 16.3 5.8 35.6 10.7 45.6 16 10 5.3 18 12.1 16.8 13.4-0.6 0.6-6.1 6.4-12.4 12.9l1.3 0.6c0 0 32.8 15.1 32.8 15.9 0.1 0.5-1.7 6-4.6 10.6q1.3 1 3.3 2.6 0.1 0.1 0.1 0.2c9.8 7.8 30.4 25.3 37.3 38.3 0 0 14.4 11.6 32.6 25.8l-5.7 11.4c-10.8-5.6-41.5-16.6-45.8-22.4-4.5-6-26.6-18.2-26.6-18.2q0 0-0.1 0.2c-0.1 0.8-0.3 4.4 7.4 14.8 8.8 11.9 23.3 31.7 25.4 35.2l8.5 21.3c-1.9-1.7-3-3.2-3.5-4-8.7-3-31.4-18.3-37.8-23.8-6.7-5.7-27.2-24.6-35.1-29.8-6.2-4-12.4-7.1-17.4-11.2q-1.8-0.2-3.5-0.8c-6.4-2.2-18.9-12.4-28.8-21.7q0 0 0 0-0.2-0.3-0.5-0.5-0.4-0.4-0.9-0.8-1-1-1.9-1.9-0.3-0.3-0.6-0.6-0.9-0.9-1.8-1.8-0.3-0.3-0.7-0.7-0.9-1-1.8-1.9-0.1-0.1-0.2-0.2-0.8-0.9-1.6-1.7-0.2-0.3-0.4-0.5-0.8-0.9-1.4-1.6 0-0.1-0.1-0.1c-21.6-5.1-47.6-15-54.2-18.3-10.4-5.2-23.6-12.2-19.9-16.7l7.3-21.2c0 0-3.6-8.9-2.5-10.7q0.2-0.2 0.3-0.4 0 0 0.1-0.1 0.1-0.1 0.2-0.2 0.1-0.1 0.1-0.1 0.1-0.1 0.2-0.2l-3.3-1.8c-2.9-0.2-4.2-0.8-6.3-1.6-2.1-0.8-2.7-1-6.9-2.7-4.3-1.7-3.1-3-3.1-3 0 0-1.5-0.3-3.9-1.3q-0.8-0.4-1.7-0.8-0.1-0.1-0.2-0.1-0.8-0.4-1.7-1-0.2-0.1-0.5-0.2-0.8-0.5-1.6-1.1-0.4-0.2-0.7-0.4-0.8-0.6-1.6-1.3c-0.2-0.2-0.4-0.3-0.7-0.5q0 0 0.1 0c-0.2-0.2-0.4-0.3-0.6-0.5-6.6-5.9-10.7-13.3 4.8-21.8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s1" d="m334.7 581.2c0 0 1.5 1.6 3.1 3.5 1.6 1.8 6 4.4 7.9 5.6 1.9 1.2 10.5 7.7 12.3 14.1 1.8 6.4-4.4 7.2-10.6 6.1-6.3-1.1-12.2-6.9-13.9-9-1.7-2.1-7.6-6.8-15.3-10.8-7.7-4-3.1-9.3-3.1-9.3z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m277.5 600.2c0 0-1.2 2.9-1.6 6.6-0.4 3.7-0.9 11.7-1.1 14.1-0.2 2.3-0.2 8.1 3.9 13.6 4.1 5.5 6.3 7.7 11.8 5.5 5.5-2.2 5.3-11.4 4.4-16.1-1-4.8-1.9-15.4-1.8-16.5 0.1-1.1-0.3-1.8-0.3-1.8z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m353.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m353.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m278.2 510c-0.5-9.2-2.4-16.6-0.3-25.8 0.7-3.4 10-8.4 21.2-13.3 18.9-1.8 42.9-3.8 44.6-3.5 1.5 0.2 5.4 1.7 8.6 3l1.4 1.9c0 0-0.1 2.6-0.4 6.8-4.4 1.3-12.9 0-12.9 0-1.2 2.9-8.6 13.5-17.7 18-9.2 4.6-36 3-37.6 4.8-1.5 1.7-1.8 24.9-1.7 27.8 0.2 2.9-2.5 21.5-5 37.9-2.4 16.1 1.3 35.7 1.4 36.3-0.8-0.5-1.6-1.2-2.1-2.1-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m333 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m296.3 328.8c0 0-5.1 6.1 2.2 14.4 4.5 5.1 12.2 16 18.8 27.5 4.1 7.1 7.9 10.9 10 17 0 0 0.3-7.3 0.6-18.5 0.3-10.6 0.4-21.6 0-24.4-1-5.7-26-18.8-31.6-16z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m315.2 347.2c0 0 2.6 1.6 3.5 1.5 0.9-0.2 3.8-2.9 3.8-2.9 0 0 7.2-0.2 8-3.3 0.7-3 1.3-6.1 2-7.7 0.7-1.6 3.8-9.3 3.8-12.5 0.1-3.1-0.1-8.6 1.3-11.6 1.3-3 3.2-32.5-25.4-31.6-28.5 0.8-19.6 30.4-19.6 30.4 0 0-2.1 0.9-0.8 4.7 1.2 3.8 1.5 4.2 2.2 6.1 0.6 1.9 0.9 3.1 2.7 4.6l0.5 3.5c0 0-1.4 5.4 2.2 10.6 3.5 5.2 15.8 8.2 15.8 8.2z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m352.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m352.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m339.2 404.1c0 0 3-2 3.8-2.3 0.7-0.3 4.8-1.7 5.5-2 0.6-0.3 3-0.1 4.2 0 0.4 0.1 0.8 0.3 1 0.7 0.9 1.7 3.5 6.8 3.2 8.7 0 0-7.3 4.6-8.1 6.7l-1.2 0.3c0 0-4.9-10.6-8.4-12.1z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m279.8 432.4c0.8-3.2 1.9-7.2 3.2-11.3l44.5 19c0 0-13.3 16.4-36.7 15.4-6.4-0.3-11.1-2.6-14.5-4.6 1.1-7.3 2.3-14 3.5-18.5z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s10" d="m262.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m305.9 419.7c0 0-5 4.7-7.2 2.1-2.1-2.5-1.5-2.8-1.5-2.8 0 0-4.5 0-5-2.9-0.6-2.8-2.8-1.3-2.9-4.4-0.2-3.1 3.6-2.5 3.6-2.5z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m311.9 417.2c0 0-1.4-1.2-3.1-2.7-1.8-1.5-4.7-7.7-5.1-8.3-0.5-0.5-6.5-5.1-9.4-5.2-2.8-0.1-0.7 3.2 0 3.6 0.6 0.5 3.4 1.9 3.4 1.9 0 0 2.9 2.4 3.2 2.7 0.4 0.4-8-0.5-9.3 0.3-1.3 0.8-1 2.9-0.1 3.5 0.9 0.6 1.6 0.6 1.6 0.6 0 0-0.9 2.5 1.6 3.7 2.5 1.1 3.1 0.5 3.1 0.5 0 0 0.2 4.3 4.4 3.5z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m338.2 295.6c0 0 3.8 11.9-6 8.5-9.8-3.4-18.7-9-21.8-6.9-2.3 1.7-2.2 6.7-2 9 0 0.7-0.2 1.5-0.6 2.2l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4h-0.6c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.3-4.4-2.2-13.7 1.1-9.4 5.3-19.1 23.7-20.7 18.3-1.6 24.1 20.5 24.1 20.5z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m310.2 357.6l2.7-2.1c0 0 2.5 2.1 3.5 4.4 1 2.2 0 9.3 0 9.3l0.9 1.5 1-1.9 0.9-8.5c0 0-1-6.2-1.1-6.3 0-0.2-5.3 0.5-5.3 0.5 0 0-1.8 1.4-2.6 3.1z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m323.4 349.2c0 0 2.9 0.2 4.2 1.3 0 0-3 0.2-3.5 0.3-0.5 0-0.7-1.6-0.7-1.6z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m317.8 349.9l-5 4.6c0 0 4.4 2 5.6 5.9 0 0 5.3 1 5.8-1 0.5-1.9 0-6.8 0.7-9 0.6-2.1-7.1-0.5-7.1-0.5z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m324 359.3c0 0 1 4.1 2 5.7 1 1.7 2 3.6 2 3.6l-0.1 23.6c0 0-8.7-17.9-10.6-21.5 0 0 0.3-8.7 1.1-10.3 0.8-1.7 5.6-1.1 5.6-1.1z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m300.7 324.4c5.7 16.5 21.8 21.4 21.8 21.4 0 0-2.9 2.7-3.8 2.9-0.9 0.1-3.5-1.5-3.5-1.5 0 0-12.3-3-15.8-8.2-3.6-5.2-2.2-10.6-2.2-10.6l-0.5-3.5c2.6 0.9 4-0.5 4-0.5z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m287.6 343.7c0 0 2.3 7.8 2.5 8.1 0.3 0.2 5.7-0.4 5.7-0.4l-2.6 5c0 0 27.1 29 32.7 44.6 0 0-12.8-19.8-35.4-43.4l3.2-4.8-5.5 1z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m332.1 336.8l1.4 1.6-1.7 1.6 5 4.5c0 0 1.5 31.8-4.6 52.8 0 0 8.3-19.3 6.4-53.6l-5.4-3.7 1.8-1.7z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m315 512q0 0-0.2 0.2l7-7.5c-3.2 4.6 0.5 25.5 0.9 30.3 0.4 4.8-3.7 14.6-5.3 26.2-1.5 11.6 1.6 28.1 1.6 28.1-2-1.1-3.6-3.1-4.2-6.1-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m302.1 318.5c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.1-4.2-2.3-13 5.5 8.1 17.5 11.9 17.5 11.9l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 689.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 668.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s16" d="m539.1 652.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s17" d="m665.9 595.6v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s18" d="m412.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 645.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m539.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 578.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m539.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s22" d="m665.9 551.4v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 551.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s23" d="m412.4 551.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 645.6v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m441.3 589.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 645.6v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s24" d="m412.4 572.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m415.3 551.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s26" d="m412.4 572.4v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m665.9 572.4v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m539.1 645.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 606.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 585.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m539.1 568.8l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s28" d="m665.9 512.3v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 512.3v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s29" d="m412.4 512.3v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 562.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s30" d="m539.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 495.2l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m539.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s31" d="m665.9 468.1v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 468.1v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s32" d="m412.4 468.1v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 562.3v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m441.3 505.8v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 562.3v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s24" d="m412.4 489.1v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s33" d="m415.3 468.1l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s26" d="m412.4 489.1v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m665.9 489.1v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m539.1 562.3l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 523.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 502.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s34" d="m539.1 485.5l-97.8-56.5 97.8-56.6 97.9 56.6z"/>
|
|
||||||
<path id="<Path>" class="s35" d="m665.9 429v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 429v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s36" d="m412.4 429v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 479l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s37" d="m539.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 411.8l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m539.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s38" d="m665.9 384.7v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s39" d="m412.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 479v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m441.3 422.5v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 479v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s24" d="m412.4 405.8v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s40" d="m415.3 384.7l125.3-72.3-1.5-0.9-126.7 73.2 126.7 73.2 1.5-0.8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s26" d="m412.4 405.8v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m665.9 405.8v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m539.1 479l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 439.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 418.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s41" d="m539.1 402.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s42" d="m665.9 345.6v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s43" d="m412.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 395.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m539.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s44" d="m539.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 328.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m539.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s45" d="m665.9 301.4v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m412.4 301.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s46" d="m412.4 301.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 395.6v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m441.3 339.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m539.1 395.6v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s24" d="m412.4 322.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s47" d="m415.3 301.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s26" d="m412.4 322.4v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m665.9 322.4v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m539.1 395.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s48" d="m585.8 301.5l-1.7-262.8h-92.7l1.1 262.8 46.6 27z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s49" d="m549 271.8c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-1.9 1.6-3.6 3.6-3.6 1.9 0 3.6 1.7 3.6 3.6z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m502.2 243.3c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m517.7 218.1c0 1.2-1 2.3-2.2 2.3-1.3 0-2.3-1.1-2.3-2.3 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m583.4 209.8c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m579.7 202.3c0 1.7-1.3 3.1-3 3.1-1.7 0-3-1.4-3-3.1 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m510.7 213.6c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.5-0.6-1.5-1.4 0-0.8 0.7-1.5 1.5-1.5 0.8 0 1.4 0.7 1.4 1.5z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m509 283.9c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m524.5 258.8c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m517.6 254.2c0 0.8-0.7 1.5-1.5 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.5 0.6 1.5 1.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s49" d="m537.1 236c0.5 1.7 2.2 2.7 3.9 2.3 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.9-2.3-1.7 0.4-2.7 2.2-2.3 3.9z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m571.1 201.1c0.3 1.1 1.4 1.7 2.4 1.4 1.1-0.2 1.7-1.3 1.5-2.4-0.3-1-1.4-1.7-2.4-1.4-1.1 0.3-1.7 1.3-1.5 2.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m552.2 182.9c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.8-1.4 1.5-2.4-0.3-1.1-1.4-1.8-2.5-1.5-1 0.3-1.7 1.4-1.4 2.5z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m493.9 190.2c0.1 0.7 0.8 1.1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.5-0.1-0.7-0.8-1.1-1.5-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m495.4 182.9c0.4 1.5 1.8 2.3 3.3 2 1.4-0.4 2.2-1.9 1.9-3.3-0.4-1.4-1.8-2.3-3.3-1.9-1.4 0.3-2.3 1.8-1.9 3.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m557.2 177.4c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.1 1.1-0.8 0.9-1.5-0.2-0.7-0.9-1.1-1.6-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m572.7 285.3c-0.6 0.5-1.5 0.5-2-0.1-0.5-0.6-0.5-1.6 0.2-2.1 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m576 277.7c-1.2 1-3.1 0.9-4.2-0.4-1.1-1.3-0.9-3.2 0.3-4.2 1.3-1.1 3.2-0.9 4.3 0.3 1 1.3 0.9 3.2-0.4 4.3z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m571.4 270.3c-0.6 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.7-0.5 0.7-0.9 0.5-2.1-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m573.1 244.1c-0.7 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.8-0.5 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m580.5 244.4c-0.4 0.5-0.3 1.3 0.3 1.8 0.6 0.4 1.4 0.2 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.5-1.4-0.3-1.8 0.3z"/>
|
|
||||||
<g id="<Group>" style="opacity: .9">
|
|
||||||
<path id="<Path>" class="s21" d="m528.4 308.3c0.5 1.8 2.2 2.8 3.9 2.4 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.8-2.3-1.8 0.4-2.8 2.1-2.4 3.8z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m537.7 291.1c0.3 1.2 1.5 1.9 2.7 1.6 1.3-0.3 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s49" d="m549 230.9c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-2 1.6-3.6 3.6-3.6 1.9 0 3.6 1.6 3.6 3.6z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m502.2 202.3c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m517.7 177.2c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m583.4 168.9c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m579.7 161.4c0 1.7-1.3 3-3 3-1.7 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m510.7 172.6c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.5-0.7-1.5-1.5 0-0.8 0.7-1.4 1.5-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m509 243c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m524.5 217.8c0 1.3-1 2.3-2.2 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m517.6 213.3c0 0.8-0.7 1.4-1.5 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.5 1.4-1.5 0.8 0 1.5 0.7 1.5 1.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s49" d="m537.1 195c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.1 2.3-3.9-0.4-1.7-2.1-2.7-3.9-2.3-1.7 0.5-2.7 2.2-2.3 3.9z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m571.1 160.2c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.7-1.4 1.5-2.4-0.3-1.1-1.4-1.7-2.4-1.4-1.1 0.2-1.7 1.3-1.5 2.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m552.2 141.9c0.3 1.1 1.4 1.8 2.4 1.5 1.1-0.3 1.8-1.4 1.5-2.5-0.3-1.1-1.4-1.7-2.5-1.4-1 0.2-1.7 1.3-1.4 2.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m493.9 149.3c0.1 0.6 0.8 1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.1-0.7-0.8-1.1-1.5-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m495.4 142c0.4 1.4 1.8 2.3 3.3 1.9 1.4-0.3 2.2-1.8 1.9-3.2-0.4-1.5-1.8-2.3-3.3-2-1.4 0.4-2.3 1.9-1.9 3.3z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m557.2 136.5c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.2-0.6-0.9-1.1-1.6-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m572.7 244.4c-0.6 0.5-1.5 0.4-2-0.2-0.5-0.6-0.5-1.5 0.2-2 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m576 236.7c-1.2 1.1-3.1 0.9-4.2-0.3-1.1-1.3-0.9-3.2 0.3-4.3 1.3-1 3.2-0.9 4.3 0.4 1 1.3 0.9 3.1-0.4 4.2z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m571.4 229.4c-0.6 0.9-0.4 2.1 0.5 2.7 0.9 0.7 2.1 0.4 2.7-0.4 0.7-0.9 0.5-2.2-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m573.1 203.1c-0.7 0.9-0.4 2.2 0.5 2.8 0.9 0.7 2.1 0.5 2.8-0.4 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.5-2.8 0.4z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m580.5 203.4c-0.4 0.6-0.3 1.4 0.3 1.8 0.6 0.4 1.4 0.3 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.4-1.4-0.3-1.8 0.3z"/>
|
|
||||||
<g id="<Group>" style="opacity: .9">
|
|
||||||
<path id="<Path>" class="s21" d="m528.4 267.4c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.7-3.8-2.3-1.8 0.5-2.8 2.2-2.4 3.9z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m537.7 250.1c0.3 1.2 1.5 2 2.7 1.7 1.3-0.4 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.7z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,17 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
||||||
<title>snigdhaos</title>
|
|
||||||
<style>
|
|
||||||
tspan { white-space:pre }
|
|
||||||
.s0 { fill: #000000 }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="graphics" filter="url(#f0)">
|
|
||||||
<path id="Layer" class="s0" d="m303.2 29c-18.6-5.9-38-9.2-57.5-9.9-19.5-0.6-39 1.3-58 5.8-19 4.6-37.3 11.6-54.4 21-17.1 9.5-32.8 21.1-46.8 34.7q5.5 1.8 10.7 4.4 5.2 2.6 10 6 4.7 3.4 8.8 7.6 4.1 4.1 7.5 8.8 2.4 3.4 4.4 6.9 2 3.6 3.7 7.4 1.7 3.8 2.9 7.7 1.3 3.9 2.2 7.9 11.6-6.3 24-11.2 12.4-4.8 25.2-8.1 12.9-3.3 26.1-5 13.2-1.7 26.5-1.7c10-0.3 20.1 0.4 30 2 9.9 1.7 19.6 4.3 29 7.9 9.5 3.5 18.5 8 27 13.3 8.6 5.3 16.6 11.5 23.9 18.4 60.3 55.3 40 98.8 30.6 170.7-1.5 8.2-1.8 16.5-1 24.8 0.8 8.3 2.7 16.4 5.8 24.2 3 7.7 7.1 15 12.2 21.6 5.1 6.6 11 12.5 17.7 17.4-9.5-44.4 23.4-111.7 27.2-119.2 8.4-26.4 11.6-54.1 9.2-81.7-2.3-27.5-10.1-54.3-22.9-78.8-12.9-24.5-30.4-46.3-51.7-63.9-21.3-17.7-45.8-31-72.3-39z"/>
|
|
||||||
<path id="Layer" class="s0" d="m336.1 165.4c-29.8-29.5-72-39.4-112.6-36.1l-12.1 8.6c14.6 0.5 29.1 3.1 43 7.5 13.9 4.4 27.1 10.7 39.3 18.7 12.3 8 23.4 17.5 33.1 28.5 9.6 10.9 17.8 23.1 24.2 36.2q1.3 2.5 2.5 5.2 1.2 2.6 2.2 5.3 1.1 2.6 2.1 5.3 1 2.7 1.8 5.5l12.6-23.7c-3.2-26-14.7-39.2-36.1-61z"/>
|
|
||||||
<path id="Layer" class="s0" d="m340.6 248.7c-58.5-147.8-276-110.5-279.6 51 0.2 11.1-0.1 34 0 45.1 0.1 1.7 0.6 3.4 1.7 4.9 1 1.4 2.4 2.5 4.1 3.1 1.6 0.7 3.4 0.8 5.1 0.4 1.7-0.4 3.3-1.3 4.5-2.6l42-47.4q0.3-0.4 0.7-0.6 0.3-0.3 0.7-0.5 0.4-0.2 0.8-0.3 0.4-0.1 0.9-0.1l8.6-0.5-18.4 29.7q-1 1.7-1.7 3.6-0.8 1.9-1.1 3.9-0.4 1.9-0.4 3.9 0 2.1 0.4 4c2.2 12.6 4.8 43.9-21 64.6q-1.9 1.5-3.5 3.4-1.5 1.9-2.6 4.1-1.1 2.2-1.6 4.6-0.6 2.3-0.7 4.8v42.7c0.1 2.9 0.6 5.7 1.8 8.4 1.1 2.7 2.7 5.1 4.7 7.1 2.1 2 4.5 3.7 7.2 4.8 2.6 1.1 5.5 1.6 8.4 1.6 98.5-19.9 153.3-77.6 165.4-96.8q0.3-0.5 0.7-0.8 0.4-0.3 0.9-0.6 0.4-0.2 0.9-0.3 0.5-0.2 1.1-0.2h53.1c3.5 0 6.8-0.7 10-2 3.2-1.3 6-3.2 8.4-5.7 2.5-2.4 4.4-5.2 5.7-8.4 1.4-3.1 2.1-6.5 2.1-9.9-1.4-32.7 4.6-88.7-9.3-119z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 82 KiB |
@@ -1,545 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3710 2652" width="500" height="357">
|
|
||||||
<title>Wavy_Edu-02_Single-05-ai</title>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.9,-586.526,972.593,11.442,1729.189,2908.055)">
|
|
||||||
<stop offset=".494" stop-color="#ebeff2"/>
|
|
||||||
<stop offset="1" stop-color="#ffffff"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1180.057,2164.368,-2554.434,1392.728,2303.12,688.17)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(200.872,1224.362,-4687.752,769.086,1766.532,433.402)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,45.399,1655.931,768.482)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,44.037,1655.931,815.54)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.655,0,0,38.363,1573.188,955.472)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(183.795,1120.274,-4519.373,741.461,1769.282,434.392)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.437,0,0,44.389,1463.751,668.151)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,48.594,1655.931,1694.91)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,49.955,1655.931,1740.606)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(458.815,0,0,50.418,1871.096,1778.783)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(203.93,1243.002,-6495.992,1065.75,1833.465,178.445)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.437,0,0,42.79,1463.751,1611.895)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(475.74,0,0,34.684,1573.188,1144.659)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,34.976,1655.931,1237.951)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(471.01,0,0,36.338,1655.931,1283.647)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(301.84,0,0,36.722,1464.584,1332.275)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(188.767,1150.577,-5132.456,842.045,1700.892,386.487)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(425.772,0,0,41.025,1655.931,1467.191)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(420.649,0,0,41.948,1755.443,1511.158)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(420.649,0,0,43.164,1755.443,1556.712)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(184.892,1126.962,-4227.694,693.607,1529.195,464.729)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(386.15,1851.397,-2472.626,515.721,2471.603,1087.811)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(84.008,2.429,-1.19,41.172,2776.132,2545.438)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#893976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(86.092,23.67,-12.438,45.238,2508.961,2520.272)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#893976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(251.892,-567.825,209.132,92.773,3644.106,2895.706)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#893976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(341.618,-569.477,372.773,223.619,3932.951,3253.663)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#893976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(291.498,1397.59,-923.955,192.711,2222.246,1211.967)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-121.756,-578.339,477.007,-100.423,3382.448,2249.506)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(316.014,1515.132,-1249.818,260.677,2615.607,1103.264)">
|
|
||||||
<stop offset="0" stop-color="#ff9085"/>
|
|
||||||
<stop offset="1" stop-color="#fb6fbb"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(50.455,-142.956,327.681,115.652,2680.825,1877.815)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-16.92,116.905,-164.14,-23.757,2847.886,1656.119)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(105.971,-150.478,190.229,133.965,2651.149,1781.447)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g34" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-197.761,-401.701,410.133,-201.912,2830.591,1827.243)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g35" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-425.641,0,0,-268.965,2805.795,1492.243)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g36" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-79.089,-203.072,176.48,-68.732,2820.569,1400.642)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#6b3976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g37" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-109.533,-281.243,445.908,-173.664,2844.679,1427.642)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#6b3976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g38" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-101.881,-407.527,324.377,-81.094,1146.206,1664.054)">
|
|
||||||
<stop offset=".004" stop-color="#6165d7"/>
|
|
||||||
<stop offset="1" stop-color="#aa80f9"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g39" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-51.667,34.335,-19.484,-29.32,799.077,2503.167)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g40" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(10.168,-71.917,34.476,4.874,810.372,2557.241)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g41" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-53.936,35.843,-29.156,-43.873,798.734,2500.703)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g42" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-46.351,41.23,-23.398,-26.304,1092.038,2526.828)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g43" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-72.632,34.821,0,1110.789,2578.788)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g44" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-291.803,-1178.15,771.208,-191.012,225.708,2847.091)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g45" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-766.692,-533.206,497.179,-714.888,1107.994,2117.848)">
|
|
||||||
<stop offset=".004" stop-color="#6165d7"/>
|
|
||||||
<stop offset="1" stop-color="#aa80f9"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g46" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-48.387,43.04,-35.011,-39.36,1091.353,2524.436)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g47" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-251.017,365.475,-269.058,-184.795,957.134,1106.178)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g48" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-289.783,421.919,-437.244,-300.309,1046.808,1163.276)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g49" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(41.511,0,0,188.333,804.969,1534.24)">
|
|
||||||
<stop offset=".004" stop-color="#6165d7"/>
|
|
||||||
<stop offset="1" stop-color="#aa80f9"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g50" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(312.847,0,0,225.223,834.749,1580.232)">
|
|
||||||
<stop offset=".004" stop-color="#6165d7"/>
|
|
||||||
<stop offset="1" stop-color="#aa80f9"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g51" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(151.724,190.889,-449.758,357.482,1387.102,1417.356)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g52" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1043.101,-725.439,878.799,1263.616,557.285,2197.043)">
|
|
||||||
<stop offset=".004" stop-color="#6165d7"/>
|
|
||||||
<stop offset="1" stop-color="#aa80f9"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g53" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(172.249,0,0,358.85,2102.776,190.938)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g54" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(333.989,0,0,374.611,1806.203,506.511)">
|
|
||||||
<stop offset="0" stop-color="#aa80f9"/>
|
|
||||||
<stop offset=".996" stop-color="#6165d7"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g55" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(63.086,257.12,-170.985,41.952,2045.267,1072.848)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g56" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(334.056,0,0,351.194,1963.133,555.608)">
|
|
||||||
<stop offset="0" stop-color="#aa80f9"/>
|
|
||||||
<stop offset=".996" stop-color="#6165d7"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g57" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(21.721,0,0,78.31,2111.479,1103.557)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#a03976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g58" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(559.089,679.323,-1102.484,907.355,2256.792,-160.98)">
|
|
||||||
<stop offset="0" stop-color="#aa80f9"/>
|
|
||||||
<stop offset=".996" stop-color="#6165d7"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g59" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-629.455,584.116,-737.307,-794.537,3131.651,157.283)">
|
|
||||||
<stop offset="0" stop-color="#444b8c"/>
|
|
||||||
<stop offset=".996" stop-color="#26264f"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g60" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-361.735,-325.23,241.898,-269.049,2747.983,242.356)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g61" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(113.413,0,0,55.689,2295.136,137.321)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#a03976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g62" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.465,-225.569,217.322,-2.375,2275.933,462.022)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#a03976"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g63" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-483.742,-434.925,423.982,-471.571,2648.57,248.393)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g64" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.61,0,0,-43.492,2384.202,533.117)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g65" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-401.628,0,0,-185.597,2245.069,385.218)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g66" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(271.979,269.803,-278.701,280.948,1920.617,175.2)">
|
|
||||||
<stop offset=".004" stop-color="#e38ddd"/>
|
|
||||||
<stop offset="1" stop-color="#9571f6"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g67" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(309.467,-304.515,245.271,249.259,2558.878,703.313)">
|
|
||||||
<stop offset="0" stop-color="#ffc444"/>
|
|
||||||
<stop offset=".996" stop-color="#f36f56"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g68" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(83.975,0,0,37.828,2240.65,504.518)">
|
|
||||||
<stop offset="0" stop-color="#311944"/>
|
|
||||||
<stop offset="1" stop-color="#a03976"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #97a6b7 }
|
|
||||||
.s1 { fill: url(#g1) }
|
|
||||||
.s2 { fill: #ffffff }
|
|
||||||
.s3 { opacity: .3;mix-blend-mode: multiply;fill: #d8dee8 }
|
|
||||||
.s4 { fill: url(#g2) }
|
|
||||||
.s5 { opacity: .6;mix-blend-mode: soft-light;fill: #ffffff }
|
|
||||||
.s6 { opacity: .4;mix-blend-mode: soft-light;fill: #ffffff }
|
|
||||||
.s7 { fill: url(#g3) }
|
|
||||||
.s8 { opacity: .5;fill: url(#g4) }
|
|
||||||
.s9 { opacity: .5;fill: url(#g5) }
|
|
||||||
.s10 { opacity: .5;fill: url(#g6) }
|
|
||||||
.s11 { fill: url(#g7) }
|
|
||||||
.s12 { opacity: .5;fill: url(#g8) }
|
|
||||||
.s13 { opacity: .5;fill: url(#g9) }
|
|
||||||
.s14 { opacity: .5;fill: url(#g10) }
|
|
||||||
.s15 { opacity: .5;fill: url(#g11) }
|
|
||||||
.s16 { fill: url(#g12) }
|
|
||||||
.s17 { opacity: .5;fill: url(#g13) }
|
|
||||||
.s18 { opacity: .5;fill: url(#g14) }
|
|
||||||
.s19 { opacity: .5;fill: url(#g15) }
|
|
||||||
.s20 { opacity: .5;fill: url(#g16) }
|
|
||||||
.s21 { opacity: .5;fill: url(#g17) }
|
|
||||||
.s22 { fill: url(#g18) }
|
|
||||||
.s23 { opacity: .5;fill: url(#g19) }
|
|
||||||
.s24 { opacity: .5;fill: url(#g20) }
|
|
||||||
.s25 { opacity: .5;fill: url(#g21) }
|
|
||||||
.s26 { fill: url(#g22) }
|
|
||||||
.s27 { mix-blend-mode: soft-light;fill: #ffffff }
|
|
||||||
.s28 { fill: url(#g23) }
|
|
||||||
.s29 { fill: url(#g24) }
|
|
||||||
.s30 { fill: #d8dee8 }
|
|
||||||
.s31 { fill: url(#g25) }
|
|
||||||
.s32 { fill: url(#g26) }
|
|
||||||
.s33 { fill: url(#g27) }
|
|
||||||
.s34 { fill: url(#g28) }
|
|
||||||
.s35 { fill: url(#g29) }
|
|
||||||
.s36 { fill: url(#g30) }
|
|
||||||
.s37 { fill: url(#g31) }
|
|
||||||
.s38 { fill: url(#g32) }
|
|
||||||
.s39 { fill: url(#g33) }
|
|
||||||
.s40 { fill: url(#g34) }
|
|
||||||
.s41 { opacity: .3;mix-blend-mode: multiply;fill: url(#g35) }
|
|
||||||
.s42 { fill: url(#g36) }
|
|
||||||
.s43 { fill: url(#g37) }
|
|
||||||
.s44 { fill: url(#g38) }
|
|
||||||
.s45 { fill: url(#g39) }
|
|
||||||
.s46 { fill: url(#g40) }
|
|
||||||
.s47 { fill: url(#g41) }
|
|
||||||
.s48 { fill: url(#g42) }
|
|
||||||
.s49 { fill: url(#g43) }
|
|
||||||
.s50 { fill: url(#g44) }
|
|
||||||
.s51 { fill: url(#g45) }
|
|
||||||
.s52 { fill: url(#g46) }
|
|
||||||
.s53 { fill: url(#g47) }
|
|
||||||
.s54 { fill: #26264f }
|
|
||||||
.s55 { fill: url(#g48) }
|
|
||||||
.s56 { fill: url(#g49) }
|
|
||||||
.s57 { opacity: .3;mix-blend-mode: multiply;fill: url(#g50) }
|
|
||||||
.s58 { fill: url(#g51) }
|
|
||||||
.s59 { fill: url(#g52) }
|
|
||||||
.s60 { fill: url(#g53) }
|
|
||||||
.s61 { fill: url(#g54) }
|
|
||||||
.s62 { fill: url(#g55) }
|
|
||||||
.s63 { opacity: .3;mix-blend-mode: multiply;fill: url(#g56) }
|
|
||||||
.s64 { fill: url(#g57) }
|
|
||||||
.s65 { fill: url(#g58) }
|
|
||||||
.s66 { fill: url(#g59) }
|
|
||||||
.s67 { fill: url(#g60) }
|
|
||||||
.s68 { fill: url(#g61) }
|
|
||||||
.s69 { fill: url(#g62) }
|
|
||||||
.s70 { opacity: .3;mix-blend-mode: multiply;fill: url(#g63) }
|
|
||||||
.s71 { fill: url(#g64) }
|
|
||||||
.s72 { fill: url(#g65) }
|
|
||||||
.s73 { opacity: .3;mix-blend-mode: multiply;fill: url(#g66) }
|
|
||||||
.s74 { fill: url(#g67) }
|
|
||||||
.s75 { fill: url(#g68) }
|
|
||||||
</style>
|
|
||||||
<g id="_Artboards_">
|
|
||||||
</g>
|
|
||||||
<g id="Illustration">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m2127.3 2403.8c-37.9-12.6-66.3-44.7-74.3-84.3l-55.2-273.1-472.1 16.7-58.1 284.6c-8.1 39.8 24.5 79.8 62 94.5l197.5 77.3c36.7 14.3 76.2 20.1 115.5 16.7l417.4-35.7c12.2-1 22-10.6 23.4-22.9 1.4-12.3 10-26.2-1.7-30z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m2131.9 2387.2c-37.8-12.4-66.1-44.2-74.1-83.2l-55.2-269.8-460.6 16.6-58 281c-8.1 39.3 13.4 78.8 50.9 93.3l197.3 76.3c36.7 14.2 76.1 19.9 115.3 16.5l417-35.2c12.2-1.1 22-10.5 23.4-22.7 1.4-12.1-5.9-23.6-17.5-27.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m561 2227.9c-51.1 3.1-93-30.2-93-74v-1582c0-43.9 41.9-77.8 93-75.6l2377.9 164.6c37.6 1.7 57.8-28.7 57.8 8.7v1345.4c0 37.3-30.4 69.5-68 71.8z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m582.3 2227.9c-51.2 3.1-93.1-30.2-93.1-74v-1582c0-43.9 41.9-77.8 93.1-75.6l2367.7 102.6c37.5 1.6 68 33.3 68 70.7v1345.4c0 37.3-30.5 69.5-68 71.8z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m2950 630.6l-2367.7-97.4c-27.3-1.2-49.6 16.9-49.6 40.4v1230.3 347.6c0 23.4 22.3 41.1 49.6 39.6l2367.7-136c20.1-1.2 36.4-18.3 36.4-38.4v-307.5-1040.9c0-20-16.3-36.9-36.4-37.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s4" d="m2932.4 1941.2l-2324.4 114.8c-24.4 1.2-44.2-14.9-44.2-36v-1425.7c0-21.1 19.8-37.5 44.2-36.6l2324.4 86.3c18.2 0.7 33 16 33 34.1v1228.6c0 18.2-14.8 33.6-33 34.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 708.3l-530.8-15.6v-50.6l530.8 17.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 701.6l-122.6-3.7v-34.6l122.6 4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 749.3l-122.6-3.3v-34.6l122.6 3.6z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m2048.9 766l-475.7-13v-34l475.7 14z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m2126.9 813.9l-471-11.5v-33.9l471 12.5z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m2126.9 859.6l-471-10.2v-33.9l471 11.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m2126.9 905.3l-471-8.8v-33.9l471 9.8z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 797l-122.6-3v-34.6l122.6 3.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 844.7l-122.6-2.6v-34.6l122.6 2.9z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 892.4l-122.6-2.3v-34.6l122.6 2.6z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 940.1l-122.6-2v-34.5l122.6 2.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1766.4 945.3l-301.8-4.8v-34.3l301.8 5.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 987.8l-122.6-1.6v-34.6l122.6 1.8z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1035.5l-122.6-1.3v-34.6l122.6 1.5z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1083.1l-122.6-0.8v-34.6l122.6 1.1z"/>
|
|
||||||
<path id="<Path>" class="s10" d="m1907.8 993.8l-334.6-4.3v-34l334.6 5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m2081.7 1041.9l-425.8-4.3v-33.8l425.8 5.1z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m2081.7 1087.7l-425.8-3v-33.9l425.8 4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1130.8l-122.6-0.5v-34.6l122.6 0.8z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1178.5l-122.6-0.1v-34.6l122.6 0.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1226.2l-122.6 0.2v-34.6l122.6 0.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1273.9l-122.6 0.5v-34.5l122.6-0.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1321.6l-122.6 0.9v-34.6l122.6-0.6z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1369.3l-122.6 1.2v-34.6l122.6-1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1417l-122.6 1.6v-34.6l122.6-1.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1464.6l-122.6 2v-34.6l122.6-1.7z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1512.3l-122.6 2.4v-34.6l122.6-2.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1560l-122.6 2.7v-34.6l122.6-2.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1607.7l-122.6 3v-34.5l122.6-2.8z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1655.4l-122.6 3.4v-34.6l122.6-3.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1703.1l-122.6 3.7v-34.6l122.6-3.4z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1750.8l-122.6 4.1v-34.6l122.6-3.8z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1798.5l-122.6 4.4v-34.6l122.6-4.2z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1846.2l-122.6 4.8v-34.6l122.6-4.6z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1893.8l-122.6 5.2v-34.6l122.6-4.9z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m1437.8 1941.5l-122.6 5.5v-34.5l122.6-5.3z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m1798.2 712.5l-334.4-10.1v-34.2l334.4 10.8z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m2048.9 1684.5l-475.7 14.5v-34.1l475.7-13.5z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m2126.9 1727.8l-471 15.7v-33.9l471-14.7z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m2126.9 1773.5l-471 17.1v-33.9l471-16.1z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m2329.9 1811.2l-458.8 18v-33.4l458.8-17z"/>
|
|
||||||
<path id="<Path>" class="s16" d="m2329.9 1856.4l-458.8 19.2v-33.4l458.8-18.3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m2329.9 1901.5l-458.8 20.6v-33.4l458.8-19.7z"/>
|
|
||||||
<path id="<Path>" class="s17" d="m1798.2 1645.5l-334.4 9.2v-34.3l334.4-8.5z"/>
|
|
||||||
<path id="<Path>" class="s18" d="m2048.9 1179.3l-475.7-0.6v-34l475.7 1.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m2126.9 1225.1l-471 0.8v-33.9l471 0.3z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m2126.9 1270.8l-471 2.1v-33.8l471-1.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m2126.9 1316.5l-471 3.5v-33.9l471-2.5z"/>
|
|
||||||
<path id="<Path>" class="s21" d="m1766.4 1365.9l-301.8 3.1v-34.3l301.8-2.4z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1907.8 1410.8l-334.6 4.4v-34.1l334.6-3.6z"/>
|
|
||||||
<path id="<Path>" class="s22" d="m2081.7 1454.3l-425.8 6.9v-33.9l425.8-5.9z"/>
|
|
||||||
<path id="<Path>" class="s23" d="m2081.7 1500.2l-425.8 8v-33.9l425.8-7.1z"/>
|
|
||||||
<path id="<Path>" class="s24" d="m2176.1 1543.9l-420.7 9.2v-33.7l420.7-8.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m2176.1 1589.5l-420.7 10.4v-33.7l420.7-9.5z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m1798.2 1132.4l-334.4-1.5v-34.2l334.4 2.1z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m1187.8 784.9l-303.8-7.5v-50l303.8 8.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 775.4l57.2 1.5v-50.1l-57.2-1.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 855.5l-303.8-6.3v-50l303.8 7.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 847.6l57.2 1.1v-50l-57.2-1.3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 926l-303.8-5v-50l303.8 5.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 919.7l57.2 0.9v-50l-57.2-1.1z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m1187.8 1426.5l-530.8 7.2v-50.6l530.8-5.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1503.2l-303.8 5.5v-50l303.8-4.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1510.1l57.2-1v-50.1l-57.2 0.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1573.7l-303.8 6.8v-50l303.8-5.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1582.2l57.2-1.3v-50l-57.2 1.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1644.2l-303.8 8.1v-50l303.8-7.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1654.3l57.2-1.5v-50l-57.2 1.4z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m1187.8 997l-530.8-6.5v-50.6l530.8 8z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1073.6l-303.8-2.3v-49.9l303.8 3.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1070.7l57.2 0.4v-50l-57.2-0.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1144.1l-303.8-1v-49.9l303.8 1.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1142.8l57.2 0.2v-50l-57.2-0.3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1286.1l-303.8 1.5v-49.9l303.8-0.7z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1288l57.2-0.3v-50l-57.2 0.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1356.6l-303.8 2.8v-49.9l303.8-1.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1360.2l57.2-0.6v-50l-57.2 0.4z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1214.7l-303.8 0.2v-49.9l303.8 0.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1215l57.2-0.1v-50l-57.2-0.1z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m1187.8 1714.7l-530.8 16.3v-50.6l530.8-14.7z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1791.4l-303.8 10.7v-50l303.8-9.8z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1804.9l57.2-2.1v-50l-57.2 1.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1861.9l-303.8 12v-50l303.8-11.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1877l57.2-2.3v-50l-57.2 2.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1187.8 1932.4l-303.8 13.3v-50l303.8-12.4z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m805.4 1949.1l57.2-2.5v-50l-57.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m1252.3 1929.8l-11.6 0.5v-1269.4l11.6 0.4z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s5" d="m2702.8 1988.8c-515.4 10.8-631.3 84.4-777.8-3.8-201.2-121.1-109.6-336.7-305.6-449.7-246.5-142.2-530.7 118.2-659.4-8.8-128.1-126.3 113.9-423.8-26.2-755.4-56.2-133-151.9-219.5-218.1-269l-133.4-5.8c-51.2-2.2-93.1 31.7-93.1 75.6v1582c0 43.8 41.9 77.1 93.1 74l2367.7-141.1c37.5-2.3 68-34.5 68-71.8v-23.9c-71-2.5-180.9-5.1-315.2-2.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s28" d="m2560.1 1542.5c-24.4-26 43.1-124 79.3-166.9 31.6-37.5 64.1-76 104-71.1 35 4.3 69.1 41.2 71.1 76.6 5.5 95.2-219.7 198.5-254.4 161.4z"/>
|
|
||||||
<path id="<Path>" class="s29" d="m2853.2 2548.8c4.6 3.8 5.5 13.1 6 19.2 0.3 2.7 0.4 4.1 0.1 5-2.2 7.1-15.9 7.8-37.2 10-33.7 3.4-43.8 6.1-46.4 1.1-2.5-4.7 3.5-12.4 4.2-13.3 3.6-4.6 8-6.2 16.6-9.1 16-5.2 26.7-8.1 30-8.9 20.3-5.5 23.7-6.4 26.7-4z"/>
|
|
||||||
<path id="<Path>" class="s30" d="m2833.2 2518l-3.4 38.5c0.9 1.8 12.4 7.4 21.4 2.6l8.7-37.8z"/>
|
|
||||||
<path id="<Path>" class="s31" d="m2585.7 2543.9c5.5 6.1 6.8 17.3 2 22.8-4.7 5.4-11.8 1.3-31.9 1.9-21.5 0.7-27.1 5.8-41.7 1.7-5.9-1.6-16.3-5.6-16.1-9.8 0.1-2.9 5.4-4.5 23.1-10.4 25.2-8.4 25.1-8.9 30.4-9.8 13.5-2.2 26.9-4.4 34.2 3.6z"/>
|
|
||||||
<path id="<Path>" class="s30" d="m2571.9 2508.8l-10.8 35.9c0.9 1.9 11.8 8.3 21.2 4.3l16.1-34.9z"/>
|
|
||||||
<path id="<Path>" class="s32" d="m2667.8 1722.9c-1.6 120.6-9.8 256.2-29.5 403.5-19.6 145.6-46.9 277.2-76.7 392.9q20.6 5.5 41.3 11.1c34.9-32.6 78.9-83.8 100.2-156.3 13.2-44.9 8.8-68 17.1-123.3 13.4-88 40.3-134.2 68.2-205.2 25.1-63.8 54.7-157.4 70.6-282.5q-95.6-20.1-191.2-40.2z"/>
|
|
||||||
<path id="<Path>" class="s33" d="m2792 1711.4c8.4 153.4 15.4 309.6 20.6 468.6 4 119.3 6.8 237.1 8.8 353.4q21.1 2.6 42.1 5.2c13.6-25.3 31.7-64 44-113.5 15-60.2 11.6-96 18.2-158.4 7.3-69.9 18.1-85.2 37.1-173.4 38.6-179.2 57.8-268.7 14.8-324.5-14-18-57.8-63.4-185.6-57.4z"/>
|
|
||||||
<path id="<Path>" class="s34" d="m2996.9 1326c-32.9-9.3-81.2-20.1-140.3-23.4-84.2-4.8-126.4-7.2-156.3 12.9-68.9 46.3-15.5 153.3-43.8 418.5-4 37.9-4.9 76.1-7.8 114-4.8 62.9-6 66.3-1.6 72.7 27.5 40 129.8-20.3 279.9 3.5 83.9 13.4 122 44.1 145 21.9 26.8-25.8 3.8-95.3-16-155.1-22.8-68.7-36.8-69.5-49.7-121.2-13.5-54.1-5.3-81.9-3.2-167.1 1-40.8 0.8-101.5-6.2-176.7z"/>
|
|
||||||
<g id="<Group>" style="opacity: .3;mix-blend-mode: multiply">
|
|
||||||
<path id="<Path>" class="s35" d="m2792.9 1823.9c39.2-3.1 64.6 19.1 98.5 1.8 46.4-23.7 61.3-97.4 58.4-149.6-4.5-79.2-49.8-100.1-42-151.4 4.2-27.7 24-64.5 95-102 1 31.6 0.8 58.6 0.3 80-2.1 85.2-10.3 113 3.2 167.1 12.9 51.7 26.9 52.5 49.7 121.2 19.8 59.8 42.8 129.3 16 155.1-23 22.2-61.1-8.5-145-21.9-129.3-20.5-223.2 21.3-264.2 7.8 49.6-82 94.6-105.3 130.1-108.1z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s36" d="m2943.4 1331.4c28-23 84.3 3.1 99.4 10 83.9 38.8 159.3 143.5 140.6 254.1-2.8 16.5-15.8 94.1-81.4 131.7-59.3 33.9-139.3 25.2-203.5-22.8q-13.1-11.7-26.2-23.4-13-13.9-25.9-27.9c13.5-11.3 36.6-27.6 68.9-38 42.6-13.7 73.7 10.9 93.5-7.8 13.6-13 13.6-35.9 10.3-49.7-6.8-28-31.5-35.8-52-55.7-48.3-46.6-57.2-142.9-23.7-170.5z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s37" d="m2540.9 1692.4l375.4-5.6-99.8 48.2-276.5-18.1z"/>
|
|
||||||
<path id="<Path>" class="s38" d="m2929.6 1696.8c0 7-4.4 13.3-11 15.7l-120 47-0.5-32.6 118.2-40.1c6.7-1.9 13.3 3.1 13.3 10z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s2" d="m2871.8 1674.6c2.3-0.5-11.3-27.5-21.9-24.4-10.6 3.1-62.5 33.2-67.2 45.6-4.8 12.4-4.8 12.4-4.8 12.4 0 0 22.7 1.8 36.7-2.9 14.1-4.8 38.4-26.6 57.2-30.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s39" d="m2788.1 1498.2l26.5 240.9c0.9 8.3-10.7 20.7-19.1 20.3l-388.2-23.8c-6.3-0.3-11.7-5-12.7-11.3l-48.8-232.7c-1.4-8.5 13.8-17.2 22.4-17l406.8 11.4c6.8 0.2 12.4 5.4 13.1 12.2z"/>
|
|
||||||
<path id="<Path>" class="s40" d="m2779.3 1505.2l26.4 240.9c0.9 8.3-5.8 15.5-14.2 15.1l-393-18.6c-6.4-0.3-11.7-5-12.8-11.3l-40.2-233.8c-1.4-8.4 5.2-16.1 13.8-15.9l406.8 11.5c6.8 0.2 12.4 5.3 13.2 12.1z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s41" d="m2548.4 1686.1c34.4-14.5 22.2-42.3 62.8-76.8 53.4-45.6 107.9-25.9 127-61.2 6-11 8.8-28.1-1.5-55.9l29.4 0.9c6.8 0.2 12.4 5.3 13.2 12.1l26.4 240.9c0.9 8.3-5.8 15.5-14.2 15.1l-393-18.6c-6.4-0.3-11.7-5-12.8-11.3l-5.5-32.3c11.9-6.6 26.1-12.6 42.8-16 57.6-11.7 85.9 19.9 125.4 3.1z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s2" d="m2373.7 1708.9c-0.6-2 0.7-4 2.8-4.1 8.3-0.4 27.5-0.6 38.2 6 13.8 8.4 31.7 23.9 16.6 31.7l-14 7.2q-1 0.5-2.1 0.3c-5-1.1-26-5.7-28.3-6.9-2.1-1-10.1-24.8-13.2-34.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s2" d="m2850.3 1210.5c-0.2 25 2.6 44.8 5.3 58.3 3 15.6 5.2 19.6 7.9 22.9 4.2 4.9 10.6 9 46.4 17.9 19.4 4.8 21.9 4.7 22.4 6.6 2.1 9.4-51.1 41.6-105.9 33.8-33.6-4.7-64.2-23.9-62.3-33.9 1.9-10.2 35.4-4.7 45.4-23.1 7-12.7-0.8-30.8-10-45.8 8.9-16.7 41.9-20 50.8-36.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s42" d="m2788 1220.3c-7.9-10.5-8.4-28.9 0.7-40.5 7.9-10 20.2-11.4 27.6-12.3 21.5-2.5 48.6 6.5 58 26.3 5.6 11.7-6.5 36-8.4 40.4-2.1 4.9-6 6.6-9.6 10.3-5 5.2-12.8 13.5-25.5 27.3-1-4.1-2.5-9.2-4.8-14.6-1-2.1-4.7-10.3-10.2-17.1-11.2-13.7-20.3-9.8-27.8-19.8z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m2849 1260.2c0 0-14.1 23.1-42.2 21.3-25.2-1.7-28.9-58.1-12.8-70 5.4-4 16.1-5.7 24.8-3.2 5.2 1.4 6.9 3.6 15.4 5.7 7.8 2.1 10 1.2 12.4 3.2 2.9 2.5 5.1 8.6 0.1 25 4.8-4.8 10.6-6.7 14.7-4.7 0.6 0.3 2.4 1.4 3.3 3.2 3.6 6.5-2.3 14.7-15.7 19.5z"/>
|
|
||||||
<path id="<Path>" class="s43" d="m2847.7 1213.8c-1.2 0.9 2.5 5.4 2.8 11.9 0.5 12.4-12.1 27.3-24.9 28.6-7.6 0.7-9.7-3.9-22.2-5.2-7.8-0.8-14.3 0.2-18.3 1.1-4 13.6-0.3 27.2 8.8 33.5 9.9 6.8 22.4 2.7 27.6 1 3.5-1.2 14.8-4.9 20.6-15.2 6.2-10.7 0.2-17.2 7.2-24.4 3.5-3.7 8.2-5.3 12.7-12.4 1.2-1.9 2-3.6 2.5-4.7-6.4-6.9-15-15.5-16.8-14.2z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m2794.2 1255.2c0 0 5.4 2.9 14.8 2.3 0.5 0 1 0.2 1 0.4 0.2 0.9-5.8 4.9-11.3 3.3-4-1.1-7-4.8-6.5-5.8 0.2-0.4 1.1-0.3 2-0.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s44" d="m830.3 1354.3c-6.7 2.5-108.4 42.9-129.3 149.1-1.7 8.6-18.1 99.8 43.8 164.2 69.3 72.3 202.9 70.5 255.9 10.1 12.4-14.1 18.9-29.7 22.6-42.8l-14-37.1c-17-20.6-40.3-25.5-52.6-28.5-30.6-7.6-53.7 6-71.2-8.7-9.7-8.1-11.6-19.9-13.3-30.4-5.8-35.7 14.3-57.6 15.8-79.6 1.1-16.5 6.8-52.6-14.7-76.1-13.6-14.9-32.4-18.9-43-20.2z"/>
|
|
||||||
<path id="<Path>" class="s45" d="m790.6 2537.4c-1.2-6.5-22.3-12.4-32.7-3.7-5.2 4.4-8.8 13.2-5.8 17.2 1.1 1.4-3.4 4 0.9 4 14.2 0.2 38.8-11 37.6-17.5z"/>
|
|
||||||
<path id="<Path>" class="s46" d="m768.5 2539.8l-21.7-3.1c10.1-12.1 8.2-50.6 8.2-50.6l23.1 5.1c0 0-2.7 10.6-7.1 26.2-1.6 5.4-2.2 13.7-2.5 22.4z"/>
|
|
||||||
<path id="<Path>" class="s47" d="m770.4 2537.1c0 0-26.1-6-28.9-0.8-2.9 5.2-5.1 19.1 11.5 18.6 16.6-0.4 18.9-13.4 17.4-17.8z"/>
|
|
||||||
<path id="<Path>" class="s48" d="m1088.5 2561.9c-2.1-6.3-23.9-9.2-33 1-4.5 5-6.8 14.2-3.3 17.7 1.3 1.3-2.8 4.5 1.5 3.9 14.1-1.8 36.8-16.3 34.8-22.6z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m1066.9 2567.4h-21.9c8.2-13.4 1-51.3 1-51.3l23.6 1.9c0 0-1.2 10.8-3.4 26.9-0.8 5.5-0.3 13.9 0.7 22.5z"/>
|
|
||||||
<path id="<Path>" class="s50" d="m1123.7 1738.4c10.2 33.5 24.7 87.6 34 155.5 26.6 193.7-30 199.9-19.4 414.6 3.4 68.5-59.4 226.5-64.9 230-2.7 0.2-5.6 0.4-8.7 0.3-5.4-0.2-13.1-1-22.1-3.7-9.9-1.7-45.7-98.7-37.4-156.4 5.9-40.9 4.2-84.7 0.8-172.3-0.6-14.2-36.9-276.3-36.9-276.3-11.1 97-23.8 179.4-34.8 243.3-35.4 205.4-150.5 329.6-156.6 331.6-1.1 0.5-11.9 4.4-20.8-1.4-3.9-2.6-5.2-5.9-5.2-5.9-3.1-2.4 0.9-205 36-357.5 50.9-221.3 28.8-273.1 44.9-371.9 14-85.6 291.1-29.9 291.1-29.9z"/>
|
|
||||||
<path id="<Path>" class="s51" d="m1137.4 1771.8c-30.6 15.7-109.5 43.9-203.4 29.9-41.7-6.2-75.2-19.8-99.3-32.3q-1.1-0.6-2.1-1.1c24.4-73.8 5.3-113.3-3.8-149.7-12.8-51.9-13-48-23.6-89.2-17.5-68.1-20.4-137.6-8.4-151.8 32.4-38.3 90.8-39.7 121-40.6 33.9-1 111.7-12.9 154.5 25.6 0.7 0.7-8 5.4-3.7 10.4 4 4.7 17.7 21.2 30.2 43.4 9.1 16.1 17.2 34.9 25.5 62.9 14.5 49.4 18.6 91.4 20 109.7q0.7 9.1 1.2 17.6c5.7 90.9-1.5 134.8-8.1 165.2z"/>
|
|
||||||
<path id="<Path>" class="s52" d="m1068.4 2564.5c0 0-26.7-2.3-28.8 3.2-2 5.5-2.3 19.6 14.1 16.8 16.3-2.7 16.8-15.9 14.7-20z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s53" d="m1015.2 1293.7c9.2-18.4 3.2-38.2 1.8-42.5-5.7-18-7.5-20.6-11.1-24.3l-5.2-4.7c0 0-0.3-0.2-0.6-0.4-3.5-2.1-16.2-4.9-18.9-4.9-8.7 0.2-24 32.2-30.7 80.3q-1 2.7-2 5.4c-4.2 11.1-7.7 21.9-10.7 32.5-57.7 9-65.2 16.4-65.2 20.3 0 8.3 33.7 15.6 58.9 17.5 54.7 4.1 109.5-14.1 108.5-24.2-0.4-4.4-11.6-9.3-58-12.2q0.8-11.5 1.7-23c3.6-1.1 24.7-6.2 31.5-19.8z"/>
|
|
||||||
<path id="<Path>" class="s54" d="m1020.5 1212c-2.9 14.7-12.9 29.1-17 31-0.5 0.2-3.5 1.8-6.4 4.8-0.4 0.4-0.8 0.9-1.2 1.6-5.1 8.7 7.6 22.5 4 26.1-2.7 2.6-12-3.4-13.7-1-1.6 2.2 5.8 8.9 4 11.6-1.4 2.1-6.2-1-10.1 1.8-1.9 1.4-1.7 2.8-4.4 7.7-1.6 2.7-3.5 5.7-4.9 7.3-6.8 7.6-21.9 8-24 4-0.6-1.1 0.3-1.8 0.1-5.2 0 0-0.2-3.1-1.6-7-2-5.6-8.5-10.5-14.8-17.2-11.6-12.3-13.7-21.3-14.2-24.3-0.2-1-0.3-1.8-0.4-2.4-1.4-11.6 1.7-27.6 8.4-36.4 11.4-14.9 28.4-3.5 46.7-16.9 21.1-15.5 15.7-43.2 25.7-44.2 11-1.2 29.1 31.4 23.8 58.7z"/>
|
|
||||||
<path id="<Path>" class="s55" d="m995.2 1271c-2.6-5.7-9.9-2.2-11.2 4.2-1.2 6.4 3.7 14.3 10 14.2 6.3-0.1 4.8-10.8 1.2-18.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s56" d="m843.4 1722.6q-0.1 0-0.2 0c-1.1-0.2-1.9-1.1-1.8-2.2 4-35.8-3.4-61.9-10-84.8-1.6-5.7-3.1-11.1-4.5-16.5-7.3-29.4-10.5-40.8-13.8-52.8-2.3-7.9-4.5-16-8.1-29.6-0.2-1 0.4-2.1 1.4-2.4 1.1-0.3 2.2 0.4 2.4 1.4 3.6 13.6 5.8 21.7 8.1 29.5 3.3 12.1 6.5 23.5 13.8 52.9 1.4 5.4 2.9 10.8 4.5 16.4 6.7 23.3 14.2 49.7 10.1 86.3-0.1 1-0.9 1.8-1.9 1.8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s57" d="m1137.4 1771.8c-30.6 15.7-109.5 43.9-203.4 29.9-41.7-6.2-75.2-19.8-99.3-32.3 10.9-8.5 24.4-22.7 46.6-46.8 26.9-29.2 58.4-18.3 76.9-7.3 13.4 7.8 29.9 8.1 43.5 0.6 13.6-7.5 22.2-21.7 22.6-37.2 0.2-7.1-0.2-15.2-1-24.4-6.4-66.4 85.7-72.1 85.7-72.1 13-6.7 25.3 4.2 36.5 24.4 5.7 90.9-1.5 134.8-8.1 165.2z"/>
|
|
||||||
<path id="<Path>" class="s58" d="m1459.2 1475.8c-3.7 0.3-8.2 4.1-11.3 5.9-4.5 2.5-9 5-13.6 7.4-8.8 4.6-18.1 8-28.2 7.8 0.3-1.5 0.8-2.9 1.3-4.3 1.8-4 4-7.4 2.7-8.6-2-1.8-10.4 1.8-18.2 9.3-3.2 3-6.2 6.7-8.7 10.8-4 6.8-3.3 10.6-6.6 15.7-5 4.5-8.7 5.5-8.7 5.5v1.4l0.5 1.7c-4.4 3.4-9.4 5.4-13.3 6.7 6.9 1.9 13.6 3.7 20.5 5.6l4.8 8c0 0 26-5.5 41.7-15 7.3-4.5 9.8-10 10.5-14.6 0.4-3 0-5.6-0.4-7.3-0.4-1.2-0.7-1.9-0.7-1.9 0 0 21.5-8.9 29.9-28.2 1.3-2.9 1.4-6.3-2.2-5.9z"/>
|
|
||||||
<path id="<Path>" class="s59" d="m1368.4 1517.2c12.3 8.6 18.8 20.2 22.2 27.7-9 21.1-29.4 60.3-71.6 89.2-69.2 47.4-170.8 49-241.5-5.1-84.5-64.5-98.6-188.3-63.1-241.3 4.1-6.1 17.5-26.2 38.4-28.5 13.1-1.4 31 4 59.4 37.1 59 69.1 38.1 112.3 73 132.5 52.3 30.3 129.9-48.9 183.2-11.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s60" d="m2246.2 191.6c-21.6-6.3-50.6 33.5-74.7 66.6-36.1 49.5-78.2 107.4-66.9 176.9 11.2 68.4 69.8 121.6 86.5 114 14.3-6.5-13.2-52.5 7.9-114 17-49.6 45.1-49.6 64-98.3 23.4-60.4 9.9-137.4-16.8-145.2z"/>
|
|
||||||
<path id="<Path>" class="s61" d="m2235.5 506.5c-111.7 27.1-185.3 70.7-228.3 101.5-23.2 16.7-34 27.1-39.8 42.2-33.1 86.5 136.9 217.2 155 230.9q11.9-27.7 23.8-55.3c-17.6-96.5-46.8-126.7-71.3-135.7-6.9-2.5-18.4-5.2-18.1-8.5 0.5-7.6 65.1 3.3 126.8-19.3 61.5-22.5 123.3-79.5 112.3-117.1-2-6.9-10.5-26.8-60.4-38.7z"/>
|
|
||||||
<path id="<Path>" class="s62" d="m2127.2 1138.5c0 0 10.4 3.7 10.4 11.9 0.1 8.3-10.5 44.5-22 57.4-11.5 12.8-12.5-6.4-11.8-18.8 0.7-12.3 3.7-40 6.6-45.4 2.8-5.3 16.8-5.1 16.8-5.1z"/>
|
|
||||||
<path id="<Path>" class="s63" d="m2093.8 632.9c-20.3-0.4-67.9-4.2-80.5 19.3-10.6 19.7 7.9 49.4 19.3 67.7 31 49.7 61 54.8 82.1 85.3 8.2 11.9 15.6 28.4 18 52q6.7-15.7 13.5-31.4c-17.6-96.5-46.8-126.7-71.3-135.7-6.9-2.5-18.4-5.2-18.1-8.5 0.5-7.6 65.1 3.3 126.8-19.3 56.1-20.5 112.2-69.6 113.4-106.7-88.8 63.7-155.7 78.3-203.2 77.3z"/>
|
|
||||||
<path id="<Path>" class="s64" d="m2133.2 1103.6c-0.6 12.6-1.7 23.2-2.7 31.1-2.1 17.4-4.1 24.3-6.8 30.6-2.3 5.4-8.2 17.4-11 16.5-2.9-0.8 0-14 2.3-50.8 0.3-5.3 1.3-22.3 1.3-22.3z"/>
|
|
||||||
<path id="<Path>" class="s65" d="m2299.9 513.8c-64.3 38.8-106.1 82.9-130.4 112.7-28.7 35.2-72.3 88.7-88.1 168.4-8.4 42.6-4.3 80.7 4.4 155.3 8.5 74 20.8 134.3 30.4 175.5q7.4 2.9 14.9 5.9c13.2-24.3 30.6-62.9 36.8-112.2 10.1-80.7-20-106.3-5.5-163.5 12.5-49.6 48.9-79.9 121.6-140.7 59.7-50 114.8-79.6 135.2-141.9 3.5-10.5 6.5-23.5 0.8-35.4-12.2-25.6-58.9-34.5-120.1-24.1z"/>
|
|
||||||
<path id="<Path>" class="s66" d="m2351.3 196.2c-16.7-3.6-44.2-2.9-70.4-23.5-7.9-6.2-35.8-28.2-32.4-59.7 3-27.7 29.3-42.6 32.5-44.3 18.6-10.3 37.1-8 57.7-5.2 26.6 3.7 35.5 10.9 54 15.9 45.8 12.4 61.3-13.4 107.4-11.2 59 2.8 64.1 46.3 113.7 47.4 55.7 1.2 66.4-53.3 121.4-62.5 76.3-12.9 191.8 69.3 189.4 164-1.3 54.7-42 117.4-94.1 136.3-30.3 10.9-63 7.4-72.4 27.2-6.6 14 8.3 24.8 6.9 49.3-1.8 31.5-28.9 53.6-33.3 57.2-40.7 33.2-131.9 16.4-194.2-30.5-112.4-84.6-95.4-240.8-186.2-260.4z"/>
|
|
||||||
<path id="<Path>" class="s67" d="m2480.3 185c-37.8-4.7-81.4-8.2-129.9-8.9-102.5-1.4-117.2 11.6-120.9 21.2-7 18 5 26.9-1.8 58.2-4.1 18.7-0.3 27.2-8.1 47.3-7.7 19.6-1.7 30.1 5.1 76 8.7 58.7 12.7 88.5-3.8 112.2-11.4 16.4-24.1 17.8-22.9 25.6 2.6 16.7 60.1 7.5 132.9 39.4 21.1 9.3 40.5 20.7 56.8 30.2 38.1 22.4 45.1 31 62.8 41.1 55.8 32 139.6 35.1 183.6-3.6 16.4-14.5 28.3-35.7 22.9-43.5-7.3-10.6-40 13.4-70-1.2-19.9-9.7-16.1-25.5-39.1-44-27.7-22.3-46.9-10.6-65.8-25.1-29.4-22.7-16-76.8-7.7-167.7 3.4-37.6 6.8-91.3 5.9-157.2z"/>
|
|
||||||
<path id="<Path>" class="s68" d="m2369.4 163.9c14 8.6 36.6 20 39.1 23 2.5 3.1-68.4 15.3-112.6-7 0 0-6.8-3.8 19.8-9.1 5.7-1.2 4.5-12.2 3.8-23.6l5.3-9.9c0 0 30.7 17.9 44.6 26.6z"/>
|
|
||||||
<path id="<Path>" class="s69" d="m2334.2 130.6c0 0 5.5 23.3-15 34.8-18.4 10.3-49.4-31.9-43.6-47.6 1.9-5.3 8.9-12 16.1-14.2 5-1.6 24.3-1 32.5 15.2 2.1-4.8 6-7.2 8.6-6.5 3.3 1 3.8 7 3.9 8.4 0.4 4.7-1.5 8.3-2.5 9.9z"/>
|
|
||||||
<path id="<Path>" class="s70" d="m2302.4 503.4c21.1 8.8 24 27.7 53.2 38.4 27.8 10.2 37.1-2.6 64.9 5.9 41.7 12.8 57.6 53 63.9 49.2 5.8-3.5 0.3-42-26.5-66.9-30.8-28.6-64-15.5-83.7-45.3-7.6-11.5-13.5-30-6.8-44.2 9-19.3 32.7-12.6 45.2-28.6 22.5-28.6-30.2-80.3-15.7-123.9 5.7-17.5 24.1-39.3 83.3-53.9-0.8 43.8-3.3 80.3-5.8 108.1-8.3 90.9-21.7 145 7.7 167.7 18.9 14.5 38.1 2.8 65.8 25.1 23 18.5 19.2 34.3 39.1 44 30 14.6 62.7-9.4 70 1.2 5.4 7.8-6.5 29-22.9 43.5-44 38.7-127.8 35.6-183.6 3.6-17.7-10.1-24.7-18.7-62.8-41.1-16.3-9.5-35.7-20.9-56.8-30.2-51.1-22.4-94.6-24.6-117-29.6 44.4-29.6 71.4-30.1 88.5-23z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s71" d="m2098.8 533.1l267.7 13c3.7 0.2 7 2.2 9 5.3l7.4 11.9c3.7 5.9-0.8 13.6-7.7 13.3l-283.6-10.8z"/>
|
|
||||||
<path id="<Path>" class="s72" d="m1853 385.2l276.6 5.4c8.2 0.1 15.7 4.6 19.7 11.7l95.8 168.5-292.1-11.6c-8-0.3-15.4-4.7-19.5-11.6l-88.7-148.2c-3.8-6.3 0.8-14.3 8.2-14.2z"/>
|
|
||||||
<path id="<Path>" class="s73" d="m2149.3 402.3c-4-7.1-11.5-11.6-19.7-11.7l-6.1-0.1c-0.9 8.9-3.6 17.1-9.1 23.6-17 20.6-45.4 7.9-66.5 29.7-23.2 24-1.8 52.4-22.5 74.7-21.8 23.5-57.1 4.4-97.7 19.4l5.8 9.7c4.1 6.9 11.5 11.3 19.5 11.6l292.1 11.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s74" d="m2322.6 533.3q-4.5-12-9-23.9c33.3-9.2 79.4-22.7 126.7-39.6 11.7-4.2 16-9.6 19.1-13.7 24.3-32.2-37.5-88.9-36.4-162.5 0.8-51 31.8-109.4 59-110.1 55.4-1.3 177.6 233.8 74.7 334.1-51.1 49.9-146.5 55.6-234.1 15.7z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s75" d="m2313.6 509.4c-21-11.2-46 0.2-47.6 1-4.6 2.2-11.3 6-18.1 12.9-0.8 1.1-9.8 13.7-6.5 17.7 2.6 3.2 12.9 0.6 25.2-7.1 5.2-0.7 12.9-1.4 22.1-0.6 17 1.6 24.7 7 30.9 2.3 4.5-3.3 6-10.5 4.4-15.8-1.7-5.7-6.9-8.6-10.4-10.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 742 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 385 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 5.1 KiB |
@@ -1,15 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512">
|
|
||||||
<title>snigdhaos-favicon</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #ffffff }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m218.1 365.9l37.7-37.7 37.7 37.7 37.7 37.7-75.4 75.4q-109.9-109.9-219.8-219.8 0-113.1 0-226.2l144.4 144.4-37.8 37.7-53.3-53.4v75.4l128.8 128.8z"/>
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m331.2 177.4l144.3-144.4q0 113.1 0 226.2c-35.5 35.6-71.1 71.1-106.6 106.7l-113.1-113.1-37.7 37.7-37.7-37.7 75.4-75.4 113.1 113.1 53.3-53.4v-75.4l-53.3 53.4z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 822 B |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 121 KiB |
@@ -1,500 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
|
||||||
<title>2682153-ai</title>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-5.119,559.251,-259.525,-2.375,1211.262,89.735)">
|
|
||||||
<stop offset="0" stop-color="#1d3f8f"/>
|
|
||||||
<stop offset=".005" stop-color="#24c7c1"/>
|
|
||||||
<stop offset=".996" stop-color="#99faff"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp1">
|
|
||||||
<path d="m643.29 709.9h-181.69c-25.36 0-45.92-20.56-45.92-45.93v-505.91c0-25.36 20.56-45.92 45.92-45.92h181.69c25.36 0 45.92 20.56 45.92 45.92v505.91c0 25.26-20.67 45.93-45.92 45.93z"/>
|
|
||||||
</clipPath>
|
|
||||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp2">
|
|
||||||
<path d="m487.07 293.13c-27.72 0-50.2-22.47-50.2-50.2 0-27.72 22.48-50.2 50.2-50.2 27.72 0 50.2 22.48 50.2 50.2 0 27.73-22.48 50.2-50.2 50.2z"/>
|
|
||||||
</clipPath>
|
|
||||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(8.54,33.598,-28.592,7.268,495.803,233.321)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp3">
|
|
||||||
<path d="m487.07 446.35c-27.72 0-50.2-22.48-50.2-50.2 0-27.73 22.48-50.2 50.2-50.2 27.72 0 50.2 22.47 50.2 50.2 0 27.72-22.48 50.2-50.2 50.2z"/>
|
|
||||||
</clipPath>
|
|
||||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(8.54,33.598,-28.592,7.268,495.803,386.539)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp4">
|
|
||||||
<path d="m487.07 599.57c-27.72 0-50.2-22.48-50.2-50.2 0-27.73 22.48-50.2 50.2-50.2 27.72 0 50.2 22.47 50.2 50.2 0 27.72-22.48 50.2-50.2 50.2z"/>
|
|
||||||
</clipPath>
|
|
||||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(30.604,80.883,-62.206,23.538,438.419,320.44)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#0e608f" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(36.195,95.657,-104.435,39.516,400.132,448.212)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#0e608f" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<clipPath clipPathUnits="userSpaceOnUse" id="cp5">
|
|
||||||
<path d="m382.48 314.51c5.2-0.79 4.15 4.64 7.86 0.92 0.85-0.86 4.75-6.72 4.88-7.92 0.6-5.84-2.11-18.22-5.52-21.58-3.21-3.15-9.68-3.59-14.14-3.04-9.1 1.13-15.87 4.65-14.83 18.89 0.6 8.1 6.44 13.01 16.74 12.45 2.07-0.11 2.73 0.12 4.8 0.07 0.28 0 0.57 0 0.8 0.16 0.22 0.16-0.37-0.12-0.59 0.05z"/>
|
|
||||||
</clipPath>
|
|
||||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.604,60.767,-41.066,-3.111,748.435,510.631)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e0ac9b" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(29.087,-196.334,399.008,59.113,624.083,836.412)">
|
|
||||||
<stop offset="0" stop-color="#1d3f8f"/>
|
|
||||||
<stop offset=".005" stop-color="#24c7c1"/>
|
|
||||||
<stop offset=".996" stop-color="#99faff"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(100.163,-197.422,269.178,136.568,634.496,820.389)">
|
|
||||||
<stop offset="0" stop-color="#1d3f8f"/>
|
|
||||||
<stop offset=".005" stop-color="#24c7c1"/>
|
|
||||||
<stop offset=".996" stop-color="#99faff"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-27.909,34.974,-25.611,-20.437,798.016,616.774)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".533" stop-color="#fffefc" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.23,123.348,-324.387,16.383,416.235,681.342)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(10.378,73.441,-120.736,17.06,803.012,797.401)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-10.893,73.346,-69.368,-10.302,202.954,689.606)">
|
|
||||||
<stop offset=".265" stop-color="#000000" stop-opacity=".91"/>
|
|
||||||
<stop offset=".555" stop-color="#e33270" stop-opacity="0"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #122757 }
|
|
||||||
.s1 { fill: url(#g1) }
|
|
||||||
.s2 { fill: #fcfdff }
|
|
||||||
.s3 { fill: none;stroke: #1087b3;stroke-miterlimit:10;stroke-width: 4 }
|
|
||||||
.s4 { fill: #ffffff;stroke: #1087b3;stroke-miterlimit:10;stroke-width: 4 }
|
|
||||||
.s5 { fill: #ed926e }
|
|
||||||
.s6 { fill: #ffffff }
|
|
||||||
.s7 { fill: #e33270 }
|
|
||||||
.s8 { fill: url(#g2) }
|
|
||||||
.s9 { fill: url(#g3) }
|
|
||||||
.s10 { fill: #f2f6f9 }
|
|
||||||
.s11 { fill: none;stroke: #ffffff;stroke-miterlimit:10;stroke-width: 4 }
|
|
||||||
.s12 { fill: #ffa587 }
|
|
||||||
.s13 { fill: #d61e65 }
|
|
||||||
.s14 { fill: #2e86b8 }
|
|
||||||
.s15 { fill: url(#g4) }
|
|
||||||
.s16 { fill: url(#g5) }
|
|
||||||
.s17 { fill: #e0ac9b }
|
|
||||||
.s18 { opacity: .1;fill: #292929 }
|
|
||||||
.s19 { fill: #24c7c1 }
|
|
||||||
.s20 { fill: #e38266 }
|
|
||||||
.s21 { fill: #fffefc }
|
|
||||||
.s22 { fill: url(#g6) }
|
|
||||||
.s23 { fill: none;stroke: #8739c2;stroke-miterlimit:10;stroke-width: 1.5 }
|
|
||||||
.s24 { fill: url(#g7) }
|
|
||||||
.s25 { fill: #0e608f }
|
|
||||||
.s26 { fill: url(#g8) }
|
|
||||||
.s27 { fill: none;stroke: #000000;stroke-miterlimit:10;stroke-width: 2 }
|
|
||||||
.s28 { fill: none;stroke: #c9cdd1;stroke-miterlimit:10;stroke-width: 2 }
|
|
||||||
.s29 { fill: url(#g9) }
|
|
||||||
.s30 { fill: #1a7f8f }
|
|
||||||
.s31 { fill: url(#g10) }
|
|
||||||
.s32 { fill: #4641ab }
|
|
||||||
.s33 { fill: url(#g11) }
|
|
||||||
.s34 { fill: none;stroke: #e33270;stroke-miterlimit:10 }
|
|
||||||
.s35 { fill: url(#g12) }
|
|
||||||
.s36 { fill: none;stroke: #25333d;stroke-miterlimit:10;stroke-width: 1.5 }
|
|
||||||
.s37 { fill: none;stroke: #110809;stroke-miterlimit:10;stroke-width: 2 }
|
|
||||||
.s38 { fill: #51b7d6 }
|
|
||||||
</style>
|
|
||||||
<g id="BACKGROUND">
|
|
||||||
</g>
|
|
||||||
<g id="OBJEKTS">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m644 719.3h-183.1c-30 0-54.4-24.3-54.4-54.4v-506c0-30 24.4-54.4 54.4-54.4h183.1c30 0 54.4 24.4 54.4 54.4v506c0 29.9-24.5 54.4-54.4 54.4z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m643.3 709.9h-181.7c-25.4 0-45.9-20.6-45.9-45.9v-505.9c0-25.4 20.5-46 45.9-46h181.7c25.3 0 45.9 20.6 45.9 46v505.9c0 25.2-20.7 45.9-45.9 45.9z"/>
|
|
||||||
<g id="<Clip Group>" clip-path="url(#cp1)">
|
|
||||||
<path id="<Path>" class="s2" d="m709.2 160.5h-310.3v-57h310.3z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m770.1 732.1h-373.2v-84.5h373.2z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m723 484.6h-339.8v-15.7h339.8z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m723 329.4h-339.8v-15.7h339.8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s0" d="m481.1 106.3l1.2 11.8c0.8 7.7 8.2 13.7 17.1 13.7h106.1c8.9 0 16.3-6 17.1-13.7l1.2-11.8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 223.3h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 237h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 250.8h113.9"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s4" d="m487.1 293.1c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
|
||||||
<g id="<Clip Group>" clip-path="url(#cp2)">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m481 254.3q0.5 1.4 1.3 2.7c0.9 1.6 2.4 2.9 2.9 4.6 0.6 1.7 0.2 3.6 0 5.4-1.4 9.8 1.3 21.1 8 28.6q1 1.1 2.2 2h25.9q1.2-0.7 2.2-1.6c2.3-1.7 4.3-3.9 5.8-6.4 1.3-2.2 2.1-4.7 3.1-7 1.3-2.8 2.9-5.5 3.9-8.4 0.9-2.9 1.1-6.3-0.5-8.9-2.1-3.4-6.9-5-7.9-9-0.6-2.6 0.7-5.7-0.8-7.9-2.2-3.1-7.5-1.3-10.2-3.9-1.6-1.5-1.7-3.9-1.8-6.1-0.2-2.2-0.6-4.6-2.5-5.7-1.3-0.7-2.8-0.6-4.1-1.2-2-0.8-3.1-3-3.5-5.2-0.5-2.1-0.4-4.3-1.1-6.4-1.4-4-7-5.6-10.9-5.7-4.3-0.2-8.9 0.4-12.5 2.8-3.3 2.2-7.3 6.5-7.2 10.7 0.1 4.2 3.9 7.3 5.6 11.1 2.1 4.8 0.7 10.6 2.1 15.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m477.4 234.4q0.1-0.1 0.1-0.1c0.5-1.1 1.4-1.9 2.3-2.6 3.3-2.5 8.7-3.4 12.4-1.4 1.8 1 2.8 3 3.1 5 0.3 1.8 0.1 3.5 0 5.3-0.3 6.7 0.5 26.7 4.4 27.9 5 1.4 3.4 5.8 5 5.5-6 1.1-10.6 10.2-16.7 11-6 0.7-13.6-10.4-18.5-14 3.2-0.3 5.7-1.7 6.6-5.1 2.1-7.8 1.5-16.1 0.8-24.3-0.3-2.4-0.6-5.1 0.5-7.2z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m506.3 297.6q0-0.4-0.1-0.8c-0.5-4.4-0.8-8.9-1-13.3q-0.2-3.4-0.3-6.8c-0.1-1.7 0.4-5-0.5-6.3-2.9 1.9-5.4 4.9-8 7.3q-4.3 3.8-8.8 7.5c-0.4 0.3-15.9-13-17.6-14-1.7 1.2-1.9 6.6-2.3 8.6-0.6 3.3-1.3 6.6-1.3 10q0 3.9 0 7.8z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m538.4 297.6c-0.9-4.3-2.3-8.5-4.7-12.1-6.3-9.3-18.8-13-28.9-15.9-4.8-1.3-5 1.5-5.8 6.3-0.6 3.5-0.8 7.2-1 10.8-0.2 3.5-0.5 7.3-0.7 10.9z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m449.4 297.6h30.9c-0.8-2.9-1.7-5.8-2.4-8.6-1.1-4.8-3.2-9.8-4.6-14.7-0.4-1.5-0.7-3-1.1-4.5-3.3 0.2-7.3 2-10.5 2.9-5.2 1.5-11 3.5-13.4 8.3-2 4-1.1 8.7 0.1 12.9 0.3 1.3 0.7 2.5 1 3.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m500.9 233.4c0 11.2-7 20.3-15.7 20.3-8.6 0-15.7-9.1-15.7-20.3 0-11.2 7.1-20.2 15.7-20.2 8.7 0 15.7 9 15.7 20.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s5" d="m473.3 233.2c-0.8-0.7-1.8-1.2-2.9-1.2-1.1 0-2.2 0.5-3 1.2q-0.6 0.6-0.8 1.4-0.4 0.7-0.4 1.6c0.1 1 0.4 2.2 1.2 2.9 0.8 0.7 1.8 1.2 3 1.2 1 0 2.1-0.4 2.9-1.2q0.6-0.6 0.9-1.3 0.3-0.8 0.3-1.6c0-1.1-0.4-2.2-1.2-3z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m503.8 233.2c-0.8-0.7-1.8-1.2-2.9-1.2-1.1 0-2.2 0.5-2.9 1.2q-0.7 0.6-0.9 1.4-0.4 0.7-0.4 1.6c0.1 1 0.4 2.2 1.3 2.9 0.8 0.7 1.8 1.2 2.9 1.2 1.1 0 2.2-0.4 2.9-1.2q0.6-0.6 0.9-1.3 0.4-0.8 0.4-1.6c-0.1-1.1-0.4-2.2-1.3-3z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m501.9 215.3q-0.1-0.1-0.2-0.3-0.5-0.6-1.1-1.1c-3.4-3.7-7.7-6.6-12.5-8-5.4-1.7-11.4-1.6-16.7 0.5-1.6 0.7-3.1 1.5-4.3 2.7-1.3 1.2-2.2 2.8-2.3 4.5q0 0.6 0.2 1.3c-0.9 0.7-1.7 1.6-2.2 2.7-0.5 1.3-0.4 2.3-0.1 3.5-0.7 0.9-1.3 1.9-1.3 3.1 0 1 0.7 2.1 1.6 2.5-0.3 1.7-0.1 3.4 1.3 4.6 1.9 1.6 4.8 1.7 7.1 0.8 6.4-2.3 11.8-6.7 17.7-10 1.2-0.7 2.3-1.3 3.6-1.6 1.3-0.3 2.8-0.2 3.8 0.6 3.2 2.5 1.3 7.5 3.8 10.2 0.4 0.4 0.9 0.7 1.5 0.8 0.8 0 1.6-0.5 2.1-1.2 3.3-4.7 1.3-11.5-2-15.6z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m501.2 297.6c2.7-1 9.6-3.5 9.6-3.5l-5.2-24.5-5.6-1.9c0 0-2.4 11.4-3.2 22.1q-0.3 3.9-0.6 7.8z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m480.8 297.6q-0.4-2.8-0.9-5.6c-0.3-1.4-5.3-23.7-6.3-23.5 0 0-5.6 1.1-5.6 1.1l-1.7 28z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m480.9 244.5c0.9 4.8 6.8 4.8 8.3 0.2"/>
|
|
||||||
<path id="<Path>" class="s8" d="m495.5 248.9c-0.1 0.9-3.4 2.5-4.1 2.8-3.1 1.4-6.3 1.6-9.6 1.5 2.4 2.8 5 5.4 7.7 7.9 1.7 1.7 3.6 3.4 5.1 5.3 2.1-0.6 0.9-10.6 0.9-17.5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s4" d="m487.1 446.3c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
|
||||||
<g id="<Clip Group>" clip-path="url(#cp3)">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m481 421c7.5 0.1 14.9-0.9 22.1-2.9 6.2-1.7 12.5-4.3 16.7-9.1 2.2-2.4 3.7-6.1 2.1-8.9-1.4-2.3-4.3-3.1-6.7-4.4-4.2-2.4-6.6-6.8-8.2-11.2-1.6-4.4-1.8-10.3-4.9-13.9-2-2.4-6.3-3.1-9.1-3.2-4.3-0.2-8.9 0.5-12.5 2.8-5.2 3.4-7.6 8.9-8.8 14.8-0.7 3.1-0.7 6.3-1.5 9.3-1.6 5.6-5.7 10.2-8.5 15.3-0.6 1-1.1 2.2-0.9 3.4 0.2 0.9 0.8 1.6 1.5 2.3 4.6 4.6 11.7 5.7 18.3 5.7q0.2 0 0.4 0z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m477.4 387.6q0.1-0.1 0.1-0.1c0.5-1 1.4-1.9 2.3-2.6 3.3-2.4 8.7-3.4 12.4-1.4 1.8 1 2.8 3 3.1 5.1 0.3 1.7 0.1 3.5 0 5.2-0.3 6.7 0.5 26.8 4.4 27.9 5 1.4 3.4 5.8 5 5.5-6 1.1-10.6 10.2-16.7 11-6 0.7-13.6-10.4-18.5-14 3.2-0.3 5.7-1.7 6.6-5.1 2.1-7.8 1.5-16.1 0.8-24.3-0.3-2.4-0.6-5 0.5-7.2z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m533.7 438.7c-3.6-5.2-8.8-8.6-14.5-11-2.8-1.1-5.8-2.1-8.8-2.9q-2.2-0.6-4.4-1.2c-1.3-0.3-3-1.1-4.4-1.1 0.3 1.3-1.4 2.9-2.2 3.7-3.7 3.4-9 4.7-13.9 4-4.9-0.8-9.4-3.4-13-6.8-1.3 0.2-2.7 0.4-4.1 0.7-2.2 0.4-4.4 1.2-6.7 1.9-5.2 1.5-11 3.4-13.4 8.2-2 4-1.1 8.7 0.1 13 0.3 1.2 0.7 2.4 1 3.6h17 13.9 17 9 32.1c-0.9-4.3-2.3-8.5-4.7-12.1z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s5" d="m500.9 386.6c0 11.2-7 20.3-15.7 20.3-8.6 0-15.7-9.1-15.7-20.3 0-11.1 7.1-20.2 15.7-20.2 8.7 0 15.7 9.1 15.7 20.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s5" d="m473.3 386.5c-0.8-0.8-1.8-1.3-2.9-1.3-1.1 0-2.2 0.5-3 1.3q-0.6 0.5-0.8 1.3-0.4 0.7-0.4 1.6c0.1 1.1 0.4 2.2 1.2 2.9 0.8 0.8 1.8 1.2 3 1.2 1 0 2.1-0.4 2.9-1.2q0.6-0.5 0.9-1.3 0.3-0.8 0.3-1.6c0-1.1-0.4-2.2-1.2-2.9z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m503.8 386.5c-0.8-0.8-1.8-1.3-2.9-1.3-1.1 0-2.2 0.5-2.9 1.3q-0.7 0.5-0.9 1.3-0.4 0.7-0.4 1.6c0.1 1.1 0.4 2.2 1.3 2.9 0.8 0.8 1.8 1.2 2.9 1.2 1.1 0 2.2-0.4 2.9-1.2q0.6-0.5 0.9-1.3 0.4-0.8 0.4-1.6c-0.1-1.1-0.4-2.2-1.3-2.9z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m501.9 368.5q-0.1-0.1-0.2-0.3c-2.4-2.9-5.2-5-9.1-5.6-3-0.5-6.1-0.2-9.2-0.1-4.6 0.1-9.4-0.5-13.7 1-4.4 1.5-8.3 5.7-7.4 10.3 0.7 4 5 6.5 9 6.7 4.1 0.2 8-1.3 11.8-2.9 3.1-1.2 6.4-3.1 9.6-3.9 1.3-0.3 2.8-0.1 3.8 0.7 3.2 2.4 1.3 7.4 3.8 10.1 0.4 0.4 0.9 0.7 1.5 0.8 0.8 0.1 1.6-0.5 2.1-1.2 3.3-4.7 1.3-11.5-2-15.6z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m480.9 397.8c0.9 4.7 6.8 4.7 8.3 0.1"/>
|
|
||||||
<path id="<Path>" class="s9" d="m495.5 402.1c-0.1 1-3.4 2.5-4.1 2.8-3.1 1.4-6.3 1.7-9.6 1.5 2.4 2.8 5 5.4 7.7 8 1.7 1.7 3.6 3.4 5.1 5.3 2.1-0.6 0.9-10.7 0.9-17.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 374.5h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 388.3h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 402h113.9"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 523.8h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 537.6h113.9"/>
|
|
||||||
<path id="<Path>" class="s3" d="m556.7 551.3h113.9"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s4" d="m487.1 599.6c-27.8 0-50.2-22.5-50.2-50.2 0-27.8 22.4-50.2 50.2-50.2 27.7 0 50.2 22.4 50.2 50.2 0 27.7-22.5 50.2-50.2 50.2z"/>
|
|
||||||
<g id="<Clip Group>" clip-path="url(#cp4)">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m497.8 508.1c-1.8-0.4-3.6-0.6-5.3-0.5-4.7 0.1-9.2 1.8-13.5 3.8-2.9 1.3-5.8 2.9-8.2 5.1-1.6 1.4-3 3.2-3.9 5.2-1 2.2-0.6 4.1-0.7 6.4-0.2 5.6-0.4 11.2-0.1 16.9 0.3 7.1-1 16.4 6.7 20.2 2.7 1.5 6 1.3 9.1 0.9 6-0.7 11.8-2.1 17.4-4.3 3.9-1.4 7.8-3 9.4-7.1 1.1-2.7 1.7-5.6 1.9-8.5 0.3-2.9-0.3-5.6 0.1-8.4 0.6-5.2 0.4-10.6-0.8-15.7-0.8-3.6-2.1-7.2-4.6-9.9-2-2.1-4.7-3.5-7.5-4.1z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m541.6 627.1c-0.3-2.4-0.9-4.7-1.5-7.2-0.5-2.4-1.4-4.7-2.5-6.9q-0.8-1.6-1.8-3.1c-0.3-0.5-0.8-1-1-1.5-0.1-0.6-0.1-1.2-0.3-1.8-0.1-0.7-0.5-1.4-0.9-2q-0.6-1-1.1-2-0.5-0.7-0.9-1.5c-2.5-3.7-6.6-5.6-10.8-6.7-4.4-1.2-9-1.4-13.5-2.3-1.3-0.2-2.6-0.4-3.9-0.5-5.5-0.3-11 0.2-16.4 0.8q-3.3 0.4-6.5 0.8-4.1 0.6-8.3 1.2c-1.2 0.1-2.5 0.2-3.7 0.4q-2 0.2-4.1 0.7c-4.9 1.2-9.8 2.4-14.2 5q-3.3 1.9-6.1 4.5c-0.7 0.7-1.8 1.3-2.6 2q-1.4 1-2.7 2.1c-3.5 3-6.7 6.2-9.5 9.9q-2.9 3.8-5.1 8.1z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m475.4 562c1.4-6.2 8.5-11.3 14.4-12.6 1.8-0.4 3.7-0.5 5.4 0.1 4.2 1.3 6.2 6.3 6.9 10.3 1.1 5.7 1 11.9 1.5 17.7 0.3 3.4 0.5 6.9 2 10 1.8 3.7 5 5.2 9 5.7 0 3.8-1.7 7.4-3.6 10.6-2.1 3.6-4.8 6.9-8.5 9.1-3.8 2.4-8.5 3.3-12.9 2.6-5.2-0.8-9.9-3.6-13.8-7.2-2.2-2.1-4.4-4.5-6-7.1-0.2-0.4-4.1-6-3.7-6.1q1.5-0.2 3-0.5c0.7-0.2 1.5-0.3 2.2-0.6 3.2-1.4 3.6-5.5 3.9-8.6 0.6-5.6 0.7-11.3 0.2-16.9-0.1-1.6-0.3-3.3-0.2-4.9q0-0.8 0.2-1.6z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m502.7 526.2c-1.3-1.2-2.8-2.2-4.3-3.1-2.8-1.8-6-3.2-9.4-3.2-6.3-0.2-14.1 1.9-16.4 8.5-0.7 2.1-0.9 4.4-1.3 6.7-0.7 5.4-2.2 10.8-2.6 16.3-0.2 4.1 0.3 8.5 2.2 12.2 2 4 5.6 6.6 9.7 8.3 9.4 3.9 22.9 2.3 26-8.8 0.8-2.7 1.6-5.4 1.6-8.3 0-2.8-1-5.6-1.6-8.4-0.9-3.8-0.9-7.5-1.1-11.4-0.2-3.1-0.4-6.4-2.8-8.8z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m467.4 526.8c0.4 3.1 3.4 5.7 7.9 5.7 8.7 0.1 26.1-1.1 30.9-9.8 0.9-1.7 1.1-3.8 0-5.3-0.9-1.2-2.4-1.8-3.9-2.1-7-1.8-14.3 0.3-21.5 1.6-3 0.5-6.1 0.9-8.8 2.4-3.6 2-5 4.9-4.6 7.5z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s10" d="m484.3 554c0.1 1.5 1 3.2 2.6 3.5 1 0.2 2.5 0.5 3.5 0.3 1.7-0.5 3-2.2 3.6-3.8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s0" d="m510.5 562.1q0.1-0.2 0.1-0.3 0.4-5.7 0.3-11.5c-0.1-2.7-0.2-6.3-1.3-8.8q-0.1-0.3-0.3-0.5c-0.4-0.5-1.2-0.7-1.8-0.4-1.6 0.7-1.2 3.4-1.4 4.8-0.6 4.9 0.3 11.9-5 14.3-2.4 1.1-5.1 1.1-7.7 0.9-2.6-0.1-5.2-0.5-7.7-0.1-1.8 0.2-3.4 0.8-5.1 0.9-4.2 0.3-6.6-3-8.2-6.5-1.1-2.4-1.8-5-2.5-7.5q-1.2-4.6-2.5-9.2c-0.1-0.3-0.2-0.7-0.5-0.6-0.3 0-0.4 0.3-0.5 0.5-0.8 2.9-0.7 6.3-1 9.3-0.4 6.9 0.8 12.5 3.3 18.9 1.4 3.6 2.7 7.8 6.2 9.8 7 3.8 15.5 4.4 23.2 2.1 3.8-1.1 7.5-3 9.7-6.3 1.9-2.9 2.4-6.4 2.7-9.8z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m503.5 540c-1.4 2.1-1.4 5.5 0.2 7.5 3.3 4.2 8.1-0.1 7-5.1-1-4.2-4.8-5.7-7.2-2.4z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m503.8 554.5q-0.3 0-0.6-0.1c-0.6 0-1.3 0.1-2 0-1.5-0.4-2-2.3-2.7-3.6-2.2-3.8-7.6-4.9-11.5-3.8-2 0.5-3.9 1.8-5.1 3.5-0.4 0.6-0.7 1.1-1.1 1.6-1.2 1.2-3.1 1.1-4.7 1.5-3.3 0.9-7.8 5.2-3.5 8.1 3 2 7.3-1.1 9-3.5 1-1.3 1.8-2.8 2.6-4.3 0.8-1.5 1.1-2 2.8-2.2 2.2-0.2 4.6-0.2 6.5 1.1 1.8 1.2 2.8 4.4 3.8 6.4 0.6 1.1 1.3 2.2 2.3 2.9 2 1.4 5.4 0.1 6.3-2.1 0.7-1.9 0.2-4.8-2.1-5.5z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m467 540c-1.5 2.1-1.5 5.5 0.1 7.5 3.4 4.2 8.2-0.1 7-5.1-0.9-4.2-4.7-5.7-7.1-2.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s11" d="m556 568.1h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 576.9h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 585.8h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 594.6h86.4"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s11" d="m556 422.7h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 431.6h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 440.4h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 449.2h86.4"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s11" d="m556 269.5h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 278.3h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 287.2h86.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m556 296h86.4"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s3" d="m487.1 293.1c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m487.1 446.3c-27.8 0-50.2-22.4-50.2-50.2 0-27.7 22.4-50.2 50.2-50.2 27.7 0 50.2 22.5 50.2 50.2 0 27.8-22.5 50.2-50.2 50.2z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m487.1 599.6c-27.8 0-50.2-22.5-50.2-50.2 0-27.8 22.4-50.2 50.2-50.2 27.7 0 50.2 22.4 50.2 50.2 0 27.7-22.5 50.2-50.2 50.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m396.4 324.8c-2.8-6.8-3.1-13.6-3.5-20.6-2.8-0.9-7.5 0.5-11.2 1.1-2.1 0.4-9.2 0.6-9.8 2.9-0.7 2.7 2.9 7.2 4 9.5 2.3 4.5 3.6 10.2 3 15.2-0.4 3.1-1.5 6-1.7 9.1-0.1 1.8 0.2 3.7 0.8 5.4 3.5 9.9 10.6-0.1 16.2-1.2 4.5-0.9 11.9-1.9 9.9-8.4-2.9-4.1-5.8-8.3-7.7-13z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m382.5 314.5c5.2-0.8 4.1 4.6 7.8 0.9 0.9-0.8 4.9-7.9 4.7-9.1-1.5-7.4-1.9-17-5.3-20.4-4-3.9-11.5-4.5-16.7-5-3.7-0.3-7.8 0.4-10 3.3-1.8 2.3-1.9 5.5-2 8.4-0.1 6-1.2 12.6 2.9 17.5 3.3 3.9 8.6 5.2 13.6 4.9 2-0.1 2.7-0.6 4.8-0.7 0.2 0 0.5 0 0.8 0.2 0.2 0.1-0.4-0.2-0.6 0z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m344 656.6c1 8.7 2 17.3 2.3 26 0.3 7.2-3.1 17.9 2.2 23.5 5.5 5.8 12.9 4.1 17.5-1.9 7.2-9.5 4.1-25.1 6.1-36.3 2.9-16.6 4.9-33.4 5.8-50.3 0.4-7.4 0.5-15.5-3.7-21.7-6.9-10.2-22.5-7.8-28.8 1.8-4.5 6.9-5 15.6-4.8 23.9 0.3 11.7 1.9 23.4 3.4 35z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m366.5 695.1c-3.2 1.6-6.4 3.1-10 1.9-3.4-1.1-6.6-3.4-8.9-6.2-0.5-0.5-0.9-1-1.4-1.4-2.1-1.3-4.8 0.3-6.2 2.3-1.4 1.9-2.2 4.4-4.2 5.8-0.8 0.7-1.9 1-2.9 1.4-4 1.5-7.9 3-12 4.4-3.3 1.1-8.5 4-12 4-1.5 0.5-3.2 1.3-3.9 2.9-0.6 1.4 0 3.2 1 4.3 2.5 2.9 6 3.6 9.6 3.8 5.4 0.2 11.1 0.5 16.4 0.6 4.3 0 8.2-1.9 12.2-2.9 4.5-1.1 7.1 0.3 11.3 1.9 18 6.6 20.1-12.9 15.6-25.2-1.5 0.8-3 1.7-4.6 2.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s13" d="m363.8 458.9c8.6-9.1 23.2-7.5 35.1-4 16.2 4.8 11.9 24 6.4 35.7-3.7 8.1-6.2 12.7-7.5 21.9-1.5 10.7-4.5 21.3-9 31.1-1.9 4.3-4.1 8.6-4.3 13.2-0.2 6.9 4.1 13.4 3.5 20.3-0.5 5.2-3.7 9.8-4.4 14.9-0.5 4.3 0.8 8.6 1.7 12.9 1.8 8.5 2.2 17.3 1 26-1.4 11-3.9 8-13.7 8.3-4.4 0.1-51.9-2.5-51.8-2.9q4.4-24.1 8.9-48.2c0.5-3.2 1.1-6.4 1.3-9.6 0.2-3.8-0.2-7.7-0.5-11.5-2.4-36.2 9-78.7 32.3-107q0.5-0.6 1-1.1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m411.1 437q0-0.8-0.1-1.7c-0.9-14.1-0.9-28.4 0.1-42.6 0.5-6.6 1.8-13.4 1.5-20-0.3-6.6-1.1-13.1-2.1-19.7-1-6.3-3.4-19.8-11.3-20.6-5.9-0.6-16.3-0.7-21.2 3.4-2.6 2.2-4 6.9-6.1 9.6-2.6 3.5-5.8 6.5-8.8 9.8-6 6.6-11.5 15.3-9 23.8 1.7 5.5 6.4 10 6.8 15.7 0.2 3-0.9 6.1-0.2 9 0.6 2.7 2.6 4.8 4 7.2 3.5 6.1 2.7 13.2 1.1 19.8-1.1 4.6-5.7 10.6-3.3 15.4 1.7 3.5 7.3 3.2 10.6 3.6q7.9 0.8 15.9 1.3c2.9 0.2 6.1 0.8 8.9 1.6 2.8 0.8 6.1 3 9 1.2 0.7-0.5 1.3-1.2 1.8-1.9 2.9-4.3 2.8-9.7 2.4-14.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s15" d="m403.4 361c1.1 15.1-3 30-7.1 44.6-0.6 2.2-1.2 4.4-2.5 6.3-1.3 1.9-3.5 3.3-5.8 3.1-9.5-0.7-14.2-25.2-12.1-32.6 2.8-10 18-21.2 26-26.6 1.1 1.6 1.4 3.2 1.5 5.2z"/>
|
|
||||||
<path id="<Path>" class="s16" d="m403.8 482.1c-3.7-4.5-10.5 2.2-14.1 4.4-9.1 5.5-18.3 11.1-28.7 13.3-3.5 0.7-7.2 1-10.4 2.5 11.4 13.4 22.9 26.7 34.9 39.6 4.3-3.8 6.2-12.8 7.3-17.7 2.2-9.1 5-18.1 7.9-27 1.2-3.9 6.4-11.2 3.1-15.1z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m327 328.5q0.7-5 1.9-9.8c0.5-2 3.5-1.1 3 0.9q-0.2 0.7-0.3 1.5c0.9 0 1.8 0.8 1.5 1.9q-0.1 0.5-0.2 0.9c0.6 0 1.2 0.2 1.6 0.7-0.4 1.7-1.2 3.2-0.7 5 0.4 1.7 3.2 3.4 3 4.3 0 0 0.1 0 0.1 0q0.1 0.1 0.2 0.2c0.1 0.1 0.3 0 0.3-0.1q0.2-0.1 0.3-0.1c2.1 2.6 5.3 3.6 4.9 11.5 0 2 0.2 15.6-0.6 15.5-2.6-0.1-7.4-1.2-10-1.5-0.5-0.1-4.4 3.2-4.7 0-0.1-2.1 5.2-16.3 5.1-17.3q0-0.5-0.1-0.9c-0.5-0.7-0.4-1.3-0.9-2q-0.3-0.3-0.6-0.6 0 0 0 0-0.2-0.3-0.4-0.6c-1.1-1.5-2.4-3.5-3.1-5.3-0.4-1.1-0.3-1.8 0-2.9-0.3-0.4-0.4-0.8-0.3-1.3z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s14" d="m403.3 348.9q-0.3-0.9-0.6-1.8c-0.6-1.6-1.3-3.2-2.5-4.3-1.5-1.5-3.4-2.2-5.3-2.7-7.7-1.9-16.2 0.5-21.8 6-2.3 2.2-4 4.8-5.6 7.5q-3 5.3-5.2 10.9c-0.7 1.7-1.3 3.5-2.5 4.8-1.4 1.5-3.3 2.4-5.1 3.3-6.2 3.4-10.7 8.3-14.8 14-0.9-4.5 0.6-9.2 1.6-13.7 1.4-6.1 2-12.4 1.7-18.6-0.1-0.4-0.1-0.8-0.4-1-0.2-0.2-0.6-0.2-0.9-0.3q-6.3-0.1-12.6-0.3c-0.5 0-1.1 0-1.6 0.3-0.4 0.4-0.5 1-0.6 1.5-1.9 11.6-9.2 22-9.5 33.7-0.2 5.4 1.1 10.6 2.4 15.8 1.1 4.6 7.1 17.4 13.5 15.4 10.5-3.1 21-7.6 28.9-15.4 1.7-1.7 3.3-3.4 5.2-4.7 4-2.6 9.2-2.9 12.9-5.9 3.7-3.1 4.9-8 7.6-11.9 3-4.1 7.6-6.9 10.7-10.9 4.8-6 6.4-14.3 4.5-21.7z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m340.5 335.8c-2.7-10.9-6.9-21.5-10.7-32-0.7-1.9-3.8-1.1-3.1 0.8q0.2 0.7 0.5 1.4-0.1 0.3-0.1 0.5l2.1 5.9c1.8 5.8 3.6 11.6 6 17.1l1.1 3.2q0.5 2 1 3.9c0.5 2.1 3.7 1.2 3.2-0.8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m335.4 333.3c0.4-0.9 0.8-0.5 1.2 0 0 0.3 0.1 0.6 0.4 0.7 0.3 0.1 0.6 0 0.8-0.2 0.7-0.4 1.2-1.5 1.2-2.2q0-0.1 0-0.1-0.1-0.3-0.1-0.6-0.1-0.1-0.3-0.2c-0.8-0.5-1.3-1-1.7-1.8l-0.7-1.9c-0.3-1.3 1.5-2 2.5-0.3 0.6 1.2 2 1.3 2.6 1.8 0.7 0.6 1.2 1.4 1.3 2.3q0 0 0 0.1c0.3 0.9 0.3 2.5 0.3 4.2q0 0.2 0 0.4c1 2.9 0.5 5.9-1.5 8.2-0.3 0.4-0.8-0.1-0.5-0.4q0.1-0.2 0.2-0.3-0.1-0.1-0.1-0.2c-1.2-0.2-3.1-1.8-4.5-4.8-0.4-0.8-0.9-1.4-1-2-0.7-0.5-0.5-1.9-0.1-2.7z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Clip Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m359.9 305.1c2 1.3 4.4 1 6.1-0.5 0.6-0.5 1.3 0.4 0.7 0.9-2.1 1.9-5.1 2.1-7.5 0.6-0.7-0.4 0.1-1.4 0.7-1z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>" clip-path="url(#cp5)">
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s17" d="m378 295.3q0.2-0.7 0.7-1.1c1.4 0.1 2.6 0.8 3.2 2.2 0.5 1.5 0 3.8-1.9 4-0.8 0.1-1.8-0.2-2.5-0.7q0-0.6 0-1.4 0.1-1.5 0.5-3z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m350.6 565.1q0 0.3 0 0.7c0.2 3.9 3.4 7 6.9 8.7 5.7 2.8 12.3 3.5 18.1 6.1 1.4 0.6 2.7 1.5 4 2.3 0.7 0.6 1.5 1.1 2.1 1.8 0.7 0.9 1.1 2.1 1.5 3.1 1 2.5 3.4 8.1 6.2 8.8 3.1 0.8 6.2-3.2 7.2-5.6 1.3-3.1 3.1-6.2 3.9-9.5 1-3.3 0.8-7.1-1.1-9.9-3.1-4.4-9-5.1-14-7-4.8-1.8-9.2-4.5-13.8-6.8-3.8-1.9-9.2-5.1-13.6-4.8-3.6 0.2-5.4 4.3-6.5 7.7-0.4 1.5-0.8 2.9-0.9 4.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m391.9 566.8c1 4.1 3.4 9.7 1.6 13.5-1.2 2.7-3 4.5-6 5.4-1.2 0.3-2.5 0.4-3.7 0.8-1.2 0.4-2.4 1.1-2.9 2.3-0.6 1.3-0.3 2.9 0.6 4.1 1.5 2.2 4.2 3 6 5 1.3 1.4 1.8 3.1 2.6 4.8 2.7 5.7 4 11.2 5.5 17.3 0.7 2.7 1.9 5.6 4.4 6.9 1.9 0.9 4.1 0.6 5.9-0.3 9.9-5 5.1-23.1 2.5-31.1-1-3.2-2.3-6.5-1.4-9.7 0.7-2.3 2.5-4.2 3.4-6.4 1.6-3.8 0.5-10.4-3.6-12.7-1.3-0.7-15.3-1.4-14.9 0.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m291.7 548.1c0.8-7 6.5-17.6 12.1-22 9.2-7.1 25.3 3 33.4 7.7 15 8.8 29.3 19.1 44.1 28.3 1.1 0.8 2.3 1.5 3.2 2.6 3.3 4 0.5 10.5-4.1 12.8-4.6 2.4-10.1 1.7-15.2 0.9-17.9-3-34.6-8.3-51.7-13.8-6.2-2-18.2-4.1-21.2-10.6-0.8-1.9-0.9-3.9-0.6-5.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s0" d="m373.6 267.3c-0.7 1-1.4 2-2 3-3.1 4.9-2.1 9.9 0.7 14.6 0.9 1.6 2.1 3.1 2.8 4.8 1.3 3.5 0 7.4 0.8 11 0.7 3.4 3.1 6 5.4 8.5 4.3 4.8 7.8 7.7 14.2 6.2 4.3-1 11.6-3.6 14.9-6.8 4.5-4.4 3.7-13.2 3.4-18.9q-1.2-24.8-0.4-49.6c0.3-8.1 1.4-16.2 1.3-24.3 0-6.2 0.6-13.7-1.6-19.6-1.7-4.4-5.5-8.3-10.2-8.7-3.9-0.2-7.5 2-10.3 4.7-8.6 8.2-11.4 21.9-6.7 32.8 1.1 2.5 2.5 5.5 1.1 7.9-0.7 1-1.8 1.7-2.8 2.4-4.3 2.9-8.1 7.3-8.3 12.5-0.2 4.2 2 8.3 1.3 12.4-0.4 2.7-2 4.9-3.6 7.1z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m411.2 442.6h-50.2c-0.4 3-1 6-1.7 8.9-1 4.4-4.8 6.1-8.7 7.8-16.9 7.4-35.2 11.7-51.7 19.9-16.5 8.3-31.9 21.7-36 39.7-1.9 8.6-2.9 18.8 2.2 26.3 6.2 9.1 16.3 12.4 24.6 19 3.5 2.8 6.4 6.6 10.7 8 3.7 1.2 7.8 0.3 11.2 2 4.6 2.3 6.9 8.5 11.9 9.1q4.8-20.2 9.5-40.4c1-4.3 5.4-10.9 2.3-13.8-1.7-1.5-21.6-6.6-22.9-5.9 8.1-4.6 18.1-3 27.4-2.8 13.8 0.3 27.5-3.1 39.6-9.5 5.8-3.1 10.7-7.3 16.2-10.7 6-3.8 11.5-8.6 14.3-15.4 3-7.6 2.8-16 2.4-24q-0.4-9.1-1.1-18.2z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m357 289.5q-0.4-0.2-0.7-0.5c-1.2-1.3-1.8-3-2.2-4.6-0.8-2.7-1.3-5.5-0.7-8.1 0.6-2.7 2.7-5.2 5.4-5.5 0.9-0.1 1.8 0.1 2.7-0.1 1.8-0.3 3.1-1.9 4-3.5 0.8-1.6 1.4-3.3 2.4-4.8 1.2-1.9 3.1-3.2 5-4.4 3-1.9 6.6-3.6 10-2.6 3.7 1.2 5.7 5.2 6.1 9 0.3 3.7-0.6 7.5-0.7 11.3-0.1 2.3 0 4.5-0.4 6.7-1.3 7.1-8.6 6.9-14.4 7.6-4.2 0.6-12.5 2.5-16.5-0.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s18" d="m817.3 812.6h-273.1c-6.5 0-11.8-5.2-11.8-11.7 0-6.6 5.3-11.8 11.8-11.8h273.1c6.5 0 11.8 5.2 11.8 11.8 0 6.5-5.3 11.7-11.8 11.7z"/>
|
|
||||||
<path id="<Path>" class="s18" d="m497.1 830.3h-60.9c-4.4 0-7.9-3.5-7.9-7.8 0-4.4 3.5-7.9 7.9-7.9h60.9c4.3 0 7.8 3.5 7.8 7.9 0 4.3-3.5 7.8-7.8 7.8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m590 803.7h230.3c12.6-4.7 24.5-11.1 34.4-20.1 26.5-24.2 26.7-60.9 11.9-91.1-9.4-19-14-40.2-13.4-61.4 0.3-10.3 1.9-20.7 0.6-30.9-2.8-21.7-18.5-40.5-38.2-50.1-19.6-9.6-42.6-10.8-64.1-6.6-34.8 6.7-62.7 28.5-66 65.3-1.9 21 2.1 42.3 0.3 63.4-1.6 17.8-8.9 36.7-23 46.7q-3.9 2.8-8.5 4.5c-9.9 3.8-21.1 3.4-31 7.2-6.8 2.6-12.7 7.1-18.4 11.7-4.5 3.6-9.2 7.6-11.4 12.9-2.8 6.6-5.1 15.6-7.2 22.6-2.2 7.3-1.6 15.4 1.7 22.3q0.9 1.9 2 3.6z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m717.9 670.5c-6.5-6.4-13.6-12.2-19.7-18.9-9.4-10.1-17-23.2-15.5-36.9 0.5-4.8 2.1-9.8 0.8-14.4-1.1-3.6-3.8-6.4-5.7-9.6-4.8-7.9-5.2-18-1.9-26.6 3.4-8.6 10.2-15.6 18.2-20.1 3.7-2.1 7.8-3.8 10.6-7 9.2-10.3 1.7-27.2 9.3-38.5 7.2-10.6 27.3-0.2 35 4.8 3.9 2.5 7.1 5.3 8.9 7.9 4.5 6.4 6.6 14.2 7.8 21.9 0.8 4.8 1.4 10.1 4.9 13.5 3.3 3.3 8.2 3.9 12.6 5.4 7.2 2.3 13.4 7.3 17.4 13.7 2.9 4.6 4.7 10.1 8.9 13.6 3.7 3.1 8.6 4.1 13 6.1 25.9 11.4 25.5 46.8 21.5 70.2-2.9 16.7-8.4 34.1-21.6 44.8-6.2 5-14.7 8.5-22.7 9.5-8.9 1.2-15.7-7.5-24-10.8-2.4-0.9-5-1.7-7.7-1.9-2.2-0.1-4.5 0.2-6.7-0.1-7.7-0.9-15-3.9-22-6.9-2-0.9-4.1-1.8-5.9-3.1-2.3-1.8-4.1-4.2-5.9-6.5-3-3.6-6.2-6.9-9.6-10.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m696.2 605.5c-8.2 23.9-30.2 42.4-55.1 46.4 3.1 5.3 4.4 10.1 6 16 17.1 0.2 35-4.5 47.2-16.6 12.2-12 17-32.2 8.4-46.9-1.1-1.8-5.9-0.9-6.5 1.1z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s21" d="m686.9 595.6c2.9-7.8 8.1-15.4 11.8-22.5q3.2-6.2 6.4-12.4c1.4-2.8 3.1-8.7 6.3-9.9 2.5-0.9 5.6 1.3 7.9 2.1 3.5 1.3 7 2.2 10.5 3.5 6.9 2.4 13.7 5.6 18.7 11 5.2 5.7 8.8 13.2 8.2 21.1-0.3 4.5-2.3 8.7-3.3 13.1-1.3 5.1-1.2 10.4-1.1 15.6 0.4 16.2 1.7 32.4 3.7 48.4 0.4 2.8 0.8 5.8-0.3 8.4-2.8 6.6-20.2 4.9-26.4 5.5-9.9 0.8-21.3 3.2-30.6-1.3-1.2-10.2-1.8-20.5-1.8-30.8 0.1-8.6 2.4-17.3-3-24.6-4.7-6.4-10.3-12.2-8.8-20.7 0.4-2.2 1-4.4 1.8-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s12" d="m708.6 547.6c0.1-2.7 0.3-5.4 0-8.1-0.2-2.1-1.8-3-3.4-4.4-3.3-2.7-5.5-6.5-6.9-10.6-3.3-9.8-3.8-21.8 5.4-28.7 5.2-3.9 12.8-4.6 18.3-1 7.7 5 8.8 15.7 9.1 25q0.3 10.7 0.6 21.5c0.2 7.7 0.9 17.5-7.2 21.5-2.8 1.4-6.1 1.8-9.1 1-1.8-0.5-3.5-1.4-4.7-2.8-3.1-3.5-2.3-9.2-2.1-13.4z"/>
|
|
||||||
<path id="<Path>" class="s22" d="m711.1 538.4c0.7 1.1 1.6 2.2 2.2 3.4 0.8 1.9 1.4 3.8 2.2 5.6 1.5 3.3 3.6 6.3 6.1 8.8 1.2 1.2 2.5 2.2 4.1 2.6 1.6 0.4 3.4 0 4.4-1.3 0.5-0.8 0.7-1.8 0.8-2.8 1.2-8.9 1.8-18.1 0.1-26.9-4.5 6-12.5 10.7-19.9 10.6z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s23" d=""/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s24" d="m531.8 801.5q1.4 1.2 2.8 2.2h244.8c10.9-5.1 20.9-12 28.3-21.3 9.5-12 14.1-28.6 9.1-43.1-2.7-7.6-7.7-14.2-13.3-19.9-15-15.4-35-25.7-56.2-29.3l11.9 1.4c-28.1-7.5-57.7-5.4-86.7-3.3q-39.9 2.9-79.8 5.9c-17.5 1.2-35.2 1.7-47.6 15-13.2 14.2-21.9 32.6-24.5 51.7-2 14.6 0.2 31 11.2 40.7z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m515.7 791.2q5.6-5.9 11.3-11.7c4.1-4.2 8.2-8.5 11.5-13.4 2.7-4.1 4.9-8.7 6.3-13.5 1.2-4.3 1.7-9.1-0.4-13-2.4-4.4-7.9-6.5-12.8-6-5 0.5-9.5 3.2-13.3 6.4-8.6 7.3-14.2 17.3-19.4 27.2-5.5 10.3-11.2 19.8-18.5 29-2.3 3-4.8 7-3 10.4 1.4 2.7 4.8 3.5 7.8 3.8 6.2 0.6 12.2-0.5 16.7-5.1q6.9-7.1 13.8-14.1z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m483.5 794.8c-0.8-0.4-1.7-0.6-2.6-0.4-2.6 0.7-4.4 4-6.9 5.3-3.7 1.7-7.7 2.9-11.6 3.8-2.4 0.6-4.7 1-7.1 1.4q-5.5 0.9-11 1.8c-2.5 0.5-5 0.9-7.3 2-6.4 3.2-5.5 10.7 0.6 13.5 4.4 2 10.3 2 15.1 1.3 12.2-1.9 24.5 1.3 36.7 0 9.2-1 11.8-7.9 14.3-15.9 0.3-1.2 0.8-2.4 1.1-3.6-2.9-1.2-6.8-0.7-10-1.9-3-1.1-5.7-2.7-8.1-4.8-1-0.9-2-1.9-3.2-2.5z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m757.9 676.3c-1.2-4.8-2.9-9.7-6.5-12.8-3.5-3.2-9.4-3.6-12.4 0.2-1 1.2-1.6 2.9-2.6 4.1-3.1 3.8-10.8 1.3-14.7 1.2-6.2-0.2-12.4 0.2-18.6 0.6-15.1 1-30.2 2.3-45.2 3.6q-21.1 1.9-42.2 3.7c-7.1 0.6-14.3 1.6-21.5 2-6.2 0.3-11.3-1.1-17.4 1.7-5.1 2.4-9.5 6.2-13.7 9.9-6.5 5.5-13 10.9-19.3 16.5-3.7 3.2-7.3 6.4-10.7 9.7-9.8 9.4-18.8 19.5-27.8 29.6q-11.4 12.8-22.7 25.6c14.4 11.2 27.5 23.9 40.3 36.9 2.3-2.1 4.5-4.6 6.1-6q5-4.5 9.7-9.3c1.6-1.6 3.3-3.3 3.9-5.5 0.5-1.7 0.4-3.6 0.7-5.3 1.3-5.8 7.5-8.7 11.9-12.5 6.5-5.4 7.4-13.1 11.5-20 3.7-6.1 11.2-8.8 16.2-13.8 4.7-4.8 7-11.3 11-16.7 3.2-4.4 11.3-10.4 16.8-6.4 4.3 3.2 3.7 10.6 9 13.2 3.6 1.8 7.9 1.7 11.8 2.4 13.3 2.3 26.8 3.7 40.2 5q11.4 1.1 22.9 2.2c12.7 1.3 25.7 2.5 38.1-1.2 9.7-2.9 19.2-9.5 24.1-19.3 1.2-2.3 2-4.8 2.6-7.4 2.4-10.3 0.8-22.3-1.5-31.9z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m769.8 586c14.9 8.3 17.2 26.7 17.7 43 0.3 8.3-0.2 16.9-3.4 24.7-8.4 20.8-33.9 26-53.9 25.3-25.8-0.9-51.5-6.2-75.2-15.6-0.2-4.9 0.4-8.2 1.5-13 15.1 4.1 30.9 6.2 46.6 6.3 11.5 0 23-1 33.7-4.7 6.8-2.4 13.6-6.3 16.6-12.4 5.4-11-3.6-22.7-4.9-33.6-0.4-3.8-0.9-7.8 0.5-11.4 0.6-1.6 1.5-3 2.4-4.4 1.4-2.1 2.8-4.2 4.9-5.5 3.2-1.8 7.2-1.6 10.5-0.1q1.6 0.6 3 1.4z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m576.6 677.1h105.3c0.7 0 1.4-0.2 2-0.5 2.9-1.7 1.5-5.4-2-5.4h-105.3c-0.8 0-1.5 0.2-2.1 0.5-2.9 1.7-1.4 5.4 2.1 5.4z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m575.9 677.4h99.8c1.3 0 2-1.4 1.3-2.4l-34.1-50c-0.2-0.4-0.7-0.7-1.2-0.7h-99.9c-1.2 0-1.9 1.4-1.3 2.4l34.1 50c0.3 0.4 0.8 0.7 1.3 0.7z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m709.4 503.5c2.9-0.6 5.6-1 8.9 0.2 3.2 1.2 6.1 3.4 8.1 6.2 2.4 3.4 2.7 6.4 3 10.5q1.3 14.2 2.6 28.4c0.1 1.5 0.3 3.1 1.1 4.4 1 1.8 3 2.8 4.9 3.4 3.5 1.2 7.4 1.3 10.5-0.6 3.2-1.8 5-5.4 5.6-9 0.6-3.5 0.2-7.2-0.2-10.8-1-8.1-0.3-17.9-4.4-25.2-2.8-5.5-7-10.3-11.1-15-3.9-4.5-8-9-13.3-11.6-3-1.4-6.2-2.2-9.5-2.9-6.3-1.2-13.1-1.8-18.9 1.1-5.6 2.8-12 14.7-5 19.4 1 0.7 2.2 1 3.3 1.3 2.9 0.8 5.8 1.7 8.8 1.3 2.1-0.3 3.9-0.7 5.6-1.1z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m724.3 515.9c1.6-2.8 5.1-4.5 8.1-2.7 3.2 1.9 2.6 6.5 0 8.7-2.4 2.1-6.7 1.7-7.8-1.7-0.2-0.7-0.2-1.3-0.1-1.9-0.5-0.6-0.7-1.5-0.2-2.4z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m656.8 768.6q-7.8 0.3-15.6 1c-8.6 0.7-17.7 1.4-25.5-2.4-2.8-1.3-5.3-3.1-7.6-5-46.1-39.4 73.1-58.8 96.1-54.3 9.1 1.8 17.7 5.2 26.7 7.4 9 2.3 18.7 3.1 27.3-0.2 5.6-2.2 10.4-6.1 16.1-8.3 11.2-4.3 28.4-0.8 32.6 11.4 5.1 14.6-2.4 27.8-16.2 33.7-9 4-18.9 4.3-28 8-9.8 3.9-20.9 4.4-31.5 5.4-24.8 2.6-49.6 2.1-74.4 3.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s21" d="m753.5 616.6c-2.6 0.6-5.1 1.4-7.5 2.5q-3.1-5.2-6.3-10.3c-3.9-6.3-7.3-13-10.8-19.5-2.6-4.7-2.6-10-1.4-15.1 0.8-3.3 0.6-6.2 1-9.4 0.7-4.7 2.4-9.3 3-14.1 0.1-0.9 23 7.3 25.6 9.4 14.7 11.9 25.4 28.6 30.3 46.9-5.3 0.5-10 3.1-14.9 4.9-6.1 2.2-12.7 3-19 4.7z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s27" d="m711.2 527.3c-2 1.9-5.4 1.9-7.3 0"/>
|
|
||||||
<path id="<Path>" class="s28" d="m608.9 645.3c-2.5-1.6-5.8-0.8-7.4 1.7-1.6 2.6-0.8 5.9 1.7 7.5"/>
|
|
||||||
<path id="<Path>" class="s12" d="m646.3 756.5c-2.7-7.6-4.3-15.7-6.7-23.5-1.1-3.5-2.3-7-4.4-10-2.1-3.1-5.2-5.5-8.8-6.2-6.2-1.2-12.4 3.2-15.3 8.8-7.3 14.7-1 30.9 8.5 42.6 3.3 4 6.8 7.8 10.2 11.7 3.4 3.9 5.8 9.1 9.2 12.8 5.3 5.7 14.6 1.9 18.9-3.2 5.2-6.1-1.5-14.5-5-19.7-2.9-4.1-4.9-8.6-6.6-13.3z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m655.4 777.1c-0.4 0.4-0.9 0.9-1.6 1.6-3.2 2.9-6.4 5.9-10.7 6.8-2.1 0.5-4.2 0-6.3 0.5-2.1 0.4-4.1 2.2-3.6 4.2 0.7 2.6 2.4 4 2.8 6.7 0.4 3.4 0.2 6.8-0.2 10.2-0.9 7-3.1 13.8-5.6 20.4-1.4 3.7-4.1 9.3-1.3 13 2.2 2.7 6.5 2.4 9.6 1 4.8-2.2 8.3-6.3 11-10.7 2.7-4.4 4.6-9.3 7-13.9 2.2-4.2 4.8-8.3 7.7-12.1 1.3-1.8 2.8-3.6 3.7-5.6 1.9-4.4 0.8-9.5-2.3-13.1-2.1-2.4-4.8-7.6-7.6-9.1-1.3-0.6-1.9-0.5-2.6 0.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m584.2 725c0.9 2.2 1.3 4.5 2 6.7 1.2 4 3.4 7.6 5.4 11.2q7.7 13.1 15.4 26.2l7.8 13.1c0.3 0.6 0.9 1.8 1.6 3.3 13.9-8.2 27.5-16.8 40.8-26-3-4.9-6.4-9.7-7.1-15.3-0.4-2.9 0-5.8-0.3-8.6-0.9-6.9-5.8-12.5-9.9-18.1-7.4-10-12.6-21.4-18.9-32.2q-1.1-1.9-2.3-3.8c-4.3-7-9.4-13.8-15.7-19.2-3.2-2.8-6.6-4.8-10.2-6.9-3-1.7-5.2-4.2-8.5-5.6-14.1-5.8-25.3 5.7-25.7 20-0.3 10.2 4.2 19.8 9.3 28.7q5.2 9.1 11.2 17.8c1.9 2.7 3.9 5.5 5.1 8.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s29" d="m739.7 599c0.8 11.8-0.4 23.8-3.7 35.2 0.6-2.2 6.6-5.9 8.3-7.6 2-2 6.7-5.5 7-8.4 0.2-2.6-3.2-6.8-4.6-9q-3.2-5.3-7-10.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m326 292.6l-22-13.5h-106.9c-10.9 0-19.8-8.9-19.8-19.9v-17.3c0-11 8.9-19.9 19.8-19.9h109.1c10.9 0 19.8 8.9 19.8 19.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m268.4 250.6c0 2.3 1.8 4.2 4.1 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.1 1.8-4.1 4.2z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m243.3 250.6c0 2.3 1.9 4.2 4.2 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.2 1.8-4.2 4.2z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m218.3 250.6c0 2.3 1.8 4.2 4.1 4.2 2.3 0 4.2-1.9 4.2-4.2 0-2.4-1.9-4.2-4.2-4.2-2.3 0-4.1 1.8-4.1 4.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s18" d="m431 787.1h-32.9c-4 0-7.2-3.2-7.2-7.2 0-3.9 3.2-7.2 7.2-7.2h32.9c4 0 7.2 3.3 7.2 7.2 0 4-3.2 7.2-7.2 7.2z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m408.2 710.6c-1.8-7-4.2-14.3-2.2-21.3 1.3-4.6 4.5-8.5 5.7-13.2 2.1-7.5-1-15.7 0.4-23.4 1.3-7.3 6.5-13.3 9.2-20.2 3.7-9.1 3.1-19.4 6.2-28.7 1-3 2.5-6 5.2-7.7 2.7-1.7 6.7-1.5 8.5 1.1 1 1.5 1.1 3.4 1 5.2-0.8 19.4-16.5 36.7-13.6 55.9 0.8 5.4 3.1 10.9 1.8 16.2-1.4 5.3-6.1 9.1-8.3 14.1-2.5 5.4-1.8 11.7-1 17.6 0.8 5.9 1.6 12.1-0.5 17.7-1.1 2.9-10.1 12.9-13.3 7.7-0.4-0.6 2.4-7.9 2.5-9.3 0.2-3.9-0.6-7.9-1.6-11.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s30" d="m401.1 719q0-0.2-0.1-0.4c-0.2-4.6-3.4-8.5-6.9-11.6-5.7-5-11.2-18.2-12.2-25.8-0.7-5.3 0.2-10.6-0.2-15.9-0.6-8.1-4.2-15.7-6.7-23.5-2.2-7.2-3.4-14.8-3.6-22.3-0.1-3 0.3-6.5 2.9-8 2.1-1.3 4.9-0.5 6.7 1.1 1.8 1.7 2.8 4 3.5 6.4 3.5 11.7 2.2 24.6 7.2 35.7 2.3 5.1 5.9 9.7 6.9 15.1 1.2 6-0.9 12.2 0.6 18.1 2.5 9.8 12.1 15.4 12.9 26 0 1.2 0 2.4 0.4 3.6 0.5 1.8 1.8 3.2 2.8 4.7 2.6 4 6.8 12.8 2.5 16.3-7.8 6.4-17-7.1-17.1-13.8-0.1-1.9 0.4-3.8 0.4-5.7z"/>
|
|
||||||
<path id="<Path>" class="s30" d="m425.5 705.6c0.8-2.6 1.6-5.3 3.2-7.6 3-4.1 8.4-6.5 10-11.4 0.6-2 0.5-4.1 0.7-6.2 0.5-3.8 2.4-7.4 5.5-9.5 3-2.2 7.4-2.6 10.6-0.6 4.2 2.5 5.4 7.9 6.2 12.7 2.5 14.9 3.7 31.1-3.5 44.4-0.4 0.6-0.8 1.2-1.3 1.6-1.7 1-3.8-0.7-4.8-2.5-4.4-8.4 1.2-19.6-3.3-28-0.3-0.7-0.8-1.4-1.6-1.4-0.6-0.1-1.1 0.3-1.5 0.8-2.2 2.5-2.5 6.3-4.7 8.9-2 2.2-5.3 3.1-7.4 5.3-1.7 1.8-2.4 4.4-3.1 6.9-1.1 4.4-2.4 22.1-9 14.4-5.7-6.7 2-20.8 4-27.8z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m415.2 784.1h-0.9c-12.7 0-23.4-9.5-25-22.1l-4-32.7h58.4l-3.4 32.3c-1.4 12.8-12.2 22.5-25.1 22.5z"/>
|
|
||||||
<path id="<Path>" class="s31" d="m413 745.3q14.8-4.1 29.5-8.6 0.2 0 0.4-0.1l0.8-7.3h-58.4l2.7 22c8.3-2 16.8-3.8 25-6z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m441.2 732.8h-52.8c-3.2 0-6-2.2-6.8-5.3-1.1-4.5 2.3-8.7 6.8-8.7h52.8c4.4 0 7.7 3.8 6.9 8.1-0.5 3.4-3.4 5.9-6.9 5.9z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s21" d="m730.5 651.8q0 0.2 0 0.4"/>
|
|
||||||
<path id="<Path>" class="s32" d=""/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s18" d="m821.1 875.5h-49.8c-4.4 0-8-3.6-8-8v-1.6c0-4.4 3.6-8 8-8h49.8c4.5 0 8 3.6 8 8v1.6c0 4.4-3.5 8-8 8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m760.4 796.7l69.1 1.4-6.2 49.6c-3.9 12.5-15.3 21.1-28.4 21.3-14.7 0.2-27.3-10.2-30-24.6z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m813.8 681.4q-0.1-0.2-0.1-0.3c-0.5-7.4 4.7-14.6 3.2-21.9-0.1-0.8-0.4-1.6-1.1-2-1.2-0.7-2.5 0.4-3.4 1.4-5.1 6.4-4.6 14.9-3.6 22.5 1 8.3-3 14.9-4.3 23-1 5.6 0.1 10.7-1.1 16.1-1.3 6.4-2.1 12.2-0.1 18.7 0.9 2.7 2.2 5.4 1.9 8.3-0.3 3.4-2.8 6.3-4.1 9.5-3.6 8.6 1.3 19.4-3.6 27.3-0.5 0.8-1.2 1.6-2.2 1.6-1.2-0.1-1.8-1.3-2.2-2.4-5.5-15.1-11-32.1-8.8-48.3 0.5-3.5 1.4-7 1.6-10.6 0.3-3.3-0.1-6.6-0.4-9.8q-1.2-11.6-2.5-23.2c-0.1-1.4-0.3-2.9-1.1-4-0.8-1.2-2.5-1.9-3.7-1.1-0.8 0.6-1.1 1.7-1.3 2.7-1.4 7.8 1.6 15.8 0.9 23.7-0.4 4.5-1.9 8.7-2.8 13.1-1.8 9.6 1.2 22.2 3 31.8 1.3 6.8 1.9 13.8 2.9 20.7 0.5 3.7 2.1 7.3 2.5 10.9 0.3 2.8-2 12.1-4.8 5.5-1.1-2.6-1.6-5.6-1.4-8.5 0.1-1.5 0.4-3.1 0.3-4.6-0.2-1.5-1-3.1-2.4-3.7-1.5-0.6-3.3 0-4.7-0.7-1.6-0.8-2-2.9-2.2-4.7-0.7-5.5-1.3-11.2 0.6-16.3 0.6-1.7 1.4-3.2 1.7-4.9 0.8-4.2-2.6-6-3.3-9.6-0.7-3.4 1.9-6.3 2.3-9.5 0.3-2.4-1.1-5-3.4-6-0.6-0.3-1.4-0.5-1.8-1.1-0.7-0.8-0.4-2-0.1-3q0.9-2.9 2.2-5.8c2.4-5.3-4.3-9.8-8.3-5.5-1.8 1.9-1.8 4.8-1.7 7.4 0.7 15.7 1.4 31.6 4.5 47 2.2 10.6 5.6 21.1 10.7 30.6 2.4 4.5 5.9 8.5 8 13 3.1 6.4 5.1 15.5 14.6 13.6 5.3-1.1 9.3-5.3 12.7-9.5 5-6.3 9.6-14.8 6.2-22-1-2-2.5-3.7-3.2-5.8-0.6-1.7-0.5-3.6-0.5-5.4 0.3-6.3 1-12.7 2.4-18.9 1.5-7.2 4.6-15.6 2.4-23-1.8-6.2-3.9-11.1-2.3-18 1.7-7.1 7.1-13.2 6.9-20.4-0.1-6.3-4.5-11.7-5-17.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s30" d="m772.6 779.8c1.8 5.8 2.7 11.9 2.6 17.9 0 4.4-0.5 8.8-0.1 13.1h50.6c1.7-5 2.4-10.3 1.8-15.1-0.8-5.7-2.7-12.4 1.2-16.6 1.3-1.4 3.1-2.3 4.3-3.8 3-3.7 1.2-9.1-0.9-13.3-3.7-7.4-5.7-14.7-0.6-21.8 4-5.4 10.7-9.3 12.1-16.3 1.9-9.4-7.7-19.6-2.9-27.9 1.3-2.4 3.5-4 5.2-6.1 3-3.8 3.8-9.2 2.1-13.7-1-2.9-3.8-6.8-6.9-7.7-4.5-1.4-4.5 0.7-6 5-2.7 7.9-3.9 16.3-3.4 24.7 0.7 12.5-4.2 26.5-6.2 38.9-1.1 6.7-2.4 13.4-3.8 20.1-0.8 4.2-1.4 8.5-2.6 12.5-0.7 2-3.7 6-3.6 7.9-1.3-16.3 6.9-31.7 9-47.8 0.1-1.4 0.3-3-0.4-4.2-0.6-1-1.5-1.7-2.2-2.6-3.3-4.6 1.1-15.2 1.7-20.5 1.2-9.3 1.6-18.6 2.3-27.9 0.8-11.2 2.4-22 1.1-33.4-0.1-0.4-0.1-0.9-0.5-1.2-0.4-0.4-1.3-0.2-1.7 0.3-0.4 0.5-0.6 1.1-0.7 1.8-2.6 16.4-3.3 33.2-5.9 49.7-2.8 18-4.8 36-6.8 54.1-2 17.4-6.2 34.7-8.3 52.2-0.5 3.9-1.8 8.7-5.6 9.1-3.4 0.5-6-3.2-6.4-6.6-1.1-9.1 6.7-16.6 10.1-25.1 2.5-6.2 2.6-13.2 1.2-19.8-1.3-6.7-3.9-14.3 0.1-19.8 1.6-2.3 4.2-3.8 5.5-6.2 0.9-1.8 1.1-4 1.2-6 0.2-6.5 0-12.9-0.6-19.3-0.6-5.6-2.7-11.6-2.2-17.2 0.9-10.9 3.9-21.6 3.3-32.7-0.5-9.6-8.1 5.3-8.3 9.2-0.3 5.1 0.6 10.2-0.1 15.2-0.8 5.7-3.6 11.2-2.7 16.9 0.1 0.8 0.3 1.5 0 2.2-0.2 0.7-1 1.3-1.7 0.9-0.3-0.1-0.5-0.5-0.6-0.9-3.8-9.6 5.2-26.7-2.8-34.6-6.3 7.8-4.8 25.7-4.4 35.2 1.1 24.4 5.3 49.2 0.6 73.5-0.3 1.8-0.8 3.6-2.1 4.8-2.2 1.9-5.9 0.8-7.8-1.4-1.9-2.3-2.5-5.3-3.3-8.2-0.8-2.8-1.8-5.8-4.2-7.5-2.5 2.6-3.1 6.4-2.6 9.9 0.5 3.5 1.8 6.8 2.9 10.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s33" d="m826.7 824.5l-57 22.8-8-37.2z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m828 824.5h-66.5c-4.3 0-7.8-3.5-7.8-7.8v-18.7c0-4.3 3.5-7.7 7.8-7.7h66.5c4.3 0 7.8 3.4 7.8 7.7v18.7c0 4.3-3.5 7.8-7.8 7.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s18" d="m416.5 865.7h-302.5c-6.5 0-11.7-5.3-11.7-11.8 0-6.5 5.2-11.8 11.7-11.8h302.5c6.6 0 11.8 5.3 11.8 11.8 0 6.5-5.2 11.8-11.8 11.8z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Compound Path>" class="s20" d="m214.8 654.3c0.2-4.7-5.1-8.7-9.6-6.1-1.8 1.1-3 2.9-4.2 4.6-5.3 7.9-10.5 15.7-14.9 24.1-3.7 7.1-6.8 14.5-11.2 21.2-4.3 6.6-10.9 11-14.5 18.2-2.8 5.6-3.6 12.9 0.2 18.8 3.5 5.6 10.6 8.6 16.7 8.1 6.2-0.4 11.4-3.9 15.1-8.3 8.1-9.6 9-21.9 11.3-33.7q3.9-19.7 9.5-39c0.5-1.8 1.5-5 1.6-7.9z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m249.5 753.9c-1.6-11.8-1.2-23.9 1.5-34.8 1.5-6.1 4.4-12.7 10.2-14.8 10.8-3.8 18.5 7.1 21 15.7 1.8 6.3 4.2 12.8 5.7 19.1 2 8 2.9 16.3 4.1 24.5 2.4 16.7 4.2 33.4 5.8 50.2 0.3 2.9 0.5 5.9-0.3 8.7-1.2 4.3-5 7.6-9.4 8.6-4.4 0.9-9.2-0.5-12.5-3.4-1.7-1.6-3.1-3.5-4-5.6-1-2.3-1.4-4.9-2-7.4-1.1-5.3-2.7-10.6-4.9-15.6-2.1-4.9-5.8-9.4-7.6-14.4-3.5-9.7-6.3-20.5-7.6-30.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s25" d="m299.5 795.9c-1.6-9.5-4.8-18.8-6.7-28.3-2.1-10-3.8-20-5.6-29.9-4.6-25-13.5-48.2-26.8-69.8-0.9-1.5-1.8-3-3.1-4.2-2.8-2.6-6.7-3.6-10.5-4-4.7-0.6-9.6-0.3-14 1.5-1.7 0.8-3.2 1.8-4.5 3-3.4 1.9-6.5 4.3-9.4 6.8-27.5 23.1-45.7 54.9-68.2 82.7-6.4 7.9-12.9 15.9-15.9 25.8-3.1 10.2-9 18.7-10 29.8q0 0.7-0.1 1.5c-0.4 7.6 1.2 15.3 5 21.9 4.9 8.3 11.9 11 21.3 12.2 8 1 16.2 0.6 24.1-1.3 6.2-1.5 15.1-3.4 20.1-7.5 2-1.6 3.7-3.8 5.3-5.8 9.8-12.7 18.6-25.3 25-40 5.2-12.2 8.7-25.1 13-37.5q0.6 1.6 1.1 3.2c3.2 8.4 6 18.2 10.8 25.9 2.4 3.7 4.1 7.4 5.9 11.5 1 2.3 3.6 11.8 5.7 12.9q11.6-0.7 23.1-1.9 4.4-1.2 8.9-2.2c2.1-0.9 4.2-1.9 6.3-2.9-0.3-1.1-0.6-2.2-0.8-3.4z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m270.6 645.5q0-0.2-0.1-0.3-0.3-2.5-1.2-4.9-1-3-2.6-5.7-1.1-1.9-2.2-3.8c-2.1-3.6-3.9-7.1-4.9-11.1-1-3.7-1.4-7.4-2.7-10.9-0.6-1.5-2.9-1.4-2.9 0.3 0.1 4.3 0.6 8.6 1.5 12.8q0 0.2 0 0.5 0 0 0 0.1-0.2 1.9-0.2 3.8c-0.7 0.4-1.2 1.2-1.4 2.6q-0.1 0-0.1 0c-1.9-1.1-3.8 1.8-1.9 2.8q0.1 0.1 0.1 0.1c-1.3 0.2-2.3 1.7-1.1 2.7 5.3 4.6 8.6 8.8 11.4 15.1 0.5 1.1 1.3 2.1 2.4 2.5 1.2 1 2.8 1.3 4.3 0.4 0.7 0 1.2-0.4 1.5-0.9 0.3-0.3 0.5-0.8 0.6-1.3q0.4-0.6 0.3-1.6c-0.1-1.1-0.4-2.2-0.8-3.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m270.6 644.7c-0.4-1.5-0.8-3-1.5-4.3-3.5-6.9-18.3-8.6-19.7 0.9q0 0.1-0.1 0.2c0.4 1.5 1.3 2.9 2.7 4.1 0.9 0.8 2.1 0.6 3 1.3 0.7 0.5 1.1 1.3 1.3 2.1 2.1 4 1.6 9.1 0.1 13.7 0.7 0.1 1.7-0.3 2.3-0.4 2-0.5 4.5-0.9 6.5-0.2 1.7 0.6 2.8 3.1 5 2.7 1-0.2 1.4-1.5 1.5-2.5 0.5-5.9 0.2-11.8-1.1-17.6z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m341 838.6c-0.4-1.1-1-2.1-1.8-2.6-1.3-1-3.1-1.3-4.7-1.7-10-2.3-19.2-7.3-26.6-14.3-2.5-2.3-5.8-8.7-9.5-8.7-3.4 0.1-5.8 4.4-8.5 6-6 3.5-14.2 4.7-20.9 2.6-1.2 5.9-0.6 12.6-0.1 18.2 0.1 0.9 0.2 1.8 0.7 2.6 0.9 1.1 2.4 1.4 3.8 1.7 14.9 2.5 29.8 3.3 44.8 4.8 5.4 0.5 11 1.6 16.4 0.8 2.3-0.4 5.1-1.1 6.3-3.3 0.9-1.5 0.9-4.1 0.1-6.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m138.5 639.2c2.1-2.9 4.2-5.8 6.1-8.7 4.9-7.7 8.3-16.2 11-24.9 0.9-2.9 2.4-7.1 6-6.9 3 0.2 6.2 2.8 9 3.9 6 2.5 12 4.8 17.9 7.8q0.2 0.1 0.4 0.3c-4.4 15.8-12.7 31.8-18.3 47.3-4.7 13.3-8.9 26.8-12.6 40.5q-0.2 0-0.3-0.1c-5.1-0.6-13.1-1.3-17.3-4.4-3.4-2.4-6.5-6.8-8.5-10.4-4.7-8.5-6-19-2.8-28.2 2.1-6 5.7-11.1 9.4-16.2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m182.2 633.4c-3.4 0.1-6.9-0.3-10.1-0.5-1.4-0.1-3.1-0.4-4.8-0.5-1.5 0-3 0-4.2 0.4-4.1 1.4-4.6 5.5-8.8 1.2-2.4-2.4-6.2-6-6-9.6 0.2-1.8 1-3.6 1.7-5.3 2.6-6.1 4.7-12.3 6.3-18.6q1.5-6 2.4-12.2c0.5-3.1-0.3-4.9 2.2-6.5 2.2-1.3 6.6-1.3 9-1.3 4.1 0 7.6-2.2 11.4-3.1 4.7-1.1 8.9-3.4 13.7-4.1 2.5-0.4 5.2-0.4 7.4 0.9 1.6 1 2.7 2.8 3.4 4.6 1.6 3.9 1.7 8.3 1.6 12.6-0.5 11.8-1.2 26.1-9.5 35.4-1.5 1.6-3.2 3.1-5.1 4.2-3.3 1.7-6.9 2.3-10.6 2.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m184.9 653.6c-3.4-3.3-7.2-6.1-11-8.9-15.8-11.4-33.3-12-46.7 2.8-20.2 22.2-27.4 53.6-26.9 83.7 0.3 18 3.2 35.9 6.7 53.6 1.8 8.8 3.8 17.7 5.6 26.5 1.4 7.4 0.7 13.9 6.5 19.5 1.5 1.6 4 2.8 5.9 1.5 0.6-0.4 1-1 1.4-1.7 4.1-6.9 6.3-14.8 9.2-22.4 3.4-8.8 7.4-16.6 16.5-19.6 10.7-3.5 21.4-11.3 31-17.2 2.7-1.7 3.9-1.4 3.3-4-4.4-19.1-3.3-37.9 1.1-57 1.8-7.9 3-17.2 6.1-24.8 3.6-8.8 3.2-16.3-2.4-24.6-1.8-2.7-4-5.2-6.3-7.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m378.8 837.3c1.3-4.5-2.8-9.7-5.3-12.8-5.6-7.3-10.6-15-15.7-22.6-5.2-7.7-9-15.8-18.8-17.6-7.5-1.3-17.4 3.3-15.9 12.1 0.7 4.5 3.7 8.2 6.6 11.7q4 4.9 8 9.8 5.6 6.9 11.3 13.7c1.8 2.2 3.6 4.4 5.9 6.2 4.5 3.3 21.7 7.3 23.9-0.5z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m345.1 825.4q8.1-4.6 16.1-9.5c1.8-1.1 3.7-2.3 4.8-4.1 0-0.1-5.6-8.9-6.2-9.7q-5.5-7.6-11.4-15c-7.6-9.6-15.5-18.9-23.7-28.1-8.8-9.9-17.8-19.5-27-29.1-8.2-8.6-15.4-18.2-26.7-22.6q-0.1 0-0.2 0c-4.8-0.9-9.7-1.1-14.6-0.8-19.1 1.1-30.3 11.7-44.4 23.3q-15.4 12.7-30.7 25.4c-19.7 16.2-39.4 32.4-57.5 50.4q-1.2 1.2-2.4 2.5c-1.7 1.7-3.1 3.5-4.3 5.6-4.2 7.5-1.2 15.3 2.4 22.3 6.4 13 20.2 19.5 34.4 21.3 16.9 2.1 33.7-2.7 47.8-11.8 7.2-4.6 12-9.7 17.2-16.2 5.7-7.1 12.1-12.9 16-21.3 2-4.3 3.4-8.9 5.8-13 3.3-5.4 8.5-9.7 10.9-15.6 1.4-3.7 1.8-7.9 4.1-11.1 5.6-7.8 9.5 0 12.9 3.9 3.4 3.9 6.5 5.8 10.9 8.1 5.3 2.9 9.8 7.8 14.9 11.2 4.4 2.9 9 5.4 13 8.9 2.8 2.4 5.3 5.2 7.8 7.9 3.7 3.8 7.6 7.3 11.6 10.7q2.9 2.4 5.9 4.7c1.5 1.3 3.4 4.3 5.4 4.7 2.3 0.6 5.1-1.8 7.1-2.9q0.1-0.1 0.1-0.1z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s12" d="m267 657c-0.7 0.3-1.5 0-2.7-0.1-0.6-0.1-6.6-0.5-6.6-0.3-0.4 4.8-2.4 9.8-4.3 13.5-2.8 5.6-6.3 10.9-9.1 16.4-1 1.9-2 3.9-2.9 5.9-4 9.2-6.9 18.9-5.4 28.9q0.5 3.4 2.1 5.5c0.6 0.8 1.6 1.3 2.6 1.4 3.1 0.2 6.1 0.6 9.3 0.1q2.3-0.4 4.3-1.2c5.4-3.9 9.3-11 11.3-16.6 3-8.3 3.3-17 4.6-25.6 1.3-9.1 1.1-18.7 1.6-27.9 0-1-0.1-2.2-1-2.6-0.9-0.3-1.8 0.5-2.4 1.3-0.5 0.8-0.9 1.2-1.4 1.3z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m241.1 643.6l8.6 10c1.3 1.6 3.9 0.8 4.2-1.3l7.4-63.6c0-0.6-0.2-1.3-0.6-1.8l-9.5-11c-1-1.2-3-0.6-3.1 1l-7.6 64.9c-0.1 0.6 0.1 1.3 0.6 1.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m131.7 658.5c0.9-5.8 7.4-9.7 12.2-12.2 15.1-7.5 31.2 0 43.4 8.9 8.4 6 17 12.5 21.6 21.7 1.3 2.6 2.3 5.6 4.8 7.2 3.6 2.4 8.5 0.8 12.5 2.4 3.4 1.3 6.4 6.7 10 7 1.8 0.2 8.2-4.8 6.7-6.2 7.9 7.1 16.7 12.9 25.7 18.5q0 0.1 0 0.1c-1.3 7.6-3 15.9-8.9 20.8-6.9 5.8-17.1 4.9-26 3.2-17.7-3.4-34.5-9.8-51.8-14.5-21.7-5.9-51-16.4-49.7-43.1 0.2-4.2-1.2-10.1-0.5-13.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m352.1 854.9c-1.3-0.1-2.8-0.3-3.6-1.3-0.6-0.6-0.8-1.4-0.9-2.2-1.4-7.8-2.1-13.4 0.3-20.8 4.8 1.2 10 2.1 15 2.1 2.8-0.1 7.4 0 9.8-1.9 1.8-1.4 2.4-6.7 4-7.2 0.6-0.1 1.1 0.3 1.5 0.6 3.3 2.9 5.5 6.7 9.1 9.1 3 2 6.6 2.7 10.2 3.4q7 1.4 14.1 2.7c2.9 0.6 6 1.3 8.2 3.4 4 3.7 3 8.2-1.7 10.5-2.2 1-4.6 1.5-7 1.8-9.4 1.3-19.5 0.5-29 0.6-10 0.1-20 0-30-0.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s0" d="m150.8 604.7c0.2-1.6 0.4-3.2 0.4-4.9 0.1-4.1-0.3-8.1-0.2-12.1 0.2-6.2 1.9-12.9 7-16.6 2.9-2.1 6.5-3 9.5-4.9 3.2-2.1 5.5-5.2 8.4-7.6 3.4-2.8 7.6-4.6 11.9-5.1 3.9-0.5 7.3 1.3 11 0.2 2.8-0.8 5.2-2.6 7.9-3.8 2.7-1.2 6.2-1.5 8.4 0.5 2.5 2.4 1.8 6.6 0.7 9.9q-1.7 5.1-4 9.9c-0.5 1.2-1.1 2.4-1.1 3.7 0 0.8 0.3 1.6 0.2 2.4 0 1.7-1.3 3.2-2.9 3.9-1.5 0.7-3.2 0.9-4.9 1.1q-8.5 0.7-17.1 1.5c-4.3 0.4-8.9 1.2-11.7 5-3.4 4.6-0.9 11-4.5 15.4-4.1 5.1-9.7 9.5-14.9 13.3-0.9 0.7-2 1.4-3.1 1.3-1.3-0.2-2.3-1.4-2.6-2.7-0.3-1.3 0-2.7 0.3-4 0.4-2.2 0.9-4.3 1.3-6.4z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m167 599.8c-2.6-1.1-6.8-1.1-9 0.5-2.2 1.6-2.5 5.2-2 7.7 0.4 2.7 2.4 5 5.2 5.5 5.8 1 7.2-4.1 8.1-8.4 0.3-1.2 0.5-2.5-0.1-3.6-0.2-0.5-0.7-0.8-1.2-1.2q-0.4-0.2-1-0.5z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m261.1 640c-0.5 0-1 0.2-1.5 0.6q-1.7 1.1-3.4 2.1c-0.6 0.4-1.2 0.7-1.8 0.6-1-0.2-1.3-1.4-1.9-2.1-0.7-0.9-2.7-1.9-3.7-1.3-1.8 1.2-1 3.4 0.1 4.7 1.6 2.9 4.5 4.9 6.9 7 0.9 0.7 2 1.5 3.1 1.2 0.3-0.2 0.6-0.4 0.9-0.7 1.7-1.6 2.3-3.9 2.9-6.1 0.4-1.6 1.2-4.5-0.5-5.7q-0.6-0.3-1.1-0.3z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s20" d="m213 638.3c-3.3 2.6-1.9 10.6 1.5 8.2 10-7.1 12.6-12.9 26.3-15 4.1-0.6 5.6-4.9 1.5-4.3-14.8 2.2-17.6 1.8-29.3 11.1z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m237.1 635.6q-0.4-0.1-0.8-0.1c-2.2 0-4.4 0.9-6 2.4-1.2 1.3-2.1 3.3-3.9 3.7-0.4 0.1-0.9 0.1-1.2-0.2-0.2-0.2-0.4-0.5-0.4-0.8-0.3-1.2-0.1-2.6 0.6-3.6 0.7-1 1.6-1.9 2.5-2.6 0.4-0.3 0.8-0.6 1.1-0.9 0.3-0.4 0.5-0.8 0.4-1.3-0.1-1.9-2.3-2.3-3.7-1.7-4.7 1.9-9.5 3.8-13.4 7-2.6 2.2-4.7 5-6.7 7.8-1.9 2.8-3.1 5.8-5.1 8.6-1 1.5-0.9 3.5 0.4 4.8 1.6 1.6 3.3 3.3 5.1 4.8 1.7 1.3 3.9 1.8 5.4 3.5 0.2 0 0.3-0.3 0.4-0.5 0.9-2.6 1.4-5.3 2.4-7.8 0.7-1.9 2-3.4 3.8-4.2 1.9-0.9 4.1-1.3 6-2.5 2-1.2 3.6-2.9 5-4.8 1.4-1.8 2.7-3.7 4.3-5.4 1.3-1.5 3.4-1.8 4.8-3.3 0.4-0.5 0.7-1.1 0.6-1.8-0.2-0.6-0.8-1-1.6-1.1z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s34" d="m194.6 624.4c-0.2 1.6-1.8 2.9-3.4 2.9"/>
|
|
||||||
<path id="<Path>" class="s34" d="m163 603.8c-1.5-0.3-2.6 1.4-2.5 2.9 0.2 1.4 1.2 2.6 2.1 3.7"/>
|
|
||||||
<path id="<Path>" class="s35" d="m152.1 703.5c11 5.5 22.4 10 34.1 13.6-2.8 7.2-5.1 14.4-7 21.9-0.6 2.5-1.2 5.2-2.5 7.5-0.2 0.3-0.5 0.7-0.9 0.8-0.4 0.1-0.7-0.1-1-0.3-8.4-4.5-11.5-14.7-16.3-23-3.4-6-8.2-11.7-8.7-18.6-0.1-0.9 1.5-2.3 2.3-1.9z"/>
|
|
||||||
<path id="<Path>" class="s36" d="m253.7 718.6c0.7 0.2 1.2 0.7 1.5 1.2-2.2 3.5-6.9 5.2-10.8 3.9"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s37" d="m191.1 612.8c2 2.2 5.8 2.5 8.1 0.7"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m245.9 476.6c0.1 36.2 0.1 70.9 0.1 70.9l-29.8-18.2c-3-1.9-6.6-2.9-10.2-2.9h-107.3c-10.8 0-19.6-8.8-19.6-19.6v-30.2c0-10.7 8.8-19.5 19.6-19.5h127.7c10.8 0 19.5 8.7 19.5 19.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s7" d="m113.4 483.6c0.4-3.4 3.2-6.5 6.6-6.5 2.8 0.1 5.1 2.2 7.1 4.1h0.3c2-1.9 4.2-4 7-4.1 3.4 0 6.2 3.1 6.7 6.5 0.4 3.3-0.9 6.6-2.8 9.5-2.7 4.2-10.8 10.3-10.8 10.3q-0.2-0.1-0.3-0.1c-0.1 0-0.2-0.2-0.2-0.2-4.4-2.4-8.2-5.8-10.9-10-1.8-2.9-3.2-6.2-2.7-9.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s38" d="m172.5 504.5h28v-27.4h-28z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m194.7 485.4h-16.4"/>
|
|
||||||
<path id="<Path>" class="s11" d="m194.7 494.8h-16.4"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s3" d="m723.5 341.2c-0.1 40-0.1 121.8-0.1 121.8l32.9-20.1c3.4-2.1 7.3-3.2 11.3-3.2h104.5c12 0 21.7-9.7 21.7-21.6v-76.9c0-11.9-9.7-21.6-21.7-21.6h-127c-12 0-21.6 9.7-21.6 21.6z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s6" d="m801.3 374.1h-30.3v-30.3h30.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m801.3 416.7h-30.3v-30.2h30.3z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m856.4 374.1h-30.2v-30.3h30.2z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m856.4 416.7h-30.2v-30.2h30.2z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m772.8 350.3l14.5 16.7 22.7-32.3"/>
|
|
||||||
<path id="<Path>" class="s3" d="m772.8 394.8l14.5 16.7 22.7-32.3"/>
|
|
||||||
<path id="<Path>" class="s3" d="m826.2 350.3l14.4 16.7 22.9-32.1"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 115 KiB |
@@ -1,17 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 415 86" width="415" height="86">
|
|
||||||
<title>snigdhaos-hello</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #ffffff }
|
|
||||||
.s1 { paint-order:stroke fill markers;stroke: #754ffe;stroke-width: 6;stroke-linejoin: round;;fill: #754ffe }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m39.9 59.3l5.7-5.7 5.7 5.7 5.7 5.7-11.4 11.4q-16.6-16.6-33.2-33.2 0-17.1 0-34.2l21.8 21.8-5.7 5.7-8.1-8v11.3l19.5 19.5z"/>
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m57 30.8l21.8-21.8q0 17.1 0 34.2-8.1 8-16.1 16.1l-17.1-17.1-5.7 5.7-5.7-5.7 11.4-11.4 17.1 17.1 8-8.1v-11.3l-8 8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m109.4 22.3l5.3 5.3h-20.5v10.4h13.8l5.1 5.1v15.7l-5.1 5.2h-14.6l-5.2-5.2v-4.2l6-5.7v9.9h12.9v-15.7h-13.7l-5.2-5.1v-10.4l5.2-5.3zm43.2 0v41.6h-11.6l-10.1-36.2h-5.1l3.7 3.5v32.7h-5.9v-41.6h11.5l10 36.4h5.2l-3.7-3.8v-32.6zm17.9 0v41.7h-6v-41.7zm33.5 0l5.2 5.3h-21.5v31.2h14.1v-15.7h-9.7l5.2-5.1h10.5v26h-6v-4.5l-4.5 4.5h-10.4l-5.2-5.2v-31.2l5.2-5.3zm40.6 5.3v31.2l-5.2 5.2h-20.8v-31.3l5.2-5.1h-5.9v-5.3h21.5zm-15.7 31.2h9.7v-31.2h-14.1v35.7zm53-36.4v41.7h-6v-20.9h-14.1v20.9h-6v-41.7h6v20.1l4.4-4.5h9.7v-15.6zm37.5 0v41.7h-5.9v-15.6h-14.1v15.6h-6v-36.4l5.2-5.3zm-5.9 9l3.8-3.7h-17.9v20l4.5-4.5h9.6zm53.6-3.7v31.1l-5.2 5.3h-15.6l-5.2-5.3v-31.1l5.2-5.3h15.6zm-20.1 31.2h14.1v-31.2h-14.1zm50.5-36.4l5.3 5.3h-20.5v10.3h13.8l5.1 5.2v15.6l-5.1 5.3h-14.6l-5.2-5.3v-4.1l6-5.7v9.8h12.9v-15.6h-13.7l-5.2-5.2v-10.3l5.2-5.3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 468 KiB |
@@ -1,15 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
|
|
||||||
<title>snigdhaos-icon</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #ffffff }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m108.9 182.9l19-19 19 19 19 19.1-38 38q-55.5-55.4-110.9-110.9 0-57 0-114.1l72.8 72.8-19 19-26.9-26.9v38.1l65 64.9z"/>
|
|
||||||
<path id="Layer" fill-rule="evenodd" class="s0" d="m165.9 87.8l72.8-72.8q0 57.1 0 114.1-26.9 26.9-53.8 53.8l-57-57-19.1 19-19-19 38.1-38.1 57 57.1 26.9-26.9v-38.1l-26.9 26.9z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 757 B |
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 277 54" width="277" height="54">
|
|
||||||
<title>Snigdha OS Web</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #000000 }
|
|
||||||
.s1 { fill: #754ffe }
|
|
||||||
</style>
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="Folder 1" filter="url(#f0)">
|
|
||||||
<path id="Layer" class="s0" d="m33.9 1.1c-2.2-0.6-4.4-1-6.6-1.1q-3.3-0.1-6.6 0.7c-2.2 0.5-4.3 1.3-6.2 2.4q-3 1.6-5.4 3.9 0.7 0.2 1.3 0.5 0.6 0.3 1.1 0.7 0.5 0.4 1 0.9 0.5 0.4 0.9 1 0.2 0.4 0.5 0.8 0.2 0.4 0.4 0.8 0.2 0.4 0.3 0.9 0.2 0.4 0.3 0.9 1.3-0.7 2.7-1.3 1.4-0.5 2.9-0.9 1.5-0.4 3-0.6 1.5-0.2 3-0.2 1.7 0 3.4 0.3 1.7 0.2 3.3 0.9 1.6 0.6 3.1 1.5 1.4 0.9 2.7 2.1c6.9 6.3 4.6 11.3 3.5 19.4q-0.2 1.5-0.1 2.9 0.1 1.4 0.7 2.7 0.5 1.4 1.4 2.5 0.8 1.1 2 2c-1.1-5.1 2.7-12.7 3.1-13.6 0.9-3 1.3-6.2 1-9.3-0.2-3.2-1.1-6.2-2.6-9-1.5-2.8-3.5-5.3-5.9-7.3-2.4-2-5.2-3.5-8.2-4.5z"/>
|
|
||||||
<path id="Layer" class="s0" d="m37.6 16.7c-3.4-3.4-8.2-4.5-12.8-4.1l-1.4 0.9q2.5 0.2 4.9 0.9c1.6 0.5 3.1 1.2 4.5 2.1q2.1 1.4 3.8 3.3c1.1 1.2 2 2.6 2.7 4.1q0.2 0.3 0.3 0.6 0.1 0.3 0.3 0.6 0.1 0.3 0.2 0.6 0.1 0.4 0.2 0.6l1.4-2.6c-0.3-3-1.7-4.5-4.1-7z"/>
|
|
||||||
<path id="Layer" class="s0" d="m38.1 26.2c-6.6-16.9-31.5-12.6-31.9 5.8 0.1 1.3 0 3.9 0 5.2q0 0.3 0.2 0.5c0.1 0.2 0.3 0.3 0.5 0.4q0.3 0.1 0.6 0c0.2 0 0.4-0.1 0.5-0.3l4.8-5.4q0 0 0.1-0.1 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1-0.1h1l-2.1 3.4q-0.1 0.2-0.2 0.4-0.1 0.2-0.1 0.4-0.1 0.3-0.1 0.5 0 0.2 0.1 0.4c0.3 1.5 0.5 5-2.4 7.4q-0.2 0.2-0.4 0.4-0.2 0.2-0.3 0.5-0.1 0.2-0.2 0.5 0 0.3 0 0.5v4.9q0 0.5 0.1 0.9 0.2 0.5 0.6 0.9c0.2 0.2 0.5 0.4 0.8 0.5q0.5 0.2 1 0.2c11.2-2.3 17.4-8.9 18.8-11q0.1-0.1 0.1-0.1 0-0.1 0.1-0.1 0.1 0 0.1 0 0.1 0 0.1 0h6.1q0.6-0.1 1.2-0.3c0.3-0.1 0.6-0.4 0.9-0.6q0.4-0.4 0.7-1 0.2-0.5 0.2-1.1c-0.2-3.8 0.5-10.1-1.1-13.6z"/>
|
|
||||||
</g>
|
|
||||||
<path id="SNIGDHA OS" class="s1" aria-label="SNIGDHA OS" d="m77.1 33.5q0 2.4-1.2 4.2-1.3 1.8-3.6 2.9-2.4 1-5.7 1-3.6 0-6.1-1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.2 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1.1 0.6-0.7 0.6-1.7 0-0.9-0.4-1.6-0.5-0.6-1.5-1.1-1-0.6-2.8-1.1-3-0.9-4.9-2-1.8-1.2-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.7 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.2-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.7 1.8 1.1 2.7 2.6 0.9 1.6 0.9 4zm21.6 7.5h-7.4l-6.8-20.7q0.1 0.8 0.3 2 0.1 1.2 0.3 2.6 0.1 1.4 0.2 3.1 0.1 1.6 0.1 3.3v9.7h-5.2v-25.8h7.6l6.6 20.7q-0.2-1.2-0.4-2.8-0.2-1.7-0.4-3.7-0.1-2-0.1-4.3v-9.9h5.2zm4.7-25.7h16.7v4.4h-5.3v16.9h5.3v4.4h-16.7v-4.4h5.3v-16.9h-5.3zm31.6 26.4q-3.6 0-6.1-1.5-2.5-1.6-3.9-4.6-1.2-3-1.2-7.4 0-3.3 0.9-5.8 0.9-2.6 2.5-4.3 1.7-1.7 3.9-2.6 2.1-0.8 4.6-0.8 2.9 0 4.8 0.8 1.9 0.9 3.4 2.4l-3.2 3.3q-1.1-1.1-2.2-1.6-1.1-0.5-2.5-0.5-1.3 0-2.4 0.5-1 0.5-1.9 1.6-0.8 1.1-1.2 2.8-0.4 1.8-0.4 4.2 0 3.4 0.5 5.3 0.5 2 1.7 2.9 1.1 0.9 2.8 0.9 0.9 0 1.7-0.2 0.8-0.3 1.5-0.6v-5.9h-3.2l-0.6-4.3h9.5v12.8q-1.9 1.2-4.1 1.9-2.2 0.7-4.9 0.7zm25.3-13.6q0-2.6-0.5-4.3-0.4-1.6-1.2-2.5-0.7-0.9-1.8-1.2-1-0.3-2.2-0.3h-1.3v16.9h1.3q1.2 0 2.3-0.4 1-0.4 1.8-1.4 0.8-0.9 1.2-2.6 0.4-1.7 0.4-4.2zm6.3 0q0 3.1-0.7 5.4-0.6 2.2-1.8 3.7-1.2 1.5-2.8 2.3-1.6 0.9-3.4 1.2-1.8 0.4-3.8 0.4h-6.9v-25.8h6.5q2.5 0 4.8 0.5 2.3 0.5 4.1 1.9 1.8 1.4 2.9 3.9 1.1 2.5 1.1 6.5zm21.3 13h-6.1v-10.9h-6.2v10.9h-6.1v-25.8h6.1v9.9h6.2v-9.9h6.1zm18.2 0l-1.4-5.5h-7.5l-1.4 5.5h-6.3l7.8-25.7h7.4l7.9 25.7zm-5.1-21.4l-2.8 11.4h5.6zm55 8.5q0 4.1-1.2 7.2-1.2 3-3.5 4.7-2.3 1.7-5.7 1.7-3.3 0-5.6-1.7-2.3-1.6-3.5-4.7-1.2-3-1.2-7.2 0-4.1 1.2-7.1 1.2-3 3.5-4.7 2.3-1.7 5.6-1.7 3.4 0 5.7 1.6 2.3 1.7 3.5 4.7 1.2 3 1.2 7.2zm-6.3 0q0-4.7-0.9-6.9-1-2.2-3.2-2.2-2.1 0-3.1 2.2-0.9 2.2-0.9 6.9 0 4.8 0.9 6.9 1 2.2 3.1 2.2 2.3 0 3.2-2.2 0.9-2.2 0.9-6.9zm28.2 5.4q0 2.4-1.2 4.2-1.3 1.9-3.6 2.9-2.4 1.1-5.7 1.1-3.6 0-6.1-1.1-2.4-1.1-4.1-2.7l3.1-3.4q1.5 1.3 3.2 1.9 1.7 0.7 3.8 0.7 1.3 0 2.2-0.4 1-0.3 1.5-1 0.6-0.7 0.6-1.7 0-1-0.4-1.6-0.5-0.7-1.5-1.2-1-0.5-2.8-1.1-3-0.9-4.9-2-1.8-1.1-2.6-2.6-0.8-1.5-0.8-3.4 0-2.4 1.3-4.1 1.3-1.6 3.5-2.5 2.2-0.9 4.9-0.9 3 0 5.3 0.9 2.2 0.8 3.9 2.4l-2.9 3.3q-1.3-1.1-2.8-1.6-1.5-0.5-3-0.5-1.2 0-2.1 0.3-0.8 0.3-1.3 0.8-0.5 0.6-0.5 1.4 0 0.8 0.5 1.4 0.4 0.5 1.6 1 1.1 0.5 3.2 1.2 2.4 0.7 4.1 1.8 1.8 1 2.7 2.6 0.9 1.5 0.9 3.9z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 95 KiB |
@@ -1,30 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="1000" height="1000">
|
|
||||||
<title>6380326-ai</title>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #3d3d3d }
|
|
||||||
</style>
|
|
||||||
<g id="OBJECTS">
|
|
||||||
<filter id="f0">
|
|
||||||
<feFlood flood-color="#754ffe" flood-opacity="1" />
|
|
||||||
<feBlend mode="normal" in2="SourceGraphic"/>
|
|
||||||
<feComposite in2="SourceAlpha" operator="in" />
|
|
||||||
</filter>
|
|
||||||
<g id="<Group>" filter="url(#f0)">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m770 514.7c-1.4 27.9-21.1 57.9-60.6 57.9h-153.2c-3 0-5.4-2.4-5.4-5.4v-127.1c0-3 2.4-5.4 5.4-5.4h10.5l-37.3-37.3-37.2 37.2h7.8c3 0 5.3 2.4 5.3 5.4v57.6c8.4 2.4 14.1 10 14.1 18.7 0 10.6-8.7 19.3-19.4 19.3-10.7 0-19.4-8.7-19.4-19.3 0-8.7 5.8-16.3 14.1-18.7v-52.3h-15.5c-2.1 0-4.1-1.3-4.9-3.3-0.8-2-0.4-4.3 1.2-5.8l50.1-50.1c1.9-2 5.6-2 7.6 0l50.2 50.2c1.5 1.5 2 3.8 1.2 5.8-0.9 2-2.8 3.3-5 3.3h-18.1v116.5h147.9c32.6 0 48.7-24.8 50-47.7 1.2-23.5-12-48.7-44.2-52.1l-1.8-0.2c-2.7-0.2-4.9-2.6-4.8-5.4q0-0.3 0-0.6c0-10.8-4.2-21.1-11.9-28.8-7.8-7.7-18-12-28.9-12-8.9 0-17.3 2.9-24.5 8.2-1.4 1.1-3.2 1.4-4.9 0.8-1.6-0.5-2.9-1.8-3.4-3.5-1.2-3.9-2.5-7.8-4-11.5q-0.4 0-0.9 0c-8.3 0-15-6.8-15-15.1 0-8.2 6.7-15 15-15 8.3 0 15 6.8 15 15 0 4-1.6 7.8-4.4 10.7 0.9 2.2 1.7 4.2 2.4 6.1 7.5-4.2 16-6.4 24.7-6.4 26.8 0 49.2 20.8 51.4 47.4 36.9 5.4 52.3 36.3 50.8 62.9zm-270 10.2c4.8 0 8.7-3.9 8.7-8.6 0-4.8-3.9-8.7-8.7-8.7-4.8 0-8.7 3.9-8.7 8.7 0 4.7 3.9 8.6 8.7 8.6z"/>
|
|
||||||
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m356.7 423.3c-7.2-5.3-15.6-8.2-24.5-8.2-22.5 0-40.8 18.3-40.8 40.8q0 0.3 0 0.6c0.1 2.8-2.1 5.2-4.8 5.4l-1.8 0.2c-32.2 3.4-45.4 28.6-44.2 52.1 1.3 22.9 17.4 47.7 50 47.7h8c2.2-5.9 7.8-9.7 14.1-9.7 8.3 0 15 6.7 15 15 0 8.3-6.7 15-15 15-6.3 0-11.9-3.8-14.1-9.6h-8c-39.5 0-59.2-30-60.6-57.9-1.4-26.6 13.9-57.5 50.8-62.9 2.2-26.6 24.6-47.4 51.4-47.4 8.7 0 17.2 2.2 24.7 6.4 8.1-23 21.9-43.9 40-60.4q-0.9-2.9-0.9-6c0-10.7 8.6-19.4 19.3-19.4 10.7 0 19.4 8.7 19.4 19.4 0 10.7-8.7 19.4-19.4 19.4-4.5 0-8.8-1.6-12.3-4.5-17.9 16.7-31.1 37.9-38 61.3-0.5 1.7-1.8 3-3.4 3.5-1.7 0.6-3.5 0.3-4.9-0.8zm58.6-70.2c4.8 0 8.7-3.9 8.7-8.7 0-4.8-3.9-8.7-8.7-8.7-4.8 0-8.7 3.9-8.7 8.7 0 4.8 3.9 8.7 8.7 8.7z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m613.9 375.4c-1.6 0-3.1-0.6-4.2-1.9-27.1-32.9-67-51.7-109.6-51.7-3 0-5.4-2.4-5.4-5.4 0-3 2.4-5.4 5.4-5.4 45.8 0 88.8 20.3 117.9 55.6 1.9 2.3 1.6 5.7-0.7 7.6-1 0.8-2.2 1.2-3.4 1.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m443.4 333.1c-2.1 0-4.1-1.2-5-3.3-1.1-2.8 0.2-5.9 2.9-7.1 9.5-3.9 19.5-6.9 29.6-8.9 2.9-0.6 5.8 1.3 6.3 4.3 0.6 2.9-1.3 5.7-4.2 6.3-9.4 1.8-18.7 4.6-27.5 8.3q-1 0.4-2.1 0.4z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s0" d="m528.2 630.7c-0.8-2-2.7-3.3-4.9-3.3h-18v-31.2c5.7-2.1 9.7-7.6 9.7-14 0-8.2-6.7-14.9-15-14.9-8.3 0-15 6.7-15 14.9 0 6.4 4 11.9 9.7 14v36.5c0 3 2.4 5.4 5.3 5.4h10.4l-37.9 37.8-38.4-38.4h10.7c2.9 0 5.3-2.4 5.3-5.4v-64.9c0-2.9-2.4-5.3-5.3-5.3h-81.2c-3 0-5.4 2.4-5.4 5.3 0 3 2.4 5.4 5.4 5.4h75.8v54.2h-18.2c-2.2 0-4.1 1.3-5 3.3-0.8 2-0.3 4.3 1.2 5.8l51.4 51.4c1 1 2.3 1.5 3.7 1.5 1.5 0 2.8-0.5 3.8-1.5l50.8-50.8c1.5-1.5 2-3.8 1.1-5.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,421 +0,0 @@
|
|||||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 715 731" width="715" height="731">
|
|
||||||
<title>481-ai</title>
|
|
||||||
<defs>
|
|
||||||
<linearGradient id="g1" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(154.827,113.668,-167.156,227.683,63.892,604.719)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g2" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(122.169,62.716,-75.551,147.172,99.995,508.302)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g3" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(111.416,76.992,-105.444,152.589,124.83,424.582)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g4" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(120.242,56.402,-33.331,71.058,107.761,424.122)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g5" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,623.745,774.013)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g6" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,595.622)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g7" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,737.001)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g8" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,504.405,697.674)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g9" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,551.387)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g10" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,680.58)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g11" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,662.69)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g12" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,623.745,690.68)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g13" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,512.288)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g14" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,653.667)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g15" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,504.405,614.34)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g16" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,468.054)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g17" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,597.247)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g18" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,579.357)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g19" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.105,623.745,607.346)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g20" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,428.955)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g21" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,570.334)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g22" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.351,-189.915,504.405,531.007)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g23" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,384.721)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g24" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,513.914)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g25" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.084,456.69,496.024)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g26" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-343.134,-188.179,108.643,-198.104,623.745,524.013)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g27" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,345.622)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g28" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-165.08,-93.843,11.541,-20.302,418.603,487.001)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g29" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-292.403,-189.918,123.352,-189.915,504.405,447.674)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g30" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(181.253,0,0,134.75,391.999,301.387)">
|
|
||||||
<stop offset="0" stop-color="#2b237c"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g31" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-148.563,-83.76,10.602,-18.805,397.675,430.58)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset=".282" stop-color="#1f3372"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g32" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-190.738,-43.072,43.602,-193.085,456.69,412.69)">
|
|
||||||
<stop offset="0" stop-color="#180d5b"/>
|
|
||||||
<stop offset="1" stop-color="#42e8e0"/>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient id="g33" x2="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,-235.895,76.835,0,-11.252,328.489)">
|
|
||||||
<stop offset="0" stop-color="#42e8e0"/>
|
|
||||||
<stop offset="1" stop-color="#180d5b"/>
|
|
||||||
</linearGradient>
|
|
||||||
</defs>
|
|
||||||
<style>
|
|
||||||
.s0 { fill: #160a5b }
|
|
||||||
.s1 { fill: #24126a }
|
|
||||||
.s2 { opacity: .7;fill: url(#g1) }
|
|
||||||
.s3 { fill: #453c9e }
|
|
||||||
.s4 { opacity: .7;fill: url(#g2) }
|
|
||||||
.s5 { fill: #f0f6ff }
|
|
||||||
.s6 { fill: #fcd1c5 }
|
|
||||||
.s7 { fill: #4846a5 }
|
|
||||||
.s8 { opacity: .7;fill: url(#g3) }
|
|
||||||
.s9 { opacity: .7;fill: url(#g4) }
|
|
||||||
.s10 { fill: #aa8383 }
|
|
||||||
.s11 { fill: #c4ccd6 }
|
|
||||||
.s12 { fill: #e2b1a6 }
|
|
||||||
.s13 { fill: #936d6d }
|
|
||||||
.s14 { fill: #312a91 }
|
|
||||||
.s15 { opacity: .7;fill: url(#g5) }
|
|
||||||
.s16 { fill: url(#g6) }
|
|
||||||
.s17 { opacity: .7;fill: url(#g7) }
|
|
||||||
.s18 { opacity: .7;fill: url(#g8) }
|
|
||||||
.s19 { opacity: .3;fill: #42e8e0 }
|
|
||||||
.s20 { fill: #42e8e0 }
|
|
||||||
.s21 { fill: url(#g9) }
|
|
||||||
.s22 { opacity: .7;fill: url(#g10) }
|
|
||||||
.s23 { opacity: .5;fill: #5cfff3 }
|
|
||||||
.s24 { fill: url(#g11) }
|
|
||||||
.s25 { opacity: .5;fill: #42e8e0 }
|
|
||||||
.s26 { opacity: .7;fill: url(#g12) }
|
|
||||||
.s27 { fill: url(#g13) }
|
|
||||||
.s28 { opacity: .7;fill: url(#g14) }
|
|
||||||
.s29 { opacity: .7;fill: url(#g15) }
|
|
||||||
.s30 { fill: url(#g16) }
|
|
||||||
.s31 { opacity: .7;fill: url(#g17) }
|
|
||||||
.s32 { fill: url(#g18) }
|
|
||||||
.s33 { opacity: .7;fill: url(#g19) }
|
|
||||||
.s34 { fill: url(#g20) }
|
|
||||||
.s35 { opacity: .7;fill: url(#g21) }
|
|
||||||
.s36 { opacity: .7;fill: url(#g22) }
|
|
||||||
.s37 { fill: url(#g23) }
|
|
||||||
.s38 { opacity: .7;fill: url(#g24) }
|
|
||||||
.s39 { fill: url(#g25) }
|
|
||||||
.s40 { opacity: .7;fill: url(#g26) }
|
|
||||||
.s41 { fill: url(#g27) }
|
|
||||||
.s42 { opacity: .7;fill: url(#g28) }
|
|
||||||
.s43 { opacity: .7;fill: url(#g29) }
|
|
||||||
.s44 { fill: url(#g30) }
|
|
||||||
.s45 { opacity: .7;fill: url(#g31) }
|
|
||||||
.s46 { fill: url(#g32) }
|
|
||||||
.s47 { opacity: .7;fill: url(#g33) }
|
|
||||||
.s48 { opacity: .9;fill: #42e8e0 }
|
|
||||||
.s49 { opacity: .2;fill: #42e8e0 }
|
|
||||||
</style>
|
|
||||||
<g id="321353356351 1">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s0" d="m229.7 581.2c0 0 1.5 1.6 3.1 3.5 1.6 1.8 6 4.4 7.9 5.6 1.9 1.2 10.5 7.7 12.3 14.1 1.8 6.4-4.4 7.2-10.6 6.1-6.3-1.1-12.2-6.9-13.9-9-1.7-2.1-7.6-6.8-15.3-10.8-7.7-4-3.1-9.3-3.1-9.3z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m172.5 600.2c0 0-1.2 2.9-1.6 6.6-0.4 3.7-0.9 11.7-1.1 14.1-0.2 2.3-0.2 8.1 3.9 13.6 4.1 5.5 6.3 7.7 11.8 5.5 5.5-2.2 5.3-11.4 4.4-16.1-1-4.8-1.9-15.4-1.8-16.5 0.1-1.1-0.3-1.8-0.3-1.8z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m248.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
|
||||||
<path id="<Path>" class="s2" d="m248.7 472.3c0 0-1.2 42.4-11.1 64.8 0 0-7 19.8-8 43.3 0 0 1.7 4.1-0.6 7.3-2.4 3.3-16.8 6.4-19.2-4.5-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7 0 0-4 2.6-9.1 19.3-5.2 16.7-9 23.1-10.8 27.7-1.8 4.6-3.4 32.9-2.3 46.8 0 0-11.7 1.6-15.1-4-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48-0.5-9.2-2.4-16.6-0.3-25.8 2.1-9.1 63.9-29.4 63.9-29.4z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m173.2 510c-0.5-9.2-2.4-16.6-0.3-25.8 0.7-3.4 10-8.4 21.2-13.3 18.9-1.8 42.9-3.8 44.6-3.5 1.5 0.2 5.4 1.7 8.6 3l1.4 1.9c0 0-0.1 2.6-0.4 6.8-4.4 1.3-12.9 0-12.9 0-1.2 2.9-8.6 13.5-17.7 18-9.2 4.6-36 3-37.6 4.8-1.5 1.7-1.8 24.9-1.7 27.8 0.2 2.9-2.5 21.5-5 37.9-2.4 16.1 1.3 35.7 1.4 36.3-0.8-0.5-1.6-1.2-2.1-2.1-3.4-5.6-4.5-34.6-3.7-43.8 0.9-9.3 4.7-38.9 4.2-48z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s4" d="m228 334c0 0 13.7 3.1 18.3 4.2 0.8 0.2 1.4 0.7 1.7 1.5 1.3 3.3 4.6 13.8 2.1 29.1-3.1 18.8-2.1 31.5-2.1 31.5l6.3 33c0 0 8 31.5 7.3 32.3-0.6 0.9-18.3 14.4-23.9 12.5-5.5-1.9-3.7-5.1-3.7-5.1 0 0-4.4 22.8-24.3 22.6-19.8-0.2-36-0.1-39.3-8.2-3.4-8 0.9-41.6 4.4-55 3.5-13.3 11.8-39.9 11.8-39.9l-29-32.1 24.8-19c0 0 5.9-11 8.3-12.4 2.5-1.4 3.7-0.2 3.7-0.2z"/>
|
|
||||||
<path id="<Path>" class="s5" d="m191.3 328.8c0 0-5.1 6.1 2.2 14.4 4.5 5.1 12.2 16 18.8 27.5 4.1 7.1 7.9 10.9 10 17 0 0 0.3-7.3 0.6-18.5 0.3-10.6 0.4-21.6 0-24.4-1-5.7-26-18.8-31.6-16z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m210.2 347.2c0 0 2.6 1.6 3.5 1.5 0.9-0.2 3.8-2.9 3.8-2.9 0 0 7.2-0.2 8-3.3 0.7-3 1.3-6.1 2-7.7 0.7-1.6 3.8-9.3 3.8-12.5 0.1-3.1-0.1-8.6 1.3-11.6 1.3-3 3.2-32.5-25.4-31.6-28.5 0.8-19.6 30.4-19.6 30.4 0 0-2.1 0.9-0.8 4.7 1.2 3.8 1.5 4.2 2.2 6.1 0.6 1.9 0.9 3.1 2.7 4.6l0.5 3.5c0 0-1.4 5.4 2.2 10.6 3.5 5.2 15.8 8.2 15.8 8.2z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m247.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
|
||||||
<path id="<Path>" class="s8" d="m247.1 338.5c0 0 3 0.5 12.9 25.3 5.5 13.9 14 28.2 15.8 38.5 1.8 10.3 0.8 21.3-1.3 22-1.9 0.8-37.4 14.1-48.5 18.2-0.6 0.3-1.2-0.1-1.3-0.8l-3.1-17.1 22-8.5c0 0 4.2-5.1 8.1-7 0 0-4.4-8.1-4.1-10.4 0.3-2.2-0.4-25.1 2.2-34.5 2.5-9.3-2.7-25.7-2.7-25.7z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m234.2 404.1c0 0 3-2 3.8-2.3 0.7-0.3 4.8-1.7 5.5-2 0.6-0.3 3-0.1 4.2 0 0.4 0.1 0.8 0.3 1 0.7 0.9 1.7 3.5 6.8 3.2 8.7 0 0-7.3 4.6-8.1 6.7l-1.2 0.3c0 0-4.9-10.6-8.4-12.1z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m174.8 432.4c0.8-3.2 1.9-7.2 3.2-11.3l44.5 19c0 0-13.3 16.4-36.7 15.4-6.4-0.3-11.1-2.6-14.5-4.6 1.1-7.3 2.3-14 3.5-18.5z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s7" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s9" d="m157.6 360.4c0 0 11.7 1.6 21.2 16.6 9.5 15.1 16.4 32.5 16.4 32.5l0.3 2c0.9 5.1 6.3 8 11.1 5.9 10-4.5 24.8-11.3 27.6-13.3 0 0 8.9 4.9 11.3 16.5 1.9 9.3 1.4 9.3 1.4 9.3 0 0-39.5 18.4-54.8 18.3-15.3-0.2-34.6-50.4-36.8-60.8-2.1-10.4-4.5-24.1 2.3-27z"/>
|
|
||||||
<path id="<Path>" class="s3" d="m200.9 419.7c0 0-5 4.7-7.2 2.1-2.1-2.5-1.5-2.8-1.5-2.8 0 0-4.5 0-5-2.9-0.6-2.8-2.8-1.3-2.9-4.4-0.2-3.1 3.6-2.5 3.6-2.5z"/>
|
|
||||||
<path id="<Path>" class="s6" d="m206.9 417.2c0 0-1.4-1.2-3.1-2.7-1.8-1.5-4.7-7.7-5.1-8.3-0.5-0.5-6.5-5.1-9.4-5.2-2.8-0.1-0.7 3.2 0 3.6 0.6 0.5 3.4 1.9 3.4 1.9 0 0 2.9 2.4 3.2 2.7 0.4 0.4-8-0.5-9.3 0.3-1.3 0.8-1 2.9-0.1 3.5 0.9 0.6 1.6 0.6 1.6 0.6 0 0-0.9 2.5 1.6 3.7 2.5 1.1 3.1 0.5 3.1 0.5 0 0 0.2 4.3 4.4 3.5z"/>
|
|
||||||
<path id="<Path>" class="s10" d="m233.2 295.6c0 0 3.8 11.9-6 8.5-9.8-3.4-18.7-9-21.8-6.9-2.3 1.7-2.2 6.7-2 9 0 0.7-0.2 1.5-0.6 2.2l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4h-0.6c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.3-4.4-2.2-13.7 1.1-9.4 5.3-19.1 23.7-20.7 18.3-1.6 24.1 20.5 24.1 20.5z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m205.2 357.6l2.7-2.1c0 0 2.5 2.1 3.5 4.4 1 2.2 0 9.3 0 9.3l0.9 1.5 1-1.9 0.9-8.5c0 0-1-6.2-1.1-6.3 0-0.2-5.3 0.5-5.3 0.5 0 0-1.8 1.4-2.6 3.1z"/>
|
|
||||||
<path id="<Path>" class="s11" d="m218.4 349.2c0 0 2.9 0.2 4.2 1.3 0 0-3 0.2-3.5 0.3-0.5 0-0.7-1.6-0.7-1.6z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m212.8 349.9l-5 4.6c0 0 4.4 2 5.6 5.9 0 0 5.3 1 5.8-1 0.5-1.9 0-6.8 0.7-9 0.6-2.1-7.1-0.5-7.1-0.5z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m219 359.3c0 0 1 4.1 2 5.7 1 1.7 2 3.6 2 3.6l-0.1 23.6c0 0-8.7-17.9-10.6-21.5 0 0 0.3-8.7 1.1-10.3 0.8-1.7 5.6-1.1 5.6-1.1z"/>
|
|
||||||
<path id="<Path>" class="s12" d="m195.7 324.4c5.7 16.5 21.8 21.4 21.8 21.4 0 0-2.9 2.7-3.8 2.9-0.9 0.1-3.5-1.5-3.5-1.5 0 0-12.3-3-15.8-8.2-3.6-5.2-2.2-10.6-2.2-10.6l-0.5-3.5c2.6 0.9 4-0.5 4-0.5z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m182.6 343.7c0 0 2.3 7.8 2.5 8.1 0.3 0.2 5.7-0.4 5.7-0.4l-2.6 5c0 0 27.1 29 32.7 44.6 0 0-12.8-19.8-35.4-43.4l3.2-4.8-5.5 1z"/>
|
|
||||||
<path id="<Path>" class="s1" d="m227.1 336.8l1.4 1.6-1.7 1.6 5 4.5c0 0 1.5 31.8-4.6 52.8 0 0 8.3-19.3 6.4-53.6l-5.4-3.7 1.8-1.7z"/>
|
|
||||||
<path id="<Path>" class="s0" d="m210 512q0 0-0.2 0.2l7-7.5c-3.2 4.6 0.5 25.5 0.9 30.3 0.4 4.8-3.7 14.6-5.3 26.2-1.5 11.6 1.6 28.1 1.6 28.1-2-1.1-3.6-3.1-4.2-6.1-2.4-10.8-1.5-31 1.1-39.5 2.7-8.4-0.9-31.7-0.9-31.7z"/>
|
|
||||||
<path id="<Path>" class="s13" d="m197.1 318.5c-0.8 0.1-1.4-0.4-1.6-1.2l-0.7-4.3c0 0-2.3-5.8-7.2-3.5 0 0-3.1-4.2-2.3-13 5.5 8.1 17.5 11.9 17.5 11.9l-2.9 4.2q-0.5 0.7-0.6 1.6l-0.2 2.9c0 0.8-0.6 1.4-1.4 1.4z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 689.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 668.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s15" d="m434.1 652.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s16" d="m560.9 595.6v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s17" d="m307.4 595.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 645.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s18" d="m434.1 624.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 578.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m434.1 542.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s21" d="m560.9 551.4v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 551.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s22" d="m307.4 551.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 645.6v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m336.3 589.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 645.6v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s23" d="m307.4 572.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s24" d="m310.3 551.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s25" d="m307.4 572.4v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m560.9 572.4v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m434.1 645.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 606.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 585.5l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s26" d="m434.1 568.8l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s27" d="m560.9 512.3v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 512.3v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s28" d="m307.4 512.3v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 562.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s29" d="m434.1 541.3l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 495.2l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m434.1 459.3l31.1 18 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s30" d="m560.9 468.1v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 468.1v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s31" d="m307.4 468.1v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 562.3v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m336.3 505.8v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 562.3v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s23" d="m307.4 489.1v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s32" d="m310.3 468.1l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s25" d="m307.4 489.1v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m560.9 489.1v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m434.1 562.3l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 523.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 502.2l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s33" d="m434.1 485.5l-97.8-56.5 97.8-56.6 97.9 56.6z"/>
|
|
||||||
<path id="<Path>" class="s34" d="m560.9 429v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 429v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s35" d="m307.4 429v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 479l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s36" d="m434.1 457.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 411.8l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m434.1 376l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s37" d="m560.9 384.7v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s38" d="m307.4 384.7v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 479v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m336.3 422.5v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 479v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s23" d="m307.4 405.8v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s39" d="m310.3 384.7l125.3-72.3-1.5-0.9-126.7 73.2 126.7 73.2 1.5-0.8z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s25" d="m307.4 405.8v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m560.9 405.8v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m434.1 479l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 439.9l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 418.8l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s40" d="m434.1 402.1l-97.8-56.5 97.8-56.5 97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s41" d="m560.9 345.6v21.1l-126.8 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s42" d="m307.4 345.6v21.1l126.7 73.2v-21.1z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 395.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m434.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s43" d="m434.1 374.6l-126.7-73.2 126.7-73.2 126.8 73.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 328.5l-46.9-27.1 46.9-27.1 47 27.1z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m434.1 292.7l31.1 17.9 15.9-9.2-47-27.1-46.9 27.1 15.9 9.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s44" d="m560.9 301.4v21l-126.8 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s14" d="m307.4 301.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s45" d="m307.4 301.4v21l126.7 73.2v-21z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 395.6v23.2l-126.7-73.2v-23.2z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s19" d="m336.3 339.1v6.5l97.8 56.5 97.9-56.5v-6.5l-97.9 56.5z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m434.1 395.6v6.5l-97.8-56.5v-6.5z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s23" d="m307.4 322.4v23.2l126.7 73.2 126.8-73.2v-23.2l-126.8 73.2z"/>
|
|
||||||
<path id="<Path>" class="s46" d="m310.3 301.4l125.3-72.4-1.5-0.8-126.7 73.2 126.7 73.2 1.5-0.9z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s25" d="m307.4 322.4v23.2l1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m560.9 322.4v23.2l-1.7 1v-23.2z"/>
|
|
||||||
<path id="<Path>" class="s25" d="m434.1 395.6l-2.9-1.7v23.2l2.9 1.7 3-1.7v-23.2z"/>
|
|
||||||
</g>
|
|
||||||
<path id="<Path>" class="s47" d="m480.8 301.5l-1.7-262.8h-92.7l1.1 262.8 46.6 27z"/>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s48" d="m444 271.8c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-1.9 1.6-3.6 3.6-3.6 1.9 0 3.6 1.7 3.6 3.6z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m397.2 243.3c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m412.7 218.1c0 1.2-1 2.3-2.2 2.3-1.3 0-2.3-1.1-2.3-2.3 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m478.4 209.8c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m474.7 202.3c0 1.7-1.3 3.1-3 3.1-1.7 0-3-1.4-3-3.1 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m405.7 213.6c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.5-0.6-1.5-1.4 0-0.8 0.7-1.5 1.5-1.5 0.8 0 1.4 0.7 1.4 1.5z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m404 283.9c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m419.5 258.8c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m412.6 254.2c0 0.8-0.7 1.5-1.5 1.5-0.8 0-1.4-0.7-1.4-1.5 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.5 0.6 1.5 1.4z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s48" d="m432.1 236c0.5 1.7 2.2 2.7 3.9 2.3 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.9-2.3-1.7 0.4-2.7 2.2-2.3 3.9z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m466.1 201.1c0.3 1.1 1.4 1.7 2.4 1.4 1.1-0.2 1.7-1.3 1.5-2.4-0.3-1-1.4-1.7-2.4-1.4-1.1 0.3-1.7 1.3-1.5 2.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m447.2 182.9c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.8-1.4 1.5-2.4-0.3-1.1-1.4-1.8-2.5-1.5-1 0.3-1.7 1.4-1.4 2.5z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m388.9 190.2c0.1 0.7 0.8 1.1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.5-0.1-0.7-0.8-1.1-1.5-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m390.4 182.9c0.4 1.5 1.8 2.3 3.3 2 1.4-0.4 2.2-1.9 1.9-3.3-0.4-1.4-1.8-2.3-3.3-1.9-1.4 0.3-2.3 1.8-1.9 3.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m452.2 177.4c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.1 1.1-0.8 0.9-1.5-0.2-0.7-0.9-1.1-1.6-1-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m467.7 285.3c-0.6 0.5-1.5 0.5-2-0.1-0.5-0.6-0.5-1.6 0.2-2.1 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m471 277.7c-1.2 1-3.1 0.9-4.2-0.4-1.1-1.3-0.9-3.2 0.3-4.2 1.3-1.1 3.2-0.9 4.3 0.3 1 1.3 0.9 3.2-0.4 4.3z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m466.4 270.3c-0.6 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.7-0.5 0.7-0.9 0.5-2.1-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m468.1 244.1c-0.7 0.9-0.4 2.1 0.5 2.8 0.9 0.6 2.1 0.4 2.8-0.5 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m475.5 244.4c-0.4 0.5-0.3 1.3 0.3 1.8 0.6 0.4 1.4 0.2 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.5-1.4-0.3-1.8 0.3z"/>
|
|
||||||
<g id="<Group>" style="opacity: .9">
|
|
||||||
<path id="<Path>" class="s20" d="m423.4 308.3c0.5 1.8 2.2 2.8 3.9 2.4 1.7-0.5 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.8-3.8-2.3-1.8 0.4-2.8 2.1-2.4 3.8z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m432.7 291.1c0.3 1.2 1.5 1.9 2.7 1.6 1.3-0.3 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.8z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s48" d="m444 230.9c0 2-1.7 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6 0-2 1.6-3.6 3.6-3.6 1.9 0 3.6 1.6 3.6 3.6z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m397.2 202.3c0 1.3-1 2.3-2.3 2.3-1.2 0-2.2-1-2.2-2.3 0-1.2 1-2.2 2.2-2.2 1.3 0 2.3 1 2.3 2.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m412.7 177.2c0 1.2-1 2.2-2.2 2.2-1.3 0-2.3-1-2.3-2.2 0-1.3 1-2.3 2.3-2.3 1.2 0 2.2 1 2.2 2.3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m478.4 168.9c0 0.8-0.6 1.4-1.4 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.4 1.4-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m474.7 161.4c0 1.7-1.3 3-3 3-1.7 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.7 0 3 1.4 3 3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m405.7 172.6c0 0.8-0.6 1.5-1.4 1.5-0.8 0-1.5-0.7-1.5-1.5 0-0.8 0.7-1.4 1.5-1.4 0.8 0 1.4 0.6 1.4 1.4z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m404 243c0 1.2-1 2.2-2.3 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m419.5 217.8c0 1.3-1 2.3-2.2 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.2 2.3-2.2 1.2 0 2.2 1 2.2 2.2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m412.6 213.3c0 0.8-0.7 1.4-1.5 1.4-0.8 0-1.4-0.6-1.4-1.4 0-0.8 0.6-1.5 1.4-1.5 0.8 0 1.5 0.7 1.5 1.5z"/>
|
|
||||||
</g>
|
|
||||||
<g id="<Group>">
|
|
||||||
<path id="<Path>" class="s48" d="m432.1 195c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.1 2.3-3.9-0.4-1.7-2.1-2.7-3.9-2.3-1.7 0.5-2.7 2.2-2.3 3.9z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m466.1 160.2c0.3 1 1.4 1.7 2.4 1.4 1.1-0.3 1.7-1.4 1.5-2.4-0.3-1.1-1.4-1.7-2.4-1.4-1.1 0.2-1.7 1.3-1.5 2.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m447.2 141.9c0.3 1.1 1.4 1.8 2.4 1.5 1.1-0.3 1.8-1.4 1.5-2.5-0.3-1.1-1.4-1.7-2.5-1.4-1 0.2-1.7 1.3-1.4 2.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m388.9 149.3c0.1 0.6 0.8 1 1.5 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.1-0.7-0.8-1.1-1.5-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m390.4 142c0.4 1.4 1.8 2.3 3.3 1.9 1.4-0.3 2.2-1.8 1.9-3.2-0.4-1.5-1.8-2.3-3.3-2-1.4 0.4-2.3 1.9-1.9 3.3z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m452.2 136.5c0.2 0.7 0.9 1.1 1.6 0.9 0.7-0.2 1.1-0.9 0.9-1.6-0.2-0.6-0.9-1.1-1.6-0.9-0.7 0.2-1.1 0.9-0.9 1.6z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m467.7 244.4c-0.6 0.5-1.5 0.4-2-0.2-0.5-0.6-0.5-1.5 0.2-2 0.6-0.5 1.5-0.4 2 0.2 0.5 0.6 0.4 1.5-0.2 2z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m471 236.7c-1.2 1.1-3.1 0.9-4.2-0.3-1.1-1.3-0.9-3.2 0.3-4.3 1.3-1 3.2-0.9 4.3 0.4 1 1.3 0.9 3.1-0.4 4.2z"/>
|
|
||||||
<path id="<Path>" class="s19" d="m466.4 229.4c-0.6 0.9-0.4 2.1 0.5 2.7 0.9 0.7 2.1 0.4 2.7-0.4 0.7-0.9 0.5-2.2-0.4-2.8-0.9-0.6-2.1-0.4-2.8 0.5z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m468.1 203.1c-0.7 0.9-0.4 2.2 0.5 2.8 0.9 0.7 2.1 0.5 2.8-0.4 0.6-0.9 0.4-2.2-0.5-2.8-0.9-0.7-2.2-0.5-2.8 0.4z"/>
|
|
||||||
<path id="<Path>" class="s49" d="m475.5 203.4c-0.4 0.6-0.3 1.4 0.3 1.8 0.6 0.4 1.4 0.3 1.8-0.3 0.4-0.6 0.3-1.4-0.3-1.8-0.6-0.4-1.4-0.3-1.8 0.3z"/>
|
|
||||||
<g id="<Group>" style="opacity: .9">
|
|
||||||
<path id="<Path>" class="s20" d="m423.4 267.4c0.5 1.7 2.2 2.8 3.9 2.3 1.7-0.4 2.8-2.2 2.3-3.9-0.4-1.7-2.1-2.7-3.8-2.3-1.8 0.5-2.8 2.2-2.4 3.9z"/>
|
|
||||||
<path id="<Path>" class="s20" d="m432.7 250.1c0.3 1.2 1.5 2 2.7 1.7 1.3-0.4 2-1.6 1.7-2.8-0.3-1.2-1.6-1.9-2.8-1.6-1.2 0.3-1.9 1.5-1.6 2.7z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 24 KiB |
@@ -1 +0,0 @@
|
|||||||
// Add your own custom styles here
|
|
327
assets/tailwind.css
Normal file
@@ -0,0 +1,327 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
|
|
||||||
|
h3, h2 {
|
||||||
|
/* @apply font-fira_retina; */
|
||||||
|
font-family: 'Fira Code Retina';
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
@apply bg-dark-background;
|
||||||
|
height: stretch;
|
||||||
|
width: stretch;
|
||||||
|
margin: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
height: stretch;
|
||||||
|
width: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
main.page {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#__nuxt {
|
||||||
|
@apply bg-blue-background flex flex-col justify-between;
|
||||||
|
border-radius: 7px;
|
||||||
|
border: 1px solid #1E2D3D;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#section-content-title {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 35px;
|
||||||
|
border-bottom: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
#section-content-title:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#section-content-title-contact {
|
||||||
|
@apply cursor-pointer;
|
||||||
|
border-bottom: 1px solid #1E2D3D;
|
||||||
|
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile */
|
||||||
|
#mobile-page-title {
|
||||||
|
display: flex;
|
||||||
|
font-size: 14px;
|
||||||
|
height: 70px;
|
||||||
|
color: white;
|
||||||
|
padding: 0 25px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-arrow {
|
||||||
|
margin-right: 10px;
|
||||||
|
transition: 0.1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* MOBILE AND TABLET (SM - LG) */
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
|
||||||
|
html {
|
||||||
|
margin: 15px;
|
||||||
|
min-height: 100%;
|
||||||
|
height: stretch;
|
||||||
|
width: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
#__nuxt {
|
||||||
|
@apply bg-blue-background flex flex-col;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: auto;
|
||||||
|
min-height: stretch; /* This allows the page view for mobile to be full height when the content is less than the screen height. */
|
||||||
|
width: 100%;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-menu, #nav-logo, #filter-menu {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-menu {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#section-content-title {
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
background-color: #1E2D3D;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu .title {
|
||||||
|
display:flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 25px;
|
||||||
|
width: 100%;
|
||||||
|
height: 35px;
|
||||||
|
background-color: #1E2D3D;
|
||||||
|
margin-bottom: 3px
|
||||||
|
}
|
||||||
|
|
||||||
|
#left, #contact-menu {
|
||||||
|
border-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* contact */
|
||||||
|
#contact-me #left {
|
||||||
|
padding: 35px 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* footer */
|
||||||
|
footer {
|
||||||
|
height: 50px;
|
||||||
|
min-height: 50px !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a {
|
||||||
|
width: 55px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LG - XL */
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
#page-menu, #nav-logo, #filter-menu {
|
||||||
|
min-width: 275px !important;
|
||||||
|
max-width: 275px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-menu, #filter-menu {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#commented-text {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mobile-page-title {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
/* contact */
|
||||||
|
#contact-me #left {
|
||||||
|
padding: 50px 25px 0px 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#contact-form {
|
||||||
|
max-width: 220px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
main.page {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 2XL */
|
||||||
|
@media (min-width: 1536px) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 2K */
|
||||||
|
@media (min-width: 1920px) {
|
||||||
|
|
||||||
|
|
||||||
|
#page-menu, #nav-logo, #filter-menu {
|
||||||
|
min-width: 310px !important;
|
||||||
|
max-width: 310px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* header */
|
||||||
|
#navbar > nav {
|
||||||
|
height: 50px !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* footer */
|
||||||
|
footer {
|
||||||
|
height: 50px;
|
||||||
|
min-height: 50px !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a {
|
||||||
|
width: 55px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a > svg, footer > a > svg {
|
||||||
|
width: 1.5rem !important; /* 20px */
|
||||||
|
height: 1.5rem !important; /* 20px */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* about */
|
||||||
|
#commented-text {
|
||||||
|
font-size: 16px !important;
|
||||||
|
}
|
||||||
|
#page-menu, #filter-menu {
|
||||||
|
font-size: 16px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* contact */
|
||||||
|
#contact-me #left {
|
||||||
|
padding: 100px 25px 0px 25px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-content {
|
||||||
|
padding: 100px 100px !important;
|
||||||
|
font-size: 16px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mobile min view to tablet max view (width: 0 to 1020)
|
||||||
|
*/
|
||||||
|
@media screen and (max-width: 1020px) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tablet min view to desktop medium view (width: 1020 to 1920) (height: 0 to 1080)
|
||||||
|
*/
|
||||||
|
@media screen and (min-width: 1020px) and (max-width: 1920px) and (max-height: 1080px) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Desktop medium view to desktop max view (width: 1920 to infinte) (height: 1080 to infinite)
|
||||||
|
*/
|
||||||
|
@media screen and (min-width: 1920px) and (min-height: 1080px) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Borders */
|
||||||
|
|
||||||
|
.border-top {
|
||||||
|
border-top: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-right {
|
||||||
|
border-right: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-bot {
|
||||||
|
border-bottom: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-left {
|
||||||
|
border-left: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Scroll bar */
|
||||||
|
|
||||||
|
/* width */
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 20px;
|
||||||
|
border-left: 1px solid #1E2D3D;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Track */
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Handle */
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: #607B96;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Handle on hover */
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #7B9BBB;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fonts */
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Light";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Light.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Regular";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Regular.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Retina";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Retina.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Medium";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Medium.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code SemiBold";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-SemiBold.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Bold";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Bold.ttf") format('truetype');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Fira Code Variable";
|
||||||
|
src: url("./fonts/fira-code/FiraCode-Variable.ttf") format('truetype');
|
||||||
|
}
|
105
components/AppFooter.vue
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
<template>
|
||||||
|
<footer class='flex md:justify-between border-top text-menu-text font-fira_retina'>
|
||||||
|
|
||||||
|
<!-- social icons -->
|
||||||
|
|
||||||
|
<div class="w-full flex justify-between md:justify-start">
|
||||||
|
<span id="social-title" class="h-full flex justify-center items-center border-right px-5">
|
||||||
|
social:
|
||||||
|
</span>
|
||||||
|
<div id="social-icons" class="flex">
|
||||||
|
<NuxtLink :to="social.twitter.url + social.twitter.user" target="_blank" class="flex justify-center items-center">
|
||||||
|
<img src="/icons/social/twitter.svg"/>
|
||||||
|
</NuxtLink>
|
||||||
|
<NuxtLink :to="social.facebook.url + social.facebook.user" target="_blank" class="flex justify-center items-center">
|
||||||
|
<img src="/icons/social/facebook.svg"/>
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<!-- <span class="flex mx-50 justify-center items-center">Snigdha OS</span> -->
|
||||||
|
<NuxtLink :to="social.github.url + social.github.user" target="_blank" class="flex md:hidden justify-center items-center">
|
||||||
|
<img src="/icons/social/github.svg"/>
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="w-full inline justify-center md:justify-center items-center">Snigdha OS</div> -->
|
||||||
|
|
||||||
|
<!-- github user -->
|
||||||
|
<NuxtLink :to="social.github.url + social.github.user" target="_blank" class="md:flex items-center px-10 border-left">
|
||||||
|
@{{ social.github.user }}
|
||||||
|
<img src="/icons/social/github.svg"/>
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
footer {
|
||||||
|
height: 40px;
|
||||||
|
min-height: 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a:hover {
|
||||||
|
background-color: #1e2d3d74;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a {
|
||||||
|
border-right: 0px solid #1E2D3D;
|
||||||
|
height: 100%;
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a > img {
|
||||||
|
width: 1.25rem; /* 20px */
|
||||||
|
height: 1.25rem; /* 20px */
|
||||||
|
/* margin: auto; */
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer > a > img {
|
||||||
|
width: 1.25rem; /* 20px */
|
||||||
|
height: 1.25rem; /* 20px */
|
||||||
|
/* margin-left: 0.5rem; 8px */
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a:hover img {
|
||||||
|
opacity: 1;
|
||||||
|
color: #FF416C;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
|
||||||
|
#social-title {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a {
|
||||||
|
border-right: none;
|
||||||
|
border-left: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
#social-icons > a > img {
|
||||||
|
width: 1.5rem; /* 20px */
|
||||||
|
height: 1.5rem; /* 20px */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'AppFooter',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
route: this.$route.path,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
return {
|
||||||
|
social: useRuntimeConfig().dev.contacts.social
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
106
components/AppHeader.vue
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
<template>
|
||||||
|
<header id="navbar" class="w-full hidden lg:flex flex-col">
|
||||||
|
<nav class="w-full flex justify-between border-bot">
|
||||||
|
<github-corner url="https://github.com/Snigdha-OS/" />
|
||||||
|
<div class="flex">
|
||||||
|
<NuxtLink id="nav-logo" to="/">
|
||||||
|
{{ config.dev.name }}
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link" to="/" :class="{ active: isActive('/') }">
|
||||||
|
_hello.py
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link" to="/about-me" :class="{ active: isActive('/about-me') }">
|
||||||
|
_about.py
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link" to="/projects" :class="{ active: isActive('/projects') }">
|
||||||
|
_projects.py
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link" to="https://forum.snigdhaos.org" :class="{ active: isActive('') }">
|
||||||
|
_forum.py
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link-contact" to="/contact-me" :class="{ active: isActive('/contact-me')}">
|
||||||
|
_contact.py
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import GithubCorner from './GithubCorner.vue';
|
||||||
|
export default {
|
||||||
|
name: 'AppHeader',
|
||||||
|
components: {
|
||||||
|
GithubCorner
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
// Set active class to current page link
|
||||||
|
isActive() {
|
||||||
|
return route => this.$route.path === route;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const config = useRuntimeConfig()
|
||||||
|
|
||||||
|
return {
|
||||||
|
config
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
#nav-link {
|
||||||
|
border-right: 1px solid #1E2D3D;
|
||||||
|
@apply text-menu-text font-fira_retina px-6 h-full flex items-center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-link-contact {
|
||||||
|
border-left: 1px solid #1E2D3D;
|
||||||
|
@apply text-menu-text font-fira_retina px-6 h-full flex items-center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-link:hover, #nav-link-contact:hover {
|
||||||
|
background-color: #1e2d3d74;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-logo {
|
||||||
|
border-right: 1px solid #1E2D3D;
|
||||||
|
@apply text-menu-text font-fira_bold px-6 h-full flex items-center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-logo:hover {
|
||||||
|
background-color: #1e2d3d74;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-link.router-link-active, #nav-link-contact.router-link-active {
|
||||||
|
border-bottom: 1px solid #FF416C;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-logo.router-link-active {
|
||||||
|
border-right: 1px solid #1E2D3D;
|
||||||
|
border-bottom: none;
|
||||||
|
@apply text-menu-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#navbar > nav {
|
||||||
|
height: 45px;
|
||||||
|
font-size: 15px;
|
||||||
|
/* @apply items-center */
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
72
components/CommentedText.vue
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<template>
|
||||||
|
<div class="code-container flex font-fira_retina text-menu-text">
|
||||||
|
<div class="line-numbers lg:flex flex-col w-32 hidden">
|
||||||
|
|
||||||
|
<!-- line numbers and asteriscs -->
|
||||||
|
<div v-for="n in lines" class="grid grid-cols-2 justify-end" :key="n">
|
||||||
|
<span class="col-span-1 mr-3">{{ n }}</span>
|
||||||
|
<div v-if="n == 1" class="col-span-1 flex justify-center">#</div>
|
||||||
|
<div class="col-span-1 flex justify-center" v-if="n > 1 && n < lines">#</div>
|
||||||
|
<div class="col-span-1 flex justify-center" v-if="n == lines">#</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- text -->
|
||||||
|
<div class="text-container">
|
||||||
|
<p v-html="text"></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
text: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
lines: 0
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.updateLines();
|
||||||
|
window.addEventListener("resize", this.updateLines);
|
||||||
|
window.addEventListener("click", this.updateLines);
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
window.removeEventListener("resize", this.updateLines);
|
||||||
|
window.removeEventListener("click", this.updateLines);
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
updateLines() {
|
||||||
|
const textContainer = this.$el.querySelector(".text-container");
|
||||||
|
const style = window.getComputedStyle(textContainer);
|
||||||
|
const fontSize = parseInt(style.fontSize);
|
||||||
|
const lineHeight = parseInt(style.lineHeight);
|
||||||
|
const maxHeight = textContainer.offsetHeight;
|
||||||
|
this.lines = Math.ceil(maxHeight / lineHeight) + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.code-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-container {
|
||||||
|
width: 100%;
|
||||||
|
padding-left: 10px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
</style>
|
128
components/ContactForm.vue
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
<template>
|
||||||
|
<form id="contact-form" class="text-sm">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<label for="name" class="mb-3">_name:</label>
|
||||||
|
<input type="text" id="name-input" name="name" :placeholder="name" class="p-2 mb-5 placeholder-slate-600" required>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<label for="email" class="mb-3">_email:</label>
|
||||||
|
<input type="email" id="email-input" name="email" :placeholder="email" class="p-2 mb-5 placeholder-slate-600" required>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<label for="message" class="mb-3">_message:</label>
|
||||||
|
<textarea id="message-input" name="message" :placeholder="message" class="placeholder-slate-600" required></textarea>
|
||||||
|
</div>
|
||||||
|
<button id="submit-button" type="submit" class="py-2 px-4">submit-message</button>
|
||||||
|
</form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'ContactForm',
|
||||||
|
props: {
|
||||||
|
name: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
message: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
document.getElementById("contact-form").addEventListener("submit", function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
const name = document.querySelector('input[name="name"]').value;
|
||||||
|
const email = document.querySelector('input[name="email"]').value;
|
||||||
|
const message = document.querySelector('textarea[name="message"]').value;
|
||||||
|
|
||||||
|
// Here the code to send the email
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
form {
|
||||||
|
@apply font-fira_retina text-menu-text
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
background-color: #011221;
|
||||||
|
border: 2px solid #1E2D3D;
|
||||||
|
border-radius: 7px;
|
||||||
|
|
||||||
|
}
|
||||||
|
/* Change Autocomplete styles in Chrome*/
|
||||||
|
input:-webkit-autofill,
|
||||||
|
input:-webkit-autofill:hover,
|
||||||
|
input:-webkit-autofill:focus,
|
||||||
|
textarea:-webkit-autofill,
|
||||||
|
textarea:-webkit-autofill:hover,
|
||||||
|
textarea:-webkit-autofill:focus,
|
||||||
|
select:-webkit-autofill,
|
||||||
|
select:-webkit-autofill:hover,
|
||||||
|
select:-webkit-autofill:focus {
|
||||||
|
-webkit-text-fill-color: rgb(190, 190, 190);
|
||||||
|
transition: background-color 5000s ease-in-out 0s;
|
||||||
|
border: 2px solid #607b96;
|
||||||
|
}
|
||||||
|
|
||||||
|
#message-input {
|
||||||
|
background-color: #011221;
|
||||||
|
border: 2px solid #1E2D3D;
|
||||||
|
border-radius: 7px;
|
||||||
|
resize: none;
|
||||||
|
height: 150px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#submit-button {
|
||||||
|
@apply font-fira_retina text-white text-sm;
|
||||||
|
background-color: #1E2D3D;
|
||||||
|
border-radius: 7px;
|
||||||
|
margin-top: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#submit-button:hover {
|
||||||
|
background-color: #263B50;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:focus, #message-input:focus {
|
||||||
|
outline: none;
|
||||||
|
transition: none;
|
||||||
|
border: 2px solid #607b96;
|
||||||
|
box-shadow: #607b9669 0px 0px 0px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#contact-form {
|
||||||
|
max-width: 370px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1920px) {
|
||||||
|
#contact-form {
|
||||||
|
max-width: 320px;
|
||||||
|
max-height: 400px;
|
||||||
|
}
|
||||||
|
#submit-button {
|
||||||
|
/* width: 100%; */
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
textarea {
|
||||||
|
font-size: 13px;
|
||||||
|
max-height: 130px !important;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
171
components/FormContentCode.vue
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
<template>
|
||||||
|
<div class="code-container flex font-fira_retina text-menu-text">
|
||||||
|
<div class="line-numbers lg:flex flex-col w-16 hidden">
|
||||||
|
|
||||||
|
<!-- line numbers and asteriscs -->
|
||||||
|
<div v-for="n in lines" class="grid grid-cols-2 justify-end" :key="n">
|
||||||
|
<span class="col-span-1 mr-3">{{ n }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="font-fira_retina text-white text-container">
|
||||||
|
<p>
|
||||||
|
|
||||||
|
<span class="tag">
|
||||||
|
const
|
||||||
|
</span>
|
||||||
|
<span class="tag-name">
|
||||||
|
button
|
||||||
|
</span>
|
||||||
|
=
|
||||||
|
<span class="tag-name">
|
||||||
|
document.querySelector
|
||||||
|
<span class="text-menu-text">
|
||||||
|
(
|
||||||
|
<span class="text-codeline-link">
|
||||||
|
'#sendBtn'
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<p class="text-menu-text">
|
||||||
|
<span class="tag">
|
||||||
|
const
|
||||||
|
</span>
|
||||||
|
<span class="tag-name">
|
||||||
|
message
|
||||||
|
</span>
|
||||||
|
= {
|
||||||
|
<br>
|
||||||
|
<span id="name" class="tag-name">
|
||||||
|
name
|
||||||
|
</span>
|
||||||
|
:
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
<span id="name-value" class="text-codeline-link">
|
||||||
|
{{ name }}
|
||||||
|
</span>
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
, <br>
|
||||||
|
<span id="email" class="tag-name">
|
||||||
|
email
|
||||||
|
</span>
|
||||||
|
:
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
<span id="email-value" class="text-codeline-link">
|
||||||
|
{{ email }}
|
||||||
|
</span>
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
, <br>
|
||||||
|
<span id="message" class="tag-name">
|
||||||
|
message
|
||||||
|
</span>
|
||||||
|
:
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
<span id="message-value" class="text-codeline-link">
|
||||||
|
{{ message }}
|
||||||
|
</span>
|
||||||
|
<span class="text-codeline-link">"</span>
|
||||||
|
, <br>
|
||||||
|
date:
|
||||||
|
<span class="text-codeline-link">
|
||||||
|
"{{ date }}"
|
||||||
|
</span>
|
||||||
|
<br>
|
||||||
|
}
|
||||||
|
</p>
|
||||||
|
<br>
|
||||||
|
<p>
|
||||||
|
<span class="tag-name">
|
||||||
|
button.addEventListener
|
||||||
|
|
||||||
|
<span class="text-menu-text">
|
||||||
|
(
|
||||||
|
<span class="text-codeline-link">
|
||||||
|
'click'
|
||||||
|
</span>
|
||||||
|
), ()
|
||||||
|
<span class="tag">
|
||||||
|
=>
|
||||||
|
</span>
|
||||||
|
{
|
||||||
|
<br>
|
||||||
|
</span>
|
||||||
|
form.send
|
||||||
|
<span class="text-menu-text">(</span>
|
||||||
|
message
|
||||||
|
<span class="text-menu-text">); <br> })</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
date: new Date().toDateString(),
|
||||||
|
lines: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
name: String,
|
||||||
|
email: String,
|
||||||
|
message: String,
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.updateLines();
|
||||||
|
window.addEventListener("resize", this.updateLines);
|
||||||
|
window.addEventListener("input", this.updateLines);
|
||||||
|
window.addEventListener("click", this.updateLines);
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
window.removeEventListener("resize", this.updateLines);
|
||||||
|
window.removeEventListener("click", this.updateLines);
|
||||||
|
window.addEventListener("input", this.updateLines);
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
updateLines() {
|
||||||
|
const textContainer = this.$el.querySelector(".text-container");
|
||||||
|
const style = window.getComputedStyle(textContainer);
|
||||||
|
const fontSize = parseInt(style.fontSize);
|
||||||
|
const lineHeight = parseInt(style.lineHeight);
|
||||||
|
const maxHeight = textContainer.offsetHeight;
|
||||||
|
this.lines = Math.ceil(maxHeight / lineHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.tag {
|
||||||
|
color: #C98BDF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-name{
|
||||||
|
color: #FF7F53;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow {
|
||||||
|
color: #F8F8F8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-numbers {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-container {
|
||||||
|
width: 100%;
|
||||||
|
padding-left: 0px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
</style>
|
169
components/GistSnippet.vue
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
<template>
|
||||||
|
<div class="gist mb-5" v-if="dataFetched">
|
||||||
|
|
||||||
|
<!-- head info -->
|
||||||
|
<div class="flex justify-between my-2">
|
||||||
|
|
||||||
|
<div class="flex">
|
||||||
|
<!-- avatar -->
|
||||||
|
<img :src="gist.owner.avatar_url" alt="" class="w-8 h-8 rounded-full mr-2">
|
||||||
|
|
||||||
|
<!-- username & gist date info -->
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<a id="username" :href="'https://github.com/' + gist.owner.login" target="_blank" class="font-fira_bold text-purple-text text-xs pb-1 hover:cursor-pointer">
|
||||||
|
@{{ gist.owner.login }}
|
||||||
|
</a>
|
||||||
|
<p class="font-fira_retina text-xs text-menu-text">Created {{ monthsAgo }} months ago</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- details and stars -->
|
||||||
|
<div class="flex text-menu-text font-fira_retina text-xs justify-self-end lg:mx-2">
|
||||||
|
<div class="flex lg:mx-2 hover:cursor-pointer hover:text-white">
|
||||||
|
<img src="/icons/gist/comments.svg" alt="" class="w-4 h-4 mr-2">
|
||||||
|
<span @click="showComment(gist.id)">details</span>
|
||||||
|
</div>
|
||||||
|
<div class="hidden lg:flex hover:cursor-pointer hover:text-white">
|
||||||
|
<img src="/icons/gist/star.svg" alt="" class="w-4 h-4 mx-2">
|
||||||
|
<span class="">stars</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<highlightjs class="snippet-container" :code="content"/>
|
||||||
|
<div :id="'comment' + gist.id" class="flex hidden justify-between text-menu-text font-fira_retina mt-4 pt-4 border-top">
|
||||||
|
<p id="comment" v-if="comment" class="w-5/6">{{ comment }}</p>
|
||||||
|
<p v-else class="w-5/6">No comments.</p>
|
||||||
|
<img src="/icons/close.svg" alt="" class="hover:cursor-pointer" @click="showComment(gist.id)">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.snippet-container {
|
||||||
|
background-color: #011221;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 0px;
|
||||||
|
border: 1px solid #FF416C;
|
||||||
|
font-size: 12px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
overflow-x: scroll;
|
||||||
|
max-height: 220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet-container pre {
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
max-height: 220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet-container code {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
max-height: 220px;
|
||||||
|
width: max-content;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.snippet-container::-webkit-scrollbar {
|
||||||
|
display: none; /* Safari and Chrome */
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code.hljs{
|
||||||
|
display:block;
|
||||||
|
/* overflow-x:auto; */
|
||||||
|
padding:1.5em
|
||||||
|
}
|
||||||
|
|
||||||
|
code.hljs{
|
||||||
|
padding:3px 5px
|
||||||
|
}
|
||||||
|
|
||||||
|
#comment {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#username:hover {
|
||||||
|
color: #FF416C;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #comment {
|
||||||
|
|
||||||
|
} */
|
||||||
|
|
||||||
|
.hljs{color:#607B96;background:#011221}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#79c0ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-code,.hljs-comment,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
import hljsVuePlugin from "@highlightjs/vue-plugin";
|
||||||
|
import 'highlight.js/lib/common';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'GistSnippet',
|
||||||
|
props: {
|
||||||
|
id: {
|
||||||
|
type: String,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
gist: null,
|
||||||
|
monthsAgo: null,
|
||||||
|
content: null,
|
||||||
|
language: null,
|
||||||
|
dataFetched: false,
|
||||||
|
comment: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
fetch(`https://api.github.com/gists/${this.id}`)
|
||||||
|
.then(response => response.json())
|
||||||
|
.then(data => this.setValues(data))
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async setValues(gist) {
|
||||||
|
this.gist = gist
|
||||||
|
this.monthsAgo = this.setMonths(gist.created_at)
|
||||||
|
this.content = this.setSnippet(gist)
|
||||||
|
this.language = Object.values(gist.files)[0].language
|
||||||
|
this.dataFetched = true
|
||||||
|
this.comment = await this.setComments(gist.comments_url)
|
||||||
|
},
|
||||||
|
setMonths(date) {
|
||||||
|
let now = new Date()
|
||||||
|
let gistDate = new Date(date)
|
||||||
|
let diff = now.getTime() - gistDate.getTime()
|
||||||
|
let days = Math.floor(diff / (1000 * 3600 * 24))
|
||||||
|
let months = Math.floor(days / 30)
|
||||||
|
return months
|
||||||
|
},
|
||||||
|
setSnippet(gist) {
|
||||||
|
let snippet = Object.values(gist.files)[0].content // Object.values(gist.files)[0].filename.content
|
||||||
|
return snippet
|
||||||
|
},
|
||||||
|
async setComments(comments_url){
|
||||||
|
let response = await fetch(comments_url)
|
||||||
|
let data = await response.json()
|
||||||
|
try{
|
||||||
|
let body = data[0].body
|
||||||
|
return body
|
||||||
|
} catch {
|
||||||
|
console.log(`no comments found on ${comments_url}`)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
showComment(id) {
|
||||||
|
let comment = document.getElementById('comment' + id)
|
||||||
|
comment.classList.toggle('hidden')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
highlightjs: hljsVuePlugin.component
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
64
components/GithubCorner.vue
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
<template>
|
||||||
|
<a :href="url" class="github-corner" target="_blank" aria-label="View source on Github">
|
||||||
|
<svg width="80" height="80" viewBox="0 0 250 250" aria-hidden="true">
|
||||||
|
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
||||||
|
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
|
||||||
|
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
|
||||||
|
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
|
||||||
|
fill="currentColor" class="octo-body"></path>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'GithubCorner',
|
||||||
|
props: {
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/* ----------------------------------------------
|
||||||
|
* GitHub Corners
|
||||||
|
* w: https://github.com/tholman/github-corners
|
||||||
|
* ---------------------------------------------- */
|
||||||
|
|
||||||
|
.github-corner {
|
||||||
|
fill: #071511;
|
||||||
|
color: #FF7F53;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
border: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.github-corner:hover .octo-arm {
|
||||||
|
animation: octocat-wave 560ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes octocat-wave {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
transform: rotate(0);
|
||||||
|
}
|
||||||
|
20%,
|
||||||
|
60% {
|
||||||
|
transform: rotate(-25deg);
|
||||||
|
}
|
||||||
|
40%,
|
||||||
|
80% {
|
||||||
|
transform: rotate(10deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
.github-corner {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
98
components/MobileMenu.vue
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
<template>
|
||||||
|
<div id="mobile-menu" class="w-full z-10 lg:hidden">
|
||||||
|
|
||||||
|
<!-- header -->
|
||||||
|
<div id="mobile-header" class="w-full h-16 flex justify-between items-center">
|
||||||
|
<NuxtLink class="text-menu-text font-fira_retina flex h-full items-center mx-5" to="/" @click="goHome()">
|
||||||
|
{{ config.dev.logo_name }}
|
||||||
|
</NuxtLink>
|
||||||
|
<img src="/icons/burger.svg" v-if="!menuOpen" @click="toggleMobileMenu()" class="w-5 h-5 mx-5 my-auto"/>
|
||||||
|
<img src="/icons/burger-close.svg" v-else @click="toggleMobileMenu()" name="icon-park-outline:close" class="w-5 h-5 mx-5 my-auto"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- mobile menu -->
|
||||||
|
<div id="menu" class="bg-mobile-menu-blue z-10 hidden">
|
||||||
|
<NuxtLink id="nav-link-mobile" to="/" :class="{ active: isActive('/') }" @click="toggleMobileMenu()">
|
||||||
|
_hello
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link-mobile" to="/about-me" :class="{ active: isActive('/about-me') }" @click="toggleMobileMenu()">
|
||||||
|
_about
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link-mobile" to="/projects" :class="{ active: isActive('/projects') }" @click="toggleMobileMenu()">
|
||||||
|
_projects
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
<NuxtLink id="nav-link-mobile" to="/contact-me" :class="{ active: isActive('/contact-me') }" @click="toggleMobileMenu()">
|
||||||
|
_contact
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
menuOpen: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const config = useRuntimeConfig()
|
||||||
|
|
||||||
|
return {
|
||||||
|
config
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
toggleMobileMenu(){
|
||||||
|
|
||||||
|
this.menuOpen ? this.menuOpen = false : this.menuOpen = true
|
||||||
|
|
||||||
|
const menu = document.getElementById('menu');
|
||||||
|
menu.classList.toggle('hidden')
|
||||||
|
|
||||||
|
const page = document.getElementsByTagName('main')[0];
|
||||||
|
// Hide / show section
|
||||||
|
if (page.style.display === 'none') {
|
||||||
|
page.style.display = 'flex';
|
||||||
|
} else {
|
||||||
|
page.style.display = 'none';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
goHome() {
|
||||||
|
const menu = document.getElementById('menu');
|
||||||
|
if(!menu.classList.contains('hidden')){
|
||||||
|
menu.classList.toggle('hidden')
|
||||||
|
document.getElementsByTagName('main')[0].style.display = 'flex';
|
||||||
|
this.menuOpen ? this.menuOpen = false : this.menuOpen = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
// Set active class to current page link
|
||||||
|
isActive() {
|
||||||
|
return route => this.$route.path === route;
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
#mobile-header {
|
||||||
|
border-bottom: 1px solid #1E2D3D;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-link-mobile {
|
||||||
|
border-bottom: 1px solid #1E2D3D;
|
||||||
|
@apply text-menu-text font-fira_retina px-6 py-4 flex items-center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-link-mobile.active {
|
||||||
|
color: white
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
80
components/ProjectCard.vue
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
<template>
|
||||||
|
<div id="project" :key="key" class="lg:mx-5">
|
||||||
|
|
||||||
|
<span class="flex text-sm my-3">
|
||||||
|
<h3 v-if="index == null" class="text-purplefy font-fira_bold mr-3">Project {{ key + 1 }}</h3>
|
||||||
|
<h3 v-else class="text-purplefy font-fira_bold mr-3">Project {{ index + 1 }}</h3>
|
||||||
|
<h4 class="font-fira_retina text-menu-text"> // {{ project.title }}</h4>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<div id="project-card" class="flex flex-col">
|
||||||
|
<div id="window">
|
||||||
|
<div class="absolute flex right-3 top-3">
|
||||||
|
<img v-for="tech in project.tech" :key="tech" :src="'/icons/techs/filled/' + tech + '.svg'" alt="" class="w-6 h-6 mx-1 hover:opacity-75">
|
||||||
|
</div>
|
||||||
|
<img id="showcase" :src="project.img" alt="" class="">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pb-8 pt-6 px-6 border-top">
|
||||||
|
<p class="text-menu-text font-fira_retina text-sm mb-5">
|
||||||
|
{{ project.description }}
|
||||||
|
</p>
|
||||||
|
<a id="view-button" :href="project.url" target="_blank" class="text-white font-fira_retina py-2 px-4 w-fit text-xs rounded-lg">
|
||||||
|
view-project
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
const { project, key, index } = defineProps(['project', 'key', 'index'])
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
#project {
|
||||||
|
min-width: 400px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#project-card {
|
||||||
|
border: 1px solid #FF7F53;
|
||||||
|
background-color: #011221;
|
||||||
|
border-radius: 1px;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
max-height: 120px;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#showcase {
|
||||||
|
border-top-right-radius: 15px;
|
||||||
|
border-top-left-radius: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
#project {
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
#project {
|
||||||
|
width: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
padding-inline: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1350px) {
|
||||||
|
#project {
|
||||||
|
width: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
padding-inline: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
24
components/README.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# `components/` [Directory](https://nuxt.com/docs/getting-started/views#components)
|
||||||
|
|
||||||
|
Most components are reusable pieces of the user interface, like buttons and menus. In Nuxt, you can create these components in the `components/` directory, and they will be automatically available across your application without having to explicitly import them.
|
||||||
|
|
||||||
|
*app.vue*
|
||||||
|
````html
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h1>Welcome to the homepage</h1>
|
||||||
|
<AppAlert>
|
||||||
|
This is an auto-imported component.
|
||||||
|
</AppAlert>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
````
|
||||||
|
|
||||||
|
*components/AppAlert.vue*
|
||||||
|
````html
|
||||||
|
<template>
|
||||||
|
<span>
|
||||||
|
<slot />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
````
|
580
components/SnakeGame.vue
Normal file
@@ -0,0 +1,580 @@
|
|||||||
|
<template>
|
||||||
|
<div id="console">
|
||||||
|
|
||||||
|
<!-- bolts -->
|
||||||
|
<img id="corner" src="/icons/console/bolt-up-left.svg" alt="" class="absolute top-2 left-2 opacity-70">
|
||||||
|
<img id="corner" src="/icons/console/bolt-up-right.svg" alt="" class="absolute top-2 right-2 opacity-70">
|
||||||
|
<img id="corner" src="/icons/console/bolt-down-left.svg" alt="" class="absolute bottom-2 left-2 opacity-70">
|
||||||
|
<img id="corner" src="/icons/console/bolt-down-right.svg" alt="" class="absolute bottom-2 right-2 opacity-70">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Game Screen -->
|
||||||
|
<div id="game-screen" ref="gameScreen"></div>
|
||||||
|
|
||||||
|
<button id="start-button" class="font-fira_retina" @click="startGame">start-game</button>
|
||||||
|
|
||||||
|
<!-- Game Over -->
|
||||||
|
<div id="game-over" class="hidden">
|
||||||
|
<span class="font-fira_retina text-greenfy bg-bluefy-dark h-12 flex items-center justify-center">GAME OVER!</span>
|
||||||
|
<button class="font-fira_retina text-menu-text text-sm flex items-center justify-center w-full py-6 hover:text-white" @click="startAgain">start-again</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="congrats" class="hidden">
|
||||||
|
<span class="font-fira_retina text-greenfy bg-bluefy-dark h-12 flex items-center justify-center">WELL DONE!</span>
|
||||||
|
<button class="font-fira_retina text-menu-text text-sm flex items-center justify-center w-full py-6 hover:text-white" @click="startAgain">play-again</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="console-menu" class="h-full flex flex-col items-end justify-between">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div id="instructions" class="font-fira_retina text-sm text-white">
|
||||||
|
<p># use your keyboard</p>
|
||||||
|
<p># arrows to play</p>
|
||||||
|
|
||||||
|
<div id="buttons" class="w-full flex flex-col items-center gap-1 pt-5">
|
||||||
|
|
||||||
|
<button id="console-button" class="button-up" @click="move('up')">
|
||||||
|
<img src="/icons/console/arrow-button.svg" alt="">
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="grid grid-cols-3 gap-1">
|
||||||
|
<button id="console-button" class="button-left" @click="move('left')">
|
||||||
|
<img src="/icons/console/arrow-button.svg" alt="" class="-rotate-90">
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button id="console-button" class="button-down" @click="move('down')">
|
||||||
|
<img src="/icons/console/arrow-button.svg" alt="" class="rotate-180">
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button id="console-button" class="button-right" @click="move('right')">
|
||||||
|
<img src="/icons/console/arrow-button.svg" alt="" class="rotate-90">
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- score board -->
|
||||||
|
<div id="score-board" class="w-full flex flex-col pl-5">
|
||||||
|
<p class="font-fira_retina text-white pt-5"># food left</p>
|
||||||
|
|
||||||
|
<div id="score" class="grid grid-cols-5 gap-5 justify-items-center pt-5 w-fit">
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
<div class="food"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- skip -->
|
||||||
|
<NuxtLink id="skip-btn" to="/about-me" class="font-fira_retina flex hover:bg-white/20">
|
||||||
|
skip?
|
||||||
|
</NuxtLink>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
score: 0,
|
||||||
|
gameInterval: null,
|
||||||
|
gameStarted: false,
|
||||||
|
gameOver: false,
|
||||||
|
food: { x: 10, y: 5 },
|
||||||
|
snake: [
|
||||||
|
{ x: 10, y: 12 },
|
||||||
|
{ x: 10, y: 13 },
|
||||||
|
{ x: 10, y: 14 },
|
||||||
|
{ x: 10, y: 15 },
|
||||||
|
{ x: 10, y: 16 },
|
||||||
|
{ x: 10, y: 17 },
|
||||||
|
{ x: 10, y: 18 },
|
||||||
|
{ x: 11, y: 18 },
|
||||||
|
{ x: 12, y: 18 },
|
||||||
|
{ x: 13, y: 18 },
|
||||||
|
{ x: 14, y: 18 },
|
||||||
|
{ x: 15, y: 18 },
|
||||||
|
{ x: 15, y: 19 },
|
||||||
|
{ x: 15, y: 20 },
|
||||||
|
{ x: 15, y: 21 },
|
||||||
|
{ x: 15, y: 22 },
|
||||||
|
{ x: 15, y: 23 },
|
||||||
|
{ x: 15, y: 24 },
|
||||||
|
],
|
||||||
|
direction: "up",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
startGame() {
|
||||||
|
|
||||||
|
// hide start button
|
||||||
|
document.getElementById("start-button").style.display = "none";
|
||||||
|
|
||||||
|
// start game
|
||||||
|
this.gameStarted = true;
|
||||||
|
this.gameInterval = setInterval(this.moveSnake, 50);
|
||||||
|
},
|
||||||
|
startAgain() {
|
||||||
|
// Mostrar botón de start-game
|
||||||
|
document.getElementById("start-button").style.display = "block";
|
||||||
|
|
||||||
|
// Ocultar game over
|
||||||
|
document.getElementById("game-over").style.display = "none";
|
||||||
|
document.getElementById("congrats").style.display = "none";
|
||||||
|
|
||||||
|
|
||||||
|
// reiniciar datos del juego
|
||||||
|
this.gameStarted = false;
|
||||||
|
this.gameOver = false;
|
||||||
|
this.restartScore();
|
||||||
|
this.food = {
|
||||||
|
x: 10,
|
||||||
|
y: 5
|
||||||
|
};
|
||||||
|
this.snake = [
|
||||||
|
{ x: 10, y: 12 },
|
||||||
|
{ x: 10, y: 13 },
|
||||||
|
{ x: 10, y: 14 },
|
||||||
|
{ x: 10, y: 15 },
|
||||||
|
{ x: 10, y: 16 },
|
||||||
|
{ x: 10, y: 17 },
|
||||||
|
{ x: 10, y: 18 },
|
||||||
|
{ x: 11, y: 18 },
|
||||||
|
{ x: 12, y: 18 },
|
||||||
|
{ x: 13, y: 18 },
|
||||||
|
{ x: 14, y: 18 },
|
||||||
|
{ x: 15, y: 18 },
|
||||||
|
{ x: 15, y: 19 },
|
||||||
|
{ x: 15, y: 20 },
|
||||||
|
{ x: 15, y: 21 },
|
||||||
|
{ x: 15, y: 22 },
|
||||||
|
{ x: 15, y: 23 },
|
||||||
|
{ x: 15, y: 24 },
|
||||||
|
],
|
||||||
|
this.direction = "up";
|
||||||
|
|
||||||
|
// limpiar intervalo de juego
|
||||||
|
clearInterval(this.gameInterval);
|
||||||
|
this.render();
|
||||||
|
},
|
||||||
|
// ... resto del código
|
||||||
|
moveSnake() {
|
||||||
|
let newX = this.snake[0].x;
|
||||||
|
let newY = this.snake[0].y;
|
||||||
|
|
||||||
|
switch (this.direction) {
|
||||||
|
case "up":
|
||||||
|
newY--;
|
||||||
|
break;
|
||||||
|
case "down":
|
||||||
|
newY++;
|
||||||
|
break;
|
||||||
|
case "left":
|
||||||
|
newX--;
|
||||||
|
break;
|
||||||
|
case "right":
|
||||||
|
newX++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check if snake dont leave from game window
|
||||||
|
// and check if snake dont eat itself
|
||||||
|
if (
|
||||||
|
newX >= 0 &&
|
||||||
|
newX < 24 &&
|
||||||
|
newY >= 0 &&
|
||||||
|
newY < 40 &&
|
||||||
|
!this.snake.find(
|
||||||
|
snakeCell => snakeCell.x === newX && snakeCell.y === newY
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
/* snake move next cell */
|
||||||
|
this.snake.unshift({ x: newX, y: newY });
|
||||||
|
|
||||||
|
/* check snake next cell is food */
|
||||||
|
if (newX === this.food.x && newY === this.food.y) {
|
||||||
|
|
||||||
|
// add score
|
||||||
|
this.score++;
|
||||||
|
|
||||||
|
// add food to score board
|
||||||
|
const scoreFoods = document.getElementsByClassName("food");
|
||||||
|
scoreFoods[this.score - 1].style.opacity = 1;
|
||||||
|
|
||||||
|
// check if score is 10 (max score)
|
||||||
|
if(this.score === 10) {
|
||||||
|
|
||||||
|
// move snake head to food (fix snake head position at end)
|
||||||
|
this.snake.unshift({ x: newX, y: newY }); // move head
|
||||||
|
this.food = { x: null, y: null } // remove food
|
||||||
|
clearInterval(this.gameInterval); // stop game
|
||||||
|
document.getElementById('congrats').style.display = 'block' // show congrats
|
||||||
|
this.gameOver = true; // game over
|
||||||
|
this.gameStarted = false; // stop game
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// create new food
|
||||||
|
this.food = {
|
||||||
|
x: Math.floor(Math.random() * 24),
|
||||||
|
y: Math.floor(Math.random() * 40)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// if next cell is not food: snake pop last cell
|
||||||
|
this.snake.pop();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// GAME OVER: if snake leave from game window or eat itself
|
||||||
|
clearInterval(this.gameInterval);
|
||||||
|
document.getElementById('game-over').style.display = 'block'
|
||||||
|
this.gameStarted = false;
|
||||||
|
this.gameOver = true;
|
||||||
|
}
|
||||||
|
this.render();
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
let gameScreen = this.$refs.gameScreen;
|
||||||
|
gameScreen.innerHTML = "";
|
||||||
|
|
||||||
|
// responsive cell screen
|
||||||
|
// (this.$refs.gameScreen.offsetWidth / 20) + "px";
|
||||||
|
|
||||||
|
/* const widthCells = window.innerWidth > 1536 ? 24 : 20; */
|
||||||
|
const cellSize = window.innerWidth > 1536 ? "10px" : "8px";
|
||||||
|
// eje y
|
||||||
|
for (let i = 0; i < 40; i++) {
|
||||||
|
// exe x
|
||||||
|
for (let j = 0; j < 24; j++) {
|
||||||
|
|
||||||
|
/* cell style */
|
||||||
|
let cell = document.createElement("div");
|
||||||
|
cell.classList.add("cell");
|
||||||
|
cell.style.width = cellSize
|
||||||
|
cell.style.height = cellSize
|
||||||
|
cell.style.display = "flex";
|
||||||
|
cell.style.flexShrink = 0;
|
||||||
|
cell.classList.add("black");
|
||||||
|
|
||||||
|
/* Food cell style */
|
||||||
|
if (j === this.food.x && i === this.food.y) {
|
||||||
|
cell.style.backgroundColor = "#FF7F53";
|
||||||
|
cell.style.borderRadius = "50%";
|
||||||
|
cell.style.boxShadow = "0 0 10px #FF7F53";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Estilo de la serpiente a medida que va crediendo */
|
||||||
|
let snakeCell = this.snake.find(
|
||||||
|
snakeCell => snakeCell.x === j && snakeCell.y === i
|
||||||
|
);
|
||||||
|
|
||||||
|
if (snakeCell) {
|
||||||
|
cell.style.backgroundColor = "#FF7F53";
|
||||||
|
cell.style.opacity = 1 - (this.snake.indexOf(snakeCell) / this.snake.length);
|
||||||
|
cell.classList.add("green");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Estilo de la cabeza */
|
||||||
|
if (snakeCell && this.snake.indexOf(snakeCell) === 0) {
|
||||||
|
|
||||||
|
let headRadius = "5px";
|
||||||
|
if (this.direction === "up") {
|
||||||
|
cell.style.borderTopLeftRadius = headRadius;
|
||||||
|
cell.style.borderTopRightRadius = headRadius;
|
||||||
|
}
|
||||||
|
if (this.direction === "down") {
|
||||||
|
|
||||||
|
cell.style.borderBottomLeftRadius = headRadius;
|
||||||
|
cell.style.borderBottomRightRadius = headRadius;
|
||||||
|
}
|
||||||
|
if (this.direction === "left") {
|
||||||
|
cell.style.borderTopLeftRadius = headRadius;
|
||||||
|
cell.style.borderBottomLeftRadius = headRadius;
|
||||||
|
}
|
||||||
|
if (this.direction === "right") {
|
||||||
|
cell.style.borderTopRightRadius = headRadius;
|
||||||
|
cell.style.borderBottomRightRadius = headRadius;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
gameScreen.appendChild(cell);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
restartScore(){
|
||||||
|
this.score = 0;
|
||||||
|
const scoreFoods = document.getElementsByClassName("food");
|
||||||
|
for (let i = 0; i < scoreFoods.length; i++) {
|
||||||
|
scoreFoods[i].style.opacity = 0.3;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
move(direction){
|
||||||
|
switch (direction) {
|
||||||
|
case "up":
|
||||||
|
if (this.direction !== "down") {
|
||||||
|
this.direction = "up";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "down":
|
||||||
|
if (this.direction !== "up") {
|
||||||
|
this.direction = "down";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "left":
|
||||||
|
if (this.direction !== "right") {
|
||||||
|
this.direction = "left";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "right":
|
||||||
|
if (this.direction !== "left") {
|
||||||
|
this.direction = "right";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
document.addEventListener("keydown", event => {
|
||||||
|
if (this.gameStarted) {
|
||||||
|
switch (event.keyCode) {
|
||||||
|
case 37:
|
||||||
|
if (this.direction !== "right") {
|
||||||
|
this.direction = "left";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 38:
|
||||||
|
if (this.direction !== "down") {
|
||||||
|
this.direction = "up";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 39:
|
||||||
|
if (this.direction !== "left") {
|
||||||
|
this.direction = "right";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 40:
|
||||||
|
if (this.direction !== "up") {
|
||||||
|
this.direction = "down";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
switch (event.keyCode) {
|
||||||
|
case 32:
|
||||||
|
if(this.gameOver){
|
||||||
|
this.startAgain();
|
||||||
|
}else {
|
||||||
|
this.startGame();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/* window.innerWidth < 1536 ? cellSize = 8 : cellSize = 10; */
|
||||||
|
/* this.food = {
|
||||||
|
x: Math.floor(Math.random() * 24),
|
||||||
|
y: Math.floor(Math.random() * 40)
|
||||||
|
}; */
|
||||||
|
window.onresize = () => {
|
||||||
|
this.render();
|
||||||
|
};
|
||||||
|
|
||||||
|
this.render();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
#console {
|
||||||
|
width: 530px;
|
||||||
|
height: 475px;
|
||||||
|
border: 1px solid black;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
background: linear-gradient(to right, #ff416c, #ff4b2b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 30px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#game-screen {
|
||||||
|
width: 240px;
|
||||||
|
height: 400px;
|
||||||
|
border-radius: 0px;
|
||||||
|
background-color: rgba(1, 22, 39, 0.84);
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
box-shadow: inset 0 0 10px #00000071;
|
||||||
|
}
|
||||||
|
|
||||||
|
#start-button {
|
||||||
|
padding-inline: 16px;
|
||||||
|
padding-block: 8px;
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 1px solid black;
|
||||||
|
background-color: #FF7F53;
|
||||||
|
color: black;
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20%;
|
||||||
|
left: 17%;
|
||||||
|
font-size: 0.875rem; /* 14px */
|
||||||
|
line-height: 1.25rem; /* 20px */
|
||||||
|
}
|
||||||
|
|
||||||
|
#start-button:hover {
|
||||||
|
background-color: #ff416c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#console-menu{
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#console-button {
|
||||||
|
background-color: #010C15;
|
||||||
|
border-radius: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 50px;
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#console-button:hover {
|
||||||
|
background-color: #010c15d8;
|
||||||
|
box-shadow: #FF7F53 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#instructions {
|
||||||
|
background-color: rgba(1, 20, 35, 0.19);
|
||||||
|
border-radius: 7px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.food {
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 50%;
|
||||||
|
box-shadow: 0 0 10px white;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
opacity: 0.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#game-over, #congrats {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 12%;
|
||||||
|
color: #FF7F53;
|
||||||
|
width: 240px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#game-over, #congrats > span {
|
||||||
|
font-size: 1.5rem; /* 24px */
|
||||||
|
line-height: 2rem; /* 32px */
|
||||||
|
}
|
||||||
|
|
||||||
|
#corner {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#skip-btn{
|
||||||
|
font-size: 14px;
|
||||||
|
color: white;
|
||||||
|
padding-inline: 16px;
|
||||||
|
padding-block: 8px;
|
||||||
|
border: 2px solid white;
|
||||||
|
border-radius: 0.5rem; /* 8px */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (min-width: 1024px) and (max-width: 1536px) {
|
||||||
|
#game-screen {
|
||||||
|
width: 192px;
|
||||||
|
height: 320px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#console {
|
||||||
|
width: 420px;
|
||||||
|
height: 370px;
|
||||||
|
padding: 24px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#start-button {
|
||||||
|
padding-inline: 12px;
|
||||||
|
padding-block: 6px;
|
||||||
|
border-radius: 8px;
|
||||||
|
bottom: 20%;
|
||||||
|
left: 17%;
|
||||||
|
font-size: 0.75rem; /* 14px */
|
||||||
|
line-height: 1rem; /* 20px */
|
||||||
|
}
|
||||||
|
|
||||||
|
#console-menu{
|
||||||
|
height: 320px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#instructions {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#console-button {
|
||||||
|
width: 40px;
|
||||||
|
height: 25px;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#score-board {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.food {
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#game-over, #congrats {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10%;
|
||||||
|
color: #FF7F53;
|
||||||
|
width: 192px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#game-over, #congrats > span {
|
||||||
|
font-size: 1.125rem; /* 18px */
|
||||||
|
line-height: 1.75rem; /* 28px */
|
||||||
|
}
|
||||||
|
|
||||||
|
#corner {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#skip-btn{
|
||||||
|
font-size: 12px;
|
||||||
|
padding-inline: 12px;
|
||||||
|
padding-block: 6px;
|
||||||
|
border: 2px solid white;
|
||||||
|
border-radius: 0.5rem; /* 8px */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@@ -1,6 +0,0 @@
|
|||||||
################ English language ##################
|
|
||||||
[en]
|
|
||||||
languageName = "En"
|
|
||||||
languageCode = "en-us"
|
|
||||||
contentDir = "content/english"
|
|
||||||
weight = 1
|
|
@@ -1,70 +0,0 @@
|
|||||||
############# English navigation ##############
|
|
||||||
|
|
||||||
# main menu
|
|
||||||
[[main]]
|
|
||||||
name = "Home"
|
|
||||||
pageRef = "/"
|
|
||||||
weight = 1
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "About"
|
|
||||||
pageRef = "/about"
|
|
||||||
weight = 2
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Blog"
|
|
||||||
pageRef = "/blog"
|
|
||||||
weight = 3
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Docs"
|
|
||||||
weight = 4
|
|
||||||
identifier = "docs"
|
|
||||||
url = "https://snigdhaos.org/documentation/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[main]]
|
|
||||||
name = "Get Started"
|
|
||||||
pageRef = "/get-started"
|
|
||||||
weight = 5
|
|
||||||
|
|
||||||
# footer menu
|
|
||||||
[[footer]]
|
|
||||||
name = "Cloud"
|
|
||||||
weight = 1
|
|
||||||
identifier = "cloud"
|
|
||||||
url = "https://cloud.snigdhaos.org/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Forum"
|
|
||||||
weight = 2
|
|
||||||
identifier = "forum"
|
|
||||||
url = "https://forum.snigdhaos.org/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Uptime"
|
|
||||||
weight = 3
|
|
||||||
identifier = "uptime"
|
|
||||||
url = "https://uptime.snigdhaos.org/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Tools"
|
|
||||||
weight = 4
|
|
||||||
identifier = "tools"
|
|
||||||
url = "https://tools.snigdhaos.org/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Status"
|
|
||||||
weight = 5
|
|
||||||
identifier = "status"
|
|
||||||
url = "https://snigdha-os.github.io/snigdhaos-status/"
|
|
||||||
target = "_blank"
|
|
||||||
|
|
||||||
[[footer]]
|
|
||||||
name = "Privacy Policy"
|
|
||||||
pageRef = "/privacy-policy"
|
|
||||||
weight = 6
|
|
@@ -1,93 +0,0 @@
|
|||||||
[hugoVersion]
|
|
||||||
extended = true
|
|
||||||
min = "0.115.2"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/zeon-studio/hugoplate"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/search"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/pwa"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/images"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/videos"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/icons/font-awesome"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/icons/themify-icons"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/gzip-caching"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/adsense"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/accordion"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/table-of-contents"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/tab"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/modal"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/gallery-slider"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/preloader"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/social-share"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/cookie-consent"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/custom-script"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/components/render-link"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/components/valine-comment"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/components/crisp-chat"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/button"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/shortcodes/notice"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/basic-seo"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/site-verifications"
|
|
||||||
|
|
||||||
[[imports]]
|
|
||||||
path = "github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/baidu-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/matomo-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/plausible-analytics"
|
|
||||||
|
|
||||||
# [[imports]]
|
|
||||||
# path = "github.com/gethugothemes/hugo-modules/seo-tools/counter-analytics"
|
|
@@ -1,101 +0,0 @@
|
|||||||
#################### default parameters ################################
|
|
||||||
# favicon module: https://github.com/gethugothemes/hugo-modules/tree/master/images#favicon-implementation
|
|
||||||
favicon = "images/snigdhaos-favicon.png"
|
|
||||||
# logo module: https://github.com/gethugothemes/hugo-modules/tree/master/images#logo-implementation
|
|
||||||
logo = "images/snigdhaos-hello.svg"
|
|
||||||
logo_darkmode = "images/snigdhaos-hello.svg"
|
|
||||||
# use `px` or `x` with logo_width, example: "100px".
|
|
||||||
# Note: logo_width is not work with .svg file
|
|
||||||
logo_width = "160px"
|
|
||||||
logo_height = "32px"
|
|
||||||
# if logo_webp set false, will not generate WEBP version of logo | default is true
|
|
||||||
logo_webp = true
|
|
||||||
# logo text will only show when logo is missing.
|
|
||||||
logo_text = "SNIGDHA OS"
|
|
||||||
# navbar fixed to top
|
|
||||||
navbar_fixed = true
|
|
||||||
# theme-mode
|
|
||||||
theme_switcher = true
|
|
||||||
theme_default = "system" # available options [light/dark/system]
|
|
||||||
# Main Sections
|
|
||||||
mainSections = ["blog"]
|
|
||||||
# contact form action
|
|
||||||
contact_form_action = "#" # contact form works with [https://airform.io/] or [https://formspree.io]
|
|
||||||
# google tag manager, see https://developers.google.com/tag-manager/
|
|
||||||
google_tag_manager = "" # example: G-XXXXXXXXXX
|
|
||||||
google_adsense = "" # example: ca-pub-xxxxxxxxxxxxxxxx
|
|
||||||
# custom script on header, example: custom_script= "<script>console.log(\"Hello World\")</script>"
|
|
||||||
custom_script = ""
|
|
||||||
# copyright
|
|
||||||
copyright = "Copright SNIGDHAOS.ORG ❤️ ALL RIGHTS RESERVED."
|
|
||||||
|
|
||||||
# Preloader
|
|
||||||
# preloader module: https://github.com/gethugothemes/hugo-modules/tree/master/components/preloader
|
|
||||||
[preloader]
|
|
||||||
enable = false
|
|
||||||
preloader = "" # use jpg, png, svg or gif format.
|
|
||||||
|
|
||||||
# Navigation button
|
|
||||||
[navigation_button]
|
|
||||||
enable = true
|
|
||||||
label = "GitHub"
|
|
||||||
link = "https://github.com/Snigdha-OS"
|
|
||||||
|
|
||||||
# search
|
|
||||||
# search module: https://github.com/gethugothemes/hugo-modules/tree/master/search
|
|
||||||
[search]
|
|
||||||
enable = true
|
|
||||||
primary_color = "#121212"
|
|
||||||
include_sections = ["blog"]
|
|
||||||
show_image = true
|
|
||||||
show_description = true
|
|
||||||
show_tags = true
|
|
||||||
show_categories = true
|
|
||||||
|
|
||||||
|
|
||||||
# seo meta data for OpenGraph / Twitter Card
|
|
||||||
# seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo
|
|
||||||
[metadata]
|
|
||||||
keywords = ["Snigdha-OS", "Snigdha"]
|
|
||||||
description = "Be silent when it is time to hear"
|
|
||||||
author = "eshanized"
|
|
||||||
image = "images/snigdhaos-showcase.png"
|
|
||||||
|
|
||||||
|
|
||||||
# site verifications
|
|
||||||
# verification module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/site-verifications
|
|
||||||
[site_verification]
|
|
||||||
google = "" # Your verification code
|
|
||||||
bing = "" # Your verification code
|
|
||||||
baidu = "" # Your verification code
|
|
||||||
facebook = "" # Your verification code
|
|
||||||
mastodon = "" # Your verification code
|
|
||||||
|
|
||||||
# cookies
|
|
||||||
# cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent
|
|
||||||
[cookies]
|
|
||||||
enable = true
|
|
||||||
expire_days = 30
|
|
||||||
content = "Your privacy matters to us. 🌟 We use cookies to provide social media features, and to analyze our traffic. By clicking 'Accept,' you consent to the use of ALL the cookies. Thank you for trusting us with your data privacy journey. ✨"
|
|
||||||
button = "Accept"
|
|
||||||
|
|
||||||
######################## sidebar widgets #########################
|
|
||||||
[widgets]
|
|
||||||
sidebar = ["categories", "tags"]
|
|
||||||
|
|
||||||
|
|
||||||
# google map
|
|
||||||
[google_map]
|
|
||||||
enable = false
|
|
||||||
map_api_key = "AIzaSyCcABaamniA6OL5YvYSpB3pFMNrXwXnLwU"
|
|
||||||
map_latitude = "51.5223477"
|
|
||||||
map_longitude = "-0.1622023"
|
|
||||||
map_marker = "images/marker.png"
|
|
||||||
|
|
||||||
|
|
||||||
# Subscription
|
|
||||||
[subscription]
|
|
||||||
enable = false
|
|
||||||
# mailchimp subsciption
|
|
||||||
mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours
|
|
||||||
mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074"
|
|
45
content/README.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
# `content/` [Directory](https://nuxt.com/docs/guide/directory-structure/content)
|
||||||
|
|
||||||
|
The Nuxt Content module reads the `content/` directory in your project and parses .md, .yml, .csv and .json files to create a file-based CMS for your application.
|
||||||
|
|
||||||
|
1. Render your content with built-in components.
|
||||||
|
2. Query your content with a MongoDB-like API.
|
||||||
|
3. Use your Vue components in Markdown files with the MDC syntax.
|
||||||
|
4. Automatically generate your navigation.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Install the `@nuxt/content` module in your project:
|
||||||
|
|
||||||
|
````
|
||||||
|
yarn add --dev @nuxt/content
|
||||||
|
````
|
||||||
|
|
||||||
|
Then, add `@nuxt/content` to the `modules` section of `nuxt.config.ts`.
|
||||||
|
|
||||||
|
````ts
|
||||||
|
export default defineNuxtConfig({
|
||||||
|
modules: [
|
||||||
|
'@nuxt/content'
|
||||||
|
],
|
||||||
|
content: {
|
||||||
|
// https://content.nuxtjs.org/api/configuration
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
````
|
||||||
|
|
||||||
|
## Create Content
|
||||||
|
|
||||||
|
Place your markdown files inside the `content/` directory in the root directory of your project:
|
||||||
|
``content/index.md`
|
||||||
|
|
||||||
|
````
|
||||||
|
# Hello Content
|
||||||
|
````
|
||||||
|
|
||||||
|
The module automatically loads and parses them.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
Head over to https://content.nuxtjs.org to learn more about the Content module features, such as how to build queries and use Vue components in your Markdown files with the MDC syntax.
|
@@ -1,69 +0,0 @@
|
|||||||
---
|
|
||||||
# Banner
|
|
||||||
banner:
|
|
||||||
title: "Blazing Fast🚀<br>Optimal Performance🕛"
|
|
||||||
content: "Snigdha OS is an Arch based Linux Distribution (*Known as <ins>**Distro**</ins>). It is light-weight, easy to use interface (***DE: Gnome**), clean and minimal, get a wide range of options during installation. It has been developed as minimal and bloatware free OS. Which is known as **Snigdha OS Arctic**. Click on the <ins>**Download**</ins> button and experience a new and modern linux distribution. "
|
|
||||||
image: "/images/snigdhaos-icon.svg"
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Download"
|
|
||||||
link: "https://github.com/Snigdha-OS/"
|
|
||||||
|
|
||||||
# Features
|
|
||||||
features:
|
|
||||||
- title: "SNIGDHA OS CLOUD"
|
|
||||||
image: "/images/snigdhaos-cloud-banner.svg"
|
|
||||||
content: "Snigdha OS Cloud is a cloud-based file storage service developed by Snigdha OS. It allows users to store files in the cloud and share files and folders with others.<br> Powered by: **TONMOY INFRASTRUCTURE™**"
|
|
||||||
bulletpoints:
|
|
||||||
- "1 GB* Free Cloud Storage"
|
|
||||||
- "Powerful search capabilities"
|
|
||||||
- "Prioritizes the security of user data through encryption"
|
|
||||||
- "Share files or folders with specific individuals or groups"
|
|
||||||
- "Easy to Use Interface"
|
|
||||||
# - "**Open-source and free** for personal and commercial use"
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Go to Cloud"
|
|
||||||
link: "https://cloud.snigdhaos.org/"
|
|
||||||
|
|
||||||
- title: "SNIGDHA OS FORUM"
|
|
||||||
image: "/images/snigdhaos-forum-banner.svg"
|
|
||||||
content: "**Snigdha OS Forum** offers a platform for users to engage in discussions, share information, ask questions, and connect with others who share similar interests. Get help from Admins, Mods and Members."
|
|
||||||
bulletpoints:
|
|
||||||
- "Organizes discussions into threads."
|
|
||||||
- "Navigate discussions and find relevant content more easily"
|
|
||||||
- "Profile that displays information such as username, bio, avatar, join date, and post count"
|
|
||||||
- "Moderation tools to help maintain a healthy community environment"
|
|
||||||
- "Features for creating and participating in polls and surveys."
|
|
||||||
- "Optimized for mobile devices, allowing users to access and participate in discussions on smartphones and tablets"
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Go to Forum"
|
|
||||||
link: "https://forum.snigdhaos.org/"
|
|
||||||
|
|
||||||
- title: "SNIGDHA OS TOOLS"
|
|
||||||
image: "/images/snigdhaos-tools-banner.svg"
|
|
||||||
content: "Snigdha OS Provides Web Based Tools. Other websites charges an amount after you use certain limit. But Snigdha OS Tools doesn't charge you and usage limit is unlimited."
|
|
||||||
bulletpoints:
|
|
||||||
- "100% free of cost."
|
|
||||||
- "More than 1500 Web Tools."
|
|
||||||
- "No signup required."
|
|
||||||
- "Unlimited Usage without any condition."
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Go to Tools"
|
|
||||||
link: "https://tools.snigdhaos.org"
|
|
||||||
|
|
||||||
- title: "SNIGDHA OS UPTIME"
|
|
||||||
image: "/images/snigdhaos-uptime-banner.svg"
|
|
||||||
content: "Snigdha OS Uptime helps website owners or administrators track the availability and performance of their websites. It continuously monitors websites from various locations around the world and alert the website owner if there are any issues such as downtime or slow loading times."
|
|
||||||
bulletpoints:
|
|
||||||
- "100% free of costs"
|
|
||||||
- "Unlimited website monitor"
|
|
||||||
- "Dedicated status page for monitoring"
|
|
||||||
- "Supports custom domain & notification alerts"
|
|
||||||
button:
|
|
||||||
enable: true
|
|
||||||
label: "Go to Uptime"
|
|
||||||
link: "https://uptime.snigdhaos.org/"
|
|
||||||
---
|
|
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
title: "SNIGDHA OS WELCOMES YOU, MASTER!"
|
|
||||||
meta_title: "About"
|
|
||||||
description: "Short Overview or About Snigdha OS"
|
|
||||||
image: "/images/snigdhaos-icon.svg"
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
**Snigdha OS** is a lightweight and highly customizable Penetration testing distribution based on **Arch Linux** and **Zen Kernel** known for its simplicity, flexibility, and focus on user-centric design. We aim to provide prioritize ease of use or pre-configured environments, We are trying to provide a minimalist approach, providing users with a bare-bones system upon installation, allowing them to build and configure their operating system to suit their specific needs and preferences.
|
|
||||||
|
|
||||||
Key features of **Snigdha OS** include:
|
|
||||||
|
|
||||||
🎯 Rolling Release Model: **Snigdha OS** follows a rolling release model <sup>[?](https://en.wikipedia.org/wiki/Rolling_release)</sup>, which means that instead of releasing fixed, periodic updates, packages are continuously updated to their latest versions. This ensures users have access to the latest software releases without the need for major system upgrades.
|
|
||||||
|
|
||||||
🎯 Package Manager: **Snigdha OS** utilizes the Pacman<sup>[?](https://wiki.archlinux.org/title/pacman)</sup> package manager for package management. Pacman is a powerful command-line tool that allows users to easily install, update, and remove software packages from the Arch repositories as well as from the Arch User Repository (AUR), a community-driven repository of user-contributed packages. **Snigdha OS** also comes with both [Pamac](https://wiki.manjaro.org/index.php/Pamac) & [Octopi](https://tintaescura.com/projects/octopi/).
|
|
||||||
|
|
||||||
🎯 Minimalist Installation: **Snigdha OS** installation provides users with a minimal base system, allowing users to customize their system from the ground up. During installation, users have complete control over which components and packages to install, enabling them to create a system tailored to their specific requirements.
|
|
||||||
|
|
||||||
🎯 Arch User Repository (AUR): The Arch User Repository is a vast collection of user-contributed packages that are not officially maintained by **Arch Linux** developers. It allows users to easily install software that is not available in the official repositories, expanding the range of available software options. We also provide support for **Chaotic-AUR.**
|
|
||||||
|
|
||||||
🎯 Documentation and Community Support: **Snigdha OS** boasts extensive documentation which provides detailed guides, tutorials, and troubleshooting information for users at all levels of expertise. Additionally, the **Snigdha OS** community is known for its active and helpful forums, where users can seek assistance, share knowledge, and collaborate on projects.
|
|
||||||
|
|
||||||
Overall, **Snigdha OS** appeals to users who value simplicity, customization, and the ability to fine-tune their system to meet their specific requirements. It's an ideal choice for users who enjoy the process of building and maintaining their Linux environment.
|
|
||||||
|
|
||||||
## About the Authors:
|
|
||||||
- [ESHANIZED](/authors/eshanized/)
|
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Authors"
|
|
||||||
---
|
|
@@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
title: Eshanized
|
|
||||||
email: eshan@snigdhaos.org
|
|
||||||
image: "https://github.com/Snigdha-OS/Snigdha-OS.github.io/blob/master/assets/images/eshanized-face.png?raw=True"
|
|
||||||
description: this is meta description
|
|
||||||
social:
|
|
||||||
- name: github
|
|
||||||
icon: fa-brands fa-github
|
|
||||||
link: https://github.com/eshanized
|
|
||||||
|
|
||||||
- name: twitter
|
|
||||||
icon: fa-brands fa-twitter
|
|
||||||
link: https://twitter.com/eshanized
|
|
||||||
|
|
||||||
- name: linkedin
|
|
||||||
icon: fa-brands fa-linkedin
|
|
||||||
link: https://linkedin.com/in/eshanized
|
|
||||||
|
|
||||||
- name: facebook
|
|
||||||
icon: fa-brands fa-facebook
|
|
||||||
link: https://facebook.com/eshanized
|
|
||||||
|
|
||||||
- name: instagram
|
|
||||||
icon: fa-brands fa-instagram
|
|
||||||
link: https://instagram.com/eshanized
|
|
||||||
---
|
|
||||||
|
|
||||||
{{< notice "About" >}}
|
|
||||||
Lead Maintainer & Developer
|
|
||||||
{{< /notice >}}
|
|
||||||
|
|
||||||
```bash
|
|
||||||
#!/bin/bash
|
|
||||||
echo -e "BE SILENT WHEN IT IS TIME TO HEAR!"
|
|
||||||
```
|
|
||||||
To leverage my expertise in computer science and systems programming to contribute to the creation and enhancement of cutting-edge operating systems.I aim to specialize in kernel development, device drivers, and system architecture, mastering the intricacies of operating system internals to optimize performance and reliability.
|
|