@bitseek/hermes-webui 0.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +213 -0
- package/bin/hermes-webui.mjs +588 -0
- package/package.json +25 -0
- package/scripts/sync-vendor.mjs +74 -0
- package/templates/launchd/com.bitseek.hermes-webui.plist +21 -0
- package/templates/systemd/hermes-webui.service +13 -0
- package/templates/windows/hermes-webui-task.ps1 +3 -0
- package/vendor/agent-frontend-shell/.bitseek-source.json +6 -0
- package/vendor/agent-frontend-shell/.dockerignore +7 -0
- package/vendor/agent-frontend-shell/.env.docker.example +89 -0
- package/vendor/agent-frontend-shell/.env.example +34 -0
- package/vendor/agent-frontend-shell/.github/FUNDING.yml +3 -0
- package/vendor/agent-frontend-shell/.github/workflows/browser-smoke.yml +42 -0
- package/vendor/agent-frontend-shell/.github/workflows/docker-smoke.yml +233 -0
- package/vendor/agent-frontend-shell/.github/workflows/native-windows-startup.yml +132 -0
- package/vendor/agent-frontend-shell/.github/workflows/release.yml +57 -0
- package/vendor/agent-frontend-shell/.github/workflows/tests.yml +88 -0
- package/vendor/agent-frontend-shell/.vscode/launch.json +59 -0
- package/vendor/agent-frontend-shell/.vscode/settings.json +13 -0
- package/vendor/agent-frontend-shell/AGENTS.md +80 -0
- package/vendor/agent-frontend-shell/ARCHITECTURE.md +1658 -0
- package/vendor/agent-frontend-shell/BUGS.md +52 -0
- package/vendor/agent-frontend-shell/CHANGELOG.md +7295 -0
- package/vendor/agent-frontend-shell/CONTRIBUTING.md +205 -0
- package/vendor/agent-frontend-shell/CONTRIBUTORS.md +107 -0
- package/vendor/agent-frontend-shell/DESIGN.md +173 -0
- package/vendor/agent-frontend-shell/Dockerfile +91 -0
- package/vendor/agent-frontend-shell/LICENSE +21 -0
- package/vendor/agent-frontend-shell/README-CUSTOM.md +76 -0
- package/vendor/agent-frontend-shell/README.md +705 -0
- package/vendor/agent-frontend-shell/ROADMAP.md +351 -0
- package/vendor/agent-frontend-shell/SPRINTS.md +147 -0
- package/vendor/agent-frontend-shell/TESTING.md +1932 -0
- package/vendor/agent-frontend-shell/THEMES.md +170 -0
- package/vendor/agent-frontend-shell/api/__init__.py +1 -0
- package/vendor/agent-frontend-shell/api/agent_health.py +392 -0
- package/vendor/agent-frontend-shell/api/agent_sessions.py +782 -0
- package/vendor/agent-frontend-shell/api/auth.py +592 -0
- package/vendor/agent-frontend-shell/api/background.py +87 -0
- package/vendor/agent-frontend-shell/api/clarify.py +238 -0
- package/vendor/agent-frontend-shell/api/commands.py +124 -0
- package/vendor/agent-frontend-shell/api/compression_anchor.py +134 -0
- package/vendor/agent-frontend-shell/api/config.py +5178 -0
- package/vendor/agent-frontend-shell/api/dashboard_probe.py +255 -0
- package/vendor/agent-frontend-shell/api/extensions.py +253 -0
- package/vendor/agent-frontend-shell/api/gateway_chat.py +435 -0
- package/vendor/agent-frontend-shell/api/gateway_watcher.py +230 -0
- package/vendor/agent-frontend-shell/api/goals.py +608 -0
- package/vendor/agent-frontend-shell/api/helpers.py +474 -0
- package/vendor/agent-frontend-shell/api/kanban_bridge.py +1255 -0
- package/vendor/agent-frontend-shell/api/metering.py +194 -0
- package/vendor/agent-frontend-shell/api/models.py +4210 -0
- package/vendor/agent-frontend-shell/api/oauth.py +770 -0
- package/vendor/agent-frontend-shell/api/onboarding.py +1046 -0
- package/vendor/agent-frontend-shell/api/passkeys.py +365 -0
- package/vendor/agent-frontend-shell/api/profiles.py +1499 -0
- package/vendor/agent-frontend-shell/api/providers.py +2175 -0
- package/vendor/agent-frontend-shell/api/request_diagnostics.py +160 -0
- package/vendor/agent-frontend-shell/api/rollback.py +320 -0
- package/vendor/agent-frontend-shell/api/routes.py +13990 -0
- package/vendor/agent-frontend-shell/api/run_journal.py +284 -0
- package/vendor/agent-frontend-shell/api/runner_client.py +156 -0
- package/vendor/agent-frontend-shell/api/runtime_adapter.py +431 -0
- package/vendor/agent-frontend-shell/api/session_discoverability.py +640 -0
- package/vendor/agent-frontend-shell/api/session_events.py +45 -0
- package/vendor/agent-frontend-shell/api/session_lifecycle.py +208 -0
- package/vendor/agent-frontend-shell/api/session_ops.py +207 -0
- package/vendor/agent-frontend-shell/api/session_recovery.py +655 -0
- package/vendor/agent-frontend-shell/api/skill_usage.py +32 -0
- package/vendor/agent-frontend-shell/api/startup.py +128 -0
- package/vendor/agent-frontend-shell/api/state_sync.py +187 -0
- package/vendor/agent-frontend-shell/api/streaming.py +7048 -0
- package/vendor/agent-frontend-shell/api/system_health.py +167 -0
- package/vendor/agent-frontend-shell/api/terminal.py +410 -0
- package/vendor/agent-frontend-shell/api/turn_journal.py +214 -0
- package/vendor/agent-frontend-shell/api/updates.py +1261 -0
- package/vendor/agent-frontend-shell/api/upload.py +322 -0
- package/vendor/agent-frontend-shell/api/usage.py +26 -0
- package/vendor/agent-frontend-shell/api/workspace.py +867 -0
- package/vendor/agent-frontend-shell/api/workspace_git.py +1261 -0
- package/vendor/agent-frontend-shell/api/worktrees.py +357 -0
- package/vendor/agent-frontend-shell/bootstrap.py +492 -0
- package/vendor/agent-frontend-shell/ctl.sh +427 -0
- package/vendor/agent-frontend-shell/docker-compose.custom.yml +26 -0
- package/vendor/agent-frontend-shell/docker-compose.three-container.yml +168 -0
- package/vendor/agent-frontend-shell/docker-compose.two-container.yml +147 -0
- package/vendor/agent-frontend-shell/docker-compose.yml +57 -0
- package/vendor/agent-frontend-shell/docker_init.bash +459 -0
- package/vendor/agent-frontend-shell/docs/CONTRACTS.md +207 -0
- package/vendor/agent-frontend-shell/docs/EXTENSIONS.md +212 -0
- package/vendor/agent-frontend-shell/docs/ISSUES.md +23 -0
- package/vendor/agent-frontend-shell/docs/UIUX-GUIDE.md +196 -0
- package/vendor/agent-frontend-shell/docs/advanced-chat-setup.md +83 -0
- package/vendor/agent-frontend-shell/docs/docker.md +337 -0
- package/vendor/agent-frontend-shell/docs/onboarding-agent-checklist.md +207 -0
- package/vendor/agent-frontend-shell/docs/onboarding.md +202 -0
- package/vendor/agent-frontend-shell/docs/remote-access.md +75 -0
- package/vendor/agent-frontend-shell/docs/rfcs/README.md +53 -0
- package/vendor/agent-frontend-shell/docs/rfcs/agent-source-boundary.md +70 -0
- package/vendor/agent-frontend-shell/docs/rfcs/canonical-session-resolution.md +124 -0
- package/vendor/agent-frontend-shell/docs/rfcs/hermes-run-adapter-contract.md +1079 -0
- package/vendor/agent-frontend-shell/docs/rfcs/turn-journal.md +195 -0
- package/vendor/agent-frontend-shell/docs/rfcs/webui-run-state-consistency-contract.md +157 -0
- package/vendor/agent-frontend-shell/docs/supervisor.md +280 -0
- package/vendor/agent-frontend-shell/docs/troubleshooting.md +132 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/index.html +863 -0
- package/vendor/agent-frontend-shell/docs/ui-ux/two-stage-proposal.html +768 -0
- package/vendor/agent-frontend-shell/docs/why-hermes.md +489 -0
- package/vendor/agent-frontend-shell/docs/workspace-git.md +92 -0
- package/vendor/agent-frontend-shell/docs/wsl-autostart.md +126 -0
- package/vendor/agent-frontend-shell/eslint.runtime-guard.config.mjs +35 -0
- package/vendor/agent-frontend-shell/extensions/bitseek-design-system.md +330 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/empty-logo.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon-512.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/favicon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v2.svg +751 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon-v3.svg +739 -0
- package/vendor/agent-frontend-shell/extensions/branding/assets/titlebar-icon.svg +745 -0
- package/vendor/agent-frontend-shell/extensions/branding/branding.js +112 -0
- package/vendor/agent-frontend-shell/extensions/branding/config.json +14 -0
- package/vendor/agent-frontend-shell/extensions/branding/manifest.json +53 -0
- package/vendor/agent-frontend-shell/extensions/index.js +67 -0
- package/vendor/agent-frontend-shell/extensions/loader/hermes-loader.js +77 -0
- package/vendor/agent-frontend-shell/extensions/manifest.json +16 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.css +333 -0
- package/vendor/agent-frontend-shell/extensions/pages/ai-teammates/page.js +487 -0
- package/vendor/agent-frontend-shell/extensions/pages/manifest.json +6 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.css +56 -0
- package/vendor/agent-frontend-shell/extensions/pages/registry.js +302 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.css +93 -0
- package/vendor/agent-frontend-shell/extensions/themes/bitseek/index.js +98 -0
- package/vendor/agent-frontend-shell/install.sh +63 -0
- package/vendor/agent-frontend-shell/mcp_server.py +567 -0
- package/vendor/agent-frontend-shell/package.json +12 -0
- package/vendor/agent-frontend-shell/pyproject.toml +56 -0
- package/vendor/agent-frontend-shell/pytest.ini +3 -0
- package/vendor/agent-frontend-shell/requirements.txt +5 -0
- package/vendor/agent-frontend-shell/server.py +624 -0
- package/vendor/agent-frontend-shell/start.ps1 +210 -0
- package/vendor/agent-frontend-shell/start.sh +65 -0
- package/vendor/agent-frontend-shell/static/apple-touch-icon.png +0 -0
- package/vendor/agent-frontend-shell/static/boot.js +1990 -0
- package/vendor/agent-frontend-shell/static/commands.js +1402 -0
- package/vendor/agent-frontend-shell/static/favicon-192.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-32.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.png +0 -0
- package/vendor/agent-frontend-shell/static/favicon-512.svg +18 -0
- package/vendor/agent-frontend-shell/static/favicon.ico +0 -0
- package/vendor/agent-frontend-shell/static/favicon.svg +20 -0
- package/vendor/agent-frontend-shell/static/i18n.js +15389 -0
- package/vendor/agent-frontend-shell/static/icons.js +92 -0
- package/vendor/agent-frontend-shell/static/index.html +1506 -0
- package/vendor/agent-frontend-shell/static/login.js +177 -0
- package/vendor/agent-frontend-shell/static/manifest.json +53 -0
- package/vendor/agent-frontend-shell/static/messages.js +3521 -0
- package/vendor/agent-frontend-shell/static/onboarding.js +800 -0
- package/vendor/agent-frontend-shell/static/panels.js +7995 -0
- package/vendor/agent-frontend-shell/static/pwa-startup.js +83 -0
- package/vendor/agent-frontend-shell/static/sessions.js +5165 -0
- package/vendor/agent-frontend-shell/static/style.css +4774 -0
- package/vendor/agent-frontend-shell/static/sw.js +173 -0
- package/vendor/agent-frontend-shell/static/terminal.js +632 -0
- package/vendor/agent-frontend-shell/static/ui.js +8997 -0
- package/vendor/agent-frontend-shell/static/vendor/js-yaml/4.1.0/js-yaml.min.js +2 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.css +1 -0
- package/vendor/agent-frontend-shell/static/vendor/katex/0.16.22/katex.min.js +1 -0
- package/vendor/agent-frontend-shell/static/vendor/smd.min.js +29 -0
- package/vendor/agent-frontend-shell/static/workspace.js +680 -0
|
@@ -0,0 +1,745 @@
|
|
|
1
|
+
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10832_18517)">
|
|
3
|
+
<rect width="512" height="512" rx="100" fill="white"/>
|
|
4
|
+
<path d="M284.974 255.74C337.087 255.74 379.331 213.487 379.331 161.365C379.331 109.242 337.076 67 284.974 67H226.85L325.424 164.807L234.923 255.74L325.424 346.673L226.85 444.48H284.974C337.087 444.48 379.331 402.227 379.331 350.104C379.331 297.982 337.087 255.729 284.974 255.729V255.74Z" fill="#404040"/>
|
|
5
|
+
<path d="M367.313 298.586L454 255.738L367.313 212.891V298.586Z" fill="#404040"/>
|
|
6
|
+
<path d="M219.523 67C215.731 67 212.651 70.081 212.651 73.8739C212.651 77.6667 215.731 80.7478 219.523 80.7478C223.315 80.7478 226.396 77.6667 226.396 73.8739C226.396 70.081 223.315 67 219.523 67Z" fill="#404040"/>
|
|
7
|
+
<path d="M201.775 67.4116C198.206 67.4116 195.306 70.312 195.306 73.8818C195.306 77.4515 198.206 80.352 201.775 80.352C205.344 80.352 208.244 77.4515 208.244 73.8818C208.244 70.312 205.344 67.4116 201.775 67.4116Z" fill="#404040"/>
|
|
8
|
+
<path d="M184.041 67.8062C180.695 67.8062 177.975 70.526 177.975 73.8726C177.975 77.2192 180.695 79.939 184.041 79.939C187.387 79.939 190.106 77.2192 190.106 73.8726C190.106 70.526 187.387 67.8062 184.041 67.8062Z" fill="#404040"/>
|
|
9
|
+
<path d="M166.314 68.2007C163.191 68.2007 160.652 70.7399 160.652 73.8634C160.652 76.9869 163.191 79.5261 166.314 79.5261C169.437 79.5261 171.975 76.9869 171.975 73.8634C171.975 70.7399 169.437 68.2007 166.314 68.2007Z" fill="#404040"/>
|
|
10
|
+
<path d="M148.58 68.6177C145.68 68.6177 143.322 70.9656 143.322 73.8767C143.322 76.7877 145.68 79.1357 148.58 79.1357C151.48 79.1357 153.838 76.7771 153.838 73.8767C153.838 70.9763 151.48 68.6177 148.58 68.6177Z" fill="#404040"/>
|
|
11
|
+
<path d="M130.853 69.0176C128.176 69.0176 125.999 71.1849 125.999 73.8729C125.999 76.5608 128.166 78.7281 130.853 78.7281C133.54 78.7281 135.707 76.5608 135.707 73.8729C135.707 71.1849 133.54 69.0176 130.853 69.0176Z" fill="#404040"/>
|
|
12
|
+
<path d="M113.097 69.4297C110.643 69.4297 108.646 71.4164 108.646 73.8812C108.646 76.3461 110.633 78.3328 113.097 78.3328C115.561 78.3328 117.548 76.3461 117.548 73.8812C117.548 71.4164 115.561 69.4297 113.097 69.4297Z" fill="#404040"/>
|
|
13
|
+
<path d="M95.3702 69.8242C93.1396 69.8242 91.3232 71.6303 91.3232 73.8721C91.3232 76.1138 93.1289 77.9199 95.3702 77.9199C97.6115 77.9199 99.4173 76.1138 99.4173 73.8721C99.4173 71.6303 97.6115 69.8242 95.3702 69.8242Z" fill="#404040"/>
|
|
14
|
+
<path d="M77.6434 77.507C79.6556 77.507 81.2868 75.8755 81.2868 73.8629C81.2868 71.8503 79.6556 70.2188 77.6434 70.2188C75.6312 70.2188 74 71.8503 74 73.8629C74 75.8755 75.6312 77.507 77.6434 77.507Z" fill="#404040"/>
|
|
15
|
+
<path d="M237.257 99.3335C241.273 99.3335 244.534 96.0719 244.534 92.0559C244.534 88.04 241.273 84.7783 237.257 84.7783C233.242 84.7783 229.981 88.04 229.981 92.0559C229.981 96.0719 233.242 99.3335 237.257 99.3335Z" fill="#404040"/>
|
|
16
|
+
<path d="M219.523 85.1782C215.731 85.1782 212.651 88.2593 212.651 92.0521C212.651 95.845 215.731 98.926 219.523 98.926C223.315 98.926 226.396 95.845 226.396 92.0521C226.396 88.2593 223.315 85.1782 219.523 85.1782Z" fill="#404040"/>
|
|
17
|
+
<path d="M201.775 85.5957C198.206 85.5957 195.306 88.4961 195.306 92.0659C195.306 95.6356 198.206 98.536 201.775 98.536C205.344 98.536 208.244 95.6356 208.244 92.0659C208.244 88.4961 205.344 85.5957 201.775 85.5957Z" fill="#404040"/>
|
|
18
|
+
<path d="M184.041 85.9946C180.695 85.9946 177.975 88.7144 177.975 92.0611C177.975 95.4077 180.695 98.1275 184.041 98.1275C187.387 98.1275 190.106 95.4077 190.106 92.0611C190.106 88.7144 187.387 85.9946 184.041 85.9946Z" fill="#404040"/>
|
|
19
|
+
<path d="M166.314 86.4072C163.191 86.4072 160.652 88.9464 160.652 92.07C160.652 95.1935 163.191 97.7327 166.314 97.7327C169.437 97.7327 171.975 95.1935 171.975 92.07C171.975 88.9464 169.437 86.4072 166.314 86.4072Z" fill="#404040"/>
|
|
20
|
+
<path d="M148.58 86.8018C145.68 86.8018 143.322 89.1603 143.322 92.0608C143.322 94.9612 145.68 97.3198 148.58 97.3198C151.48 97.3198 153.838 94.9612 153.838 92.0608C153.838 89.1603 151.48 86.8018 148.58 86.8018Z" fill="#404040"/>
|
|
21
|
+
<path d="M130.853 96.9064C133.534 96.9064 135.707 94.7326 135.707 92.0511C135.707 89.3696 133.534 87.1958 130.853 87.1958C128.172 87.1958 125.999 89.3696 125.999 92.0511C125.999 94.7326 128.172 96.9064 130.853 96.9064Z" fill="#404040"/>
|
|
22
|
+
<path d="M113.097 96.5174C115.555 96.5174 117.548 94.5243 117.548 92.0658C117.548 89.6073 115.555 87.6143 113.097 87.6143C110.639 87.6143 108.646 89.6073 108.646 92.0658C108.646 94.5243 110.639 96.5174 113.097 96.5174Z" fill="#404040"/>
|
|
23
|
+
<path d="M254.984 117.936C259.222 117.936 262.664 114.494 262.664 110.255C262.664 106.016 259.222 102.574 254.984 102.574C250.746 102.574 247.304 106.016 247.304 110.255C247.304 114.494 250.746 117.936 254.984 117.936Z" fill="#404040"/>
|
|
24
|
+
<path d="M237.257 117.529C241.273 117.529 244.534 114.267 244.534 110.251C244.534 106.235 241.273 102.974 237.257 102.974C233.242 102.974 229.981 106.235 229.981 110.251C229.981 114.267 233.242 117.529 237.257 117.529Z" fill="#404040"/>
|
|
25
|
+
<path d="M219.523 103.386C215.731 103.386 212.651 106.467 212.651 110.26C212.651 114.052 215.731 117.134 219.523 117.134C223.315 117.134 226.396 114.052 226.396 110.26C226.396 106.467 223.315 103.386 219.523 103.386Z" fill="#404040"/>
|
|
26
|
+
<path d="M201.775 116.721C205.347 116.721 208.244 113.824 208.244 110.25C208.244 106.677 205.347 103.78 201.775 103.78C198.202 103.78 195.306 106.677 195.306 110.25C195.306 113.824 198.202 116.721 201.775 116.721Z" fill="#404040"/>
|
|
27
|
+
<path d="M184.041 104.173C180.695 104.173 177.975 106.893 177.975 110.239C177.975 113.586 180.695 116.306 184.041 116.306C187.387 116.306 190.106 113.586 190.106 110.239C190.106 106.893 187.387 104.173 184.041 104.173Z" fill="#404040"/>
|
|
28
|
+
<path d="M166.314 115.917C169.441 115.917 171.975 113.381 171.975 110.254C171.975 107.127 169.441 104.591 166.314 104.591C163.187 104.591 160.652 107.127 160.652 110.254C160.652 113.381 163.187 115.917 166.314 115.917Z" fill="#404040"/>
|
|
29
|
+
<path d="M148.58 104.992C145.68 104.992 143.322 107.35 143.322 110.251C143.322 113.151 145.68 115.51 148.58 115.51C151.48 115.51 153.838 113.151 153.838 110.251C153.838 107.35 151.48 104.992 148.58 104.992Z" fill="#404040"/>
|
|
30
|
+
<path d="M272.718 136.533C277.18 136.533 280.802 132.911 280.802 128.448C280.802 123.986 277.18 120.363 272.718 120.363C268.257 120.363 264.635 123.986 264.635 128.448C264.635 132.911 268.257 136.533 272.718 136.533Z" fill="#404040"/>
|
|
31
|
+
<path d="M254.984 136.097C259.222 136.097 262.664 132.655 262.664 128.416C262.664 124.177 259.222 120.734 254.984 120.734C250.746 120.734 247.304 124.177 247.304 128.416C247.304 132.655 250.746 136.097 254.984 136.097Z" fill="#404040"/>
|
|
32
|
+
<path d="M290.445 155.101C295.129 155.101 298.932 151.297 298.932 146.612C298.932 141.927 295.129 138.123 290.445 138.123C285.761 138.123 281.958 141.927 281.958 146.612C281.958 151.297 285.761 155.101 290.445 155.101Z" fill="#404040"/>
|
|
33
|
+
<path d="M272.718 154.699C277.18 154.699 280.802 151.077 280.802 146.614C280.802 142.152 277.18 138.529 272.718 138.529C268.257 138.529 264.635 142.152 264.635 146.614C264.635 151.077 268.257 154.699 272.718 154.699Z" fill="#404040"/>
|
|
34
|
+
<path d="M317.092 164.813C317.092 159.904 313.108 155.92 308.201 155.92C303.293 155.92 299.31 159.904 299.31 164.813C299.31 169.721 303.293 173.705 308.201 173.705C313.108 173.705 317.092 169.721 317.092 164.813Z" fill="#404040"/>
|
|
35
|
+
<path d="M290.445 173.292C295.132 173.292 298.932 169.491 298.932 164.803C298.932 160.115 295.132 156.314 290.445 156.314C285.758 156.314 281.958 160.115 281.958 164.803C281.958 169.491 285.758 173.292 290.445 173.292Z" fill="#404040"/>
|
|
36
|
+
<path d="M272.718 172.878C277.18 172.878 280.802 169.255 280.802 164.793C280.802 160.33 277.18 156.708 272.718 156.708C268.257 156.708 264.635 160.33 264.635 164.793C264.635 169.255 268.257 172.878 272.718 172.878Z" fill="#404040"/>
|
|
37
|
+
<path d="M237.257 244.832C241.273 244.832 244.534 241.57 244.534 237.554C244.534 233.539 241.273 230.277 237.257 230.277C233.242 230.277 229.981 233.539 229.981 237.554C229.981 241.57 233.242 244.832 237.257 244.832Z" fill="#404040"/>
|
|
38
|
+
<path d="M184.041 231.485C180.695 231.485 177.975 234.205 177.975 237.551C177.975 240.898 180.695 243.618 184.041 243.618C187.387 243.618 190.106 240.898 190.106 237.551C190.106 234.205 187.387 231.485 184.041 231.485Z" fill="#404040"/>
|
|
39
|
+
<path d="M166.314 231.9C163.191 231.9 160.652 234.44 160.652 237.563C160.652 240.687 163.191 243.226 166.314 243.226C169.437 243.226 171.975 240.687 171.975 237.563C171.975 234.44 169.437 231.9 166.314 231.9Z" fill="#404040"/>
|
|
40
|
+
<path d="M130.853 251.498C133.534 251.498 135.707 249.324 135.707 246.642C135.707 243.961 133.534 241.787 130.853 241.787C128.172 241.787 125.999 243.961 125.999 246.642C125.999 249.324 128.172 251.498 130.853 251.498Z" fill="#404040"/>
|
|
41
|
+
<path d="M113.097 251.102C115.555 251.102 117.548 249.109 117.548 246.65C117.548 244.192 115.555 242.199 113.097 242.199C110.639 242.199 108.646 244.192 108.646 246.65C108.646 249.109 110.639 251.102 113.097 251.102Z" fill="#404040"/>
|
|
42
|
+
<path d="M254.984 227.039C259.222 227.039 262.664 223.597 262.664 219.358C262.664 215.119 259.222 211.677 254.984 211.677C250.746 211.677 247.304 215.119 247.304 219.358C247.304 223.597 250.746 227.039 254.984 227.039Z" fill="#404040"/>
|
|
43
|
+
<path d="M237.257 226.644C241.273 226.644 244.534 223.382 244.534 219.366C244.534 215.35 241.273 212.088 237.257 212.088C233.242 212.088 229.981 215.35 229.981 219.366C229.981 223.382 233.242 226.644 237.257 226.644Z" fill="#404040"/>
|
|
44
|
+
<path d="M272.718 209.262C277.18 209.262 280.802 205.64 280.802 201.177C280.802 196.715 277.18 193.092 272.718 193.092C268.257 193.092 264.635 196.715 264.635 201.177C264.635 205.64 268.257 209.262 272.718 209.262Z" fill="#404040"/>
|
|
45
|
+
<path d="M254.984 208.861C259.222 208.861 262.664 205.419 262.664 201.18C262.664 196.941 259.222 193.499 254.984 193.499C250.746 193.499 247.304 196.941 247.304 201.18C247.304 205.419 250.746 208.861 254.984 208.861Z" fill="#404040"/>
|
|
46
|
+
<path d="M237.257 208.465C241.273 208.465 244.534 205.204 244.534 201.188C244.534 197.172 241.273 193.91 237.257 193.91C233.242 193.91 229.981 197.172 229.981 201.188C229.981 205.204 233.242 208.465 237.257 208.465Z" fill="#404040"/>
|
|
47
|
+
<path d="M290.445 191.482C295.129 191.482 298.932 187.679 298.932 182.994C298.932 178.308 295.129 174.505 290.445 174.505C285.761 174.505 281.958 178.308 281.958 182.994C281.958 187.679 285.761 191.482 290.445 191.482Z" fill="#404040"/>
|
|
48
|
+
<path d="M272.718 191.084C277.18 191.084 280.802 187.461 280.802 182.999C280.802 178.537 277.18 174.914 272.718 174.914C268.257 174.914 264.635 178.537 264.635 182.999C264.635 187.461 268.257 191.084 272.718 191.084Z" fill="#404040"/>
|
|
49
|
+
<path d="M254.984 190.673C259.222 190.673 262.664 187.23 262.664 182.991C262.664 178.752 259.222 175.31 254.984 175.31C250.746 175.31 247.304 178.752 247.304 182.991C247.304 187.23 250.746 190.673 254.984 190.673Z" fill="#404040"/>
|
|
50
|
+
<path d="M219.523 430.736C215.731 430.736 212.651 433.817 212.651 437.61C212.651 441.403 215.731 444.484 219.523 444.484C223.315 444.484 226.396 441.403 226.396 437.61C226.396 433.817 223.315 430.736 219.523 430.736Z" fill="#404040"/>
|
|
51
|
+
<path d="M201.775 444.082C205.347 444.082 208.244 441.185 208.244 437.612C208.244 434.038 205.347 431.142 201.775 431.142C198.202 431.142 195.306 434.038 195.306 437.612C195.306 441.185 198.202 444.082 201.775 444.082Z" fill="#404040"/>
|
|
52
|
+
<path d="M184.041 431.554C180.695 431.554 177.975 434.274 177.975 437.621C177.975 440.967 180.695 443.687 184.041 443.687C187.387 443.687 190.106 440.967 190.106 437.621C190.106 434.274 187.387 431.554 184.041 431.554Z" fill="#404040"/>
|
|
53
|
+
<path d="M166.314 443.273C169.441 443.273 171.975 440.738 171.975 437.61C171.975 434.483 169.441 431.948 166.314 431.948C163.187 431.948 160.652 434.483 160.652 437.61C160.652 440.738 163.187 443.273 166.314 443.273Z" fill="#404040"/>
|
|
54
|
+
<path d="M148.58 432.344C145.68 432.344 143.322 434.702 143.322 437.603C143.322 440.503 145.68 442.862 148.58 442.862C151.48 442.862 153.838 440.514 153.838 437.603C153.838 434.692 151.48 432.344 148.58 432.344Z" fill="#404040"/>
|
|
55
|
+
<path d="M130.853 442.466C133.534 442.466 135.707 440.292 135.707 437.611C135.707 434.929 133.534 432.755 130.853 432.755C128.172 432.755 125.999 434.929 125.999 437.611C125.999 440.292 128.172 442.466 130.853 442.466Z" fill="#404040"/>
|
|
56
|
+
<path d="M113.097 442.058C115.555 442.058 117.548 440.065 117.548 437.607C117.548 435.148 115.555 433.155 113.097 433.155C110.639 433.155 108.646 435.148 108.646 437.607C108.646 440.065 110.639 442.058 113.097 442.058Z" fill="#404040"/>
|
|
57
|
+
<path d="M95.3702 441.666C97.6053 441.666 99.4173 439.854 99.4173 437.619C99.4173 435.383 97.6053 433.571 95.3702 433.571C93.1351 433.571 91.3232 435.383 91.3232 437.619C91.3232 439.854 93.1351 441.666 95.3702 441.666Z" fill="#404040"/>
|
|
58
|
+
<path d="M77.6434 441.261C79.6556 441.261 81.2868 439.629 81.2868 437.617C81.2868 435.604 79.6556 433.973 77.6434 433.973C75.6312 433.973 74 435.604 74 437.617C74 439.629 75.6312 441.261 77.6434 441.261Z" fill="#404040"/>
|
|
59
|
+
<path d="M237.257 426.701C241.273 426.701 244.534 423.439 244.534 419.423C244.534 415.407 241.273 412.146 237.257 412.146C233.242 412.146 229.981 415.407 229.981 419.423C229.981 423.439 233.242 426.701 237.257 426.701Z" fill="#404040"/>
|
|
60
|
+
<path d="M219.523 412.559C215.731 412.559 212.651 415.64 212.651 419.432C212.651 423.225 215.731 426.306 219.523 426.306C223.315 426.306 226.396 423.225 226.396 419.432C226.396 415.64 223.315 412.559 219.523 412.559Z" fill="#404040"/>
|
|
61
|
+
<path d="M201.775 425.894C205.347 425.894 208.244 422.997 208.244 419.424C208.244 415.85 205.347 412.954 201.775 412.954C198.202 412.954 195.306 415.85 195.306 419.424C195.306 422.997 198.202 425.894 201.775 425.894Z" fill="#404040"/>
|
|
62
|
+
<path d="M184.041 413.347C180.695 413.347 177.975 416.067 177.975 419.414C177.975 422.76 180.695 425.48 184.041 425.48C187.387 425.48 190.106 422.76 190.106 419.414C190.106 416.067 187.387 413.347 184.041 413.347Z" fill="#404040"/>
|
|
63
|
+
<path d="M166.314 413.759C163.191 413.759 160.652 416.298 160.652 419.422C160.652 422.546 163.191 425.085 166.314 425.085C169.437 425.085 171.975 422.546 171.975 419.422C171.975 416.298 169.437 413.759 166.314 413.759Z" fill="#404040"/>
|
|
64
|
+
<path d="M148.58 414.165C145.68 414.165 143.322 416.524 143.322 419.424C143.322 422.324 145.68 424.683 148.58 424.683C151.48 424.683 153.838 422.335 153.838 419.424C153.838 416.513 151.48 414.165 148.58 414.165Z" fill="#404040"/>
|
|
65
|
+
<path d="M130.853 414.577C128.176 414.577 125.999 416.745 125.999 419.432C125.999 422.12 128.166 424.288 130.853 424.288C133.54 424.288 135.707 422.12 135.707 419.432C135.707 416.745 133.54 414.577 130.853 414.577Z" fill="#404040"/>
|
|
66
|
+
<path d="M113.097 423.874C115.555 423.874 117.548 421.881 117.548 419.423C117.548 416.964 115.555 414.971 113.097 414.971C110.639 414.971 108.646 416.964 108.646 419.423C108.646 421.881 110.639 423.874 113.097 423.874Z" fill="#404040"/>
|
|
67
|
+
<path d="M254.984 408.924C259.222 408.924 262.664 405.482 262.664 401.243C262.664 397.004 259.222 393.562 254.984 393.562C250.746 393.562 247.304 397.004 247.304 401.243C247.304 405.482 250.746 408.924 254.984 408.924Z" fill="#404040"/>
|
|
68
|
+
<path d="M237.257 408.513C241.273 408.513 244.534 405.251 244.534 401.235C244.534 397.219 241.273 393.958 237.257 393.958C233.242 393.958 229.981 397.219 229.981 401.235C229.981 405.251 233.242 408.513 237.257 408.513Z" fill="#404040"/>
|
|
69
|
+
<path d="M219.523 394.352C215.731 394.352 212.651 397.433 212.651 401.225C212.651 405.018 215.731 408.099 219.523 408.099C223.315 408.099 226.396 405.018 226.396 401.225C226.396 397.433 223.315 394.352 219.523 394.352Z" fill="#404040"/>
|
|
70
|
+
<path d="M201.775 394.764C198.206 394.764 195.306 397.664 195.306 401.234C195.306 404.804 198.206 407.704 201.775 407.704C205.344 407.704 208.244 404.804 208.244 401.234C208.244 397.664 205.344 394.764 201.775 394.764Z" fill="#404040"/>
|
|
71
|
+
<path d="M184.041 395.169C180.695 395.169 177.975 397.889 177.975 401.235C177.975 404.582 180.695 407.302 184.041 407.302C187.387 407.302 190.106 404.582 190.106 401.235C190.106 397.889 187.387 395.169 184.041 395.169Z" fill="#404040"/>
|
|
72
|
+
<path d="M166.314 406.907C169.441 406.907 171.975 404.371 171.975 401.244C171.975 398.116 169.441 395.581 166.314 395.581C163.187 395.581 160.652 398.116 160.652 401.244C160.652 404.371 163.187 406.907 166.314 406.907Z" fill="#404040"/>
|
|
73
|
+
<path d="M148.58 395.975C145.68 395.975 143.322 398.323 143.322 401.234C143.322 404.145 145.68 406.493 148.58 406.493C151.48 406.493 153.838 404.135 153.838 401.234C153.838 398.334 151.48 395.975 148.58 395.975Z" fill="#404040"/>
|
|
74
|
+
<path d="M272.718 391.132C277.18 391.132 280.802 387.509 280.802 383.046C280.802 378.584 277.18 374.961 272.718 374.961C268.257 374.961 264.635 378.584 264.635 383.046C264.635 387.509 268.257 391.132 272.718 391.132Z" fill="#404040"/>
|
|
75
|
+
<path d="M254.984 390.718C259.222 390.718 262.664 387.276 262.664 383.037C262.664 378.798 259.222 375.355 254.984 375.355C250.746 375.355 247.304 378.798 247.304 383.037C247.304 387.276 250.746 390.718 254.984 390.718Z" fill="#404040"/>
|
|
76
|
+
<path d="M290.445 373.337C295.132 373.337 298.932 369.537 298.932 364.849C298.932 360.16 295.132 356.36 290.445 356.36C285.758 356.36 281.958 360.16 281.958 364.849C281.958 369.537 285.758 373.337 290.445 373.337Z" fill="#404040"/>
|
|
77
|
+
<path d="M272.718 372.941C277.18 372.941 280.802 369.318 280.802 364.856C280.802 360.394 277.18 356.771 272.718 356.771C268.257 356.771 264.635 360.394 264.635 364.856C264.635 369.318 268.257 372.941 272.718 372.941Z" fill="#404040"/>
|
|
78
|
+
<path d="M317.092 346.674C317.092 341.765 313.108 337.781 308.201 337.781C303.293 337.781 299.31 341.765 299.31 346.674C299.31 351.582 303.293 355.566 308.201 355.566C313.108 355.566 317.092 351.582 317.092 346.674Z" fill="#404040"/>
|
|
79
|
+
<path d="M290.445 355.176C295.129 355.176 298.932 351.373 298.932 346.688C298.932 342.002 295.129 338.199 290.445 338.199C285.761 338.199 281.958 342.002 281.958 346.688C281.958 351.373 285.761 355.176 290.445 355.176Z" fill="#404040"/>
|
|
80
|
+
<path d="M272.718 354.763C277.18 354.763 280.802 351.14 280.802 346.678C280.802 342.216 277.18 338.593 272.718 338.593C268.257 338.593 264.635 342.216 264.635 346.678C264.635 351.14 268.257 354.763 272.718 354.763Z" fill="#404040"/>
|
|
81
|
+
<path d="M237.257 281.202C241.273 281.202 244.534 277.94 244.534 273.924C244.534 269.908 241.273 266.646 237.257 266.646C233.242 266.646 229.981 269.908 229.981 273.924C229.981 277.94 233.242 281.202 237.257 281.202Z" fill="#404040"/>
|
|
82
|
+
<path d="M184.041 267.857C180.695 267.857 177.975 270.577 177.975 273.923C177.975 277.27 180.695 279.99 184.041 279.99C187.387 279.99 190.106 277.27 190.106 273.923C190.106 270.577 187.387 267.857 184.041 267.857Z" fill="#404040"/>
|
|
83
|
+
<path d="M166.314 279.595C169.441 279.595 171.975 277.06 171.975 273.933C171.975 270.805 169.441 268.27 166.314 268.27C163.187 268.27 160.652 270.805 160.652 273.933C160.652 277.06 163.187 279.595 166.314 279.595Z" fill="#404040"/>
|
|
84
|
+
<path d="M130.853 259.984C128.176 259.984 125.999 262.151 125.999 264.839C125.999 267.527 128.166 269.694 130.853 269.694C133.54 269.694 135.707 267.527 135.707 264.839C135.707 262.151 133.54 259.984 130.853 259.984Z" fill="#404040"/>
|
|
85
|
+
<path d="M254.984 299.793C259.222 299.793 262.664 296.351 262.664 292.112C262.664 287.873 259.222 284.431 254.984 284.431C250.746 284.431 247.304 287.873 247.304 292.112C247.304 296.351 250.746 299.793 254.984 299.793Z" fill="#404040"/>
|
|
86
|
+
<path d="M237.257 299.392C241.273 299.392 244.534 296.131 244.534 292.115C244.534 288.099 241.273 284.837 237.257 284.837C233.242 284.837 229.981 288.099 229.981 292.115C229.981 296.131 233.242 299.392 237.257 299.392Z" fill="#404040"/>
|
|
87
|
+
<path d="M272.718 318.396C277.18 318.396 280.802 314.773 280.802 310.311C280.802 305.849 277.18 302.226 272.718 302.226C268.257 302.226 264.635 305.849 264.635 310.311C264.635 314.773 268.257 318.396 272.718 318.396Z" fill="#404040"/>
|
|
88
|
+
<path d="M254.984 317.982C259.222 317.982 262.664 314.54 262.664 310.3C262.664 306.061 259.222 302.619 254.984 302.619C250.746 302.619 247.304 306.061 247.304 310.3C247.304 314.54 250.746 317.982 254.984 317.982Z" fill="#404040"/>
|
|
89
|
+
<path d="M237.257 317.57C241.273 317.57 244.534 314.309 244.534 310.293C244.534 306.277 241.273 303.015 237.257 303.015C233.242 303.015 229.981 306.277 229.981 310.293C229.981 314.309 233.242 317.57 237.257 317.57Z" fill="#404040"/>
|
|
90
|
+
<path d="M290.445 336.969C295.132 336.969 298.932 333.169 298.932 328.48C298.932 323.792 295.132 319.992 290.445 319.992C285.758 319.992 281.958 323.792 281.958 328.48C281.958 333.169 285.758 336.969 290.445 336.969Z" fill="#404040"/>
|
|
91
|
+
<path d="M272.718 336.573C277.18 336.573 280.802 332.951 280.802 328.488C280.802 324.026 277.18 320.403 272.718 320.403C268.257 320.403 264.635 324.026 264.635 328.488C264.635 332.951 268.257 336.573 272.718 336.573Z" fill="#404040"/>
|
|
92
|
+
<path d="M254.984 336.172C259.222 336.172 262.664 332.73 262.664 328.49C262.664 324.251 259.222 320.809 254.984 320.809C250.746 320.809 247.304 324.251 247.304 328.49C247.304 332.73 250.746 336.172 254.984 336.172Z" fill="#404040"/>
|
|
93
|
+
<path d="M219.523 212.495C215.731 212.495 212.651 215.576 212.651 219.369C212.651 223.161 215.731 226.242 219.523 226.242C223.315 226.242 226.396 223.161 226.396 219.369C226.396 215.576 223.315 212.495 219.523 212.495Z" fill="#404040"/>
|
|
94
|
+
<path d="M219.523 248.861C215.731 248.861 212.651 251.942 212.651 255.735C212.651 259.528 215.731 262.609 219.523 262.609C223.315 262.609 226.396 259.528 226.396 255.735C226.396 251.942 223.315 248.861 219.523 248.861Z" fill="#404040"/>
|
|
95
|
+
<path d="M219.523 267.04C215.731 267.04 212.651 270.121 212.651 273.913C212.651 277.706 215.731 280.787 219.523 280.787C223.315 280.787 226.396 277.706 226.396 273.913C226.396 270.121 223.315 267.04 219.523 267.04Z" fill="#404040"/>
|
|
96
|
+
<path d="M219.523 285.247C215.731 285.247 212.651 288.328 212.651 292.12C212.651 295.913 215.731 298.994 219.523 298.994C223.315 298.994 226.396 295.913 226.396 292.12C226.396 288.328 223.315 285.247 219.523 285.247Z" fill="#404040"/>
|
|
97
|
+
<path d="M219.523 230.673C215.731 230.673 212.651 233.754 212.651 237.547C212.651 241.34 215.731 244.421 219.523 244.421C223.315 244.421 226.396 241.34 226.396 237.547C226.396 233.754 223.315 230.673 219.523 230.673Z" fill="#404040"/>
|
|
98
|
+
<path d="M201.775 221.995C198.206 221.995 195.306 224.895 195.306 228.465C195.306 232.035 198.206 234.935 201.775 234.935C205.344 234.935 208.244 232.035 208.244 228.465C208.244 224.895 205.344 221.995 201.775 221.995Z" fill="#404040"/>
|
|
99
|
+
<path d="M201.775 258.367C198.206 258.367 195.306 261.267 195.306 264.837C195.306 268.407 198.206 271.307 201.775 271.307C205.344 271.307 208.244 268.407 208.244 264.837C208.244 261.267 205.344 258.367 201.775 258.367Z" fill="#404040"/>
|
|
100
|
+
<path d="M201.775 276.549C198.206 276.549 195.306 279.449 195.306 283.019C195.306 286.589 198.206 289.489 201.775 289.489C205.344 289.489 208.244 286.589 208.244 283.019C208.244 279.449 205.344 276.549 201.775 276.549Z" fill="#404040"/>
|
|
101
|
+
<path d="M201.775 240.183C198.206 240.183 195.306 243.083 195.306 246.653C195.306 247.991 195.709 249.234 196.41 250.265C197.568 251.986 199.544 253.112 201.775 253.112C204.005 253.112 205.97 251.986 207.139 250.265C207.84 249.234 208.244 247.991 208.244 246.653C208.244 243.083 205.344 240.183 201.775 240.183Z" fill="#404040"/>
|
|
102
|
+
<path d="M185.262 249.797C184.869 249.712 184.455 249.669 184.041 249.669C183.626 249.669 183.212 249.712 182.819 249.797C180.057 250.36 177.975 252.804 177.975 255.736C177.975 258.668 180.057 261.112 182.819 261.675C183.212 261.76 183.626 261.802 184.041 261.802C184.455 261.802 184.869 261.76 185.262 261.675C188.024 261.112 190.106 258.668 190.106 255.736C190.106 252.804 188.024 250.36 185.262 249.797Z" fill="#404040"/>
|
|
103
|
+
<path d="M169.479 251.051C168.576 250.446 167.482 250.084 166.314 250.084C165.145 250.084 164.051 250.446 163.148 251.051C161.64 252.071 160.652 253.792 160.652 255.747C160.652 257.309 161.289 258.722 162.309 259.753C163.329 260.772 164.752 261.41 166.314 261.41C167.875 261.41 169.288 260.772 170.318 259.753C171.338 258.733 171.975 257.309 171.975 255.747C171.975 253.792 170.988 252.071 169.479 251.051Z" fill="#404040"/>
|
|
104
|
+
<path d="M148.58 259.572C145.68 259.572 143.322 261.92 143.322 264.831C143.322 267.742 145.68 270.09 148.58 270.09C151.48 270.09 153.838 267.732 153.838 264.831C153.838 261.931 151.48 259.572 148.58 259.572Z" fill="#404040"/>
|
|
105
|
+
<path d="M148.598 241.394C146.782 241.394 145.188 242.318 144.243 243.71C143.68 244.549 143.351 245.559 143.351 246.653C143.351 249.553 145.709 251.912 148.609 251.912C151.508 251.912 153.867 249.564 153.867 246.653C153.867 245.569 153.537 244.549 152.974 243.71C152.029 242.308 150.436 241.394 148.619 241.394H148.598Z" fill="#404040"/>
|
|
106
|
+
<path d="M99.3323 254.928C99.2792 254.662 99.1942 254.407 99.0986 254.173C98.8968 253.685 98.5994 253.249 98.2276 252.888C97.4946 252.155 96.4855 251.708 95.3702 251.708C94.2549 251.708 93.2458 252.165 92.5129 252.888C92.1517 253.249 91.8543 253.685 91.6419 254.173C91.5356 254.418 91.4613 254.673 91.4082 254.928C91.3551 255.193 91.3232 255.459 91.3232 255.746C91.3232 256.022 91.3551 256.298 91.4082 256.564C91.4613 256.829 91.5463 257.084 91.6419 257.318C92.2579 258.774 93.6919 259.783 95.3702 259.783C97.0485 259.783 98.4825 258.763 99.0986 257.318C99.2048 257.074 99.2792 256.819 99.3323 256.564C99.3854 256.298 99.4173 256.033 99.4173 255.746C99.4173 255.469 99.3854 255.193 99.3323 254.928Z" fill="#404040"/>
|
|
107
|
+
<path d="M77.6434 252.104C75.6358 252.104 74 253.73 74 255.748C74 257.756 75.6252 259.392 77.6434 259.392C79.6616 259.392 81.2868 257.767 81.2868 255.748C81.2868 253.74 79.6616 252.104 77.6434 252.104Z" fill="#404040"/>
|
|
108
|
+
<path d="M113.097 260.39C110.643 260.39 108.646 262.377 108.646 264.842C108.646 267.307 110.633 269.293 113.097 269.293C115.561 269.293 117.548 267.307 117.548 264.842C117.548 262.377 115.561 260.39 113.097 260.39Z" fill="#404040"/>
|
|
109
|
+
<path d="M284.974 255.74C337.087 255.74 379.331 213.487 379.331 161.365C379.331 109.242 337.076 67 284.974 67H226.85L325.424 164.807L234.923 255.74L325.424 346.673L226.85 444.48H284.974C337.087 444.48 379.331 402.227 379.331 350.104C379.331 297.982 337.087 255.729 284.974 255.729V255.74Z" fill="url(#paint0_linear_10832_18517)"/>
|
|
110
|
+
<path d="M367.313 298.586L454 255.738L367.313 212.891V298.586Z" fill="url(#paint1_linear_10832_18517)"/>
|
|
111
|
+
<path d="M219.523 67C215.731 67 212.651 70.081 212.651 73.8739C212.651 77.6667 215.731 80.7478 219.523 80.7478C223.315 80.7478 226.396 77.6667 226.396 73.8739C226.396 70.081 223.315 67 219.523 67Z" fill="url(#paint2_linear_10832_18517)"/>
|
|
112
|
+
<path d="M201.775 67.4116C198.206 67.4116 195.306 70.312 195.306 73.8818C195.306 77.4515 198.206 80.352 201.775 80.352C205.344 80.352 208.244 77.4515 208.244 73.8818C208.244 70.312 205.344 67.4116 201.775 67.4116Z" fill="url(#paint3_linear_10832_18517)"/>
|
|
113
|
+
<path d="M184.041 67.8062C180.695 67.8062 177.975 70.526 177.975 73.8726C177.975 77.2192 180.695 79.939 184.041 79.939C187.387 79.939 190.106 77.2192 190.106 73.8726C190.106 70.526 187.387 67.8062 184.041 67.8062Z" fill="url(#paint4_linear_10832_18517)"/>
|
|
114
|
+
<path d="M166.314 68.2007C163.191 68.2007 160.652 70.7399 160.652 73.8634C160.652 76.9869 163.191 79.5261 166.314 79.5261C169.437 79.5261 171.975 76.9869 171.975 73.8634C171.975 70.7399 169.437 68.2007 166.314 68.2007Z" fill="url(#paint5_linear_10832_18517)"/>
|
|
115
|
+
<path d="M148.58 68.6177C145.68 68.6177 143.322 70.9656 143.322 73.8767C143.322 76.7877 145.68 79.1357 148.58 79.1357C151.48 79.1357 153.838 76.7771 153.838 73.8767C153.838 70.9763 151.48 68.6177 148.58 68.6177Z" fill="url(#paint6_linear_10832_18517)"/>
|
|
116
|
+
<path d="M130.853 69.0176C128.176 69.0176 125.999 71.1849 125.999 73.8729C125.999 76.5608 128.166 78.7281 130.853 78.7281C133.54 78.7281 135.707 76.5608 135.707 73.8729C135.707 71.1849 133.54 69.0176 130.853 69.0176Z" fill="url(#paint7_linear_10832_18517)"/>
|
|
117
|
+
<path d="M113.097 69.4297C110.643 69.4297 108.646 71.4164 108.646 73.8812C108.646 76.3461 110.633 78.3328 113.097 78.3328C115.561 78.3328 117.548 76.3461 117.548 73.8812C117.548 71.4164 115.561 69.4297 113.097 69.4297Z" fill="url(#paint8_linear_10832_18517)"/>
|
|
118
|
+
<path d="M95.3702 69.8242C93.1396 69.8242 91.3232 71.6303 91.3232 73.8721C91.3232 76.1138 93.1289 77.9199 95.3702 77.9199C97.6115 77.9199 99.4173 76.1138 99.4173 73.8721C99.4173 71.6303 97.6115 69.8242 95.3702 69.8242Z" fill="url(#paint9_linear_10832_18517)"/>
|
|
119
|
+
<path d="M77.6434 77.507C79.6556 77.507 81.2868 75.8755 81.2868 73.8629C81.2868 71.8503 79.6556 70.2188 77.6434 70.2188C75.6312 70.2188 74 71.8503 74 73.8629C74 75.8755 75.6312 77.507 77.6434 77.507Z" fill="url(#paint10_linear_10832_18517)"/>
|
|
120
|
+
<path d="M237.257 99.3335C241.273 99.3335 244.534 96.0719 244.534 92.0559C244.534 88.04 241.273 84.7783 237.257 84.7783C233.242 84.7783 229.981 88.04 229.981 92.0559C229.981 96.0719 233.242 99.3335 237.257 99.3335Z" fill="url(#paint11_linear_10832_18517)"/>
|
|
121
|
+
<path d="M219.523 85.1782C215.731 85.1782 212.651 88.2593 212.651 92.0521C212.651 95.845 215.731 98.926 219.523 98.926C223.315 98.926 226.396 95.845 226.396 92.0521C226.396 88.2593 223.315 85.1782 219.523 85.1782Z" fill="url(#paint12_linear_10832_18517)"/>
|
|
122
|
+
<path d="M201.775 85.5957C198.206 85.5957 195.306 88.4961 195.306 92.0659C195.306 95.6356 198.206 98.536 201.775 98.536C205.344 98.536 208.244 95.6356 208.244 92.0659C208.244 88.4961 205.344 85.5957 201.775 85.5957Z" fill="url(#paint13_linear_10832_18517)"/>
|
|
123
|
+
<path d="M184.041 85.9946C180.695 85.9946 177.975 88.7144 177.975 92.0611C177.975 95.4077 180.695 98.1275 184.041 98.1275C187.387 98.1275 190.106 95.4077 190.106 92.0611C190.106 88.7144 187.387 85.9946 184.041 85.9946Z" fill="url(#paint14_linear_10832_18517)"/>
|
|
124
|
+
<path d="M166.314 86.4072C163.191 86.4072 160.652 88.9464 160.652 92.07C160.652 95.1935 163.191 97.7327 166.314 97.7327C169.437 97.7327 171.975 95.1935 171.975 92.07C171.975 88.9464 169.437 86.4072 166.314 86.4072Z" fill="url(#paint15_linear_10832_18517)"/>
|
|
125
|
+
<path d="M148.58 86.8018C145.68 86.8018 143.322 89.1603 143.322 92.0608C143.322 94.9612 145.68 97.3198 148.58 97.3198C151.48 97.3198 153.838 94.9612 153.838 92.0608C153.838 89.1603 151.48 86.8018 148.58 86.8018Z" fill="url(#paint16_linear_10832_18517)"/>
|
|
126
|
+
<path d="M130.853 96.9064C133.534 96.9064 135.707 94.7326 135.707 92.0511C135.707 89.3696 133.534 87.1958 130.853 87.1958C128.172 87.1958 125.999 89.3696 125.999 92.0511C125.999 94.7326 128.172 96.9064 130.853 96.9064Z" fill="url(#paint17_linear_10832_18517)"/>
|
|
127
|
+
<path d="M113.097 96.5174C115.555 96.5174 117.548 94.5243 117.548 92.0658C117.548 89.6073 115.555 87.6143 113.097 87.6143C110.639 87.6143 108.646 89.6073 108.646 92.0658C108.646 94.5243 110.639 96.5174 113.097 96.5174Z" fill="url(#paint18_linear_10832_18517)"/>
|
|
128
|
+
<path d="M254.984 117.936C259.222 117.936 262.664 114.494 262.664 110.255C262.664 106.016 259.222 102.574 254.984 102.574C250.746 102.574 247.304 106.016 247.304 110.255C247.304 114.494 250.746 117.936 254.984 117.936Z" fill="url(#paint19_linear_10832_18517)"/>
|
|
129
|
+
<path d="M237.257 117.529C241.273 117.529 244.534 114.267 244.534 110.251C244.534 106.235 241.273 102.974 237.257 102.974C233.242 102.974 229.981 106.235 229.981 110.251C229.981 114.267 233.242 117.529 237.257 117.529Z" fill="url(#paint20_linear_10832_18517)"/>
|
|
130
|
+
<path d="M219.523 103.386C215.731 103.386 212.651 106.467 212.651 110.26C212.651 114.052 215.731 117.134 219.523 117.134C223.315 117.134 226.396 114.052 226.396 110.26C226.396 106.467 223.315 103.386 219.523 103.386Z" fill="url(#paint21_linear_10832_18517)"/>
|
|
131
|
+
<path d="M201.775 116.721C205.347 116.721 208.244 113.824 208.244 110.25C208.244 106.677 205.347 103.78 201.775 103.78C198.202 103.78 195.306 106.677 195.306 110.25C195.306 113.824 198.202 116.721 201.775 116.721Z" fill="url(#paint22_linear_10832_18517)"/>
|
|
132
|
+
<path d="M184.041 104.173C180.695 104.173 177.975 106.893 177.975 110.239C177.975 113.586 180.695 116.306 184.041 116.306C187.387 116.306 190.106 113.586 190.106 110.239C190.106 106.893 187.387 104.173 184.041 104.173Z" fill="url(#paint23_linear_10832_18517)"/>
|
|
133
|
+
<path d="M166.314 115.917C169.441 115.917 171.975 113.381 171.975 110.254C171.975 107.127 169.441 104.591 166.314 104.591C163.187 104.591 160.652 107.127 160.652 110.254C160.652 113.381 163.187 115.917 166.314 115.917Z" fill="url(#paint24_linear_10832_18517)"/>
|
|
134
|
+
<path d="M148.58 104.992C145.68 104.992 143.322 107.35 143.322 110.251C143.322 113.151 145.68 115.51 148.58 115.51C151.48 115.51 153.838 113.151 153.838 110.251C153.838 107.35 151.48 104.992 148.58 104.992Z" fill="url(#paint25_linear_10832_18517)"/>
|
|
135
|
+
<path d="M272.718 136.533C277.18 136.533 280.802 132.911 280.802 128.448C280.802 123.986 277.18 120.363 272.718 120.363C268.257 120.363 264.635 123.986 264.635 128.448C264.635 132.911 268.257 136.533 272.718 136.533Z" fill="url(#paint26_linear_10832_18517)"/>
|
|
136
|
+
<path d="M254.984 136.097C259.222 136.097 262.664 132.655 262.664 128.416C262.664 124.177 259.222 120.734 254.984 120.734C250.746 120.734 247.304 124.177 247.304 128.416C247.304 132.655 250.746 136.097 254.984 136.097Z" fill="url(#paint27_linear_10832_18517)"/>
|
|
137
|
+
<path d="M290.445 155.101C295.129 155.101 298.932 151.297 298.932 146.612C298.932 141.927 295.129 138.123 290.445 138.123C285.761 138.123 281.958 141.927 281.958 146.612C281.958 151.297 285.761 155.101 290.445 155.101Z" fill="url(#paint28_linear_10832_18517)"/>
|
|
138
|
+
<path d="M272.718 154.699C277.18 154.699 280.802 151.077 280.802 146.614C280.802 142.152 277.18 138.529 272.718 138.529C268.257 138.529 264.635 142.152 264.635 146.614C264.635 151.077 268.257 154.699 272.718 154.699Z" fill="url(#paint29_linear_10832_18517)"/>
|
|
139
|
+
<path d="M317.092 164.813C317.092 159.904 313.108 155.92 308.201 155.92C303.293 155.92 299.31 159.904 299.31 164.813C299.31 169.721 303.293 173.705 308.201 173.705C313.108 173.705 317.092 169.721 317.092 164.813Z" fill="url(#paint30_linear_10832_18517)"/>
|
|
140
|
+
<path d="M290.445 173.292C295.132 173.292 298.932 169.491 298.932 164.803C298.932 160.115 295.132 156.314 290.445 156.314C285.758 156.314 281.958 160.115 281.958 164.803C281.958 169.491 285.758 173.292 290.445 173.292Z" fill="url(#paint31_linear_10832_18517)"/>
|
|
141
|
+
<path d="M272.718 172.878C277.18 172.878 280.802 169.255 280.802 164.793C280.802 160.33 277.18 156.708 272.718 156.708C268.257 156.708 264.635 160.33 264.635 164.793C264.635 169.255 268.257 172.878 272.718 172.878Z" fill="url(#paint32_linear_10832_18517)"/>
|
|
142
|
+
<path d="M237.257 244.832C241.273 244.832 244.534 241.57 244.534 237.554C244.534 233.539 241.273 230.277 237.257 230.277C233.242 230.277 229.981 233.539 229.981 237.554C229.981 241.57 233.242 244.832 237.257 244.832Z" fill="url(#paint33_linear_10832_18517)"/>
|
|
143
|
+
<path d="M184.041 231.485C180.695 231.485 177.975 234.205 177.975 237.551C177.975 240.898 180.695 243.618 184.041 243.618C187.387 243.618 190.106 240.898 190.106 237.551C190.106 234.205 187.387 231.485 184.041 231.485Z" fill="url(#paint34_linear_10832_18517)"/>
|
|
144
|
+
<path d="M166.314 231.9C163.191 231.9 160.652 234.44 160.652 237.563C160.652 240.687 163.191 243.226 166.314 243.226C169.437 243.226 171.975 240.687 171.975 237.563C171.975 234.44 169.437 231.9 166.314 231.9Z" fill="url(#paint35_linear_10832_18517)"/>
|
|
145
|
+
<path d="M130.853 251.498C133.534 251.498 135.707 249.324 135.707 246.642C135.707 243.961 133.534 241.787 130.853 241.787C128.172 241.787 125.999 243.961 125.999 246.642C125.999 249.324 128.172 251.498 130.853 251.498Z" fill="url(#paint36_linear_10832_18517)"/>
|
|
146
|
+
<path d="M113.097 251.102C115.555 251.102 117.548 249.109 117.548 246.65C117.548 244.192 115.555 242.199 113.097 242.199C110.639 242.199 108.646 244.192 108.646 246.65C108.646 249.109 110.639 251.102 113.097 251.102Z" fill="url(#paint37_linear_10832_18517)"/>
|
|
147
|
+
<path d="M254.984 227.039C259.222 227.039 262.664 223.597 262.664 219.358C262.664 215.119 259.222 211.677 254.984 211.677C250.746 211.677 247.304 215.119 247.304 219.358C247.304 223.597 250.746 227.039 254.984 227.039Z" fill="url(#paint38_linear_10832_18517)"/>
|
|
148
|
+
<path d="M237.257 226.644C241.273 226.644 244.534 223.382 244.534 219.366C244.534 215.35 241.273 212.088 237.257 212.088C233.242 212.088 229.981 215.35 229.981 219.366C229.981 223.382 233.242 226.644 237.257 226.644Z" fill="url(#paint39_linear_10832_18517)"/>
|
|
149
|
+
<path d="M272.718 209.262C277.18 209.262 280.802 205.64 280.802 201.177C280.802 196.715 277.18 193.092 272.718 193.092C268.257 193.092 264.635 196.715 264.635 201.177C264.635 205.64 268.257 209.262 272.718 209.262Z" fill="url(#paint40_linear_10832_18517)"/>
|
|
150
|
+
<path d="M254.984 208.861C259.222 208.861 262.664 205.419 262.664 201.18C262.664 196.941 259.222 193.499 254.984 193.499C250.746 193.499 247.304 196.941 247.304 201.18C247.304 205.419 250.746 208.861 254.984 208.861Z" fill="url(#paint41_linear_10832_18517)"/>
|
|
151
|
+
<path d="M237.257 208.465C241.273 208.465 244.534 205.204 244.534 201.188C244.534 197.172 241.273 193.91 237.257 193.91C233.242 193.91 229.981 197.172 229.981 201.188C229.981 205.204 233.242 208.465 237.257 208.465Z" fill="url(#paint42_linear_10832_18517)"/>
|
|
152
|
+
<path d="M290.445 191.482C295.129 191.482 298.932 187.679 298.932 182.994C298.932 178.308 295.129 174.505 290.445 174.505C285.761 174.505 281.958 178.308 281.958 182.994C281.958 187.679 285.761 191.482 290.445 191.482Z" fill="url(#paint43_linear_10832_18517)"/>
|
|
153
|
+
<path d="M272.718 191.084C277.18 191.084 280.802 187.461 280.802 182.999C280.802 178.537 277.18 174.914 272.718 174.914C268.257 174.914 264.635 178.537 264.635 182.999C264.635 187.461 268.257 191.084 272.718 191.084Z" fill="url(#paint44_linear_10832_18517)"/>
|
|
154
|
+
<path d="M254.984 190.673C259.222 190.673 262.664 187.23 262.664 182.991C262.664 178.752 259.222 175.31 254.984 175.31C250.746 175.31 247.304 178.752 247.304 182.991C247.304 187.23 250.746 190.673 254.984 190.673Z" fill="url(#paint45_linear_10832_18517)"/>
|
|
155
|
+
<path d="M219.523 430.736C215.731 430.736 212.651 433.817 212.651 437.61C212.651 441.403 215.731 444.484 219.523 444.484C223.315 444.484 226.396 441.403 226.396 437.61C226.396 433.817 223.315 430.736 219.523 430.736Z" fill="url(#paint46_linear_10832_18517)"/>
|
|
156
|
+
<path d="M201.775 444.082C205.347 444.082 208.244 441.185 208.244 437.612C208.244 434.038 205.347 431.142 201.775 431.142C198.202 431.142 195.306 434.038 195.306 437.612C195.306 441.185 198.202 444.082 201.775 444.082Z" fill="url(#paint47_linear_10832_18517)"/>
|
|
157
|
+
<path d="M184.041 431.554C180.695 431.554 177.975 434.274 177.975 437.621C177.975 440.967 180.695 443.687 184.041 443.687C187.387 443.687 190.106 440.967 190.106 437.621C190.106 434.274 187.387 431.554 184.041 431.554Z" fill="url(#paint48_linear_10832_18517)"/>
|
|
158
|
+
<path d="M166.314 443.273C169.441 443.273 171.975 440.738 171.975 437.61C171.975 434.483 169.441 431.948 166.314 431.948C163.187 431.948 160.652 434.483 160.652 437.61C160.652 440.738 163.187 443.273 166.314 443.273Z" fill="url(#paint49_linear_10832_18517)"/>
|
|
159
|
+
<path d="M148.58 432.344C145.68 432.344 143.322 434.702 143.322 437.603C143.322 440.503 145.68 442.862 148.58 442.862C151.48 442.862 153.838 440.514 153.838 437.603C153.838 434.692 151.48 432.344 148.58 432.344Z" fill="url(#paint50_linear_10832_18517)"/>
|
|
160
|
+
<path d="M130.853 442.466C133.534 442.466 135.707 440.292 135.707 437.611C135.707 434.929 133.534 432.755 130.853 432.755C128.172 432.755 125.999 434.929 125.999 437.611C125.999 440.292 128.172 442.466 130.853 442.466Z" fill="url(#paint51_linear_10832_18517)"/>
|
|
161
|
+
<path d="M113.097 442.058C115.555 442.058 117.548 440.065 117.548 437.607C117.548 435.148 115.555 433.155 113.097 433.155C110.639 433.155 108.646 435.148 108.646 437.607C108.646 440.065 110.639 442.058 113.097 442.058Z" fill="url(#paint52_linear_10832_18517)"/>
|
|
162
|
+
<path d="M95.3702 441.666C97.6053 441.666 99.4173 439.854 99.4173 437.619C99.4173 435.383 97.6053 433.571 95.3702 433.571C93.1351 433.571 91.3232 435.383 91.3232 437.619C91.3232 439.854 93.1351 441.666 95.3702 441.666Z" fill="url(#paint53_linear_10832_18517)"/>
|
|
163
|
+
<path d="M77.6434 441.261C79.6556 441.261 81.2868 439.629 81.2868 437.617C81.2868 435.604 79.6556 433.973 77.6434 433.973C75.6312 433.973 74 435.604 74 437.617C74 439.629 75.6312 441.261 77.6434 441.261Z" fill="url(#paint54_linear_10832_18517)"/>
|
|
164
|
+
<path d="M237.257 426.701C241.273 426.701 244.534 423.439 244.534 419.423C244.534 415.407 241.273 412.146 237.257 412.146C233.242 412.146 229.981 415.407 229.981 419.423C229.981 423.439 233.242 426.701 237.257 426.701Z" fill="url(#paint55_linear_10832_18517)"/>
|
|
165
|
+
<path d="M219.523 412.559C215.731 412.559 212.651 415.64 212.651 419.432C212.651 423.225 215.731 426.306 219.523 426.306C223.315 426.306 226.396 423.225 226.396 419.432C226.396 415.64 223.315 412.559 219.523 412.559Z" fill="url(#paint56_linear_10832_18517)"/>
|
|
166
|
+
<path d="M201.775 425.894C205.347 425.894 208.244 422.997 208.244 419.424C208.244 415.85 205.347 412.954 201.775 412.954C198.202 412.954 195.306 415.85 195.306 419.424C195.306 422.997 198.202 425.894 201.775 425.894Z" fill="url(#paint57_linear_10832_18517)"/>
|
|
167
|
+
<path d="M184.041 413.347C180.695 413.347 177.975 416.067 177.975 419.414C177.975 422.76 180.695 425.48 184.041 425.48C187.387 425.48 190.106 422.76 190.106 419.414C190.106 416.067 187.387 413.347 184.041 413.347Z" fill="url(#paint58_linear_10832_18517)"/>
|
|
168
|
+
<path d="M166.314 413.759C163.191 413.759 160.652 416.298 160.652 419.422C160.652 422.546 163.191 425.085 166.314 425.085C169.437 425.085 171.975 422.546 171.975 419.422C171.975 416.298 169.437 413.759 166.314 413.759Z" fill="url(#paint59_linear_10832_18517)"/>
|
|
169
|
+
<path d="M148.58 414.165C145.68 414.165 143.322 416.524 143.322 419.424C143.322 422.324 145.68 424.683 148.58 424.683C151.48 424.683 153.838 422.335 153.838 419.424C153.838 416.513 151.48 414.165 148.58 414.165Z" fill="url(#paint60_linear_10832_18517)"/>
|
|
170
|
+
<path d="M130.853 414.577C128.176 414.577 125.999 416.745 125.999 419.432C125.999 422.12 128.166 424.288 130.853 424.288C133.54 424.288 135.707 422.12 135.707 419.432C135.707 416.745 133.54 414.577 130.853 414.577Z" fill="url(#paint61_linear_10832_18517)"/>
|
|
171
|
+
<path d="M113.097 423.874C115.555 423.874 117.548 421.881 117.548 419.423C117.548 416.964 115.555 414.971 113.097 414.971C110.639 414.971 108.646 416.964 108.646 419.423C108.646 421.881 110.639 423.874 113.097 423.874Z" fill="url(#paint62_linear_10832_18517)"/>
|
|
172
|
+
<path d="M254.984 408.924C259.222 408.924 262.664 405.482 262.664 401.243C262.664 397.004 259.222 393.562 254.984 393.562C250.746 393.562 247.304 397.004 247.304 401.243C247.304 405.482 250.746 408.924 254.984 408.924Z" fill="url(#paint63_linear_10832_18517)"/>
|
|
173
|
+
<path d="M237.257 408.513C241.273 408.513 244.534 405.251 244.534 401.235C244.534 397.219 241.273 393.958 237.257 393.958C233.242 393.958 229.981 397.219 229.981 401.235C229.981 405.251 233.242 408.513 237.257 408.513Z" fill="url(#paint64_linear_10832_18517)"/>
|
|
174
|
+
<path d="M219.523 394.352C215.731 394.352 212.651 397.433 212.651 401.225C212.651 405.018 215.731 408.099 219.523 408.099C223.315 408.099 226.396 405.018 226.396 401.225C226.396 397.433 223.315 394.352 219.523 394.352Z" fill="url(#paint65_linear_10832_18517)"/>
|
|
175
|
+
<path d="M201.775 394.764C198.206 394.764 195.306 397.664 195.306 401.234C195.306 404.804 198.206 407.704 201.775 407.704C205.344 407.704 208.244 404.804 208.244 401.234C208.244 397.664 205.344 394.764 201.775 394.764Z" fill="url(#paint66_linear_10832_18517)"/>
|
|
176
|
+
<path d="M184.041 395.169C180.695 395.169 177.975 397.889 177.975 401.235C177.975 404.582 180.695 407.302 184.041 407.302C187.387 407.302 190.106 404.582 190.106 401.235C190.106 397.889 187.387 395.169 184.041 395.169Z" fill="url(#paint67_linear_10832_18517)"/>
|
|
177
|
+
<path d="M166.314 406.907C169.441 406.907 171.975 404.371 171.975 401.244C171.975 398.116 169.441 395.581 166.314 395.581C163.187 395.581 160.652 398.116 160.652 401.244C160.652 404.371 163.187 406.907 166.314 406.907Z" fill="url(#paint68_linear_10832_18517)"/>
|
|
178
|
+
<path d="M148.58 395.975C145.68 395.975 143.322 398.323 143.322 401.234C143.322 404.145 145.68 406.493 148.58 406.493C151.48 406.493 153.838 404.135 153.838 401.234C153.838 398.334 151.48 395.975 148.58 395.975Z" fill="url(#paint69_linear_10832_18517)"/>
|
|
179
|
+
<path d="M272.718 391.132C277.18 391.132 280.802 387.509 280.802 383.046C280.802 378.584 277.18 374.961 272.718 374.961C268.257 374.961 264.635 378.584 264.635 383.046C264.635 387.509 268.257 391.132 272.718 391.132Z" fill="url(#paint70_linear_10832_18517)"/>
|
|
180
|
+
<path d="M254.984 390.718C259.222 390.718 262.664 387.276 262.664 383.037C262.664 378.798 259.222 375.355 254.984 375.355C250.746 375.355 247.304 378.798 247.304 383.037C247.304 387.276 250.746 390.718 254.984 390.718Z" fill="url(#paint71_linear_10832_18517)"/>
|
|
181
|
+
<path d="M290.445 373.337C295.132 373.337 298.932 369.537 298.932 364.849C298.932 360.16 295.132 356.36 290.445 356.36C285.758 356.36 281.958 360.16 281.958 364.849C281.958 369.537 285.758 373.337 290.445 373.337Z" fill="url(#paint72_linear_10832_18517)"/>
|
|
182
|
+
<path d="M272.718 372.941C277.18 372.941 280.802 369.318 280.802 364.856C280.802 360.394 277.18 356.771 272.718 356.771C268.257 356.771 264.635 360.394 264.635 364.856C264.635 369.318 268.257 372.941 272.718 372.941Z" fill="url(#paint73_linear_10832_18517)"/>
|
|
183
|
+
<path d="M317.092 346.674C317.092 341.765 313.108 337.781 308.201 337.781C303.293 337.781 299.31 341.765 299.31 346.674C299.31 351.582 303.293 355.566 308.201 355.566C313.108 355.566 317.092 351.582 317.092 346.674Z" fill="url(#paint74_linear_10832_18517)"/>
|
|
184
|
+
<path d="M290.445 355.176C295.129 355.176 298.932 351.373 298.932 346.688C298.932 342.002 295.129 338.199 290.445 338.199C285.761 338.199 281.958 342.002 281.958 346.688C281.958 351.373 285.761 355.176 290.445 355.176Z" fill="url(#paint75_linear_10832_18517)"/>
|
|
185
|
+
<path d="M272.718 354.763C277.18 354.763 280.802 351.14 280.802 346.678C280.802 342.216 277.18 338.593 272.718 338.593C268.257 338.593 264.635 342.216 264.635 346.678C264.635 351.14 268.257 354.763 272.718 354.763Z" fill="url(#paint76_linear_10832_18517)"/>
|
|
186
|
+
<path d="M237.257 281.202C241.273 281.202 244.534 277.94 244.534 273.924C244.534 269.908 241.273 266.646 237.257 266.646C233.242 266.646 229.981 269.908 229.981 273.924C229.981 277.94 233.242 281.202 237.257 281.202Z" fill="url(#paint77_linear_10832_18517)"/>
|
|
187
|
+
<path d="M184.041 267.857C180.695 267.857 177.975 270.577 177.975 273.923C177.975 277.27 180.695 279.99 184.041 279.99C187.387 279.99 190.106 277.27 190.106 273.923C190.106 270.577 187.387 267.857 184.041 267.857Z" fill="url(#paint78_linear_10832_18517)"/>
|
|
188
|
+
<path d="M166.314 279.595C169.441 279.595 171.975 277.06 171.975 273.933C171.975 270.805 169.441 268.27 166.314 268.27C163.187 268.27 160.652 270.805 160.652 273.933C160.652 277.06 163.187 279.595 166.314 279.595Z" fill="url(#paint79_linear_10832_18517)"/>
|
|
189
|
+
<path d="M130.853 259.984C128.176 259.984 125.999 262.151 125.999 264.839C125.999 267.527 128.166 269.694 130.853 269.694C133.54 269.694 135.707 267.527 135.707 264.839C135.707 262.151 133.54 259.984 130.853 259.984Z" fill="url(#paint80_linear_10832_18517)"/>
|
|
190
|
+
<path d="M254.984 299.793C259.222 299.793 262.664 296.351 262.664 292.112C262.664 287.873 259.222 284.431 254.984 284.431C250.746 284.431 247.304 287.873 247.304 292.112C247.304 296.351 250.746 299.793 254.984 299.793Z" fill="url(#paint81_linear_10832_18517)"/>
|
|
191
|
+
<path d="M237.257 299.392C241.273 299.392 244.534 296.131 244.534 292.115C244.534 288.099 241.273 284.837 237.257 284.837C233.242 284.837 229.981 288.099 229.981 292.115C229.981 296.131 233.242 299.392 237.257 299.392Z" fill="url(#paint82_linear_10832_18517)"/>
|
|
192
|
+
<path d="M272.718 318.396C277.18 318.396 280.802 314.773 280.802 310.311C280.802 305.849 277.18 302.226 272.718 302.226C268.257 302.226 264.635 305.849 264.635 310.311C264.635 314.773 268.257 318.396 272.718 318.396Z" fill="url(#paint83_linear_10832_18517)"/>
|
|
193
|
+
<path d="M254.984 317.982C259.222 317.982 262.664 314.54 262.664 310.3C262.664 306.061 259.222 302.619 254.984 302.619C250.746 302.619 247.304 306.061 247.304 310.3C247.304 314.54 250.746 317.982 254.984 317.982Z" fill="url(#paint84_linear_10832_18517)"/>
|
|
194
|
+
<path d="M237.257 317.57C241.273 317.57 244.534 314.309 244.534 310.293C244.534 306.277 241.273 303.015 237.257 303.015C233.242 303.015 229.981 306.277 229.981 310.293C229.981 314.309 233.242 317.57 237.257 317.57Z" fill="url(#paint85_linear_10832_18517)"/>
|
|
195
|
+
<path d="M290.445 336.969C295.132 336.969 298.932 333.169 298.932 328.48C298.932 323.792 295.132 319.992 290.445 319.992C285.758 319.992 281.958 323.792 281.958 328.48C281.958 333.169 285.758 336.969 290.445 336.969Z" fill="url(#paint86_linear_10832_18517)"/>
|
|
196
|
+
<path d="M272.718 336.573C277.18 336.573 280.802 332.951 280.802 328.488C280.802 324.026 277.18 320.403 272.718 320.403C268.257 320.403 264.635 324.026 264.635 328.488C264.635 332.951 268.257 336.573 272.718 336.573Z" fill="url(#paint87_linear_10832_18517)"/>
|
|
197
|
+
<path d="M254.984 336.172C259.222 336.172 262.664 332.73 262.664 328.49C262.664 324.251 259.222 320.809 254.984 320.809C250.746 320.809 247.304 324.251 247.304 328.49C247.304 332.73 250.746 336.172 254.984 336.172Z" fill="url(#paint88_linear_10832_18517)"/>
|
|
198
|
+
<path d="M219.523 212.495C215.731 212.495 212.651 215.576 212.651 219.369C212.651 223.161 215.731 226.242 219.523 226.242C223.315 226.242 226.396 223.161 226.396 219.369C226.396 215.576 223.315 212.495 219.523 212.495Z" fill="url(#paint89_linear_10832_18517)"/>
|
|
199
|
+
<path d="M219.523 248.861C215.731 248.861 212.651 251.942 212.651 255.735C212.651 259.528 215.731 262.609 219.523 262.609C223.315 262.609 226.396 259.528 226.396 255.735C226.396 251.942 223.315 248.861 219.523 248.861Z" fill="url(#paint90_linear_10832_18517)"/>
|
|
200
|
+
<path d="M219.523 267.04C215.731 267.04 212.651 270.121 212.651 273.913C212.651 277.706 215.731 280.787 219.523 280.787C223.315 280.787 226.396 277.706 226.396 273.913C226.396 270.121 223.315 267.04 219.523 267.04Z" fill="url(#paint91_linear_10832_18517)"/>
|
|
201
|
+
<path d="M219.523 285.247C215.731 285.247 212.651 288.328 212.651 292.12C212.651 295.913 215.731 298.994 219.523 298.994C223.315 298.994 226.396 295.913 226.396 292.12C226.396 288.328 223.315 285.247 219.523 285.247Z" fill="url(#paint92_linear_10832_18517)"/>
|
|
202
|
+
<path d="M219.523 230.673C215.731 230.673 212.651 233.754 212.651 237.547C212.651 241.34 215.731 244.421 219.523 244.421C223.315 244.421 226.396 241.34 226.396 237.547C226.396 233.754 223.315 230.673 219.523 230.673Z" fill="url(#paint93_linear_10832_18517)"/>
|
|
203
|
+
<path d="M201.775 221.995C198.206 221.995 195.306 224.895 195.306 228.465C195.306 232.035 198.206 234.935 201.775 234.935C205.344 234.935 208.244 232.035 208.244 228.465C208.244 224.895 205.344 221.995 201.775 221.995Z" fill="url(#paint94_linear_10832_18517)"/>
|
|
204
|
+
<path d="M201.775 258.367C198.206 258.367 195.306 261.267 195.306 264.837C195.306 268.407 198.206 271.307 201.775 271.307C205.344 271.307 208.244 268.407 208.244 264.837C208.244 261.267 205.344 258.367 201.775 258.367Z" fill="url(#paint95_linear_10832_18517)"/>
|
|
205
|
+
<path d="M201.775 276.549C198.206 276.549 195.306 279.449 195.306 283.019C195.306 286.589 198.206 289.489 201.775 289.489C205.344 289.489 208.244 286.589 208.244 283.019C208.244 279.449 205.344 276.549 201.775 276.549Z" fill="url(#paint96_linear_10832_18517)"/>
|
|
206
|
+
<path d="M201.775 240.183C198.206 240.183 195.306 243.083 195.306 246.653C195.306 247.991 195.709 249.234 196.41 250.265C197.568 251.986 199.544 253.112 201.775 253.112C204.005 253.112 205.97 251.986 207.139 250.265C207.84 249.234 208.244 247.991 208.244 246.653C208.244 243.083 205.344 240.183 201.775 240.183Z" fill="url(#paint97_linear_10832_18517)"/>
|
|
207
|
+
<path d="M185.262 249.797C184.869 249.712 184.455 249.669 184.041 249.669C183.626 249.669 183.212 249.712 182.819 249.797C180.057 250.36 177.975 252.804 177.975 255.736C177.975 258.668 180.057 261.112 182.819 261.675C183.212 261.76 183.626 261.802 184.041 261.802C184.455 261.802 184.869 261.76 185.262 261.675C188.024 261.112 190.106 258.668 190.106 255.736C190.106 252.804 188.024 250.36 185.262 249.797Z" fill="url(#paint98_linear_10832_18517)"/>
|
|
208
|
+
<path d="M169.479 251.051C168.576 250.446 167.482 250.084 166.314 250.084C165.145 250.084 164.051 250.446 163.148 251.051C161.64 252.071 160.652 253.792 160.652 255.747C160.652 257.309 161.289 258.722 162.309 259.753C163.329 260.772 164.752 261.41 166.314 261.41C167.875 261.41 169.288 260.772 170.318 259.753C171.338 258.733 171.975 257.309 171.975 255.747C171.975 253.792 170.988 252.071 169.479 251.051Z" fill="url(#paint99_linear_10832_18517)"/>
|
|
209
|
+
<path d="M148.58 259.572C145.68 259.572 143.322 261.92 143.322 264.831C143.322 267.742 145.68 270.09 148.58 270.09C151.48 270.09 153.838 267.732 153.838 264.831C153.838 261.931 151.48 259.572 148.58 259.572Z" fill="url(#paint100_linear_10832_18517)"/>
|
|
210
|
+
<path d="M148.598 241.394C146.782 241.394 145.188 242.318 144.243 243.71C143.68 244.549 143.351 245.559 143.351 246.653C143.351 249.553 145.709 251.912 148.609 251.912C151.508 251.912 153.867 249.564 153.867 246.653C153.867 245.569 153.537 244.549 152.974 243.71C152.029 242.308 150.436 241.394 148.619 241.394H148.598Z" fill="url(#paint101_linear_10832_18517)"/>
|
|
211
|
+
<path d="M99.3323 254.928C99.2792 254.662 99.1942 254.407 99.0986 254.173C98.8968 253.685 98.5994 253.249 98.2276 252.888C97.4946 252.155 96.4855 251.708 95.3702 251.708C94.2549 251.708 93.2458 252.165 92.5129 252.888C92.1517 253.249 91.8543 253.685 91.6419 254.173C91.5356 254.418 91.4613 254.673 91.4082 254.928C91.3551 255.193 91.3232 255.459 91.3232 255.746C91.3232 256.022 91.3551 256.298 91.4082 256.564C91.4613 256.829 91.5463 257.084 91.6419 257.318C92.2579 258.774 93.6919 259.783 95.3702 259.783C97.0485 259.783 98.4825 258.763 99.0986 257.318C99.2048 257.074 99.2792 256.819 99.3323 256.564C99.3854 256.298 99.4173 256.033 99.4173 255.746C99.4173 255.469 99.3854 255.193 99.3323 254.928Z" fill="url(#paint102_linear_10832_18517)"/>
|
|
212
|
+
<path d="M77.6434 252.104C75.6358 252.104 74 253.73 74 255.748C74 257.756 75.6252 259.392 77.6434 259.392C79.6616 259.392 81.2868 257.767 81.2868 255.748C81.2868 253.74 79.6616 252.104 77.6434 252.104Z" fill="url(#paint103_linear_10832_18517)"/>
|
|
213
|
+
<path d="M113.097 260.39C110.643 260.39 108.646 262.377 108.646 264.842C108.646 267.307 110.633 269.293 113.097 269.293C115.561 269.293 117.548 267.307 117.548 264.842C117.548 262.377 115.561 260.39 113.097 260.39Z" fill="url(#paint104_linear_10832_18517)"/>
|
|
214
|
+
</g>
|
|
215
|
+
<defs>
|
|
216
|
+
<linearGradient id="paint0_linear_10832_18517" x1="73.9867" y1="255.74" x2="453.994" y2="255.74" gradientUnits="userSpaceOnUse">
|
|
217
|
+
<stop stop-color="#404040"/>
|
|
218
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
219
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
220
|
+
</linearGradient>
|
|
221
|
+
<linearGradient id="paint1_linear_10832_18517" x1="73.9928" y1="255.738" x2="454" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
222
|
+
<stop stop-color="#404040"/>
|
|
223
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
224
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
225
|
+
</linearGradient>
|
|
226
|
+
<linearGradient id="paint2_linear_10832_18517" x1="74.0105" y1="255.74" x2="454.018" y2="255.74" gradientUnits="userSpaceOnUse">
|
|
227
|
+
<stop stop-color="#404040"/>
|
|
228
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
229
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
230
|
+
</linearGradient>
|
|
231
|
+
<linearGradient id="paint3_linear_10832_18517" x1="73.9903" y1="255.748" x2="453.997" y2="255.748" gradientUnits="userSpaceOnUse">
|
|
232
|
+
<stop stop-color="#404040"/>
|
|
233
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
234
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
235
|
+
</linearGradient>
|
|
236
|
+
<linearGradient id="paint4_linear_10832_18517" x1="73.9953" y1="255.739" x2="454.002" y2="255.739" gradientUnits="userSpaceOnUse">
|
|
237
|
+
<stop stop-color="#404040"/>
|
|
238
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
239
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
240
|
+
</linearGradient>
|
|
241
|
+
<linearGradient id="paint5_linear_10832_18517" x1="73.9967" y1="255.729" x2="454.004" y2="255.729" gradientUnits="userSpaceOnUse">
|
|
242
|
+
<stop stop-color="#404040"/>
|
|
243
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
244
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
245
|
+
</linearGradient>
|
|
246
|
+
<linearGradient id="paint6_linear_10832_18517" x1="74.0017" y1="255.743" x2="454.009" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
247
|
+
<stop stop-color="#404040"/>
|
|
248
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
249
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
250
|
+
</linearGradient>
|
|
251
|
+
<linearGradient id="paint7_linear_10832_18517" x1="74.0137" y1="255.739" x2="454.022" y2="255.739" gradientUnits="userSpaceOnUse">
|
|
252
|
+
<stop stop-color="#404040"/>
|
|
253
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
254
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
255
|
+
</linearGradient>
|
|
256
|
+
<linearGradient id="paint8_linear_10832_18517" x1="73.9863" y1="255.747" x2="453.994" y2="255.747" gradientUnits="userSpaceOnUse">
|
|
257
|
+
<stop stop-color="#404040"/>
|
|
258
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
259
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
260
|
+
</linearGradient>
|
|
261
|
+
<linearGradient id="paint9_linear_10832_18517" x1="73.9985" y1="255.738" x2="454.006" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
262
|
+
<stop stop-color="#404040"/>
|
|
263
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
264
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
265
|
+
</linearGradient>
|
|
266
|
+
<linearGradient id="paint10_linear_10832_18517" x1="74.0106" y1="255.729" x2="454.017" y2="255.729" gradientUnits="userSpaceOnUse">
|
|
267
|
+
<stop stop-color="#404040"/>
|
|
268
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
269
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
270
|
+
</linearGradient>
|
|
271
|
+
<linearGradient id="paint11_linear_10832_18517" x1="74.0055" y1="255.733" x2="454.013" y2="255.733" gradientUnits="userSpaceOnUse">
|
|
272
|
+
<stop stop-color="#404040"/>
|
|
273
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
274
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
275
|
+
</linearGradient>
|
|
276
|
+
<linearGradient id="paint12_linear_10832_18517" x1="74.0105" y1="255.729" x2="454.018" y2="255.729" gradientUnits="userSpaceOnUse">
|
|
277
|
+
<stop stop-color="#404040"/>
|
|
278
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
279
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
280
|
+
</linearGradient>
|
|
281
|
+
<linearGradient id="paint13_linear_10832_18517" x1="73.9903" y1="255.743" x2="453.997" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
282
|
+
<stop stop-color="#404040"/>
|
|
283
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
284
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
285
|
+
</linearGradient>
|
|
286
|
+
<linearGradient id="paint14_linear_10832_18517" x1="73.9953" y1="255.738" x2="454.002" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
287
|
+
<stop stop-color="#404040"/>
|
|
288
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
289
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
290
|
+
</linearGradient>
|
|
291
|
+
<linearGradient id="paint15_linear_10832_18517" x1="73.9967" y1="255.747" x2="454.004" y2="255.747" gradientUnits="userSpaceOnUse">
|
|
292
|
+
<stop stop-color="#404040"/>
|
|
293
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
294
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
295
|
+
</linearGradient>
|
|
296
|
+
<linearGradient id="paint16_linear_10832_18517" x1="74.0017" y1="255.738" x2="454.009" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
297
|
+
<stop stop-color="#404040"/>
|
|
298
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
299
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
300
|
+
</linearGradient>
|
|
301
|
+
<linearGradient id="paint17_linear_10832_18517" x1="74.0137" y1="255.728" x2="454.022" y2="255.728" gradientUnits="userSpaceOnUse">
|
|
302
|
+
<stop stop-color="#404040"/>
|
|
303
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
304
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
305
|
+
</linearGradient>
|
|
306
|
+
<linearGradient id="paint18_linear_10832_18517" x1="73.9863" y1="255.743" x2="453.994" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
307
|
+
<stop stop-color="#404040"/>
|
|
308
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
309
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
310
|
+
</linearGradient>
|
|
311
|
+
<linearGradient id="paint19_linear_10832_18517" x1="73.9935" y1="255.744" x2="454.001" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
312
|
+
<stop stop-color="#404040"/>
|
|
313
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
314
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
315
|
+
</linearGradient>
|
|
316
|
+
<linearGradient id="paint20_linear_10832_18517" x1="74.0055" y1="255.74" x2="454.013" y2="255.74" gradientUnits="userSpaceOnUse">
|
|
317
|
+
<stop stop-color="#404040"/>
|
|
318
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
319
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
320
|
+
</linearGradient>
|
|
321
|
+
<linearGradient id="paint21_linear_10832_18517" x1="74.0105" y1="255.748" x2="454.018" y2="255.748" gradientUnits="userSpaceOnUse">
|
|
322
|
+
<stop stop-color="#404040"/>
|
|
323
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
324
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
325
|
+
</linearGradient>
|
|
326
|
+
<linearGradient id="paint22_linear_10832_18517" x1="73.9903" y1="255.739" x2="453.997" y2="255.739" gradientUnits="userSpaceOnUse">
|
|
327
|
+
<stop stop-color="#404040"/>
|
|
328
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
329
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
330
|
+
</linearGradient>
|
|
331
|
+
<linearGradient id="paint23_linear_10832_18517" x1="73.9953" y1="255.728" x2="454.002" y2="255.728" gradientUnits="userSpaceOnUse">
|
|
332
|
+
<stop stop-color="#404040"/>
|
|
333
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
334
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
335
|
+
</linearGradient>
|
|
336
|
+
<linearGradient id="paint24_linear_10832_18517" x1="73.9967" y1="255.743" x2="454.004" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
337
|
+
<stop stop-color="#404040"/>
|
|
338
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
339
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
340
|
+
</linearGradient>
|
|
341
|
+
<linearGradient id="paint25_linear_10832_18517" x1="74.0017" y1="255.739" x2="454.009" y2="255.739" gradientUnits="userSpaceOnUse">
|
|
342
|
+
<stop stop-color="#404040"/>
|
|
343
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
344
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
345
|
+
</linearGradient>
|
|
346
|
+
<linearGradient id="paint26_linear_10832_18517" x1="73.9992" y1="255.748" x2="454.006" y2="255.748" gradientUnits="userSpaceOnUse">
|
|
347
|
+
<stop stop-color="#404040"/>
|
|
348
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
349
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
350
|
+
</linearGradient>
|
|
351
|
+
<linearGradient id="paint27_linear_10832_18517" x1="73.9935" y1="255.726" x2="454.001" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
352
|
+
<stop stop-color="#404040"/>
|
|
353
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
354
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
355
|
+
</linearGradient>
|
|
356
|
+
<linearGradient id="paint28_linear_10832_18517" x1="73.9868" y1="255.734" x2="453.994" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
357
|
+
<stop stop-color="#404040"/>
|
|
358
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
359
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
360
|
+
</linearGradient>
|
|
361
|
+
<linearGradient id="paint29_linear_10832_18517" x1="73.9992" y1="255.736" x2="454.006" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
362
|
+
<stop stop-color="#404040"/>
|
|
363
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
364
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
365
|
+
</linearGradient>
|
|
366
|
+
<linearGradient id="paint30_linear_10832_18517" x1="74.004" y1="255.746" x2="454.011" y2="255.746" gradientUnits="userSpaceOnUse">
|
|
367
|
+
<stop stop-color="#404040"/>
|
|
368
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
369
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
370
|
+
</linearGradient>
|
|
371
|
+
<linearGradient id="paint31_linear_10832_18517" x1="73.9868" y1="255.736" x2="453.994" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
372
|
+
<stop stop-color="#404040"/>
|
|
373
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
374
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
375
|
+
</linearGradient>
|
|
376
|
+
<linearGradient id="paint32_linear_10832_18517" x1="73.9992" y1="255.726" x2="454.006" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
377
|
+
<stop stop-color="#404040"/>
|
|
378
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
379
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
380
|
+
</linearGradient>
|
|
381
|
+
<linearGradient id="paint33_linear_10832_18517" x1="74.0055" y1="255.743" x2="454.013" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
382
|
+
<stop stop-color="#404040"/>
|
|
383
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
384
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
385
|
+
</linearGradient>
|
|
386
|
+
<linearGradient id="paint34_linear_10832_18517" x1="73.9953" y1="255.729" x2="454.002" y2="255.729" gradientUnits="userSpaceOnUse">
|
|
387
|
+
<stop stop-color="#404040"/>
|
|
388
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
389
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
390
|
+
</linearGradient>
|
|
391
|
+
<linearGradient id="paint35_linear_10832_18517" x1="73.9967" y1="255.741" x2="454.004" y2="255.741" gradientUnits="userSpaceOnUse">
|
|
392
|
+
<stop stop-color="#404040"/>
|
|
393
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
394
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
395
|
+
</linearGradient>
|
|
396
|
+
<linearGradient id="paint36_linear_10832_18517" x1="74.0137" y1="255.737" x2="454.022" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
397
|
+
<stop stop-color="#404040"/>
|
|
398
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
399
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
400
|
+
</linearGradient>
|
|
401
|
+
<linearGradient id="paint37_linear_10832_18517" x1="73.9863" y1="255.745" x2="453.994" y2="255.745" gradientUnits="userSpaceOnUse">
|
|
402
|
+
<stop stop-color="#404040"/>
|
|
403
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
404
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
405
|
+
</linearGradient>
|
|
406
|
+
<linearGradient id="paint38_linear_10832_18517" x1="73.9935" y1="255.725" x2="454.001" y2="255.725" gradientUnits="userSpaceOnUse">
|
|
407
|
+
<stop stop-color="#404040"/>
|
|
408
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
409
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
410
|
+
</linearGradient>
|
|
411
|
+
<linearGradient id="paint39_linear_10832_18517" x1="74.0055" y1="255.733" x2="454.013" y2="255.733" gradientUnits="userSpaceOnUse">
|
|
412
|
+
<stop stop-color="#404040"/>
|
|
413
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
414
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
415
|
+
</linearGradient>
|
|
416
|
+
<linearGradient id="paint40_linear_10832_18517" x1="73.9992" y1="255.733" x2="454.006" y2="255.733" gradientUnits="userSpaceOnUse">
|
|
417
|
+
<stop stop-color="#404040"/>
|
|
418
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
419
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
420
|
+
</linearGradient>
|
|
421
|
+
<linearGradient id="paint41_linear_10832_18517" x1="73.9935" y1="255.735" x2="454.001" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
422
|
+
<stop stop-color="#404040"/>
|
|
423
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
424
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
425
|
+
</linearGradient>
|
|
426
|
+
<linearGradient id="paint42_linear_10832_18517" x1="74.0055" y1="255.743" x2="454.013" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
427
|
+
<stop stop-color="#404040"/>
|
|
428
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
429
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
430
|
+
</linearGradient>
|
|
431
|
+
<linearGradient id="paint43_linear_10832_18517" x1="73.9868" y1="255.738" x2="453.994" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
432
|
+
<stop stop-color="#404040"/>
|
|
433
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
434
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
435
|
+
</linearGradient>
|
|
436
|
+
<linearGradient id="paint44_linear_10832_18517" x1="73.9992" y1="255.743" x2="454.006" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
437
|
+
<stop stop-color="#404040"/>
|
|
438
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
439
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
440
|
+
</linearGradient>
|
|
441
|
+
<linearGradient id="paint45_linear_10832_18517" x1="73.9935" y1="255.736" x2="454.001" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
442
|
+
<stop stop-color="#404040"/>
|
|
443
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
444
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
445
|
+
</linearGradient>
|
|
446
|
+
<linearGradient id="paint46_linear_10832_18517" x1="74.0105" y1="255.733" x2="454.018" y2="255.733" gradientUnits="userSpaceOnUse">
|
|
447
|
+
<stop stop-color="#404040"/>
|
|
448
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
449
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
450
|
+
</linearGradient>
|
|
451
|
+
<linearGradient id="paint47_linear_10832_18517" x1="73.9903" y1="255.735" x2="453.997" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
452
|
+
<stop stop-color="#404040"/>
|
|
453
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
454
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
455
|
+
</linearGradient>
|
|
456
|
+
<linearGradient id="paint48_linear_10832_18517" x1="73.9953" y1="255.744" x2="454.002" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
457
|
+
<stop stop-color="#404040"/>
|
|
458
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
459
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
460
|
+
</linearGradient>
|
|
461
|
+
<linearGradient id="paint49_linear_10832_18517" x1="73.9967" y1="255.734" x2="454.004" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
462
|
+
<stop stop-color="#404040"/>
|
|
463
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
464
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
465
|
+
</linearGradient>
|
|
466
|
+
<linearGradient id="paint50_linear_10832_18517" x1="74.0017" y1="255.726" x2="454.009" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
467
|
+
<stop stop-color="#404040"/>
|
|
468
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
469
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
470
|
+
</linearGradient>
|
|
471
|
+
<linearGradient id="paint51_linear_10832_18517" x1="74.0137" y1="255.734" x2="454.022" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
472
|
+
<stop stop-color="#404040"/>
|
|
473
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
474
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
475
|
+
</linearGradient>
|
|
476
|
+
<linearGradient id="paint52_linear_10832_18517" x1="73.9863" y1="255.73" x2="453.994" y2="255.73" gradientUnits="userSpaceOnUse">
|
|
477
|
+
<stop stop-color="#404040"/>
|
|
478
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
479
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
480
|
+
</linearGradient>
|
|
481
|
+
<linearGradient id="paint53_linear_10832_18517" x1="73.9985" y1="255.742" x2="454.006" y2="255.742" gradientUnits="userSpaceOnUse">
|
|
482
|
+
<stop stop-color="#404040"/>
|
|
483
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
484
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
485
|
+
</linearGradient>
|
|
486
|
+
<linearGradient id="paint54_linear_10832_18517" x1="74.0106" y1="255.741" x2="454.017" y2="255.741" gradientUnits="userSpaceOnUse">
|
|
487
|
+
<stop stop-color="#404040"/>
|
|
488
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
489
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
490
|
+
</linearGradient>
|
|
491
|
+
<linearGradient id="paint55_linear_10832_18517" x1="74.0055" y1="255.735" x2="454.013" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
492
|
+
<stop stop-color="#404040"/>
|
|
493
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
494
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
495
|
+
</linearGradient>
|
|
496
|
+
<linearGradient id="paint56_linear_10832_18517" x1="74.0105" y1="255.745" x2="454.018" y2="255.745" gradientUnits="userSpaceOnUse">
|
|
497
|
+
<stop stop-color="#404040"/>
|
|
498
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
499
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
500
|
+
</linearGradient>
|
|
501
|
+
<linearGradient id="paint57_linear_10832_18517" x1="73.9903" y1="255.736" x2="453.997" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
502
|
+
<stop stop-color="#404040"/>
|
|
503
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
504
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
505
|
+
</linearGradient>
|
|
506
|
+
<linearGradient id="paint58_linear_10832_18517" x1="73.9953" y1="255.726" x2="454.002" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
507
|
+
<stop stop-color="#404040"/>
|
|
508
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
509
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
510
|
+
</linearGradient>
|
|
511
|
+
<linearGradient id="paint59_linear_10832_18517" x1="73.9967" y1="255.735" x2="454.004" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
512
|
+
<stop stop-color="#404040"/>
|
|
513
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
514
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
515
|
+
</linearGradient>
|
|
516
|
+
<linearGradient id="paint60_linear_10832_18517" x1="74.0017" y1="255.736" x2="454.009" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
517
|
+
<stop stop-color="#404040"/>
|
|
518
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
519
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
520
|
+
</linearGradient>
|
|
521
|
+
<linearGradient id="paint61_linear_10832_18517" x1="74.0137" y1="255.744" x2="454.022" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
522
|
+
<stop stop-color="#404040"/>
|
|
523
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
524
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
525
|
+
</linearGradient>
|
|
526
|
+
<linearGradient id="paint62_linear_10832_18517" x1="73.9863" y1="255.735" x2="453.994" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
527
|
+
<stop stop-color="#404040"/>
|
|
528
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
529
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
530
|
+
</linearGradient>
|
|
531
|
+
<linearGradient id="paint63_linear_10832_18517" x1="73.9935" y1="255.744" x2="454.001" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
532
|
+
<stop stop-color="#404040"/>
|
|
533
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
534
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
535
|
+
</linearGradient>
|
|
536
|
+
<linearGradient id="paint64_linear_10832_18517" x1="74.0055" y1="255.736" x2="454.013" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
537
|
+
<stop stop-color="#404040"/>
|
|
538
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
539
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
540
|
+
</linearGradient>
|
|
541
|
+
<linearGradient id="paint65_linear_10832_18517" x1="74.0105" y1="255.726" x2="454.018" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
542
|
+
<stop stop-color="#404040"/>
|
|
543
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
544
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
545
|
+
</linearGradient>
|
|
546
|
+
<linearGradient id="paint66_linear_10832_18517" x1="73.9903" y1="255.735" x2="453.997" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
547
|
+
<stop stop-color="#404040"/>
|
|
548
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
549
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
550
|
+
</linearGradient>
|
|
551
|
+
<linearGradient id="paint67_linear_10832_18517" x1="73.9953" y1="255.736" x2="454.002" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
552
|
+
<stop stop-color="#404040"/>
|
|
553
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
554
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
555
|
+
</linearGradient>
|
|
556
|
+
<linearGradient id="paint68_linear_10832_18517" x1="73.9967" y1="255.745" x2="454.004" y2="255.745" gradientUnits="userSpaceOnUse">
|
|
557
|
+
<stop stop-color="#404040"/>
|
|
558
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
559
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
560
|
+
</linearGradient>
|
|
561
|
+
<linearGradient id="paint69_linear_10832_18517" x1="74.0017" y1="255.735" x2="454.009" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
562
|
+
<stop stop-color="#404040"/>
|
|
563
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
564
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
565
|
+
</linearGradient>
|
|
566
|
+
<linearGradient id="paint70_linear_10832_18517" x1="73.9992" y1="255.736" x2="454.006" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
567
|
+
<stop stop-color="#404040"/>
|
|
568
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
569
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
570
|
+
</linearGradient>
|
|
571
|
+
<linearGradient id="paint71_linear_10832_18517" x1="73.9935" y1="255.726" x2="454.001" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
572
|
+
<stop stop-color="#404040"/>
|
|
573
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
574
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
575
|
+
</linearGradient>
|
|
576
|
+
<linearGradient id="paint72_linear_10832_18517" x1="73.9868" y1="255.727" x2="453.994" y2="255.727" gradientUnits="userSpaceOnUse">
|
|
577
|
+
<stop stop-color="#404040"/>
|
|
578
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
579
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
580
|
+
</linearGradient>
|
|
581
|
+
<linearGradient id="paint73_linear_10832_18517" x1="73.9992" y1="255.734" x2="454.006" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
582
|
+
<stop stop-color="#404040"/>
|
|
583
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
584
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
585
|
+
</linearGradient>
|
|
586
|
+
<linearGradient id="paint74_linear_10832_18517" x1="74.004" y1="255.741" x2="454.011" y2="255.741" gradientUnits="userSpaceOnUse">
|
|
587
|
+
<stop stop-color="#404040"/>
|
|
588
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
589
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
590
|
+
</linearGradient>
|
|
591
|
+
<linearGradient id="paint75_linear_10832_18517" x1="73.9868" y1="255.744" x2="453.994" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
592
|
+
<stop stop-color="#404040"/>
|
|
593
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
594
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
595
|
+
</linearGradient>
|
|
596
|
+
<linearGradient id="paint76_linear_10832_18517" x1="73.9992" y1="255.734" x2="454.006" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
597
|
+
<stop stop-color="#404040"/>
|
|
598
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
599
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
600
|
+
</linearGradient>
|
|
601
|
+
<linearGradient id="paint77_linear_10832_18517" x1="74.0055" y1="255.735" x2="454.013" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
602
|
+
<stop stop-color="#404040"/>
|
|
603
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
604
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
605
|
+
</linearGradient>
|
|
606
|
+
<linearGradient id="paint78_linear_10832_18517" x1="73.9953" y1="255.735" x2="454.002" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
607
|
+
<stop stop-color="#404040"/>
|
|
608
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
609
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
610
|
+
</linearGradient>
|
|
611
|
+
<linearGradient id="paint79_linear_10832_18517" x1="73.9967" y1="255.744" x2="454.004" y2="255.744" gradientUnits="userSpaceOnUse">
|
|
612
|
+
<stop stop-color="#404040"/>
|
|
613
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
614
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
615
|
+
</linearGradient>
|
|
616
|
+
<linearGradient id="paint80_linear_10832_18517" x1="74.0137" y1="255.734" x2="454.022" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
617
|
+
<stop stop-color="#404040"/>
|
|
618
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
619
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
620
|
+
</linearGradient>
|
|
621
|
+
<linearGradient id="paint81_linear_10832_18517" x1="73.9935" y1="255.735" x2="454.001" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
622
|
+
<stop stop-color="#404040"/>
|
|
623
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
624
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
625
|
+
</linearGradient>
|
|
626
|
+
<linearGradient id="paint82_linear_10832_18517" x1="74.0055" y1="255.737" x2="454.013" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
627
|
+
<stop stop-color="#404040"/>
|
|
628
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
629
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
630
|
+
</linearGradient>
|
|
631
|
+
<linearGradient id="paint83_linear_10832_18517" x1="73.9992" y1="255.745" x2="454.006" y2="255.745" gradientUnits="userSpaceOnUse">
|
|
632
|
+
<stop stop-color="#404040"/>
|
|
633
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
634
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
635
|
+
</linearGradient>
|
|
636
|
+
<linearGradient id="paint84_linear_10832_18517" x1="73.9935" y1="255.734" x2="454.001" y2="255.734" gradientUnits="userSpaceOnUse">
|
|
637
|
+
<stop stop-color="#404040"/>
|
|
638
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
639
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
640
|
+
</linearGradient>
|
|
641
|
+
<linearGradient id="paint85_linear_10832_18517" x1="74.0055" y1="255.727" x2="454.013" y2="255.727" gradientUnits="userSpaceOnUse">
|
|
642
|
+
<stop stop-color="#404040"/>
|
|
643
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
644
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
645
|
+
</linearGradient>
|
|
646
|
+
<linearGradient id="paint86_linear_10832_18517" x1="73.9868" y1="255.726" x2="453.994" y2="255.726" gradientUnits="userSpaceOnUse">
|
|
647
|
+
<stop stop-color="#404040"/>
|
|
648
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
649
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
650
|
+
</linearGradient>
|
|
651
|
+
<linearGradient id="paint87_linear_10832_18517" x1="73.9992" y1="255.733" x2="454.006" y2="255.733" gradientUnits="userSpaceOnUse">
|
|
652
|
+
<stop stop-color="#404040"/>
|
|
653
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
654
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
655
|
+
</linearGradient>
|
|
656
|
+
<linearGradient id="paint88_linear_10832_18517" x1="73.9935" y1="255.736" x2="454.001" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
657
|
+
<stop stop-color="#404040"/>
|
|
658
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
659
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
660
|
+
</linearGradient>
|
|
661
|
+
<linearGradient id="paint89_linear_10832_18517" x1="74.0105" y1="255.735" x2="454.018" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
662
|
+
<stop stop-color="#404040"/>
|
|
663
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
664
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
665
|
+
</linearGradient>
|
|
666
|
+
<linearGradient id="paint90_linear_10832_18517" x1="74.0105" y1="255.735" x2="454.018" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
667
|
+
<stop stop-color="#404040"/>
|
|
668
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
669
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
670
|
+
</linearGradient>
|
|
671
|
+
<linearGradient id="paint91_linear_10832_18517" x1="74.0105" y1="255.725" x2="454.018" y2="255.725" gradientUnits="userSpaceOnUse">
|
|
672
|
+
<stop stop-color="#404040"/>
|
|
673
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
674
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
675
|
+
</linearGradient>
|
|
676
|
+
<linearGradient id="paint92_linear_10832_18517" x1="74.0105" y1="255.743" x2="454.018" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
677
|
+
<stop stop-color="#404040"/>
|
|
678
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
679
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
680
|
+
</linearGradient>
|
|
681
|
+
<linearGradient id="paint93_linear_10832_18517" x1="74.0105" y1="255.735" x2="454.018" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
682
|
+
<stop stop-color="#404040"/>
|
|
683
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
684
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
685
|
+
</linearGradient>
|
|
686
|
+
<linearGradient id="paint94_linear_10832_18517" x1="73.9903" y1="255.737" x2="453.997" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
687
|
+
<stop stop-color="#404040"/>
|
|
688
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
689
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
690
|
+
</linearGradient>
|
|
691
|
+
<linearGradient id="paint95_linear_10832_18517" x1="73.9903" y1="255.743" x2="453.997" y2="255.743" gradientUnits="userSpaceOnUse">
|
|
692
|
+
<stop stop-color="#404040"/>
|
|
693
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
694
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
695
|
+
</linearGradient>
|
|
696
|
+
<linearGradient id="paint96_linear_10832_18517" x1="73.9903" y1="255.736" x2="453.997" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
697
|
+
<stop stop-color="#404040"/>
|
|
698
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
699
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
700
|
+
</linearGradient>
|
|
701
|
+
<linearGradient id="paint97_linear_10832_18517" x1="73.9903" y1="255.747" x2="453.997" y2="255.747" gradientUnits="userSpaceOnUse">
|
|
702
|
+
<stop stop-color="#404040"/>
|
|
703
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
704
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
705
|
+
</linearGradient>
|
|
706
|
+
<linearGradient id="paint98_linear_10832_18517" x1="73.9953" y1="255.736" x2="454.002" y2="255.736" gradientUnits="userSpaceOnUse">
|
|
707
|
+
<stop stop-color="#404040"/>
|
|
708
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
709
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
710
|
+
</linearGradient>
|
|
711
|
+
<linearGradient id="paint99_linear_10832_18517" x1="74.0073" y1="255.737" x2="454.015" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
712
|
+
<stop stop-color="#404040"/>
|
|
713
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
714
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
715
|
+
</linearGradient>
|
|
716
|
+
<linearGradient id="paint100_linear_10832_18517" x1="74.0017" y1="255.737" x2="454.009" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
717
|
+
<stop stop-color="#404040"/>
|
|
718
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
719
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
720
|
+
</linearGradient>
|
|
721
|
+
<linearGradient id="paint101_linear_10832_18517" x1="74.02" y1="255.737" x2="454.027" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
722
|
+
<stop stop-color="#404040"/>
|
|
723
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
724
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
725
|
+
</linearGradient>
|
|
726
|
+
<linearGradient id="paint102_linear_10832_18517" x1="73.9985" y1="255.735" x2="454.006" y2="255.735" gradientUnits="userSpaceOnUse">
|
|
727
|
+
<stop stop-color="#404040"/>
|
|
728
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
729
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
730
|
+
</linearGradient>
|
|
731
|
+
<linearGradient id="paint103_linear_10832_18517" x1="74.0106" y1="255.738" x2="454.017" y2="255.738" gradientUnits="userSpaceOnUse">
|
|
732
|
+
<stop stop-color="#404040"/>
|
|
733
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
734
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
735
|
+
</linearGradient>
|
|
736
|
+
<linearGradient id="paint104_linear_10832_18517" x1="73.9863" y1="255.737" x2="453.994" y2="255.737" gradientUnits="userSpaceOnUse">
|
|
737
|
+
<stop stop-color="#404040"/>
|
|
738
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
739
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
740
|
+
</linearGradient>
|
|
741
|
+
<clipPath id="clip0_10832_18517">
|
|
742
|
+
<rect width="512" height="512" rx="100" fill="white"/>
|
|
743
|
+
</clipPath>
|
|
744
|
+
</defs>
|
|
745
|
+
</svg>
|