noosphere 0.3.0 → 0.4.1

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.
Files changed (71) hide show
  1. package/README.md +34 -14
  2. package/assets/logos/png/ai21.png +0 -0
  3. package/assets/logos/png/amazon.png +0 -0
  4. package/assets/logos/png/anthropic.png +0 -0
  5. package/assets/logos/png/baidu.png +0 -0
  6. package/assets/logos/png/bytedance.png +0 -0
  7. package/assets/logos/png/cerebras.png +0 -0
  8. package/assets/logos/png/cohere.png +0 -0
  9. package/assets/logos/png/comfyui.png +0 -0
  10. package/assets/logos/png/deepseek.png +0 -0
  11. package/assets/logos/png/fal.png +0 -0
  12. package/assets/logos/png/fireworks-ai.png +0 -0
  13. package/assets/logos/png/google.png +0 -0
  14. package/assets/logos/png/groq.png +0 -0
  15. package/assets/logos/png/huggingface.png +0 -0
  16. package/assets/logos/png/ibm.png +0 -0
  17. package/assets/logos/png/inflection.png +0 -0
  18. package/assets/logos/png/kokoro.png +0 -0
  19. package/assets/logos/png/meta.png +0 -0
  20. package/assets/logos/png/microsoft.png +0 -0
  21. package/assets/logos/png/minimax.png +0 -0
  22. package/assets/logos/png/mistral.png +0 -0
  23. package/assets/logos/png/nebius.png +0 -0
  24. package/assets/logos/png/novita.png +0 -0
  25. package/assets/logos/png/nvidia.png +0 -0
  26. package/assets/logos/png/ollama.png +0 -0
  27. package/assets/logos/png/openai.png +0 -0
  28. package/assets/logos/png/openrouter.png +0 -0
  29. package/assets/logos/png/perplexity.png +0 -0
  30. package/assets/logos/png/pi-ai.png +0 -0
  31. package/assets/logos/png/piper.png +0 -0
  32. package/assets/logos/png/qwen.png +0 -0
  33. package/assets/logos/png/replicate.png +0 -0
  34. package/assets/logos/png/sambanova.png +0 -0
  35. package/assets/logos/png/tencent.png +0 -0
  36. package/assets/logos/png/together.png +0 -0
  37. package/assets/logos/png/upstage.png +0 -0
  38. package/assets/logos/png/xai.png +0 -0
  39. package/assets/logos/png/xiaomi.png +0 -0
  40. package/assets/logos/png/zai.png +0 -0
  41. package/assets/logos/svg/amazon.svg +1 -0
  42. package/assets/logos/svg/anthropic.svg +1 -0
  43. package/assets/logos/svg/baidu.svg +1 -0
  44. package/assets/logos/svg/cerebras.svg +1 -0
  45. package/assets/logos/svg/cohere.svg +1 -0
  46. package/assets/logos/svg/deepseek.svg +1 -0
  47. package/assets/logos/svg/fireworks-ai.svg +9 -0
  48. package/assets/logos/svg/google.svg +1 -0
  49. package/assets/logos/svg/groq.svg +1 -0
  50. package/assets/logos/svg/huggingface.svg +67 -0
  51. package/assets/logos/svg/meta.svg +1 -0
  52. package/assets/logos/svg/microsoft.svg +1 -0
  53. package/assets/logos/svg/mistral.svg +1 -0
  54. package/assets/logos/svg/nebius.svg +4 -0
  55. package/assets/logos/svg/novita.svg +11 -0
  56. package/assets/logos/svg/nvidia.svg +1 -0
  57. package/assets/logos/svg/ollama.svg +7 -0
  58. package/assets/logos/svg/openai.svg +1 -0
  59. package/assets/logos/svg/openrouter.svg +21 -0
  60. package/assets/logos/svg/perplexity.svg +24 -0
  61. package/assets/logos/svg/qwen.svg +1 -0
  62. package/assets/logos/svg/replicate.svg +12 -0
  63. package/assets/logos/svg/together.svg +1 -0
  64. package/assets/logos/svg/xai.svg +1 -0
  65. package/dist/index.cjs +139 -122
  66. package/dist/index.cjs.map +1 -1
  67. package/dist/index.d.cts +10 -6
  68. package/dist/index.d.ts +10 -6
  69. package/dist/index.js +136 -122
  70. package/dist/index.js.map +1 -1
  71. package/package.json +2 -1
package/README.md CHANGED
@@ -65,38 +65,58 @@ Noosphere **automatically discovers the latest models from EVERY provider's API
65
65
 
66
66
  ### Provider Logos — SVG & PNG for Every Model
67
67
 
68
- Every model returned by the auto-fetch includes a `logo` field with the provider's official logo in SVG and PNG formats. For aggregator providers (OpenRouter, HuggingFace), logos are resolved to the **real upstream provider** — so an `x-ai/grok-4` model gets the xAI logo, not OpenRouter's.
68
+ Every model returned by the auto-fetch includes a `logo` field with **absolute file paths** to the provider's official logo bundled in the package — SVG (vector) and PNG (512×512). No CDN dependencies, no external requests. For aggregator providers (OpenRouter, HuggingFace), logos are resolved to the **real upstream provider** — so an `x-ai/grok-4` model gets the xAI logo, not OpenRouter's.
69
69
 
70
70
  ```typescript
71
+ import { readFileSync } from 'fs';
72
+
71
73
  const models = await ai.getModels('llm');
72
74
 
73
75
  for (const model of models) {
74
76
  console.log(model.id, model.logo);
75
- // "gpt-5" { svg: "https://cdn.simpleicons.org/openai", png: "https://cdn.brandfetch.io/.../icon.png" }
76
- // "claude-opus-4-6" { svg: "https://cdn.simpleicons.org/anthropic", png: "https://cdn.brandfetch.io/.../icon.png" }
77
- // "gemini-2.5-pro" { svg: "https://cdn.simpleicons.org/google", png: "https://cdn.brandfetch.io/.../icon.png" }
77
+ // "gpt-5" { svg: "/path/to/node_modules/noosphere/assets/logos/svg/openai.svg",
78
+ // png: "/path/to/node_modules/noosphere/assets/logos/png/openai.png" }
79
+ // "claude-opus-4-6" { svg: "/.../anthropic.svg", png: "/.../anthropic.png" }
80
+ // "gemini-2.5-pro" { svg: "/.../google.svg", png: "/.../google.png" }
81
+
82
+ // Read the file directly:
83
+ const svgContent = readFileSync(model.logo.svg, 'utf-8');
84
+ const pngBuffer = readFileSync(model.logo.png);
85
+
86
+ // Serve in Express:
87
+ // app.get('/logo/:provider.svg', (req, res) => res.sendFile(model.logo.svg));
88
+
89
+ // Use in React (copy to public/):
90
+ // <img src={`/logos/${model.provider}.svg`} alt={model.provider} />
78
91
  }
79
92
 
80
93
  // Providers also have logos:
81
94
  const providers = await ai.getProviders();
82
95
  providers.forEach(p => console.log(p.id, p.logo));
83
-
84
- // Use in your UI:
85
- // <img src={model.logo.svg} alt={model.provider} />
86
96
  ```
87
97
 
88
- **Covered providers:** OpenAI, Anthropic, Google, Groq, Mistral, xAI, OpenRouter, Cerebras, Meta, DeepSeek, Microsoft, NVIDIA, Qwen, Cohere, Perplexity, Amazon, FAL, HuggingFace, ComfyUI, Piper, Kokoro, Ollama, SambaNova, Together, Fireworks, Replicate, Nebius, Novita.
98
+ **28 providers covered (23 SVG + 28 PNG):**
99
+
100
+ | Provider | SVG | PNG | Source |
101
+ |---|---|---|---|
102
+ | OpenAI, Anthropic, Google, Groq, Mistral, xAI | ✓ | ✓ | Official brand assets |
103
+ | OpenRouter, Cerebras, Meta, DeepSeek | ✓ | ✓ | Official brand assets |
104
+ | Microsoft, NVIDIA, Qwen, Cohere, Perplexity | ✓ | ✓ | Official brand assets |
105
+ | Amazon, Together, Fireworks, Replicate | ✓ | ✓ | Official brand assets |
106
+ | HuggingFace, Ollama, Nebius, Novita | ✓ | ✓ | Official brand assets |
107
+ | FAL, ComfyUI, Piper, Kokoro, SambaNova | ✗ | ✓ | GitHub avatars (512×512) |
89
108
 
90
109
  You can also import the logo registry directly:
91
110
 
92
111
  ```typescript
93
- import { getProviderLogo, PROVIDER_LOGOS } from 'noosphere';
112
+ import { getProviderLogo, PROVIDER_LOGOS, getAllProviderLogos } from 'noosphere';
94
113
 
95
114
  const logo = getProviderLogo('anthropic');
96
- // { svg: "https://cdn.simpleicons.org/anthropic", png: "https://cdn.brandfetch.io/.../icon.png" }
115
+ // { svg: "/abs/path/to/anthropic.svg", png: "/abs/path/to/anthropic.png" }
97
116
 
98
- // Or access the full map:
99
- console.log(Object.keys(PROVIDER_LOGOS));
117
+ // Get all logos as a map:
118
+ const allLogos = getAllProviderLogos();
119
+ console.log(Object.keys(allLogos));
100
120
  // ['openai', 'anthropic', 'google', 'groq', 'mistral', 'xai', 'openrouter', ...]
101
121
  ```
102
122
 
@@ -108,8 +128,8 @@ const qwen = hfModels.find(m => m.id === 'Qwen/Qwen2.5-72B-Instruct');
108
128
 
109
129
  console.log(qwen.capabilities.inferenceProviderLogos);
110
130
  // {
111
- // "together": { svg: "https://cdn.simpleicons.org/togetherai", png: "..." },
112
- // "fireworks-ai": { png: "https://cdn.brandfetch.io/.../icon.png" },
131
+ // "together": { svg: "/.../together.svg", png: "/.../together.png" },
132
+ // "fireworks-ai": { png: "/.../fireworks-ai.png" },
113
133
  // }
114
134
  ```
115
135
 
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
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" x="0" y="0" viewBox="0 0 304 182"><path fill="#252f3e" d="m86 66 2 9c0 3 1 5 3 8v2l-1 3-7 4-2 1-3-1-4-5-3-6c-8 9-18 14-29 14-9 0-16-3-20-8-5-4-8-11-8-19s3-15 9-20c6-6 14-8 25-8a79 79 0 0 1 22 3v-7c0-8-2-13-5-16-3-4-8-5-16-5l-11 1a80 80 0 0 0-14 5h-2c-1 0-2-1-2-3v-5l1-3c0-1 1-2 3-2l12-5 16-2c12 0 20 3 26 8 5 6 8 14 8 25v32zM46 82l10-2c4-1 7-4 10-7l3-6 1-9v-4a84 84 0 0 0-19-2c-6 0-11 1-15 4-3 2-4 6-4 11s1 8 3 11c3 2 6 4 11 4zm80 10-4-1-2-3-23-78-1-4 2-2h10l4 1 2 4 17 66 15-66 2-4 4-1h8l4 1 2 4 16 67 17-67 2-4 4-1h9c2 0 3 1 3 2v2l-1 2-24 78-2 4-4 1h-9l-4-1-1-4-16-65-15 64-2 4-4 1h-9zm129 3a66 66 0 0 1-27-6l-3-3-1-2v-5c0-2 1-3 2-3h2l3 1a54 54 0 0 0 23 5c6 0 11-2 14-4 4-2 5-5 5-9l-2-7-10-5-15-5c-7-2-13-6-16-10a24 24 0 0 1 5-34l10-5a44 44 0 0 1 20-2 110 110 0 0 1 12 3l4 2 3 2 1 4v4c0 3-1 4-2 4l-4-2c-6-2-12-3-19-3-6 0-11 0-14 2s-4 5-4 9c0 3 1 5 3 7s5 4 11 6l14 4c7 3 12 6 15 10s5 9 5 14l-3 12-7 8c-3 3-7 5-11 6l-14 2z"/><path d="M274 144A220 220 0 0 1 4 124c-4-3-1-6 2-4a300 300 0 0 0 263 16c5-2 10 4 5 8z" fill="#f90"/><path d="M287 128c-4-5-28-3-38-1-4 0-4-3-1-5 19-13 50-9 53-5 4 5-1 36-18 51-3 2-6 1-5-2 5-10 13-33 9-38z" fill="#f90"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#000" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"></path></svg>
@@ -0,0 +1 @@
1
+ 404: Not Found
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1180 320"><path d="m367.44 153.84c0 52.32 33.6 88.8 80.16 88.8s80.16-36.48 80.16-88.8-33.6-88.8-80.16-88.8-80.16 36.48-80.16 88.8zm129.6 0c0 37.44-20.4 61.68-49.44 61.68s-49.44-24.24-49.44-61.68 20.4-61.68 49.44-61.68 49.44 24.24 49.44 61.68z"></path><path d="m614.27 242.64c35.28 0 55.44-29.76 55.44-65.52s-20.16-65.52-55.44-65.52c-16.32 0-28.32 6.48-36.24 15.84v-13.44h-28.8v169.2h28.8v-56.4c7.92 9.36 19.92 15.84 36.24 15.84zm-36.96-69.12c0-23.76 13.44-36.72 31.2-36.72 20.88 0 32.16 16.32 32.16 40.32s-11.28 40.32-32.16 40.32c-17.76 0-31.2-13.2-31.2-36.48z"></path><path d="m747.65 242.64c25.2 0 45.12-13.2 54-35.28l-24.72-9.36c-3.84 12.96-15.12 20.16-29.28 20.16-18.48 0-31.44-13.2-33.6-34.8h88.32v-9.6c0-34.56-19.44-62.16-55.92-62.16s-60 28.56-60 65.52c0 38.88 25.2 65.52 61.2 65.52zm-1.44-106.8c18.24 0 26.88 12 27.12 25.92h-57.84c4.32-17.04 15.84-25.92 30.72-25.92z"></path><path d="m823.98 240h28.8v-73.92c0-18 13.2-27.6 26.16-27.6 15.84 0 22.08 11.28 22.08 26.88v74.64h28.8v-83.04c0-27.12-15.84-45.36-42.24-45.36-16.32 0-27.6 7.44-34.8 15.84v-13.44h-28.8z"></path><path d="m1014.17 67.68-65.28 172.32h30.48l14.64-39.36h74.4l14.88 39.36h30.96l-65.28-172.32zm16.8 34.08 27.36 72h-54.24z"></path><path d="m1163.69 68.18h-30.72v172.32h30.72z"></path><path d="m297.06 130.97c7.26-21.79 4.76-45.66-6.85-65.48-17.46-30.4-52.56-46.04-86.84-38.68-15.25-17.18-37.16-26.95-60.13-26.81-35.04-.08-66.13 22.48-76.91 55.82-22.51 4.61-41.94 18.7-53.31 38.67-17.59 30.32-13.58 68.54 9.92 94.54-7.26 21.79-4.76 45.66 6.85 65.48 17.46 30.4 52.56 46.04 86.84 38.68 15.24 17.18 37.16 26.95 60.13 26.8 35.06.09 66.16-22.49 76.94-55.86 22.51-4.61 41.94-18.7 53.31-38.67 17.57-30.32 13.55-68.51-9.94-94.51zm-120.28 168.11c-14.03.02-27.62-4.89-38.39-13.88.49-.26 1.34-.73 1.89-1.07l63.72-36.8c3.26-1.85 5.26-5.32 5.24-9.07v-89.83l26.93 15.55c.29.14.48.42.52.74v74.39c-.04 33.08-26.83 59.9-59.91 59.97zm-128.84-55.03c-7.03-12.14-9.56-26.37-7.15-40.18.47.28 1.3.79 1.89 1.13l63.72 36.8c3.23 1.89 7.23 1.89 10.47 0l77.79-44.92v31.1c.02.32-.13.63-.38.83l-64.41 37.19c-28.69 16.52-65.33 6.7-81.92-21.95zm-16.77-139.09c7-12.16 18.05-21.46 31.21-26.29 0 .55-.03 1.52-.03 2.2v73.61c-.02 3.74 1.98 7.21 5.23 9.06l77.79 44.91-26.93 15.55c-.27.18-.61.21-.91.08l-64.42-37.22c-28.63-16.58-38.45-53.21-21.95-81.89zm221.26 51.49-77.79-44.92 26.93-15.54c.27-.18.61-.21.91-.08l64.42 37.19c28.68 16.57 38.51 53.26 21.94 81.94-7.01 12.14-18.05 21.44-31.2 26.28v-75.81c.03-3.74-1.96-7.2-5.2-9.06zm26.8-40.34c-.47-.29-1.3-.79-1.89-1.13l-63.72-36.8c-3.23-1.89-7.23-1.89-10.47 0l-77.79 44.92v-31.1c-.02-.32.13-.63.38-.83l64.41-37.16c28.69-16.55 65.37-6.7 81.91 22 6.99 12.12 9.52 26.31 7.15 40.1zm-168.51 55.43-26.94-15.55c-.29-.14-.48-.42-.52-.74v-74.39c.02-33.12 26.89-59.96 60.01-59.94 14.01 0 27.57 4.92 38.34 13.88-.49.26-1.33.73-1.89 1.07l-63.72 36.8c-3.26 1.85-5.26 5.31-5.24 9.06l-.04 89.79zm14.63-31.54 34.65-20.01 34.65 20v40.01l-34.65 20-34.65-20z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 75 75" viewBox="0 0 75 75"><path d="M24.3 44.7c2 0 6-.1 11.6-2.4 6.5-2.7 19.3-7.5 28.6-12.5 6.5-3.5 9.3-8.1 9.3-14.3C73.8 7 66.9 0 58.3 0h-36C10 0 0 10 0 22.3s9.4 22.4 24.3 22.4z" style="fill-rule:evenodd;clip-rule:evenodd;fill:#39594d"/><path d="M30.4 60c0-6 3.6-11.5 9.2-13.8l11.3-4.7C62.4 36.8 75 45.2 75 57.6 75 67.2 67.2 75 57.6 75H45.3c-8.2 0-14.9-6.7-14.9-15z" style="fill-rule:evenodd;clip-rule:evenodd;fill:#d18ee2"/><path d="M12.9 47.6C5.8 47.6 0 53.4 0 60.5v1.7C0 69.2 5.8 75 12.9 75c7.1 0 12.9-5.8 12.9-12.9v-1.7c-.1-7-5.8-12.8-12.9-12.8z" style="fill:#ff7759"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" style="flex:none;line-height:1" viewBox="0 0 24 24"><path fill="#4D6BFE" d="M23.748 4.482c-.254-.124-.364.113-.512.234-.051.039-.094.09-.137.136-.372.397-.806.657-1.373.626-.829-.046-1.537.214-2.163.848-.133-.782-.575-1.248-1.247-1.548-.352-.156-.708-.311-.955-.65-.172-.241-.219-.51-.305-.774-.055-.16-.11-.323-.293-.35-.2-.031-.278.136-.356.276-.313.572-.434 1.202-.422 1.84.027 1.436.633 2.58 1.838 3.393.137.093.172.187.129.323-.082.28-.18.552-.266.833-.055.179-.137.217-.329.14a5.526 5.526 0 0 1-1.736-1.18c-.857-.828-1.631-1.742-2.597-2.458a11.365 11.365 0 0 0-.689-.471c-.985-.957.13-1.743.388-1.836.27-.098.093-.432-.779-.428-.872.004-1.67.295-2.687.684a3.055 3.055 0 0 1-.465.137 9.597 9.597 0 0 0-2.883-.102c-1.885.21-3.39 1.102-4.497 2.623C.082 8.606-.231 10.684.152 12.85c.403 2.284 1.569 4.175 3.36 5.653 1.858 1.533 3.997 2.284 6.438 2.14 1.482-.085 3.133-.284 4.994-1.86.47.234.962.327 1.78.397.63.059 1.236-.03 1.705-.128.735-.156.684-.837.419-.961-2.155-1.004-1.682-.595-2.113-.926 1.096-1.296 2.746-2.642 3.392-7.003.05-.347.007-.565 0-.845-.004-.17.035-.237.23-.256a4.173 4.173 0 0 0 1.545-.475c1.396-.763 1.96-2.015 2.093-3.517.02-.23-.004-.467-.247-.588zM11.581 18c-2.089-1.642-3.102-2.183-3.52-2.16-.392.024-.321.471-.235.763.09.288.207.486.371.739.114.167.192.416-.113.603-.673.416-1.842-.14-1.897-.167-1.361-.802-2.5-1.86-3.301-3.307-.774-1.393-1.224-2.887-1.298-4.482-.02-.386.093-.522.477-.592a4.696 4.696 0 0 1 1.529-.039c2.132.312 3.946 1.265 5.468 2.774.868.86 1.525 1.887 2.202 2.891.72 1.066 1.494 2.082 2.48 2.914.348.292.625.514.891.677-.802.09-2.14.11-3.054-.614zm1-6.44a.306.306 0 0 1 .415-.287.302.302 0 0 1 .2.288.306.306 0 0 1-.31.307.303.303 0 0 1-.304-.308zm3.11 1.596c-.2.081-.399.151-.59.16a1.245 1.245 0 0 1-.798-.254c-.274-.23-.47-.358-.552-.758a1.73 1.73 0 0 1 .016-.588c.07-.327-.008-.537-.239-.727-.187-.156-.426-.199-.688-.199a.559.559 0 0 1-.254-.078.253.253 0 0 1-.114-.358c.028-.054.16-.186.192-.21.356-.202.767-.136 1.146.016.352.144.618.408 1.001.782.391.451.462.576.685.914.176.265.336.537.445.848.067.195-.019.354-.25.452z"/></svg>
@@ -0,0 +1,9 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 40 40" height="40" width="40">
2
+ <path stroke-linejoin="round" stroke-linecap="round" stroke-width="3" stroke="url(#paint0_linear_163_10681)" d="M10.005 8.54167C9.9753 7.87571 10.079 7.21054 10.3101 6.58526C10.5412 5.95998 10.895 5.38722 11.3507 4.90068C11.8064 4.41413 12.3548 4.02362 12.9636 3.75211C13.5724 3.4806 14.2294 3.33358 14.8959 3.31969C15.5623 3.3058 16.2249 3.42532 16.8445 3.67122C17.4641 3.91712 18.0283 4.28444 18.5038 4.75158C18.9794 5.21871 19.3567 5.77623 19.6137 6.39134C19.8706 7.00644 20.002 7.66672 20 8.33334V30M10.005 8.54167C9.02538 8.79356 8.11588 9.26509 7.34543 9.92052C6.57498 10.576 5.96377 11.3981 5.55812 12.3247C5.15246 13.2514 4.96298 14.2582 5.00402 15.2689C5.04507 16.2796 5.31557 17.2677 5.79504 18.1583M10.005 8.54167C10.038 9.34789 10.2656 10.1342 10.6684 10.8333M5.79504 18.1583C4.95201 18.8432 4.28909 19.7237 3.86394 20.7232C3.4388 21.7227 3.26431 22.811 3.35565 23.8933C3.44699 24.9756 3.8014 26.0193 4.38805 26.9334C4.9747 27.8475 5.77582 28.6044 6.72171 29.1383M5.79504 18.1583C6.09994 17.91 6.42621 17.6908 6.77004 17.5M6.72171 29.1383C6.6049 30.0421 6.67461 30.9601 6.92652 31.8359C7.17843 32.7116 7.6072 33.5264 8.18635 34.2299C8.7655 34.9335 9.48273 35.5108 10.2937 35.9263C11.1048 36.3417 11.9923 36.5866 12.9017 36.6456C13.811 36.7046 14.7228 36.5765 15.5807 36.2694C16.4386 35.9622 17.2244 35.4824 17.8896 34.8596C18.5549 34.2368 19.0853 33.4843 19.4483 32.6484C19.8113 31.8126 19.9991 30.9112 20 30M6.72171 29.1383C7.72215 29.7026 8.85143 30.0005 10 30M20 30H30C30.8841 30 31.7319 30.3512 32.3571 30.9763C32.9822 31.6014 33.3334 32.4493 33.3334 33.3333V35M15 21.6667C16.3993 21.1744 17.6212 20.2783 18.5112 19.0917C19.4012 17.905 19.9193 16.4811 20 15M20 21.6667H26.6667M20 13.3333H33.3334M26.6667 13.3333V8.33334C26.6667 7.44928 27.0179 6.60143 27.643 5.97631C28.2681 5.35119 29.116 5 30 5M27.5 21.6667C27.5 22.1269 27.1269 22.5 26.6667 22.5C26.2065 22.5 25.8334 22.1269 25.8334 21.6667C25.8334 21.2064 26.2065 20.8333 26.6667 20.8333C27.1269 20.8333 27.5 21.2064 27.5 21.6667ZM30.8334 5C30.8334 5.46024 30.4603 5.83334 30 5.83334C29.5398 5.83334 29.1667 5.46024 29.1667 5C29.1667 4.53976 29.5398 4.16667 30 4.16667C30.4603 4.16667 30.8334 4.53976 30.8334 5ZM34.1667 35C34.1667 35.4602 33.7936 35.8333 33.3334 35.8333C32.8731 35.8333 32.5 35.4602 32.5 35C32.5 34.5398 32.8731 34.1667 33.3334 34.1667C33.7936 34.1667 34.1667 34.5398 34.1667 35ZM34.1667 13.3333C34.1667 13.7936 33.7936 14.1667 33.3334 14.1667C32.8731 14.1667 32.5 13.7936 32.5 13.3333C32.5 12.8731 32.8731 12.5 33.3334 12.5C33.7936 12.5 34.1667 12.8731 34.1667 13.3333Z"></path>
3
+ <defs>
4
+ <linearGradient gradientUnits="userSpaceOnUse" y2="30.5002" x2="28" y1="4.50024" x1="10.5" id="paint0_linear_163_10681">
5
+ <stop stop-color="#6720FF"></stop>
6
+ <stop stop-color="#C62179" offset="1"></stop>
7
+ </linearGradient>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 296 298" xmlns="http://www.w3.org/2000/svg" width="296" height="298" fill="none"><mask id="a" width="296" height="298" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#3186FF" d="M141.201 4.886c2.282-6.17 11.042-6.071 13.184.148l5.985 17.37a184.004 184.004 0 0 0 111.257 113.049l19.304 6.997c6.143 2.227 6.156 10.91.02 13.155l-19.35 7.082a184.001 184.001 0 0 0-109.495 109.385l-7.573 20.629c-2.241 6.105-10.869 6.121-13.133.025l-7.908-21.296a184 184 0 0 0-109.02-108.658l-19.698-7.239c-6.102-2.243-6.118-10.867-.025-13.132l20.083-7.467A183.998 183.998 0 0 0 133.291 26.28l7.91-21.394Z"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="163" cy="149" fill="#3689FF" rx="196" ry="159"/></g><g filter="url(#c)"><ellipse cx="33.5" cy="142.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#d)"><ellipse cx="19.5" cy="148.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#e)"><path fill="#FA4340" d="M194 10.5C172 82.5 65.5 134.333 22.5 135L144-66l50 76.5Z"/></g><g filter="url(#f)"><path fill="#FA4340" d="M190.5-12.5C168.5 59.5 62 111.333 19 112L140.5-89l50 76.5Z"/></g><g filter="url(#g)"><path fill="#14BB69" d="M194.5 279.5C172.5 207.5 66 155.667 23 155l121.5 201 50-76.5Z"/></g><g filter="url(#h)"><path fill="#14BB69" d="M196.5 320.5C174.5 248.5 68 196.667 25 196l121.5 201 50-76.5Z"/></g></g><defs><filter id="b" width="464" height="390" x="-69" y="-46" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="18"/></filter><filter id="c" width="265" height="273" x="-99" y="6" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="d" width="265" height="273" x="-113" y="12" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="e" width="299.5" height="329" x="-41.5" y="-130" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="f" width="299.5" height="329" x="-45" y="-153" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="g" width="299.5" height="329" x="-41" y="91" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="h" width="299.5" height="329" x="-39" y="132" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 201 201"><path fill="#F54F35" d="M0 0h201v201H0V0Z"/><path fill="#FEFBFB" d="m128 49 1.895 1.52C136.336 56.288 140.602 64.49 142 73c.097 1.823.148 3.648.161 5.474l.03 3.247.012 3.482.017 3.613c.01 2.522.016 5.044.02 7.565.01 3.84.041 7.68.072 11.521.007 2.455.012 4.91.016 7.364l.038 3.457c-.033 11.717-3.373 21.83-11.475 30.547-4.552 4.23-9.148 7.372-14.891 9.73l-2.387 1.055c-9.275 3.355-20.3 2.397-29.379-1.13-5.016-2.38-9.156-5.17-13.234-8.925 3.678-4.526 7.41-8.394 12-12l3.063 2.375c5.572 3.958 11.135 5.211 17.937 4.625 6.96-1.384 12.455-4.502 17-10 4.174-6.784 4.59-12.222 4.531-20.094l.012-3.473c.003-2.414-.005-4.827-.022-7.241-.02-3.68 0-7.36.026-11.04-.003-2.353-.008-4.705-.016-7.058l.025-3.312c-.098-7.996-1.732-13.21-6.681-19.47-6.786-5.458-13.105-8.211-21.914-7.792-7.327 1.188-13.278 4.7-17.777 10.601C75.472 72.012 73.86 78.07 75 85c2.191 7.547 5.019 13.948 12 18 5.848 3.061 10.892 3.523 17.438 3.688l2.794.103c2.256.082 4.512.147 6.768.209v16c-16.682.673-29.615.654-42.852-10.848-8.28-8.296-13.338-19.55-13.71-31.277.394-9.87 3.93-17.894 9.562-25.875l1.688-2.563C84.698 35.563 110.05 34.436 128 49Z"/></svg>
@@ -0,0 +1,67 @@
1
+ <svg width="95px" height="88px" viewBox="0 0 95 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
3
+ <title>
4
+ icon
5
+ </title>
6
+ <desc>
7
+ Created with Sketch.
8
+ </desc>
9
+ <defs>
10
+ <path d="M13,14.7890193 C22.8284801,14.7890193 26,6.02605902 26,1.5261751 C26,-0.812484109 24.4279133,-0.0763570998 21.9099482,1.17020987 C19.5830216,2.32219957 16.4482998,3.91011313 13,3.91011313 C5.82029825,3.91011313 0,-2.97370882 0,1.5261751 C0,6.02605902 3.17151989,14.7890193 13,14.7890193 Z" id="path-1">
11
+ </path>
12
+ </defs>
13
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
14
+ <g id="icon_desktop">
15
+ <g id="icon">
16
+ <g id="icon_desktop">
17
+ <g id="Group-2">
18
+ <g id="Group">
19
+ <path d="M93.7930402,70.08 C94.5430402,72.24 94.3630402,74.54 93.3630402,76.54 C92.6430402,78 91.6130402,79.13 90.3530402,80.14 C88.8330402,81.34 86.9430402,82.36 84.6630402,83.34 C81.9430402,84.5 78.6230402,85.59 77.1030402,85.99 C73.2130402,87 69.4730402,87.64 65.6830402,87.67 C60.2630402,87.72 55.5930402,86.44 52.2730402,83.17 C50.5530402,83.38 48.8130402,83.5 47.0630402,83.5 C45.4030402,83.5 43.7630402,83.4 42.1330402,83.2 C38.8030402,86.45 34.1530402,87.72 28.7530402,87.67 C24.9630402,87.64 21.2230402,87 17.3230402,85.99 C15.8130402,85.59 12.4930402,84.5 9.77304019,83.34 C7.49304019,82.36 5.60304019,81.34 4.09304019,80.14 C2.82304019,79.13 1.79304019,78 1.07304019,76.54 C0.0830401858,74.54 -0.106959814,72.24 0.653040186,70.08 C-0.0469598142,68.43 -0.226959814,66.54 0.323040186,64.45 C0.573040186,63.5 0.983040186,62.62 1.50304019,61.84 C1.39304019,61.43 1.30304019,61.01 1.24304019,60.55 C0.863040186,57.81 1.81304019,55.31 3.60304019,53.37 C4.48304019,52.4 5.43304019,51.73 6.42304019,51.3 C5.69304019,48.2 5.31304019,45.01 5.31304019,41.75 C5.31304019,18.69 24.0030402,0 47.0630402,0 C54.9830402,0 62.3930402,2.2 68.7130402,6.04 C69.8530402,6.74 70.9730402,7.49 72.0430402,8.29 C72.5730402,8.69 73.1030402,9.1 73.6130402,9.53 C74.1330402,9.95 74.6430402,10.39 75.1330402,10.84 C76.6130402,12.19 78.0030402,13.64 79.2730402,15.19 C79.7030402,15.7 80.1130402,16.23 80.5130402,16.77 C81.3230402,17.84 82.0730402,18.95 82.7630402,20.1 C83.8130402,21.82 84.7330402,23.62 85.5330402,25.49 C86.0630402,26.74 86.5230402,28.02 86.9330402,29.33 C87.5430402,31.29 88.0130402,33.31 88.3330402,35.39 C88.4330402,36.08 88.5230402,36.78 88.5930402,37.48 C88.7330402,38.88 88.8130402,40.3 88.8130402,41.75 C88.8130402,44.97 88.4330402,48.13 87.7230402,51.18 C88.8230402,51.61 89.8630402,52.31 90.8330402,53.37 C92.6230402,55.31 93.5730402,57.82 93.1930402,60.56 C93.1330402,61.01 93.0430402,61.43 92.9330402,61.84 C93.4530402,62.62 93.8630402,63.5 94.1130402,64.45 C94.6630402,66.54 94.4830402,68.43 93.7930402,70.08" id="Fill-1" fill="#FFFFFF" fill-rule="nonzero">
20
+ </path>
21
+ <circle id="Oval" fill="#FFD21E" fill-rule="nonzero" cx="46.75" cy="41.75" r="34.75">
22
+ </circle>
23
+ <path d="M81.5,41.75 C81.5,22.5581049 65.9418951,7 46.75,7 C27.5581049,7 12,22.5581049 12,41.75 C12,60.9418951 27.5581049,76.5 46.75,76.5 C65.9418951,76.5 81.5,60.9418951 81.5,41.75 Z M8,41.75 C8,20.3489659 25.3489659,3 46.75,3 C68.1510341,3 85.5,20.3489659 85.5,41.75 C85.5,63.1510341 68.1510341,80.5 46.75,80.5 C25.3489659,80.5 8,63.1510341 8,41.75 Z" id="Oval" fill="#FFAC03" fill-rule="nonzero">
24
+ </path>
25
+ <path d="M57.1723547,31.7151181 C58.0863134,32.7107502 57.3040427,35.2620959 58.7620957,35.2620959 C61.5235194,35.2620959 63.7620957,33.0235196 63.7620957,30.2620959 C63.7620957,27.5006721 61.5235194,25.2620959 58.7620957,25.2620959 C56.0006719,25.2620959 53.7620957,27.5006721 53.7620957,30.2620959 C53.7620957,31.5654666 56.3553563,30.8251108 57.1723547,31.7151181 Z" id="Oval-2" fill="#3A3B45" fill-rule="nonzero" transform="translate(58.762096, 30.262096) rotate(-28.000000) translate(-58.762096, -30.262096) ">
26
+ </path>
27
+ <path d="M32.1723553,31.7151181 C33.086314,32.7107502 32.3040433,35.2620959 33.7620963,35.2620959 C36.52352,35.2620959 38.7620963,33.0235196 38.7620963,30.2620959 C38.7620963,27.5006721 36.52352,25.2620959 33.7620963,25.2620959 C31.0006725,25.2620959 28.7620963,27.5006721 28.7620963,30.2620959 C28.7620963,31.5654666 31.3553569,30.8251108 32.1723553,31.7151181 Z" id="Oval-2" fill="#3A3B45" fill-rule="nonzero" transform="translate(33.762096, 30.262096) scale(-1, 1) rotate(-28.000000) translate(-33.762096, -30.262096) ">
28
+ </path>
29
+ <g id="Oval-4" transform="translate(33.500000, 41.500000)">
30
+ <g id="Mask" fill-rule="nonzero" fill="#3A3B45">
31
+ <path d="M13,14.7890193 C22.8284801,14.7890193 26,6.02605902 26,1.5261751 C26,-0.812484109 24.4279133,-0.0763570998 21.9099482,1.17020987 C19.5830216,2.32219957 16.4482998,3.91011313 13,3.91011313 C5.82029825,3.91011313 0,-2.97370882 0,1.5261751 C0,6.02605902 3.17151989,14.7890193 13,14.7890193 Z" id="path-1">
32
+ </path>
33
+ </g>
34
+ <g id="Clipped">
35
+ <mask id="mask-2" fill="white">
36
+ <use href="#path-1">
37
+ </use>
38
+ </mask>
39
+ <g id="path-1">
40
+ </g>
41
+ <path d="M13.25,25 C18.0399291,25 21.9229338,21.1169953 21.9229338,16.3270662 C21.9229338,12.5962324 19.5672252,9.41560375 16.2620987,8.19147116 C16.1404592,8.14641904 16.0175337,8.10401696 15.8933923,8.06433503 C15.0599892,7.79793679 14.1717882,10.6623144 13.25,10.6623144 C12.3886883,10.6623144 11.5567012,7.77968641 10.7713426,8.01349068 C7.18916268,9.07991937 4.57706621,12.3984489 4.57706621,16.3270662 C4.57706621,21.1169953 8.46007093,25 13.25,25 Z" id="Shape" fill="#EF4E4E" fill-rule="nonzero" mask="url(#mask-2)">
42
+ </path>
43
+ </g>
44
+ </g>
45
+ <circle id="Oval-3" fill="#FFD21E" fill-rule="nonzero" style="mix-blend-mode: multiply;" cx="70.25" cy="33.75" r="3.25">
46
+ </circle>
47
+ <circle id="Oval-3" fill="#FFD21E" fill-rule="nonzero" style="mix-blend-mode: multiply;" cx="23.75" cy="33.75" r="3.25">
48
+ </circle>
49
+ </g>
50
+ </g>
51
+ </g>
52
+ <g id="Group-4" transform="translate(3.000000, 48.000000)" fill-rule="nonzero">
53
+ <path d="M14.0619453,0 L14.0619453,0 C12.4429453,0 10.9959453,0.665 9.98694534,1.871 C9.36294534,2.618 8.71094534,3.822 8.65794534,5.625 C7.97894534,5.43 7.32594534,5.321 6.71594534,5.321 C5.16594534,5.321 3.76594534,5.915 2.77594534,6.994 C1.50394534,8.379 0.938945345,10.081 1.18494534,11.784 C1.30194534,12.595 1.57294534,13.322 1.97794534,13.995 C1.12394534,14.686 0.494945345,15.648 0.190945345,16.805 C-0.0470546551,17.712 -0.291054655,19.601 0.982945345,21.547 C0.901945345,21.674 0.825945345,21.806 0.754945345,21.941 C-0.0110546551,23.395 -0.0600546551,25.038 0.615945345,26.568 C1.64094534,28.887 4.18794534,30.714 9.13394534,32.675 C12.2109453,33.895 15.0259453,34.675 15.0509453,34.682 C19.1189453,35.737 22.7979453,36.273 25.9829453,36.273 C31.8369453,36.273 36.0279453,34.48 38.4399453,30.944 C42.3219453,25.25 41.7669453,20.042 36.7439453,15.022 C33.9639453,12.244 32.1159453,8.148 31.7309453,7.249 C30.9549453,4.587 28.9029453,1.628 25.4919453,1.628 L25.4909453,1.628 C25.2039453,1.628 24.9139453,1.651 24.6279453,1.696 C23.1339453,1.931 21.8279453,2.791 20.8949453,4.085 C19.8879453,2.833 18.9099453,1.837 18.0249453,1.275 C16.6909453,0.429 15.3579453,0 14.0619453,0 M14.0619453,4 C14.5719453,4 15.1949453,4.217 15.8819453,4.653 C18.0149453,6.006 22.1309453,13.081 23.6379453,15.833 C24.1429453,16.755 25.0059453,17.145 25.7829453,17.145 C27.3249453,17.145 28.5289453,15.612 25.9239453,13.664 C22.0069453,10.733 23.3809453,5.942 25.2509453,5.647 C25.3329453,5.634 25.4139453,5.628 25.4919453,5.628 C27.1919453,5.628 27.9419453,8.558 27.9419453,8.558 C27.9419453,8.558 30.1399453,14.078 33.9159453,17.851 C37.6919453,21.625 37.8869453,24.654 35.1349453,28.69 C33.2579453,31.442 29.6649453,32.273 25.9829453,32.273 C22.1639453,32.273 18.2489453,31.379 16.0549453,30.81 C15.9469453,30.782 2.60394534,27.013 4.29394534,23.805 C4.57794534,23.266 5.04594534,23.05 5.63494534,23.05 C8.01494534,23.05 12.3439453,26.592 14.2049453,26.592 C14.6209453,26.592 14.9139453,26.415 15.0339453,25.983 C15.8269453,23.138 2.97694534,21.942 4.05994534,17.821 C4.25094534,17.092 4.76894534,16.796 5.49694534,16.797 C8.64194534,16.797 15.6979453,22.328 17.1769453,22.328 C17.2899453,22.328 17.3709453,22.295 17.4149453,22.225 C18.1559453,21.029 17.7499453,20.194 12.5269453,17.033 C7.30394534,13.871 3.63794534,11.969 5.72294534,9.699 C5.96294534,9.437 6.30294534,9.321 6.71594534,9.321 C9.88694534,9.322 17.3789453,16.14 17.3789453,16.14 C17.3789453,16.14 19.4009453,18.243 20.6239453,18.243 C20.9049453,18.243 21.1439453,18.132 21.3059453,17.858 C22.1729453,16.396 13.2529453,9.636 12.7499453,6.847 C12.4089453,4.957 12.9889453,4 14.0619453,4" id="Fill-1" fill="#FFAC03">
54
+ </path>
55
+ <path d="M35.1348,28.6899 C37.8868,24.6539 37.6918,21.6249 33.9158,17.8509 C30.1398,14.0779 27.9418,8.5579 27.9418,8.5579 C27.9418,8.5579 27.1208,5.3519 25.2508,5.6469 C23.3808,5.9419 22.0078,10.7329 25.9248,13.6639 C29.8418,16.5939 25.1448,18.5849 23.6378,15.8329 C22.1308,13.0809 18.0158,6.0059 15.8818,4.6529 C13.7488,3.2999 12.2468,4.0579 12.7498,6.8469 C13.2528,9.6359 22.1738,16.3959 21.3058,17.8589 C20.4378,19.3209 17.3788,16.1399 17.3788,16.1399 C17.3788,16.1399 7.8068,7.4289 5.7228,9.6989 C3.6388,11.9689 7.3038,13.8709 12.5268,17.0329 C17.7508,20.1939 18.1558,21.0289 17.4148,22.2249 C16.6728,23.4209 5.1428,13.6999 4.0598,17.8209 C2.9778,21.9419 15.8268,23.1379 15.0338,25.9829 C14.2408,28.8289 5.9828,20.5979 4.2938,23.8049 C2.6038,27.0129 15.9468,30.7819 16.0548,30.8099 C20.3648,31.9279 31.3108,34.2969 35.1348,28.6899" id="Fill-4" fill="#FFD21E">
56
+ </path>
57
+ </g>
58
+ <g id="Group-4" transform="translate(70.500000, 66.500000) scale(-1, 1) translate(-70.500000, -66.500000) translate(50.000000, 48.000000)" fill-rule="nonzero">
59
+ <path d="M14.0619453,0 L14.0619453,0 C12.4429453,0 10.9959453,0.665 9.98694534,1.871 C9.36294534,2.618 8.71094534,3.822 8.65794534,5.625 C7.97894534,5.43 7.32594534,5.321 6.71594534,5.321 C5.16594534,5.321 3.76594534,5.915 2.77594534,6.994 C1.50394534,8.379 0.938945345,10.081 1.18494534,11.784 C1.30194534,12.595 1.57294534,13.322 1.97794534,13.995 C1.12394534,14.686 0.494945345,15.648 0.190945345,16.805 C-0.0470546551,17.712 -0.291054655,19.601 0.982945345,21.547 C0.901945345,21.674 0.825945345,21.806 0.754945345,21.941 C-0.0110546551,23.395 -0.0600546551,25.038 0.615945345,26.568 C1.64094534,28.887 4.18794534,30.714 9.13394534,32.675 C12.2109453,33.895 15.0259453,34.675 15.0509453,34.682 C19.1189453,35.737 22.7979453,36.273 25.9829453,36.273 C31.8369453,36.273 36.0279453,34.48 38.4399453,30.944 C42.3219453,25.25 41.7669453,20.042 36.7439453,15.022 C33.9639453,12.244 32.1159453,8.148 31.7309453,7.249 C30.9549453,4.587 28.9029453,1.628 25.4919453,1.628 L25.4909453,1.628 C25.2039453,1.628 24.9139453,1.651 24.6279453,1.696 C23.1339453,1.931 21.8279453,2.791 20.8949453,4.085 C19.8879453,2.833 18.9099453,1.837 18.0249453,1.275 C16.6909453,0.429 15.3579453,0 14.0619453,0 M14.0619453,4 C14.5719453,4 15.1949453,4.217 15.8819453,4.653 C18.0149453,6.006 22.1309453,13.081 23.6379453,15.833 C24.1429453,16.755 25.0059453,17.145 25.7829453,17.145 C27.3249453,17.145 28.5289453,15.612 25.9239453,13.664 C22.0069453,10.733 23.3809453,5.942 25.2509453,5.647 C25.3329453,5.634 25.4139453,5.628 25.4919453,5.628 C27.1919453,5.628 27.9419453,8.558 27.9419453,8.558 C27.9419453,8.558 30.1399453,14.078 33.9159453,17.851 C37.6919453,21.625 37.8869453,24.654 35.1349453,28.69 C33.2579453,31.442 29.6649453,32.273 25.9829453,32.273 C22.1639453,32.273 18.2489453,31.379 16.0549453,30.81 C15.9469453,30.782 2.60394534,27.013 4.29394534,23.805 C4.57794534,23.266 5.04594534,23.05 5.63494534,23.05 C8.01494534,23.05 12.3439453,26.592 14.2049453,26.592 C14.6209453,26.592 14.9139453,26.415 15.0339453,25.983 C15.8269453,23.138 2.97694534,21.942 4.05994534,17.821 C4.25094534,17.092 4.76894534,16.796 5.49694534,16.797 C8.64194534,16.797 15.6979453,22.328 17.1769453,22.328 C17.2899453,22.328 17.3709453,22.295 17.4149453,22.225 C18.1559453,21.029 17.7499453,20.194 12.5269453,17.033 C7.30394534,13.871 3.63794534,11.969 5.72294534,9.699 C5.96294534,9.437 6.30294534,9.321 6.71594534,9.321 C9.88694534,9.322 17.3789453,16.14 17.3789453,16.14 C17.3789453,16.14 19.4009453,18.243 20.6239453,18.243 C20.9049453,18.243 21.1439453,18.132 21.3059453,17.858 C22.1729453,16.396 13.2529453,9.636 12.7499453,6.847 C12.4089453,4.957 12.9889453,4 14.0619453,4" id="Fill-1" fill="#FFAC03">
60
+ </path>
61
+ <path d="M35.1348,28.6899 C37.8868,24.6539 37.6918,21.6249 33.9158,17.8509 C30.1398,14.0779 27.9418,8.5579 27.9418,8.5579 C27.9418,8.5579 27.1208,5.3519 25.2508,5.6469 C23.3808,5.9419 22.0078,10.7329 25.9248,13.6639 C29.8418,16.5939 25.1448,18.5849 23.6378,15.8329 C22.1308,13.0809 18.0158,6.0059 15.8818,4.6529 C13.7488,3.2999 12.2468,4.0579 12.7498,6.8469 C13.2528,9.6359 22.1738,16.3959 21.3058,17.8589 C20.4378,19.3209 17.3788,16.1399 17.3788,16.1399 C17.3788,16.1399 7.8068,7.4289 5.7228,9.6989 C3.6388,11.9689 7.3038,13.8709 12.5268,17.0329 C17.7508,20.1939 18.1558,21.0289 17.4148,22.2249 C16.6728,23.4209 5.1428,13.6999 4.0598,17.8209 C2.9778,21.9419 15.8268,23.1379 15.0338,25.9829 C14.2408,28.8289 5.9828,20.5979 4.2938,23.8049 C2.6038,27.0129 15.9468,30.7819 16.0548,30.8099 C20.3648,31.9279 31.3108,34.2969 35.1348,28.6899" id="Fill-4" fill="#FFD21E">
62
+ </path>
63
+ </g>
64
+ </g>
65
+ </g>
66
+ </g>
67
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="171" preserveAspectRatio="xMidYMid" viewBox="0 0 256 171"><defs><linearGradient id="a" x1="13.878%" x2="89.144%" y1="55.934%" y2="58.694%"><stop offset="0%" stop-color="#0064E1"/><stop offset="40%" stop-color="#0064E1"/><stop offset="83%" stop-color="#0073EE"/><stop offset="100%" stop-color="#0082FB"/></linearGradient><linearGradient id="b" x1="54.315%" x2="54.315%" y1="82.782%" y2="39.307%"><stop offset="0%" stop-color="#0082FB"/><stop offset="100%" stop-color="#0064E0"/></linearGradient></defs><path fill="#0081FB" d="M27.651 112.136c0 9.775 2.146 17.28 4.95 21.82 3.677 5.947 9.16 8.466 14.751 8.466 7.211 0 13.808-1.79 26.52-19.372 10.185-14.092 22.186-33.874 30.26-46.275l13.675-21.01c9.499-14.591 20.493-30.811 33.1-41.806C161.196 4.985 172.298 0 183.47 0c18.758 0 36.625 10.87 50.3 31.257C248.735 53.584 256 81.707 256 110.729c0 17.253-3.4 29.93-9.187 39.946-5.591 9.686-16.488 19.363-34.818 19.363v-27.616c15.695 0 19.612-14.422 19.612-30.927 0-23.52-5.484-49.623-17.564-68.273-8.574-13.23-19.684-21.313-31.907-21.313-13.22 0-23.859 9.97-35.815 27.75-6.356 9.445-12.882 20.956-20.208 33.944l-8.066 14.289c-16.203 28.728-20.307 35.271-28.408 46.07-14.2 18.91-26.324 26.076-42.287 26.076-18.935 0-30.91-8.2-38.325-20.556C2.973 139.413 0 126.202 0 111.148l27.651.988Z"/><path fill="url(#a)" d="M21.802 33.206C34.48 13.666 52.774 0 73.757 0 85.91 0 97.99 3.597 110.605 13.897c13.798 11.261 28.505 29.805 46.853 60.368l6.58 10.967c15.881 26.459 24.917 40.07 30.205 46.49 6.802 8.243 11.565 10.7 17.752 10.7 15.695 0 19.612-14.422 19.612-30.927l24.393-.766c0 17.253-3.4 29.93-9.187 39.946-5.591 9.686-16.488 19.363-34.818 19.363-11.395 0-21.49-2.475-32.654-13.007-8.582-8.083-18.615-22.443-26.334-35.352l-22.96-38.352C118.528 64.08 107.96 49.73 101.845 43.23c-6.578-6.988-15.036-15.428-28.532-15.428-10.923 0-20.2 7.666-27.963 19.39L21.802 33.206Z"/><path fill="url(#b)" d="M73.312 27.802c-10.923 0-20.2 7.666-27.963 19.39-10.976 16.568-17.698 41.245-17.698 64.944 0 9.775 2.146 17.28 4.95 21.82L9.027 149.482C2.973 139.413 0 126.202 0 111.148 0 83.772 7.514 55.24 21.802 33.206 34.48 13.666 52.774 0 73.757 0l-.445 27.802Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" width="256" height="256" preserveAspectRatio="xMidYMid"><path fill="#F1511B" d="M121.666 121.666H0V0h121.666z"/><path fill="#80CC28" d="M256 121.666H134.335V0H256z"/><path fill="#00ADEF" d="M121.663 256.002H0V134.336h121.663z"/><path fill="#FBBC09" d="M256 256.002H134.335V134.336H256z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid" viewBox="0 0 256 233"><path d="M186.18182 0h46.54545v46.54545h-46.54545z"/><path fill="#F7D046" d="M209.45454 0h46.54545v46.54545h-46.54545z"/><path d="M0 0h46.54545v46.54545H0zM0 46.54545h46.54545V93.0909H0zM0 93.09091h46.54545v46.54545H0zM0 139.63636h46.54545v46.54545H0zM0 186.18182h46.54545v46.54545H0z"/><path fill="#F7D046" d="M23.27273 0h46.54545v46.54545H23.27273z"/><path fill="#F2A73B" d="M209.45454 46.54545h46.54545V93.0909h-46.54545zM23.27273 46.54545h46.54545V93.0909H23.27273z"/><path d="M139.63636 46.54545h46.54545V93.0909h-46.54545z"/><path fill="#F2A73B" d="M162.90909 46.54545h46.54545V93.0909h-46.54545zM69.81818 46.54545h46.54545V93.0909H69.81818z"/><path fill="#EE792F" d="M116.36364 93.09091h46.54545v46.54545h-46.54545zM162.90909 93.09091h46.54545v46.54545h-46.54545zM69.81818 93.09091h46.54545v46.54545H69.81818z"/><path d="M93.09091 139.63636h46.54545v46.54545H93.09091z"/><path fill="#EB5829" d="M116.36364 139.63636h46.54545v46.54545h-46.54545z"/><path fill="#EE792F" d="M209.45454 93.09091h46.54545v46.54545h-46.54545zM23.27273 93.09091h46.54545v46.54545H23.27273z"/><path d="M186.18182 139.63636h46.54545v46.54545h-46.54545z"/><path fill="#EB5829" d="M209.45454 139.63636h46.54545v46.54545h-46.54545z"/><path d="M186.18182 186.18182h46.54545v46.54545h-46.54545z"/><path fill="#EB5829" d="M23.27273 139.63636h46.54545v46.54545H23.27273z"/><path fill="#EA3326" d="M209.45454 186.18182h46.54545v46.54545h-46.54545zM23.27273 186.18182h46.54545v46.54545H23.27273z"/></svg>
@@ -0,0 +1,4 @@
1
+ <svg width="131" height="36" viewBox="0 0 131 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M121.519 0H8.98085C4.02167 0 0 4.06364 0 9.07661V26.9234C0 31.9364 4.02167 36 8.98085 36H121.519C126.48 36 130.5 31.9364 130.5 26.9234V9.07661C130.5 4.06364 126.478 0 121.519 0Z" fill="#E0FF4F"/>
3
+ <path d="M16.1411 9.55438C17.7334 9.55438 18.8563 10.4347 19.5442 12.0049L23.7455 21.7049C24.8103 24.1575 26.8178 23.8787 26.8178 23.8787C26.8178 25.2604 25.7328 26.5519 24.1385 26.5519C22.5443 26.5519 21.4233 25.6696 20.7355 24.0994L16.5322 14.4014C15.4714 11.9508 13.4619 12.2276 13.4619 12.2276V26.3073H10.125V16.2644C10.125 12.4403 13.4436 12.2284 13.4619 12.2276C13.4619 10.8459 14.5489 9.55438 16.1411 9.55438ZM84.6687 18.5786C84.6687 21.6448 86.5899 23.4596 89.8968 23.4596C93.2036 23.4596 95.1507 21.6468 95.1507 18.5786V9.78899H98.4837V18.5245C98.4836 23.3774 95.0706 26.5518 89.8968 26.5519C84.7229 26.5519 81.3358 23.3514 81.3358 18.5245V9.78899H84.6687V18.5786ZM110.53 9.54224C114.204 9.58635 119.931 10.2522 120.264 14.8786H116.588C116.263 12.5364 111.071 12.4581 108.418 12.7248C108.4 12.7255 105.22 12.8559 105.22 14.4395C105.218 14.4509 105.004 15.8764 108.157 16.168C108.506 16.2021 113.134 16.5872 113.464 16.6133L113.708 16.6374C116.396 16.9142 117.803 17.0585 119.444 18.378H119.44L119.432 18.3819C121.122 19.8499 121.393 23.1207 118.822 24.8052C116.492 26.2992 113.574 26.4857 110.883 26.5519C106.932 26.5519 101.273 25.7798 101.279 20.8025H104.913C105.029 21.9716 105.715 22.6735 106.912 23.0164C108.328 23.4115 109.698 23.4617 111.041 23.4718C114.109 23.4718 117.097 22.9703 116.905 21.2337C116.728 19.6595 114.635 19.499 113.644 19.4228C113.614 19.4208 113.584 19.4188 113.554 19.4167C112.92 19.3667 109.973 19.1871 109.958 19.1862C108.103 19.0539 106.754 18.8514 105.927 18.701C104.135 18.3661 103.258 17.6781 102.683 17.1748C101.203 15.7831 100.972 12.6787 103.333 11.1205C105.44 9.74885 108.095 9.6024 110.53 9.54224ZM63.9131 9.78899C66.7828 9.80704 70.4648 10.4568 70.4648 14.295C70.4648 15.9795 69.7186 17.1186 68.8182 17.7122L68.8163 17.7143C69.7127 17.9831 71.4955 19.2484 71.4955 21.6348C71.4955 24.4162 69.8791 26.3134 64.9218 26.3134V26.3073H54.1751V9.78899H63.9131ZM50.7399 12.9134H36.9488V16.4729H49.2459V19.5973H36.9488V23.1829H50.7399V26.3073H33.5879V9.78899H50.7399V12.9134ZM77.8984 26.3073H74.5375V9.78899H77.8984V26.3073ZM30.1568 19.8419C30.1568 23.676 26.8217 23.8785 26.8178 23.8787V9.79898H30.1568V19.8419ZM57.5401 23.1829H64.97V23.1809C66.5262 23.1789 68.0241 22.9302 68.0241 21.354C68.0241 19.7778 66.3717 19.479 64.9238 19.479V19.471H57.5401V23.1829ZM57.538 16.543H64.9681C65.8785 16.535 67.2361 16.2422 67.2361 14.8465C67.236 13.4508 66.0529 12.9095 64.5088 12.9095H57.538V16.543Z" fill="#052B42"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="88" height="24" viewBox="0 0 88 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1923_1287)">
3
+ <path d="M24 18.8323V18.8326H14.3246L9.16716 13.6751V18.8326H0V18.8314L9.16716 9.66422V4H9.16774L24 18.8323Z" fill="black"/>
4
+ </g>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M73.2505 16.8061H76.5869V18.9145H73.9391C72.0857 18.9145 70.9202 17.8952 70.9202 15.9977V10.3921H69.0316V8.26609H70.9202L71.4677 5.47209H73.2329V8.26609H76.5869V10.3921H73.2505V16.8061ZM33.8133 4.85699L38.6679 15.681H38.809V4.85699H41.3333V18.9145H37.52L32.6654 8.09046H32.5243V18.9145H30V4.85699H33.8133ZM47.812 19.1254C44.7225 19.1254 42.7457 16.9641 42.7457 13.6079C42.7457 10.2517 44.6873 8.05518 47.812 8.05518C50.9367 8.05518 52.8429 10.1635 52.8429 13.6079C52.8429 17.0523 50.9014 19.1254 47.812 19.1254ZM47.812 17.017C49.1891 17.017 50.3363 16.5423 50.3715 15.1894V12.0265C50.3715 10.6383 49.2068 10.1635 47.812 10.1635C46.4172 10.1635 45.2171 10.6383 45.2171 12.0265V15.1894C45.2524 16.5599 46.4348 17.017 47.812 17.017ZM55.5444 8.24846L58.2979 16.6826H58.439L61.1926 8.24846H63.7346L59.9389 18.8968H56.7966L53.0186 8.24846H55.5429H55.5444ZM65.0419 8.26609H67.3722V18.9145H65.0419V8.26609ZM64.9001 4.85699H67.5126V6.86027H64.9001V4.85699ZM82.3064 19.143C79.4639 19.143 77.6458 16.9817 77.6458 13.6079C77.6458 10.2341 79.4286 8.07282 82.3064 8.07282C83.6483 8.07282 84.7425 8.59973 85.3958 9.58373H85.5369L85.9962 8.26609H87.7614V18.9145H85.9962L85.5369 17.6314H85.3958C84.6896 18.5625 83.5072 19.1423 82.3064 19.1423V19.143ZM82.7826 17.017C84.1774 17.017 85.3951 16.5776 85.4304 15.1894V12.0265C85.4304 10.603 84.159 10.1988 82.7297 10.1988C81.3004 10.1988 80.1172 10.6383 80.1172 12.0265V15.1894C80.1525 16.5952 81.3709 17.017 82.7826 17.017Z" fill="black"/>
6
+ <defs>
7
+ <clipPath id="clip0_1923_1287">
8
+ <rect width="24" height="14.8326" fill="white" transform="translate(0 4)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="35.188 31.512 351.46 258.785"><path d="M384.195 282.109c0 3.771-2.769 6.302-6.047 6.302v-.023c-3.371.023-6.089-2.508-6.089-6.278 0-3.769 2.718-6.293 6.089-6.293 3.279-.001 6.047 2.523 6.047 6.292zm2.453 0c0-5.175-4.02-8.179-8.5-8.179-4.511 0-8.531 3.004-8.531 8.179 0 5.172 4.021 8.188 8.531 8.188 4.481 0 8.5-3.016 8.5-8.188m-9.91.692h.91l2.109 3.703h2.316l-2.336-3.859c1.207-.086 2.2-.661 2.2-2.286 0-2.019-1.392-2.668-3.75-2.668h-3.411v8.813h1.961v-3.703m.001-1.492v-2.122h1.364c.742 0 1.753.06 1.753.965 0 .985-.523 1.157-1.398 1.157h-1.719M329.406 237.027l10.598 28.993H318.48l10.926-28.993zm-11.35-11.289-24.423 61.88h17.246l3.863-10.934h28.903l3.656 10.934h18.722l-24.605-61.888-23.362.008zm-49.033 61.903h17.497v-61.922l-17.5-.004.003 61.926zm-121.467-61.926-14.598 49.078-13.984-49.074-18.879-.004 19.972 61.926h25.207l20.133-61.926h-17.851zm70.725 13.484h7.52c10.91 0 17.966 4.898 17.966 17.609 0 12.714-7.056 17.613-17.966 17.613h-7.52v-35.222zm-17.35-13.484v61.926h28.366c15.113 0 20.048-2.512 25.384-8.148 3.769-3.957 6.207-12.641 6.207-22.134 0-8.707-2.063-16.468-5.66-21.304-6.481-8.649-15.817-10.34-29.75-10.34h-24.547zm-165.743-.086v62.012h17.645v-47.086l13.672.004c4.527 0 7.754 1.128 9.934 3.457 2.765 2.945 3.894 7.699 3.894 16.395v27.23h17.098v-34.262c0-24.453-15.586-27.75-30.836-27.75H35.188zm137.583.086.007 61.926h17.489v-61.926h-17.496z"/><path fill="#77B900" d="M82.211 102.414s22.504-33.203 67.437-36.638V53.73c-49.769 3.997-92.867 46.149-92.867 46.149s24.41 70.565 92.867 77.026v-12.804c-50.237-6.32-67.437-61.687-67.437-61.687zm67.437 36.223v11.726c-37.968-6.769-48.507-46.237-48.507-46.237s18.23-20.195 48.507-23.47v12.867c-.023 0-.039-.007-.058-.007-15.891-1.907-28.305 12.938-28.305 12.938s6.958 24.991 28.363 32.183m0-107.125V53.73c1.461-.112 2.922-.207 4.391-.257 56.582-1.907 93.449 46.406 93.449 46.406s-42.343 51.488-86.457 51.488c-4.043 0-7.828-.375-11.383-1.005v13.739c3.04.386 6.192.613 9.481.613 41.051 0 70.738-20.965 99.484-45.778 4.766 3.817 24.278 13.103 28.289 17.168-27.332 22.883-91.031 41.329-127.144 41.329-3.481 0-6.824-.211-10.11-.528v19.306H305.68V31.512H149.648zm0 49.144V65.777c1.446-.101 2.903-.179 4.391-.226 40.688-1.278 67.382 34.965 67.382 34.965s-28.832 40.043-59.746 40.043c-4.449 0-8.438-.715-12.028-1.922V93.523c15.84 1.914 19.028 8.911 28.551 24.786l21.18-17.859s-15.461-20.277-41.524-20.277c-2.833-.001-5.544.198-8.206.483"/></svg>
@@ -0,0 +1,7 @@
1
+ <svg width="646" height="854" viewBox="0 0 646 854" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M140.629 0.239929C132.66 1.52725 123.097 5.69568 116.354 10.845C95.941 26.3541 80.1253 59.2728 73.4435 100.283C70.9302 115.792 69.2138 137.309 69.2138 153.738C69.2138 173.109 71.4819 197.874 74.7309 214.977C75.4665 218.778 75.8343 222.15 75.5278 222.395C75.2826 222.64 72.2788 225.092 68.9072 227.789C57.3827 236.984 44.2029 251.145 35.1304 264.08C17.7209 288.784 6.44151 316.86 1.72133 347.265C-0.117698 359.28 -0.608106 383.555 0.863118 395.57C4.11207 423.278 12.449 446.695 26.7321 468.151L31.391 475.078L30.0424 477.346C20.4794 493.407 12.3264 516.64 8.52575 538.953C5.522 556.608 5.15419 561.328 5.15419 584.99C5.15419 608.837 5.4607 613.557 8.28054 630.047C11.6521 649.786 18.5178 670.689 26.1804 684.605C28.6938 689.141 34.8239 698.581 35.5595 699.072C35.8047 699.194 35.0691 701.462 33.9044 704.098C25.077 723.408 17.537 749.093 14.4106 770.733C12.2038 785.567 11.8973 790.349 11.8973 805.981C11.8973 825.903 13.0007 835.589 17.1692 851.466L17.7822 853.795H44.019H70.3172L68.6007 850.546C57.9957 830.93 57.0149 794.517 66.1487 758.166C70.3172 741.369 75.0374 729.048 83.8647 712.067L89.1366 701.769V695.455C89.1366 689.57 89.014 688.896 87.1137 685.034C85.6424 682.091 83.6808 679.578 80.1866 676.145C74.2404 670.383 69.9494 664.314 66.5165 656.835C51.4365 624.1 48.494 575.489 59.0991 534.049C63.5128 516.762 70.8076 501.376 78.4702 492.978C83.6808 487.215 86.378 480.779 86.378 474.097C86.378 467.17 83.926 461.469 78.4089 455.523C62.5932 438.604 52.8464 418.006 49.3522 394.038C44.3868 359.893 53.3981 322.683 73.8726 293.198C93.9181 264.263 122.055 245.689 153.503 240.724C160.552 239.559 173.732 239.743 181.088 241.092C189.119 242.502 194.145 242.072 199.295 239.62C205.67 236.617 208.858 232.877 212.597 224.295C215.907 216.633 218.482 212.464 225.409 203.821C233.746 193.461 241.776 186.411 254.649 177.89C269.362 168.266 286.097 161.278 302.771 157.906C308.839 156.68 311.659 156.496 323 156.496C334.341 156.496 337.161 156.68 343.229 157.906C367.688 162.872 391.964 175.5 411.335 193.399C415.503 197.261 425.495 209.644 428.683 214.794C429.909 216.816 432.055 221.108 433.403 224.295C437.142 232.877 440.33 236.617 446.705 239.62C451.671 242.011 456.881 242.502 464.605 241.214C476.804 239.13 486.183 239.314 498.137 241.766C538.841 249.98 574.273 283.512 589.966 328.446C603.636 367.862 599.774 409.118 579.422 440.626C575.989 445.96 572.556 450.251 567.591 455.523C556.863 466.986 556.863 481.208 567.53 492.978C585.062 512.165 596.035 559.367 592.724 600.99C590.518 628.453 583.468 653.035 573.782 666.95C572.066 669.402 568.511 673.57 565.813 676.145C562.319 679.578 560.358 682.091 558.886 685.034C556.986 688.896 556.863 689.57 556.863 695.455V701.769L562.135 712.067C570.963 729.048 575.683 741.369 579.851 758.166C588.863 794.027 588.066 829.704 577.767 849.995C576.909 851.711 576.173 853.305 576.173 853.489C576.173 853.673 587.882 853.795 602.226 853.795H628.218L628.892 851.159C629.26 849.75 629.873 847.604 630.179 846.378C630.854 843.681 632.202 835.712 633.306 828.049C634.348 820.325 634.348 791.881 633.306 783.299C629.383 752.158 622.823 727.454 612.096 704.098C610.931 701.462 610.195 699.194 610.44 699.072C610.747 698.888 612.463 696.436 614.302 693.677C627.666 673.448 635.88 648.008 640.049 614.415C641.152 605.158 641.152 565.374 640.049 556.485C637.106 533.559 633.551 517.988 627.666 502.234C625.214 495.675 618.716 481.821 615.958 477.346L614.609 475.078L619.268 468.151C633.551 446.695 641.888 423.278 645.137 395.57C646.608 383.555 646.118 359.28 644.279 347.265C639.497 316.798 628.279 288.845 610.87 264.08C601.797 251.145 588.617 236.984 577.093 227.789C573.721 225.092 570.717 222.64 570.472 222.395C570.166 222.15 570.534 218.778 571.269 214.977C578.687 176.296 578.441 128.053 570.656 90.3524C563.913 57.4951 551.653 31.3808 535.837 16.3008C523.209 4.28578 510.336 -0.863507 494.888 0.11731C459.456 2.20154 430.89 42.9667 419.61 107.21C417.771 117.57 416.178 129.708 416.178 133.018C416.178 134.305 415.932 135.347 415.626 135.347C415.319 135.347 412.929 134.121 410.354 132.589C383.014 116.405 352.608 107.762 323 107.762C293.392 107.762 262.986 116.405 235.646 132.589C233.071 134.121 230.681 135.347 230.374 135.347C230.068 135.347 229.822 134.305 229.822 133.018C229.822 129.585 228.167 117.08 226.39 107.21C216.152 49.5259 192.674 11.3354 161.472 1.71112C157.181 0.423799 144.982 -0.434382 140.629 0.239929ZM151.051 50.139C159.878 57.1273 169.686 77.1114 175.326 99.4863C176.368 103.532 177.471 108.191 177.778 109.907C178.023 111.563 178.697 115.302 179.249 118.183C181.64 131.179 182.743 145.217 182.866 162.32L182.927 179.178L178.697 185.43L174.468 191.744H164.598C153.074 191.744 141.61 193.216 130.637 196.158C126.714 197.139 122.913 198.12 122.178 198.304C121.013 198.549 120.829 198.181 120.155 193.154C116.538 165.875 116.722 135.654 120.707 110.52C125.12 82.5059 135.419 57.1273 145.472 49.6486C147.863 47.8708 148.292 47.9321 151.051 50.139ZM500.589 49.7098C506.658 54.1848 513.34 66.0772 518.305 81.2798C528.297 111.685 531.117 153.431 525.845 193.154C525.171 198.181 524.987 198.549 523.822 198.304C523.087 198.12 519.286 197.139 515.363 196.158C504.39 193.216 492.926 191.744 481.402 191.744H471.532L467.303 185.43L463.073 179.178L463.134 162.32C463.257 138.535 465.464 119.961 470.735 99.3024C476.314 77.1114 486.183 57.1273 494.949 50.139C497.708 47.9321 498.137 47.8708 500.589 49.7098Z" fill="black"/>
3
+ <path d="M313.498 358.237C300.195 359.525 296.579 360.015 290.203 361.303C279.843 363.448 265.989 368.23 256.365 372.95C222.895 389.317 199.846 416.596 192.796 448.166C191.386 454.419 191.202 456.503 191.202 467.047C191.202 477.468 191.386 479.736 192.735 485.682C202.114 526.938 240.12 557.405 289.284 562.983C299.95 564.148 346.049 564.148 356.715 562.983C396.193 558.508 430.154 537.114 445.418 507.076C449.463 499.046 451.425 493.835 453.264 485.682C454.613 479.736 454.797 477.468 454.797 467.047C454.797 456.503 454.613 454.419 453.203 448.166C442.965 402.313 398.461 366.207 343.903 359.341C336.792 358.483 318.157 357.747 313.498 358.237ZM336.424 391.585C354.631 393.547 372.96 400.045 387.672 409.853C395.58 415.125 406.737 426.159 411.518 433.393C417.403 442.342 420.774 451.476 422.307 462.572C422.981 467.66 422.614 471.522 420.774 479.736C417.893 491.996 408.943 504.808 396.867 513.758C391.227 517.865 379.519 523.812 372.347 526.141C358.738 530.493 349.849 531.29 318.095 531.045C297.376 530.861 293.697 530.677 287.751 529.574C267.461 525.773 251.4 517.681 239.753 505.36C230.312 495.429 226.021 486.357 223.692 471.706C222.65 464.901 224.611 453.622 228.596 444.12C233.439 432.534 245.944 418.129 258.327 409.853C272.671 400.29 291.552 393.486 308.9 391.647C315.582 390.911 329.742 390.911 336.424 391.585Z" fill="black"/>
4
+ <path d="M299.584 436.336C294.925 438.849 291.676 445.224 292.657 449.944C293.76 455.032 298.235 460.182 305.223 464.412C308.963 466.68 309.208 466.986 309.392 469.254C309.514 470.603 309.024 474.465 308.35 477.898C307.614 481.269 307.062 484.825 307.062 485.806C307.124 488.442 309.576 492.733 312.15 494.817C314.419 496.656 314.848 496.717 321.223 496.901C327.047 497.085 328.273 496.962 330.602 495.859C336.61 492.916 338.142 487.522 335.935 477.162C334.096 468.519 334.464 467.17 339.062 464.534C343.904 461.714 349.054 456.749 350.586 453.377C353.529 446.941 350.831 439.646 344.333 436.274C342.74 435.477 340.778 435.11 337.897 435.11C333.422 435.11 330.541 436.152 325.269 439.523L322.265 441.424L320.365 440.259C312.58 435.661 311.17 435.11 306.449 435.171C303.078 435.171 301.239 435.477 299.584 436.336Z" fill="black"/>
5
+ <path d="M150.744 365.165C139.894 368.598 131.802 376.567 127.634 387.908C125.611 393.303 124.63 401.824 125.488 406.421C127.511 417.394 136.522 427.386 146.76 430.145C159.633 433.516 169.257 431.309 177.778 422.85C182.743 418.007 185.441 413.777 188.138 406.911C190.099 402.069 190.222 401.211 190.222 394.345L190.283 386.989L187.709 381.717C183.601 373.38 176.184 367.188 167.602 364.92C162.759 363.694 154.974 363.756 150.744 365.165Z" fill="black"/>
6
+ <path d="M478.153 364.982C469.755 367.25 462.276 373.502 458.291 381.717L455.717 386.989L455.778 394.345C455.778 401.211 455.901 402.069 457.862 406.911C460.56 413.777 463.257 418.007 468.222 422.85C476.743 431.309 486.367 433.516 499.241 430.145C506.658 428.183 514.075 421.93 517.631 414.635C520.696 408.444 521.431 403.969 520.451 396.919C518.183 380.797 508.742 369.089 494.704 364.982C490.597 363.756 482.628 363.756 478.153 364.982Z" fill="black"/>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1,21 @@
1
+ <svg
2
+ width="512"
3
+ height="512"
4
+ viewBox="0 0 512 512"
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ fill="#111111"
7
+ stroke="#111111"
8
+ >
9
+ <g clip-path="url(#clip0_205_3)">
10
+ <path
11
+ d="M3 248.945C18 248.945 76 236 106 219C136 202 136 202 198 158C276.497 102.293 332 120.945 423 120.945"
12
+ stroke-width="90"
13
+ />
14
+ <path d="M511 121.5L357.25 210.268L357.25 32.7324L511 121.5Z" />
15
+ <path
16
+ d="M0 249C15 249 73 261.945 103 278.945C133 295.945 133 295.945 195 339.945C273.497 395.652 329 377 420 377"
17
+ stroke-width="90"
18
+ />
19
+ <path d="M508 376.445L354.25 287.678L354.25 465.213L508 376.445Z" />
20
+ </g>
21
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="80"
4
+ height="80"
5
+ viewBox="0 0 48 48">
6
+ <path
7
+ fill="none"
8
+ stroke="#20808d"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ d="M24 4.5v39M13.73 16.573v-9.99L24 16.573m0 14.5L13.73 41.417V27.01L24 16.573m0 0l10.27-9.99v9.99"/>
12
+ <path
13
+ fill="none"
14
+ stroke="#20808d"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ d="M13.73 31.396H9.44V16.573h29.12v14.823h-4.29"/>
18
+ <path
19
+ fill="none"
20
+ stroke="#20808d"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ d="M24 16.573L34.27 27.01v14.407L24 31.073"/>
24
+ </svg>
@@ -0,0 +1 @@
1
+ <svg fill="currentColor" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" 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,12 @@
1
+ <svg width="726" height="726" viewBox="0 0 726 726" fill="#000" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1_3)">
3
+ <path d="M726 310.438V392.476H438.068V726H346.302V310.438H726Z" fill="#000"/>
4
+ <path d="M726 155.219V237.402H264.845V726H173.078V155.219H726Z" fill="#000"/>
5
+ <path d="M726 0V82.1832H91.7664V726H0V0H726Z" fill="#000"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1_3">
9
+ <rect width="726" height="726" fill="#000"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2159 500"><path fill="#13171B" d="M615.473 158.84c5.214 4.374 9.075 9.323 12.898 14.937 1.439 2.318 1.439 2.318 3.629 3.223l.148-2.938c.4-7.362.951-14.68 1.852-22l.251-2.095c.623-4.841.623-4.841 1.749-5.967 2.219-.088 4.44-.107 6.66-.098l2.014.005c2.13.005 4.259.018 6.389.03A3970.043 3970.043 0 0 1 666 144a82745 82745 0 0 1 .103 79.202c.01 12.26.024 24.52.047 36.78.02 10.692.033 21.385.037 32.079.003 5.655.009 11.31.023 16.965.014 5.338.018 10.675.015 16.013 0 1.944.005 3.89.012 5.834.11 29.078-2.49 59.37-23.863 81.315-17.988 17.689-44.26 24.8-68.984 25.05l-2.427.03c-33.444.324-33.444.324-47.964-4.268l-3.613-1.133c-19.789-7.022-36.24-18.861-46.2-37.617C468.906 385.208 466 376.062 466 366h35l5 13c9.123 14.307 22.304 21.295 38.469 25.254 4.537.959 8.899 1.58 13.531 1.746l2.973.121c19.026.393 38.732-3.004 53.27-16.148 11.47-11.97 15.922-28.186 15.855-44.438l-.005-2.055c-.005-2.14-.018-4.278-.03-6.418-.006-1.461-.01-2.923-.014-4.384-.011-3.56-.028-7.119-.049-10.678l-1.795 2.237-2.396 2.962-2.358 2.925C609.626 346.348 590.89 353.948 570 356c-25.036 1.745-53.63-2.994-73.285-19.71-3.005-2.666-5.858-5.468-8.715-8.29l-1.984-1.766c-17.071-15.504-24.97-41.86-26.239-64.145-.14-4.217-.164-8.432-.152-12.651l.002-2.26c.04-12.089.853-23.54 4.373-35.178l.633-2.126c4.991-16.11 13.6-28.961 25.367-40.874l1.762-1.98c29.833-32.84 89.826-33.393 123.71-8.18Zm-99.262 31.765c-17.097 17.898-21.903 39.863-21.461 63.903.412 11.893 2.987 22.763 8.25 33.492l1.152 2.387c8.107 15.64 20.942 26.21 37.536 31.87 17.938 5.348 37.3 4.013 54.125-4.32 17.137-10.038 28.25-25.977 33.335-45.039 5.407-24.75 2.876-50.486-10.96-72.148-9.673-13.8-23.455-23.984-40.204-27.128-22.91-3.879-44.403.756-61.773 16.983ZM1908.748 141.76c2.153-.01 4.305-.04 6.457-.072 23.198-.18 44.74 5.894 62.045 21.937 17.273 18.107 19.04 41.261 19.024 65.012 0 3.451.012 6.902.03 10.354.045 9.803.07 19.606.077 29.41.005 6.019.03 12.038.065 18.057.01 2.286.012 4.573.007 6.86-.007 3.19.01 6.379.033 9.568l-.025 2.848c.07 5.533.643 9.007 4.539 13.266 6.277 2.805 6.277 2.805 19 3v31l-14.688.25-4.545.11c-9.733.08-20.31-.541-28.33-6.735-6.035-6.5-8.088-13.202-10.437-21.625l-1.547 1.871c-15.02 17.496-34.586 27.16-57.453 29.129-22.73 1.136-48.9-1.392-66.798-16.939-13.133-11.959-18.983-24.608-20.386-42.39-.54-17.161 4.818-34.223 16.446-47.023 19.35-18.35 47.052-21.017 72.39-20.843l4.913.008c4.256.008 8.512.027 12.769.05 4.364.02 8.729.03 13.094.04 8.524.02 17.048.055 25.572.097-.12-3.7-.256-7.399-.395-11.098l-.101-3.16c-.502-12.857-4.28-22.059-13.692-30.93-12.222-9.902-29.04-11.7-44.198-10.418-14.008 1.487-27.172 6.139-36.712 16.993-4.247 5.744-6.118 10.654-8.902 17.613h-34c1.933-19.333 9.196-35.258 24.305-47.934 18.273-13.45 39.102-18.246 61.443-18.306Zm-50.81 129.115c-5.628 7.16-7.817 16.1-6.938 25.125 2.204 10.486 7.214 17.83 16 24 17.977 8.73 39.41 8.138 58.129 1.969 14.487-5.477 25.403-15.31 31.84-29.446L1958 290l.969-2.336c2.213-6.495 2.176-12.772 2.105-19.55l-.016-2.951c-.014-2.388-.033-4.775-.058-7.163-8.98-.07-17.962-.123-26.943-.155a2778.77 2778.77 0 0 1-12.515-.071c-4.04-.033-8.08-.05-12.119-.059a639.1 639.1 0 0 1-4.582-.032c-16.223-.167-35.044.616-46.904 13.192ZM857 153l2.754 1.398c21.417 11.895 34.879 31.84 41.727 54.96 2.453 8.725 3.66 17.116 4.207 26.142l.147 2.337c.309 6.27-.253 11.758-.835 18.163H743c3.687 26.282 3.687 26.282 17 48l1.867 2.203c9.89 10.752 24.546 16.986 39.066 17.922 18.305.685 35.11-2.134 49.505-14.438 8.2-7.958 12.076-15.922 16.562-26.687h35c-3.376 16.878-9.6 31.038-21 44l-1.984 2.273c-15.854 16.986-38.282 25.709-61.258 26.837-31.775.824-59.425-6.888-82.946-28.86-22.392-23.573-28.545-53.96-28.058-85.54.837-29.547 11.394-55.71 32.7-76.401C770.653 137.027 820.428 134.323 857 153Zm-98.504 40.82c-8.45 10.665-11.25 19.699-13.496 33.18h125c-3.426-18.271-7.937-31.554-22.629-43.059-28.015-18.962-66.117-15.755-88.875 9.88ZM1476 159c4.29 3.373 8.17 7.119 12 11l2.02 2.023c17.564 18.794 24.196 45.31 24.105 70.352l.012 3.309-.004 3.152-.004 2.86C1514 254 1514 254 1513 256h-161c2.372 21.35 6.097 40.73 23.344 54.93 15.372 11.334 33.984 15.447 52.824 12.76 15.18-2.745 28.878-9.13 38.125-21.842 4.057-6.333 6.266-11.524 8.707-18.848h35c-.704 6.335-1.39 11.133-3.625 16.875l-.805 2.093c-8.77 21.933-26.323 37.726-47.507 47.344-24.736 10.149-55.504 9.26-80.47.196-10.553-4.428-20.081-9.775-28.593-17.508l-2.703-2.422c-18.293-17.271-29.267-42.105-30.474-67.268-.56-36.098 3.723-67.598 29.654-94.92 33.748-31.879 92.742-35.217 130.523-8.39Zm-109 35c-7.319 9.591-13 20.764-13 33h124c-1.657-18.226-8.095-31.104-22-43-28.006-20.326-66.22-14.785-89 10ZM1090 67h34l1 108 7-9c12.857-14.07 30.177-22.973 49.259-24.211 26.024-1.005 50.682 2.357 70.928 20.274 16.24 15.137 23.115 37.286 24.813 58.937.135 4.38.127 8.757.114 13.139v3.905c0 3.508-.006 7.016-.013 10.523-.006 3.676-.006 7.351-.008 11.027-.003 6.948-.01 13.896-.021 20.845-.011 7.915-.017 15.83-.022 23.746-.01 16.272-.028 32.543-.05 48.815h-34l-.06-10.762a26637.34 26637.34 0 0 0-.228-35.347c-.05-7.138-.096-14.276-.134-21.414-.033-6.23-.073-12.459-.12-18.688a3150.44 3150.44 0 0 1-.061-9.874c-.033-37.39-.033-37.39-17.46-69.665-10.286-9.53-24.78-13.12-38.437-13.625-15.466.594-30.52 5.328-42 16-19.195 21.13-19.789 47.887-19.914 74.898a8637.209 8637.209 0 0 0-.175 25.704c-.039 6.852-.088 13.703-.138 20.555-.103 14.072-.191 28.145-.273 42.218h-34V67ZM389.688 164.313C410.145 181.708 421.704 205.577 425 232c.208 4.724.228 9.447.24 14.176.01 2.225.04 4.449.072 6.674.1 13.349-1.618 26.175-6.437 38.713l-.91 2.394C412.7 307.292 405.15 317.966 395 328l-2.395 2.426c-19.696 18.913-46.763 26.189-73.529 25.926-25.28-.757-49.016-8.343-68.076-25.352-.82-.726-1.64-1.451-2.484-2.2-18.422-17.305-29.596-43.574-30.639-68.76-.745-30.648 3.212-58.348 23.123-83.04l2.05-2.55c35.832-42.12 104.725-43.056 146.637-10.137Zm-114.825 25.699c-16.193 17.28-22.446 39.397-22.078 62.629.436 12.025 3.211 23.42 8.215 34.359l1.27 2.824C269.77 304.976 283.173 316.3 299 322c18.675 5.657 37.925 4.213 55.3-4.674 6.046-3.29 10.94-7.354 15.7-12.326l1.879-1.785c14.556-14.817 18.397-37.249 18.44-57.091-.22-18.014-5.1-34.84-16.319-49.124l-1.734-2.305c-10.268-12.68-26.11-20.14-42.079-22.132-20.062-2.038-40.37 3.485-55.324 17.449ZM101 86h34v58h53v32h-53c.063 16.664.138 33.328.236 49.992.045 7.738.084 15.476.11 23.214.023 6.748.057 13.495.103 20.242.024 3.57.042 7.14.049 10.71.007 3.993.037 7.986.07 11.978l-.005 3.558c.086 7.515.551 14.675 5.375 20.743 6.507 4.93 13.752 4.728 21.617 4.88l2.732.062c2.862.065 5.725.125 8.588.183l5.844.131c4.76.108 9.52.207 14.281.307v31c-7.256.092-14.51.172-21.765.22-2.461.02-4.923.047-7.384.082-37.527.518-37.527.518-51.835-12.044-10.755-11.077-12.327-26.282-12.243-40.948v-4.082c-.002-3.67.01-7.338.024-11.007.013-3.843.014-7.687.016-11.53.006-7.268.023-14.535.043-21.802.022-8.278.033-16.556.043-24.834.021-17.019.058-34.037.101-51.055H63v-32h38V86ZM961 86h34v58h53v32h-53c.086 16.403.18 32.807.288 49.21.05 7.617.096 15.234.134 22.85.033 6.643.073 13.284.12 19.926.026 3.514.048 7.028.061 10.543.016 3.93.046 7.86.078 11.791l.007 3.5c.053 12.362.053 12.362 5.312 23.18 7.132 3.698 13.604 4.166 21.457 4.316l2.736.063c2.873.066 5.746.125 8.62.183l5.857.131c4.777.108 9.553.207 14.33.307v31c-7.256.092-14.51.172-21.765.22-2.461.02-4.923.047-7.384.082-37.856.523-37.856.523-51.613-11.892-11.057-11.837-12.715-27.99-12.579-43.484V293.9c-.002-3.594.016-7.188.037-10.782.019-3.774.02-7.548.024-11.323.01-7.125.034-14.25.064-21.375.034-8.121.05-16.242.065-24.364.031-16.685.086-33.37.151-50.056h-38v-32h38V86ZM1555 144h31l4 28c4.656-4.446 4.656-4.446 6.96-7.531 10.525-12.742 26.635-18.625 42.58-20.286 4.34-.323 8.673-.287 13.023-.245L1662 144v34c-12.75.313-12.75.313-16.69.388-13.6.422-26.567 3.12-36.935 12.424-13.875 14.834-17.476 36.261-17.58 55.815l-.03 3.49a6415.62 6415.62 0 0 0-.081 11.38l-.063 7.906c-.05 6.219-.095 12.437-.138 18.656-.05 7.084-.105 14.167-.16 21.25-.114 14.564-.22 29.128-.323 43.691h-35V144ZM2057 144h34v209h-34V144Z"/><path fill="#0262F2" d="M1737 291c8.363 4.823 13.282 11.64 15.938 20.875 2.078 9.893.687 17.515-4.141 26.39-5.07 7.715-12.428 12.344-21.39 14.301-8.447 1.153-16.363-.36-23.844-4.441-6.967-5.777-12.966-11.977-14.563-21.125-.873-11.015.163-19.604 7.25-28.313 10.431-11.056 26.871-14.774 40.75-7.687Z"/><path fill="#13171B" d="M2085.5 65.5c5.049 3.03 8.656 7.969 10.5 13.5.146 2.268.221 4.54.25 6.813l.078 3.644c-.59 6.378-3.514 10.477-8.328 14.543-6.045 4.228-11.756 4.837-19 4-6.188-1.114-9.718-4.1-13.59-8.969-3.997-5.757-4.296-12.224-3.41-19.031 2.26-7.125 5.563-11.304 12-15 6.491-2.164 15.167-2.291 21.5.5Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="enable-background:new 0 0 841.89 595.28" viewBox="0 0 841.89 595.28"><path d="m557.09 211.99 8.31 326.37h66.56l8.32-445.18zM640.28 56.91H538.72L379.35 284.53l50.78 72.52zM201.61 538.36h101.56l50.79-72.52-50.79-72.53zM201.61 211.99l228.52 326.37h101.56L303.17 211.99z"/></svg>