chore: renamed SVG directory /svgs/*
-> /svg/*
122
.gitignore
vendored
Normal file
|
@ -0,0 +1,122 @@
|
|||
themes
|
||||
bin
|
||||
bitmaps
|
||||
|
||||
# --------------------------------------------- Nodejs
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
.env.test
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"license": "LGPL-3.0-or-later",
|
||||
"dependencies": {
|
||||
"cbmp": "^1.1.1"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -rf bin bitmaps themes",
|
||||
"render": "npx cbmp render.json",
|
||||
"build": "bash build.sh",
|
||||
"generate": "npx cbmp render.json && bash build.sh"
|
||||
}
|
||||
}
|
32
render.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"Notwaita-Black": {
|
||||
"dir": "svg",
|
||||
"out": "bitmaps/Notwaita-Black",
|
||||
"colors": [
|
||||
{ "match": "#00FF00", "replace": "#000000" },
|
||||
{ "match": "#0000FF", "replace": "#FFFFFF" },
|
||||
{ "match": "#FF0000", "replace": "#000000" },
|
||||
{ "match": "#FFFF00", "replace": "#FFFFFF" }
|
||||
]
|
||||
},
|
||||
"Notwaita-Gray": {
|
||||
"dir": "svg",
|
||||
"out": "bitmaps/Notwaita-Gray",
|
||||
"colors": [
|
||||
{ "match": "#00FF00", "replace": "#404040" },
|
||||
{ "match": "#0000FF", "replace": "#FFFFFF" },
|
||||
{ "match": "#FF0000", "replace": "#404040" },
|
||||
{ "match": "#FFFF00", "replace": "#FFFFFF" }
|
||||
]
|
||||
},
|
||||
"Notwaita-White": {
|
||||
"dir": "svg",
|
||||
"out": "bitmaps/Notwaita-White",
|
||||
"colors": [
|
||||
{ "match": "#00FF00", "replace": "#FFFFFF" },
|
||||
{ "match": "#0000FF", "replace": "#000000" },
|
||||
{ "match": "#FF0000", "replace": "#FFFFFF" },
|
||||
{ "match": "#FFFF00", "replace": "#000000" }
|
||||
]
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 364 B |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4257" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4257" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(110.038 171.054) rotate(75.0167) scale(98.7267 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4257" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(117.027 104.499) rotate(-157.933) scale(48.9948 46.0339)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4259" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4259" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(107.563 169.026) rotate(81.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4259" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(121.529 103.002) rotate(-151.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4260" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4260" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(104.294 166.352) rotate(87.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4260" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(125.084 102.149) rotate(-145.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4261" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4261" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(101.323 163.383) rotate(93.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4261" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(128.71 101.705) rotate(-139.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4262" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4262" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.6766 160.153) rotate(99.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4262" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(133.361 101.676) rotate(-133.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4263" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4263" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(97.4067 156.667) rotate(105.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4263" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(137.019 102.032) rotate(-127.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4264" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4264" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(95.472 153) rotate(111.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4264" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(140.578 102.804) rotate(-121.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4266" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4266" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(94.9223 149.222) rotate(117.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4266" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(145.029 104.016) rotate(-115.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4268" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4268" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(93.7725 145.339) rotate(123.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4268" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(148.33 105.619) rotate(-109.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4270" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4270" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(93.4455 141.395) rotate(129.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4270" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(151.855 107.595) rotate(-103.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4272" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(93.0497 138.096) rotate(135.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4272" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(154.673 110.587) rotate(-97.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4274" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4274" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(94.6058 134.153) rotate(141.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4274" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(158.767 113.236) rotate(-91.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4276" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4276" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(95.1323 130.249) rotate(147.017) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4276" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(161.128 116.154) rotate(-85.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4278" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4278" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(96.0568 126.455) rotate(153.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4278" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(163.165 119.335) rotate(-79.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4280" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4280" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(98.3678 122.833) rotate(159.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4280" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(165.852 122.766) rotate(-73.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4282" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4282" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(100.049 119.401) rotate(165.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4282" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(167.171 126.389) rotate(-67.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4284" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4284" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(102.545 116.2) rotate(171.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4284" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.569 130.166) rotate(-61.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4286" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4286" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(105.419 113.262) rotate(177.017) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4286" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(169.621 134.053) rotate(-55.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4288" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4288" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(108.494 110.61) rotate(-176.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4288" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(170.171 137.998) rotate(-49.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4290" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4290" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(111.353 108.288) rotate(-170.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4290" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(169.83 141.973) rotate(-43.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4292" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4292" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(114.348 105.986) rotate(-164.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4292" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.984 145.599) rotate(-37.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4294" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4294" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(118.234 104.392) rotate(-158.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4294" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.429 149.499) rotate(-31.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4296" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4296" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(121.671 103.188) rotate(-152.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4296" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(166.876 153.294) rotate(-25.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4298" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4298" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(125.858 102.387) rotate(-146.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4298" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(165.578 156.944) rotate(-19.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4300" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4300" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(130.104 101.997) rotate(-140.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4300" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(163.904 160.407) rotate(-13.9334) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4302" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4302" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(128.6 102.021) rotate(-136.202) scale(100.895 94.7145)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4302" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(157.305 163.644) rotate(-7.60678) scale(51.0854 46.0699)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4304" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4304" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(137.401 102.414) rotate(-128.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4304" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(158.318 166.575) rotate(-1.93339) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4306" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4306" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(141.076 103.252) rotate(-122.983) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4306" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(155.172 169.249) rotate(4.06661) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4308" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4308" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(145.462 104.491) rotate(-116.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4308" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(152.582 171.599) rotate(10.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4311" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4311" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(148.702 106.118) rotate(-110.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4311" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(148.769 173.603) rotate(16.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4313" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4313" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(151.786 107.784) rotate(-104.983) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4313" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(144.798 174.906) rotate(22.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4315" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4315" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(155.643 110.133) rotate(-98.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4315" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(141.677 176.156) rotate(28.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4318" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4318" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(158.255 112.807) rotate(-92.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4318" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(137.464 177.009) rotate(34.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4320" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4320" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(160.56 115.775) rotate(-86.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4320" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(133.172 177.453) rotate(40.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4322" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4322" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(163.538 119.005) rotate(-80.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4322" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(129.853 177.482) rotate(46.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4324" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4324" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(165.143 122.491) rotate(-74.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4324" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(125.53 177.126) rotate(52.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4328" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4328" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(166.154 126.158) rotate(-68.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4328" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(121.047 176.353) rotate(58.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4331" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4331" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.293 129.936) rotate(-62.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4331" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(118.187 175.141) rotate(64.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4334" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4334" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.776 133.818) rotate(-56.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4334" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(114.219 173.538) rotate(70.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4336" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4336" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.436 137.762) rotate(-50.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4336" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(110.026 171.562) rotate(76.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4339" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4339" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.395 142.394) rotate(-44.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4339" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(106.772 169.903) rotate(82.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4342" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4342" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(168.61 146.337) rotate(-38.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4342" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(104.448 167.254) rotate(88.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4345" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4345" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(167.417 150.24) rotate(-32.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4345" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(101.421 164.336) rotate(94.0666) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4347" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4347" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(165.827 154.034) rotate(-26.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4347" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(98.7186 161.154) rotate(100.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4349" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4349" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(164.848 157.657) rotate(-20.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4349" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(97.3634 157.723) rotate(106.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4351" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4351" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(162.501 161.088) rotate(-14.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4351" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(95.3791 154.1) rotate(112.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4354" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4354" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(159.808 164.289) rotate(-8.9832) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4354" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(93.7845 150.323) rotate(118.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4356" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4356" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(157.339 167.227) rotate(-2.9832) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4356" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(93.137 146.436) rotate(124.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4359" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4359" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(154.505 169.879) rotate(3.0168) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4359" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(92.8276 142.491) rotate(130.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4362" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4362" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(150.961 172.202) rotate(9.0168) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4362" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(92.4835 138.517) rotate(136.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4365" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4365" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(147.535 173.836) rotate(15.0168) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4365" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(92.8998 134.224) rotate(142.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4367" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4367" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(144.599 175.431) rotate(21.0168) scale(98.727 92.7611)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4367" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(94.404 130.324) rotate(148.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4369" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4369" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(140.523 176.635) rotate(27.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4369" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(95.3177 126.529) rotate(154.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4372" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4372" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(136.348 177.436) rotate(33.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4372" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(96.6273 122.879) rotate(160.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4375" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4375" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(133.113 177.826) rotate(39.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4375" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(99.3133 119.416) rotate(166.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4378" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4378" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(128.862 177.802) rotate(45.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4378" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(101.353 116.179) rotate(172.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4383" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4383" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(124.634 177.41) rotate(51.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4383" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(103.717 113.248) rotate(178.067) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4386" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4386" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(121.474 176.571) rotate(57.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4386" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(107.378 110.575) rotate(-175.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4390" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4390" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(117.422 175.332) rotate(63.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4390" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(110.302 108.224) rotate(-169.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
|
@ -17,16 +17,16 @@
|
|||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1_4392" result="shape"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1_4392" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(113.516 173.705) rotate(69.0168) scale(98.727 92.7612)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#00FF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#00FF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.318614" stop-color="#FFFF00" stop-opacity="0.15"/>
|
||||
<stop offset="0.542702" stop-color="#FFFF00" stop-opacity="0.34"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_1_4392" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(113.45 106.22) rotate(-163.933) scale(48.9949 46.034)">
|
||||
<stop stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#00FF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#00FF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#00FF00"/>
|
||||
<stop stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.363816" stop-color="#FFFF00" stop-opacity="0"/>
|
||||
<stop offset="0.750517" stop-color="#FFFF00" stop-opacity="0.43"/>
|
||||
<stop offset="1" stop-color="#FFFF00"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |