@tanstack/cta-framework-solid 0.10.0-alpha.20

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 (98) hide show
  1. package/ADD-ON-AUTHORING.md +129 -0
  2. package/LICENSE +21 -0
  3. package/add-ons/form/assets/src/routes/demo.form.tsx.ejs +352 -0
  4. package/add-ons/form/info.json +16 -0
  5. package/add-ons/form/package.json +5 -0
  6. package/add-ons/module-federation/assets/module-federation.config.js.ejs +27 -0
  7. package/add-ons/module-federation/assets/src/demo-mf-component.tsx +3 -0
  8. package/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +9 -0
  9. package/add-ons/module-federation/info.json +8 -0
  10. package/add-ons/module-federation/package.json +5 -0
  11. package/add-ons/sentry/assets/_dot_cursorrules.append +22 -0
  12. package/add-ons/sentry/assets/_dot_env.local.append +2 -0
  13. package/add-ons/sentry/assets/src/routes/demo.sentry.bad-event-handler.tsx +20 -0
  14. package/add-ons/sentry/info.json +16 -0
  15. package/add-ons/sentry/package.json +5 -0
  16. package/add-ons/solid-ui/README.md +9 -0
  17. package/add-ons/solid-ui/assets/src/lib/utils.ts +6 -0
  18. package/add-ons/solid-ui/assets/src/styles.css +138 -0
  19. package/add-ons/solid-ui/assets/ui.config.json +13 -0
  20. package/add-ons/solid-ui/info.json +12 -0
  21. package/add-ons/solid-ui/package.json +9 -0
  22. package/add-ons/start/assets/app.config.ts.ejs +19 -0
  23. package/add-ons/start/assets/src/api.ts +6 -0
  24. package/add-ons/start/assets/src/client.tsx +7 -0
  25. package/add-ons/start/assets/src/router.tsx.ejs +24 -0
  26. package/add-ons/start/assets/src/routes/demo.start.server-funcs.tsx +49 -0
  27. package/add-ons/start/assets/src/ssr.tsx +12 -0
  28. package/add-ons/start/info.json +17 -0
  29. package/add-ons/start/package.json +12 -0
  30. package/add-ons/store/assets/src/lib/demo-store.ts +13 -0
  31. package/add-ons/store/assets/src/routes/demo.store.tsx.ejs +77 -0
  32. package/add-ons/store/info.json +16 -0
  33. package/add-ons/store/package.json +6 -0
  34. package/add-ons/t3env/README.md +16 -0
  35. package/add-ons/t3env/assets/src/env.ts +39 -0
  36. package/add-ons/t3env/info.json +8 -0
  37. package/add-ons/t3env/package.json +6 -0
  38. package/add-ons/tanstack-query/assets/src/integrations/tanstack-query/header-user.tsx +5 -0
  39. package/add-ons/tanstack-query/assets/src/integrations/tanstack-query/provider.tsx +15 -0
  40. package/add-ons/tanstack-query/assets/src/routes/demo.tanstack-query.tsx +24 -0
  41. package/add-ons/tanstack-query/info.json +28 -0
  42. package/add-ons/tanstack-query/package.json +6 -0
  43. package/dist/index.js +18 -0
  44. package/dist/types/index.d.ts +1 -0
  45. package/examples/tanchat/README.md +52 -0
  46. package/examples/tanchat/assets/ai-streaming-server/README.md +110 -0
  47. package/examples/tanchat/assets/ai-streaming-server/_dot_env.example +1 -0
  48. package/examples/tanchat/assets/ai-streaming-server/package.json +26 -0
  49. package/examples/tanchat/assets/ai-streaming-server/src/index.ts +102 -0
  50. package/examples/tanchat/assets/ai-streaming-server/tsconfig.json +15 -0
  51. package/examples/tanchat/assets/src/components/demo.SettingsDialog.tsx +149 -0
  52. package/examples/tanchat/assets/src/demo.index.css +227 -0
  53. package/examples/tanchat/assets/src/lib/demo-store.ts +13 -0
  54. package/examples/tanchat/assets/src/routes/example.chat.tsx +435 -0
  55. package/examples/tanchat/assets/src/store/demo.hooks.ts +17 -0
  56. package/examples/tanchat/assets/src/store/demo.store.ts +133 -0
  57. package/examples/tanchat/info.json +15 -0
  58. package/examples/tanchat/package.json +7 -0
  59. package/package.json +33 -0
  60. package/project/base/README.md.ejs +215 -0
  61. package/project/base/_dot_cursorrules.append +35 -0
  62. package/project/base/_dot_gitignore +5 -0
  63. package/project/base/_dot_vscode/settings.json.ejs +35 -0
  64. package/project/base/index.html.ejs +20 -0
  65. package/project/base/package.json +23 -0
  66. package/project/base/public/favicon.ico +0 -0
  67. package/project/base/public/logo192.png +0 -0
  68. package/project/base/public/logo512.png +0 -0
  69. package/project/base/public/manifest.json +25 -0
  70. package/project/base/public/robots.txt +3 -0
  71. package/project/base/src/App.css.ejs +38 -0
  72. package/project/base/src/App.tsx.ejs +34 -0
  73. package/project/base/src/components/Header.tsx.ejs +26 -0
  74. package/project/base/src/logo.svg +120 -0
  75. package/project/base/src/main.tsx.ejs +126 -0
  76. package/project/base/src/routes/__root.tsx.ejs +38 -0
  77. package/project/base/src/routes/index.tsx.ejs +41 -0
  78. package/project/base/src/styles.css.ejs +15 -0
  79. package/project/base/tsconfig.json.ejs +31 -0
  80. package/project/base/vite.config.js.ejs +22 -0
  81. package/project/packages.json +18 -0
  82. package/src/index.ts +26 -0
  83. package/tests/snapshots/solid/solid-cr-js-npm.json +22 -0
  84. package/tests/snapshots/solid/solid-cr-ts-npm.json +23 -0
  85. package/tests/snapshots/solid/solid-cr-ts-start-npm.json +27 -0
  86. package/tests/snapshots/solid/solid-fr-ts-npm.json +24 -0
  87. package/tests/snapshots/solid/solid-fr-ts-tw-npm.json +23 -0
  88. package/tests/solid.test.ts +119 -0
  89. package/tests/test-utilities.ts +44 -0
  90. package/toolchains/biome/assets/biome.json.ejs +31 -0
  91. package/toolchains/biome/info.json +8 -0
  92. package/toolchains/biome/package.json +10 -0
  93. package/toolchains/eslint/assets/_dot_prettierignore +3 -0
  94. package/toolchains/eslint/assets/eslint.config.js +5 -0
  95. package/toolchains/eslint/assets/prettier.config.js +10 -0
  96. package/toolchains/eslint/info.json +8 -0
  97. package/toolchains/eslint/package.json +11 -0
  98. package/tsconfig.json +17 -0
@@ -0,0 +1,215 @@
1
+ Welcome to your new TanStack app!
2
+
3
+ # Getting Started
4
+
5
+ To run this application:
6
+
7
+ ```bash
8
+ <%= packageManager %> install
9
+ <%= getPackageManagerRunScript('start') %>
10
+ ```
11
+
12
+ # Building For Production
13
+
14
+ To build this application for production:
15
+
16
+ ```bash
17
+ <%= getPackageManagerRunScript('build') %>
18
+ ```
19
+
20
+ ## Styling
21
+
22
+ This project uses [Tailwind CSS](https://tailwindcss.com/) for styling.
23
+
24
+ <% for(const addon of addOns.filter(addon => addon.readme)) { %>
25
+ <%- addon.readme %>
26
+ <% } %>
27
+
28
+ ## Routing
29
+ <% if (fileRouter) { %>This project uses [TanStack Router](https://tanstack.com/router). The initial setup is a file based router. Which means that the routes are managed as fiels in `src/routes`.<% } else { %>This project uses [TanStack Router](https://tanstack.com/router). The initial setup is a code based router. Which means that the routes are defined in code (in the `./src/main.<%= jsx %>` file). If you like you can also use a file based routing setup by following the [File Based Routing](https://tanstack.com/router/latest/docs/framework/solid/guide/file-based-routing) guide.<% } %>
30
+
31
+ ### Adding A Route
32
+ <% if (fileRouter) { %>
33
+ To add a new route to your application just add another a new file in the `./src/routes` directory.
34
+
35
+ TanStack will automatically generate the content of the route file for you.
36
+ <% } else { %>
37
+ To add a new route to your application just add another `createRoute` call to the `./src/main.<%= jsx %>` file. The example below adds a new `/about`route to the root route.
38
+
39
+ ```tsx
40
+ const aboutRoute = createRoute({
41
+ getParentRoute: () => rootRoute,
42
+ path: "/about",
43
+ component: () => <h1>About</h1>,
44
+ });
45
+ ```
46
+
47
+ You will also need to add the route to the `routeTree` in the `./src/main.<%= jsx %>` file.
48
+
49
+ ```tsx
50
+ const routeTree = rootRoute.addChildren([indexRoute, aboutRoute]);
51
+ ```
52
+
53
+ With this set up you should be able to navigate to `/about` and see the about page.
54
+
55
+ Of course you don't need to implement the About page in the `main.<%= jsx %>` file. You can create that component in another file and import it into the `main.<%= jsx %>` file, then use it in the `component` property of the `createRoute` call, like so:
56
+
57
+ ```tsx
58
+ import About from "./components/About.<%= jsx %>";
59
+
60
+ const aboutRoute = createRoute({
61
+ getParentRoute: () => rootRoute,
62
+ path: "/about",
63
+ component: About,
64
+ });
65
+ ```
66
+
67
+ That is how we have the `App` component set up with the home page.
68
+
69
+ For more information on the options you have when you are creating code based routes check out the [Code Based Routing](https://tanstack.com/router/latest/docs/framework/solid/guide/code-based-routing) documentation.
70
+ <% } %>
71
+ Now that you have two routes you can use a `Link` component to navigate between them.
72
+
73
+ ### Adding Links
74
+
75
+ To use SPA (Single Page Application) navigation you will need to import the `Link` component from `@tanstack/solid-router`.
76
+
77
+ ```tsx
78
+ import { Link } from "@tanstack/solid-router";
79
+ ```
80
+
81
+ Then anywhere in your JSX you can use it like so:
82
+
83
+ ```tsx
84
+ <Link to="/about">About</Link>
85
+ ```
86
+
87
+ This will create a link that will navigate to the `/about` route.
88
+
89
+ More information on the `Link` component can be found in the [Link documentation](https://tanstack.com/router/v1/docs/framework/solid/api/router/linkComponent).
90
+
91
+ ### Using A Layout
92
+
93
+ <% if (codeRouter) { %>
94
+ Layouts can be used to wrap the contents of the routes in menus, headers, footers, etc.
95
+
96
+ There is already a layout in the `src/main.<%= jsx %>` file:
97
+
98
+ ```tsx
99
+ const rootRoute = createRootRoute({
100
+ component: () => (
101
+ <>
102
+ <Outlet />
103
+ <TanStackRouterDevtools />
104
+ </>
105
+ ),
106
+ });
107
+ ```
108
+
109
+ You can use the Soliid component specified in the `component` property of the `rootRoute` to wrap the contents of the routes. The `<Outlet />` component is used to render the current route within the body of the layout. For example you could add a header to the layout like so:
110
+
111
+ ```tsx
112
+ import { Link } from "@tanstack/solid-router";
113
+
114
+ const rootRoute = createRootRoute({
115
+ component: () => (
116
+ <>
117
+ <header>
118
+ <nav>
119
+ <Link to="/">Home</Link>
120
+ <Link to="/about">About</Link>
121
+ </nav>
122
+ </header>
123
+ <Outlet />
124
+ <TanStackRouterDevtools />
125
+ </>
126
+ ),
127
+ });
128
+ ```
129
+ <% } else { %>In the File Based Routing setup the layout is located in `src/routes/__root.tsx`. Anything you add to the root route will appear in all the routes. The route content will appear in the JSX where you use the `<Outlet />` component.
130
+
131
+ Here is an example layout that includes a header:
132
+
133
+ ```tsx
134
+ import { Outlet, createRootRoute } from '@tanstack/solid-router'
135
+ import { TanStackRouterDevtools } from '@tanstack/solid-router-devtools'
136
+
137
+ import { Link } from "@tanstack/solid-router";
138
+
139
+ export const Route = createRootRoute({
140
+ component: () => (
141
+ <>
142
+ <header>
143
+ <nav>
144
+ <Link to="/">Home</Link>
145
+ <Link to="/about">About</Link>
146
+ </nav>
147
+ </header>
148
+ <Outlet />
149
+ <TanStackRouterDevtools />
150
+ </>
151
+ ),
152
+ })
153
+ ```
154
+ <% } %>
155
+ The `<TanStackRouterDevtools />` component is not required so you can remove it if you don't want it in your layout.
156
+
157
+ More information on layouts can be found in the [Layouts documentation](https://tanstack.com/router/latest/docs/framework/solid/guide/routing-concepts#layouts).
158
+
159
+ ## Data Fetching
160
+
161
+ There are multiple ways to fetch data in your application. You can use TanStack Query to fetch data from a server. But you can also use the `loader` functionality built into TanStack Router to load the data for a route before it's rendered.
162
+
163
+ For example:
164
+
165
+ ```tsx
166
+ const peopleRoute = createRoute({
167
+ getParentRoute: () => rootRoute,
168
+ path: "/people",
169
+ loader: async () => {
170
+ const response = await fetch("https://swapi.dev/api/people");<% if (typescript) { %>
171
+ return response.json() as Promise<{
172
+ results: {
173
+ name: string;
174
+ }[];
175
+ }>;
176
+ <% } else { %>
177
+ return response.json();
178
+ <% } %> },
179
+ component: () => {
180
+ const data = peopleRoute.useLoaderData();
181
+ return (
182
+ <ul>
183
+ {data.results.map((person) => (
184
+ <li key={person.name}>{person.name}</li>
185
+ ))}
186
+ </ul>
187
+ );
188
+ },
189
+ });
190
+ ```
191
+
192
+ Loaders simplify your data fetching logic dramatically. Check out more information in the [Loader documentation](https://tanstack.com/router/latest/docs/framework/solid/guide/data-loading#loader-parameters).
193
+
194
+ # Demo files
195
+
196
+ Files prefixed with `demo` can be safely deleted. They are there to provide a starting point for you to play around with the features you've installed.
197
+
198
+ <% if (addOnEnabled.biome || addOnEnabled.eslint) { %>
199
+ ## Linting & Formatting
200
+ <% if (addOnEnabled.biome) { %>
201
+ This project uses [Biome](https://biomejs.dev/) for linting and formatting. The following scripts are available:
202
+ <% } %>
203
+ <% if (addOnEnabled.eslint) { %>
204
+ This project uses [eslint](https://eslint.org/) and [prettier](https://prettier.io/) for linting and formatting. Eslint is configured using [tanstack/eslint-config](https://tanstack.com/config/latest/docs/eslint). The following scripts are available:
205
+ <% } %>
206
+ ```bash
207
+ <%= getPackageManagerRunScript('lint') %>
208
+ <%= getPackageManagerRunScript('format') %>
209
+ <%= getPackageManagerRunScript('check') %>
210
+ ```
211
+ <% } %>
212
+
213
+ # Learn More
214
+
215
+ You can learn more about all of the offerings from TanStack in the [TanStack documentation](https://tanstack.com).
@@ -0,0 +1,35 @@
1
+ // Solid.js with Tailwind CSS .cursorrules
2
+
3
+ // Prefer functional components
4
+
5
+ const preferFunctionalComponents = true;
6
+
7
+ // Solid.js and Tailwind CSS best practices
8
+
9
+ const solidjsTailwindBestPractices = [
10
+ "Use createSignal() for reactive state",
11
+ "Implement Tailwind CSS classes for styling",
12
+ "Utilize TypeScript's strict mode",
13
+ "Utilize @apply directive in CSS files for reusable styles",
14
+ "Implement responsive design using Tailwind's responsive classes",
15
+ "Use Tailwind's CSS in /src/styles.css for global styles",
16
+ "Implement dark mode using Tailwind's dark variant",
17
+ ];
18
+
19
+ // Additional instructions
20
+
21
+ const additionalInstructions = `
22
+
23
+ 1. Use .tsx extension for files with JSX
24
+ 2. Implement strict TypeScript checks
25
+ 3. Implement proper Tailwind CSS purging for production builds
26
+ 4. Utilize TanStack Router for routing when applicable
27
+ 5. Use type-safe context with createContext
28
+ 6. Implement proper typing for event handlers
29
+ 7. Follow TypeScript best practices and naming conventions
30
+ 8. Use type assertions sparingly and only when necessary
31
+ 9. Use Tailwind's @layer directive for custom styles
32
+ 10. Implement utility-first CSS approach
33
+ 11. Follow both Solid.js and Tailwind naming conventions
34
+ 12. Use JIT (Just-In-Time) mode for faster development
35
+ `;
@@ -0,0 +1,5 @@
1
+ node_modules
2
+ .DS_Store
3
+ dist
4
+ dist-ssr
5
+ *.local
@@ -0,0 +1,35 @@
1
+ {
2
+ "files.watcherExclude": {
3
+ "**/routeTree.gen.ts": true
4
+ },
5
+ "search.exclude": {
6
+ "**/routeTree.gen.ts": true
7
+ },
8
+ "files.readonlyInclude": {
9
+ "**/routeTree.gen.ts": true
10
+ }<% if (addOnEnabled.biome) { %>,
11
+ "[javascript]": {
12
+ "editor.defaultFormatter": "biomejs.biome"
13
+ },
14
+ "[javascriptreact]": {
15
+ "editor.defaultFormatter": "biomejs.biome"
16
+ },
17
+ "[typescript]": {
18
+ "editor.defaultFormatter": "biomejs.biome"
19
+ },
20
+ "[typescriptreact]": {
21
+ "editor.defaultFormatter": "biomejs.biome"
22
+ },
23
+ "[json]": {
24
+ "editor.defaultFormatter": "biomejs.biome"
25
+ },
26
+ "[jsonc]": {
27
+ "editor.defaultFormatter": "biomejs.biome"
28
+ },
29
+ "[css]": {
30
+ "editor.defaultFormatter": "biomejs.biome"
31
+ },
32
+ "editor.codeActionsOnSave": {
33
+ "source.organizeImports.biome": "explicit"
34
+ }<% } %>
35
+ }
@@ -0,0 +1,20 @@
1
+ <% if (addOnEnabled['start']) { ignoreFile() } %><!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link rel="icon" href="/favicon.ico" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-tsrouter-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="/logo192.png" />
13
+ <link rel="manifest" href="/manifest.json" />
14
+ <title>Create TanStack App - app-ts</title>
15
+ </head>
16
+ <body>
17
+ <div id="app"></div>
18
+ <script type="module" src="/src/main.tsx"></script>
19
+ </body>
20
+ </html>
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "app-ts",
3
+ "private": true,
4
+ "type": "module",
5
+ "scripts": {
6
+ "dev": "vite --port 3000",
7
+ "start": "vite --port 3000",
8
+ "build": "vite build && tsc",
9
+ "serve": "vite preview",
10
+ "test": "vitest run"
11
+ },
12
+ "dependencies": {
13
+ "@tanstack/solid-router": "^1.110.0",
14
+ "@tanstack/solid-router-devtools": "^1.109.2",
15
+ "@tanstack/router-plugin": "^1.109.2",
16
+ "solid-js": "^1.9.4"
17
+ },
18
+ "devDependencies": {
19
+ "vite-plugin-solid": "^2.11.2",
20
+ "typescript": "^5.7.2",
21
+ "vite": "^6.0.11"
22
+ }
23
+ }
Binary file
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "TanStack App",
3
+ "name": "Create TanStack App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
@@ -0,0 +1,38 @@
1
+ <% if (tailwind) { ignoreFile() } %>.App {
2
+ text-align: center;
3
+ }
4
+
5
+ .App-logo {
6
+ height: 40vmin;
7
+ pointer-events: none;
8
+ }
9
+
10
+ @media (prefers-reduced-motion: no-preference) {
11
+ .App-logo {
12
+ animation: App-logo-spin infinite 20s linear;
13
+ }
14
+ }
15
+
16
+ .App-header {
17
+ background-color: #282c34;
18
+ min-height: 100vh;
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: center;
22
+ justify-content: center;
23
+ font-size: calc(10px + 2vmin);
24
+ color: white;
25
+ }
26
+
27
+ .App-link {
28
+ color: #61dafb;
29
+ }
30
+
31
+ @keyframes App-logo-spin {
32
+ from {
33
+ transform: rotate(0deg);
34
+ }
35
+ to {
36
+ transform: rotate(360deg);
37
+ }
38
+ }
@@ -0,0 +1,34 @@
1
+ <% if (fileRouter) { ignoreFile() } %>import logo from "./logo.svg";
2
+
3
+ function App() {
4
+ return (
5
+ <main class="min-h-screen flex flex-col items-center justify-center bg-[#282c34] text-white text-[calc(10px+2vmin)] text-center">
6
+ <img
7
+ src={logo}
8
+ class="h-[40vmin] pointer-events-none animate-[spin_20s_linear_infinite]"
9
+ alt="logo"
10
+ />
11
+ <p>
12
+ Edit <code>src/App.<%= jsx %></code> and save to reload.
13
+ </p>
14
+ <a
15
+ class="text-[#61dafb] hover:underline"
16
+ href="https://solidjs.com"
17
+ target="_blank"
18
+ rel="noopener noreferrer"
19
+ >
20
+ Learn Solid
21
+ </a>
22
+ <a
23
+ class="text-[#61dafb] hover:underline"
24
+ href="https://tanstack.com"
25
+ target="_blank"
26
+ rel="noopener noreferrer"
27
+ >
28
+ Learn TanStack
29
+ </a>
30
+ </main>
31
+ );
32
+ }
33
+
34
+ export default App;
@@ -0,0 +1,26 @@
1
+ <% if (addOns.length === 0 && integrations.length === 0 && routes.length === 0) { ignoreFile() } %>import { Link } from '@tanstack/solid-router'
2
+ <% for(const integration of integrations.filter(i => i.type === 'header-user')) { %>
3
+ import <%= integration.jsName %> from "<%= relativePath(integration.path) %>";
4
+ <% } %>
5
+
6
+ export default function Header() {
7
+ return (
8
+ <header class="p-2 flex gap-2 bg-white text-black justify-between">
9
+ <nav class="flex flex-row">
10
+ <div class="px-2 font-bold">
11
+ <Link to="/">Home</Link>
12
+ </div>
13
+ <% for(const addOn of addOns) {
14
+ for(const route of (addOn?.routes||[])?.filter(r => r.url && r.name) || []) { %>
15
+ <div class="px-2 font-bold"><Link to="<%= route.url %>"><%= route.name %></Link></div>
16
+ <% } } %>
17
+ </nav>
18
+
19
+ <div>
20
+ <% for(const integration of integrations.filter(i => i.type === 'header-user')) { %>
21
+ <<%= integration.jsName %> />
22
+ <% } %>
23
+ </div>
24
+ </header>
25
+ )
26
+ }
@@ -0,0 +1,120 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 166 155.3">
3
+ <!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
4
+ <defs>
5
+ <style>
6
+ .st0 {
7
+ fill: url(#linear-gradient2);
8
+ }
9
+
10
+ .st1 {
11
+ fill: url(#linear-gradient3);
12
+ }
13
+
14
+ .st2 {
15
+ fill: #9ae7fc;
16
+ }
17
+
18
+ .st3 {
19
+ fill: #518ac8;
20
+ }
21
+
22
+ .st4 {
23
+ fill: #76b3e1;
24
+ }
25
+
26
+ .st5 {
27
+ fill: url(#linear-gradient);
28
+ }
29
+
30
+ .st5, .st6 {
31
+ isolation: isolate;
32
+ opacity: .3;
33
+ }
34
+
35
+ .st7 {
36
+ fill: #61dafb;
37
+ }
38
+
39
+ .st6 {
40
+ fill: url(#linear-gradient1);
41
+ }
42
+ </style>
43
+ <linearGradient id="linear-gradient" x1="27.4" y1="154.8" x2="151.9" y2="94.3" gradientTransform="translate(0 158) scale(1 -1)" gradientUnits="userSpaceOnUse">
44
+ <stop offset="0" stop-color="#76b3e1"/>
45
+ <stop offset=".3" stop-color="#dcf2fd"/>
46
+ <stop offset="1" stop-color="#76b3e1"/>
47
+ </linearGradient>
48
+ <linearGradient id="linear-gradient1" x1="95.9" y1="125.4" x2="74.1" y2="52.8" gradientTransform="translate(0 158) scale(1 -1)" gradientUnits="userSpaceOnUse">
49
+ <stop offset="0" stop-color="#76b3e1"/>
50
+ <stop offset=".5" stop-color="#4377bb"/>
51
+ <stop offset="1" stop-color="#1f3b77"/>
52
+ </linearGradient>
53
+ <linearGradient id="linear-gradient2" x1="18.3" y1="93.7" x2="144.2" y2="8.1" gradientTransform="translate(0 158) scale(1 -1)" gradientUnits="userSpaceOnUse">
54
+ <stop offset="0" stop-color="#315aa9"/>
55
+ <stop offset=".5" stop-color="#518ac8"/>
56
+ <stop offset="1" stop-color="#315aa9"/>
57
+ </linearGradient>
58
+ <linearGradient id="linear-gradient3" x1="75.3" y1="83.5" x2="24.5" y2="-102.8" gradientTransform="translate(0 158) scale(1 -1)" gradientUnits="userSpaceOnUse">
59
+ <stop offset="0" stop-color="#4377bb"/>
60
+ <stop offset=".5" stop-color="#1a336b"/>
61
+ <stop offset="1" stop-color="#1a336b"/>
62
+ </linearGradient>
63
+ </defs>
64
+ <g id="Layer_1">
65
+ <path class="st4" d="M163,35S110-4,69,5l-3,1c-6,2-11,5-14,9l-2,3-15,26,26,5c11,7,25,10,38,7l46,9,18-30Z"/>
66
+ <path class="st5" d="M163,35S110-4,69,5l-3,1c-6,2-11,5-14,9l-2,3-15,26,26,5c11,7,25,10,38,7l46,9,18-30Z"/>
67
+ <path class="st3" d="M52,35l-4,1c-17,5-22,21-13,35,10,13,31,20,48,15l62-21s-53-39-93-30Z"/>
68
+ <path class="st6" d="M52,35l-4,1c-17,5-22,21-13,35,10,13,31,20,48,15l62-21s-53-39-93-30Z"/>
69
+ <path class="st0" d="M134,80c-11.5-14.3-30.4-20.2-48-15l-62,20L4,120l112,19,20-36c4-7,3-15-2-23Z"/>
70
+ <path class="st1" d="M114,115c-11.5-14.3-30.4-20.2-48-15L4,120s53,40,94,30l3-1c17-5,23-21,13-34Z"/>
71
+ </g>
72
+ <g id="Layer_2">
73
+ <circle class="st2" cx="92.8" cy="127.3" r="7.6"/>
74
+ <path class="st7" d="M100.8,127.3c0,4.4-3.6,8-8,8s-8-3.6-8-8,3.6-8,8-8,8,3.6,8,8ZM86.6,127.1v-1.1c0-.2.2-.9.3-1.1.2-.3.5-.6.8-.8l-.6-.6c.7-.6,1.7-.7,2.4-.1.3-.8,1.2-1.3,2.1-1.2v.7c.9,0,2.2.7,2.2,1.9s0,0-.1.1c-.3,0-.6,0-.9-.1s-.2,0-.2,0,.4.7.5,1,.2.6.1.9c-1-.1-1.9-.6-2.6-1.2,0,.5.7,3.8.9,3.9s.1-.1.2-.2.2-1.1.2-1.2c0-.2-.3-.3-.4-.5-.2-.5.2-.8.7-.6s.9,1.1,1.3,1.3,2.3.2,2.6.6-.5.8-.3,1.3c1.2-.5,2.4-.6,3.6-.4.5-1.7.5-3.6-.2-5.3-1.3,0-2.6-.6-3-1.9-.4-1.3-.1-1.5-.2-1.6-.1-.2-1.1.1-1.3-.3s0-.2,0-.2-.3-.1-.5-.1c-4.6-1.1-9.1,2.8-8.8,7.4,0,.3.3,1.8.4,2s.8,0,1.1,0,.7,0,.9,0c.5,0,1.3.4,1.7.4s.4-.1.5-.4c0-.5,0-1.3,0-1.8s-.2-1.4-.2-2.1c-.2,0-.1,0-.2,0-.1.2-.2.6-.3.8s-.9,1.5-1,1.6-.1,0-.1-.1c-.3-.6-.4-1.4-.3-2.1-.2-.2-1,.9-1.2.9h-.1c0-.1,0-.1,0-.1h0ZM98.9,123.7c.2-.2-1.1-1.6-1.3-1.8-.5-.5-1-.8-.6.2s1,1.4,1.9,1.5h0ZM91,122.6c0,0-1.1.5-1,.8.3-.2,1-.3,1-.8ZM89.2,123.7c0-.4-1.1-.5-1.3-.2s.3.2.3.2c.3,0,.6-.1.9,0h0ZM91.1,123.8c.7.2,1.2.6,1.9.7s0-.5-.2-.7c-.4-.3-.9-.4-1.4-.4s-.3,0-.2,0c.5.1,1.3.1,1.5.7-.4,0-.7-.3-1.1-.4s-.4,0-.5,0h0ZM92.7,126.1c-.1-.9-1-1.9-1.9-2.1s-.2,0-.1,0,.8.6,1,.7.8.7.4.7-1.5-1.4-1.7-1.2c0,.2.2.3.3.5.5.7,1.2,1.2,2.1,1.3h0ZM88.3,124.3c-.9.2-1.2,1.1-1.2,1.9.1.1.9-.7,1-.8s.5-.8.2-.7-.5.8-.7.8,0-.4,0-.4c.2-.3.5-.5.7-.8h0ZM89.2,124.6c0,0-.4.2-.4.3-.5.7-.5,1.8-.3,2.6.1,0,.1,0,.2-.1.5-.7,1-1.9.8-2.7-.4.5-.5,1.3-.6,1.9h-.2c0-.7.3-1.4.5-2h0ZM93.8,128.9c0-.3-.3-.2-.4-.3s-.2-.3-.5-.2c.2.4.5.6,1,.6h0ZM92.1,129.4c1.3.1,1-.3.2-1-.2,0-.3.8-.2,1ZM95.6,129.6c-.6,0-1.4-.4-2-.4s-.2,0-.3.1c.7.2,1.5.3,2.1.7l.2-.4h0ZM92.7,130.1c-1.3,0-2.7.7-3.6,1.6s-.8.9-.8,1.1c0,.3,1.5,1.1,1.9,1.2,2.1.8,4.9.6,6.8-.7s.5-.5,0-1.1c-1-1.2-2.6-2-4.1-2h0ZM88.9,130.8c-.2-.2-.9-.3-1.2-.4s-.9,0-1.2.1l2.5.2h0ZM99.2,130.5h-1.3c-.2,0-.9.2-1.1.3s-.1.1,0,0c.4,0,.9-.2,1.3-.2s.6,0,.9,0,.2,0,.1-.1h0Z"/>
75
+ <path class="st2" d="M86.6,127.1h.1c.2,0,1-1,1.2-.9,0,.7,0,1.5.3,2.1s0,.2.1.1.9-1.4,1-1.6.2-.6.3-.8,0-.1.2,0c0,.7.2,1.4.2,2.1s0,1.3,0,1.8-.2.4-.5.4-1.2-.4-1.7-.4-.7,0-.9,0-1,.2-1.1,0-.4-1.7-.4-2c-.3-4.7,4.2-8.6,8.8-7.4,4.6,1.1.4,0,.5.1s0,.2,0,.2c.2.4,1.2,0,1.3.3s0,1.2.2,1.6c.4,1.3,1.8,1.9,3,1.9.7,1.7.7,3.6.2,5.3-1.3-.1-2.5,0-3.6.4-.2-.5.7-.9.3-1.3s-2.1-.3-2.6-.6-1-1.1-1.3-1.3-.9.1-.7.6.4.3.4.5-.2,1.1-.2,1.2,0,.2-.2.2c-.2,0-.9-3.4-.9-3.9.8.6,1.6,1,2.6,1.2,0-.3,0-.6-.1-.9s-.5-.9-.5-1c0-.1.2,0,.2,0,.3,0,.6.1.9.1s.1,0,.1-.1c0-1.2-1.3-1.9-2.3-1.9v-.7c-.8,0-1.6.4-1.9,1.2-.8-.5-1.7-.5-2.4.1l.6.6c-.3.2-.6.5-.8.8s-.3.9-.3,1.1v1.2h0,0ZM94.7,121.7c1.4.4,1.5-.6,0-.2v.2ZM94.8,122.7c0,.1,1.1,0,1-.4s-.8.1-1,.1v.3s0,0,0,0h0ZM95.2,123.6c.1.2,1-.3,1-.5,0-.3-1.2.2-1,.5ZM96.7,123.7c-.2-.2-.9.5-.8.7.1.4,1-.5.8-.7ZM97.1,124.3c0,0-.5.8-.3.9s.6-.6.6-.7-.2-.2-.4-.2h0ZM97.7,125.6c.4.1.7-.9.4-1-.3-.1-.5.9-.4,1ZM99.2,125.8c0-.3.2-.8-.2-1-.2,0-.1.7-.1.8h0c0,0,.2.1.2.1h0Z"/>
76
+ <path class="st2" d="M98.9,123.7c-.9-.1-1.6-.6-1.9-1.5s0-.7.6-.2,1.5,1.5,1.3,1.8h0Z"/>
77
+ <path class="st2" d="M92.7,126.1c-.9-.1-1.6-.6-2.1-1.3s-.3-.3-.3-.5c.2-.2,1.5,1.2,1.7,1.2.4,0-.3-.6-.4-.7-.2-.1-1-.6-1-.7,0-.1,0,0,.1,0,.9.1,1.8,1.2,1.9,2.1h0Z"/>
78
+ <path class="st2" d="M89.2,124.6c-.2.7-.5,1.3-.5,2h.2c0-.7.3-1.4.6-1.9.2.8-.3,2.1-.8,2.7s0,.1-.2.1c-.2-.8-.2-1.9.3-2.6s.3-.4.4-.3h0Z"/>
79
+ <path class="st2" d="M91.1,123.8c0-.1.4,0,.5,0,.4,0,.7.3,1.1.4-.2-.5-1-.6-1.5-.7,0-.1.2,0,.2,0,.5,0,1,.1,1.4.4.4.3.7.7.2.7-.8,0-1.3-.4-1.9-.7h0Z"/>
80
+ <path class="st2" d="M88.3,124.3c-.2.3-.5.5-.7.8s-.3.5,0,.4.5-.7.7-.8-.2.6-.2.7c0,.1-.8.9-1,.8,0-.8.3-1.8,1.2-1.9h0Z"/>
81
+ <path class="st2" d="M95.6,129.6l-.2.4c-.6-.4-1.4-.5-2.1-.7,0-.1.2-.1.3-.1.6,0,1.4.3,2,.4h0Z"/>
82
+ <path class="st2" d="M92.1,129.4c0-.2,0-1,.2-1,.7.6,1.1,1.1-.2,1Z"/>
83
+ <path class="st2" d="M89.2,123.7c-.3,0-.6.1-.9,0s-.4-.1-.3-.2c.1-.3,1.2-.2,1.3.2h0Z"/>
84
+ <path class="st2" d="M91,122.6c0,.5-.6.6-1,.8-.1-.3.9-.9,1-.8Z"/>
85
+ <path class="st2" d="M93.8,128.9c-.4,0-.7-.2-1-.6.3,0,.4.1.5.2s.5,0,.4.3h0Z"/>
86
+ <path class="st7" d="M94.8,122.7v-.3c.2,0,.9-.4,1-.1s-1,.5-1,.4h0Z"/>
87
+ <path class="st7" d="M94.7,121.7v-.2c1.5-.4,1.4.6,0,.2Z"/>
88
+ <path class="st7" d="M95.2,123.6c-.2-.3.9-.8,1-.5s-.8.7-1,.5Z"/>
89
+ <path class="st7" d="M96.7,123.7c.2.2-.7,1.1-.8.7s.7-.9.8-.7Z"/>
90
+ <path class="st7" d="M97.1,124.3c.1,0,.4,0,.4.2s-.4.8-.6.7.2-.8.3-.9h0Z"/>
91
+ <path class="st7" d="M97.7,125.6c0,0,0-1.1.4-1,.2,0,0,1.1-.4,1Z"/>
92
+ <path class="st7" d="M99.2,125.8h-.2s0-.1,0-.1c0-.2,0-.8.1-.8.4.1.3.7.2,1h0Z"/>
93
+ <path class="st2" d="M92.7,130.1c1.6,0,3.2.8,4.1,2,1,1.2.7.6,0,1.1-1.9,1.4-4.6,1.6-6.8.7-.3-.1-1.9-.9-1.9-1.2s.7-.9.8-1.1c.9-.9,2.3-1.5,3.6-1.6h0Z"/>
94
+ <path class="st2" d="M88.9,130.8l-2.5-.2c.3-.2.9-.1,1.2-.1s1,.1,1.2.4h0Z"/>
95
+ <path class="st2" d="M99.2,130.5c.1,0,0,.1-.1.1-.3,0-.6,0-.9,0-.4,0-.9.2-1.3.2s-.2,0,0,0,.9-.3,1.1-.3h1.3,0Z"/>
96
+ <circle class="st2" cx="47.9" cy="57.2" r="5.2"/>
97
+ <path class="st7" d="M53.4,57.2c0,3-2.4,5.5-5.5,5.5s-5.5-2.4-5.5-5.5,2.4-5.5,5.5-5.5,5.5,2.4,5.5,5.5ZM43.7,57v-.8c0-.1.1-.6.2-.8.1-.2.4-.4.6-.6l-.4-.4c.5-.4,1.1-.4,1.7,0,.2-.6.8-.9,1.4-.8v.5c.6,0,1.5.5,1.5,1.3s0,0,0,0c-.2,0-.4,0-.6,0s-.1,0-.1,0,.3.5.4.7.1.4,0,.6c-.7,0-1.3-.4-1.8-.8,0,.3.5,2.6.6,2.7s0,0,.1-.1.2-.8.2-.8c0-.1-.2-.2-.3-.3-.1-.3.2-.6.4-.4s.6.8.9.9,1.6.2,1.8.4-.4.6-.2.9c.8-.3,1.6-.4,2.5-.3.4-1.2.4-2.5-.1-3.6-.9,0-1.8-.4-2.1-1.3-.3-.9,0-1-.2-1.1,0-.1-.8,0-.9-.2s0-.1,0-.2-.2,0-.3,0c-3.1-.8-6.2,1.9-6,5.1,0,.2.2,1.2.3,1.3s.6,0,.8,0,.4,0,.6,0c.4,0,.9.3,1.1.3s.3,0,.3-.3c0-.3,0-.9,0-1.2s-.1-.9-.2-1.4c-.1,0,0,0-.1,0,0,.2-.1.4-.2.6s-.6,1.1-.7,1.1,0,0,0,0c-.2-.4-.2-1-.2-1.4-.1-.1-.7.6-.8.6h0c0,0,0,0,0,0h0ZM52.2,54.7c.1-.1-.7-1.1-.9-1.2-.4-.3-.7-.5-.4.2s.7.9,1.3,1h0ZM46.7,54c0,0-.7.4-.7.6.2-.2.7-.2.7-.6ZM45.5,54.7c0-.3-.8-.3-.9-.1s.2.2.2.2c.2,0,.4,0,.6,0h0ZM46.8,54.8c.5.2.8.4,1.3.4s0-.4-.1-.5c-.3-.2-.6-.3-.9-.3s-.2,0-.2,0c.3,0,.9,0,1,.5-.3,0-.5-.2-.8-.2s-.3,0-.3,0h0ZM47.9,56.4c0-.6-.7-1.3-1.3-1.4s-.2,0,0,0,.6.4.7.5.5.5.3.5-1-.9-1.1-.8c0,.1.1.2.2.3.4.5.8.8,1.4.9h0ZM44.8,55.1c-.6.1-.8.8-.8,1.3,0,0,.6-.5.7-.5s.3-.6.1-.5-.4.5-.5.6,0-.3,0-.3c.1-.2.4-.4.5-.6h0ZM45.5,55.3c0,0-.2.2-.3.2-.4.5-.3,1.2-.2,1.8,0,0,0,0,.1,0,.4-.5.7-1.3.5-1.9-.3.4-.4.9-.4,1.3h-.2c0-.5.2-.9.4-1.4h0ZM48.7,58.3c0-.2-.2-.2-.3-.2s-.2-.2-.4-.2c.2.3.4.4.7.4h0ZM47.5,58.6c.9,0,.7-.2.2-.7-.2,0-.2.5-.2.7ZM49.9,58.8c-.4,0-.9-.2-1.4-.3s-.2,0-.2,0c.5.2,1,.2,1.5.5v-.3h.1ZM47.9,59.1c-.9,0-1.8.4-2.5,1.1s-.6.6-.6.8c0,.2,1,.8,1.3.8,1.5.6,3.3.4,4.6-.5s.4-.3,0-.8c-.7-.8-1.8-1.4-2.8-1.4h0ZM45.3,59.6c-.2-.2-.6-.2-.8-.3s-.6,0-.8,0l1.7.2h0ZM52.3,59.4h-.9c-.1,0-.6.1-.7.2s0,0,0,0c.3,0,.6-.1.9-.2s.4,0,.6,0,.2,0,0,0h0Z"/>
98
+ <path class="st2" d="M43.7,57h0c.2,0,.7-.7.8-.6,0,.5,0,1,.2,1.4s0,.1,0,0,.6-.9.7-1.1.2-.4.2-.6,0,0,.1,0c0,.5.1.9.2,1.4s0,.9,0,1.2-.1.3-.3.3-.8-.3-1.1-.3-.4,0-.6,0-.7.1-.8,0-.3-1.2-.3-1.3c-.2-3.2,2.9-5.9,6-5.1s.3,0,.3,0,0,.1,0,.2c.1.2.8,0,.9.2s0,.8.2,1.1c.3.9,1.2,1.3,2.1,1.3.5,1.1.5,2.4.1,3.6-.9,0-1.7,0-2.5.3-.2-.4.5-.6.2-.9s-1.4-.2-1.8-.4-.7-.7-.9-.9-.6,0-.4.4.3.2.3.3-.1.8-.2.8,0,.2-.1.1c-.1,0-.6-2.3-.6-2.7.5.4,1.1.7,1.8.8,0-.2,0-.4,0-.6s-.4-.6-.4-.7c0,0,.1,0,.1,0,.2,0,.4,0,.6,0s0,0,0,0c0-.8-.9-1.3-1.6-1.3v-.5c-.5,0-1.1.2-1.3.8-.5-.4-1.2-.4-1.7,0l.4.4c-.2.2-.4.3-.6.6s-.2.6-.2.8v.8h0,0ZM49.2,53.3c.9.3,1.1-.4,0-.2v.2ZM49.3,54.1c0,0,.8,0,.7-.3s-.6,0-.7,0v.2s0,0,0,0h0ZM49.6,54.7c0,.1.7-.2.7-.3,0-.2-.8.1-.7.3ZM50.6,54.7c-.1-.1-.6.3-.6.5,0,.3.7-.4.6-.5ZM50.9,55.1s-.4.6-.2.6.4-.4.4-.5-.2-.2-.2-.1h0ZM51.3,56.1c.3,0,.5-.6.3-.7-.2,0-.3.6-.3.7ZM52.4,56.2c0-.2.1-.6-.1-.7-.1,0,0,.5,0,.6h0c0,0,.2,0,.2,0h0Z"/>
99
+ <path class="st2" d="M52.2,54.7c-.6,0-1.1-.4-1.3-1s0-.5.4-.2,1,1.1.9,1.2h0Z"/>
100
+ <path class="st2" d="M47.9,56.4c-.6,0-1.1-.4-1.4-.9s-.2-.2-.2-.3c.1-.1,1,.8,1.1.8.3,0-.2-.4-.3-.5-.1,0-.7-.4-.7-.5,0,0,0,0,0,0,.6,0,1.2.8,1.3,1.4h0Z"/>
101
+ <path class="st2" d="M45.5,55.3c-.1.4-.4.9-.4,1.4h.2c0-.4.2-.9.4-1.3.1.6-.2,1.4-.5,1.9s0,0-.1,0c-.1-.5-.2-1.3.2-1.8s.2-.3.3-.2h0Z"/>
102
+ <path class="st2" d="M46.8,54.8c0,0,.3,0,.3,0,.3,0,.5.2.8.2-.1-.4-.7-.4-1-.5,0,0,.1,0,.2,0,.3,0,.7,0,.9.3.3.2.5.5.1.5-.5,0-.9-.3-1.3-.4h0Z"/>
103
+ <path class="st2" d="M44.8,55.1c-.1.2-.4.4-.5.6s-.2.3,0,.3.3-.5.5-.6-.1.4-.1.5c0,0-.6.6-.7.5,0-.6.2-1.2.8-1.3h0Z"/>
104
+ <path class="st2" d="M49.9,58.8v.3c-.6-.3-1.1-.3-1.6-.5,0,0,.1,0,.2,0,.4,0,.9.2,1.4.3h0Z"/>
105
+ <path class="st2" d="M47.5,58.6c0-.1,0-.7.2-.7.5.4.7.8-.2.7Z"/>
106
+ <path class="st2" d="M45.5,54.7c-.2,0-.4,0-.6,0s-.3,0-.2-.2c0-.2.8-.2.9.1h0Z"/>
107
+ <path class="st2" d="M46.7,54c0,.4-.4.4-.7.6,0-.2.6-.6.7-.6Z"/>
108
+ <path class="st2" d="M48.7,58.3c-.3,0-.5-.2-.7-.4.2,0,.2,0,.4.2s.3,0,.3.2h0Z"/>
109
+ <path class="st7" d="M49.3,54.1v-.2c.2,0,.6-.3.7,0s-.7.4-.7.3h0Z"/>
110
+ <path class="st7" d="M49.2,53.3v-.2c1-.3,1,.4,0,.2Z"/>
111
+ <path class="st7" d="M49.6,54.7c-.1-.2.6-.6.7-.3s-.6.5-.7.3Z"/>
112
+ <path class="st7" d="M50.6,54.7c.1.1-.5.8-.6.5s.4-.6.6-.5Z"/>
113
+ <path class="st7" d="M50.9,55.1c0,0,.3,0,.2.1s-.3.5-.4.5.2-.6.2-.6h0Z"/>
114
+ <path class="st7" d="M51.3,56.1s0-.7.3-.7c.2,0,0,.8-.3.7Z"/>
115
+ <path class="st7" d="M52.4,56.2h-.2s0,0,0,0c0-.1,0-.6,0-.6.3,0,.2.5.1.7h0Z"/>
116
+ <path class="st2" d="M47.9,59.1c1.1,0,2.2.6,2.8,1.4.7.8.5.4,0,.8-1.3.9-3.2,1.1-4.6.5-.2,0-1.3-.6-1.3-.8s.5-.6.6-.8c.6-.6,1.6-1,2.5-1.1h0Z"/>
117
+ <path class="st2" d="M45.3,59.6l-1.7-.2c.2-.1.6,0,.8,0s.7,0,.8.3h0Z"/>
118
+ <path class="st2" d="M52.3,59.4c0,0,0,0,0,0-.2,0-.4,0-.6,0-.3,0-.6.1-.9.2s-.1,0,0,0,.6-.2.7-.2h.9,0Z"/>
119
+ </g>
120
+ </svg>