@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,739 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.3248 12C16.6153 12 19.2839 9.31305 19.2839 5.99998C19.2839 2.68691 16.6171 0 13.3248 0H9.65253L15.8787 6.21832L10.1633 12L15.8787 17.7816L9.65253 23.9999H13.3248C16.6153 23.9999 19.2839 21.313 19.2839 17.9999C19.2839 14.6869 16.6153 12 13.3248 12Z" fill="#404040"/>
|
|
3
|
+
<path d="M18.5258 14.725L24.001 12.0002L18.5258 9.27539V14.725Z" fill="#404040"/>
|
|
4
|
+
<path d="M9.19009 0C8.94994 0 8.75638 0.194886 8.75638 0.43669C8.75638 0.678494 8.94994 0.87338 9.19009 0.87338C9.43025 0.87338 9.62381 0.678494 9.62381 0.43669C9.62381 0.194886 9.43025 0 9.19009 0Z" fill="#404040"/>
|
|
5
|
+
<path d="M8.07052 0.0253906C7.8447 0.0253906 7.6619 0.20945 7.6619 0.436818C7.6619 0.664185 7.8447 0.848245 8.07052 0.848245C8.29634 0.848245 8.47914 0.664185 8.47914 0.436818C8.47914 0.20945 8.29634 0.0253906 8.07052 0.0253906Z" fill="#404040"/>
|
|
6
|
+
<path d="M6.95046 0.0507812C6.73898 0.0507812 6.56693 0.224014 6.56693 0.436945C6.56693 0.649877 6.73898 0.823109 6.95046 0.823109C7.16194 0.823109 7.33399 0.649877 7.33399 0.436945C7.33399 0.224014 7.16194 0.0507812 6.95046 0.0507812Z" fill="#404040"/>
|
|
7
|
+
<path d="M5.82958 0.0776367C5.63244 0.0776367 5.47293 0.238238 5.47293 0.436733C5.47293 0.635229 5.63244 0.795829 5.82958 0.795829C6.02673 0.795829 6.18623 0.635229 6.18623 0.436733C6.18623 0.238238 6.02673 0.0776367 5.82958 0.0776367Z" fill="#404040"/>
|
|
8
|
+
<path d="M4.70998 0.102539C4.52717 0.102539 4.37842 0.252313 4.37842 0.436372C4.37842 0.620432 4.52717 0.770206 4.70998 0.770206C4.89278 0.770206 5.04154 0.620432 5.04154 0.436372C5.04154 0.252313 4.89278 0.102539 4.70998 0.102539Z" fill="#404040"/>
|
|
9
|
+
<path d="M3.58992 0.12793C3.42145 0.12793 3.28345 0.266877 3.28345 0.4365C3.28345 0.606123 3.42145 0.74507 3.58992 0.74507C3.75838 0.74507 3.89638 0.606123 3.89638 0.4365C3.89638 0.266877 3.75838 0.12793 3.58992 0.12793Z" fill="#404040"/>
|
|
10
|
+
<path d="M2.46937 0.15332C2.31344 0.15332 2.18799 0.279636 2.18799 0.436627C2.18799 0.593619 2.31344 0.719935 2.46937 0.719935C2.62529 0.719935 2.75074 0.593619 2.75074 0.436627C2.75074 0.279636 2.62529 0.15332 2.46937 0.15332Z" fill="#404040"/>
|
|
11
|
+
<path d="M1.34947 0.180664C1.20788 0.180664 1.09497 0.296152 1.09497 0.436904C1.09497 0.577655 1.20967 0.693143 1.34947 0.693143C1.48926 0.693143 1.60396 0.577655 1.60396 0.436904C1.60396 0.296152 1.48926 0.180664 1.34947 0.180664Z" fill="#404040"/>
|
|
12
|
+
<path d="M0.229419 0.66752C0.356115 0.66752 0.458822 0.564108 0.458822 0.436543C0.458822 0.308978 0.356115 0.205566 0.229419 0.205566C0.102724 0.205566 1.52588e-05 0.308978 1.52588e-05 0.436543C1.52588e-05 0.564108 0.102724 0.66752 0.229419 0.66752Z" fill="#404040"/>
|
|
13
|
+
<path d="M10.3106 2.05525C10.5651 2.05525 10.7694 1.84774 10.7694 1.5933C10.7694 1.33887 10.5633 1.13135 10.3106 1.13135C10.0579 1.13135 9.85184 1.33887 9.85184 1.5933C9.85184 1.84774 10.0579 2.05525 10.3106 2.05525Z" fill="#404040"/>
|
|
14
|
+
<path d="M9.19009 1.15674C8.94994 1.15674 8.75638 1.35162 8.75638 1.59343C8.75638 1.83523 8.94994 2.03012 9.19009 2.03012C9.43025 2.03012 9.62381 1.83523 9.62381 1.59343C9.62381 1.35162 9.43025 1.15674 9.19009 1.15674Z" fill="#404040"/>
|
|
15
|
+
<path d="M8.07052 1.18164C7.8447 1.18164 7.6619 1.3657 7.6619 1.59307C7.6619 1.82044 7.8447 2.00449 8.07052 2.00449C8.29634 2.00449 8.47914 1.82044 8.47914 1.59307C8.47914 1.3657 8.29634 1.18164 8.07052 1.18164Z" fill="#404040"/>
|
|
16
|
+
<path d="M6.95046 1.20703C6.73898 1.20703 6.56693 1.38026 6.56693 1.5932C6.56693 1.80613 6.73898 1.97936 6.95046 1.97936C7.16194 1.97936 7.33399 1.80613 7.33399 1.5932C7.33399 1.38026 7.16194 1.20703 6.95046 1.20703Z" fill="#404040"/>
|
|
17
|
+
<path d="M5.82958 1.23438C5.63244 1.23438 5.47293 1.39498 5.47293 1.59347C5.47293 1.79197 5.63244 1.95257 5.82958 1.95257C6.02673 1.95257 6.18623 1.79197 6.18623 1.59347C6.18623 1.39498 6.02673 1.23438 5.82958 1.23438Z" fill="#404040"/>
|
|
18
|
+
<path d="M4.70998 1.25977C4.52717 1.25977 4.37842 1.40954 4.37842 1.5936C4.37842 1.77766 4.52717 1.92743 4.70998 1.92743C4.89278 1.92743 5.04154 1.77766 5.04154 1.5936C5.04154 1.40954 4.89278 1.25977 4.70998 1.25977Z" fill="#404040"/>
|
|
19
|
+
<path d="M3.58992 1.9023C3.75917 1.9023 3.89638 1.76415 3.89638 1.59373C3.89638 1.42331 3.75917 1.28516 3.58992 1.28516C3.42066 1.28516 3.28345 1.42331 3.28345 1.59373C3.28345 1.76415 3.42066 1.9023 3.58992 1.9023Z" fill="#404040"/>
|
|
20
|
+
<path d="M2.46937 1.87667C2.62477 1.87667 2.75074 1.74983 2.75074 1.59337C2.75074 1.4369 2.62477 1.31006 2.46937 1.31006C2.31397 1.31006 2.18799 1.4369 2.18799 1.59337C2.18799 1.74983 2.31397 1.87667 2.46937 1.87667Z" fill="#404040"/>
|
|
21
|
+
<path d="M11.431 3.23683C11.6981 3.23683 11.9167 3.01849 11.9167 2.74781C11.9167 2.47713 11.6999 2.25879 11.431 2.25879C11.1622 2.25879 10.9453 2.47713 10.9453 2.74781C10.9453 3.01849 11.1622 3.23683 11.431 3.23683Z" fill="#404040"/>
|
|
22
|
+
<path d="M10.3106 3.21199C10.5651 3.21199 10.7694 3.00447 10.7694 2.75004C10.7694 2.4956 10.5633 2.28809 10.3106 2.28809C10.0579 2.28809 9.85184 2.4956 9.85184 2.75004C9.85184 3.00447 10.0579 3.21199 10.3106 3.21199Z" fill="#404040"/>
|
|
23
|
+
<path d="M9.19009 2.31348C8.94994 2.31348 8.75638 2.50836 8.75638 2.75017C8.75638 2.99197 8.94994 3.18686 9.19009 3.18686C9.43025 3.18686 9.62381 2.99197 9.62381 2.75017C9.62381 2.50836 9.43025 2.31348 9.19009 2.31348Z" fill="#404040"/>
|
|
24
|
+
<path d="M8.07052 3.16172C8.2962 3.16172 8.47914 2.97752 8.47914 2.75029C8.47914 2.52307 8.2962 2.33887 8.07052 2.33887C7.84484 2.33887 7.6619 2.52307 7.6619 2.75029C7.6619 2.97752 7.84484 3.16172 8.07052 3.16172Z" fill="#404040"/>
|
|
25
|
+
<path d="M6.95046 2.36377C6.73898 2.36377 6.56693 2.537 6.56693 2.74993C6.56693 2.96286 6.73898 3.1361 6.95046 3.1361C7.16194 3.1361 7.33399 2.96286 7.33399 2.74993C7.33399 2.537 7.16194 2.36377 6.95046 2.36377Z" fill="#404040"/>
|
|
26
|
+
<path d="M5.82958 3.10882C6.02655 3.10882 6.18623 2.94804 6.18623 2.74972C6.18623 2.5514 6.02655 2.39062 5.82958 2.39062C5.63261 2.39062 5.47293 2.5514 5.47293 2.74972C5.47293 2.94804 5.63261 3.10882 5.82958 3.10882Z" fill="#404040"/>
|
|
27
|
+
<path d="M4.70998 2.41602C4.52717 2.41602 4.37842 2.56579 4.37842 2.74985C4.37842 2.93391 4.52717 3.08368 4.70998 3.08368C4.89278 3.08368 5.04154 2.93391 5.04154 2.74985C5.04154 2.56579 4.89278 2.41602 4.70998 2.41602Z" fill="#404040"/>
|
|
28
|
+
<path d="M12.5506 4.41919C12.832 4.41919 13.0614 4.18822 13.0614 3.90491C13.0614 3.6216 12.832 3.39062 12.5506 3.39062C12.2692 3.39062 12.0398 3.6216 12.0398 3.90491C12.0398 4.18822 12.2692 4.41919 12.5506 4.41919Z" fill="#404040"/>
|
|
29
|
+
<path d="M11.431 4.39406C11.6981 4.39406 11.9167 4.17571 11.9167 3.90504C11.9167 3.63436 11.6999 3.41602 11.431 3.41602C11.1622 3.41602 10.9453 3.63436 10.9453 3.90504C10.9453 4.17571 11.1622 4.39406 11.431 4.39406Z" fill="#404040"/>
|
|
30
|
+
<path d="M13.6712 5.60155C13.9669 5.60155 14.207 5.35975 14.207 5.06201C14.207 4.76426 13.9669 4.52246 13.6712 4.52246C13.3754 4.52246 13.1353 4.76426 13.1353 5.06201C13.1353 5.35975 13.3754 5.60155 13.6712 5.60155Z" fill="#404040"/>
|
|
31
|
+
<path d="M12.5506 5.57544C12.832 5.57544 13.0614 5.34447 13.0614 5.06116C13.0614 4.77785 12.832 4.54688 12.5506 4.54688C12.2692 4.54688 12.0398 4.77785 12.0398 5.06116C12.0398 5.34447 12.2692 5.57544 12.5506 5.57544Z" fill="#404040"/>
|
|
32
|
+
<path d="M15.3517 6.21813C15.3517 5.90595 15.1008 5.65332 14.7907 5.65332C14.4807 5.65332 14.2298 5.90595 14.2298 6.21813C14.2298 6.53031 14.4807 6.78294 14.7907 6.78294C15.1008 6.78294 15.3517 6.53031 15.3517 6.21813Z" fill="#404040"/>
|
|
33
|
+
<path d="M13.6712 6.7578C13.9671 6.7578 14.207 6.51624 14.207 6.21826C14.207 5.92027 13.9671 5.67871 13.6712 5.67871C13.3752 5.67871 13.1353 5.92027 13.1353 6.21826C13.1353 6.51624 13.3752 6.7578 13.6712 6.7578Z" fill="#404040"/>
|
|
34
|
+
<path d="M12.5506 6.73267C12.832 6.73267 13.0614 6.50169 13.0614 6.21839C13.0614 5.93508 12.832 5.7041 12.5506 5.7041C12.2692 5.7041 12.0398 5.93508 12.0398 6.21839C12.0398 6.50169 12.2692 6.73267 12.5506 6.73267Z" fill="#404040"/>
|
|
35
|
+
<path d="M10.3106 11.3067C10.5651 11.3067 10.7694 11.0992 10.7694 10.8448C10.7694 10.5903 10.5633 10.3828 10.3106 10.3828C10.0579 10.3828 9.85184 10.5903 9.85184 10.8448C9.85184 11.0992 10.0579 11.3067 10.3106 11.3067Z" fill="#404040"/>
|
|
36
|
+
<path d="M6.95046 10.459C6.73898 10.459 6.56693 10.6322 6.56693 10.8451C6.56693 11.0581 6.73898 11.2313 6.95046 11.2313C7.16194 11.2313 7.33399 11.0581 7.33399 10.8451C7.33399 10.6322 7.16194 10.459 6.95046 10.459Z" fill="#404040"/>
|
|
37
|
+
<path d="M5.82958 10.4844C5.63244 10.4844 5.47293 10.645 5.47293 10.8435C5.47293 11.042 5.63244 11.2026 5.82958 11.2026C6.02673 11.2026 6.18623 11.042 6.18623 10.8435C6.18623 10.645 6.02673 10.4844 5.82958 10.4844Z" fill="#404040"/>
|
|
38
|
+
<path d="M3.58992 11.7314C3.75917 11.7314 3.89638 11.5932 3.89638 11.4228C3.89638 11.2524 3.75917 11.1143 3.58992 11.1143C3.42066 11.1143 3.28345 11.2524 3.28345 11.4228C3.28345 11.5932 3.42066 11.7314 3.58992 11.7314Z" fill="#404040"/>
|
|
39
|
+
<path d="M2.46937 11.7058C2.62477 11.7058 2.75074 11.5789 2.75074 11.4225C2.75074 11.266 2.62477 11.1392 2.46937 11.1392C2.31397 11.1392 2.18799 11.266 2.18799 11.4225C2.18799 11.5789 2.31397 11.7058 2.46937 11.7058Z" fill="#404040"/>
|
|
40
|
+
<path d="M11.431 10.1753C11.6981 10.1753 11.9167 9.95696 11.9167 9.68629C11.9167 9.41561 11.6999 9.19727 11.431 9.19727C11.1622 9.19727 10.9453 9.41561 10.9453 9.68629C10.9453 9.95696 11.1622 10.1753 11.431 10.1753Z" fill="#404040"/>
|
|
41
|
+
<path d="M10.3106 10.1505C10.5651 10.1505 10.7694 9.94295 10.7694 9.68852C10.7694 9.43408 10.5633 9.22656 10.3106 9.22656C10.0579 9.22656 9.85184 9.43408 9.85184 9.68852C9.85184 9.94295 10.0579 10.1505 10.3106 10.1505Z" fill="#404040"/>
|
|
42
|
+
<path d="M12.5506 9.04615C12.832 9.04615 13.0614 8.81517 13.0614 8.53186C13.0614 8.24855 12.832 8.01758 12.5506 8.01758C12.2692 8.01758 12.0398 8.24855 12.0398 8.53186C12.0398 8.81517 12.2692 9.04615 12.5506 9.04615Z" fill="#404040"/>
|
|
43
|
+
<path d="M11.431 9.01906C11.6981 9.01906 11.9167 8.80071 11.9167 8.53004C11.9167 8.25936 11.6999 8.04102 11.431 8.04102C11.1622 8.04102 10.9453 8.25936 10.9453 8.53004C10.9453 8.80071 11.1622 9.01906 11.431 9.01906Z" fill="#404040"/>
|
|
44
|
+
<path d="M10.3106 8.99373C10.5651 8.99373 10.7694 8.78621 10.7694 8.53178C10.7694 8.27734 10.5633 8.06982 10.3106 8.06982C10.0579 8.06982 9.85184 8.27734 9.85184 8.53178C9.85184 8.78621 10.0579 8.99373 10.3106 8.99373Z" fill="#404040"/>
|
|
45
|
+
<path d="M13.6712 7.91454C13.9669 7.91454 14.207 7.67274 14.207 7.375C14.207 7.07725 13.9669 6.83545 13.6712 6.83545C13.3754 6.83545 13.1353 7.07725 13.1353 7.375C13.1353 7.67274 13.3754 7.91454 13.6712 7.91454Z" fill="#404040"/>
|
|
46
|
+
<path d="M12.5506 7.88941C12.832 7.88941 13.0614 7.65843 13.0614 7.37512C13.0614 7.09182 12.832 6.86084 12.5506 6.86084C12.2692 6.86084 12.0398 7.09182 12.0398 7.37512C12.0398 7.65843 12.2692 7.88941 12.5506 7.88941Z" fill="#404040"/>
|
|
47
|
+
<path d="M11.431 7.86378C11.6981 7.86378 11.9167 7.64544 11.9167 7.37476C11.9167 7.10409 11.6999 6.88574 11.431 6.88574C11.1622 6.88574 10.9453 7.10409 10.9453 7.37476C10.9453 7.64544 11.1622 7.86378 11.431 7.86378Z" fill="#404040"/>
|
|
48
|
+
<path d="M9.19009 23.1265C8.94994 23.1265 8.75638 23.3214 8.75638 23.5632C8.75638 23.805 8.94994 23.9998 9.19009 23.9998C9.43025 23.9998 9.62381 23.805 9.62381 23.5632C9.62381 23.3214 9.43025 23.1265 9.19009 23.1265Z" fill="#404040"/>
|
|
49
|
+
<path d="M8.07052 23.9747C8.2962 23.9747 8.47914 23.7905 8.47914 23.5633C8.47914 23.3361 8.2962 23.1519 8.07052 23.1519C7.84484 23.1519 7.6619 23.3361 7.6619 23.5633C7.6619 23.7905 7.84484 23.9747 8.07052 23.9747Z" fill="#404040"/>
|
|
50
|
+
<path d="M6.95046 23.1768C6.73898 23.1768 6.56693 23.35 6.56693 23.5629C6.56693 23.7759 6.73898 23.9491 6.95046 23.9491C7.16194 23.9491 7.33399 23.7759 7.33399 23.5629C7.33399 23.35 7.16194 23.1768 6.95046 23.1768Z" fill="#404040"/>
|
|
51
|
+
<path d="M5.82958 23.9223C6.02655 23.9223 6.18623 23.7615 6.18623 23.5632C6.18623 23.3649 6.02655 23.2041 5.82958 23.2041C5.63261 23.2041 5.47293 23.3649 5.47293 23.5632C5.47293 23.7615 5.63261 23.9223 5.82958 23.9223Z" fill="#404040"/>
|
|
52
|
+
<path d="M4.70998 23.2295C4.52717 23.2295 4.37842 23.3793 4.37842 23.5633C4.37842 23.7474 4.52717 23.8972 4.70998 23.8972C4.89278 23.8972 5.04154 23.7474 5.04154 23.5633C5.04154 23.3793 4.89278 23.2295 4.70998 23.2295Z" fill="#404040"/>
|
|
53
|
+
<path d="M3.58992 23.872C3.75917 23.872 3.89638 23.7339 3.89638 23.5635C3.89638 23.393 3.75917 23.2549 3.58992 23.2549C3.42066 23.2549 3.28345 23.393 3.28345 23.5635C3.28345 23.7339 3.42066 23.872 3.58992 23.872Z" fill="#404040"/>
|
|
54
|
+
<path d="M2.46937 23.8469C2.62477 23.8469 2.75074 23.72 2.75074 23.5636C2.75074 23.4071 2.62477 23.2803 2.46937 23.2803C2.31397 23.2803 2.18799 23.4071 2.18799 23.5636C2.18799 23.72 2.31397 23.8469 2.46937 23.8469Z" fill="#404040"/>
|
|
55
|
+
<path d="M1.34947 23.8191C1.49002 23.8191 1.60396 23.7044 1.60396 23.5629C1.60396 23.4214 1.49002 23.3066 1.34947 23.3066C1.20891 23.3066 1.09497 23.4214 1.09497 23.5629C1.09497 23.7044 1.20891 23.8191 1.34947 23.8191Z" fill="#404040"/>
|
|
56
|
+
<path d="M0.229419 23.7945C0.356115 23.7945 0.458822 23.6911 0.458822 23.5635C0.458822 23.4359 0.356115 23.3325 0.229419 23.3325C0.102724 23.3325 1.52588e-05 23.4359 1.52588e-05 23.5635C1.52588e-05 23.6911 0.102724 23.7945 0.229419 23.7945Z" fill="#404040"/>
|
|
57
|
+
<path d="M10.3106 22.8702C10.5651 22.8702 10.7694 22.6627 10.7694 22.4082C10.7694 22.1538 10.5633 21.9463 10.3106 21.9463C10.0579 21.9463 9.85184 22.1538 9.85184 22.4082C9.85184 22.6627 10.0579 22.8702 10.3106 22.8702Z" fill="#404040"/>
|
|
58
|
+
<path d="M9.19009 21.9697C8.94994 21.9697 8.75638 22.1646 8.75638 22.4064C8.75638 22.6482 8.94994 22.8431 9.19009 22.8431C9.43025 22.8431 9.62381 22.6482 9.62381 22.4064C9.62381 22.1646 9.43025 21.9697 9.19009 21.9697Z" fill="#404040"/>
|
|
59
|
+
<path d="M8.07052 22.818C8.2962 22.818 8.47914 22.6338 8.47914 22.4065C8.47914 22.1793 8.2962 21.9951 8.07052 21.9951C7.84484 21.9951 7.6619 22.1793 7.6619 22.4065C7.6619 22.6338 7.84484 22.818 8.07052 22.818Z" fill="#404040"/>
|
|
60
|
+
<path d="M6.95046 22.0225C6.73898 22.0225 6.56693 22.1957 6.56693 22.4086C6.56693 22.6216 6.73898 22.7948 6.95046 22.7948C7.16194 22.7948 7.33399 22.6216 7.33399 22.4086C7.33399 22.1957 7.16194 22.0225 6.95046 22.0225Z" fill="#404040"/>
|
|
61
|
+
<path d="M5.82958 22.0479C5.63244 22.0479 5.47293 22.2085 5.47293 22.4069C5.47293 22.6054 5.63244 22.766 5.82958 22.766C6.02673 22.766 6.18623 22.6054 6.18623 22.4069C6.18623 22.2085 6.02673 22.0479 5.82958 22.0479Z" fill="#404040"/>
|
|
62
|
+
<path d="M4.70998 22.0723C4.52717 22.0723 4.37842 22.222 4.37842 22.4061C4.37842 22.5902 4.52717 22.7399 4.70998 22.7399C4.89278 22.7399 5.04154 22.5902 5.04154 22.4061C5.04154 22.222 4.89278 22.0723 4.70998 22.0723Z" fill="#404040"/>
|
|
63
|
+
<path d="M3.58992 22.0977C3.42145 22.0977 3.28345 22.2366 3.28345 22.4062C3.28345 22.5758 3.42145 22.7148 3.58992 22.7148C3.75838 22.7148 3.89638 22.5758 3.89638 22.4062C3.89638 22.2366 3.75838 22.0977 3.58992 22.0977Z" fill="#404040"/>
|
|
64
|
+
<path d="M2.46937 22.6897C2.62477 22.6897 2.75074 22.5628 2.75074 22.4064C2.75074 22.2499 2.62477 22.123 2.46937 22.123C2.31397 22.123 2.18799 22.2499 2.18799 22.4064C2.18799 22.5628 2.31397 22.6897 2.46937 22.6897Z" fill="#404040"/>
|
|
65
|
+
<path d="M11.431 21.7388C11.6981 21.7388 11.9167 21.5204 11.9167 21.2498C11.9167 20.9791 11.6999 20.7607 11.431 20.7607C11.1622 20.7607 10.9453 20.9791 10.9453 21.2498C10.9453 21.5204 11.1622 21.7388 11.431 21.7388Z" fill="#404040"/>
|
|
66
|
+
<path d="M10.3106 21.7139C10.5651 21.7139 10.7694 21.5064 10.7694 21.252C10.7694 20.9976 10.5633 20.79 10.3106 20.79C10.0579 20.79 9.85184 20.9976 9.85184 21.252C9.85184 21.5064 10.0579 21.7139 10.3106 21.7139Z" fill="#404040"/>
|
|
67
|
+
<path d="M9.19009 20.813C8.94994 20.813 8.75638 21.0079 8.75638 21.2497C8.75638 21.4915 8.94994 21.6864 9.19009 21.6864C9.43025 21.6864 9.62381 21.4915 9.62381 21.2497C9.62381 21.0079 9.43025 20.813 9.19009 20.813Z" fill="#404040"/>
|
|
68
|
+
<path d="M8.07052 20.8398C7.8447 20.8398 7.6619 21.0239 7.6619 21.2513C7.6619 21.4786 7.8447 21.6627 8.07052 21.6627C8.29634 21.6627 8.47914 21.4786 8.47914 21.2513C8.47914 21.0239 8.29634 20.8398 8.07052 20.8398Z" fill="#404040"/>
|
|
69
|
+
<path d="M6.95046 20.8652C6.73898 20.8652 6.56693 21.0385 6.56693 21.2514C6.56693 21.4643 6.73898 21.6376 6.95046 21.6376C7.16194 21.6376 7.33399 21.4643 7.33399 21.2514C7.33399 21.0385 7.16194 20.8652 6.95046 20.8652Z" fill="#404040"/>
|
|
70
|
+
<path d="M5.82958 21.6088C6.02655 21.6088 6.18623 21.448 6.18623 21.2497C6.18623 21.0514 6.02655 20.8906 5.82958 20.8906C5.63261 20.8906 5.47293 21.0514 5.47293 21.2497C5.47293 21.448 5.63261 21.6088 5.82958 21.6088Z" fill="#404040"/>
|
|
71
|
+
<path d="M4.70998 20.916C4.52717 20.916 4.37842 21.0658 4.37842 21.2498C4.37842 21.4339 4.52717 21.5837 4.70998 21.5837C4.89278 21.5837 5.04154 21.4339 5.04154 21.2498C5.04154 21.0658 4.89278 20.916 4.70998 20.916Z" fill="#404040"/>
|
|
72
|
+
<path d="M12.5506 20.6096C12.832 20.6096 13.0614 20.3786 13.0614 20.0953C13.0614 19.812 12.832 19.5811 12.5506 19.5811C12.2692 19.5811 12.0398 19.812 12.0398 20.0953C12.0398 20.3786 12.2692 20.6096 12.5506 20.6096Z" fill="#404040"/>
|
|
73
|
+
<path d="M11.431 20.5825C11.6981 20.5825 11.9167 20.3642 11.9167 20.0935C11.9167 19.8228 11.6999 19.6045 11.431 19.6045C11.1622 19.6045 10.9453 19.8228 10.9453 20.0935C10.9453 20.3642 11.1622 20.5825 11.431 20.5825Z" fill="#404040"/>
|
|
74
|
+
<path d="M13.6712 19.4775C13.9671 19.4775 14.207 19.236 14.207 18.938C14.207 18.64 13.9671 18.3984 13.6712 18.3984C13.3752 18.3984 13.1353 18.64 13.1353 18.938C13.1353 19.236 13.3752 19.4775 13.6712 19.4775Z" fill="#404040"/>
|
|
75
|
+
<path d="M12.5506 19.4524C12.832 19.4524 13.0614 19.2214 13.0614 18.9381C13.0614 18.6548 12.832 18.4238 12.5506 18.4238C12.2692 18.4238 12.0398 18.6548 12.0398 18.9381C12.0398 19.2214 12.2692 19.4524 12.5506 19.4524Z" fill="#404040"/>
|
|
76
|
+
<path d="M15.3517 17.7816C15.3517 17.4694 15.1008 17.2168 14.7907 17.2168C14.4807 17.2168 14.2298 17.4694 14.2298 17.7816C14.2298 18.0938 14.4807 18.3464 14.7907 18.3464C15.1008 18.3464 15.3517 18.0938 15.3517 17.7816Z" fill="#404040"/>
|
|
77
|
+
<path d="M13.6712 18.3213C13.9669 18.3213 14.207 18.0795 14.207 17.7817C14.207 17.484 13.9669 17.2422 13.6712 17.2422C13.3754 17.2422 13.1353 17.484 13.1353 17.7817C13.1353 18.0795 13.3754 18.3213 13.6712 18.3213Z" fill="#404040"/>
|
|
78
|
+
<path d="M12.5506 18.2957C12.832 18.2957 13.0614 18.0647 13.0614 17.7814C13.0614 17.4981 12.832 17.2671 12.5506 17.2671C12.2692 17.2671 12.0398 17.4981 12.0398 17.7814C12.0398 18.0647 12.2692 18.2957 12.5506 18.2957Z" fill="#404040"/>
|
|
79
|
+
<path d="M10.3106 13.6182C10.5651 13.6182 10.7694 13.4107 10.7694 13.1563C10.7694 12.9019 10.5633 12.6943 10.3106 12.6943C10.0579 12.6943 9.85184 12.9019 9.85184 13.1563C9.85184 13.4107 10.0579 13.6182 10.3106 13.6182Z" fill="#404040"/>
|
|
80
|
+
<path d="M6.95046 12.7705C6.73898 12.7705 6.56693 12.9437 6.56693 13.1567C6.56693 13.3696 6.73898 13.5428 6.95046 13.5428C7.16194 13.5428 7.33399 13.3696 7.33399 13.1567C7.33399 12.9437 7.16194 12.7705 6.95046 12.7705Z" fill="#404040"/>
|
|
81
|
+
<path d="M5.82958 13.516C6.02655 13.516 6.18623 13.3553 6.18623 13.1569C6.18623 12.9586 6.02655 12.7979 5.82958 12.7979C5.63261 12.7979 5.47293 12.9586 5.47293 13.1569C5.47293 13.3553 5.63261 13.516 5.82958 13.516Z" fill="#404040"/>
|
|
82
|
+
<path d="M3.58992 12.2705C3.42145 12.2705 3.28345 12.4095 3.28345 12.5791C3.28345 12.7487 3.42145 12.8876 3.58992 12.8876C3.75838 12.8876 3.89638 12.7487 3.89638 12.5791C3.89638 12.4095 3.75838 12.2705 3.58992 12.2705Z" fill="#404040"/>
|
|
83
|
+
<path d="M11.431 14.8003C11.6981 14.8003 11.9167 14.582 11.9167 14.3113C11.9167 14.0406 11.6999 13.8223 11.431 13.8223C11.1622 13.8223 10.9453 14.0406 10.9453 14.3113C10.9453 14.582 11.1622 14.8003 11.431 14.8003Z" fill="#404040"/>
|
|
84
|
+
<path d="M10.3106 14.7755C10.5651 14.7755 10.7694 14.568 10.7694 14.3135C10.7694 14.0591 10.5633 13.8516 10.3106 13.8516C10.0579 13.8516 9.85184 14.0591 9.85184 14.3135C9.85184 14.568 10.0579 14.7755 10.3106 14.7755Z" fill="#404040"/>
|
|
85
|
+
<path d="M12.5506 15.9827C12.832 15.9827 13.0614 15.7517 13.0614 15.4684C13.0614 15.1851 12.832 14.9541 12.5506 14.9541C12.2692 14.9541 12.0398 15.1851 12.0398 15.4684C12.0398 15.7517 12.2692 15.9827 12.5506 15.9827Z" fill="#404040"/>
|
|
86
|
+
<path d="M11.431 15.9575C11.6981 15.9575 11.9167 15.7392 11.9167 15.4685C11.9167 15.1978 11.6999 14.9795 11.431 14.9795C11.1622 14.9795 10.9453 15.1978 10.9453 15.4685C10.9453 15.7392 11.1622 15.9575 11.431 15.9575Z" fill="#404040"/>
|
|
87
|
+
<path d="M10.3106 15.9317C10.5651 15.9317 10.7694 15.7242 10.7694 15.4698C10.7694 15.2153 10.5633 15.0078 10.3106 15.0078C10.0579 15.0078 9.85184 15.2153 9.85184 15.4698C9.85184 15.7242 10.0579 15.9317 10.3106 15.9317Z" fill="#404040"/>
|
|
88
|
+
<path d="M13.6712 17.1645C13.9671 17.1645 14.207 16.923 14.207 16.625C14.207 16.327 13.9671 16.0854 13.6712 16.0854C13.3752 16.0854 13.1353 16.327 13.1353 16.625C13.1353 16.923 13.3752 17.1645 13.6712 17.1645Z" fill="#404040"/>
|
|
89
|
+
<path d="M12.5506 17.1389C12.832 17.1389 13.0614 16.9079 13.0614 16.6246C13.0614 16.3413 12.832 16.1104 12.5506 16.1104C12.2692 16.1104 12.0398 16.3413 12.0398 16.6246C12.0398 16.9079 12.2692 17.1389 12.5506 17.1389Z" fill="#404040"/>
|
|
90
|
+
<path d="M11.431 17.1138C11.6981 17.1138 11.9167 16.8954 11.9167 16.6248C11.9167 16.3541 11.6999 16.1357 11.431 16.1357C11.1622 16.1357 10.9453 16.3541 10.9453 16.6248C10.9453 16.8954 11.1622 17.1138 11.431 17.1138Z" fill="#404040"/>
|
|
91
|
+
<path d="M9.19009 9.25C8.94994 9.25 8.75638 9.44489 8.75638 9.68669C8.75638 9.92849 8.94994 10.1234 9.19009 10.1234C9.43025 10.1234 9.62381 9.92849 9.62381 9.68669C9.62381 9.44489 9.43025 9.25 9.19009 9.25Z" fill="#404040"/>
|
|
92
|
+
<path d="M9.19009 11.5635C8.94994 11.5635 8.75638 11.7584 8.75638 12.0002C8.75638 12.242 8.94994 12.4369 9.19009 12.4369C9.43025 12.4369 9.62381 12.242 9.62381 12.0002C9.62381 11.7584 9.43025 11.5635 9.19009 11.5635Z" fill="#404040"/>
|
|
93
|
+
<path d="M9.19009 12.7197C8.94994 12.7197 8.75638 12.9146 8.75638 13.1564C8.75638 13.3982 8.94994 13.5931 9.19009 13.5931C9.43025 13.5931 9.62381 13.3982 9.62381 13.1564C9.62381 12.9146 9.43025 12.7197 9.19009 12.7197Z" fill="#404040"/>
|
|
94
|
+
<path d="M9.19009 13.877C8.94994 13.877 8.75638 14.0718 8.75638 14.3136C8.75638 14.5554 8.94994 14.7503 9.19009 14.7503C9.43025 14.7503 9.62381 14.5554 9.62381 14.3136C9.62381 14.0718 9.43025 13.877 9.19009 13.877Z" fill="#404040"/>
|
|
95
|
+
<path d="M9.19009 10.4062C8.94994 10.4062 8.75638 10.6011 8.75638 10.8429C8.75638 11.0847 8.94994 11.2796 9.19009 11.2796C9.43025 11.2796 9.62381 11.0847 9.62381 10.8429C9.62381 10.6011 9.43025 10.4062 9.19009 10.4062Z" fill="#404040"/>
|
|
96
|
+
<path d="M8.07052 9.85449C7.8447 9.85449 7.6619 10.0386 7.6619 10.2659C7.6619 10.4933 7.8447 10.6773 8.07052 10.6773C8.29634 10.6773 8.47914 10.4933 8.47914 10.2659C8.47914 10.0386 8.29634 9.85449 8.07052 9.85449Z" fill="#404040"/>
|
|
97
|
+
<path d="M8.07052 12.168C7.8447 12.168 7.6619 12.352 7.6619 12.5794C7.6619 12.8068 7.8447 12.9908 8.07052 12.9908C8.29634 12.9908 8.47914 12.8068 8.47914 12.5794C8.47914 12.352 8.29634 12.168 8.07052 12.168Z" fill="#404040"/>
|
|
98
|
+
<path d="M8.07052 13.3228C7.8447 13.3228 7.6619 13.5068 7.6619 13.7342C7.6619 13.9615 7.8447 14.1456 8.07052 14.1456C8.29634 14.1456 8.47914 13.9615 8.47914 13.7342C8.47914 13.5068 8.29634 13.3228 8.07052 13.3228Z" fill="#404040"/>
|
|
99
|
+
<path d="M8.07052 11.0107C7.8447 11.0107 7.6619 11.1948 7.6619 11.4222C7.6619 11.507 7.68699 11.5864 7.73179 11.6513C7.80527 11.7614 7.92894 11.8318 8.07052 11.8318C8.2121 11.8318 8.33577 11.7596 8.40925 11.6513C8.45405 11.5864 8.47914 11.507 8.47914 11.4222C8.47914 11.1948 8.29634 11.0107 8.07052 11.0107Z" fill="#404040"/>
|
|
100
|
+
<path d="M7.02752 11.6225C7.00243 11.617 6.97734 11.6152 6.95046 11.6152C6.92357 11.6152 6.89848 11.617 6.87339 11.6225C6.69955 11.6585 6.56693 11.8137 6.56693 11.9996C6.56693 12.1855 6.69775 12.3406 6.87339 12.3767C6.89848 12.3821 6.92357 12.384 6.95046 12.384C6.97734 12.384 7.00243 12.3821 7.02752 12.3767C7.20137 12.3406 7.33399 12.1855 7.33399 11.9996C7.33399 11.8137 7.20316 11.6585 7.02752 11.6225Z" fill="#404040"/>
|
|
101
|
+
<path d="M6.03064 11.702C5.97328 11.6623 5.90518 11.6406 5.82991 11.6406C5.75464 11.6406 5.68653 11.6641 5.62918 11.702C5.53419 11.7669 5.47147 11.877 5.47147 11.9997C5.47147 12.099 5.5109 12.1892 5.57541 12.2542C5.63993 12.3191 5.72954 12.3588 5.82811 12.3588C5.92669 12.3588 6.0163 12.3191 6.08082 12.2542C6.14534 12.1892 6.18477 12.099 6.18477 11.9997C6.18477 11.8752 6.12204 11.7651 6.02705 11.702H6.03064Z" fill="#404040"/>
|
|
102
|
+
<path d="M4.70998 12.2432C4.52717 12.2432 4.37842 12.3929 4.37842 12.577C4.37842 12.7611 4.52717 12.9108 4.70998 12.9108C4.89278 12.9108 5.04154 12.7611 5.04154 12.577C5.04154 12.3929 4.89278 12.2432 4.70998 12.2432Z" fill="#404040"/>
|
|
103
|
+
<path d="M4.71034 11.0889C4.59563 11.0889 4.49527 11.1466 4.43433 11.2368C4.39849 11.291 4.37698 11.3541 4.37698 11.4245C4.37698 11.6086 4.52574 11.7583 4.70854 11.7583C4.89135 11.7583 5.0401 11.6086 5.0401 11.4245C5.0401 11.3559 5.01859 11.291 4.98275 11.2368C4.92361 11.1484 4.82145 11.0889 4.70675 11.0889H4.71034Z" fill="#404040"/>
|
|
104
|
+
<path d="M1.60072 11.9474C1.59713 11.9312 1.59176 11.9149 1.58638 11.8987C1.57383 11.868 1.55412 11.8409 1.53082 11.8175C1.48422 11.7706 1.4215 11.7417 1.34981 11.7417C1.27812 11.7417 1.21539 11.7706 1.16879 11.8175C1.14549 11.8409 1.12757 11.868 1.11324 11.8987C1.10607 11.9149 1.10248 11.9294 1.0989 11.9474C1.09531 11.9655 1.09352 11.9817 1.09352 11.9997C1.09352 12.0178 1.09352 12.034 1.0989 12.0521C1.10248 12.0683 1.10786 12.0846 1.11324 12.1008C1.15266 12.1928 1.24227 12.2578 1.34801 12.2578C1.45376 12.2578 1.54516 12.1928 1.58279 12.1008C1.58996 12.0846 1.59355 12.0701 1.59713 12.0521C1.60072 12.0358 1.60251 12.0178 1.60251 11.9997C1.60251 11.9817 1.60072 11.9655 1.59713 11.9474H1.60072Z" fill="#404040"/>
|
|
105
|
+
<path d="M0.229419 11.769C0.102172 11.769 1.52588e-05 11.8719 1.52588e-05 12C1.52588e-05 12.1281 0.102172 12.231 0.229419 12.231C0.356666 12.231 0.458822 12.1281 0.458822 12C0.458822 11.8719 0.356666 11.769 0.229419 11.769Z" fill="#404040"/>
|
|
106
|
+
<path d="M2.46937 12.2959C2.31344 12.2959 2.18799 12.4222 2.18799 12.5792C2.18799 12.7362 2.31344 12.8625 2.46937 12.8625C2.62529 12.8625 2.75074 12.7362 2.75074 12.5792C2.75074 12.4222 2.62529 12.2959 2.46937 12.2959Z" fill="#404040"/>
|
|
107
|
+
<path d="M13.3248 12C16.6153 12 19.2839 9.31305 19.2839 5.99998C19.2839 2.68691 16.6171 0 13.3248 0H9.65253L15.8787 6.21832L10.1633 12L15.8787 17.7816L9.65253 23.9999H13.3248C16.6153 23.9999 19.2839 21.313 19.2839 17.9999C19.2839 14.6869 16.6153 12 13.3248 12Z" fill="url(#paint0_linear_10849_9290)"/>
|
|
108
|
+
<path d="M18.5258 14.725L24.001 12.0002L18.5258 9.27539V14.725Z" fill="url(#paint1_linear_10849_9290)"/>
|
|
109
|
+
<path d="M9.19009 0C8.94994 0 8.75638 0.194886 8.75638 0.43669C8.75638 0.678494 8.94994 0.87338 9.19009 0.87338C9.43025 0.87338 9.62381 0.678494 9.62381 0.43669C9.62381 0.194886 9.43025 0 9.19009 0Z" fill="url(#paint2_linear_10849_9290)"/>
|
|
110
|
+
<path d="M8.07052 0.0253906C7.8447 0.0253906 7.6619 0.20945 7.6619 0.436818C7.6619 0.664185 7.8447 0.848245 8.07052 0.848245C8.29634 0.848245 8.47914 0.664185 8.47914 0.436818C8.47914 0.20945 8.29634 0.0253906 8.07052 0.0253906Z" fill="url(#paint3_linear_10849_9290)"/>
|
|
111
|
+
<path d="M6.95046 0.0507812C6.73898 0.0507812 6.56693 0.224014 6.56693 0.436945C6.56693 0.649877 6.73898 0.823109 6.95046 0.823109C7.16194 0.823109 7.33399 0.649877 7.33399 0.436945C7.33399 0.224014 7.16194 0.0507812 6.95046 0.0507812Z" fill="url(#paint4_linear_10849_9290)"/>
|
|
112
|
+
<path d="M5.82958 0.0776367C5.63244 0.0776367 5.47293 0.238238 5.47293 0.436733C5.47293 0.635229 5.63244 0.795829 5.82958 0.795829C6.02673 0.795829 6.18623 0.635229 6.18623 0.436733C6.18623 0.238238 6.02673 0.0776367 5.82958 0.0776367Z" fill="url(#paint5_linear_10849_9290)"/>
|
|
113
|
+
<path d="M4.70998 0.102539C4.52717 0.102539 4.37842 0.252313 4.37842 0.436372C4.37842 0.620432 4.52717 0.770206 4.70998 0.770206C4.89278 0.770206 5.04154 0.620432 5.04154 0.436372C5.04154 0.252313 4.89278 0.102539 4.70998 0.102539Z" fill="url(#paint6_linear_10849_9290)"/>
|
|
114
|
+
<path d="M3.58992 0.12793C3.42145 0.12793 3.28345 0.266877 3.28345 0.4365C3.28345 0.606123 3.42145 0.74507 3.58992 0.74507C3.75838 0.74507 3.89638 0.606123 3.89638 0.4365C3.89638 0.266877 3.75838 0.12793 3.58992 0.12793Z" fill="url(#paint7_linear_10849_9290)"/>
|
|
115
|
+
<path d="M2.46937 0.15332C2.31344 0.15332 2.18799 0.279636 2.18799 0.436627C2.18799 0.593619 2.31344 0.719935 2.46937 0.719935C2.62529 0.719935 2.75074 0.593619 2.75074 0.436627C2.75074 0.279636 2.62529 0.15332 2.46937 0.15332Z" fill="url(#paint8_linear_10849_9290)"/>
|
|
116
|
+
<path d="M1.34947 0.180664C1.20788 0.180664 1.09497 0.296152 1.09497 0.436904C1.09497 0.577655 1.20967 0.693143 1.34947 0.693143C1.48926 0.693143 1.60396 0.577655 1.60396 0.436904C1.60396 0.296152 1.48926 0.180664 1.34947 0.180664Z" fill="url(#paint9_linear_10849_9290)"/>
|
|
117
|
+
<path d="M0.229419 0.66752C0.356115 0.66752 0.458822 0.564108 0.458822 0.436543C0.458822 0.308978 0.356115 0.205566 0.229419 0.205566C0.102724 0.205566 1.52588e-05 0.308978 1.52588e-05 0.436543C1.52588e-05 0.564108 0.102724 0.66752 0.229419 0.66752Z" fill="url(#paint10_linear_10849_9290)"/>
|
|
118
|
+
<path d="M10.3106 2.05525C10.5651 2.05525 10.7694 1.84774 10.7694 1.5933C10.7694 1.33887 10.5633 1.13135 10.3106 1.13135C10.0579 1.13135 9.85184 1.33887 9.85184 1.5933C9.85184 1.84774 10.0579 2.05525 10.3106 2.05525Z" fill="url(#paint11_linear_10849_9290)"/>
|
|
119
|
+
<path d="M9.19009 1.15674C8.94994 1.15674 8.75638 1.35162 8.75638 1.59343C8.75638 1.83523 8.94994 2.03012 9.19009 2.03012C9.43025 2.03012 9.62381 1.83523 9.62381 1.59343C9.62381 1.35162 9.43025 1.15674 9.19009 1.15674Z" fill="url(#paint12_linear_10849_9290)"/>
|
|
120
|
+
<path d="M8.07052 1.18164C7.8447 1.18164 7.6619 1.3657 7.6619 1.59307C7.6619 1.82044 7.8447 2.00449 8.07052 2.00449C8.29634 2.00449 8.47914 1.82044 8.47914 1.59307C8.47914 1.3657 8.29634 1.18164 8.07052 1.18164Z" fill="url(#paint13_linear_10849_9290)"/>
|
|
121
|
+
<path d="M6.95046 1.20703C6.73898 1.20703 6.56693 1.38026 6.56693 1.5932C6.56693 1.80613 6.73898 1.97936 6.95046 1.97936C7.16194 1.97936 7.33399 1.80613 7.33399 1.5932C7.33399 1.38026 7.16194 1.20703 6.95046 1.20703Z" fill="url(#paint14_linear_10849_9290)"/>
|
|
122
|
+
<path d="M5.82958 1.23438C5.63244 1.23438 5.47293 1.39498 5.47293 1.59347C5.47293 1.79197 5.63244 1.95257 5.82958 1.95257C6.02673 1.95257 6.18623 1.79197 6.18623 1.59347C6.18623 1.39498 6.02673 1.23438 5.82958 1.23438Z" fill="url(#paint15_linear_10849_9290)"/>
|
|
123
|
+
<path d="M4.70998 1.25977C4.52717 1.25977 4.37842 1.40954 4.37842 1.5936C4.37842 1.77766 4.52717 1.92743 4.70998 1.92743C4.89278 1.92743 5.04154 1.77766 5.04154 1.5936C5.04154 1.40954 4.89278 1.25977 4.70998 1.25977Z" fill="url(#paint16_linear_10849_9290)"/>
|
|
124
|
+
<path d="M3.58992 1.9023C3.75917 1.9023 3.89638 1.76415 3.89638 1.59373C3.89638 1.42331 3.75917 1.28516 3.58992 1.28516C3.42066 1.28516 3.28345 1.42331 3.28345 1.59373C3.28345 1.76415 3.42066 1.9023 3.58992 1.9023Z" fill="url(#paint17_linear_10849_9290)"/>
|
|
125
|
+
<path d="M2.46937 1.87667C2.62477 1.87667 2.75074 1.74983 2.75074 1.59337C2.75074 1.4369 2.62477 1.31006 2.46937 1.31006C2.31397 1.31006 2.18799 1.4369 2.18799 1.59337C2.18799 1.74983 2.31397 1.87667 2.46937 1.87667Z" fill="url(#paint18_linear_10849_9290)"/>
|
|
126
|
+
<path d="M11.431 3.23683C11.6981 3.23683 11.9167 3.01849 11.9167 2.74781C11.9167 2.47713 11.6999 2.25879 11.431 2.25879C11.1622 2.25879 10.9453 2.47713 10.9453 2.74781C10.9453 3.01849 11.1622 3.23683 11.431 3.23683Z" fill="url(#paint19_linear_10849_9290)"/>
|
|
127
|
+
<path d="M10.3106 3.21199C10.5651 3.21199 10.7694 3.00447 10.7694 2.75004C10.7694 2.4956 10.5633 2.28809 10.3106 2.28809C10.0579 2.28809 9.85184 2.4956 9.85184 2.75004C9.85184 3.00447 10.0579 3.21199 10.3106 3.21199Z" fill="url(#paint20_linear_10849_9290)"/>
|
|
128
|
+
<path d="M9.19009 2.31348C8.94994 2.31348 8.75638 2.50836 8.75638 2.75017C8.75638 2.99197 8.94994 3.18686 9.19009 3.18686C9.43025 3.18686 9.62381 2.99197 9.62381 2.75017C9.62381 2.50836 9.43025 2.31348 9.19009 2.31348Z" fill="url(#paint21_linear_10849_9290)"/>
|
|
129
|
+
<path d="M8.07052 3.16172C8.2962 3.16172 8.47914 2.97752 8.47914 2.75029C8.47914 2.52307 8.2962 2.33887 8.07052 2.33887C7.84484 2.33887 7.6619 2.52307 7.6619 2.75029C7.6619 2.97752 7.84484 3.16172 8.07052 3.16172Z" fill="url(#paint22_linear_10849_9290)"/>
|
|
130
|
+
<path d="M6.95046 2.36377C6.73898 2.36377 6.56693 2.537 6.56693 2.74993C6.56693 2.96286 6.73898 3.1361 6.95046 3.1361C7.16194 3.1361 7.33399 2.96286 7.33399 2.74993C7.33399 2.537 7.16194 2.36377 6.95046 2.36377Z" fill="url(#paint23_linear_10849_9290)"/>
|
|
131
|
+
<path d="M5.82958 3.10882C6.02655 3.10882 6.18623 2.94804 6.18623 2.74972C6.18623 2.5514 6.02655 2.39062 5.82958 2.39062C5.63261 2.39062 5.47293 2.5514 5.47293 2.74972C5.47293 2.94804 5.63261 3.10882 5.82958 3.10882Z" fill="url(#paint24_linear_10849_9290)"/>
|
|
132
|
+
<path d="M4.70998 2.41602C4.52717 2.41602 4.37842 2.56579 4.37842 2.74985C4.37842 2.93391 4.52717 3.08368 4.70998 3.08368C4.89278 3.08368 5.04154 2.93391 5.04154 2.74985C5.04154 2.56579 4.89278 2.41602 4.70998 2.41602Z" fill="url(#paint25_linear_10849_9290)"/>
|
|
133
|
+
<path d="M12.5506 4.41919C12.832 4.41919 13.0614 4.18822 13.0614 3.90491C13.0614 3.6216 12.832 3.39062 12.5506 3.39062C12.2692 3.39062 12.0398 3.6216 12.0398 3.90491C12.0398 4.18822 12.2692 4.41919 12.5506 4.41919Z" fill="url(#paint26_linear_10849_9290)"/>
|
|
134
|
+
<path d="M11.431 4.39406C11.6981 4.39406 11.9167 4.17571 11.9167 3.90504C11.9167 3.63436 11.6999 3.41602 11.431 3.41602C11.1622 3.41602 10.9453 3.63436 10.9453 3.90504C10.9453 4.17571 11.1622 4.39406 11.431 4.39406Z" fill="url(#paint27_linear_10849_9290)"/>
|
|
135
|
+
<path d="M13.6712 5.60155C13.9669 5.60155 14.207 5.35975 14.207 5.06201C14.207 4.76426 13.9669 4.52246 13.6712 4.52246C13.3754 4.52246 13.1353 4.76426 13.1353 5.06201C13.1353 5.35975 13.3754 5.60155 13.6712 5.60155Z" fill="url(#paint28_linear_10849_9290)"/>
|
|
136
|
+
<path d="M12.5506 5.57544C12.832 5.57544 13.0614 5.34447 13.0614 5.06116C13.0614 4.77785 12.832 4.54688 12.5506 4.54688C12.2692 4.54688 12.0398 4.77785 12.0398 5.06116C12.0398 5.34447 12.2692 5.57544 12.5506 5.57544Z" fill="url(#paint29_linear_10849_9290)"/>
|
|
137
|
+
<path d="M15.3517 6.21813C15.3517 5.90595 15.1008 5.65332 14.7907 5.65332C14.4807 5.65332 14.2298 5.90595 14.2298 6.21813C14.2298 6.53031 14.4807 6.78294 14.7907 6.78294C15.1008 6.78294 15.3517 6.53031 15.3517 6.21813Z" fill="url(#paint30_linear_10849_9290)"/>
|
|
138
|
+
<path d="M13.6712 6.7578C13.9671 6.7578 14.207 6.51624 14.207 6.21826C14.207 5.92027 13.9671 5.67871 13.6712 5.67871C13.3752 5.67871 13.1353 5.92027 13.1353 6.21826C13.1353 6.51624 13.3752 6.7578 13.6712 6.7578Z" fill="url(#paint31_linear_10849_9290)"/>
|
|
139
|
+
<path d="M12.5506 6.73267C12.832 6.73267 13.0614 6.50169 13.0614 6.21839C13.0614 5.93508 12.832 5.7041 12.5506 5.7041C12.2692 5.7041 12.0398 5.93508 12.0398 6.21839C12.0398 6.50169 12.2692 6.73267 12.5506 6.73267Z" fill="url(#paint32_linear_10849_9290)"/>
|
|
140
|
+
<path d="M10.3106 11.3067C10.5651 11.3067 10.7694 11.0992 10.7694 10.8448C10.7694 10.5903 10.5633 10.3828 10.3106 10.3828C10.0579 10.3828 9.85184 10.5903 9.85184 10.8448C9.85184 11.0992 10.0579 11.3067 10.3106 11.3067Z" fill="url(#paint33_linear_10849_9290)"/>
|
|
141
|
+
<path d="M6.95046 10.459C6.73898 10.459 6.56693 10.6322 6.56693 10.8451C6.56693 11.0581 6.73898 11.2313 6.95046 11.2313C7.16194 11.2313 7.33399 11.0581 7.33399 10.8451C7.33399 10.6322 7.16194 10.459 6.95046 10.459Z" fill="url(#paint34_linear_10849_9290)"/>
|
|
142
|
+
<path d="M5.82958 10.4844C5.63244 10.4844 5.47293 10.645 5.47293 10.8435C5.47293 11.042 5.63244 11.2026 5.82958 11.2026C6.02673 11.2026 6.18623 11.042 6.18623 10.8435C6.18623 10.645 6.02673 10.4844 5.82958 10.4844Z" fill="url(#paint35_linear_10849_9290)"/>
|
|
143
|
+
<path d="M3.58992 11.7314C3.75917 11.7314 3.89638 11.5932 3.89638 11.4228C3.89638 11.2524 3.75917 11.1143 3.58992 11.1143C3.42066 11.1143 3.28345 11.2524 3.28345 11.4228C3.28345 11.5932 3.42066 11.7314 3.58992 11.7314Z" fill="url(#paint36_linear_10849_9290)"/>
|
|
144
|
+
<path d="M2.46937 11.7058C2.62477 11.7058 2.75074 11.5789 2.75074 11.4225C2.75074 11.266 2.62477 11.1392 2.46937 11.1392C2.31397 11.1392 2.18799 11.266 2.18799 11.4225C2.18799 11.5789 2.31397 11.7058 2.46937 11.7058Z" fill="url(#paint37_linear_10849_9290)"/>
|
|
145
|
+
<path d="M11.431 10.1753C11.6981 10.1753 11.9167 9.95696 11.9167 9.68629C11.9167 9.41561 11.6999 9.19727 11.431 9.19727C11.1622 9.19727 10.9453 9.41561 10.9453 9.68629C10.9453 9.95696 11.1622 10.1753 11.431 10.1753Z" fill="url(#paint38_linear_10849_9290)"/>
|
|
146
|
+
<path d="M10.3106 10.1505C10.5651 10.1505 10.7694 9.94295 10.7694 9.68852C10.7694 9.43408 10.5633 9.22656 10.3106 9.22656C10.0579 9.22656 9.85184 9.43408 9.85184 9.68852C9.85184 9.94295 10.0579 10.1505 10.3106 10.1505Z" fill="url(#paint39_linear_10849_9290)"/>
|
|
147
|
+
<path d="M12.5506 9.04615C12.832 9.04615 13.0614 8.81517 13.0614 8.53186C13.0614 8.24855 12.832 8.01758 12.5506 8.01758C12.2692 8.01758 12.0398 8.24855 12.0398 8.53186C12.0398 8.81517 12.2692 9.04615 12.5506 9.04615Z" fill="url(#paint40_linear_10849_9290)"/>
|
|
148
|
+
<path d="M11.431 9.01906C11.6981 9.01906 11.9167 8.80071 11.9167 8.53004C11.9167 8.25936 11.6999 8.04102 11.431 8.04102C11.1622 8.04102 10.9453 8.25936 10.9453 8.53004C10.9453 8.80071 11.1622 9.01906 11.431 9.01906Z" fill="url(#paint41_linear_10849_9290)"/>
|
|
149
|
+
<path d="M10.3106 8.99373C10.5651 8.99373 10.7694 8.78621 10.7694 8.53178C10.7694 8.27734 10.5633 8.06982 10.3106 8.06982C10.0579 8.06982 9.85184 8.27734 9.85184 8.53178C9.85184 8.78621 10.0579 8.99373 10.3106 8.99373Z" fill="url(#paint42_linear_10849_9290)"/>
|
|
150
|
+
<path d="M13.6712 7.91454C13.9669 7.91454 14.207 7.67274 14.207 7.375C14.207 7.07725 13.9669 6.83545 13.6712 6.83545C13.3754 6.83545 13.1353 7.07725 13.1353 7.375C13.1353 7.67274 13.3754 7.91454 13.6712 7.91454Z" fill="url(#paint43_linear_10849_9290)"/>
|
|
151
|
+
<path d="M12.5506 7.88941C12.832 7.88941 13.0614 7.65843 13.0614 7.37512C13.0614 7.09182 12.832 6.86084 12.5506 6.86084C12.2692 6.86084 12.0398 7.09182 12.0398 7.37512C12.0398 7.65843 12.2692 7.88941 12.5506 7.88941Z" fill="url(#paint44_linear_10849_9290)"/>
|
|
152
|
+
<path d="M11.431 7.86378C11.6981 7.86378 11.9167 7.64544 11.9167 7.37476C11.9167 7.10409 11.6999 6.88574 11.431 6.88574C11.1622 6.88574 10.9453 7.10409 10.9453 7.37476C10.9453 7.64544 11.1622 7.86378 11.431 7.86378Z" fill="url(#paint45_linear_10849_9290)"/>
|
|
153
|
+
<path d="M9.19009 23.1265C8.94994 23.1265 8.75638 23.3214 8.75638 23.5632C8.75638 23.805 8.94994 23.9998 9.19009 23.9998C9.43025 23.9998 9.62381 23.805 9.62381 23.5632C9.62381 23.3214 9.43025 23.1265 9.19009 23.1265Z" fill="url(#paint46_linear_10849_9290)"/>
|
|
154
|
+
<path d="M8.07052 23.9747C8.2962 23.9747 8.47914 23.7905 8.47914 23.5633C8.47914 23.3361 8.2962 23.1519 8.07052 23.1519C7.84484 23.1519 7.6619 23.3361 7.6619 23.5633C7.6619 23.7905 7.84484 23.9747 8.07052 23.9747Z" fill="url(#paint47_linear_10849_9290)"/>
|
|
155
|
+
<path d="M6.95046 23.1768C6.73898 23.1768 6.56693 23.35 6.56693 23.5629C6.56693 23.7759 6.73898 23.9491 6.95046 23.9491C7.16194 23.9491 7.33399 23.7759 7.33399 23.5629C7.33399 23.35 7.16194 23.1768 6.95046 23.1768Z" fill="url(#paint48_linear_10849_9290)"/>
|
|
156
|
+
<path d="M5.82958 23.9223C6.02655 23.9223 6.18623 23.7615 6.18623 23.5632C6.18623 23.3649 6.02655 23.2041 5.82958 23.2041C5.63261 23.2041 5.47293 23.3649 5.47293 23.5632C5.47293 23.7615 5.63261 23.9223 5.82958 23.9223Z" fill="url(#paint49_linear_10849_9290)"/>
|
|
157
|
+
<path d="M4.70998 23.2295C4.52717 23.2295 4.37842 23.3793 4.37842 23.5633C4.37842 23.7474 4.52717 23.8972 4.70998 23.8972C4.89278 23.8972 5.04154 23.7474 5.04154 23.5633C5.04154 23.3793 4.89278 23.2295 4.70998 23.2295Z" fill="url(#paint50_linear_10849_9290)"/>
|
|
158
|
+
<path d="M3.58992 23.872C3.75917 23.872 3.89638 23.7339 3.89638 23.5635C3.89638 23.393 3.75917 23.2549 3.58992 23.2549C3.42066 23.2549 3.28345 23.393 3.28345 23.5635C3.28345 23.7339 3.42066 23.872 3.58992 23.872Z" fill="url(#paint51_linear_10849_9290)"/>
|
|
159
|
+
<path d="M2.46937 23.8469C2.62477 23.8469 2.75074 23.72 2.75074 23.5636C2.75074 23.4071 2.62477 23.2803 2.46937 23.2803C2.31397 23.2803 2.18799 23.4071 2.18799 23.5636C2.18799 23.72 2.31397 23.8469 2.46937 23.8469Z" fill="url(#paint52_linear_10849_9290)"/>
|
|
160
|
+
<path d="M1.34947 23.8191C1.49002 23.8191 1.60396 23.7044 1.60396 23.5629C1.60396 23.4214 1.49002 23.3066 1.34947 23.3066C1.20891 23.3066 1.09497 23.4214 1.09497 23.5629C1.09497 23.7044 1.20891 23.8191 1.34947 23.8191Z" fill="url(#paint53_linear_10849_9290)"/>
|
|
161
|
+
<path d="M0.229419 23.7945C0.356115 23.7945 0.458822 23.6911 0.458822 23.5635C0.458822 23.4359 0.356115 23.3325 0.229419 23.3325C0.102724 23.3325 1.52588e-05 23.4359 1.52588e-05 23.5635C1.52588e-05 23.6911 0.102724 23.7945 0.229419 23.7945Z" fill="url(#paint54_linear_10849_9290)"/>
|
|
162
|
+
<path d="M10.3106 22.8702C10.5651 22.8702 10.7694 22.6627 10.7694 22.4082C10.7694 22.1538 10.5633 21.9463 10.3106 21.9463C10.0579 21.9463 9.85184 22.1538 9.85184 22.4082C9.85184 22.6627 10.0579 22.8702 10.3106 22.8702Z" fill="url(#paint55_linear_10849_9290)"/>
|
|
163
|
+
<path d="M9.19009 21.9697C8.94994 21.9697 8.75638 22.1646 8.75638 22.4064C8.75638 22.6482 8.94994 22.8431 9.19009 22.8431C9.43025 22.8431 9.62381 22.6482 9.62381 22.4064C9.62381 22.1646 9.43025 21.9697 9.19009 21.9697Z" fill="url(#paint56_linear_10849_9290)"/>
|
|
164
|
+
<path d="M8.07052 22.818C8.2962 22.818 8.47914 22.6338 8.47914 22.4065C8.47914 22.1793 8.2962 21.9951 8.07052 21.9951C7.84484 21.9951 7.6619 22.1793 7.6619 22.4065C7.6619 22.6338 7.84484 22.818 8.07052 22.818Z" fill="url(#paint57_linear_10849_9290)"/>
|
|
165
|
+
<path d="M6.95046 22.0225C6.73898 22.0225 6.56693 22.1957 6.56693 22.4086C6.56693 22.6216 6.73898 22.7948 6.95046 22.7948C7.16194 22.7948 7.33399 22.6216 7.33399 22.4086C7.33399 22.1957 7.16194 22.0225 6.95046 22.0225Z" fill="url(#paint58_linear_10849_9290)"/>
|
|
166
|
+
<path d="M5.82958 22.0479C5.63244 22.0479 5.47293 22.2085 5.47293 22.4069C5.47293 22.6054 5.63244 22.766 5.82958 22.766C6.02673 22.766 6.18623 22.6054 6.18623 22.4069C6.18623 22.2085 6.02673 22.0479 5.82958 22.0479Z" fill="url(#paint59_linear_10849_9290)"/>
|
|
167
|
+
<path d="M4.70998 22.0723C4.52717 22.0723 4.37842 22.222 4.37842 22.4061C4.37842 22.5902 4.52717 22.7399 4.70998 22.7399C4.89278 22.7399 5.04154 22.5902 5.04154 22.4061C5.04154 22.222 4.89278 22.0723 4.70998 22.0723Z" fill="url(#paint60_linear_10849_9290)"/>
|
|
168
|
+
<path d="M3.58992 22.0977C3.42145 22.0977 3.28345 22.2366 3.28345 22.4062C3.28345 22.5758 3.42145 22.7148 3.58992 22.7148C3.75838 22.7148 3.89638 22.5758 3.89638 22.4062C3.89638 22.2366 3.75838 22.0977 3.58992 22.0977Z" fill="url(#paint61_linear_10849_9290)"/>
|
|
169
|
+
<path d="M2.46937 22.6897C2.62477 22.6897 2.75074 22.5628 2.75074 22.4064C2.75074 22.2499 2.62477 22.123 2.46937 22.123C2.31397 22.123 2.18799 22.2499 2.18799 22.4064C2.18799 22.5628 2.31397 22.6897 2.46937 22.6897Z" fill="url(#paint62_linear_10849_9290)"/>
|
|
170
|
+
<path d="M11.431 21.7388C11.6981 21.7388 11.9167 21.5204 11.9167 21.2498C11.9167 20.9791 11.6999 20.7607 11.431 20.7607C11.1622 20.7607 10.9453 20.9791 10.9453 21.2498C10.9453 21.5204 11.1622 21.7388 11.431 21.7388Z" fill="url(#paint63_linear_10849_9290)"/>
|
|
171
|
+
<path d="M10.3106 21.7139C10.5651 21.7139 10.7694 21.5064 10.7694 21.252C10.7694 20.9976 10.5633 20.79 10.3106 20.79C10.0579 20.79 9.85184 20.9976 9.85184 21.252C9.85184 21.5064 10.0579 21.7139 10.3106 21.7139Z" fill="url(#paint64_linear_10849_9290)"/>
|
|
172
|
+
<path d="M9.19009 20.813C8.94994 20.813 8.75638 21.0079 8.75638 21.2497C8.75638 21.4915 8.94994 21.6864 9.19009 21.6864C9.43025 21.6864 9.62381 21.4915 9.62381 21.2497C9.62381 21.0079 9.43025 20.813 9.19009 20.813Z" fill="url(#paint65_linear_10849_9290)"/>
|
|
173
|
+
<path d="M8.07052 20.8398C7.8447 20.8398 7.6619 21.0239 7.6619 21.2513C7.6619 21.4786 7.8447 21.6627 8.07052 21.6627C8.29634 21.6627 8.47914 21.4786 8.47914 21.2513C8.47914 21.0239 8.29634 20.8398 8.07052 20.8398Z" fill="url(#paint66_linear_10849_9290)"/>
|
|
174
|
+
<path d="M6.95046 20.8652C6.73898 20.8652 6.56693 21.0385 6.56693 21.2514C6.56693 21.4643 6.73898 21.6376 6.95046 21.6376C7.16194 21.6376 7.33399 21.4643 7.33399 21.2514C7.33399 21.0385 7.16194 20.8652 6.95046 20.8652Z" fill="url(#paint67_linear_10849_9290)"/>
|
|
175
|
+
<path d="M5.82958 21.6088C6.02655 21.6088 6.18623 21.448 6.18623 21.2497C6.18623 21.0514 6.02655 20.8906 5.82958 20.8906C5.63261 20.8906 5.47293 21.0514 5.47293 21.2497C5.47293 21.448 5.63261 21.6088 5.82958 21.6088Z" fill="url(#paint68_linear_10849_9290)"/>
|
|
176
|
+
<path d="M4.70998 20.916C4.52717 20.916 4.37842 21.0658 4.37842 21.2498C4.37842 21.4339 4.52717 21.5837 4.70998 21.5837C4.89278 21.5837 5.04154 21.4339 5.04154 21.2498C5.04154 21.0658 4.89278 20.916 4.70998 20.916Z" fill="url(#paint69_linear_10849_9290)"/>
|
|
177
|
+
<path d="M12.5506 20.6096C12.832 20.6096 13.0614 20.3786 13.0614 20.0953C13.0614 19.812 12.832 19.5811 12.5506 19.5811C12.2692 19.5811 12.0398 19.812 12.0398 20.0953C12.0398 20.3786 12.2692 20.6096 12.5506 20.6096Z" fill="url(#paint70_linear_10849_9290)"/>
|
|
178
|
+
<path d="M11.431 20.5825C11.6981 20.5825 11.9167 20.3642 11.9167 20.0935C11.9167 19.8228 11.6999 19.6045 11.431 19.6045C11.1622 19.6045 10.9453 19.8228 10.9453 20.0935C10.9453 20.3642 11.1622 20.5825 11.431 20.5825Z" fill="url(#paint71_linear_10849_9290)"/>
|
|
179
|
+
<path d="M13.6712 19.4775C13.9671 19.4775 14.207 19.236 14.207 18.938C14.207 18.64 13.9671 18.3984 13.6712 18.3984C13.3752 18.3984 13.1353 18.64 13.1353 18.938C13.1353 19.236 13.3752 19.4775 13.6712 19.4775Z" fill="url(#paint72_linear_10849_9290)"/>
|
|
180
|
+
<path d="M12.5506 19.4524C12.832 19.4524 13.0614 19.2214 13.0614 18.9381C13.0614 18.6548 12.832 18.4238 12.5506 18.4238C12.2692 18.4238 12.0398 18.6548 12.0398 18.9381C12.0398 19.2214 12.2692 19.4524 12.5506 19.4524Z" fill="url(#paint73_linear_10849_9290)"/>
|
|
181
|
+
<path d="M15.3517 17.7816C15.3517 17.4694 15.1008 17.2168 14.7907 17.2168C14.4807 17.2168 14.2298 17.4694 14.2298 17.7816C14.2298 18.0938 14.4807 18.3464 14.7907 18.3464C15.1008 18.3464 15.3517 18.0938 15.3517 17.7816Z" fill="url(#paint74_linear_10849_9290)"/>
|
|
182
|
+
<path d="M13.6712 18.3213C13.9669 18.3213 14.207 18.0795 14.207 17.7817C14.207 17.484 13.9669 17.2422 13.6712 17.2422C13.3754 17.2422 13.1353 17.484 13.1353 17.7817C13.1353 18.0795 13.3754 18.3213 13.6712 18.3213Z" fill="url(#paint75_linear_10849_9290)"/>
|
|
183
|
+
<path d="M12.5506 18.2957C12.832 18.2957 13.0614 18.0647 13.0614 17.7814C13.0614 17.4981 12.832 17.2671 12.5506 17.2671C12.2692 17.2671 12.0398 17.4981 12.0398 17.7814C12.0398 18.0647 12.2692 18.2957 12.5506 18.2957Z" fill="url(#paint76_linear_10849_9290)"/>
|
|
184
|
+
<path d="M10.3106 13.6182C10.5651 13.6182 10.7694 13.4107 10.7694 13.1563C10.7694 12.9019 10.5633 12.6943 10.3106 12.6943C10.0579 12.6943 9.85184 12.9019 9.85184 13.1563C9.85184 13.4107 10.0579 13.6182 10.3106 13.6182Z" fill="url(#paint77_linear_10849_9290)"/>
|
|
185
|
+
<path d="M6.95046 12.7705C6.73898 12.7705 6.56693 12.9437 6.56693 13.1567C6.56693 13.3696 6.73898 13.5428 6.95046 13.5428C7.16194 13.5428 7.33399 13.3696 7.33399 13.1567C7.33399 12.9437 7.16194 12.7705 6.95046 12.7705Z" fill="url(#paint78_linear_10849_9290)"/>
|
|
186
|
+
<path d="M5.82958 13.516C6.02655 13.516 6.18623 13.3553 6.18623 13.1569C6.18623 12.9586 6.02655 12.7979 5.82958 12.7979C5.63261 12.7979 5.47293 12.9586 5.47293 13.1569C5.47293 13.3553 5.63261 13.516 5.82958 13.516Z" fill="url(#paint79_linear_10849_9290)"/>
|
|
187
|
+
<path d="M3.58992 12.2705C3.42145 12.2705 3.28345 12.4095 3.28345 12.5791C3.28345 12.7487 3.42145 12.8876 3.58992 12.8876C3.75838 12.8876 3.89638 12.7487 3.89638 12.5791C3.89638 12.4095 3.75838 12.2705 3.58992 12.2705Z" fill="url(#paint80_linear_10849_9290)"/>
|
|
188
|
+
<path d="M11.431 14.8003C11.6981 14.8003 11.9167 14.582 11.9167 14.3113C11.9167 14.0406 11.6999 13.8223 11.431 13.8223C11.1622 13.8223 10.9453 14.0406 10.9453 14.3113C10.9453 14.582 11.1622 14.8003 11.431 14.8003Z" fill="url(#paint81_linear_10849_9290)"/>
|
|
189
|
+
<path d="M10.3106 14.7755C10.5651 14.7755 10.7694 14.568 10.7694 14.3135C10.7694 14.0591 10.5633 13.8516 10.3106 13.8516C10.0579 13.8516 9.85184 14.0591 9.85184 14.3135C9.85184 14.568 10.0579 14.7755 10.3106 14.7755Z" fill="url(#paint82_linear_10849_9290)"/>
|
|
190
|
+
<path d="M12.5506 15.9827C12.832 15.9827 13.0614 15.7517 13.0614 15.4684C13.0614 15.1851 12.832 14.9541 12.5506 14.9541C12.2692 14.9541 12.0398 15.1851 12.0398 15.4684C12.0398 15.7517 12.2692 15.9827 12.5506 15.9827Z" fill="url(#paint83_linear_10849_9290)"/>
|
|
191
|
+
<path d="M11.431 15.9575C11.6981 15.9575 11.9167 15.7392 11.9167 15.4685C11.9167 15.1978 11.6999 14.9795 11.431 14.9795C11.1622 14.9795 10.9453 15.1978 10.9453 15.4685C10.9453 15.7392 11.1622 15.9575 11.431 15.9575Z" fill="url(#paint84_linear_10849_9290)"/>
|
|
192
|
+
<path d="M10.3106 15.9317C10.5651 15.9317 10.7694 15.7242 10.7694 15.4698C10.7694 15.2153 10.5633 15.0078 10.3106 15.0078C10.0579 15.0078 9.85184 15.2153 9.85184 15.4698C9.85184 15.7242 10.0579 15.9317 10.3106 15.9317Z" fill="url(#paint85_linear_10849_9290)"/>
|
|
193
|
+
<path d="M13.6712 17.1645C13.9671 17.1645 14.207 16.923 14.207 16.625C14.207 16.327 13.9671 16.0854 13.6712 16.0854C13.3752 16.0854 13.1353 16.327 13.1353 16.625C13.1353 16.923 13.3752 17.1645 13.6712 17.1645Z" fill="url(#paint86_linear_10849_9290)"/>
|
|
194
|
+
<path d="M12.5506 17.1389C12.832 17.1389 13.0614 16.9079 13.0614 16.6246C13.0614 16.3413 12.832 16.1104 12.5506 16.1104C12.2692 16.1104 12.0398 16.3413 12.0398 16.6246C12.0398 16.9079 12.2692 17.1389 12.5506 17.1389Z" fill="url(#paint87_linear_10849_9290)"/>
|
|
195
|
+
<path d="M11.431 17.1138C11.6981 17.1138 11.9167 16.8954 11.9167 16.6248C11.9167 16.3541 11.6999 16.1357 11.431 16.1357C11.1622 16.1357 10.9453 16.3541 10.9453 16.6248C10.9453 16.8954 11.1622 17.1138 11.431 17.1138Z" fill="url(#paint88_linear_10849_9290)"/>
|
|
196
|
+
<path d="M9.19009 9.25C8.94994 9.25 8.75638 9.44489 8.75638 9.68669C8.75638 9.92849 8.94994 10.1234 9.19009 10.1234C9.43025 10.1234 9.62381 9.92849 9.62381 9.68669C9.62381 9.44489 9.43025 9.25 9.19009 9.25Z" fill="url(#paint89_linear_10849_9290)"/>
|
|
197
|
+
<path d="M9.19009 11.5635C8.94994 11.5635 8.75638 11.7584 8.75638 12.0002C8.75638 12.242 8.94994 12.4369 9.19009 12.4369C9.43025 12.4369 9.62381 12.242 9.62381 12.0002C9.62381 11.7584 9.43025 11.5635 9.19009 11.5635Z" fill="url(#paint90_linear_10849_9290)"/>
|
|
198
|
+
<path d="M9.19009 12.7197C8.94994 12.7197 8.75638 12.9146 8.75638 13.1564C8.75638 13.3982 8.94994 13.5931 9.19009 13.5931C9.43025 13.5931 9.62381 13.3982 9.62381 13.1564C9.62381 12.9146 9.43025 12.7197 9.19009 12.7197Z" fill="url(#paint91_linear_10849_9290)"/>
|
|
199
|
+
<path d="M9.19009 13.877C8.94994 13.877 8.75638 14.0718 8.75638 14.3136C8.75638 14.5554 8.94994 14.7503 9.19009 14.7503C9.43025 14.7503 9.62381 14.5554 9.62381 14.3136C9.62381 14.0718 9.43025 13.877 9.19009 13.877Z" fill="url(#paint92_linear_10849_9290)"/>
|
|
200
|
+
<path d="M9.19009 10.4062C8.94994 10.4062 8.75638 10.6011 8.75638 10.8429C8.75638 11.0847 8.94994 11.2796 9.19009 11.2796C9.43025 11.2796 9.62381 11.0847 9.62381 10.8429C9.62381 10.6011 9.43025 10.4062 9.19009 10.4062Z" fill="url(#paint93_linear_10849_9290)"/>
|
|
201
|
+
<path d="M8.07052 9.85449C7.8447 9.85449 7.6619 10.0386 7.6619 10.2659C7.6619 10.4933 7.8447 10.6773 8.07052 10.6773C8.29634 10.6773 8.47914 10.4933 8.47914 10.2659C8.47914 10.0386 8.29634 9.85449 8.07052 9.85449Z" fill="url(#paint94_linear_10849_9290)"/>
|
|
202
|
+
<path d="M8.07052 12.168C7.8447 12.168 7.6619 12.352 7.6619 12.5794C7.6619 12.8068 7.8447 12.9908 8.07052 12.9908C8.29634 12.9908 8.47914 12.8068 8.47914 12.5794C8.47914 12.352 8.29634 12.168 8.07052 12.168Z" fill="url(#paint95_linear_10849_9290)"/>
|
|
203
|
+
<path d="M8.07052 13.3228C7.8447 13.3228 7.6619 13.5068 7.6619 13.7342C7.6619 13.9615 7.8447 14.1456 8.07052 14.1456C8.29634 14.1456 8.47914 13.9615 8.47914 13.7342C8.47914 13.5068 8.29634 13.3228 8.07052 13.3228Z" fill="url(#paint96_linear_10849_9290)"/>
|
|
204
|
+
<path d="M8.07052 11.0107C7.8447 11.0107 7.6619 11.1948 7.6619 11.4222C7.6619 11.507 7.68699 11.5864 7.73179 11.6513C7.80527 11.7614 7.92894 11.8318 8.07052 11.8318C8.2121 11.8318 8.33577 11.7596 8.40925 11.6513C8.45405 11.5864 8.47914 11.507 8.47914 11.4222C8.47914 11.1948 8.29634 11.0107 8.07052 11.0107Z" fill="url(#paint97_linear_10849_9290)"/>
|
|
205
|
+
<path d="M7.02752 11.6225C7.00243 11.617 6.97734 11.6152 6.95046 11.6152C6.92357 11.6152 6.89848 11.617 6.87339 11.6225C6.69955 11.6585 6.56693 11.8137 6.56693 11.9996C6.56693 12.1855 6.69775 12.3406 6.87339 12.3767C6.89848 12.3821 6.92357 12.384 6.95046 12.384C6.97734 12.384 7.00243 12.3821 7.02752 12.3767C7.20137 12.3406 7.33399 12.1855 7.33399 11.9996C7.33399 11.8137 7.20316 11.6585 7.02752 11.6225Z" fill="url(#paint98_linear_10849_9290)"/>
|
|
206
|
+
<path d="M6.03064 11.702C5.97328 11.6623 5.90518 11.6406 5.82991 11.6406C5.75464 11.6406 5.68653 11.6641 5.62918 11.702C5.53419 11.7669 5.47147 11.877 5.47147 11.9997C5.47147 12.099 5.5109 12.1892 5.57541 12.2542C5.63993 12.3191 5.72954 12.3588 5.82811 12.3588C5.92669 12.3588 6.0163 12.3191 6.08082 12.2542C6.14534 12.1892 6.18477 12.099 6.18477 11.9997C6.18477 11.8752 6.12204 11.7651 6.02705 11.702H6.03064Z" fill="url(#paint99_linear_10849_9290)"/>
|
|
207
|
+
<path d="M4.70998 12.2432C4.52717 12.2432 4.37842 12.3929 4.37842 12.577C4.37842 12.7611 4.52717 12.9108 4.70998 12.9108C4.89278 12.9108 5.04154 12.7611 5.04154 12.577C5.04154 12.3929 4.89278 12.2432 4.70998 12.2432Z" fill="url(#paint100_linear_10849_9290)"/>
|
|
208
|
+
<path d="M4.71034 11.0889C4.59563 11.0889 4.49527 11.1466 4.43433 11.2368C4.39849 11.291 4.37698 11.3541 4.37698 11.4245C4.37698 11.6086 4.52574 11.7583 4.70854 11.7583C4.89135 11.7583 5.0401 11.6086 5.0401 11.4245C5.0401 11.3559 5.01859 11.291 4.98275 11.2368C4.92361 11.1484 4.82145 11.0889 4.70675 11.0889H4.71034Z" fill="url(#paint101_linear_10849_9290)"/>
|
|
209
|
+
<path d="M1.60072 11.9474C1.59713 11.9312 1.59176 11.9149 1.58638 11.8987C1.57383 11.868 1.55412 11.8409 1.53082 11.8175C1.48422 11.7706 1.4215 11.7417 1.34981 11.7417C1.27812 11.7417 1.21539 11.7706 1.16879 11.8175C1.14549 11.8409 1.12757 11.868 1.11324 11.8987C1.10607 11.9149 1.10248 11.9294 1.0989 11.9474C1.09531 11.9655 1.09352 11.9817 1.09352 11.9997C1.09352 12.0178 1.09352 12.034 1.0989 12.0521C1.10248 12.0683 1.10786 12.0846 1.11324 12.1008C1.15266 12.1928 1.24227 12.2578 1.34801 12.2578C1.45376 12.2578 1.54516 12.1928 1.58279 12.1008C1.58996 12.0846 1.59355 12.0701 1.59713 12.0521C1.60072 12.0358 1.60251 12.0178 1.60251 11.9997C1.60251 11.9817 1.60072 11.9655 1.59713 11.9474H1.60072Z" fill="url(#paint102_linear_10849_9290)"/>
|
|
210
|
+
<path d="M0.229419 11.769C0.102172 11.769 1.52588e-05 11.8719 1.52588e-05 12C1.52588e-05 12.1281 0.102172 12.231 0.229419 12.231C0.356666 12.231 0.458822 12.1281 0.458822 12C0.458822 11.8719 0.356666 11.769 0.229419 11.769Z" fill="url(#paint103_linear_10849_9290)"/>
|
|
211
|
+
<path d="M2.46937 12.2959C2.31344 12.2959 2.18799 12.4222 2.18799 12.5792C2.18799 12.7362 2.31344 12.8625 2.46937 12.8625C2.62529 12.8625 2.75074 12.7362 2.75074 12.5792C2.75074 12.4222 2.62529 12.2959 2.46937 12.2959Z" fill="url(#paint104_linear_10849_9290)"/>
|
|
212
|
+
<defs>
|
|
213
|
+
<linearGradient id="paint0_linear_10849_9290" x1="-0.000319918" y1="12" x2="24.001" y2="12" gradientUnits="userSpaceOnUse">
|
|
214
|
+
<stop stop-color="#404040"/>
|
|
215
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
216
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
217
|
+
</linearGradient>
|
|
218
|
+
<linearGradient id="paint1_linear_10849_9290" x1="-0.000332359" y1="12.0002" x2="24.001" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
219
|
+
<stop stop-color="#404040"/>
|
|
220
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
221
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
222
|
+
</linearGradient>
|
|
223
|
+
<linearGradient id="paint2_linear_10849_9290" x1="-0.000358062" y1="12" x2="24.0009" y2="12" gradientUnits="userSpaceOnUse">
|
|
224
|
+
<stop stop-color="#404040"/>
|
|
225
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
226
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
227
|
+
</linearGradient>
|
|
228
|
+
<linearGradient id="paint3_linear_10849_9290" x1="0.000196826" y1="12.0001" x2="24.0015" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
229
|
+
<stop stop-color="#404040"/>
|
|
230
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
231
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
232
|
+
</linearGradient>
|
|
233
|
+
<linearGradient id="paint4_linear_10849_9290" x1="0.000265458" y1="12.0002" x2="24.0016" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
234
|
+
<stop stop-color="#404040"/>
|
|
235
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
236
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
237
|
+
</linearGradient>
|
|
238
|
+
<linearGradient id="paint5_linear_10849_9290" x1="-0.000476111" y1="12" x2="24.0008" y2="12" gradientUnits="userSpaceOnUse">
|
|
239
|
+
<stop stop-color="#404040"/>
|
|
240
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
241
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
242
|
+
</linearGradient>
|
|
243
|
+
<linearGradient id="paint6_linear_10849_9290" x1="4.06619e-05" y1="11.9996" x2="24.0014" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
244
|
+
<stop stop-color="#404040"/>
|
|
245
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
246
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
247
|
+
</linearGradient>
|
|
248
|
+
<linearGradient id="paint7_linear_10849_9290" x1="0.000111182" y1="11.9998" x2="24.0014" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
249
|
+
<stop stop-color="#404040"/>
|
|
250
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
251
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
252
|
+
</linearGradient>
|
|
253
|
+
<linearGradient id="paint8_linear_10849_9290" x1="-0.000300981" y1="11.9999" x2="24.001" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
254
|
+
<stop stop-color="#404040"/>
|
|
255
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
256
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
257
|
+
</linearGradient>
|
|
258
|
+
<linearGradient id="paint9_linear_10849_9290" x1="-7.17208e-05" y1="12.0002" x2="24.0013" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
259
|
+
<stop stop-color="#404040"/>
|
|
260
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
261
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
262
|
+
</linearGradient>
|
|
263
|
+
<linearGradient id="paint10_linear_10849_9290" x1="1.52588e-05" y1="11.9998" x2="24.0014" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
264
|
+
<stop stop-color="#404040"/>
|
|
265
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
266
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
267
|
+
</linearGradient>
|
|
268
|
+
<linearGradient id="paint11_linear_10849_9290" x1="6.21078e-05" y1="11.9999" x2="24.0013" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
269
|
+
<stop stop-color="#404040"/>
|
|
270
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
271
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
272
|
+
</linearGradient>
|
|
273
|
+
<linearGradient id="paint12_linear_10849_9290" x1="-0.000358062" y1="12" x2="24.0009" y2="12" gradientUnits="userSpaceOnUse">
|
|
274
|
+
<stop stop-color="#404040"/>
|
|
275
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
276
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
277
|
+
</linearGradient>
|
|
278
|
+
<linearGradient id="paint13_linear_10849_9290" x1="0.000196826" y1="11.9996" x2="24.0015" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
279
|
+
<stop stop-color="#404040"/>
|
|
280
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
281
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
282
|
+
</linearGradient>
|
|
283
|
+
<linearGradient id="paint14_linear_10849_9290" x1="0.000265458" y1="11.9998" x2="24.0016" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
284
|
+
<stop stop-color="#404040"/>
|
|
285
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
286
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
287
|
+
</linearGradient>
|
|
288
|
+
<linearGradient id="paint15_linear_10849_9290" x1="-0.000476111" y1="12" x2="24.0008" y2="12" gradientUnits="userSpaceOnUse">
|
|
289
|
+
<stop stop-color="#404040"/>
|
|
290
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
291
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
292
|
+
</linearGradient>
|
|
293
|
+
<linearGradient id="paint16_linear_10849_9290" x1="4.06619e-05" y1="12.0002" x2="24.0014" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
294
|
+
<stop stop-color="#404040"/>
|
|
295
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
296
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
297
|
+
</linearGradient>
|
|
298
|
+
<linearGradient id="paint17_linear_10849_9290" x1="0.000111182" y1="12.0003" x2="24.0014" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
299
|
+
<stop stop-color="#404040"/>
|
|
300
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
301
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
302
|
+
</linearGradient>
|
|
303
|
+
<linearGradient id="paint18_linear_10849_9290" x1="-0.000300981" y1="11.9999" x2="24.001" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
304
|
+
<stop stop-color="#404040"/>
|
|
305
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
306
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
307
|
+
</linearGradient>
|
|
308
|
+
<linearGradient id="paint19_linear_10849_9290" x1="0.000313541" y1="11.9995" x2="24.0016" y2="11.9995" gradientUnits="userSpaceOnUse">
|
|
309
|
+
<stop stop-color="#404040"/>
|
|
310
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
311
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
312
|
+
</linearGradient>
|
|
313
|
+
<linearGradient id="paint20_linear_10849_9290" x1="6.21078e-05" y1="11.9999" x2="24.0013" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
314
|
+
<stop stop-color="#404040"/>
|
|
315
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
316
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
317
|
+
</linearGradient>
|
|
318
|
+
<linearGradient id="paint21_linear_10849_9290" x1="-0.000358062" y1="12.0001" x2="24.0009" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
319
|
+
<stop stop-color="#404040"/>
|
|
320
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
321
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
322
|
+
</linearGradient>
|
|
323
|
+
<linearGradient id="paint22_linear_10849_9290" x1="0.000196826" y1="12.0002" x2="24.0015" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
324
|
+
<stop stop-color="#404040"/>
|
|
325
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
326
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
327
|
+
</linearGradient>
|
|
328
|
+
<linearGradient id="paint23_linear_10849_9290" x1="0.000265458" y1="11.9998" x2="24.0016" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
329
|
+
<stop stop-color="#404040"/>
|
|
330
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
331
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
332
|
+
</linearGradient>
|
|
333
|
+
<linearGradient id="paint24_linear_10849_9290" x1="-0.000476111" y1="11.9996" x2="24.0008" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
334
|
+
<stop stop-color="#404040"/>
|
|
335
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
336
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
337
|
+
</linearGradient>
|
|
338
|
+
<linearGradient id="paint25_linear_10849_9290" x1="4.06619e-05" y1="11.9997" x2="24.0014" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
339
|
+
<stop stop-color="#404040"/>
|
|
340
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
341
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
342
|
+
</linearGradient>
|
|
343
|
+
<linearGradient id="paint26_linear_10849_9290" x1="-0.000241566" y1="11.9999" x2="24.001" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
344
|
+
<stop stop-color="#404040"/>
|
|
345
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
346
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
347
|
+
</linearGradient>
|
|
348
|
+
<linearGradient id="paint27_linear_10849_9290" x1="0.000313541" y1="12" x2="24.0016" y2="12" gradientUnits="userSpaceOnUse">
|
|
349
|
+
<stop stop-color="#404040"/>
|
|
350
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
351
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
352
|
+
</linearGradient>
|
|
353
|
+
<linearGradient id="paint28_linear_10849_9290" x1="0.000178682" y1="12.0003" x2="24.0015" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
354
|
+
<stop stop-color="#404040"/>
|
|
355
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
356
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
357
|
+
</linearGradient>
|
|
358
|
+
<linearGradient id="paint29_linear_10849_9290" x1="-0.000241566" y1="11.9995" x2="24.001" y2="11.9995" gradientUnits="userSpaceOnUse">
|
|
359
|
+
<stop stop-color="#404040"/>
|
|
360
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
361
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
362
|
+
</linearGradient>
|
|
363
|
+
<linearGradient id="paint30_linear_10849_9290" x1="-0.000379027" y1="11.9998" x2="24.0009" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
364
|
+
<stop stop-color="#404040"/>
|
|
365
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
366
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
367
|
+
</linearGradient>
|
|
368
|
+
<linearGradient id="paint31_linear_10849_9290" x1="0.000178682" y1="11.9999" x2="24.0015" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
369
|
+
<stop stop-color="#404040"/>
|
|
370
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
371
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
372
|
+
</linearGradient>
|
|
373
|
+
<linearGradient id="paint32_linear_10849_9290" x1="-0.000241566" y1="12" x2="24.001" y2="12" gradientUnits="userSpaceOnUse">
|
|
374
|
+
<stop stop-color="#404040"/>
|
|
375
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
376
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
377
|
+
</linearGradient>
|
|
378
|
+
<linearGradient id="paint33_linear_10849_9290" x1="6.21078e-05" y1="11.9996" x2="24.0013" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
379
|
+
<stop stop-color="#404040"/>
|
|
380
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
381
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
382
|
+
</linearGradient>
|
|
383
|
+
<linearGradient id="paint34_linear_10849_9290" x1="0.000265458" y1="12" x2="24.0016" y2="12" gradientUnits="userSpaceOnUse">
|
|
384
|
+
<stop stop-color="#404040"/>
|
|
385
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
386
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
387
|
+
</linearGradient>
|
|
388
|
+
<linearGradient id="paint35_linear_10849_9290" x1="-0.000476111" y1="12.0002" x2="24.0008" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
389
|
+
<stop stop-color="#404040"/>
|
|
390
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
391
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
392
|
+
</linearGradient>
|
|
393
|
+
<linearGradient id="paint36_linear_10849_9290" x1="0.000111182" y1="12.0003" x2="24.0014" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
394
|
+
<stop stop-color="#404040"/>
|
|
395
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
396
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
397
|
+
</linearGradient>
|
|
398
|
+
<linearGradient id="paint37_linear_10849_9290" x1="-0.000300981" y1="11.9999" x2="24.001" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
399
|
+
<stop stop-color="#404040"/>
|
|
400
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
401
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
402
|
+
</linearGradient>
|
|
403
|
+
<linearGradient id="paint38_linear_10849_9290" x1="0.000313541" y1="11.9997" x2="24.0016" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
404
|
+
<stop stop-color="#404040"/>
|
|
405
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
406
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
407
|
+
</linearGradient>
|
|
408
|
+
<linearGradient id="paint39_linear_10849_9290" x1="6.21078e-05" y1="12.0001" x2="24.0013" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
409
|
+
<stop stop-color="#404040"/>
|
|
410
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
411
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
412
|
+
</linearGradient>
|
|
413
|
+
<linearGradient id="paint40_linear_10849_9290" x1="-0.000241566" y1="12.0001" x2="24.001" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
414
|
+
<stop stop-color="#404040"/>
|
|
415
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
416
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
417
|
+
</linearGradient>
|
|
418
|
+
<linearGradient id="paint41_linear_10849_9290" x1="0.000313541" y1="12.0001" x2="24.0016" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
419
|
+
<stop stop-color="#404040"/>
|
|
420
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
421
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
422
|
+
</linearGradient>
|
|
423
|
+
<linearGradient id="paint42_linear_10849_9290" x1="6.21078e-05" y1="12" x2="24.0013" y2="12" gradientUnits="userSpaceOnUse">
|
|
424
|
+
<stop stop-color="#404040"/>
|
|
425
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
426
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
427
|
+
</linearGradient>
|
|
428
|
+
<linearGradient id="paint43_linear_10849_9290" x1="0.000178682" y1="11.9999" x2="24.0015" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
429
|
+
<stop stop-color="#404040"/>
|
|
430
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
431
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
432
|
+
</linearGradient>
|
|
433
|
+
<linearGradient id="paint44_linear_10849_9290" x1="-0.000241566" y1="12.0001" x2="24.001" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
434
|
+
<stop stop-color="#404040"/>
|
|
435
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
436
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
437
|
+
</linearGradient>
|
|
438
|
+
<linearGradient id="paint45_linear_10849_9290" x1="0.000313541" y1="11.9997" x2="24.0016" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
439
|
+
<stop stop-color="#404040"/>
|
|
440
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
441
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
442
|
+
</linearGradient>
|
|
443
|
+
<linearGradient id="paint46_linear_10849_9290" x1="-0.000358062" y1="11.9999" x2="24.0009" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
444
|
+
<stop stop-color="#404040"/>
|
|
445
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
446
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
447
|
+
</linearGradient>
|
|
448
|
+
<linearGradient id="paint47_linear_10849_9290" x1="0.000196826" y1="12" x2="24.0015" y2="12" gradientUnits="userSpaceOnUse">
|
|
449
|
+
<stop stop-color="#404040"/>
|
|
450
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
451
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
452
|
+
</linearGradient>
|
|
453
|
+
<linearGradient id="paint48_linear_10849_9290" x1="0.000265458" y1="11.9997" x2="24.0016" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
454
|
+
<stop stop-color="#404040"/>
|
|
455
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
456
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
457
|
+
</linearGradient>
|
|
458
|
+
<linearGradient id="paint49_linear_10849_9290" x1="-0.000476111" y1="11.9999" x2="24.0008" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
459
|
+
<stop stop-color="#404040"/>
|
|
460
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
461
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
462
|
+
</linearGradient>
|
|
463
|
+
<linearGradient id="paint50_linear_10849_9290" x1="4.06619e-05" y1="12.0001" x2="24.0014" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
464
|
+
<stop stop-color="#404040"/>
|
|
465
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
466
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
467
|
+
</linearGradient>
|
|
468
|
+
<linearGradient id="paint51_linear_10849_9290" x1="0.000111182" y1="12.0002" x2="24.0014" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
469
|
+
<stop stop-color="#404040"/>
|
|
470
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
471
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
472
|
+
</linearGradient>
|
|
473
|
+
<linearGradient id="paint52_linear_10849_9290" x1="-0.000300981" y1="12.0003" x2="24.001" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
474
|
+
<stop stop-color="#404040"/>
|
|
475
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
476
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
477
|
+
</linearGradient>
|
|
478
|
+
<linearGradient id="paint53_linear_10849_9290" x1="-7.17208e-05" y1="11.9996" x2="24.0013" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
479
|
+
<stop stop-color="#404040"/>
|
|
480
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
481
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
482
|
+
</linearGradient>
|
|
483
|
+
<linearGradient id="paint54_linear_10849_9290" x1="1.52588e-05" y1="12.0002" x2="24.0014" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
484
|
+
<stop stop-color="#404040"/>
|
|
485
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
486
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
487
|
+
</linearGradient>
|
|
488
|
+
<linearGradient id="paint55_linear_10849_9290" x1="6.21078e-05" y1="11.9999" x2="24.0013" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
489
|
+
<stop stop-color="#404040"/>
|
|
490
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
491
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
492
|
+
</linearGradient>
|
|
493
|
+
<linearGradient id="paint56_linear_10849_9290" x1="-0.000358062" y1="11.9998" x2="24.0009" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
494
|
+
<stop stop-color="#404040"/>
|
|
495
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
496
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
497
|
+
</linearGradient>
|
|
498
|
+
<linearGradient id="paint57_linear_10849_9290" x1="0.000196826" y1="12" x2="24.0015" y2="12" gradientUnits="userSpaceOnUse">
|
|
499
|
+
<stop stop-color="#404040"/>
|
|
500
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
501
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
502
|
+
</linearGradient>
|
|
503
|
+
<linearGradient id="paint58_linear_10849_9290" x1="0.000265458" y1="12.0002" x2="24.0016" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
504
|
+
<stop stop-color="#404040"/>
|
|
505
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
506
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
507
|
+
</linearGradient>
|
|
508
|
+
<linearGradient id="paint59_linear_10849_9290" x1="-0.000476111" y1="12.0004" x2="24.0008" y2="12.0004" gradientUnits="userSpaceOnUse">
|
|
509
|
+
<stop stop-color="#404040"/>
|
|
510
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
511
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
512
|
+
</linearGradient>
|
|
513
|
+
<linearGradient id="paint60_linear_10849_9290" x1="4.06619e-05" y1="11.9995" x2="24.0014" y2="11.9995" gradientUnits="userSpaceOnUse">
|
|
514
|
+
<stop stop-color="#404040"/>
|
|
515
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
516
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
517
|
+
</linearGradient>
|
|
518
|
+
<linearGradient id="paint61_linear_10849_9290" x1="0.000111182" y1="11.9997" x2="24.0014" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
519
|
+
<stop stop-color="#404040"/>
|
|
520
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
521
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
522
|
+
</linearGradient>
|
|
523
|
+
<linearGradient id="paint62_linear_10849_9290" x1="-0.000300981" y1="11.9998" x2="24.001" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
524
|
+
<stop stop-color="#404040"/>
|
|
525
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
526
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
527
|
+
</linearGradient>
|
|
528
|
+
<linearGradient id="paint63_linear_10849_9290" x1="0.000313541" y1="11.9999" x2="24.0016" y2="11.9999" gradientUnits="userSpaceOnUse">
|
|
529
|
+
<stop stop-color="#404040"/>
|
|
530
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
531
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
532
|
+
</linearGradient>
|
|
533
|
+
<linearGradient id="paint64_linear_10849_9290" x1="6.21078e-05" y1="12.0003" x2="24.0013" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
534
|
+
<stop stop-color="#404040"/>
|
|
535
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
536
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
537
|
+
</linearGradient>
|
|
538
|
+
<linearGradient id="paint65_linear_10849_9290" x1="-0.000358062" y1="11.9998" x2="24.0009" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
539
|
+
<stop stop-color="#404040"/>
|
|
540
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
541
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
542
|
+
</linearGradient>
|
|
543
|
+
<linearGradient id="paint66_linear_10849_9290" x1="0.000196826" y1="11.9996" x2="24.0015" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
544
|
+
<stop stop-color="#404040"/>
|
|
545
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
546
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
547
|
+
</linearGradient>
|
|
548
|
+
<linearGradient id="paint67_linear_10849_9290" x1="0.000265458" y1="11.9997" x2="24.0016" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
549
|
+
<stop stop-color="#404040"/>
|
|
550
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
551
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
552
|
+
</linearGradient>
|
|
553
|
+
<linearGradient id="paint68_linear_10849_9290" x1="-0.000476111" y1="11.9998" x2="24.0008" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
554
|
+
<stop stop-color="#404040"/>
|
|
555
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
556
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
557
|
+
</linearGradient>
|
|
558
|
+
<linearGradient id="paint69_linear_10849_9290" x1="4.06619e-05" y1="12" x2="24.0014" y2="12" gradientUnits="userSpaceOnUse">
|
|
559
|
+
<stop stop-color="#404040"/>
|
|
560
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
561
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
562
|
+
</linearGradient>
|
|
563
|
+
<linearGradient id="paint70_linear_10849_9290" x1="-0.000241566" y1="12.0003" x2="24.001" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
564
|
+
<stop stop-color="#404040"/>
|
|
565
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
566
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
567
|
+
</linearGradient>
|
|
568
|
+
<linearGradient id="paint71_linear_10849_9290" x1="0.000313541" y1="12.0003" x2="24.0016" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
569
|
+
<stop stop-color="#404040"/>
|
|
570
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
571
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
572
|
+
</linearGradient>
|
|
573
|
+
<linearGradient id="paint72_linear_10849_9290" x1="0.000178682" y1="11.9997" x2="24.0015" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
574
|
+
<stop stop-color="#404040"/>
|
|
575
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
576
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
577
|
+
</linearGradient>
|
|
578
|
+
<linearGradient id="paint73_linear_10849_9290" x1="-0.000241566" y1="11.9998" x2="24.001" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
579
|
+
<stop stop-color="#404040"/>
|
|
580
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
581
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
582
|
+
</linearGradient>
|
|
583
|
+
<linearGradient id="paint74_linear_10849_9290" x1="-0.000379027" y1="12" x2="24.0009" y2="12" gradientUnits="userSpaceOnUse">
|
|
584
|
+
<stop stop-color="#404040"/>
|
|
585
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
586
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
587
|
+
</linearGradient>
|
|
588
|
+
<linearGradient id="paint75_linear_10849_9290" x1="0.000178682" y1="12.0001" x2="24.0015" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
589
|
+
<stop stop-color="#404040"/>
|
|
590
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
591
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
592
|
+
</linearGradient>
|
|
593
|
+
<linearGradient id="paint76_linear_10849_9290" x1="-0.000241566" y1="11.9997" x2="24.001" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
594
|
+
<stop stop-color="#404040"/>
|
|
595
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
596
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
597
|
+
</linearGradient>
|
|
598
|
+
<linearGradient id="paint77_linear_10849_9290" x1="6.21078e-05" y1="11.9996" x2="24.0013" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
599
|
+
<stop stop-color="#404040"/>
|
|
600
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
601
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
602
|
+
</linearGradient>
|
|
603
|
+
<linearGradient id="paint78_linear_10849_9290" x1="0.000265458" y1="12" x2="24.0016" y2="12" gradientUnits="userSpaceOnUse">
|
|
604
|
+
<stop stop-color="#404040"/>
|
|
605
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
606
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
607
|
+
</linearGradient>
|
|
608
|
+
<linearGradient id="paint79_linear_10849_9290" x1="-0.000476111" y1="12.0003" x2="24.0008" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
609
|
+
<stop stop-color="#404040"/>
|
|
610
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
611
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
612
|
+
</linearGradient>
|
|
613
|
+
<linearGradient id="paint80_linear_10849_9290" x1="0.000111182" y1="11.9998" x2="24.0014" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
614
|
+
<stop stop-color="#404040"/>
|
|
615
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
616
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
617
|
+
</linearGradient>
|
|
618
|
+
<linearGradient id="paint81_linear_10849_9290" x1="0.000313541" y1="11.9997" x2="24.0016" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
619
|
+
<stop stop-color="#404040"/>
|
|
620
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
621
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
622
|
+
</linearGradient>
|
|
623
|
+
<linearGradient id="paint82_linear_10849_9290" x1="6.21078e-05" y1="12.0001" x2="24.0013" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
624
|
+
<stop stop-color="#404040"/>
|
|
625
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
626
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
627
|
+
</linearGradient>
|
|
628
|
+
<linearGradient id="paint83_linear_10849_9290" x1="-0.000241566" y1="12.0001" x2="24.001" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
629
|
+
<stop stop-color="#404040"/>
|
|
630
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
631
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
632
|
+
</linearGradient>
|
|
633
|
+
<linearGradient id="paint84_linear_10849_9290" x1="0.000313541" y1="12.0003" x2="24.0016" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
634
|
+
<stop stop-color="#404040"/>
|
|
635
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
636
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
637
|
+
</linearGradient>
|
|
638
|
+
<linearGradient id="paint85_linear_10849_9290" x1="6.21078e-05" y1="11.9997" x2="24.0013" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
639
|
+
<stop stop-color="#404040"/>
|
|
640
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
641
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
642
|
+
</linearGradient>
|
|
643
|
+
<linearGradient id="paint86_linear_10849_9290" x1="0.000178682" y1="12" x2="24.0015" y2="12" gradientUnits="userSpaceOnUse">
|
|
644
|
+
<stop stop-color="#404040"/>
|
|
645
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
646
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
647
|
+
</linearGradient>
|
|
648
|
+
<linearGradient id="paint87_linear_10849_9290" x1="-0.000241566" y1="11.9997" x2="24.001" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
649
|
+
<stop stop-color="#404040"/>
|
|
650
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
651
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
652
|
+
</linearGradient>
|
|
653
|
+
<linearGradient id="paint88_linear_10849_9290" x1="0.000313541" y1="11.9998" x2="24.0016" y2="11.9998" gradientUnits="userSpaceOnUse">
|
|
654
|
+
<stop stop-color="#404040"/>
|
|
655
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
656
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
657
|
+
</linearGradient>
|
|
658
|
+
<linearGradient id="paint89_linear_10849_9290" x1="-0.000358062" y1="12.0001" x2="24.0009" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
659
|
+
<stop stop-color="#404040"/>
|
|
660
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
661
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
662
|
+
</linearGradient>
|
|
663
|
+
<linearGradient id="paint90_linear_10849_9290" x1="-0.000358062" y1="12.0002" x2="24.0009" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
664
|
+
<stop stop-color="#404040"/>
|
|
665
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
666
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
667
|
+
</linearGradient>
|
|
668
|
+
<linearGradient id="paint91_linear_10849_9290" x1="-0.000358062" y1="11.9997" x2="24.0009" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
669
|
+
<stop stop-color="#404040"/>
|
|
670
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
671
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
672
|
+
</linearGradient>
|
|
673
|
+
<linearGradient id="paint92_linear_10849_9290" x1="-0.000358062" y1="12.0003" x2="24.0009" y2="12.0003" gradientUnits="userSpaceOnUse">
|
|
674
|
+
<stop stop-color="#404040"/>
|
|
675
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
676
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
677
|
+
</linearGradient>
|
|
678
|
+
<linearGradient id="paint93_linear_10849_9290" x1="-0.000358062" y1="11.9996" x2="24.0009" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
679
|
+
<stop stop-color="#404040"/>
|
|
680
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
681
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
682
|
+
</linearGradient>
|
|
683
|
+
<linearGradient id="paint94_linear_10849_9290" x1="0.000196826" y1="12" x2="24.0015" y2="12" gradientUnits="userSpaceOnUse">
|
|
684
|
+
<stop stop-color="#404040"/>
|
|
685
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
686
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
687
|
+
</linearGradient>
|
|
688
|
+
<linearGradient id="paint95_linear_10849_9290" x1="0.000196826" y1="12.0002" x2="24.0015" y2="12.0002" gradientUnits="userSpaceOnUse">
|
|
689
|
+
<stop stop-color="#404040"/>
|
|
690
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
691
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
692
|
+
</linearGradient>
|
|
693
|
+
<linearGradient id="paint96_linear_10849_9290" x1="0.000196826" y1="12.0001" x2="24.0015" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
694
|
+
<stop stop-color="#404040"/>
|
|
695
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
696
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
697
|
+
</linearGradient>
|
|
698
|
+
<linearGradient id="paint97_linear_10849_9290" x1="0.000196826" y1="11.9996" x2="24.0015" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
699
|
+
<stop stop-color="#404040"/>
|
|
700
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
701
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
702
|
+
</linearGradient>
|
|
703
|
+
<linearGradient id="paint98_linear_10849_9290" x1="0.000265458" y1="11.9996" x2="24.0016" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
704
|
+
<stop stop-color="#404040"/>
|
|
705
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
706
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
707
|
+
</linearGradient>
|
|
708
|
+
<linearGradient id="paint99_linear_10849_9290" x1="-0.000148787" y1="11.9997" x2="24.0011" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
709
|
+
<stop stop-color="#404040"/>
|
|
710
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
711
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
712
|
+
</linearGradient>
|
|
713
|
+
<linearGradient id="paint100_linear_10849_9290" x1="4.06619e-05" y1="11.9996" x2="24.0014" y2="11.9996" gradientUnits="userSpaceOnUse">
|
|
714
|
+
<stop stop-color="#404040"/>
|
|
715
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
716
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
717
|
+
</linearGradient>
|
|
718
|
+
<linearGradient id="paint101_linear_10849_9290" x1="0.000407556" y1="12.0001" x2="24.0017" y2="12.0001" gradientUnits="userSpaceOnUse">
|
|
719
|
+
<stop stop-color="#404040"/>
|
|
720
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
721
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
722
|
+
</linearGradient>
|
|
723
|
+
<linearGradient id="paint102_linear_10849_9290" x1="0.000273683" y1="11.9997" x2="24.0015" y2="11.9997" gradientUnits="userSpaceOnUse">
|
|
724
|
+
<stop stop-color="#404040"/>
|
|
725
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
726
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
727
|
+
</linearGradient>
|
|
728
|
+
<linearGradient id="paint103_linear_10849_9290" x1="1.52588e-05" y1="12" x2="24.0014" y2="12" gradientUnits="userSpaceOnUse">
|
|
729
|
+
<stop stop-color="#404040"/>
|
|
730
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
731
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
732
|
+
</linearGradient>
|
|
733
|
+
<linearGradient id="paint104_linear_10849_9290" x1="-0.000300981" y1="12" x2="24.001" y2="12" gradientUnits="userSpaceOnUse">
|
|
734
|
+
<stop stop-color="#404040"/>
|
|
735
|
+
<stop offset="0.5" stop-color="#FF7F50"/>
|
|
736
|
+
<stop offset="1" stop-color="#F7BEA1"/>
|
|
737
|
+
</linearGradient>
|
|
738
|
+
</defs>
|
|
739
|
+
</svg>
|