@oracle-agent/oracle 0.5.0 → 0.7.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 +10 -1
- package/bin/oracle-data-mcp.mjs +32 -0
- package/docs/cli.md +28 -0
- package/package.json +3 -3
- package/profiles/oracle/SOUL.md +10 -4
- package/public/oracle-splash/assets/hero/orb.avif +0 -0
- package/public/oracle-splash/assets/hero/orb.webm +0 -0
- package/public/oracle-splash/assets/llms/claude.svg +1 -0
- package/public/oracle-splash/assets/llms/codex.svg +1 -0
- package/public/oracle-splash/assets/llms/cursor-icon.svg +12 -0
- package/public/oracle-splash/assets/llms/cursor.svg +17 -0
- package/public/oracle-splash/assets/llms/deepseek.svg +1 -0
- package/public/oracle-splash/assets/llms/gemini.svg +1 -0
- package/public/oracle-splash/assets/llms/grok.svg +8 -0
- package/public/oracle-splash/assets/llms/hermes.png +0 -0
- package/public/oracle-splash/assets/llms/kimi-icon.svg +1 -0
- package/public/oracle-splash/assets/llms/kimi.svg +1 -0
- package/public/oracle-splash/assets/llms/manus.svg +18 -0
- package/public/oracle-splash/assets/llms/openclaw.svg +22 -0
- package/public/oracle-splash/assets/llms/perplexity.svg +1 -0
- package/public/oracle-splash/assets/llms/qwen.svg +1 -0
- package/public/oracle-splash/assets/llms/windsurf.svg +1 -0
- package/public/oracle-splash/assets/protocols/abcdex.png +0 -0
- package/public/oracle-splash/assets/protocols/across.png +0 -0
- package/public/oracle-splash/assets/protocols/aerodrome.png +0 -0
- package/public/oracle-splash/assets/protocols/balancer.png +0 -0
- package/public/oracle-splash/assets/protocols/cowswap.png +0 -0
- package/public/oracle-splash/assets/protocols/curve.png +0 -0
- package/public/oracle-splash/assets/protocols/dreamcash.png +0 -0
- package/public/oracle-splash/assets/protocols/felix.png +0 -0
- package/public/oracle-splash/assets/protocols/gmx.png +0 -0
- package/public/oracle-splash/assets/protocols/hyena.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperbeat.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperliquid.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperswap.png +0 -0
- package/public/oracle-splash/assets/protocols/jupiter.png +0 -0
- package/public/oracle-splash/assets/protocols/kinetiq.png +0 -0
- package/public/oracle-splash/assets/protocols/lfj.png +0 -0
- package/public/oracle-splash/assets/protocols/lifi.png +0 -0
- package/public/oracle-splash/assets/protocols/magic-eden.png +0 -0
- package/public/oracle-splash/assets/protocols/morpho.png +0 -0
- package/public/oracle-splash/assets/protocols/odos.png +0 -0
- package/public/oracle-splash/assets/protocols/oneinch.png +0 -0
- package/public/oracle-splash/assets/protocols/opensea.png +0 -0
- package/public/oracle-splash/assets/protocols/pancakeswap.png +0 -0
- package/public/oracle-splash/assets/protocols/paragon.png +0 -0
- package/public/oracle-splash/assets/protocols/paraswap.png +0 -0
- package/public/oracle-splash/assets/protocols/pendle.png +0 -0
- package/public/oracle-splash/assets/protocols/polymarket.png +0 -0
- package/public/oracle-splash/assets/protocols/quickswap.png +0 -0
- package/public/oracle-splash/assets/protocols/relay.png +0 -0
- package/public/oracle-splash/assets/protocols/stargate.png +0 -0
- package/public/oracle-splash/assets/protocols/tradexyz.png +0 -0
- package/public/oracle-splash/assets/protocols/uniswap.png +0 -0
- package/public/oracle-splash/assets/protocols/velodrome.png +0 -0
- package/public/oracle-splash/assets/protocols/ventuals.png +0 -0
- package/public/oracle-splash/assets/wordmarks/cowswap.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/curve.png +0 -0
- package/public/oracle-splash/assets/wordmarks/gmx.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/hyena.svg +7 -0
- package/public/oracle-splash/assets/wordmarks/kinetiq.svg +1 -0
- package/public/oracle-splash/assets/wordmarks/lfj.webp +0 -0
- package/public/oracle-splash/assets/wordmarks/magic-eden.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/morpho.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/odos.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/opensea.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/outcome.svg +16 -0
- package/public/oracle-splash/assets/wordmarks/paragon.svg +9 -0
- package/public/oracle-splash/assets/wordmarks/paraswap.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/xyz.svg +12 -0
- package/public/oracle-splash/index.html +156 -184
- package/skills/oracle-chat/SKILL.md +61 -0
- package/skills/oracle-chat/chain.SKILL.md +31 -0
- package/skills/oracle-chat/setup.SKILL.md +37 -0
- package/skins/oracle.yaml +52 -0
- package/src/cli/chain-catalog.mjs +215 -0
- package/src/cli/chain-state.mjs +74 -0
- package/src/cli/commands/chain.mjs +143 -0
- package/src/cli/commands/chat.mjs +268 -0
- package/src/cli/commands/model.mjs +37 -0
- package/src/cli/commands/setup.mjs +283 -0
- package/src/cli/first-run.mjs +3 -0
- package/src/cli/kernel.mjs +42 -3
- package/src/cli/messaging-platforms.mjs +209 -0
- package/src/cli/oracle-harness.py +148 -0
- package/src/cli/paths.mjs +5 -0
- package/src/cli/setup-state.mjs +168 -0
- package/src/data/catalog.mjs +11 -0
- package/src/data/desk-data.mjs +6 -0
- package/src/data/providers/rfq.mjs +15 -0
- package/src/index.mjs +7 -0
- package/src/rfq/intent.mjs +180 -0
- package/src/rfq/sources.mjs +181 -0
package/README.md
CHANGED
|
@@ -367,9 +367,18 @@ Oracle ships an installable 8-lane mesh for Hermes:
|
|
|
367
367
|
oracle-init # dry run -- shows exactly what it would do
|
|
368
368
|
oracle-init --apply # create profiles, install SOULs + skills, wire MCP config
|
|
369
369
|
npx oracle-data # keep running — MCP tools call the local read plane on :8787
|
|
370
|
-
|
|
370
|
+
oracle # plain ascii TTY on the same oracle profile as messaging
|
|
371
|
+
oracle model # choose provider/model; persona stays oracle
|
|
372
|
+
oracle chain use hyperliquid
|
|
373
|
+
oracle setup # telegram / discord / slack / other hermes messaging
|
|
371
374
|
```
|
|
372
375
|
|
|
376
|
+
Terminal and configured messaging channels are transports into the same Hermes
|
|
377
|
+
`oracle` profile. When a local operator/MCP is configured, an explicit owner
|
|
378
|
+
trade instruction can execute from either interface. The selected model never
|
|
379
|
+
bypasses signer-owned grants, allowlists, caps, MAC checks, simulation, or
|
|
380
|
+
receipt verification.
|
|
381
|
+
|
|
373
382
|
Lanes: `oracle` (router), `polymarket-agent`, `hyperliquid-agent`,
|
|
374
383
|
`robinhood-agent`, `solana-agent`, `bitcoin-agent`, `stable-agent`,
|
|
375
384
|
`protocol-builder`, plus `_template` for your own. Details in
|
package/bin/oracle-data-mcp.mjs
CHANGED
|
@@ -592,6 +592,32 @@ const tools = [
|
|
|
592
592
|
properties: { address: { type: "string" }, label: { type: "string" } },
|
|
593
593
|
},
|
|
594
594
|
},
|
|
595
|
+
{
|
|
596
|
+
name: "rfq_quote",
|
|
597
|
+
description:
|
|
598
|
+
"Create a cross-chain RFQ intent and fan it out to reviewed solver or venue sources. " +
|
|
599
|
+
"Returns firm quote objects with intentHash, firmQuoteHash, expiry, min receive, " +
|
|
600
|
+
"and unsigned executable artifacts. Never signs or broadcasts.",
|
|
601
|
+
inputSchema: {
|
|
602
|
+
type: "object",
|
|
603
|
+
required: ["fromChainId", "toChainId", "sellToken", "buyToken", "sellAmount", "receiver", "deadlineMs"],
|
|
604
|
+
properties: {
|
|
605
|
+
fromChainId: { type: "number" },
|
|
606
|
+
toChainId: { type: "number" },
|
|
607
|
+
sellToken: { type: "string" },
|
|
608
|
+
buyToken: { type: "string" },
|
|
609
|
+
sellAmount: { type: "string" },
|
|
610
|
+
receiver: { type: "string" },
|
|
611
|
+
deadlineMs: { type: "number" },
|
|
612
|
+
minBuyAmount: { type: "string" },
|
|
613
|
+
allowedSources: { type: "array", items: { type: "string" } },
|
|
614
|
+
allowedRouters: { type: "array", items: { type: "string" } },
|
|
615
|
+
slippageBps: { type: "number" },
|
|
616
|
+
decimalsIn: { type: "number" },
|
|
617
|
+
decimalsOut: { type: "number" },
|
|
618
|
+
},
|
|
619
|
+
},
|
|
620
|
+
},
|
|
595
621
|
{
|
|
596
622
|
name: "best_swap_route",
|
|
597
623
|
description:
|
|
@@ -821,6 +847,12 @@ async function deskCall(provider, op, args = {}) {
|
|
|
821
847
|
}
|
|
822
848
|
|
|
823
849
|
async function callTool(name, args = {}) {
|
|
850
|
+
if (name === "rfq_quote") {
|
|
851
|
+
const { normalizeRfqIntent } = await import("../src/rfq/intent.mjs");
|
|
852
|
+
const { requestRfqQuotes } = await import("../src/rfq/sources.mjs");
|
|
853
|
+
const intent = normalizeRfqIntent({ ...args, sources: args.sources ?? args.allowedSources });
|
|
854
|
+
return requestRfqQuotes(intent, { decimalsIn: args.decimalsIn, decimalsOut: args.decimalsOut });
|
|
855
|
+
}
|
|
824
856
|
// Routing runs IN-PROCESS rather than through the desk HTTP server. The router
|
|
825
857
|
// fans out to several aggregators itself, so proxying it through /data/call would
|
|
826
858
|
// add a hop and a second timeout budget for no benefit -- and it means routing
|
package/docs/cli.md
CHANGED
|
@@ -17,3 +17,31 @@ See also [connectors.md](./connectors.md).
|
|
|
17
17
|
| 2 | operator self-reported error |
|
|
18
18
|
| 3 | operator package not installed |
|
|
19
19
|
| 4 | data server not running |
|
|
20
|
+
|
|
21
|
+
## Chat surface
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
oracle # TTY: one lowercase oracle persona (hermes profile)
|
|
25
|
+
oracle --help # command help
|
|
26
|
+
oracle model # interactive provider/model picker
|
|
27
|
+
oracle -m <model> # launch this session on a selected model
|
|
28
|
+
oracle chain list # working chains
|
|
29
|
+
oracle chain use hyperliquid
|
|
30
|
+
oracle setup # telegram/discord/slack + hermes messaging menu
|
|
31
|
+
oracle setup telegram # writes TELEGRAM_BOT_TOKEN into profile .env
|
|
32
|
+
oracle setup messaging # full hermes gateway setup wizard
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Inside chat:
|
|
36
|
+
|
|
37
|
+
- `/chain` list or select build/trade chain
|
|
38
|
+
- `/setup` configure messaging platforms
|
|
39
|
+
- `/model` switch models; persona stays oracle
|
|
40
|
+
|
|
41
|
+
Terminal and configured messaging channels are transports into the same Hermes
|
|
42
|
+
profile. A configured local operator/MCP can execute an owner-confirmed action
|
|
43
|
+
from either interface. The interface and selected model never bypass grants,
|
|
44
|
+
allowlists, caps, MAC checks, simulation, or receipt verification.
|
|
45
|
+
|
|
46
|
+
Hosted remote models stay read/prepare-only. Local hermes + operator remain the
|
|
47
|
+
only signing path, and only via child process.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oracle-agent/oracle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Oracle: prepare-only multichain agent control plane. Policy-bounded intents for a user-signed wallet. Self-custody by default — the public package never takes your key. Built for Hermes; no model key required.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,8 +33,7 @@
|
|
|
33
33
|
"oracle-init": "./bin/oracle-init.mjs",
|
|
34
34
|
"oracle-upgrade": "./bin/oracle-upgrade.mjs",
|
|
35
35
|
"oracle-scan": "./bin/oracle-scan.mjs",
|
|
36
|
-
"oracle-route": "./bin/oracle-route.mjs"
|
|
37
|
-
"oracle": "./bin/oracle.mjs"
|
|
36
|
+
"oracle-route": "./bin/oracle-route.mjs"
|
|
38
37
|
},
|
|
39
38
|
"exports": {
|
|
40
39
|
".": "./src/index.mjs",
|
|
@@ -88,6 +87,7 @@
|
|
|
88
87
|
"src/",
|
|
89
88
|
"profiles/",
|
|
90
89
|
"skills/",
|
|
90
|
+
"skins/",
|
|
91
91
|
"plugins/",
|
|
92
92
|
"public/",
|
|
93
93
|
"artifacts/",
|
package/profiles/oracle/SOUL.md
CHANGED
|
@@ -68,14 +68,20 @@ the data plane). If it stays ambiguous, ask. Do not guess a chain.
|
|
|
68
68
|
4. **Meme sniping is still guarded.** Fast scan is allowed; blind broadcast is
|
|
69
69
|
not. Resolve exact token/chain, sell-sim when possible, quote net of gas,
|
|
70
70
|
cap spend/fees, and prepare a user-signed ticket.
|
|
71
|
-
5. **
|
|
71
|
+
5. **Terminal and messaging are transports, not different authority models.**
|
|
72
|
+
Bare `oracle` launches this same profile. An owner-confirmed action may route
|
|
73
|
+
through the configured local operator/MCP from either terminal or a messaging
|
|
74
|
+
channel. All signer-owned grants, allowlists, caps, MAC checks, simulations,
|
|
75
|
+
and receipt verification remain mandatory. Changing `/model` never changes
|
|
76
|
+
those walls.
|
|
77
|
+
6. **A grant is authorization; your reasoning is not.** If an action falls
|
|
72
78
|
outside the active grant — chain, venue, destination, spend cap, TTL — refuse
|
|
73
79
|
and say which bound it broke.
|
|
74
|
-
|
|
80
|
+
7. **Receipts or it didn't happen.** No transaction hash, no receipt, no balance
|
|
75
81
|
delta → the action did not succeed. Say so plainly.
|
|
76
|
-
|
|
82
|
+
8. **Never invent chain facts.** If it did not come from a live read, label it
|
|
77
83
|
`unknown`.
|
|
78
|
-
|
|
84
|
+
9. **Balance uses one source of truth.** `/balance` and plain-language balance
|
|
79
85
|
requests call `portfolio_snapshot`; use `portfolio_history` and
|
|
80
86
|
`portfolio_value_graph` for historical requests. Report `knownUsd` as
|
|
81
87
|
incomplete whenever a provider, address, price, token/NFT indexer, or chain
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="110" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 512 110"><path fill="#D97757" d="m21.564 73.123 21.62-12.132.361-1.057-.361-.584h-1.058l-3.617-.223-12.354-.334-10.712-.445-10.379-.556-2.615-.557L0 54.007l.25-1.613 2.199-1.475 3.144.278 6.956.473 10.434.724 7.568.445 11.214 1.168h1.78l.25-.723-.611-.445-.473-.445-10.796-7.318-11.687-7.735-6.12-4.452-3.312-2.254-1.67-2.115-.723-4.619 3.005-3.31 4.035.277 1.03.279 4.09 3.144 8.736 6.761 11.408 8.403 1.67 1.391.668-.473.083-.333-.751-1.253-6.205-11.213-6.622-11.408-2.95-4.73-.779-2.838c-.278-1.169-.473-2.143-.473-3.34L28.771.613 30.663 0l4.563.612 1.92 1.67 2.838 6.483 4.591 10.211 7.123 13.885 2.087 4.118 1.113 3.812.417 1.168h.724v-.667l.584-7.819 1.085-9.6 1.058-12.354.361-3.478 1.725-4.173 3.423-2.254 2.67 1.28 2.2 3.144-.307 2.031-1.308 8.487-2.56 13.3-1.67 8.904h.975l1.113-1.113 4.507-5.983 7.569-9.46 3.339-3.756 3.895-4.146 2.504-1.976h4.73l3.478 5.176-1.558 5.342-4.869 6.177-4.035 5.231-5.787 7.79-3.617 6.234.334.5.862-.083 13.078-2.782 7.067-1.28 8.431-1.447 3.812 1.78.417 1.81-1.502 3.7-9.015 2.226-10.574 2.114-15.748 3.729-.195.139.222.278 7.096.668 3.033.167h7.429l13.829 1.03 3.617 2.392 2.17 2.922-.362 2.226-5.565 2.838-7.512-1.78-17.53-4.174-6.01-1.503h-.835v.5l5.009 4.898 9.182 8.292L97.776 88.12l.584 2.644-1.475 2.087-1.558-.223-10.1-7.596-3.896-3.423-8.82-7.429h-.584v.78l2.03 2.977 10.741 16.138.556 4.953-.779 1.613-2.782.974-3.06-.556-6.29-8.82-6.482-9.934-5.231-8.904-.64.362-3.089 33.25-1.447 1.698-3.339 1.28-2.782-2.115-1.475-3.423 1.475-6.76 1.78-8.821 1.448-7.012 1.307-8.71.78-2.893-.056-.195-.64.084-6.567 9.015-9.989 13.495-7.902 8.459-1.892.75-3.283-1.697.306-3.032 1.836-2.7 10.935-13.912 6.595-8.625 4.257-4.98-.028-.724h-.25L18.92 85.06l-5.175.668-2.226-2.087.279-3.423 1.057-1.113 8.737-6.01-.028.028Z"/><path fill="#ffff" d="M179.413 93.351c-13.968 0-23.512-7.79-28.02-19.783a53.395 53.395 0 0 1-3.422-19.56c0-20.118 9.015-34.086 28.938-34.086 13.383 0 21.647 5.844 26.35 19.784h5.731l-.779-19.227c-8.013-5.175-18.03-7.791-30.217-7.791-17.168 0-31.776 7.68-39.9 21.536a46.662 46.662 0 0 0-6.178 24.068c0 15.387 7.263 29.022 20.897 36.59a48.72 48.72 0 0 0 24.29 5.732c13.3 0 23.846-2.532 33.195-6.956l2.42-21.203h-5.842c-3.506 9.683-7.68 15.498-14.608 18.587-3.395 1.53-7.68 2.31-12.855 2.31Zm60.24-73.429.557-9.46h-3.952l-17.585 5.287v2.866l7.791 3.617v66.167c0 4.507-2.31 5.509-8.347 6.26v4.842h29.911v-4.842c-6.065-.751-8.347-1.753-8.347-6.26V19.95l-.028-.028Zm118.95 80.692h2.31l20.228-3.84V91.82l-2.838-.222c-4.73-.446-5.955-1.42-5.955-5.287V51.03l.557-11.324h-3.2L350.59 42.46v4.842l1.864.334c5.175.75 6.706 2.198 6.706 5.815v31.442c-4.953 3.84-9.683 6.26-15.304 6.26-6.233 0-10.1-3.172-10.1-10.573V51.058l.556-11.325h-3.283l-19.143 2.755v4.842l1.975.333c5.176.752 6.706 2.199 6.706 5.816v29.02c0 12.3 6.956 18.142 18.03 18.142 8.459 0 15.387-4.507 20.59-10.768l-.556 10.768-.028-.027Zm-55.593-39.15c0-15.72-8.348-21.758-23.429-21.758-13.3 0-22.955 5.509-22.955 14.635 0 2.727.974 4.814 2.95 6.26l10.128-1.335c-.446-3.06-.668-4.925-.668-5.704 0-5.175 2.754-7.79 8.347-7.79 8.264 0 12.438 5.815 12.438 15.164v3.06l-20.869 6.261c-6.956 1.892-10.907 3.534-13.55 7.374a13.912 13.912 0 0 0-1.948 7.79c0 8.904 6.121 15.193 16.583 15.193 7.569 0 14.275-3.423 20.118-9.906 2.087 6.483 5.286 9.906 10.99 9.906 4.62 0 8.793-1.865 12.521-5.51l-1.113-3.84a17.782 17.782 0 0 1-4.813.668c-3.2 0-4.73-2.532-4.73-7.484V61.464ZM276.298 91.71c-5.704 0-9.238-3.311-9.238-9.127 0-3.95 1.865-6.26 5.843-7.596l16.918-5.37v16.25c-5.398 4.09-8.57 5.843-13.523 5.843Zm176.13 5.064V91.82l-2.866-.222c-4.73-.446-5.927-1.42-5.927-5.287v-66.39l.557-9.46h-3.98l-17.585 5.287v2.866l7.791 3.617V43.99a24.57 24.57 0 0 0-14.941-4.285c-17.474 0-31.108 13.3-31.108 33.194 0 16.39 9.794 27.714 25.932 27.714 8.348 0 15.61-4.063 20.117-10.351l-.556 10.35h2.337l20.229-3.84ZM415.81 46.3c8.348 0 14.608 4.842 14.608 13.745v25.043a20.034 20.034 0 0 1-14.496 5.843c-11.965 0-18.03-9.46-18.03-22.093 0-14.19 6.928-22.538 17.918-22.538Zm79.384 12.521c-1.558-7.346-6.066-11.52-12.326-11.52-9.35 0-15.833 7.04-15.833 17.14 0 14.943 7.903 24.625 20.674 24.625a23.93 23.93 0 0 0 20.563-12.103L512 77.964c-1.67 12.967-13.411 22.65-27.825 22.65-16.917 0-28.575-12.521-28.575-30.33 0-17.946 12.66-30.578 29.577-30.578 12.632 0 21.536 7.596 24.402 20.785l-44.074 13.522V68.06l29.689-9.21v-.028Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="91" height="24" fill="#fff" fill-rule="evenodd" viewBox="0 0 91 24" xmlns="http://www.w3.org/2000/svg"><title>Codex</title><path d="M79.915 14.964l-5.53-7.548h3.33l3.88 5.256 3.88-5.256h3.24l-5.5 7.486 5.683 7.792h-3.361l-4.003-5.5-4.064 5.5H74.2l5.715-7.73zM66.368 23c-1.345 0-2.567-.326-3.667-.978-1.08-.652-1.935-1.579-2.567-2.78-.631-1.203-.947-2.608-.947-4.217 0-1.59.316-2.974.947-4.156.652-1.202 1.518-2.129 2.597-2.78 1.08-.652 2.272-.978 3.575-.978 1.813 0 3.33.55 4.553 1.65 1.222 1.1 1.956 2.597 2.2 4.491.082.693.112 1.477.092 2.353H62.09c.06 1.548.489 2.76 1.283 3.636.815.876 1.793 1.314 2.933 1.314h.184c.855 0 1.599-.224 2.23-.672.632-.448 1.06-1.06 1.284-1.833h2.933a6.147 6.147 0 01-2.322 3.575C69.433 22.54 68.018 23 66.368 23zm3.819-9.687c-.082-1.16-.469-2.077-1.161-2.75-.693-.692-1.558-1.038-2.597-1.038h-.214c-.978 0-1.844.315-2.597.947-.734.611-1.212 1.558-1.437 2.841h8.006zM47.834 23c-1.324 0-2.516-.326-3.575-.978-1.039-.652-1.854-1.579-2.444-2.78-.591-1.202-.887-2.598-.887-4.187 0-1.588.306-2.984.917-4.186.611-1.201 1.446-2.128 2.506-2.78 1.08-.652 2.281-.978 3.605-.978 1.08 0 2.047.224 2.903.672.855.449 1.497 1.019 1.925 1.711V1.306h2.903v21.388h-2.903v-2.108c-.408.672-1.06 1.242-1.956 1.711-.896.469-1.894.703-2.994.703zm.58-2.475c.856 0 1.62-.234 2.292-.703.672-.468 1.192-1.11 1.558-1.925.387-.835.58-1.782.58-2.841 0-1.06-.193-1.997-.58-2.812-.366-.835-.886-1.487-1.558-1.955a3.911 3.911 0 00-2.292-.703h-.183c-1.304 0-2.363.51-3.178 1.528-.794 1.018-1.191 2.332-1.191 3.941 0 1.61.397 2.924 1.191 3.942.815 1.019 1.874 1.528 3.178 1.528h.183zM31.022 23c-1.406 0-2.679-.337-3.82-1.009a7.367 7.367 0 01-2.688-2.841c-.652-1.223-.978-2.587-.978-4.095 0-1.507.326-2.862.978-4.064.651-1.222 1.548-2.17 2.688-2.841 1.141-.693 2.414-1.04 3.82-1.04 1.405 0 2.668.347 3.789 1.04 1.14.672 2.037 1.62 2.688 2.841.652 1.202.978 2.557.978 4.064 0 1.508-.326 2.872-.977 4.095a7.367 7.367 0 01-2.69 2.841C33.69 22.663 32.428 23 31.023 23zm.06-2.476c.857 0 1.62-.224 2.293-.672.672-.468 1.201-1.11 1.589-1.925.386-.835.58-1.792.58-2.872 0-1.08-.194-2.027-.58-2.841-.388-.836-.917-1.477-1.59-1.925a3.911 3.911 0 00-2.291-.703H30.9c-1.304 0-2.373.51-3.209 1.528-.814.998-1.222 2.312-1.222 3.941 0 1.63.407 2.954 1.222 3.972.835.998 1.905 1.497 3.209 1.497h.183zM12.053 23c-2.037 0-3.82-.469-5.348-1.406-1.507-.957-2.668-2.271-3.483-3.941S2 14.098 2 12c0-2.098.407-3.982 1.222-5.653.835-1.67 2.017-2.974 3.545-3.91C8.294 1.478 10.057 1 12.053 1c1.609 0 3.055.316 4.338.947 1.304.611 2.363 1.477 3.178 2.597.815 1.1 1.304 2.374 1.467 3.82h-3.117c-.244-1.365-.876-2.465-1.894-3.3-1.019-.856-2.302-1.283-3.85-1.283h-.245c-1.385 0-2.597.356-3.636 1.069-1.039.713-1.833 1.69-2.383 2.933-.55 1.243-.825 2.648-.825 4.217 0 1.568.275 2.974.825 4.216.55 1.243 1.344 2.22 2.383 2.934 1.04.713 2.251 1.07 3.636 1.07h.245c1.548 0 2.831-.418 3.85-1.254 1.039-.855 1.68-1.976 1.925-3.36h3.086c-.184 1.446-.683 2.729-1.497 3.85-.795 1.12-1.844 1.996-3.148 2.627-1.303.611-2.75.917-4.338.917z"></path></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="466.73" height="532.09" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 466.73 532.09">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.6.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 9) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: #edecec;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<path class="st0" d="M457.43,125.94L244.42,2.96c-6.84-3.95-15.28-3.95-22.12,0L9.3,125.94c-5.75,3.32-9.3,9.46-9.3,16.11v247.99c0,6.65,3.55,12.79,9.3,16.11l213.01,122.98c6.84,3.95,15.28,3.95,22.12,0l213.01-122.98c5.75-3.32,9.3-9.46,9.3-16.11v-247.99c0-6.65-3.55-12.79-9.3-16.11h-.01ZM444.05,151.99l-205.63,356.16c-1.39,2.4-5.06,1.42-5.06-1.36v-233.21c0-4.66-2.49-8.97-6.53-11.31L24.87,145.67c-2.4-1.39-1.42-5.06,1.36-5.06h411.26c5.84,0,9.49,6.33,6.57,11.39h-.01Z"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="1655.29" height="278.83" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1655.29 278.83">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.6.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 9) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: #edecec;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<path class="st0" d="M139.03,4.61h90.64v49.93h-87.57c-47.24,0-84.11,27.27-84.11,84.88s36.87,84.88,84.11,84.88h87.57v49.93h-94.48c-79.12,0-135.19-46.48-135.19-134.82S59.91,4.61,139.03,4.61Z"/>
|
|
12
|
+
<path class="st0" d="M275.75,4.61h56.07v164.76c0,41.09,18.82,60.3,62.99,60.3s62.99-19.2,62.99-60.3V4.61h56.07v176.28c0,59.91-38.02,97.94-119.06,97.94s-119.06-38.41-119.06-98.32V4.61Z"/>
|
|
13
|
+
<path class="st0" d="M806.9,81.04c0,29.96-17.28,53-40.33,62.99v.77c24.2,3.46,36.49,20.74,36.87,44.17l1.15,85.26h-56.07l-1.15-76.04c-.38-16.9-10.37-27.27-30.34-27.27h-93.33v103.31h-56.07V4.61h154.78c50.7,0,84.49,25.73,84.49,76.43h0ZM750.45,88.72c0-23.04-12.29-35.72-35.33-35.72h-91.41v71.43h92.17c21.12,0,34.57-12.67,34.57-35.72h0Z"/>
|
|
14
|
+
<path class="st0" d="M1018.9,195.49c0-19.2-12.29-27.27-30.72-28.8l-62.22-5.76c-53.77-4.99-81.81-26.12-81.81-77.2S878.72,4.61,928.26,4.61h137.49v48.39h-133.65c-19.2,0-31.49,9.99-31.49,29.19s12.67,28.42,31.88,29.96l63.37,5.38c48.01,4.22,79.5,26.12,79.5,77.58s-33.41,79.12-80.65,79.12h-143.64v-48.39h138.26c18.05,0,29.57-12.29,29.57-30.34h0Z"/>
|
|
15
|
+
<path class="st0" d="M1239.35,0c84.49,0,137.88,54.15,137.88,139.03s-55.69,139.8-140.18,139.8-137.88-54.92-137.88-139.8S1154.86,0,1239.35,0ZM1319.24,139.41c0-56.84-33.03-90.25-81.04-90.25s-81.04,33.41-81.04,90.25,33.03,90.25,81.04,90.25,81.04-33.41,81.04-90.25Z"/>
|
|
16
|
+
<path class="st0" d="M1655.29,81.04c0,29.96-17.28,53-40.33,62.99v.77c24.2,3.46,36.49,20.74,36.87,44.17l1.15,85.26h-56.07l-1.15-76.04c-.38-16.9-10.37-27.27-30.34-27.27h-93.33v103.31h-56.07V4.61h154.78c50.7,0,84.49,25.73,84.49,76.43h0ZM1598.83,88.72c0-23.04-12.29-35.72-35.33-35.72h-91.41v71.43h92.17c21.12,0,34.57-12.67,34.57-35.72h0Z"/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="241" height="44" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 241 44"><path fill="#4D6BFE" d="M57.25 3.64c-.61-.31-.88.27-1.24.57-.12.09-.22.22-.33.33-.89.98-1.94 1.62-3.31 1.54-1.99-.11-3.7.53-5.21 2.08-.32-1.92-1.39-3.06-3.01-3.8-.85-.38-1.7-.76-2.3-1.59-.41-.6-.53-1.26-.73-1.91-.14-.39-.27-.79-.71-.86-.48-.07-.67.34-.86.68-.75 1.41-1.05 2.96-1.02 4.52.07 3.53 1.53 6.34 4.43 8.34.33.22.42.45.31.79-.19.69-.43 1.35-.64 2.04-.13.44-.33.54-.79.35-1.59-.68-2.97-1.68-4.19-2.9-2.06-2.03-3.93-4.28-6.26-6.04-.54-.41-1.09-.79-1.66-1.15-2.37-2.35.32-4.28.94-4.51.65-.24.22-1.06-1.88-1.06-2.1.01-4.02.73-6.48 1.69-.35.14-.73.25-1.12.33-2.22-.43-4.53-.52-6.95-.25C9.7 3.35 6.07 5.54 3.4 9.27.19 13.76-.56 18.87.36 24.19c.97 5.61 3.78 10.25 8.1 13.88 4.48 3.77 9.64 5.61 15.52 5.26 3.58-.21 7.56-.7 12.04-4.57 1.14.57 2.32.8 4.29.98 1.52.14 2.98-.08 4.12-.32 1.77-.38 1.65-2.05 1-2.36-5.19-2.46-4.05-1.46-5.09-2.27 2.64-3.19 6.62-6.49 8.18-17.2.12-.85.02-1.39 0-2.08-.01-.42.08-.58.55-.63 1.31-.15 2.57-.51 3.73-1.16 3.36-1.88 4.72-4.95 5.04-8.64.05-.57-.01-1.15-.59-1.44ZM27.91 36.83c-5.03-4.03-7.47-5.36-8.48-5.3-.94.06-.78 1.15-.57 1.87.22.71.5 1.2.9 1.82.27.41.46 1.02-.28 1.48-1.62 1.02-4.44-.35-4.57-.41-3.28-1.97-6.02-4.57-7.96-8.13-1.86-3.42-2.95-7.09-3.13-11-.04-.95.23-1.28 1.15-1.46 1.22-.22 2.47-.27 3.69-.09 5.14.76 9.51 3.1 13.18 6.81 2.1 2.11 3.68 4.64 5.31 7.1 1.74 2.62 3.6 5.11 5.98 7.16.84.72 1.51 1.26 2.15 1.66-1.93.22-5.16.27-7.37-1.51Zm2.42-15.81c0-.42.33-.76.74-.76.1 0 .18.02.26.05.1.04.2.1.27.18.13.14.21.33.21.53 0 .42-.33.75-.75.75-.41 0-.73-.33-.73-.75Zm7.49 3.91c-.48.21-.96.38-1.42.4-.72.03-1.5-.26-1.92-.62-.66-.57-1.13-.88-1.33-1.87-.09-.42-.04-1.07.04-1.44.17-.8-.02-1.32-.58-1.79-.45-.38-1.03-.49-1.66-.49-.23 0-.45-.1-.61-.19-.27-.13-.48-.46-.28-.88.07-.13.39-.45.47-.51.85-.5 1.84-.34 2.76.04.85.35 1.49 1 2.41 1.92.95 1.11 1.12 1.41 1.65 2.24.43.65.81 1.32 1.08 2.09.16.47-.05.87-.61 1.1ZM143.32 34.23h-2.49v-3.86h2.49c1.54 0 3.1-.38 4.11-1.45 1.01-1.07 1.38-2.71 1.38-4.35 0-1.63-.37-3.27-1.38-4.34-1.01-1.07-2.57-1.45-4.11-1.45-1.55 0-3.1.38-4.11 1.45-1.02 1.07-1.38 2.71-1.38 4.34v15.87h-4.37V14.92h4.37v1.62h.8c.08-.09.17-.18.27-.27 1.09-1 2.76-1.35 4.42-1.35 2.57 0 5.16.64 6.85 2.42 1.68 1.78 2.29 4.52 2.29 7.24 0 2.71-.61 5.45-2.29 7.23-1.69 1.79-4.28 2.42-6.85 2.42ZM76.79 15.59h2.49v3.86h-2.49c-1.54 0-3.1.38-4.11 1.46-1.01 1.07-1.38 2.71-1.38 4.34s.37 3.27 1.38 4.34c1.01 1.07 2.57 1.46 4.11 1.46 1.55 0 3.1-.39 4.11-1.46 1.02-1.07 1.38-2.71 1.38-4.34V9.39h4.37v25.52h-4.37v-1.63h-.8c-.08.1-.17.19-.27.27-1.09 1-2.76 1.36-4.42 1.36-2.57 0-5.16-.64-6.85-2.43-1.68-1.78-2.29-4.51-2.29-7.23 0-2.72.61-5.45 2.29-7.24 1.69-1.78 4.28-2.42 6.85-2.42ZM108.59 24.91v1.55H96.95v-3.1h7.72c-.18-1.13-.59-2.18-1.31-2.94-1.06-1.11-2.67-1.51-4.28-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.28-1.5.15-.16.28-.33.4-.51h4.32c-.37 1.34-.98 2.55-1.88 3.5-1.75 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.11-2.51c-1.76-1.85-2.39-4.68-2.39-7.49 0-2.81.63-5.64 2.39-7.49 1.75-1.84 4.44-2.5 7.11-2.5s5.37.66 7.12 2.5c1.76 1.85 2.39 4.68 2.39 7.49ZM130.52 24.91v1.55h-11.64v-3.1h7.73c-.18-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.66-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.27-1.5.15-.16.29-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.88 3.5-1.76 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.76-1.84 4.45-2.5 7.12-2.5s5.36.66 7.12 2.5c1.75 1.85 2.38 4.68 2.38 7.49ZM164.9 34.91c2.67 0 5.36-.39 7.11-1.48 1.76-1.09 2.39-2.76 2.39-4.42 0-1.66-.63-3.33-2.39-4.42-1.75-1.09-4.44-1.48-7.11-1.48h.09c-1.14 0-2.29-.15-3.03-.58-.75-.42-1.02-1.07-1.02-1.71 0-.65.27-1.29 1.02-1.72.74-.42 1.89-.57 3.03-.57s2.29.15 3.04.57c.75.43 1.01 1.07 1.01 1.72h4.45c0-1.66-.57-3.33-2.15-4.42-1.59-1.09-4.02-1.48-6.44-1.48-2.42 0-4.85.39-6.44 1.48-1.59 1.09-2.16 2.76-2.16 4.42 0 1.66.57 3.33 2.16 4.42 1.59 1.09 4.02 1.48 6.44 1.48 1.26 0 2.63.15 3.46.57.83.42 1.12 1.07 1.12 1.72 0 .64-.29 1.29-1.12 1.71-.83.42-2.1.58-3.36.58-1.26 0-2.53-.16-3.35-.58-.83-.42-1.13-1.07-1.13-1.71h-5.12c0 1.66.63 3.33 2.38 4.42 1.75 1.09 4.44 1.48 7.12 1.48ZM196.33 24.91v1.55h-11.64v-3.1h7.73c-.18-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.66-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.27-1.5.15-.16.29-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.88 3.5-1.76 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.76-1.84 4.45-2.5 7.12-2.5s5.36.66 7.12 2.5c1.75 1.85 2.38 4.68 2.38 7.49ZM218.27 24.91v1.55h-11.64v-3.1h7.73c-.19-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.67-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.06 1.1-1.43 2.8-1.43 4.49 0 1.69.37 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.6 0 3.22-.39 4.27-1.5.15-.16.28-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.89 3.5-1.75 1.85-4.44 2.51-7.11 2.51s-5.37-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.75-1.84 4.45-2.5 7.12-2.5s5.36.66 7.11 2.5c1.76 1.85 2.39 4.68 2.39 7.49ZM221.211 8.5h4.371v26.416h-4.371zM233.04 24.31l7.17 10.6h-5.42l-7.17-10.6 7.17-8.5h5.42l-7.17 8.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="344" height="127" viewBox="0 0 344 127" xmlns="http://www.w3.org/2000/svg" fill="none"><mask id="a" width="344" height="127" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#fff" fill-rule="evenodd" d="M234.123 41.22c1.366 3.115 2.049 6.444 2.049 9.986 0-3.542.661-6.87 1.984-9.986 1.365-3.115 3.2-5.824 5.504-8.128 2.305-2.305 5.014-4.118 8.129-5.441 3.115-1.366 6.444-2.048 9.985-2.048-3.541 0-6.87-.662-9.985-1.985-3.115-1.365-5.824-3.2-8.129-5.504-2.304-2.304-4.139-5.014-5.504-8.129-1.323-3.115-1.984-6.443-1.984-9.985 0 3.542-.683 6.87-2.049 9.985-1.322 3.115-3.136 5.825-5.44 8.129-2.304 2.304-5.014 4.14-8.129 5.505-3.115 1.322-6.443 1.984-9.985 1.984 3.542 0 6.87.682 9.985 2.048 3.115 1.323 5.825 3.136 8.129 5.44 2.304 2.305 4.118 5.014 5.44 8.13Zm-207.97 81.92c5.223 2.151 10.792 3.226 16.706 3.226 5.991 0 11.444-.96 16.36-2.88 4.916-1.92 9.179-4.647 12.789-8.18 3.61-3.533 6.413-7.719 8.41-12.558 1.997-4.916 2.996-10.293 2.996-16.13v-.115c0-1.075-.077-2.074-.23-2.996a41.736 41.736 0 0 0-.346-2.88H43.09v9.563h29.955c-.308 4.608-1.383 8.602-3.226 11.982-1.767 3.303-4.033 6.029-6.798 8.18-2.688 2.15-5.799 3.763-9.332 4.839-3.456.998-7.066 1.498-10.83 1.498-4.148 0-8.18-.769-12.097-2.305a32.1 32.1 0 0 1-10.485-6.682c-2.995-2.919-5.376-6.414-7.143-10.484-1.766-4.148-2.65-8.795-2.65-13.941 0-5.146.845-9.755 2.535-13.826 1.767-4.147 4.148-7.642 7.143-10.484a30.841 30.841 0 0 1 10.37-6.682 34.063 34.063 0 0 1 12.327-2.304c3.15 0 6.145.422 8.987 1.267 2.842.768 5.453 1.882 7.834 3.341 2.458 1.46 4.57 3.226 6.337 5.3l7.143-7.374c-3.456-3.917-7.873-6.951-13.25-9.102-5.3-2.15-10.983-3.225-17.051-3.225-5.837 0-11.368 1.075-16.59 3.225a43.198 43.198 0 0 0-13.71 9.102c-3.918 3.917-6.99 8.487-9.218 13.71C1.114 71.448 0 77.132 0 83.278s1.114 11.828 3.341 17.051c2.228 5.223 5.3 9.793 9.217 13.711a41.862 41.862 0 0 0 13.595 9.101Zm77.905-.806c4.454 2.688 9.524 4.032 15.208 4.032 6.451 0 11.866-1.459 16.245-4.378 4.378-2.918 7.719-6.605 10.023-11.06l-8.756-4.148c-1.613 2.919-3.841 5.377-6.682 7.374-2.766 1.997-6.222 2.995-10.37 2.995-3.226 0-6.336-.806-9.332-2.419-2.995-1.613-5.453-4.033-7.373-7.258-1.659-2.788-2.602-6.206-2.827-10.254h46.262c.077-.384.115-.884.115-1.498.077-.615.115-1.19.115-1.728 0-5.838-1.152-11.022-3.456-15.554-2.228-4.532-5.454-8.065-9.678-10.6-4.225-2.611-9.255-3.917-15.093-3.917-5.761 0-10.791 1.46-15.093 4.378-4.301 2.842-7.642 6.644-10.023 11.406-2.305 4.762-3.457 9.947-3.457 15.554 0 5.991 1.23 11.329 3.687 16.015 2.535 4.685 6.03 8.372 10.485 11.06Zm-3.277-33.527c.362-1.71.879-3.323 1.548-4.839 1.46-3.303 3.572-5.914 6.337-7.834 2.842-1.997 6.145-2.996 9.908-2.996 3.149 0 5.799.538 7.95 1.613 2.151.999 3.917 2.304 5.3 3.917 1.382 1.613 2.381 3.342 2.995 5.185.615 1.767.96 3.418 1.037 4.954h-35.075Zm54.716-23.042v58.758h10.369v-32.72c0-3.226.653-6.26 1.959-9.102 1.306-2.842 3.111-5.108 5.415-6.798 2.304-1.766 4.916-2.65 7.834-2.65 4.071 0 7.22 1.191 9.448 3.572 2.304 2.304 3.456 6.26 3.456 11.867v35.831h10.254v-32.95c0-3.227.653-6.222 1.959-8.987 1.305-2.842 3.11-5.108 5.415-6.798 2.304-1.69 4.915-2.535 7.834-2.535 4.148 0 7.335 1.153 9.563 3.457 2.304 2.304 3.456 6.26 3.456 11.867v35.946h10.254V86.849c0-6.836-1.69-12.367-5.069-16.591-3.303-4.224-8.488-6.337-15.554-6.337-4.685 0-8.718 1.075-12.097 3.226-3.38 2.15-6.068 4.877-8.065 8.18-1.383-3.38-3.649-6.106-6.798-8.18-3.072-2.15-6.797-3.226-11.175-3.226-2.458 0-4.916.5-7.374 1.498-2.381.922-4.493 2.189-6.337 3.802-1.843 1.536-3.302 3.264-4.378 5.185h-.461v-8.641h-9.908Zm96.548 0v58.758h10.254V65.765h-10.254Zm-.115-12.443c1.459 1.382 3.188 2.073 5.185 2.073 2.073 0 3.802-.69 5.184-2.073 1.383-1.46 2.074-3.188 2.074-5.185 0-2.074-.691-3.802-2.074-5.184-1.382-1.46-3.111-2.19-5.184-2.19-1.997 0-3.726.73-5.185 2.19-1.383 1.382-2.074 3.11-2.074 5.184 0 1.997.691 3.725 2.074 5.185Zm19.999 12.443v58.758h10.369v-32.72c0-3.15.653-6.107 1.959-8.872 1.383-2.842 3.264-5.146 5.645-6.912 2.381-1.844 5.185-2.766 8.411-2.766 4.301 0 7.758 1.191 10.369 3.572 2.611 2.304 3.917 6.26 3.917 11.867v35.831h10.369V86.849c0-6.913-1.843-12.443-5.53-16.591-3.687-4.224-9.102-6.337-16.245-6.337-4.224 0-8.065 1.037-11.521 3.111-3.456 2.074-5.953 4.532-7.489 7.374h-.461v-8.641h-9.793Zm59.743 0v58.758h10.254V65.765h-10.254Zm-.115-12.443c1.459 1.382 3.188 2.073 5.185 2.073 2.073 0 3.802-.69 5.184-2.073 1.383-1.46 2.074-3.188 2.074-5.185 0-2.074-.691-3.802-2.074-5.184-1.382-1.46-3.111-2.19-5.184-2.19-1.997 0-3.726.73-5.185 2.19-1.382 1.382-2.074 3.11-2.074 5.184 0 1.997.692 3.725 2.074 5.185Z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path fill="url(#b)" d="M-158.25-455.443h832.09v685.324h-832.09z"/></g><defs><linearGradient id="b" x1="-57.405" x2="354.97" y1="130.441" y2="30.369" gradientUnits="userSpaceOnUse"><stop stop-color="#439DDF"/><stop offset=".524" stop-color="#4F87ED"/><stop offset=".781" stop-color="#9476C5"/><stop offset=".888" stop-color="#BC688E"/><stop offset="1" stop-color="#D6645D"/></linearGradient></defs></svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="1024" height="400" viewBox="0 0 1024 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M878.447 292.85V108.548H907.572V230.18L969.173 159.399H1004.48L949.069 220.058L1005 292.85H970.204L924.902 230.304L907.572 230.18V292.85H878.447Z" fill="white"/>
|
|
3
|
+
<path d="M790.12 295.947C746.819 295.947 723.364 265.23 723.364 225.995C723.364 186.502 746.819 156.043 790.12 156.043C833.679 156.043 856.876 186.502 856.876 225.995C856.876 265.23 833.679 295.947 790.12 295.947ZM753.778 225.995C753.778 256.454 770.274 271.683 790.12 271.683C810.224 271.683 826.462 256.454 826.462 225.995C826.462 195.536 810.224 180.049 790.12 180.049C770.274 180.049 753.778 195.536 753.778 225.995Z" fill="white"/>
|
|
4
|
+
<path d="M642.304 292.85V180.565L666.789 159.399H718.854V184.179H671.429V292.85H642.304Z" fill="white"/>
|
|
5
|
+
<path d="M530.938 296.258C475.424 296.258 442.325 255.938 442.325 200.957C442.325 145.46 476.606 104.16 532.021 104.16C575.322 104.16 607.025 126.359 614.5 167.659H581.251C576.353 144.169 556.765 131.005 532.021 131.005C492.07 131.005 474.544 165.594 474.544 200.957C474.544 236.32 492.07 270.651 532.021 270.651C570.168 270.651 586.921 243.031 588.21 220.058H530.732V193.331H617.593L617.451 207.305C617.451 259.231 596.295 296.258 530.938 296.258Z" fill="white"/>
|
|
6
|
+
<path d="M163.591 251.367L288.916 158.716C295.06 154.174 303.842 155.946 306.769 163.001C322.178 200.209 315.294 244.924 284.638 275.625C253.982 306.326 211.328 313.059 172.34 297.724L129.75 317.472C190.837 359.287 265.016 348.946 311.369 302.492C348.137 265.67 359.524 215.479 348.877 170.217L348.973 170.314C333.533 103.822 352.769 77.2447 392.174 22.898C393.107 21.6094 394.04 20.3208 394.973 19L343.119 70.9306V70.7695L163.559 251.399" fill="white"/>
|
|
7
|
+
<path d="M137.728 273.885C93.8835 231.941 101.443 167.028 138.854 129.594C166.518 101.889 211.842 90.5817 251.409 107.205L293.902 87.5535C286.246 82.0125 276.435 76.0528 265.176 71.8648C214.287 50.8929 153.362 61.3305 111.994 102.727C72.2025 142.577 59.6893 203.85 81.1773 256.135C97.229 295.211 70.9158 322.852 44.4097 350.75C35.0167 360.64 25.5916 370.53 18 381L137.696 273.917" fill="white"/>
|
|
8
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2"><path d="M503 114.333v280c0 60.711-49.29 110-110 110H113c-60.711 0-110-49.289-110-110v-280c0-60.71 49.289-110 110-110h280c60.71 0 110 49.29 110 110z"/><path d="M342.065 189.759c1.886-2.42 3.541-4.63 5.289-6.77.81-1.007.74-1.771-.046-2.824-7.58-9.965-8.298-21.028-3.935-32.254 3.275-8.448 10.52-12.406 19.373-13.25 5.52-.521 10.936.046 15.959 2.73 6.596 3.53 10.438 8.912 11.688 16.341.995 5.926.81 11.712-.868 17.452-2.974 10.161-10.277 15.427-20.287 16.758-8.31 1.11-16.734 1.25-25.113 1.817-.648.046-1.308 0-2.06 0z" fill="#027aff"/><path d="M321.512 144.254h-50.064l-39.637 90.384h-56.036v-89.99H131v232.868h44.787v-98.103h78.973c13.598 0 26.015-7.927 31.744-20.252v118.355h44.787v-98.103c0-23.342-18.239-42.97-41.523-44.671v-.116h-24.593a45.577 45.577 0 0026.884-24.534l29.453-65.838z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="55" height="24" xmlns="http://www.w3.org/2000/svg" fill="#fff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 55 24"><path d="M13.998 2h4.277L15.76 7.645a3.9 3.9 0 0 1-2.297 2.104h2.1v.01a3.834 3.834 0 0 1 3.548 3.83V22h-3.825V11.852a2.99 2.99 0 0 1-2.713 1.736H5.825V22H2V2.035h3.825v7.714h4.787L13.998 2zM25.93 2h-3.815v20h3.815V2zm23.468 0h3.815v20h-3.815V2zM28.936 22V2h3.855l4.888 7.828L42.557 2h3.836v20h-3.815V9.183l-4.896 7.855-4.93-7.898V22h-3.816z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="207" height="60" viewBox="0 0 207 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9205_88649)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.77553 8.5585C3.25768 9.62185 3.69368 10.9067 4.74937 11.4283C6.26569 12.1775 7.58154 12.9163 8.88438 14.3958C9.66463 15.2819 11.0103 15.3631 11.89 14.5772C12.7697 13.7913 12.8503 12.4359 12.07 11.5498C10.2135 9.44143 8.30249 8.40658 6.62468 7.57758C5.56899 7.05597 4.29338 7.49514 3.77553 8.5585Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2829 2.31436C14.1422 2.60161 13.4486 3.76596 13.7338 4.915C13.933 5.71776 14.1188 6.40418 14.2889 7.03255C14.6145 8.23523 14.8825 9.22524 15.0769 10.4113C15.2684 11.5799 16.3642 12.3708 17.5243 12.1779C18.6845 11.985 19.4697 10.8813 19.2782 9.71271C19.0485 8.31087 18.6907 6.98449 18.3316 5.65319C18.1726 5.06367 18.0133 4.47318 17.8648 3.87474C17.5796 2.7257 16.4237 2.0271 15.2829 2.31436Z" fill="white"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4536 3.63371C26.4484 3.01931 25.1389 3.3421 24.529 4.35467C23.3975 6.23301 22.8027 8.08251 22.2502 10.3084C21.965 11.4574 22.6586 12.6218 23.7994 12.909C24.9401 13.1963 26.0961 12.4977 26.3813 11.3486C26.8933 9.28543 27.3631 7.91811 28.1694 6.57962C28.7794 5.56705 28.4589 4.24812 27.4536 3.63371Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.3081 56.6111C42.4367 53.9726 45.2914 39.8222 44.6634 35.6085C44.6634 35.6085 44.009 33.3464 42.4122 33.3463C41.1887 33.3462 40.5127 34.3409 40.2634 34.8062C40.0478 34.7264 39.8283 34.6541 39.6542 34.5979C39.5603 34.5676 39.4287 34.5258 39.3054 34.4865L39.0714 34.412C38.8803 34.3507 38.7005 34.2917 38.5311 34.2332L38.5316 34.1732C38.539 32.8056 38.3999 30.6713 36.9833 28.4475C36.7566 28.0917 36.5427 27.7735 36.3598 27.5037L36.2451 27.3346C36.109 27.1342 36.0022 26.9769 35.8995 26.82C35.6473 26.4349 35.5784 26.2865 35.5517 26.2181L35.5505 26.215C35.5401 26.1885 35.5188 26.1345 35.513 25.9699C35.5059 25.7676 35.5231 25.3847 35.6543 24.715L36.3362 21.9901L36.3387 21.976C36.3837 21.7259 36.4241 21.5011 36.4461 21.135C36.4664 20.798 36.4706 20.3083 36.385 19.7402C36.2228 18.6643 35.6007 16.6247 33.4082 15.4424C32.8724 15.1535 32.2306 14.9805 31.5979 14.8978C31.1726 14.8422 30.604 14.8041 29.9437 14.8551C28.5966 14.9591 26.8289 15.4442 25.2553 16.8869L24.8634 17.2991C23.9487 18.4039 22.9826 19.7718 22.2497 20.9824C20.0245 19.9349 17.4052 18.7324 15.5751 18.0859C13.5665 17.3763 11.3247 16.7825 9.21803 16.8589C6.88494 16.9436 4.26175 17.9217 2.88844 20.6901C2.32428 21.8273 2.08356 23.1555 2.37327 24.5398C2.65011 25.8625 3.33481 26.8743 3.98873 27.5802C5.20287 28.8908 6.82919 29.7027 7.97538 30.1948C8.85298 30.5717 9.75469 30.8852 10.553 31.1389C10.4687 31.2916 10.3842 31.4496 10.3028 31.6098C10.0614 32.0845 9.7726 32.7195 9.58247 33.4461C9.39287 34.1706 9.24339 35.2029 9.51365 36.3674C9.79106 37.5627 10.34 38.4961 10.9939 39.21C10.9691 39.5813 10.9598 39.9726 10.9736 40.3773C11.0656 43.0813 12.7167 44.8839 14.1689 45.9061C15.5526 46.88 17.1821 47.4777 18.4996 47.8796C19.7718 48.2677 21.1152 48.5757 22.2067 48.8259L22.4403 48.8795C23.6036 49.1467 24.7533 49.4559 25.9035 49.7651C27.208 50.1159 28.5131 50.4669 29.8391 50.7569C30.2728 50.8518 30.6942 50.9426 31.0819 51.0254L31.2231 51.3934C32.9433 55.7891 35.2401 58.5717 38.3081 56.6111ZM22.5906 38.6197C22.3551 38.524 22.22 38.4606 22.1001 38.4001C21.0582 37.858 19.7765 38.2667 19.2346 39.3151C18.6915 40.3657 19.098 41.6613 20.1409 42.2083C20.2264 42.2529 20.3131 42.295 20.4003 42.3361C20.5464 42.405 20.7499 42.4967 20.9977 42.5974C21.4864 42.7959 22.1812 43.0431 22.9688 43.2114C24.3667 43.5101 26.9506 43.7379 28.7024 41.7154C29.5434 40.7445 29.9477 39.4688 30.1013 38.276C30.2595 37.0471 30.1806 35.699 29.8718 34.3868C29.2636 31.8021 27.6535 28.9737 24.647 27.6323C22.0709 26.4829 19.5252 26.2127 17.3783 26.4552C15.945 26.617 14.5756 27.0233 13.4756 27.6425V27.5949C10.7855 26.8211 5.43209 25.2812 6.75042 22.6237C7.74981 20.609 10.4879 20.7756 14.2017 22.0876C15.7101 22.6205 17.8062 23.57 19.7834 24.496C20.3963 24.7831 20.9978 25.0679 21.5668 25.3373C22.3961 25.7299 23.7825 26.3767 23.7825 26.3767C25.3595 24.4704 25.9718 23.4204 26.5122 22.4935C26.8839 21.8561 27.2216 21.2769 27.8158 20.5176C28.6568 19.4428 30.0162 18.7786 31.4107 19.1675C32.3826 19.6916 32.1357 21.0154 32.1357 21.0154L31.4602 23.7145C30.8154 26.8909 31.5291 27.9421 32.7055 29.6745C32.9121 29.9788 33.1331 30.3042 33.3634 30.6658C34.3016 32.1385 34.2583 33.5547 34.2229 34.7105C34.2001 35.4539 34.1807 36.0896 34.4278 36.5633C34.9368 37.5391 36.8416 38.1442 38.0904 38.5409C38.3905 38.6362 38.6527 38.7196 38.8486 38.7931L38.9824 38.8461C38.8064 39.3959 38.6465 39.9651 38.4867 40.5336C37.7763 43.0623 37.0691 45.5795 34.9604 46.3338C32.2991 47.2857 29.6377 46.385 29.6377 46.385C29.158 46.2438 28.6695 46.1345 28.181 46.0252C27.5721 45.8889 26.963 45.7525 26.3702 45.5544C25.5441 45.2455 24.3869 44.98 23.1293 44.6914C20.1348 44.0044 16.5708 43.1867 15.5502 41.341C15.3783 41.0301 15.2785 40.69 15.2658 40.3165C15.2081 38.6191 15.7985 37.0994 15.7985 37.0994C15.7985 37.0994 14.8829 37.1032 14.2408 36.481C14.0014 36.2491 13.8001 35.9302 13.6983 35.4917C13.495 34.6157 13.6696 33.346 14.7341 32.2738L15.2676 31.7379C15.5371 31.4664 16.336 30.8888 17.8528 30.7176C19.2926 30.555 21.075 30.7296 22.9224 31.5539C24.3394 32.1861 25.3192 33.6366 25.7284 35.376C25.9284 36.2259 25.9651 37.0512 25.8784 37.7244C25.7871 38.4338 25.586 38.7892 25.4938 38.8956C25.3792 39.0279 24.9756 39.2557 23.8525 39.0157C23.3797 38.9147 22.9306 38.7578 22.5906 38.6197Z" fill="white"/>
|
|
7
|
+
<path d="M191.202 40.9312H189.924V33.4237H191.656C192.124 35.4037 192.797 36.8475 193.677 37.755C194.557 38.6625 195.699 39.1162 197.101 39.1162C198.119 39.1162 198.902 38.91 199.452 38.4975C200.03 38.0575 200.319 37.4662 200.319 36.7237C200.319 35.9537 199.975 35.2112 199.287 34.4962C198.6 33.7537 197.486 32.97 195.946 32.145C193.856 31.0175 192.357 29.9037 191.45 28.8037C190.542 27.6762 190.089 26.4112 190.089 25.0087C190.089 24.1012 190.254 23.2625 190.584 22.4925C190.941 21.695 191.409 21.0075 191.986 20.43C192.591 19.8525 193.306 19.4125 194.131 19.11C194.956 18.78 195.85 18.615 196.812 18.615C197.665 18.615 198.504 18.7387 199.329 18.9862C200.181 19.2337 200.924 19.5775 201.556 20.0175L202.299 19.0275H203.371V25.2562H201.762C201.13 23.6887 200.47 22.5612 199.782 21.8737C199.122 21.1862 198.311 20.8425 197.349 20.8425C196.579 20.8425 195.96 21.0487 195.492 21.4612C195.052 21.8737 194.832 22.4237 194.832 23.1112C194.832 23.8812 195.162 24.61 195.822 25.2975C196.51 25.985 197.637 26.7412 199.205 27.5662C200.305 28.1712 201.254 28.7625 202.051 29.34C202.849 29.9175 203.495 30.5087 203.99 31.1137C204.485 31.6912 204.842 32.31 205.062 32.97C205.31 33.6025 205.434 34.29 205.434 35.0325C205.434 35.995 205.255 36.8612 204.897 37.6312C204.54 38.4012 204.031 39.0612 203.371 39.6112C202.711 40.1612 201.914 40.5875 200.979 40.89C200.071 41.1925 199.054 41.3437 197.926 41.3437C196.744 41.3437 195.644 41.1925 194.626 40.89C193.609 40.56 192.77 40.0925 192.11 39.4875L191.202 40.9312Z" fill="white"/>
|
|
8
|
+
<path d="M178.044 25.8337C178.044 24.7337 178.017 23.8675 177.962 23.235C177.907 22.575 177.756 22.08 177.508 21.75C177.261 21.3925 176.889 21.1587 176.394 21.0487C175.927 20.9112 175.281 20.8012 174.456 20.7187V19.0687H183.778V31.5675C183.778 33.245 183.792 34.565 183.819 35.5275C183.874 36.4625 183.957 37.1637 184.067 37.6312C184.149 37.9887 184.246 38.2775 184.356 38.4975C184.466 38.69 184.644 38.855 184.892 38.9925C185.139 39.1025 185.469 39.185 185.882 39.24C186.322 39.2675 186.886 39.2812 187.573 39.2812V40.89L179.364 41.385L178.911 37.7137H178.746C178.031 38.8687 177.027 39.7625 175.734 40.395C174.442 41.0275 172.998 41.3437 171.403 41.3437C168.461 41.3437 166.219 40.2987 164.679 38.2087C163.497 36.6137 162.906 34.345 162.906 31.4025V25.8337C162.906 24.7062 162.878 23.8262 162.823 23.1937C162.768 22.5337 162.617 22.0387 162.369 21.7087C162.149 21.3787 161.806 21.1587 161.338 21.0487C160.871 20.9112 160.224 20.8012 159.399 20.7187V19.0687H168.639V30.7425C168.639 33.52 168.983 35.5412 169.671 36.8062C170.358 38.0437 171.458 38.6625 172.971 38.6625C174.593 38.6625 175.844 37.92 176.724 36.435C177.604 35.005 178.044 32.9012 178.044 30.1237V25.8337Z" fill="white"/>
|
|
9
|
+
<path d="M139.906 34.2075C139.906 35.335 139.934 36.2287 139.989 36.8887C140.071 37.5212 140.222 38.0162 140.442 38.3737C140.69 38.7037 141.047 38.9237 141.515 39.0337C142.01 39.1437 142.67 39.2262 143.495 39.2812V40.9312H130.501V39.2812C131.299 39.2262 131.931 39.1437 132.399 39.0337C132.894 38.9237 133.265 38.7037 133.512 38.3737C133.787 38.0437 133.966 37.5762 134.049 36.9712C134.131 36.3662 134.172 35.5412 134.172 34.4962V29.34C134.172 27.7175 134.145 26.4112 134.09 25.4212C134.035 24.4037 133.966 23.7162 133.884 23.3587C133.801 23.0012 133.691 22.7125 133.554 22.4925C133.416 22.245 133.21 22.0662 132.935 21.9562C132.66 21.8187 132.316 21.7362 131.904 21.7087C131.491 21.6537 130.969 21.6262 130.336 21.6262V20.2237L138.297 18.6562L138.834 22.2862H138.999C139.906 21.1312 140.979 20.2375 142.216 19.605C143.454 18.9725 144.815 18.6562 146.3 18.6562C148.06 18.6562 149.476 18.9037 150.549 19.3987C151.649 19.8662 152.625 20.6637 153.477 21.7912C153.945 22.4237 154.357 23.2487 154.715 24.2662C155.072 25.2562 155.251 26.6312 155.251 28.3912V34.2075C155.251 35.335 155.279 36.2287 155.334 36.8887C155.416 37.5212 155.567 38.0162 155.787 38.3737C156.035 38.7037 156.392 38.9237 156.86 39.0337C157.327 39.1437 157.96 39.2262 158.757 39.2812V40.9312H145.846V39.2812C146.671 39.2537 147.317 39.185 147.785 39.075C148.28 38.9375 148.651 38.7037 148.899 38.3737C149.146 38.0437 149.311 37.5762 149.394 36.9712C149.476 36.3387 149.517 35.5137 149.517 34.4962V28.8862C149.517 27.4837 149.435 26.3012 149.27 25.3387C149.105 24.3762 148.83 23.6062 148.445 23.0287C148.087 22.4237 147.606 21.9975 147.001 21.75C146.396 21.475 145.64 21.3375 144.732 21.3375C143.852 21.3375 143.096 21.585 142.464 22.08C141.831 22.575 141.281 23.2625 140.814 24.1425C140.566 24.6375 140.346 25.2837 140.154 26.0812C139.989 26.8512 139.906 27.6625 139.906 28.515V34.2075Z" fill="white"/>
|
|
10
|
+
<path d="M120.221 29.175C117.911 30.22 116.165 31.1962 114.982 32.1037C113.827 32.9837 113.25 33.905 113.25 34.8675C113.25 35.665 113.47 36.2975 113.91 36.765C114.35 37.2325 114.9 37.4662 115.56 37.4662C116.22 37.4662 116.838 37.3562 117.416 37.1362C117.993 36.8887 118.488 36.5725 118.901 36.1875C119.313 35.8025 119.63 35.3487 119.85 34.8262C120.097 34.2762 120.221 33.6987 120.221 33.0937V29.175ZM120.221 26.9887V25.2562C120.221 23.6612 119.932 22.5062 119.355 21.7912C118.805 21.0487 117.938 20.6775 116.756 20.6775C115.958 20.6775 115.353 20.8975 114.941 21.3375C114.528 21.75 114.143 22.4512 113.786 23.4412C113.538 24.1287 113.181 24.665 112.713 25.05C112.273 25.435 111.655 25.6275 110.857 25.6275C110.087 25.6275 109.496 25.3937 109.083 24.9262C108.671 24.4587 108.465 23.7987 108.465 22.9462C108.465 21.6262 109.18 20.5812 110.61 19.8112C112.067 19.0412 114.253 18.6562 117.168 18.6562C120.248 18.6562 122.448 19.22 123.768 20.3475C125.088 21.4475 125.748 23.3037 125.748 25.9162V34.95C125.748 37.2875 126.216 38.4562 127.151 38.4562C127.673 38.4562 128.155 38.2775 128.595 37.92L129.213 39.1162C128.828 39.8037 128.223 40.3537 127.398 40.7662C126.601 41.1512 125.693 41.3437 124.676 41.3437C123.411 41.3437 122.448 40.9587 121.788 40.1887C121.128 39.4187 120.798 38.3325 120.798 36.93H120.592C119.795 38.36 118.763 39.4462 117.498 40.1887C116.233 40.9312 114.79 41.3025 113.167 41.3025C111.435 41.3025 110.046 40.8212 109.001 39.8587C107.956 38.8687 107.433 37.59 107.433 36.0225C107.433 34.8125 107.97 33.685 109.042 32.64C110.115 31.5675 111.902 30.5225 114.405 29.505L120.221 26.9887Z" fill="white"/>
|
|
11
|
+
<path d="M71.445 34.125C71.445 35.28 71.4725 36.1875 71.5275 36.8475C71.5825 37.5075 71.7338 38.0162 71.9813 38.3737C72.2287 38.7037 72.5862 38.9237 73.0537 39.0337C73.5213 39.1437 74.1675 39.2262 74.9925 39.2812V40.9312H61.9575V39.2812C62.7825 39.2262 63.4425 39.1437 63.9375 39.0337C64.4325 38.9237 64.8038 38.7037 65.0513 38.3737C65.2988 38.0437 65.4637 37.5762 65.5462 36.9712C65.6287 36.3387 65.67 35.5 65.67 34.455V29.34C65.67 27.7725 65.6425 26.4662 65.5875 25.4212C65.56 24.3762 65.4912 23.6612 65.3813 23.2762C65.2987 22.9187 65.1888 22.6437 65.0513 22.4512C64.9413 22.2312 64.7488 22.0662 64.4737 21.9562C64.2262 21.8187 63.8963 21.7362 63.4837 21.7087C63.0712 21.6537 62.535 21.6262 61.875 21.6262V20.2237L69.8363 18.6562L70.3312 22.245H70.5787C71.7338 20.9525 72.8888 20.0312 74.0437 19.4812C75.2262 18.9312 76.5875 18.6562 78.1275 18.6562C79.9425 18.6562 81.4412 18.9725 82.6237 19.605C83.8062 20.2375 84.7 21.145 85.305 22.3275H85.47C86.46 21.1725 87.6425 20.2787 89.0175 19.6462C90.3925 18.9862 91.8637 18.6562 93.4312 18.6562C95.0812 18.6562 96.5112 18.8625 97.7212 19.275C98.9587 19.6875 99.9212 20.2787 100.609 21.0487C101.159 21.6812 101.557 22.5062 101.805 23.5237C102.08 24.5412 102.217 25.9575 102.217 27.7725V34.125C102.217 35.2525 102.245 36.1462 102.3 36.8062C102.382 37.4662 102.547 37.975 102.795 38.3325C103.042 38.69 103.4 38.9237 103.867 39.0337C104.335 39.1437 104.981 39.2262 105.806 39.2812V40.9312H92.7712V39.2812C93.5963 39.2537 94.2425 39.185 94.71 39.075C95.205 38.9375 95.5762 38.7037 95.8237 38.3737C96.0987 38.0162 96.2637 37.535 96.3187 36.93C96.4012 36.325 96.4425 35.5 96.4425 34.455V29.0512C96.4425 27.6212 96.36 26.4112 96.195 25.4212C96.03 24.4312 95.7687 23.6337 95.4112 23.0287C95.0537 22.4237 94.5725 21.9975 93.9675 21.75C93.39 21.475 92.675 21.3375 91.8225 21.3375C90.86 21.3375 90.0625 21.5712 89.43 22.0387C88.825 22.5062 88.3162 23.1112 87.9037 23.8537C87.1888 25.1462 86.8313 26.755 86.8313 28.68V34.125C86.8313 35.2525 86.8587 36.1462 86.9137 36.8062C86.9687 37.4662 87.12 37.975 87.3675 38.3325C87.615 38.69 87.9725 38.9237 88.44 39.0337C88.935 39.1437 89.6087 39.2262 90.4612 39.2812V40.9312H77.385V39.2812C78.21 39.2262 78.8562 39.1437 79.3237 39.0337C79.8187 38.9237 80.19 38.7037 80.4375 38.3737C80.7125 38.0437 80.8775 37.5762 80.9325 36.9712C81.015 36.3387 81.0563 35.5 81.0563 34.455V29.0512C81.0563 27.6212 80.9737 26.4112 80.8087 25.4212C80.6437 24.4312 80.3688 23.6337 79.9838 23.0287C79.6262 22.4237 79.145 21.9975 78.54 21.75C77.935 21.475 77.1788 21.3375 76.2713 21.3375C75.3638 21.3375 74.6075 21.5575 74.0025 21.9975C73.425 22.4375 72.9437 23.0287 72.5588 23.7712C72.2013 24.4312 71.9263 25.1875 71.7338 26.04C71.5412 26.8925 71.445 27.7725 71.445 28.68V34.125Z" fill="white"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_9205_88649">
|
|
15
|
+
<rect width="206.25" height="60" fill="white"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="lobster-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#ff4d4d"/>
|
|
5
|
+
<stop offset="100%" stop-color="#991b1b"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<!-- Body -->
|
|
9
|
+
<path d="M60 10 C30 10 15 35 15 55 C15 75 30 95 45 100 L45 110 L55 110 L55 100 C55 100 60 102 65 100 L65 110 L75 110 L75 100 C90 95 105 75 105 55 C105 35 90 10 60 10Z" fill="url(#lobster-gradient)"/>
|
|
10
|
+
<!-- Left Claw -->
|
|
11
|
+
<path d="M20 45 C5 40 0 50 5 60 C10 70 20 65 25 55 C28 48 25 45 20 45Z" fill="url(#lobster-gradient)"/>
|
|
12
|
+
<!-- Right Claw -->
|
|
13
|
+
<path d="M100 45 C115 40 120 50 115 60 C110 70 100 65 95 55 C92 48 95 45 100 45Z" fill="url(#lobster-gradient)"/>
|
|
14
|
+
<!-- Antenna -->
|
|
15
|
+
<path d="M45 15 Q35 5 30 8" stroke="#ff4d4d" stroke-width="3" stroke-linecap="round"/>
|
|
16
|
+
<path d="M75 15 Q85 5 90 8" stroke="#ff4d4d" stroke-width="3" stroke-linecap="round"/>
|
|
17
|
+
<!-- Eyes -->
|
|
18
|
+
<circle cx="45" cy="35" r="6" fill="#050810"/>
|
|
19
|
+
<circle cx="75" cy="35" r="6" fill="#050810"/>
|
|
20
|
+
<circle cx="46" cy="34" r="2.5" fill="#00e5cc"/>
|
|
21
|
+
<circle cx="76" cy="34" r="2.5" fill="#00e5cc"/>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="1588" height="400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1588 400"><path fill="#20808d" fill-rule="evenodd" d="m101.008 42 89.982 82.905V42.191h17.516v83.085L298.891 42v94.524H336v136.342h-36.995v84.169l-90.499-79.51v80.423H190.99v-79.112L101.11 358v-85.134H64V136.524h37.008V42Zm76.777 111.826h-96.27v101.738h19.573v-32.092l76.697-69.646Zm-59.16 77.323v88.243l72.365-63.737v-90.234l-72.365 65.728Zm90.385 23.663v-89.476l72.386 65.732v41.798h.093v45.625l-72.479-63.679Zm89.995.752h19.479V153.826h-95.552l76.073 68.925v32.813Zm-17.63-119.04V81.798l-59.398 54.726h59.398Zm-103.454 0h-59.397V81.798l59.397 54.726Z" clip-rule="evenodd"/><path fill="#fff" d="M768.761 134.448h11.121v22.918h-14.396c-11.282 0-19.696 2.714-25.273 8.158-5.544 5.427-8.332 14.353-8.332 26.76v75.148h-22.728V134.971h22.728v21.137c0 1.193.6 1.782 1.767 1.782.665 0 1.167-.164 1.524-.507.356-.344.664-1.014 1.021-2.044 4.377-13.911 15.255-20.875 32.584-20.875h-.016v-.016Zm151.184 28.395c5.966 10.609 8.965 23.393 8.965 38.334 0 14.941-2.983 27.725-8.965 38.334-5.982 10.61-13.731 18.554-23.247 23.818-9.515 5.264-19.745 7.896-30.687 7.896-21.561 0-36.718-8.664-45.472-25.992-.665-1.357-1.524-2.044-2.529-2.044s-1.524.507-1.524 1.537v71.078h-22.728v-180.85h22.728v22.674c0 1.013.503 1.537 1.524 1.537s1.848-.671 2.529-2.044c8.754-17.328 23.911-25.992 45.472-25.992 10.942 0 21.172 2.632 30.687 7.896 9.516 5.264 17.249 13.208 23.247 23.818Zm-13.747 38.334c0-15.628-4.166-27.807-12.499-36.552-8.332-8.746-19.307-13.111-32.973-13.111s-24.641 4.381-32.973 13.111c-8.349 8.745-11.396 20.94-11.396 36.552 0 15.612 3.063 27.807 11.396 36.552 8.332 8.763 19.323 13.111 32.973 13.111 13.65 0 24.641-4.381 32.973-13.111 8.333-8.729 12.499-20.94 12.499-36.552ZM537.17 163.039c5.966 10.609 8.965 23.393 8.965 38.334 0 14.942-2.983 27.725-8.965 38.334-5.982 10.61-13.73 18.555-23.246 23.818-9.516 5.264-19.745 7.896-30.688 7.896-21.56 0-36.718-8.664-45.472-25.992-.664-1.357-1.523-2.043-2.529-2.043-1.005 0-1.523.506-1.523 1.536V316H411V135.151h22.728v22.673c0 1.014.502 1.537 1.524 1.537 1.021 0 1.848-.67 2.529-2.044 8.754-17.328 23.911-25.992 45.472-25.992 10.942 0 21.171 2.632 30.687 7.896 9.516 5.264 17.249 13.209 23.247 23.818h-.017Zm-13.763 38.334c0-15.628-4.166-27.806-12.498-36.552-8.333-8.73-19.324-13.111-32.974-13.111-13.649 0-24.64 4.381-32.973 13.111-8.332 8.762-11.396 20.941-11.396 36.552 0 15.612 3.064 27.807 11.396 36.553 8.333 8.762 19.307 13.11 32.973 13.11s24.641-4.381 32.974-13.11c8.332-8.73 12.498-20.941 12.498-36.553Zm145.575 23.982h23.993c-3.194 12.407-9.727 23.147-19.567 32.22-9.857 9.089-23.96 13.617-42.327 13.617-13.812 0-25.97-2.844-36.491-8.533s-18.643-13.781-24.382-24.325c-5.738-10.527-8.591-22.919-8.591-37.19 0-14.271 2.788-26.662 8.332-37.19 5.544-10.527 13.342-18.636 23.36-24.324 10.019-5.689 21.755-8.534 35.227-8.534 13.471 0 24.64 2.812 33.978 8.403 9.354 5.607 16.324 13.045 20.961 22.281 4.636 9.269 6.938 19.404 6.938 30.439v15.284h-104.82c.826 13.242 5.268 23.786 13.26 31.583 7.992 7.814 18.74 11.721 32.212 11.721 10.942 0 19.339-2.239 25.143-6.751 5.803-4.512 10.051-10.74 12.758-18.734l.016.033Zm-83.859-36.929h79.32c0-11.541-2.95-20.597-8.851-27.136-5.901-6.523-15.157-9.809-27.786-9.809-11.785 0-21.431 3.188-28.92 9.564-7.49 6.359-12.077 15.497-13.763 27.381ZM947.244 267.4h22.744V84h-22.744v183.416-.016Zm319.646-146.913h26.56V91.814h-26.56v28.673Zm98.06 127.182c-4.13.425-6.63.637-7.45.637-1.17 0-2.13-.343-2.79-1.03-.67-.67-1.02-1.602-1.02-2.812 0-.833.22-3.351.65-7.519.4-4.152.63-10.577.63-19.225v-63.378h32.42l-6.39-19.404h-26.02v-35.67h-22.72v35.654h-24.73v19.404h24.73v69.737c0 14.615 3.55 25.485 10.61 32.613 7.07 7.127 17.85 10.707 32.35 10.707h17.68v-20.368h-8.85c-8.59 0-14.95.212-19.08.637l-.02.017Zm137.39-112.731-37.64 111.145c-.5 1.373-1.3 3.155-3.87 3.155-2.58 0-3.39-1.782-3.9-3.155l-37.64-111.145h-23.18L1439.7 267.4h15.42c1 0 1.77.098 2.29.261.5.164.92.589 1.26 1.275.66 1.014.58 2.55-.26 4.578l-7.07 19.355c-1.02 2.55-2.95 3.825-5.8 3.825-1.02 0-3.37-.213-7.07-.638-3.71-.425-8.49-.637-14.39-.637h-18.45v20.368h24.25c14.15 0 22.66-2.419 29.99-7.258 7.33-4.838 13-13.372 17.05-25.599L1524 140.022v-5.084h-21.66Zm-312.38 49.418-35.62-49.418h-25.01v5.084l42.68 57.313-52.04 64.964v5.084h25.52l41.43-53.243 38.65 53.243h24.51v-5.084l-45.23-61.138 49.03-60.877v-5.346h-25.52l-38.39 49.418h-.01Zm79.35 83.044h22.74V134.954h-22.74v132.462-.016Zm-149.65-42.045c-3.21 12.407-9.72 23.147-19.56 32.22-9.86 9.089-23.96 13.617-42.33 13.617-13.81 0-25.97-2.844-36.49-8.533-10.54-5.689-18.64-13.781-24.381-24.325-5.723-10.527-8.576-22.919-8.576-37.19 0-14.271 2.788-26.662 8.333-37.19 5.564-10.527 13.344-18.636 23.364-24.324 10.01-5.689 21.75-8.534 35.24-8.534 13.49 0 24.64 2.812 33.99 8.403 9.34 5.607 16.33 13.045 20.96 22.281 4.64 9.269 6.94 19.404 6.94 30.439v15.284h-104.83c.84 13.242 5.26 23.786 13.26 31.583 7.99 7.814 18.74 11.721 32.21 11.721 10.94 0 19.34-2.239 25.14-6.751 5.8-4.512 10.05-10.74 12.74-18.734h24.01l-.02.033Zm-107.28-36.929h79.32c0-11.541-2.95-20.597-8.83-27.136-5.91-6.523-15.16-9.809-27.79-9.809-11.79 0-21.43 3.188-28.92 9.564-7.49 6.359-12.09 15.497-13.76 27.381h-.02Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Qwen</title><path d="M12.604 1.34c.393.69.784 1.382 1.174 2.075a.18.18 0 00.157.091h5.552c.174 0 .322.11.446.327l1.454 2.57c.19.337.24.478.024.837-.26.43-.513.864-.76 1.3l-.367.658c-.106.196-.223.28-.04.512l2.652 4.637c.172.301.111.494-.043.77-.437.785-.882 1.564-1.335 2.34-.159.272-.352.375-.68.37-.777-.016-1.552-.01-2.327.016a.099.099 0 00-.081.05 575.097 575.097 0 01-2.705 4.74c-.169.293-.38.363-.725.364-.997.003-2.002.004-3.017.002a.537.537 0 01-.465-.271l-1.335-2.323a.09.09 0 00-.083-.049H4.982c-.285.03-.553-.001-.805-.092l-1.603-2.77a.543.543 0 01-.002-.54l1.207-2.12a.198.198 0 000-.197 550.951 550.951 0 01-1.875-3.272l-.79-1.395c-.16-.31-.173-.496.095-.965.465-.813.927-1.625 1.387-2.436.132-.234.304-.334.584-.335a338.3 338.3 0 012.589-.001.124.124 0 00.107-.063l2.806-4.895a.488.488 0 01.422-.246c.524-.001 1.053 0 1.583-.006L11.704 1c.341-.003.724.032.9.34zm-3.432.403a.06.06 0 00-.052.03L6.254 6.788a.157.157 0 01-.135.078H3.253c-.056 0-.07.025-.041.074l5.81 10.156c.025.042.013.062-.034.063l-2.795.015a.218.218 0 00-.2.116l-1.32 2.31c-.044.078-.021.118.068.118l5.716.008c.046 0 .08.02.104.061l1.403 2.454c.046.081.092.082.139 0l5.006-8.76.783-1.382a.055.055 0 01.096 0l1.424 2.53a.122.122 0 00.107.062l2.763-.02a.04.04 0 00.035-.02.041.041 0 000-.04l-2.9-5.086a.108.108 0 010-.113l.293-.507 1.12-1.977c.024-.041.012-.062-.035-.062H9.2c-.059 0-.073-.026-.043-.077l1.434-2.505a.107.107 0 000-.114L9.225 1.774a.06.06 0 00-.053-.031zm6.29 8.02c.046 0 .058.02.034.06l-.832 1.465-2.613 4.585a.056.056 0 01-.05.029.058.058 0 01-.05-.029L8.498 9.841c-.02-.034-.01-.052.028-.054l.216-.012 6.722-.012z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="746" height="236" viewBox="0 0 746 236" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M210.028 78.0208H208.758C202.075 78.0104 196.652 83.4233 196.652 90.1062V117.134C196.652 122.532 192.191 126.903 186.883 126.903C183.729 126.903 180.58 125.316 178.711 122.651L151.105 83.2255C148.815 79.9518 145.089 78 141.055 78C134.763 78 129.1 83.3504 129.1 89.9552V117.139C129.1 122.537 124.676 126.909 119.331 126.909C116.166 126.909 113.023 125.321 111.154 122.656L80.264 78.5413C79.5666 77.5472 78 78.0364 78 79.2543V102.826C78 104.018 78.3643 105.174 79.0462 106.152L109.442 149.565C111.237 152.131 113.887 154.036 116.942 154.728C124.587 156.466 131.624 150.58 131.624 143.08V115.911C131.624 110.514 135.996 106.142 141.393 106.142H141.409C144.662 106.142 147.712 107.729 149.58 110.394L177.186 149.815C179.481 153.094 183.016 155.04 187.231 155.04C193.664 155.04 199.176 149.685 199.176 143.085V115.906C199.176 110.509 203.548 106.137 208.945 106.137H210.023C210.699 106.137 211.246 105.59 211.246 104.914V79.2387C211.246 78.5621 210.699 78.0156 210.023 78.0156L210.028 78.0208ZM368.506 98.3608H361.75C361.063 98.3608 360.506 98.9177 360.506 99.6048V153.786C360.506 154.473 361.063 155.03 361.75 155.03H368.506C369.193 155.03 369.75 154.473 369.75 153.786V99.6048C369.75 98.9177 369.193 98.3608 368.506 98.3608ZM361.526 78.0052H368.725C369.412 78.0052 369.968 78.5621 369.968 79.2491V88.0972C369.968 88.7842 369.412 89.3411 368.725 89.3411H361.526C360.839 89.3411 360.282 88.7842 360.282 88.0972V79.2491C360.282 78.5621 360.839 78.0052 361.526 78.0052ZM408.942 96.8203C401.349 96.8203 395.847 99.459 392.324 103.316C391.194 104.461 389.242 103.659 389.242 102.051V99.6048C389.242 98.9177 388.685 98.3608 387.998 98.3608H381.357C380.67 98.3608 380.113 98.9177 380.113 99.6048V153.786C380.113 154.473 380.67 155.03 381.357 155.03H388.004C388.691 155.03 389.248 154.473 389.248 153.786V119.487C389.248 107.599 391.558 104.96 404.216 104.96C416.874 104.96 418.961 107.053 418.961 118.935V153.781C418.961 154.468 419.518 155.025 420.205 155.025H426.961C427.648 155.025 428.205 154.468 428.205 153.781V116.4C428.205 102.863 420.502 96.8098 408.947 96.8098V96.8203H408.942ZM477.957 104.086C479.086 105.231 481.038 104.43 481.038 102.821V79.2543C481.038 78.5673 481.595 78.0104 482.282 78.0104H488.928C489.615 78.0104 490.172 78.5673 490.172 79.2543V153.791C490.172 154.478 489.615 155.035 488.928 155.035H482.282C481.595 155.035 481.038 154.478 481.038 153.791V150.575C481.106 148.93 479.112 148.139 477.957 149.31C474.766 153.271 468.604 156.57 460.349 156.57C445.828 156.57 436.361 146.229 436.361 126.971C436.361 106.616 446.921 96.8203 460.677 96.8203C468.932 96.8203 474.876 100.125 477.957 104.086ZM446.369 126.747C446.369 145.344 448.68 148.097 463.758 148.097C478.727 148.097 481.038 145.344 481.038 126.747C481.038 108.151 478.836 105.288 463.758 105.288C448.68 105.288 446.369 108.151 446.369 126.747ZM528.802 123.234L517.914 121.366C509.878 119.934 508.446 117.514 508.446 113.33C508.556 107.604 510.757 104.747 521.432 104.747C531.43 104.747 534.631 107.703 535.318 114.084C535.386 114.714 535.917 115.198 536.552 115.198H543.157C543.864 115.198 544.442 114.605 544.4 113.892C543.76 102.936 533.731 96.815 521.765 96.815C508.337 96.815 499.427 103.966 499.427 114.204C499.427 123.557 506.692 127.632 515.384 129.282L527.381 131.484C533.986 132.696 536.187 134.898 536.187 139.077C536.187 145.791 533.876 148.654 522.541 148.654C511.205 148.654 508.072 145.385 507.343 138.76C507.275 138.13 506.744 137.651 506.109 137.651H499.463C498.765 137.651 498.198 138.229 498.214 138.926C498.531 150.731 509.232 156.581 521.984 156.581C535.849 156.581 545.421 149.429 545.421 138.64C545.421 129.178 538.155 124.884 528.802 123.234ZM576.903 148.435C589.228 148.435 591.539 145.797 591.539 133.909V99.6204C591.539 98.9334 592.096 98.3765 592.783 98.3765H599.539C600.226 98.3765 600.783 98.9334 600.783 99.6204V153.801C600.783 154.488 600.226 155.045 599.539 155.045H592.783C592.096 155.045 591.539 154.488 591.539 153.801V151.439C591.513 149.757 589.769 148.919 588.567 150.096C585.049 153.947 579.547 156.586 572.172 156.586C560.836 156.586 553.133 150.533 553.133 136.995V99.6152C553.133 98.9282 553.69 98.3713 554.377 98.3713H561.133C561.82 98.3713 562.377 98.9282 562.377 99.6152V134.461C562.377 146.343 564.579 148.435 576.903 148.435ZM654.839 98.3608V91.0951C654.839 88.2377 657.155 85.9216 660.012 85.9216H665.04C665.727 85.9216 666.284 85.3647 666.284 84.6777V79.2439C666.284 78.5569 665.727 78 665.04 78H661.553C651.648 78 645.595 83.5014 645.595 92.9688V98.3608H638.272C631.782 98.3712 626.687 99.2613 623.288 103.316C622.039 104.497 620.316 103.612 620.316 101.895V99.61C620.316 98.923 619.759 98.366 619.072 98.366H612.316C611.629 98.366 611.072 98.923 611.072 99.61V153.791C611.072 154.478 611.629 155.035 612.316 155.035H619.072C619.759 155.035 620.316 154.478 620.316 153.791V119.825C620.316 108.598 623.179 105.96 635.503 105.96H645.595V153.796C645.595 154.483 646.152 155.04 646.839 155.04H653.595C654.282 155.04 654.839 154.483 654.839 153.796V105.96H665.05C665.737 105.96 666.294 105.403 666.294 104.716V99.6152C666.294 98.9282 665.737 98.3713 665.05 98.3713H654.839V98.3608ZM322.892 140.899C323.132 141.893 324.022 142.596 325.042 142.596H325.047C326.062 142.596 326.947 141.903 327.191 140.92L342.686 78.9473C342.826 78.3904 343.326 78 343.898 78H351.633C352.46 78 353.064 78.7807 352.856 79.5822L333.364 154.129C333.224 154.655 332.75 155.025 332.203 155.025H318.406C317.849 155.025 317.365 154.645 317.224 154.109L301.032 91.7508C300.783 90.7776 299.903 90.0958 298.893 90.0958H298.753C297.748 90.0958 296.869 90.7776 296.614 91.7508L280.427 154.109C280.286 154.65 279.802 155.025 279.245 155.025H265.448C264.901 155.025 264.422 154.655 264.287 154.129L244.795 79.5822C244.587 78.7807 245.191 78 246.019 78H253.753C254.325 78 254.825 78.3904 254.965 78.9473L270.455 140.92C270.699 141.903 271.579 142.596 272.599 142.596C273.619 142.596 274.509 141.893 274.749 140.899L289.639 78.9577C289.775 78.3956 290.274 78 290.852 78H306.794C307.372 78 307.871 78.3956 308.007 78.9577L322.892 140.899Z" fill="#fff"/></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 150 28"><path fill="#FFFFFF" d="M138.845 10.164h2.919v1.449c.336-.546.77-.945 1.302-1.197a4.068 4.068 0 0 1 1.764-.378c.84 0 1.617.238 2.331.714.728.462 1.302 1.12 1.722 1.974.42.84.63 1.792.63 2.856 0 1.064-.21 2.023-.63 2.877-.42.84-.994 1.498-1.722 1.974a4.207 4.207 0 0 1-2.331.693c-.602 0-1.176-.14-1.722-.42a4.275 4.275 0 0 1-1.344-1.155v5.733h-2.919v-15.12Zm5.334 2.772c-.448 0-.854.119-1.218.357s-.658.56-.882.966c-.21.406-.315.847-.315 1.323s.105.917.315 1.323c.224.406.518.728.882.966s.77.357 1.218.357c.434 0 .84-.12 1.218-.357.378-.238.672-.56.882-.966.224-.406.336-.847.336-1.323s-.112-.917-.336-1.323a2.448 2.448 0 0 0-.882-.966 2.245 2.245 0 0 0-1.218-.357Zm-12.782-2.898c1.078 0 1.967.182 2.667.546.714.35 1.246.86 1.596 1.533.35.672.525 1.477.525 2.415V21h-2.835v-1.113c-.266.308-.7.595-1.302.86a4.543 4.543 0 0 1-1.806.379c-.784 0-1.456-.147-2.016-.441-.546-.294-.959-.686-1.239-1.176a3.162 3.162 0 0 1-.42-1.596c0-1.05.385-1.87 1.155-2.457.77-.588 1.96-.882 3.57-.882h2.058v-.483c0-.588-.189-1.015-.567-1.281a2.028 2.028 0 0 0-1.302-.4 1.985 1.985 0 0 0-1.155.4c-.336.238-.525.588-.567 1.05h-2.961c.056-.7.273-1.337.651-1.911.378-.588.903-1.05 1.575-1.386.672-.35 1.463-.525 2.373-.525Zm-.504 9.009c.406 0 .784-.077 1.134-.231.35-.154.637-.406.861-.756.224-.364.336-.826.336-1.386v-.126l-1.743.02c-.546.015-1.008.127-1.386.337-.364.196-.546.504-.546.924 0 .378.112.679.336.903.224.21.56.315 1.008.315Zm-4.741-8.883L122.582 21h-2.73l-1.428-4.452-.105-.273a279.09 279.09 0 0 1-.714-2.268h-.021c-.182.63-.392 1.323-.63 2.079-.028.07-.056.147-.084.23a1.114 1.114 0 0 1-.063.232L115.379 21h-2.709l-3.591-10.836h2.94l1.323 4.305c.238.784.476 1.645.714 2.583h.021c.098-.378.28-1.022.546-1.932.042-.112.084-.217.126-.315.042-.112.077-.224.105-.336l1.407-4.305h2.709l1.407 4.305.042.126c.266.84.518 1.659.756 2.457h.021c.098-.476.28-1.176.546-2.1.028-.07.056-.147.084-.231l.084-.252 1.302-4.305h2.94Zm-25.704 5.502c0 .56.112 1.043.336 1.449a2.4 2.4 0 0 0 .966.903c.406.21.875.315 1.407.315.476 0 .875-.084 1.197-.252.322-.168.567-.385.735-.651.168-.266.252-.546.252-.84 0-.42-.147-.784-.441-1.092-.294-.322-.721-.546-1.281-.672l-1.743-.441c-1.232-.294-2.198-.812-2.898-1.554a3.823 3.823 0 0 1-1.05-2.688c0-.854.238-1.61.714-2.268a4.716 4.716 0 0 1 1.869-1.554 5.594 5.594 0 0 1 2.499-.567c.952 0 1.792.224 2.52.672a4.385 4.385 0 0 1 1.701 1.764c.406.742.609 1.56.609 2.457h-2.877c0-.616-.196-1.12-.588-1.512-.378-.406-.875-.61-1.491-.61-.406 0-.763.085-1.071.253a1.675 1.675 0 0 0-.672.609 1.369 1.369 0 0 0 .105 1.659c.224.252.588.44 1.092.567l1.701.42c1.442.364 2.52.917 3.234 1.659.714.728 1.071 1.68 1.071 2.856 0 .896-.224 1.694-.672 2.394-.434.686-1.043 1.225-1.827 1.617-.784.378-1.673.567-2.667.567-1.036 0-1.988-.224-2.856-.672a5.296 5.296 0 0 1-2.058-1.911c-.504-.826-.756-1.785-.756-2.877h2.94ZM90.27 5.88 86.133 21H83.13l-2.08-7.77a28.525 28.525 0 0 0-.188-.714 20.702 20.702 0 0 0-.19-.777l-.167-.756c-.056-.252-.112-.49-.168-.714h-.021c-.056.21-.12.44-.19.693a60.73 60.73 0 0 0-.167.735l-.21.798c-.056.252-.12.497-.19.735L77.482 21h-3.003L70.34 5.88h2.982l2.058 7.77c.056.21.112.434.168.672.056.238.112.483.168.735.056.252.112.497.168.735.056.238.098.469.126.693h.02c.057-.252.12-.518.19-.798.07-.294.14-.595.21-.903.056-.196.105-.385.147-.567.056-.196.105-.385.147-.567l2.079-7.77h3.003l2.1 7.77c.042.154.084.315.126.483l.126.504c.126.504.273 1.12.44 1.848h.022l.084-.42c.028-.154.063-.315.105-.483.14-.672.287-1.316.44-1.932l2.038-7.77h2.982ZM65.15 21.126a5.22 5.22 0 0 1-2.71-.735 5.674 5.674 0 0 1-1.973-2.016 5.641 5.641 0 0 1-.714-2.793c0-1.008.238-1.932.714-2.772a5.456 5.456 0 0 1 1.974-2.016 5.103 5.103 0 0 1 2.709-.756h.02a5 5 0 0 1 2.689.756 5.298 5.298 0 0 1 1.953 2.016c.49.854.735 1.778.735 2.772 0 .994-.245 1.918-.735 2.772a5.457 5.457 0 0 1-1.953 2.037 5.104 5.104 0 0 1-2.688.735h-.021Zm.02-2.898a2.28 2.28 0 0 0 1.24-.357c.378-.238.672-.553.882-.945.224-.406.336-.854.336-1.344 0-.476-.112-.917-.336-1.323a2.607 2.607 0 0 0-.903-.966 2.245 2.245 0 0 0-1.218-.357h-.021c-.462 0-.882.119-1.26.357s-.68.56-.903.966a2.694 2.694 0 0 0-.336 1.323c0 .476.112.917.336 1.323.224.406.525.728.903.966s.798.357 1.26.357h.02Zm-13.708 2.898a7.493 7.493 0 0 1-3.843-1.03 8.025 8.025 0 0 1-2.793-2.813 7.493 7.493 0 0 1-1.03-3.843c0-1.386.344-2.667 1.03-3.843a7.852 7.852 0 0 1 2.793-2.793 7.378 7.378 0 0 1 3.843-1.05c1.232 0 2.33.28 3.297.84.966.546 1.736 1.246 2.31 2.1.588.854.959 1.729 1.113 2.625h-3.024a3.078 3.078 0 0 0-.756-1.365 3.965 3.965 0 0 0-1.344-.945 3.784 3.784 0 0 0-1.596-.357 4.59 4.59 0 0 0-2.394.65 5.007 5.007 0 0 0-1.722 1.744 4.59 4.59 0 0 0-.651 2.394c0 .868.217 1.666.65 2.394a5.007 5.007 0 0 0 1.723 1.743 4.59 4.59 0 0 0 2.394.65c.868 0 1.645-.23 2.33-.692a3.475 3.475 0 0 0 1.408-1.89h3.003a6.447 6.447 0 0 1-1.113 2.709c-.588.826-1.372 1.498-2.352 2.016-.966.504-2.058.756-3.276.756Z"/><path fill="#FFFFFF" fill-rule="evenodd" d="M13.653 26a4.011 4.011 0 0 1-3.824-2.79L7.11 14.666H5.44a4.011 4.011 0 0 1-3.825-2.791L0 6.8h6.058L2.863 2h30.274l-3.195 4.8H36l-1.615 5.076a4.011 4.011 0 0 1-3.825 2.79h-1.67l-2.72 8.544A4.011 4.011 0 0 1 22.346 26h-8.693ZM11.6 12.333c0 1.289.965 2.334 2.156 2.334 1.19 0 2.155-1.045 2.155-2.334 0-1.288-.965-2.333-2.155-2.333S11.6 11.045 11.6 12.333Zm12.8 0c0 1.289-.965 2.334-2.156 2.334-1.19 0-2.155-1.045-2.155-2.334 0-1.288.965-2.333 2.155-2.333s2.156 1.045 2.156 2.333Z" clip-rule="evenodd"/></svg>
|
|
1
|
+
<svg width="150" height="28" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 150 28"><path fill="#FFFFFF" d="M138.845 10.164h2.919v1.449c.336-.546.77-.945 1.302-1.197a4.068 4.068 0 0 1 1.764-.378c.84 0 1.617.238 2.331.714.728.462 1.302 1.12 1.722 1.974.42.84.63 1.792.63 2.856 0 1.064-.21 2.023-.63 2.877-.42.84-.994 1.498-1.722 1.974a4.207 4.207 0 0 1-2.331.693c-.602 0-1.176-.14-1.722-.42a4.275 4.275 0 0 1-1.344-1.155v5.733h-2.919v-15.12Zm5.334 2.772c-.448 0-.854.119-1.218.357s-.658.56-.882.966c-.21.406-.315.847-.315 1.323s.105.917.315 1.323c.224.406.518.728.882.966s.77.357 1.218.357c.434 0 .84-.12 1.218-.357.378-.238.672-.56.882-.966.224-.406.336-.847.336-1.323s-.112-.917-.336-1.323a2.448 2.448 0 0 0-.882-.966 2.245 2.245 0 0 0-1.218-.357Zm-12.782-2.898c1.078 0 1.967.182 2.667.546.714.35 1.246.86 1.596 1.533.35.672.525 1.477.525 2.415V21h-2.835v-1.113c-.266.308-.7.595-1.302.86a4.543 4.543 0 0 1-1.806.379c-.784 0-1.456-.147-2.016-.441-.546-.294-.959-.686-1.239-1.176a3.162 3.162 0 0 1-.42-1.596c0-1.05.385-1.87 1.155-2.457.77-.588 1.96-.882 3.57-.882h2.058v-.483c0-.588-.189-1.015-.567-1.281a2.028 2.028 0 0 0-1.302-.4 1.985 1.985 0 0 0-1.155.4c-.336.238-.525.588-.567 1.05h-2.961c.056-.7.273-1.337.651-1.911.378-.588.903-1.05 1.575-1.386.672-.35 1.463-.525 2.373-.525Zm-.504 9.009c.406 0 .784-.077 1.134-.231.35-.154.637-.406.861-.756.224-.364.336-.826.336-1.386v-.126l-1.743.02c-.546.015-1.008.127-1.386.337-.364.196-.546.504-.546.924 0 .378.112.679.336.903.224.21.56.315 1.008.315Zm-4.741-8.883L122.582 21h-2.73l-1.428-4.452-.105-.273a279.09 279.09 0 0 1-.714-2.268h-.021c-.182.63-.392 1.323-.63 2.079-.028.07-.056.147-.084.23a1.114 1.114 0 0 1-.063.232L115.379 21h-2.709l-3.591-10.836h2.94l1.323 4.305c.238.784.476 1.645.714 2.583h.021c.098-.378.28-1.022.546-1.932.042-.112.084-.217.126-.315.042-.112.077-.224.105-.336l1.407-4.305h2.709l1.407 4.305.042.126c.266.84.518 1.659.756 2.457h.021c.098-.476.28-1.176.546-2.1.028-.07.056-.147.084-.231l.084-.252 1.302-4.305h2.94Zm-25.704 5.502c0 .56.112 1.043.336 1.449a2.4 2.4 0 0 0 .966.903c.406.21.875.315 1.407.315.476 0 .875-.084 1.197-.252.322-.168.567-.385.735-.651.168-.266.252-.546.252-.84 0-.42-.147-.784-.441-1.092-.294-.322-.721-.546-1.281-.672l-1.743-.441c-1.232-.294-2.198-.812-2.898-1.554a3.823 3.823 0 0 1-1.05-2.688c0-.854.238-1.61.714-2.268a4.716 4.716 0 0 1 1.869-1.554 5.594 5.594 0 0 1 2.499-.567c.952 0 1.792.224 2.52.672a4.385 4.385 0 0 1 1.701 1.764c.406.742.609 1.56.609 2.457h-2.877c0-.616-.196-1.12-.588-1.512-.378-.406-.875-.61-1.491-.61-.406 0-.763.085-1.071.253a1.675 1.675 0 0 0-.672.609 1.369 1.369 0 0 0 .105 1.659c.224.252.588.44 1.092.567l1.701.42c1.442.364 2.52.917 3.234 1.659.714.728 1.071 1.68 1.071 2.856 0 .896-.224 1.694-.672 2.394-.434.686-1.043 1.225-1.827 1.617-.784.378-1.673.567-2.667.567-1.036 0-1.988-.224-2.856-.672a5.296 5.296 0 0 1-2.058-1.911c-.504-.826-.756-1.785-.756-2.877h2.94ZM90.27 5.88 86.133 21H83.13l-2.08-7.77a28.525 28.525 0 0 0-.188-.714 20.702 20.702 0 0 0-.19-.777l-.167-.756c-.056-.252-.112-.49-.168-.714h-.021c-.056.21-.12.44-.19.693a60.73 60.73 0 0 0-.167.735l-.21.798c-.056.252-.12.497-.19.735L77.482 21h-3.003L70.34 5.88h2.982l2.058 7.77c.056.21.112.434.168.672.056.238.112.483.168.735.056.252.112.497.168.735.056.238.098.469.126.693h.02c.057-.252.12-.518.19-.798.07-.294.14-.595.21-.903.056-.196.105-.385.147-.567.056-.196.105-.385.147-.567l2.079-7.77h3.003l2.1 7.77c.042.154.084.315.126.483l.126.504c.126.504.273 1.12.44 1.848h.022l.084-.42c.028-.154.063-.315.105-.483.14-.672.287-1.316.44-1.932l2.038-7.77h2.982ZM65.15 21.126a5.22 5.22 0 0 1-2.71-.735 5.674 5.674 0 0 1-1.973-2.016 5.641 5.641 0 0 1-.714-2.793c0-1.008.238-1.932.714-2.772a5.456 5.456 0 0 1 1.974-2.016 5.103 5.103 0 0 1 2.709-.756h.02a5 5 0 0 1 2.689.756 5.298 5.298 0 0 1 1.953 2.016c.49.854.735 1.778.735 2.772 0 .994-.245 1.918-.735 2.772a5.457 5.457 0 0 1-1.953 2.037 5.104 5.104 0 0 1-2.688.735h-.021Zm.02-2.898a2.28 2.28 0 0 0 1.24-.357c.378-.238.672-.553.882-.945.224-.406.336-.854.336-1.344 0-.476-.112-.917-.336-1.323a2.607 2.607 0 0 0-.903-.966 2.245 2.245 0 0 0-1.218-.357h-.021c-.462 0-.882.119-1.26.357s-.68.56-.903.966a2.694 2.694 0 0 0-.336 1.323c0 .476.112.917.336 1.323.224.406.525.728.903.966s.798.357 1.26.357h.02Zm-13.708 2.898a7.493 7.493 0 0 1-3.843-1.03 8.025 8.025 0 0 1-2.793-2.813 7.493 7.493 0 0 1-1.03-3.843c0-1.386.344-2.667 1.03-3.843a7.852 7.852 0 0 1 2.793-2.793 7.378 7.378 0 0 1 3.843-1.05c1.232 0 2.33.28 3.297.84.966.546 1.736 1.246 2.31 2.1.588.854.959 1.729 1.113 2.625h-3.024a3.078 3.078 0 0 0-.756-1.365 3.965 3.965 0 0 0-1.344-.945 3.784 3.784 0 0 0-1.596-.357 4.59 4.59 0 0 0-2.394.65 5.007 5.007 0 0 0-1.722 1.744 4.59 4.59 0 0 0-.651 2.394c0 .868.217 1.666.65 2.394a5.007 5.007 0 0 0 1.723 1.743 4.59 4.59 0 0 0 2.394.65c.868 0 1.645-.23 2.33-.692a3.475 3.475 0 0 0 1.408-1.89h3.003a6.447 6.447 0 0 1-1.113 2.709c-.588.826-1.372 1.498-2.352 2.016-.966.504-2.058.756-3.276.756Z"/><path fill="#FFFFFF" fill-rule="evenodd" d="M13.653 26a4.011 4.011 0 0 1-3.824-2.79L7.11 14.666H5.44a4.011 4.011 0 0 1-3.825-2.791L0 6.8h6.058L2.863 2h30.274l-3.195 4.8H36l-1.615 5.076a4.011 4.011 0 0 1-3.825 2.79h-1.67l-2.72 8.544A4.011 4.011 0 0 1 22.346 26h-8.693ZM11.6 12.333c0 1.289.965 2.334 2.156 2.334 1.19 0 2.155-1.045 2.155-2.334 0-1.288-.965-2.333-2.155-2.333S11.6 11.045 11.6 12.333Zm12.8 0c0 1.289-.965 2.334-2.156 2.334-1.19 0-2.155-1.045-2.155-2.334 0-1.288.965-2.333 2.155-2.333s2.156 1.045 2.156 2.333Z" clip-rule="evenodd"/></svg>
|
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg height="21.462" viewBox="0 0 82.878 21.462"
|
|
1
|
+
<svg width="82.878" height="21.462" viewBox="0 0 82.878 21.462" xmlns="http://www.w3.org/2000/svg"
|
|
2
2
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
3
|
<linearGradient id="a" gradientUnits="objectBoundingBox" x1=".536" x2=".011" y1=".026" y2="1">
|
|
4
4
|
<stop offset="0" stop-color="#03d1cf" stop-opacity=".988" />
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="67" height="21" viewBox="0 0 67 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.2939 12.333C17.4521 12.7565 17.6753 13.3187 17.9629 14.0195C18.0059 13.9174 18.0496 13.8046 18.0928 13.6807C18.1359 13.5566 18.1786 13.4429 18.2217 13.3408C18.308 13.151 18.3846 12.9716 18.4492 12.8037C18.5139 12.636 18.5754 12.472 18.6328 12.3115L21.2217 5.38672H22.624L16.7334 20.5498H15.3301L17.2725 15.6416L13.0645 5.38672H14.5322L17.2939 12.333Z" fill="white"/>
|
|
3
|
+
<path d="M48.4473 13.5547L51.0967 1.88281C51.1255 1.76476 51.1396 1.65745 51.1396 1.56152C51.1396 1.27379 51.0161 1.07794 50.7695 0.974609C50.4718 0.856702 50.3225 0.716723 50.3223 0.554688C50.3223 0.532555 50.3258 0.509443 50.333 0.487305C50.3691 0.332441 50.4606 0.25497 50.6055 0.254883H53.3857C53.509 0.254883 53.5713 0.306837 53.5713 0.410156C53.5713 0.432191 53.5677 0.457976 53.5605 0.487305C53.5167 0.679184 53.2984 0.841752 52.9062 0.974609C52.5138 1.10755 52.2631 1.41055 52.1543 1.88281L48.8721 16.2783L47.0518 15.8018L39.6055 2.63574L36.9775 14.1855C36.9488 14.3032 36.9346 14.4102 36.9346 14.5059C36.9346 14.8012 37.062 14.9978 37.3164 15.0938C37.6136 15.2118 37.7625 15.3481 37.7627 15.5029C37.7627 15.525 37.7592 15.5473 37.752 15.5693C37.7159 15.7243 37.6205 15.8018 37.4678 15.8018H34.6992C34.5756 15.8017 34.5137 15.7505 34.5137 15.6475C34.5137 15.6253 34.5182 15.5989 34.5254 15.5693C34.5688 15.3849 34.7871 15.2299 35.1797 15.1045C35.5716 14.9715 35.8228 14.665 35.9316 14.1855L38.7227 1.88281C38.7521 1.76479 38.7666 1.65743 38.7666 1.56152C38.7665 1.27375 38.6381 1.07793 38.3838 0.974609C38.0865 0.856701 37.9378 0.716722 37.9375 0.554688C37.9375 0.532544 37.941 0.509454 37.9482 0.487305C37.9843 0.332513 38.079 0.25502 38.2314 0.254883H41.0342L48.4473 13.5547Z" fill="white"/>
|
|
4
|
+
<path d="M1.42383 7.27148H10.207V0.676758H11.6094V15.9268H10.207V8.49902H1.42383V15.9268H0V0.676758H1.42383V7.27148Z" fill="white"/>
|
|
5
|
+
<path d="M35.209 3.10156C35.1728 3.25607 35.0778 3.33398 34.9258 3.33398C34.8531 3.33354 34.7519 3.18519 34.6211 2.89062C34.3746 2.38149 34.1486 1.98658 33.9453 1.70605C33.7487 1.42552 33.4321 1.28516 32.9961 1.28516H28.3408L26.9668 7.29785H29.4639C29.9292 7.29777 30.278 7.10884 30.5107 6.73242C30.7433 6.34893 30.9538 6.15733 31.1426 6.15723C31.2587 6.15723 31.3174 6.20503 31.3174 6.30078C31.3174 6.33027 31.3129 6.36016 31.3057 6.38965L30.6738 9.20215C30.6372 9.35707 30.5468 9.43454 30.4014 9.43457C30.2125 9.43451 30.0745 9.24646 29.9873 8.87012C29.9073 8.49361 29.6338 8.30566 29.1689 8.30566H26.7383L25.2773 14.7617H29.9326C30.6085 14.7617 31.2414 14.4996 31.8301 13.9756C32.4187 13.4441 32.8654 13.0306 33.1709 12.7354C33.3381 12.573 33.4585 12.4912 33.5312 12.4912C33.6542 12.4914 33.7157 12.5427 33.7158 12.6455C33.7158 12.6676 33.7128 12.6942 33.7051 12.7236C33.6834 12.8195 33.6573 12.897 33.6279 12.9561L32.1895 15.8018H22.1699C22.0685 15.8016 22.0177 15.7538 22.0176 15.6582C22.0176 15.6361 22.021 15.6061 22.0283 15.5693C22.072 15.3849 22.2907 15.2299 22.6826 15.1045C23.0746 14.9716 23.3257 14.665 23.4346 14.1855L26.2256 1.88281C26.255 1.76473 26.2695 1.65746 26.2695 1.56152C26.2695 1.26642 26.1419 1.0672 25.8877 0.963867C25.5903 0.853304 25.4417 0.716766 25.4414 0.554688C25.4414 0.532544 25.4449 0.509454 25.4521 0.487305C25.4883 0.332434 25.5827 0.254883 25.7354 0.254883H35.8535L35.209 3.10156Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.0938 3.2002C63.217 3.83128 63.3438 4.47157 63.4727 5.12109L64.2627 9.0752C64.3915 9.72463 64.5183 10.365 64.6416 10.9961C64.8888 12.2584 65.0995 13.3218 65.2744 14.1855C65.3178 14.4585 65.4745 14.7054 65.7432 14.9268C65.8887 15.0375 66.0342 15.1303 66.1797 15.2041C66.3244 15.2777 66.4408 15.3477 66.5273 15.4141C66.5857 15.4657 66.6233 15.5176 66.6377 15.5693C66.6448 15.5838 66.6474 15.5987 66.6475 15.6133C66.6475 15.628 66.6449 15.6435 66.6377 15.6582C66.6305 15.6803 66.6153 15.7059 66.5938 15.7354C66.5644 15.7795 66.5175 15.8016 66.4521 15.8018H62.7666C62.7011 15.8017 62.6388 15.7796 62.5811 15.7354C62.5233 15.6838 62.4941 15.6283 62.4941 15.5693C62.4869 15.5473 62.4834 15.525 62.4834 15.5029C62.4978 15.4366 62.5602 15.3667 62.6689 15.293C62.7488 15.2266 62.8425 15.1557 62.9512 15.082C63.0606 15.0082 63.1519 14.9086 63.2246 14.7832C63.2612 14.7243 63.2863 14.6576 63.3008 14.584C63.3152 14.5102 63.3223 14.4361 63.3223 14.3623C63.3223 14.3033 63.3187 14.2403 63.3115 14.1738L62.5596 10.3867H56.2031C55.796 11.0215 55.3931 11.6572 54.9932 12.292C54.5934 12.9193 54.1897 13.5465 53.7832 14.1738C53.6816 14.3213 53.6158 14.4543 53.5869 14.5723C53.5653 14.624 53.5467 14.6759 53.5322 14.7275C53.525 14.7792 53.5215 14.8278 53.5215 14.8721V14.9375C53.5215 15.0334 53.5401 15.1152 53.5762 15.1816C53.6128 15.2406 53.6344 15.3038 53.6416 15.3701C53.6344 15.4285 53.6273 15.469 53.6201 15.4912C53.6201 15.5134 53.6086 15.5398 53.5869 15.5693C53.4998 15.7242 53.4017 15.8016 53.293 15.8018H50.4795C50.4074 15.8017 50.3596 15.7796 50.3379 15.7354C50.3451 15.7281 50.3486 15.7202 50.3486 15.7129C50.3485 15.7055 50.345 15.6941 50.3379 15.6797C50.3379 15.6648 50.353 15.6279 50.3818 15.5693C50.4468 15.4734 50.5925 15.3772 50.8174 15.2812C50.934 15.2296 51.061 15.1742 51.1992 15.1152C51.3441 15.0489 51.4934 14.9713 51.6455 14.8828C51.9581 14.691 52.2096 14.4585 52.3984 14.1855L61.7959 0H62.4727C62.6398 0.871075 62.8466 1.93789 63.0938 3.2002ZM58.9072 6.12402C58.1952 7.24604 57.4825 8.36822 56.7705 9.49023H62.3848L61.0664 2.74609C60.3472 3.87556 59.627 5.00195 58.9072 6.12402Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="365" height="365" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 365 365"><path fill="#fcfcfc" fill-rule="evenodd" d="M182.103 364.397c100.515 0 182-81.484 182-182 0-100.515-81.485-182-182-182-100.516 0-182 81.485-182 182 0 100.516 81.484 182 182 182M288.656 178.68c-24.874-31.099-63.968-50.206-106.887-50.206-42.92 0-81.395 19.107-106.27 50.206 0 0 12.406.969 21.92 2.998s22.836 7.676 22.836 7.676c16.731-13.764 38.157-22.029 61.514-22.029 23.356 0 44.782 8.265 61.513 22.029 0 0 13.321-5.647 22.836-7.676s22.538-2.998 22.538-2.998M66.549 109.824c24.074 0 43.94 7.313 61.62 20.479 16.923-6.937 28.463-8.579 46.27-8.934-24.821-32.169-64.116-52.016-107.89-52.016-5.005 0-8.851.327-13.715.855 0 0-8.605 9.622-15.591 21.401S22.97 120.737 22.97 120.737c12.985-6.463 28.089-10.913 43.578-10.913M208.39 92.457c-8.08-3.49-16.986-5.497-26.186-5.497-9.095 0-17.985 2.02-26.088 5.508l6.484 5.303c6.165-2.265 12.848-3.697 19.604-3.697 7.195 0 13.943 1.286 20.231 3.645zm-25.95-26.67c16.636 0 33.548 5.684 46.954 13.905l-10.54 5.967a77 77 0 0 0-36.414-9.126c-13.183 0-26.058 3.694-36.935 9.562l-10.635-6.077c13.517-8.436 30.559-14.23 47.57-14.23m105.279-1.319C262.846 33.37 224.579 13.45 181.66 13.45S100.473 33.37 75.6 64.47c0 0 12.196.156 21.71 2.185s22.836 7.676 22.836 7.676c16.731-13.764 38.157-22.029 61.514-22.029 23.356 0 44.782 8.265 61.513 22.03 0 0 13.321-5.648 22.836-7.677s21.711-2.185 21.711-2.185m10.239 45.356c-24.074 0-43.939 7.313-61.62 20.479-16.923-6.937-28.463-8.579-46.27-8.934 24.822-32.169 64.116-52.016 107.89-52.016 5.005 0 8.852.327 13.716.855 0 0 8.605 9.622 15.59 21.401 6.986 11.78 14.272 29.128 14.272 29.128-12.985-6.463-28.089-10.913-43.578-10.913m45.526 26.234c-13.406-8.221-29.59-13.327-46.226-13.327-17.011 0-33.805 5.692-47.323 14.128l10.685 5.835c10.877-5.868 23.455-9.218 36.638-9.218 13.134 0 25.041 2.892 35.914 8.707zm-45.162 7.829c9.2 0 17.482 1.96 25.562 5.45l-6.225 5.178c-6.288-2.359-12.142-3.514-19.337-3.514-6.757 0-13.906 1.242-20.071 3.507l-6.533-4.938c8.103-3.488 17.509-5.683 26.604-5.683m32.401 36.103c-14.466-2.271-26.067-1.81-26.067-1.81a134.6 134.6 0 0 1 42.651-35.128s2.707 6.821 4.435 20.657.847 21.972.847 21.972-7.4-3.419-21.866-5.691m21.387 13.946c-16.366-7.223-33.722-8.342-52.712-8.342-41.5 0-78.592 19.129-103.159 49.163 0 0 12.25 1.621 22.586 4.115 10.336 2.493 20.602 7.003 20.602 7.003 16.401-13.405 37.261-21.43 59.971-21.43 16.3 0 31.994 2.287 45.424 9.577 0 0 2.781-9.963 4.656-19.03s2.632-21.056 2.632-21.056m-139.245 14.56c-9.209-4.79-19.728-7.624-30.661-7.624-10.863 0-21.432 2.881-30.72 7.704l6.255 5.106c7.432-3.39 15.888-5.697 24.465-5.697 9.045 0 17.381 2.033 24.988 5.673zm-80.617-12.803c14.272-9.93 31.593-15.804 50.193-15.804 18.018 0 34.941 5.668 49.038 15.17l-9.246 6.618c-11.649-6.999-25.277-11.043-39.792-11.043-14.762 0-28.576 4.198-40.327 11.431zM94.553 149.59c-8.079-3.49-17.277-5.701-26.477-5.701-9.095 0-17.985 2.02-26.088 5.509l6.484 5.302c6.165-2.265 12.848-3.697 19.604-3.697 7.196 0 13.185 1.231 19.473 3.59zm-26.977-26.857c-16.636 0-32.82 5.106-46.226 13.327l10.313 6.125c10.872-5.815 22.78-8.707 35.913-8.707 13.184 0 25.761 3.35 36.639 9.218l10.684-5.835c-13.517-8.436-30.312-14.128-47.323-14.128m-34.25 57.259c14.466-2.271 26.068-1.81 26.068-1.81a134.6 134.6 0 0 0-42.651-35.128s-2.708 6.821-4.435 20.657c-1.728 13.837-.848 21.972-.848 21.972s7.4-3.419 21.867-5.691m-21.001 15.325c16.366-7.223 33.345-9.721 52.335-9.721 41.5 0 78.592 19.129 103.158 49.163 0 0-12.25 1.621-22.585 4.115-10.336 2.493-20.603 7.003-20.603 7.003-16.4-13.405-37.26-21.43-59.97-21.43-16.3 0-31.015 2.464-44.445 9.755 0 0-2.761-8.768-4.636-17.835s-3.254-21.05-3.254-21.05m12.239 49.932c11.276-5.189 23.797-8.129 36.896-8.129 18.614 0 35.947 5.774 50.225 15.533 0 0-1.579.642-4.917 2.729s-5.119 3.42-5.119 3.42a77.8 77.8 0 0 0-40.19-11.136c-11.75 0-32.93 7.237-32.93 7.237s-1.415-2.749-2.597-5.817-1.368-3.837-1.368-3.837m36.04 12.865c10.934 0 22.212 3.118 31.42 7.907l-6.324 5.06c-7.607-3.64-16.05-5.853-25.095-5.853-7.885 0-15.669 1.95-22.648 4.899l-4.19-6.177c8.303-3.689 17.461-5.836 26.838-5.836M267.5 330.127c-16.175-30.95-48.497-48.697-85.838-48.697-36.731 0-68.109 18.736-84.538 48.862 0 0-8.043-4.256-16.064-10.36-8.02-6.104-15.016-12.513-15.016-12.513 23.712-39.59 66.113-64.84 115.618-64.84 50.128 0 93.202 23.308 116.711 63.727 0 0-5.722 5.629-13.283 11.678s-17.59 12.143-17.59 12.143m36.218-93.007c13.099 0 25.619 2.94 36.895 8.129 0 0-.187.769-1.368 3.837s-2.597 5.817-2.597 5.817-21.179-7.237-32.93-7.237a77.8 77.8 0 0 0-40.19 11.136s-1.78-1.332-5.119-3.42-4.917-2.729-4.917-2.729c14.278-9.759 31.612-15.533 50.226-15.533m-30.734 28.901c9.208-4.789 20.486-7.907 31.419-7.907 9.377 0 18.535 2.147 26.838 5.836l-4.19 6.177c-6.979-2.949-14.763-4.899-22.648-4.899-9.044 0-17.488 2.213-25.095 5.853zm-90.777 49.651c22.404 0 43.071 11.904 54.283 28.142-2.288 1.197-7.332 2.924-7.332 2.924-9.864-14.16-27.36-23.952-46.951-23.952-19.639 0-37.744 10.268-47.596 24.485-2.033-.517-4.511-1.49-6.464-2.257l-1.024-.401c11.161-16.471 32.486-28.941 55.084-28.941m75.063 19.661c-15.635-24.526-43.585-41.567-74.827-41.567-31.511 0-59.352 16.859-74.916 41.741 2.37 1.592 9.667 4.926 9.667 4.926 13.739-21.475 37.863-35.921 65.249-35.921 27.32 0 51.498 14.326 65.254 35.715 0 0 6.383-3.084 9.573-4.894"/></svg>
|
|
Binary file
|