ultracite 7.3.2 → 7.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/config/oxlint/core/.oxlintrc.json +2 -0
- package/config/oxlint/vitest/.oxlintrc.json +5 -0
- package/dist/adal-VMG3GLKT.svg +1 -0
- package/dist/aider-K7JLZT2D.svg +1 -0
- package/dist/amazon-q-TSOJNPXB.svg +1 -0
- package/dist/amp-EV4LVL5I.svg +1 -0
- package/dist/antigravity-JVONECNW.svg +1 -0
- package/dist/augmentcode-Q62PVXKO.svg +1 -0
- package/dist/biome-TVLEY2T4.svg +1 -0
- package/dist/claude-6DLEHRDQ.svg +1 -0
- package/dist/cline-6HWKIYN7.svg +1 -0
- package/dist/codebuddy-OD3VECQ4.svg +1 -0
- package/dist/coder-7BVXO5OJ.svg +1 -0
- package/dist/codex-NQZ5TJCL.svg +1 -0
- package/dist/continue-LKI2ZW3R.svg +1 -0
- package/dist/copilot-L2IY45R2.svg +1 -0
- package/dist/crush-LYLRDQGZ.svg +1 -0
- package/dist/cursor-GQNH5LCA.svg +1 -0
- package/dist/devin-KY5ISKEW.svg +1 -0
- package/dist/droid-266OHJBT.svg +1 -0
- package/dist/eslint-7IULJKW7.svg +1 -0
- package/dist/firebase-studio-ILLWWYU7.svg +1 -0
- package/dist/firebender-UNO6LSZG.svg +1 -0
- package/dist/gemini-OYS6V4BH.svg +1 -0
- package/dist/goose-XBIEVD4H.svg +1 -0
- package/dist/index.js +92 -92
- package/dist/jules-HJPVWU73.svg +1 -0
- package/dist/junie-RUWBUV6N.svg +1 -0
- package/dist/kilo-code-4QYUYY2E.svg +1 -0
- package/dist/kimi-6SOFW673.svg +1 -0
- package/dist/kiro-N2M256R6.svg +1 -0
- package/dist/langchain-5SXQKAL3.svg +1 -0
- package/dist/lovable-UELF2DY5.svg +1 -0
- package/dist/mcpjam-V2GHUPJN.svg +1 -0
- package/dist/mistral-HQ63EC2B.svg +1 -0
- package/dist/ona-KYYK3HQX.svg +1 -0
- package/dist/open-hands-K5EYKO6T.svg +1 -0
- package/dist/openclaw-XFPF7FMJ.svg +1 -0
- package/dist/opencode-K3274JKQ.svg +1 -0
- package/dist/oxlint-5IE3ABOZ.svg +1 -0
- package/dist/oxlint.d.ts +540 -0
- package/dist/oxlint.js +1 -0
- package/dist/pi-AZOSKO3D.svg +1 -0
- package/dist/prettier-O4V2FSEA.svg +1 -0
- package/dist/qoder-LPW47DKG.svg +1 -0
- package/dist/qwen-N3D5CQYL.svg +1 -0
- package/dist/replit-WKR4Y6HH.svg +1 -0
- package/dist/roo-code-CVLBTS7D.svg +1 -0
- package/dist/snowflake-S3LTTUXJ.svg +1 -0
- package/dist/stylelint-DEBSWZVS.svg +1 -0
- package/dist/trae-RXVCFBOF.svg +1 -0
- package/dist/vercel-27VSITAQ.svg +1 -0
- package/dist/void-NYH3U3BB.svg +1 -0
- package/dist/vscode-DEOUEB65.svg +1 -0
- package/dist/warp-OZKAAQRT.svg +1 -0
- package/dist/windsurf-5T7JOTST.svg +1 -0
- package/dist/zed-SIARPESF.svg +1 -0
- package/dist/zencoder-VTSK5Z7Z.svg +1 -0
- package/package.json +24 -19
package/dist/oxlint.d.ts
ADDED
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
declare const angular: {
|
|
2
|
+
rules: {};
|
|
3
|
+
};
|
|
4
|
+
declare const astro: {
|
|
5
|
+
rules: {};
|
|
6
|
+
};
|
|
7
|
+
declare const core: {
|
|
8
|
+
plugins: ("eslint" | "unicorn" | "typescript" | "oxc" | "import" | "jsdoc" | "promise" | "node")[];
|
|
9
|
+
env: {
|
|
10
|
+
browser: true;
|
|
11
|
+
};
|
|
12
|
+
categories: {
|
|
13
|
+
correctness: "error";
|
|
14
|
+
perf: "error";
|
|
15
|
+
restriction: "error";
|
|
16
|
+
suspicious: "error";
|
|
17
|
+
pedantic: "error";
|
|
18
|
+
style: "error";
|
|
19
|
+
};
|
|
20
|
+
rules: {
|
|
21
|
+
"no-await-in-loop": "off";
|
|
22
|
+
"max-lines-per-function": "off";
|
|
23
|
+
"no-implicit-coercion": "off";
|
|
24
|
+
"no-magic-numbers": "off";
|
|
25
|
+
"no-console": "off";
|
|
26
|
+
"no-ternary": "off";
|
|
27
|
+
"no-undefined": "off";
|
|
28
|
+
"max-lines": "off";
|
|
29
|
+
"id-length": "off";
|
|
30
|
+
"func-style": (string | {
|
|
31
|
+
allowArrowFunctions: boolean;
|
|
32
|
+
})[];
|
|
33
|
+
"arrow-body-style": string[];
|
|
34
|
+
"max-depth": "off";
|
|
35
|
+
"max-params": "off";
|
|
36
|
+
"max-statements": "off";
|
|
37
|
+
"capitalized-comments": "off";
|
|
38
|
+
"new-cap": "off";
|
|
39
|
+
"no-continue": "off";
|
|
40
|
+
"init-declarations": "off";
|
|
41
|
+
"sort-imports": "off";
|
|
42
|
+
"no-duplicate-imports": (string | {
|
|
43
|
+
allowSeparateTypeImports: boolean;
|
|
44
|
+
})[];
|
|
45
|
+
"no-void": (string | {
|
|
46
|
+
allowAsStatement: boolean;
|
|
47
|
+
})[];
|
|
48
|
+
"import/no-relative-parent-imports": "off";
|
|
49
|
+
"import/no-default-export": "off";
|
|
50
|
+
"import/exports-last": "off";
|
|
51
|
+
"import/no-named-export": "off";
|
|
52
|
+
"import/max-dependencies": "off";
|
|
53
|
+
"import/no-unresolved": "off";
|
|
54
|
+
"import/extensions": "off";
|
|
55
|
+
"import/no-namespace": "off";
|
|
56
|
+
"import/no-anonymous-default-export": "off";
|
|
57
|
+
"import/prefer-default-export": "off";
|
|
58
|
+
"import/group-exports": "off";
|
|
59
|
+
"import/no-commonjs": "off";
|
|
60
|
+
"import/unambiguous": "off";
|
|
61
|
+
"import/consistent-type-specifier-style": string[];
|
|
62
|
+
"import/no-dynamic-require": "off";
|
|
63
|
+
"import/no-unassigned-import": "off";
|
|
64
|
+
"import/no-nodejs-modules": "off";
|
|
65
|
+
"jsdoc/require-param": "off";
|
|
66
|
+
"jsdoc/require-param-type": "off";
|
|
67
|
+
"jsdoc/require-returns": "off";
|
|
68
|
+
"jsdoc/require-returns-type": "off";
|
|
69
|
+
"unicorn/explicit-length-check": "off";
|
|
70
|
+
"unicorn/no-array-callback-reference": "off";
|
|
71
|
+
"unicorn/no-process-exit": "off";
|
|
72
|
+
"unicorn/prefer-global-this": "off";
|
|
73
|
+
"unicorn/no-null": "off";
|
|
74
|
+
"unicorn/prefer-top-level-await": "off";
|
|
75
|
+
"unicorn/prefer-string-raw": "off";
|
|
76
|
+
"typescript/explicit-module-boundary-types": "off";
|
|
77
|
+
"typescript/no-require-imports": "off";
|
|
78
|
+
"typescript/explicit-function-return-type": "off";
|
|
79
|
+
"typescript/no-var-requires": "off";
|
|
80
|
+
"typescript/require-await": "off";
|
|
81
|
+
"node/no-process-env": "off";
|
|
82
|
+
"oxc/no-map-spread": "off";
|
|
83
|
+
"oxc/no-async-await": "off";
|
|
84
|
+
"oxc/no-rest-spread-properties": "off";
|
|
85
|
+
"oxc/no-optional-chaining": "off";
|
|
86
|
+
"promise/catch-or-return": "off";
|
|
87
|
+
"promise/always-return": "off";
|
|
88
|
+
};
|
|
89
|
+
overrides: {
|
|
90
|
+
files: string[];
|
|
91
|
+
rules: {
|
|
92
|
+
"no-empty-function": "off";
|
|
93
|
+
"promise/prefer-await-to-then": "off";
|
|
94
|
+
};
|
|
95
|
+
}[];
|
|
96
|
+
};
|
|
97
|
+
declare const jest: {
|
|
98
|
+
overrides: {
|
|
99
|
+
files: string[];
|
|
100
|
+
plugins: "jest"[];
|
|
101
|
+
rules: {
|
|
102
|
+
"jest/require-hook": "off";
|
|
103
|
+
"jest/no-conditional-in-test": "off";
|
|
104
|
+
"jest/no-hooks": "off";
|
|
105
|
+
"promise/prefer-await-to-then": "off";
|
|
106
|
+
"no-empty-function": "off";
|
|
107
|
+
"jest/consistent-test-it": "error";
|
|
108
|
+
"jest/expect-expect": "error";
|
|
109
|
+
"jest/max-expects": "error";
|
|
110
|
+
"jest/max-nested-describe": "error";
|
|
111
|
+
"jest/no-alias-methods": "error";
|
|
112
|
+
"jest/no-commented-out-tests": "error";
|
|
113
|
+
"jest/no-conditional-expect": "error";
|
|
114
|
+
"jest/no-confusing-set-timeout": "error";
|
|
115
|
+
"jest/no-deprecated-functions": "error";
|
|
116
|
+
"jest/no-disabled-tests": "error";
|
|
117
|
+
"jest/no-done-callback": "error";
|
|
118
|
+
"jest/no-duplicate-hooks": "error";
|
|
119
|
+
"jest/no-export": "error";
|
|
120
|
+
"jest/no-focused-tests": "error";
|
|
121
|
+
"jest/no-identical-title": "error";
|
|
122
|
+
"jest/no-interpolation-in-snapshots": "error";
|
|
123
|
+
"jest/no-jasmine-globals": "error";
|
|
124
|
+
"jest/no-large-snapshots": "error";
|
|
125
|
+
"jest/no-mocks-import": "error";
|
|
126
|
+
"jest/no-restricted-jest-methods": "error";
|
|
127
|
+
"jest/no-restricted-matchers": "error";
|
|
128
|
+
"jest/no-standalone-expect": "error";
|
|
129
|
+
"jest/no-test-prefixes": "error";
|
|
130
|
+
"jest/no-test-return-statement": "error";
|
|
131
|
+
"jest/no-untyped-mock-factory": "error";
|
|
132
|
+
"jest/padding-around-test-blocks": "error";
|
|
133
|
+
"jest/prefer-called-with": "error";
|
|
134
|
+
"jest/prefer-comparison-matcher": "error";
|
|
135
|
+
"jest/prefer-each": "error";
|
|
136
|
+
"jest/prefer-equality-matcher": "error";
|
|
137
|
+
"jest/prefer-expect-resolves": "error";
|
|
138
|
+
"jest/prefer-hooks-in-order": "error";
|
|
139
|
+
"jest/prefer-hooks-on-top": "error";
|
|
140
|
+
"jest/prefer-jest-mocked": "error";
|
|
141
|
+
"jest/prefer-lowercase-title": "error";
|
|
142
|
+
"jest/prefer-mock-promise-shorthand": "error";
|
|
143
|
+
"jest/prefer-spy-on": "error";
|
|
144
|
+
"jest/prefer-strict-equal": "error";
|
|
145
|
+
"jest/prefer-to-be": "error";
|
|
146
|
+
"jest/prefer-to-contain": "error";
|
|
147
|
+
"jest/prefer-to-have-been-called": "error";
|
|
148
|
+
"jest/prefer-to-have-been-called-times": "error";
|
|
149
|
+
"jest/prefer-to-have-length": "error";
|
|
150
|
+
"jest/prefer-todo": "error";
|
|
151
|
+
"jest/require-to-throw-message": "error";
|
|
152
|
+
"jest/require-top-level-describe": "error";
|
|
153
|
+
"jest/valid-describe-callback": "error";
|
|
154
|
+
"jest/valid-expect": "error";
|
|
155
|
+
"jest/valid-title": "error";
|
|
156
|
+
};
|
|
157
|
+
}[];
|
|
158
|
+
};
|
|
159
|
+
declare const nestjs: {
|
|
160
|
+
rules: {};
|
|
161
|
+
};
|
|
162
|
+
declare const next: {
|
|
163
|
+
plugins: "nextjs"[];
|
|
164
|
+
rules: {};
|
|
165
|
+
overrides: {
|
|
166
|
+
files: string[];
|
|
167
|
+
rules: {
|
|
168
|
+
"import/no-unassigned-import": "off";
|
|
169
|
+
};
|
|
170
|
+
}[];
|
|
171
|
+
};
|
|
172
|
+
declare const qwik: {
|
|
173
|
+
rules: {};
|
|
174
|
+
};
|
|
175
|
+
declare const react: {
|
|
176
|
+
plugins: ("react" | "jsx-a11y" | "react-perf")[];
|
|
177
|
+
rules: {
|
|
178
|
+
"react/only-export-components": "off";
|
|
179
|
+
"react/jsx-boolean-value": "off";
|
|
180
|
+
"react/react-in-jsx-scope": "off";
|
|
181
|
+
"react/jsx-filename-extension": "off";
|
|
182
|
+
"react/no-unknown-property": "off";
|
|
183
|
+
"react/jsx-props-no-spreading": "off";
|
|
184
|
+
"react/jsx-max-depth": "off";
|
|
185
|
+
"react/no-multi-comp": "off";
|
|
186
|
+
"react_perf/jsx-no-jsx-as-prop": "off";
|
|
187
|
+
"react_perf/jsx-no-new-object-as-prop": "off";
|
|
188
|
+
"react_perf/jsx-no-new-array-as-prop": "off";
|
|
189
|
+
"jsx-a11y/no-autofocus": "off";
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
declare const remix: {
|
|
193
|
+
overrides: {
|
|
194
|
+
files: string[];
|
|
195
|
+
rules: {
|
|
196
|
+
"unicorn/filename-case": "off";
|
|
197
|
+
"unicorn/no-abusive-eslint-disable": "off";
|
|
198
|
+
};
|
|
199
|
+
}[];
|
|
200
|
+
rules: {};
|
|
201
|
+
};
|
|
202
|
+
declare const solid: {
|
|
203
|
+
rules: {};
|
|
204
|
+
};
|
|
205
|
+
declare const svelte: {
|
|
206
|
+
rules: {};
|
|
207
|
+
};
|
|
208
|
+
declare const vitest: {
|
|
209
|
+
overrides: {
|
|
210
|
+
files: string[];
|
|
211
|
+
plugins: "vitest"[];
|
|
212
|
+
rules: {
|
|
213
|
+
"no-empty-function": "off";
|
|
214
|
+
"promise/prefer-await-to-then": "off";
|
|
215
|
+
"vitest/consistent-test-filename": "error";
|
|
216
|
+
"vitest/consistent-vitest-vi": "error";
|
|
217
|
+
"vitest/expect-expect": "error";
|
|
218
|
+
"vitest/no-alias-methods": "error";
|
|
219
|
+
"vitest/no-commented-out-tests": "error";
|
|
220
|
+
"vitest/no-conditional-expect": "error";
|
|
221
|
+
"vitest/no-conditional-tests": "error";
|
|
222
|
+
"vitest/no-disabled-tests": "error";
|
|
223
|
+
"vitest/no-done-callback": "error";
|
|
224
|
+
"vitest/no-duplicate-hooks": "error";
|
|
225
|
+
"vitest/no-focused-tests": "error";
|
|
226
|
+
"vitest/no-identical-title": "error";
|
|
227
|
+
"vitest/no-import-node-test": "error";
|
|
228
|
+
"vitest/no-interpolation-in-snapshots": "error";
|
|
229
|
+
"vitest/no-large-snapshots": "error";
|
|
230
|
+
"vitest/no-mocks-import": "error";
|
|
231
|
+
"vitest/no-restricted-matchers": "error";
|
|
232
|
+
"vitest/no-restricted-vi-methods": "error";
|
|
233
|
+
"vitest/no-standalone-expect": "error";
|
|
234
|
+
"vitest/no-test-prefixes": "error";
|
|
235
|
+
"vitest/no-test-return-statement": "error";
|
|
236
|
+
"vitest/prefer-called-with": "error";
|
|
237
|
+
"vitest/prefer-called-times": "off";
|
|
238
|
+
"vitest/prefer-comparison-matcher": "error";
|
|
239
|
+
"vitest/prefer-each": "error";
|
|
240
|
+
"vitest/prefer-equality-matcher": "error";
|
|
241
|
+
"vitest/prefer-expect-resolves": "error";
|
|
242
|
+
"vitest/prefer-hooks-in-order": "error";
|
|
243
|
+
"vitest/prefer-hooks-on-top": "error";
|
|
244
|
+
"vitest/prefer-lowercase-title": "error";
|
|
245
|
+
"vitest/prefer-mock-promise-shorthand": "error";
|
|
246
|
+
"vitest/prefer-spy-on": "error";
|
|
247
|
+
"vitest/prefer-strict-equal": "error";
|
|
248
|
+
"vitest/prefer-to-be": "error";
|
|
249
|
+
"vitest/prefer-to-be-falsy": "error";
|
|
250
|
+
"vitest/prefer-to-be-object": "error";
|
|
251
|
+
"vitest/prefer-to-be-truthy": "error";
|
|
252
|
+
"vitest/prefer-to-contain": "error";
|
|
253
|
+
"vitest/prefer-to-have-length": "error";
|
|
254
|
+
"vitest/prefer-todo": "error";
|
|
255
|
+
"vitest/require-local-test-context-for-concurrent-snapshots": "error";
|
|
256
|
+
"vitest/require-to-throw-message": "error";
|
|
257
|
+
"vitest/require-top-level-describe": "error";
|
|
258
|
+
"vitest/valid-describe-callback": "error";
|
|
259
|
+
"vitest/valid-expect": "error";
|
|
260
|
+
"vitest/valid-title": "error";
|
|
261
|
+
"vitest/warn-todo": "error";
|
|
262
|
+
};
|
|
263
|
+
}[];
|
|
264
|
+
};
|
|
265
|
+
declare const vue: {
|
|
266
|
+
plugins: "vue"[];
|
|
267
|
+
rules: {};
|
|
268
|
+
};
|
|
269
|
+
declare const configs: {
|
|
270
|
+
angular: {
|
|
271
|
+
rules: {};
|
|
272
|
+
};
|
|
273
|
+
astro: {
|
|
274
|
+
rules: {};
|
|
275
|
+
};
|
|
276
|
+
core: {
|
|
277
|
+
plugins: ("eslint" | "unicorn" | "typescript" | "oxc" | "import" | "jsdoc" | "promise" | "node")[];
|
|
278
|
+
env: {
|
|
279
|
+
browser: true;
|
|
280
|
+
};
|
|
281
|
+
categories: {
|
|
282
|
+
correctness: "error";
|
|
283
|
+
perf: "error";
|
|
284
|
+
restriction: "error";
|
|
285
|
+
suspicious: "error";
|
|
286
|
+
pedantic: "error";
|
|
287
|
+
style: "error";
|
|
288
|
+
};
|
|
289
|
+
rules: {
|
|
290
|
+
"no-await-in-loop": "off";
|
|
291
|
+
"max-lines-per-function": "off";
|
|
292
|
+
"no-implicit-coercion": "off";
|
|
293
|
+
"no-magic-numbers": "off";
|
|
294
|
+
"no-console": "off";
|
|
295
|
+
"no-ternary": "off";
|
|
296
|
+
"no-undefined": "off";
|
|
297
|
+
"max-lines": "off";
|
|
298
|
+
"id-length": "off";
|
|
299
|
+
"func-style": (string | {
|
|
300
|
+
allowArrowFunctions: boolean;
|
|
301
|
+
})[];
|
|
302
|
+
"arrow-body-style": string[];
|
|
303
|
+
"max-depth": "off";
|
|
304
|
+
"max-params": "off";
|
|
305
|
+
"max-statements": "off";
|
|
306
|
+
"capitalized-comments": "off";
|
|
307
|
+
"new-cap": "off";
|
|
308
|
+
"no-continue": "off";
|
|
309
|
+
"init-declarations": "off";
|
|
310
|
+
"sort-imports": "off";
|
|
311
|
+
"no-duplicate-imports": (string | {
|
|
312
|
+
allowSeparateTypeImports: boolean;
|
|
313
|
+
})[];
|
|
314
|
+
"no-void": (string | {
|
|
315
|
+
allowAsStatement: boolean;
|
|
316
|
+
})[];
|
|
317
|
+
"import/no-relative-parent-imports": "off";
|
|
318
|
+
"import/no-default-export": "off";
|
|
319
|
+
"import/exports-last": "off";
|
|
320
|
+
"import/no-named-export": "off";
|
|
321
|
+
"import/max-dependencies": "off";
|
|
322
|
+
"import/no-unresolved": "off";
|
|
323
|
+
"import/extensions": "off";
|
|
324
|
+
"import/no-namespace": "off";
|
|
325
|
+
"import/no-anonymous-default-export": "off";
|
|
326
|
+
"import/prefer-default-export": "off";
|
|
327
|
+
"import/group-exports": "off";
|
|
328
|
+
"import/no-commonjs": "off";
|
|
329
|
+
"import/unambiguous": "off";
|
|
330
|
+
"import/consistent-type-specifier-style": string[];
|
|
331
|
+
"import/no-dynamic-require": "off";
|
|
332
|
+
"import/no-unassigned-import": "off";
|
|
333
|
+
"import/no-nodejs-modules": "off";
|
|
334
|
+
"jsdoc/require-param": "off";
|
|
335
|
+
"jsdoc/require-param-type": "off";
|
|
336
|
+
"jsdoc/require-returns": "off";
|
|
337
|
+
"jsdoc/require-returns-type": "off";
|
|
338
|
+
"unicorn/explicit-length-check": "off";
|
|
339
|
+
"unicorn/no-array-callback-reference": "off";
|
|
340
|
+
"unicorn/no-process-exit": "off";
|
|
341
|
+
"unicorn/prefer-global-this": "off";
|
|
342
|
+
"unicorn/no-null": "off";
|
|
343
|
+
"unicorn/prefer-top-level-await": "off";
|
|
344
|
+
"unicorn/prefer-string-raw": "off";
|
|
345
|
+
"typescript/explicit-module-boundary-types": "off";
|
|
346
|
+
"typescript/no-require-imports": "off";
|
|
347
|
+
"typescript/explicit-function-return-type": "off";
|
|
348
|
+
"typescript/no-var-requires": "off";
|
|
349
|
+
"typescript/require-await": "off";
|
|
350
|
+
"node/no-process-env": "off";
|
|
351
|
+
"oxc/no-map-spread": "off";
|
|
352
|
+
"oxc/no-async-await": "off";
|
|
353
|
+
"oxc/no-rest-spread-properties": "off";
|
|
354
|
+
"oxc/no-optional-chaining": "off";
|
|
355
|
+
"promise/catch-or-return": "off";
|
|
356
|
+
"promise/always-return": "off";
|
|
357
|
+
};
|
|
358
|
+
overrides: {
|
|
359
|
+
files: string[];
|
|
360
|
+
rules: {
|
|
361
|
+
"no-empty-function": "off";
|
|
362
|
+
"promise/prefer-await-to-then": "off";
|
|
363
|
+
};
|
|
364
|
+
}[];
|
|
365
|
+
};
|
|
366
|
+
jest: {
|
|
367
|
+
overrides: {
|
|
368
|
+
files: string[];
|
|
369
|
+
plugins: "jest"[];
|
|
370
|
+
rules: {
|
|
371
|
+
"jest/require-hook": "off";
|
|
372
|
+
"jest/no-conditional-in-test": "off";
|
|
373
|
+
"jest/no-hooks": "off";
|
|
374
|
+
"promise/prefer-await-to-then": "off";
|
|
375
|
+
"no-empty-function": "off";
|
|
376
|
+
"jest/consistent-test-it": "error";
|
|
377
|
+
"jest/expect-expect": "error";
|
|
378
|
+
"jest/max-expects": "error";
|
|
379
|
+
"jest/max-nested-describe": "error";
|
|
380
|
+
"jest/no-alias-methods": "error";
|
|
381
|
+
"jest/no-commented-out-tests": "error";
|
|
382
|
+
"jest/no-conditional-expect": "error";
|
|
383
|
+
"jest/no-confusing-set-timeout": "error";
|
|
384
|
+
"jest/no-deprecated-functions": "error";
|
|
385
|
+
"jest/no-disabled-tests": "error";
|
|
386
|
+
"jest/no-done-callback": "error";
|
|
387
|
+
"jest/no-duplicate-hooks": "error";
|
|
388
|
+
"jest/no-export": "error";
|
|
389
|
+
"jest/no-focused-tests": "error";
|
|
390
|
+
"jest/no-identical-title": "error";
|
|
391
|
+
"jest/no-interpolation-in-snapshots": "error";
|
|
392
|
+
"jest/no-jasmine-globals": "error";
|
|
393
|
+
"jest/no-large-snapshots": "error";
|
|
394
|
+
"jest/no-mocks-import": "error";
|
|
395
|
+
"jest/no-restricted-jest-methods": "error";
|
|
396
|
+
"jest/no-restricted-matchers": "error";
|
|
397
|
+
"jest/no-standalone-expect": "error";
|
|
398
|
+
"jest/no-test-prefixes": "error";
|
|
399
|
+
"jest/no-test-return-statement": "error";
|
|
400
|
+
"jest/no-untyped-mock-factory": "error";
|
|
401
|
+
"jest/padding-around-test-blocks": "error";
|
|
402
|
+
"jest/prefer-called-with": "error";
|
|
403
|
+
"jest/prefer-comparison-matcher": "error";
|
|
404
|
+
"jest/prefer-each": "error";
|
|
405
|
+
"jest/prefer-equality-matcher": "error";
|
|
406
|
+
"jest/prefer-expect-resolves": "error";
|
|
407
|
+
"jest/prefer-hooks-in-order": "error";
|
|
408
|
+
"jest/prefer-hooks-on-top": "error";
|
|
409
|
+
"jest/prefer-jest-mocked": "error";
|
|
410
|
+
"jest/prefer-lowercase-title": "error";
|
|
411
|
+
"jest/prefer-mock-promise-shorthand": "error";
|
|
412
|
+
"jest/prefer-spy-on": "error";
|
|
413
|
+
"jest/prefer-strict-equal": "error";
|
|
414
|
+
"jest/prefer-to-be": "error";
|
|
415
|
+
"jest/prefer-to-contain": "error";
|
|
416
|
+
"jest/prefer-to-have-been-called": "error";
|
|
417
|
+
"jest/prefer-to-have-been-called-times": "error";
|
|
418
|
+
"jest/prefer-to-have-length": "error";
|
|
419
|
+
"jest/prefer-todo": "error";
|
|
420
|
+
"jest/require-to-throw-message": "error";
|
|
421
|
+
"jest/require-top-level-describe": "error";
|
|
422
|
+
"jest/valid-describe-callback": "error";
|
|
423
|
+
"jest/valid-expect": "error";
|
|
424
|
+
"jest/valid-title": "error";
|
|
425
|
+
};
|
|
426
|
+
}[];
|
|
427
|
+
};
|
|
428
|
+
nestjs: {
|
|
429
|
+
rules: {};
|
|
430
|
+
};
|
|
431
|
+
next: {
|
|
432
|
+
plugins: "nextjs"[];
|
|
433
|
+
rules: {};
|
|
434
|
+
overrides: {
|
|
435
|
+
files: string[];
|
|
436
|
+
rules: {
|
|
437
|
+
"import/no-unassigned-import": "off";
|
|
438
|
+
};
|
|
439
|
+
}[];
|
|
440
|
+
};
|
|
441
|
+
qwik: {
|
|
442
|
+
rules: {};
|
|
443
|
+
};
|
|
444
|
+
react: {
|
|
445
|
+
plugins: ("react" | "jsx-a11y" | "react-perf")[];
|
|
446
|
+
rules: {
|
|
447
|
+
"react/only-export-components": "off";
|
|
448
|
+
"react/jsx-boolean-value": "off";
|
|
449
|
+
"react/react-in-jsx-scope": "off";
|
|
450
|
+
"react/jsx-filename-extension": "off";
|
|
451
|
+
"react/no-unknown-property": "off";
|
|
452
|
+
"react/jsx-props-no-spreading": "off";
|
|
453
|
+
"react/jsx-max-depth": "off";
|
|
454
|
+
"react/no-multi-comp": "off";
|
|
455
|
+
"react_perf/jsx-no-jsx-as-prop": "off";
|
|
456
|
+
"react_perf/jsx-no-new-object-as-prop": "off";
|
|
457
|
+
"react_perf/jsx-no-new-array-as-prop": "off";
|
|
458
|
+
"jsx-a11y/no-autofocus": "off";
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
remix: {
|
|
462
|
+
overrides: {
|
|
463
|
+
files: string[];
|
|
464
|
+
rules: {
|
|
465
|
+
"unicorn/filename-case": "off";
|
|
466
|
+
"unicorn/no-abusive-eslint-disable": "off";
|
|
467
|
+
};
|
|
468
|
+
}[];
|
|
469
|
+
rules: {};
|
|
470
|
+
};
|
|
471
|
+
solid: {
|
|
472
|
+
rules: {};
|
|
473
|
+
};
|
|
474
|
+
svelte: {
|
|
475
|
+
rules: {};
|
|
476
|
+
};
|
|
477
|
+
vitest: {
|
|
478
|
+
overrides: {
|
|
479
|
+
files: string[];
|
|
480
|
+
plugins: "vitest"[];
|
|
481
|
+
rules: {
|
|
482
|
+
"no-empty-function": "off";
|
|
483
|
+
"promise/prefer-await-to-then": "off";
|
|
484
|
+
"vitest/consistent-test-filename": "error";
|
|
485
|
+
"vitest/consistent-vitest-vi": "error";
|
|
486
|
+
"vitest/expect-expect": "error";
|
|
487
|
+
"vitest/no-alias-methods": "error";
|
|
488
|
+
"vitest/no-commented-out-tests": "error";
|
|
489
|
+
"vitest/no-conditional-expect": "error";
|
|
490
|
+
"vitest/no-conditional-tests": "error";
|
|
491
|
+
"vitest/no-disabled-tests": "error";
|
|
492
|
+
"vitest/no-done-callback": "error";
|
|
493
|
+
"vitest/no-duplicate-hooks": "error";
|
|
494
|
+
"vitest/no-focused-tests": "error";
|
|
495
|
+
"vitest/no-identical-title": "error";
|
|
496
|
+
"vitest/no-import-node-test": "error";
|
|
497
|
+
"vitest/no-interpolation-in-snapshots": "error";
|
|
498
|
+
"vitest/no-large-snapshots": "error";
|
|
499
|
+
"vitest/no-mocks-import": "error";
|
|
500
|
+
"vitest/no-restricted-matchers": "error";
|
|
501
|
+
"vitest/no-restricted-vi-methods": "error";
|
|
502
|
+
"vitest/no-standalone-expect": "error";
|
|
503
|
+
"vitest/no-test-prefixes": "error";
|
|
504
|
+
"vitest/no-test-return-statement": "error";
|
|
505
|
+
"vitest/prefer-called-with": "error";
|
|
506
|
+
"vitest/prefer-called-times": "off";
|
|
507
|
+
"vitest/prefer-comparison-matcher": "error";
|
|
508
|
+
"vitest/prefer-each": "error";
|
|
509
|
+
"vitest/prefer-equality-matcher": "error";
|
|
510
|
+
"vitest/prefer-expect-resolves": "error";
|
|
511
|
+
"vitest/prefer-hooks-in-order": "error";
|
|
512
|
+
"vitest/prefer-hooks-on-top": "error";
|
|
513
|
+
"vitest/prefer-lowercase-title": "error";
|
|
514
|
+
"vitest/prefer-mock-promise-shorthand": "error";
|
|
515
|
+
"vitest/prefer-spy-on": "error";
|
|
516
|
+
"vitest/prefer-strict-equal": "error";
|
|
517
|
+
"vitest/prefer-to-be": "error";
|
|
518
|
+
"vitest/prefer-to-be-falsy": "error";
|
|
519
|
+
"vitest/prefer-to-be-object": "error";
|
|
520
|
+
"vitest/prefer-to-be-truthy": "error";
|
|
521
|
+
"vitest/prefer-to-contain": "error";
|
|
522
|
+
"vitest/prefer-to-have-length": "error";
|
|
523
|
+
"vitest/prefer-todo": "error";
|
|
524
|
+
"vitest/require-local-test-context-for-concurrent-snapshots": "error";
|
|
525
|
+
"vitest/require-to-throw-message": "error";
|
|
526
|
+
"vitest/require-top-level-describe": "error";
|
|
527
|
+
"vitest/valid-describe-callback": "error";
|
|
528
|
+
"vitest/valid-expect": "error";
|
|
529
|
+
"vitest/valid-title": "error";
|
|
530
|
+
"vitest/warn-todo": "error";
|
|
531
|
+
};
|
|
532
|
+
}[];
|
|
533
|
+
};
|
|
534
|
+
vue: {
|
|
535
|
+
plugins: "vue"[];
|
|
536
|
+
rules: {};
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
|
|
540
|
+
export { angular, astro, configs, core, jest, nestjs, next, qwik, react, remix, solid, svelte, vitest, vue };
|
package/dist/oxlint.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=["**/*.{test,spec}.{ts,tsx,js,jsx}","**/__tests__/**/*.{ts,tsx,js,jsx}"],r={rules:{}},o={rules:{}},t={plugins:["eslint","typescript","unicorn","oxc","import","jsdoc","node","promise"],env:{browser:!0},categories:{correctness:"error",perf:"error",restriction:"error",suspicious:"error",pedantic:"error",style:"error"},rules:{"no-await-in-loop":"off","max-lines-per-function":"off","no-implicit-coercion":"off","no-magic-numbers":"off","no-console":"off","no-ternary":"off","no-undefined":"off","max-lines":"off","id-length":"off","func-style":["error","expression",{allowArrowFunctions:!0}],"arrow-body-style":["error","as-needed"],"max-depth":"off","max-params":"off","max-statements":"off","capitalized-comments":"off","new-cap":"off","no-continue":"off","init-declarations":"off","sort-imports":"off","no-duplicate-imports":["error",{allowSeparateTypeImports:!0}],"no-void":["error",{allowAsStatement:!0}],"import/no-relative-parent-imports":"off","import/no-default-export":"off","import/exports-last":"off","import/no-named-export":"off","import/max-dependencies":"off","import/no-unresolved":"off","import/extensions":"off","import/no-namespace":"off","import/no-anonymous-default-export":"off","import/prefer-default-export":"off","import/group-exports":"off","import/no-commonjs":"off","import/unambiguous":"off","import/consistent-type-specifier-style":["error","prefer-top-level"],"import/no-dynamic-require":"off","import/no-unassigned-import":"off","import/no-nodejs-modules":"off","jsdoc/require-param":"off","jsdoc/require-param-type":"off","jsdoc/require-returns":"off","jsdoc/require-returns-type":"off","unicorn/explicit-length-check":"off","unicorn/no-array-callback-reference":"off","unicorn/no-process-exit":"off","unicorn/prefer-global-this":"off","unicorn/no-null":"off","unicorn/prefer-top-level-await":"off","unicorn/prefer-string-raw":"off","typescript/explicit-module-boundary-types":"off","typescript/no-require-imports":"off","typescript/explicit-function-return-type":"off","typescript/no-var-requires":"off","typescript/require-await":"off","node/no-process-env":"off","oxc/no-map-spread":"off","oxc/no-async-await":"off","oxc/no-rest-spread-properties":"off","oxc/no-optional-chaining":"off","promise/catch-or-return":"off","promise/always-return":"off"},overrides:[{files:e,rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off"}}]},s={overrides:[{files:e,plugins:["jest"],rules:{"jest/require-hook":"off","jest/no-conditional-in-test":"off","jest/no-hooks":"off","promise/prefer-await-to-then":"off","no-empty-function":"off","jest/consistent-test-it":"error","jest/expect-expect":"error","jest/max-expects":"error","jest/max-nested-describe":"error","jest/no-alias-methods":"error","jest/no-commented-out-tests":"error","jest/no-conditional-expect":"error","jest/no-confusing-set-timeout":"error","jest/no-deprecated-functions":"error","jest/no-disabled-tests":"error","jest/no-done-callback":"error","jest/no-duplicate-hooks":"error","jest/no-export":"error","jest/no-focused-tests":"error","jest/no-identical-title":"error","jest/no-interpolation-in-snapshots":"error","jest/no-jasmine-globals":"error","jest/no-large-snapshots":"error","jest/no-mocks-import":"error","jest/no-restricted-jest-methods":"error","jest/no-restricted-matchers":"error","jest/no-standalone-expect":"error","jest/no-test-prefixes":"error","jest/no-test-return-statement":"error","jest/no-untyped-mock-factory":"error","jest/padding-around-test-blocks":"error","jest/prefer-called-with":"error","jest/prefer-comparison-matcher":"error","jest/prefer-each":"error","jest/prefer-equality-matcher":"error","jest/prefer-expect-resolves":"error","jest/prefer-hooks-in-order":"error","jest/prefer-hooks-on-top":"error","jest/prefer-jest-mocked":"error","jest/prefer-lowercase-title":"error","jest/prefer-mock-promise-shorthand":"error","jest/prefer-spy-on":"error","jest/prefer-strict-equal":"error","jest/prefer-to-be":"error","jest/prefer-to-contain":"error","jest/prefer-to-have-been-called":"error","jest/prefer-to-have-been-called-times":"error","jest/prefer-to-have-length":"error","jest/prefer-todo":"error","jest/require-to-throw-message":"error","jest/require-top-level-describe":"error","jest/valid-describe-callback":"error","jest/valid-expect":"error","jest/valid-title":"error"}}]},i={rules:{}},n={plugins:["nextjs"],rules:{},overrides:[{files:["**/next-env.d.ts"],rules:{"import/no-unassigned-import":"off"}}]},f={rules:{}},p={plugins:["react","react-perf","jsx-a11y"],rules:{"react/only-export-components":"off","react/jsx-boolean-value":"off","react/react-in-jsx-scope":"off","react/jsx-filename-extension":"off","react/no-unknown-property":"off","react/jsx-props-no-spreading":"off","react/jsx-max-depth":"off","react/no-multi-comp":"off","react_perf/jsx-no-jsx-as-prop":"off","react_perf/jsx-no-new-object-as-prop":"off","react_perf/jsx-no-new-array-as-prop":"off","jsx-a11y/no-autofocus":"off"}},a={overrides:[{files:["**/routeTree.gen.ts"],rules:{"unicorn/filename-case":"off","unicorn/no-abusive-eslint-disable":"off"}}],rules:{}},c={rules:{}},l={rules:{}},u={overrides:[{files:e,plugins:["vitest"],rules:{"no-empty-function":"off","promise/prefer-await-to-then":"off","vitest/consistent-test-filename":"error","vitest/consistent-vitest-vi":"error","vitest/expect-expect":"error","vitest/no-alias-methods":"error","vitest/no-commented-out-tests":"error","vitest/no-conditional-expect":"error","vitest/no-conditional-tests":"error","vitest/no-disabled-tests":"error","vitest/no-done-callback":"error","vitest/no-duplicate-hooks":"error","vitest/no-focused-tests":"error","vitest/no-identical-title":"error","vitest/no-import-node-test":"error","vitest/no-interpolation-in-snapshots":"error","vitest/no-large-snapshots":"error","vitest/no-mocks-import":"error","vitest/no-restricted-matchers":"error","vitest/no-restricted-vi-methods":"error","vitest/no-standalone-expect":"error","vitest/no-test-prefixes":"error","vitest/no-test-return-statement":"error","vitest/prefer-called-with":"error","vitest/prefer-called-times":"off","vitest/prefer-comparison-matcher":"error","vitest/prefer-each":"error","vitest/prefer-equality-matcher":"error","vitest/prefer-expect-resolves":"error","vitest/prefer-hooks-in-order":"error","vitest/prefer-hooks-on-top":"error","vitest/prefer-lowercase-title":"error","vitest/prefer-mock-promise-shorthand":"error","vitest/prefer-spy-on":"error","vitest/prefer-strict-equal":"error","vitest/prefer-to-be":"error","vitest/prefer-to-be-falsy":"error","vitest/prefer-to-be-object":"error","vitest/prefer-to-be-truthy":"error","vitest/prefer-to-contain":"error","vitest/prefer-to-have-length":"error","vitest/prefer-todo":"error","vitest/require-local-test-context-for-concurrent-snapshots":"error","vitest/require-to-throw-message":"error","vitest/require-top-level-describe":"error","vitest/valid-describe-callback":"error","vitest/valid-expect":"error","vitest/valid-title":"error","vitest/warn-todo":"error"}}]},m={plugins:["vue"],rules:{}},d={angular:r,astro:o,core:t,jest:s,nestjs:i,next:n,qwik:f,react:p,remix:a,solid:c,svelte:l,vitest:u,vue:m};export{r as angular,o as astro,d as configs,t as core,s as jest,i as nestjs,n as next,f as qwik,p as react,a as remix,c as solid,l as svelte,u as vitest,m as vue};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#09090b"/><g fill="#fff"><path clip-rule="evenodd" d="m20.0005 20.0005h41.9997v27.9994h-14.0003v14.0003h-13.9991v14.0003h-14.0003zm14.0003 14.0003v13.9991h13.9991v-13.9991z" fill-rule="evenodd"/><path d="m62.0002 47.9999h14.0003v28.0006h-14.0003z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#1a2b34"/><path d="m62.4 32.3999h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m36 70.7998h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#ea5e5e"/><path d="m60.0001 51.6001h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#bf85bf"/><path d="m48 51.6001h-9.6c-.6628 0-1.2.5373-1.2 1.2s.5372 1.2 1.2 1.2h9.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#ea5e5e"/><path d="m33.6 51.6001h-9.6c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h9.6c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m36 61.2002h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#bf85bf"/><path d="m36 42h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#bf85bf"/><path d="m60 27.6001h-24c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h24c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#f7ba3e"/><path d="m31.2 27.6001h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#ea5e5e"/><path d="m35.9999 66h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#f7ba3e"/><path d="m35.9999 37.2002h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m28.8 66h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m28.8 37.2002h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#f7ba3e"/><g fill="#4d616e"><path d="m57.6 66h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m50.4001 66h-9.6c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h9.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 66h-9.6c-.6628 0-1.2.5373-1.2 1.2s.5372 1.2 1.2 1.2h9.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/></g><path d="m62.4 46.7998h-19.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h19.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m38.4 46.7998h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#f7ba3e"/><path d="m26.4 46.7998h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#ea5e5e"/><path d="m55.1999 32.3999h-9.6c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h9.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#bf85bf"/><path d="m40.8 32.3999h-16.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h16.8c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#56b3b4"/><path d="m52.8 56.3999h-21.6c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h21.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#f7ba3e"/><path d="m26.4 56.3999h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" fill="#bf85bf"/><path d="m64.8001 37.2002h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#ea5e5e"/><path d="m64.8001 42h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" fill="#f7ba3e"/><path d="m52.8001 22.7998h-28.8001c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h28.8001c.6627 0 1.1999-.5373 1.1999-1.2s-.5372-1.2-1.1999-1.2z" fill="#56b3b4"/><g fill="#4d616e"><path d="m71.9999 22.7998h-14.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h14.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m62.3999 56.3999h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 56.3999h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72.0001 51.6001h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72.0001 27.6001h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 46.7998h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 32.3999h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m71.9999 37.2002h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m71.9999 42h-2.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h2.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 61.2002h-21.6c-.6628 0-1.2.5373-1.2 1.2s.5372 1.2 1.2 1.2h21.6c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m45.6001 61.2002h-4.8c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h4.8c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m72 70.7998h-12c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h12c.6628 0 1.2-.5373 1.2-1.2s-.5372-1.2-1.2-1.2z" opacity=".5"/><path d="m55.2001 70.7998h-14.4c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h14.4c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m48.0001 37.2002h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/><path d="m48.0001 42h-7.2c-.6627 0-1.2.5373-1.2 1.2s.5373 1.2 1.2 1.2h7.2c.6627 0 1.2-.5373 1.2-1.2s-.5373-1.2-1.2-1.2z" opacity=".5"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#000"/><path d="m75.5439 53.7358v-9.4647c0-5.3772-2.3401-9.6923-6.413-11.8403l-21.0364-11.0924-.1055.2014-.1055.2013c3.9196 2.0665 6.1683 6.2354 6.1683 11.4376v9.4646c0 .2853-.0072.585-.0216.8847-.0024.0575-.0072.115-.0119.175l-.0096.1414c-.012.1894-.024.3812-.0432.5706-.0072.0767-.0168.1558-.0264.2325l-.0215.1798c-.0192.1582-.036.3141-.06.4723-.012.0887-.0264.175-.0407.2637l-.0216.1367c-.0264.1606-.0528.3212-.0839.4818-.0456.2397-.0935.4771-.1462.7144l-.0168.0695c-.0528.2302-.1103.4579-.1726.6857l-.0552.2013c-.0647.2302-.1318.4603-.2038.6905l-.0647.1989c-.0815.2518-.1678.5035-.2589.7528-.024.0671-.0503.1319-.0767.199l-.0407.1079c-.0744.1917-.1487.3859-.2278.5777-.0456.1127-.0959.2253-.1439.338l-.0167.0408c-.0624.1462-.1271.2925-.1942.4363-.0575.1295-.1199.2565-.1798.3836-.0695.1438-.1367.2852-.2086.4267-.0671.1318-.1342.2613-.2037.3908-.0672.127-.1367.2565-.2062.3835-.0719.1295-.1463.2589-.2206.3884-.0719.1247-.1438.2517-.2205.374-.0767.1294-.1559.2565-.2373.3836-.0768.1222-.1511.2421-.2302.362-.0815.127-.1654.2493-.2613.3931-.0767.1127-.1534.2254-.2301.3356-.0816.1151-.1631.2278-.2589.3596-.0888.1223-.1775.2421-.2686.362-.0887.1175-.1774.2302-.2685.3452-.0935.1175-.1869.2374-.2805.3524-.0815.1007-.1654.199-.2493.2973l-.0167.0192c-.1103.1318-.223.2613-.3381.3907-.0911.1031-.1822.2038-.2733.3045-.115.1271-.2301.2493-.3476.374-.0887.0935-.1798.1846-.2709.2781-.1558.1582-.314.3117-.4746.4651l-.0696.0671c-.0575.0551-.1126.1079-.1702.163-.2014.187-.4051.3692-.6137.5488l-.0575.0504c-.0216.0193-.0456.0409-.0672.0602l-.0982.0815c-.1703.1439-.3428.2829-.5154.4219-.0528.0432-.108.0837-.1631.1269l-.0407.0311c-.1463.1128-.2925.2231-.4531.3405-.0671.0481-.1319.0985-.199.1462-.1702.1223-.3404.2398-.513.3549l-.1343.0936c-.2253.1484-.4531.2924-.6832.4314l-.1463.0863c-.1822.108-.3643.2133-.5489.3163-.0552.0315-.1103.0603-.1654.0887l-.0864.0458c-.1534.0814-.3044.1606-.4579.2398-.0839.0405-.1678.0814-.2517.1219l-.0287.0144c-.1487.072-.2949.1394-.4459.2064-.096.0432-.1918.0864-.2901.1269-.151.0648-.3045.1273-.4555.1872l-.0815.031c-.0671.0265-.1343.0527-.2014.0792-.1654.0625-.3332.1197-.501.1772l-.0911.0315c-.0504.0167-.1007.036-.1511.0526-.266.0864-.513.1606-.7527.2277l-1.4696.4026c-.2181.0602-.4363.1152-.652.1655-.0408.0095-.0792.0167-.1199.0239l-.163.0337c-.1223.0265-.2422.0527-.3644.0743-.0504.0098-.1031.017-.1534.0265l-.1966.0333c-.0959.0171-.1918.0337-.2877.0458-.0552.0072-.1103.0144-.1654.019l-.199.0242c-.0887.0118-.1774.0216-.2661.0311-.036.0023-.0719.0049-.1055.0094l-.0815.0072c-.139.0122-.2781.0243-.4171.0311-.0528.0027-.1031.0049-.1559.0049h-.0767c-.1222.0072-.2421.0121-.362.0121-.0575 0-.1174 0-.1749 0h-.072c-.1127 0-.2277-.0026-.3404-.0071-.0623 0-.1247-.005-.187-.0095h-.0623c-.1175-.0099-.2326-.0171-.35-.0265l-.1535-.0144c-.1462-.0144-.29-.0288-.4363-.0481l-.0935-.0118c-.1702-.0242-.3404-.0504-.5106-.0818l-.1271-.0238c-.1055-.0216-.2109-.0432-.3164-.0671-.1654-.036-.3284-.0769-.4915-.1223l-.0695-.019c-.0311-.0072-.0599-.017-.0911-.0242-.2157-.0621-.4267-.1292-.6257-.1989l-.1486-.0553c-.1462-.0526-.2949-.1102-.4387-.1701-.0552-.0238-.1103-.0481-.1654-.0719l-.036-.0167c-.1271-.0553-.2517-.1129-.3764-.1727l-.0575-.0288c-.0144-.0078-.0256-.0134-.0336-.0167l-1.5654-.82 1.1339 1.134h.0384l20.9861 11.0637c.0719.0383.1439.0743.2182.1125.024.0121.0479.0216.0719.0337l.0455.0216c.1295.0621.2589.1224.3932.1799l.0383.0167c.0576.0239.1127.0504.1703.0743.151.0625.302.12.4554.1772l.0504.0193c.0264.0095.0504.0194.0719.0288l.0312.0095c.211.0746.4315.1439.652.2064.0336.0095.0672.019.1007.0262l.0648.017c.1678.0455.3404.0886.513.1269l.0407.0095c.0216.0049.0408.0098.0624.0144.0503.0121.1031.0215.1558.0314l.2038.0383c.175.031.35.0598.5274.0863l.0983.0118c.1486.0193.2996.0359.4507.0503l.2948.0265c.0456.0023.0911.005.1391.0072l.1151.005c.0767.0045.151.0094.2301.0117.1079.0049.2182.0049.3261.0072h.091.1343.0551c.1175 0 .235-.0045.3764-.0117h.0767c.0528-.005.1079-.005.1631-.0099.1414-.0072.2852-.0189.4291-.031l.0767-.0072c.0383-.0023.0767-.005.1366-.0122.0839-.0094.1678-.0189.2517-.0287l.1894-.0239c.0624-.0072.1247-.0144.187-.0239.1007-.0144.199-.0314.2997-.0481l.1918-.031c.0551-.0095.1102-.0167.1654-.0288.1247-.0239.2493-.0504.374-.0769l.1534-.0311c.0455-.0094.0911-.0189.1366-.0288.223-.0503.446-.1079.6713-.17l1.4695-.4027c.2422-.0674.4963-.1416.772-.2325.0527-.0171.1031-.0338.1534-.0531l.0959-.0333c.1726-.0598.3452-.1201.5154-.1822.0743-.0265.1463-.0576.2182-.0864l.0695-.0287c.1558-.0625.3141-.1247.4675-.1917.0983-.0432.1966-.0864.2973-.1295.1534-.0697.3044-.1391.4554-.211l.0504-.0239c.0791-.0386.1582-.0769.2373-.1151.1582-.0792.3141-.1606.4699-.2447l.0863-.0455c.0576-.031.1151-.0598.1702-.0913.1894-.103.374-.2132.561-.3234l.0621-.036c.0288-.0167.0576-.0337.089-.0504.2228-.1341.4436-.2731.6618-.417l.1507-.1031 4.6196 2.1049c2.6995 1.2299 5.768-.7432 5.768-3.7112v-17.0976c0-.0016 0-.0032 0-.0048z" fill="#2adb5c"/><path d="m48.1065 21.3436c-.0719-.0384-.1439-.0744-.2158-.1103-.0383-.0192-.0791-.036-.1175-.0552-.1294-.0623-.2588-.1222-.3883-.1798-.0695-.0311-.1366-.0599-.2086-.091-.1486-.0624-.2996-.1199-.4531-.1751-.0407-.0143-.0815-.0335-.1246-.0479-.0096-.0024-.0192-.0072-.0288-.0096-.2134-.0743-.4291-.1438-.6473-.2062-.0551-.0167-.1103-.0287-.1654-.0431-.1678-.0456-.338-.0887-.5082-.1247-.036-.0072-.0696-.0191-.1031-.0263-.0743-.0168-.1486-.0288-.223-.0432-.0431-.0096-.0886-.0168-.1318-.0264-.1726-.0311-.3476-.0599-.525-.0839-.0336-.0048-.0672-.0072-.1007-.012-.1486-.0191-.2949-.0359-.4459-.0503-.0527-.0048-.1055-.0096-.1582-.0144-.0456-.0048-.0911-.0096-.1367-.012-.0743-.0048-.1486-.0072-.2229-.012-.0863-.0048-.1726-.0095-.2589-.0119-.1151-.0048-.2326-.0048-.3501-.0072-.0839 0-.1701-.0024-.2541 0-.1222 0-.2469.0072-.3716.0096-.079.0024-.1606.0047-.2397.0095-.1414.0072-.2853.0192-.4267.0312-.0647.0048-.1294.0096-.1942.0144-.0072 0-.0144 0-.0192 0-.1151.012-.2325.0288-.35.0431-.0935.012-.1845.0216-.2781.0336-.1318.0192-.2637.0432-.3955.0647-.0863.0144-.1726.0264-.2589.0432-.1486.0288-.2997.0599-.4507.0935-.0719.0144-.1415.0288-.2134.0455-.2229.0504-.4459.1079-.6688.1702l-1.4696.4028c-.2589.0719-.5154.1486-.7719.2325-.084.0264-.1655.0576-.2494.0863-.1726.06-.3452.1199-.5154.1822-.0959.036-.1918.0743-.2901.1127-.1558.0623-.3116.1247-.4674.1918-.0983.0431-.199.0863-.2973.1294-.1534.0696-.3044.1391-.4555.211-.0959.0456-.1918.0911-.2877.1391-.1582.0791-.314.1606-.4699.2445-.0862.0455-.1726.0911-.2565.1366-.1893.1031-.3739.2134-.5609.3237-.0504.0287-.1007.0575-.151.0887-.223.1342-.4436.2757-.6641.4195-.012.0072-.024.0168-.036.024-.0479.0311-.0935.0647-.139.0959-.1774.1198-.3524.2397-.525.3644-.072.0527-.1439.1054-.2158.1558-.151.1127-.3021.2253-.4507.3404-.0695.0528-.139.1079-.2062.1606-.1774.1415-.3548.2853-.5298.4315-.0335.0288-.0671.0552-.1007.0815-.0072.0049-.0143.012-.0215.0168-.036.0312-.0696.0648-.1055.0959-.211.1822-.4219.3692-.6257.561-.0839.0767-.163.1558-.2469.2349-.1631.1558-.3237.3141-.4843.4747-.0431.0431-.0863.0839-.1295.127-.0503.0504-.0958.1055-.1462.1559-.1199.1271-.2397.2541-.3572.3836-.0935.103-.187.2061-.2805.3092-.1174.1318-.2301.2661-.3452.398-.0575.0671-.1151.1318-.1702.1989-.0335.0408-.0671.0839-.1007.1247-.0983.1199-.1942.2397-.2877.362-.0911.1175-.1846.235-.2757.3524-.0934.1223-.1845.2469-.2757.3716-.0575.0791-.1174.1558-.175.2373-.0311.0432-.0575.0863-.0887.1295-.0839.1198-.1654.2421-.2493.362-.0863.127-.1726.2541-.2565.3835-.0791.1223-.1582.247-.2349.3716-.0528.0815-.1055.163-.1558.2469-.0288.048-.0552.0983-.0864.1463-.0767.127-.151.2541-.2229.3836-.0767.1318-.151.2637-.2254.3979-.0719.1295-.1414.2613-.2109.3908-.0432.0815-.0911.163-.1319.2469-.0263.0503-.0479.1007-.0743.151-.0743.1463-.1438.2925-.2157.4387-.0624.1295-.1247.2589-.1846.3908-.0672.1486-.1319.2973-.1966.4459-.0384.0887-.0815.1774-.1175.2685-.0168.0384-.0312.0791-.0479.1199-.0815.1941-.1559.3907-.2326.5897-.0407.1055-.0815.2086-.1198.314-.0935.2542-.1798.5107-.2637.7696-.0144.0431-.0312.0863-.0456.1319 0 .0048-.0024.0119-.0048.0167-.0072.0192-.012.0408-.0192.06-.0743.2349-.1414.4698-.2085.7048-.0192.0695-.0384.1366-.0552.2062-.0623.2325-.1222.4674-.175.7024-.0048.0239-.012.0479-.0168.0719-.0479.2062-.0911.4123-.1318.6209-.0072.0383-.012.0743-.0192.1127-.0336.1726-.0599.3452-.0887.5202-.0216.1271-.0431.2565-.0623.3836-.0264.1822-.0456.3643-.0671.5465-.0144.1199-.0312.2398-.0408.3596-.0192.2014-.0336.4052-.0455.609-.0072.1006-.0168.1989-.0216.2996-.0096.2949-.0168.5994-.0168.9014v9.4646c0 3.4498.9781 6.3959 2.6562 8.6159.1678.2231.3428.4364.5226.6451.2733.3117.5586.6064.8607.8821.7024.6447 1.4839 1.1962 2.3302 1.642l21.0364 11.0902c-3.8644-2.0378-6.3672-6.2642-6.3696-11.7852v-9.4647c0-.302.0072-.6065.0215-.9086.0049-.1007.0144-.1989.0216-.2996.0144-.2038.0264-.4052.0456-.6089.012-.1199.0287-.2398.0407-.3597.0216-.1821.0408-.3643.0672-.5465.0191-.1271.0407-.2565.0623-.3836.0288-.1726.0575-.3476.0887-.5202.0456-.2446.0959-.4891.151-.7312.0048-.024.012-.0479.0168-.0719.0551-.235.1127-.4699.175-.7024.0192-.0672.036-.1367.0551-.2038.0648-.2349.1343-.4723.2086-.7048.0072-.0192.012-.0408.0192-.0599.0144-.048.0336-.0983.0503-.1463.0839-.2565.1703-.5154.2637-.7695.0384-.1055.0792-.2086.1199-.3141.0743-.1966.151-.3931.2325-.5897.0528-.1295.1103-.2589.1655-.386.0647-.1486.1294-.2972.1965-.4459.06-.1318.1223-.2613.1846-.3908.0696-.1462.1415-.2924.2158-.4387.0671-.1342.1366-.2661.2062-.4003.0695-.1319.139-.2613.2109-.3908.0743-.1342.1487-.2661.2254-.398.0743-.127.1486-.2565.2229-.3835.0791-.1319.1606-.2613.2422-.3907.0767-.1247.1558-.247.2349-.3717.0839-.1294.1702-.2565.2565-.3835.0815-.1223.163-.2422.2493-.362.0863-.1223.175-.2446.2637-.3644.0911-.1247.1822-.2493.2757-.3716.0911-.1199.1822-.2349.2757-.3524.0959-.1199.1918-.2421.2877-.362.0887-.1079.1798-.2158.2709-.3236.1151-.1343.2278-.2685.3452-.4004.0911-.1031.1846-.2061.2781-.3092.1175-.1295.2373-.2566.3572-.3836.0911-.0959.1822-.1894.2757-.2829.1582-.1606.3212-.3189.4842-.4747.0816-.0791.1631-.1582.247-.2349.2061-.1918.4147-.3788.6257-.561.0431-.0359.0839-.0767.127-.1127.0336-.0287.0672-.0551.1007-.0815.175-.1462.35-.29.5298-.4315.0696-.0551.1391-.1078.2086-.1606.1486-.1151.2997-.2302.4507-.3404.0719-.0527.1438-.1055.2157-.1582.1727-.1247.3501-.247.5251-.3644.0455-.0312.091-.0648.139-.0935.2301-.1534.4627-.2997.6976-.4435.0504-.0288.1007-.0576.1487-.0863.187-.1103.3739-.2206.5633-.3237.084-.0479.1702-.0911.2566-.1366.1558-.0839.314-.1654.4722-.2446.0959-.0479.1894-.0934.2853-.139.151-.0719.3045-.1438.4579-.2133.0983-.0432.1966-.0864.2949-.1295.1558-.0671.3116-.1295.4698-.1918.0959-.0383.1918-.0767.2877-.1127.1702-.0647.3428-.1246.5154-.1822.0839-.0287.1655-.0575.2494-.0863.2565-.0839.513-.1606.7719-.2325l1.4696-.4028c.2254-.0623.4481-.1174.6689-.1678.0765-.0167.1508-.0311.2254-.0479.1462-.0312.2924-.0647.4363-.0911.0887-.0168.1773-.0288.2659-.0431.1296-.0216.2591-.0456.3883-.0648.0935-.0144.1871-.0216.2806-.0335.1224-.0144.2444-.0312.3667-.0432.0648-.0072.1273-.0096.192-.0144.1436-.012.2875-.024.4288-.0312.0792-.0048.1583-.0048.2375-.0095.1246-.0048.2492-.0097.3739-.012h.2541c.1174 0 .2352 0 .35.0072.0864.0023.1727.0072.2591.012.1197.0071.2398.0143.3572.0239.0526.0048.1053.0096.1583.0144.1485.0144.2973.0312.4458.0503.0337.0048.0671.0072.1008.012.1772.024.3522.0528.525.0839.0431.0072.0886.0168.1318.0264.1102.0216.2182.0456.3284.0695.1701.0384.3405.0815.5083.1247.0549.0144.1102.0288.1651.0431.2182.0624.4341.1295.6474.2038.053.0192.103.0384.156.0576.1508.0551.3019.1126.4508.175.0693.0287.139.0599.2083.0911.1318.0575.2614.1174.3886.1798.1125.0551.2227.1078.333.1654z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><radialGradient id="a" cx="0" cy="0" gradientTransform="matrix(0 65.9749 -65.1841 0 47.229 54.4158)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#665cee"/><stop offset="1" stop-color="#332e91"/></radialGradient><path d="m0 0h96v96h-96z" fill="url(#a)"/><g fill="#fff"><path d="m48.8006 23c.37 0 .7061.1972.8826.5129l2.9673 5.1943h12.8669c.37 0 .7063.1968.8829.5126l3.4832 5.8564c.2784.4888.2784 1.0932 0 1.5821l-3.4832 5.8564 6.5997 11.4581-1.1677-1.4903c.2783.4889.2784 1.0933 0 1.5822l-3.4832 5.8563c-.1765.3157-.5129.5126-.8829.5126h-5.8939l-6.5997 11.4549c-.1765.3156-.5126.5125-.8825.5125h-6.0908l13.573-25.3574 3.4494 6.0907h6.6001l-6.6001-11.4548 3.4836-5.8564h-26.5763l3.4832-6.0908-3.4832-6.2194-7.4826 12.3102h-7.7541l14.3538 24.1384h-6.5997l-3.945 6.2198h12.8672l3.8499 6.2197-.069-.0023c-.3425-.0228-.6484-.2143-.8139-.5102l-2.967-5.1947h-12.8672c-.37 0-.706-.1968-.8826-.5125l-3.4835-5.8564c-.2784-.4889-.2784-1.0933 0-1.5822l2.9673-5.1943-5.8938-10.6296c-.2784-.4888-.2784-1.0933 0-1.5821l3.4835-5.8564c.1765-.3157.5125-.5125.8826-.5126h6.8715l6.5997-11.4548c.1766-.3157.5129-.5129.8829-.5129z"/><path d="m57.0571 44.1545h-17.5589l8.5011 14.3541z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#fd5400"/><g fill="#fff"><path d="m47.0968 37.9446c-.0009.0523-.0223.1022-.0596.1388-.0373.0367-.0875.0572-.1398.0572-9.7609-.021-15.6048-.0163-17.5317.014-2.978.049-5.1476-.5634-5.312-3.7513-.0467-.9378-.0607-4.1047-.042-9.5007.007-2.9535.7313-4.9026 4.0312-4.9026 6.5601.0047 11.4895.007 14.7882.007 1.2668 0 2.1311.0105 3.034.7209.8071.6345 1.2166 1.5222 1.2282 2.663.0444 4.7008.0455 9.552.0035 14.5537z"/><path d="m47.1983 38.1021c0-.0251.01-.0491.0277-.0668s.0417-.0277.0668-.0277l20.5936.07c1.0747.0039 2.1038.4189 2.8611 1.1539s1.1808 1.7297 1.1772 2.7654l-.042 11.9817c-.0018.5129-.1084 1.0204-.3137 1.4936-.2053.4731-.5053.9026-.8829 1.264-.3776.3613-.8254.6474-1.3177.8419-.4924.1946-1.0198.2937-1.552.2918l-20.5936-.07c-.025 0-.0491-.0099-.0668-.0277-.0177-.0177-.0277-.0417-.0277-.0668z"/><path d="m47.1038 58.0344c.0444 5.004.0455 9.8588.0035 14.5642-.0116 1.1408-.4211 2.0285-1.2282 2.663-.9029.7139-1.7672.7244-3.034.7244-3.301.0023-8.2339.007-14.7987.014-3.3034.0035-4.0277-1.9491-4.0347-4.9026-.0234-5.4006-.0117-8.5699.035-9.5077.1644-3.1914 2.334-3.8038 5.3155-3.7583 1.9269.0303 7.7743.0327 17.5422.007.0523 0 .1025.0205.1398.0572.0373.0366.0587.0865.0596.1388z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#000"/><path d="m78.99 21.9-1.73 6.24c-.09.33-.44.52-.77.42l-28.11-8.71c-.19-.06-.41-.02-.56.11l-28.95 23.22c-.08.07-.18.11-.29.13l-17.25 2.66c-.31.05-.53.32-.52.63l.11 2.47c.01.31.26.56.57.58l20.08 1.23c.11 0 .22-.02.31-.06l14.64-7.4c.21-.11.46-.08.64.06l9.37 7.03c.16.12.25.3.24.49l-.09 11.65c0 .13.04.25.11.35l14.74 21.15c.11.16.3.26.5.26h5.03c.46 0 .76-.5.54-.9l-10.87-19.92c-.1-.18-.1-.4 0-.58l5.51-10.48c.06-.11.15-.2.26-.26l19.56-9.92c.2-.1.43-.09.62.04l5.6 3.73c.1.07.22.1.34.1h5.15c.48 0 .77-.52.52-.93l-14.2-23.52c-.28-.46-.97-.36-1.11.15z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#249edc"/><path clip-rule="evenodd" d="m73.9999 44.1881-6.6 3.816 6.6 3.804c.4074.2219.7662.523 1.0555.8857.2892.3626.503.7794.6287 1.2259s.1609.9137.1033 1.374c-.0575.4603-.2065.9044-.4382 1.3062-.2318.4018-.5415.7533-.9111 1.0336s-.7915.4839-1.241.5987c-.4494.1148-.9172.1385-1.376.0698-.4587-.0687-.8991-.2285-1.2952-.4699l-11.822-6.824c-.7608-.4361-1.326-1.1466-1.58-1.986-.1152-.3652-.168-.7472-.156-1.13.008-.274.048-.548.12-.822.244-.8803.8225-1.6304 1.612-2.09l11.818-6.816c.3954-.228.8318-.3758 1.2844-.4351.4525-.0593.9123-.0288 1.353.0897.4408.1185.8538.3227 1.2156.6009s.6653.625.893 1.0205c.2304.3942.3804.83.4416 1.2825.0611.4524.032.9125-.0854 1.3537-.1175.4411-.3212.8547-.5992 1.2168-.2781.3621-.6251.6676-1.021.895zm-6.25 18.492-11.812-6.812c-.6082-.3561-1.3117-.5154-2.014-.456-.8752.0642-1.6936.4577-2.2903 1.1012-.5968.6435-.9275 1.4892-.9257 2.3668v13.64c-.0111.4636.0706.9248.2404 1.3564.1697.4315.424.8248.748 1.1566.324.3319.711.5956 1.1384.7756s.8865.2728 1.3502.2728c.4638 0 .9229-.0928 1.3502-.2728.4274-.18.8145-.4437 1.1385-.7756.3239-.3318.5783-.7251.748-1.1566.1697-.4316.2514-.8928.2403-1.3564v-7.63l6.614 3.818c.3948.2294.831.3786 1.2836.4391.4526.0604.9126.0309 1.3538-.0869.4411-.1179.8547-.3216 1.2169-.5997.3622-.278.6659-.6248.8937-1.0205.4613-.8004.5862-1.7511.3474-2.6435-.2389-.8923-.822-1.6535-1.6214-2.1165zm-13.632-13.344-4.912 4.906c-.1681.1568-.3864.2489-.616.26h-1.442c-.2292-.0126-.447-.1045-.616-.26l-4.912-4.906c-.1528-.1685-.2426-.3848-.254-.612v-1.444c0-.2.112-.478.254-.62l4.908-4.904c.1693-.1545.3871-.245.616-.256h1.446c.2 0 .474.112.616.256l4.912 4.906c.14.14.254.418.254.62v1.444c-.0128.2269-.1024.4407-.254.61zm-3.926-1.36c-.0157-.2301-.1079-.4483-.262-.62l-1.42-1.418c-.1702-.1545-.3884-.2456-.618-.258h-.056c-.2279.0133-.4441.1052-.612.26l-1.42 1.416c-.1506.1727-.2387.3911-.25.62v.056c0 .198.108.472.248.612l1.422 1.42c.14.142.414.26.612.26h.056c.229-.0141.4463-.1058.616-.26l1.422-1.42c.154-.1684.2457-.3843.26-.612zm-22.206-14.664 11.818 6.82c.636.366 1.34.512 2.016.456.8755-.0661 1.6936-.4606 2.2903-1.1045.5968-.6439.9282-1.4896.9277-2.3675v-13.64c-.0217-.9077-.3976-1.7709-1.0473-2.4052s-1.5217-.9894-2.4297-.9894-1.7799.3551-2.4296.9894-1.0256 1.4975-1.0474 2.4052v7.632l-6.62-3.824c-.7993-.4615-1.7493-.5865-2.6408-.3476-.8916.2389-1.6517.8222-2.1132 1.6216s-.5865 1.7493-.3476 2.6408c.239.8916.8243 1.6517 1.6236 2.1132zm25.94 7.276c.7015.0574 1.4038-.1017 2.012-.456l11.812-6.82c.7992-.4622 1.3822-1.2227 1.6211-2.1144.2388-.8917.114-1.8418-.3471-2.6416-.461-.7983-1.2202-1.3807-2.1106-1.6192-.8904-.2386-1.8391-.1137-2.6374.3472l-6.616 3.826v-7.638c0-.9219-.3662-1.806-1.0181-2.4579-.6518-.6519-1.536-1.0181-2.4579-1.0181s-1.806.3662-2.4579 1.0181-1.0181 1.536-1.0181 2.4579v13.642c-.0019.878.3287 1.7242.9254 2.3683.5966.6442 1.415 1.0385 2.2906 1.1037zm-12.106 14.824c-.7029-.0598-1.4072.0995-2.016.456l-11.82 6.812c-.7983.464-1.3802 1.2255-1.6182 2.1177-.2381.8921-.1128 1.8423.3482 2.6423.4617.797 1.2208 1.3782 2.1107 1.616.8898.2377 1.8377.1126 2.6353-.348l6.62-3.818v7.632c0 .9222.3664 1.8065 1.0184 2.4586.6521.6521 1.5365 1.0184 2.4586 1.0184.9222 0 1.8066-.3663 2.4586-1.0184.6521-.6521 1.0184-1.5364 1.0184-2.4586v-13.642c.0024-.8774-.3279-1.7231-.9243-2.3666-.5964-.6436-1.4146-1.0371-2.2897-1.1014zm-3.204-6.39c.116-.37.164-.752.156-1.13-.0166-.5942-.1857-1.1741-.4911-1.6841s-.7369-.9328-1.2529-1.2279l-11.808-6.816c-.3954-.2286-.832-.3769-1.2848-.4365-.4528-.0595-.9129-.0292-1.3539.0894-.4411.1185-.8544.3229-1.2164.6014-.3619.2785-.6653.6257-.8929 1.0217-.2292.3949-.3781.8311-.4383 1.2837-.0601.4526-.0302.9126.088 1.3536s.3224.8544.6008 1.2162c.2784.3619.6256.6652 1.0215.8925l6.6 3.818-6.604 3.804c-.404.2238-.7594.5258-1.0454.8884-.286.3627-.497.7786-.6205 1.2237-.1235.445-.1572.9102-.099 1.3683.0581.4582.207.9002.4378 1.3002.2308.4001.539.7501.9066 1.0298.3676.2796.7872.4833 1.2343.599s.9128.1413 1.3699.0751.8964-.2227 1.2923-.4605l11.81-6.824c.8-.456 1.34-1.176 1.59-1.986z" fill="#fff" fill-rule="evenodd"/></svg>
|