@beforesemicolon/builder 1.8.23 → 1.8.25

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 (57) hide show
  1. package/README.md +26 -0
  2. package/dist/cjs/docs/markdown-layout/marked-extension.js +1 -1
  3. package/dist/cjs/docs/markdown-layout/types.js +1 -1
  4. package/dist/cjs/docs/run.js +2 -2
  5. package/dist/cjs/docs/templates/fading-citrus/README.md +56 -31
  6. package/dist/cjs/docs/templates/fading-citrus/assets/favicon/site.webmanifest +2 -2
  7. package/dist/cjs/docs/templates/fading-citrus/layouts/_footer.js +53 -60
  8. package/dist/cjs/docs/templates/fading-citrus/layouts/_header.js +65 -20
  9. package/dist/cjs/docs/templates/fading-citrus/layouts/_layout-utils.js +20 -0
  10. package/dist/cjs/docs/templates/fading-citrus/layouts/document.js +7 -4
  11. package/dist/cjs/docs/templates/fading-citrus/layouts/landing-hero.js +11 -3
  12. package/dist/cjs/docs/templates/fading-citrus/stylesheets/documentation.css +61 -0
  13. package/dist/cjs/docs/templates/fading-citrus/template.config.js +26 -4
  14. package/dist/cjs/docs/types.js +1 -1
  15. package/dist/esm/docs/markdown-layout/marked-extension.js +1 -1
  16. package/dist/esm/docs/run.js +4 -4
  17. package/dist/esm/docs/templates/fading-citrus/README.md +56 -31
  18. package/dist/esm/docs/templates/fading-citrus/assets/favicon/site.webmanifest +2 -2
  19. package/dist/esm/docs/templates/fading-citrus/layouts/_footer.js +53 -60
  20. package/dist/esm/docs/templates/fading-citrus/layouts/_header.js +65 -20
  21. package/dist/esm/docs/templates/fading-citrus/layouts/_layout-utils.js +20 -0
  22. package/dist/esm/docs/templates/fading-citrus/layouts/document.js +7 -4
  23. package/dist/esm/docs/templates/fading-citrus/layouts/landing-hero.js +11 -3
  24. package/dist/esm/docs/templates/fading-citrus/stylesheets/documentation.css +61 -0
  25. package/dist/esm/docs/templates/fading-citrus/template.config.js +26 -4
  26. package/dist/types/docs/markdown-layout/marked-extension.d.ts +2 -1
  27. package/dist/types/docs/markdown-layout/types.d.ts +1 -0
  28. package/dist/types/docs/types.d.ts +32 -0
  29. package/package.json +1 -1
  30. package/dist/cjs/docs/templates/fading-citrus/assets/client-server.svg +0 -4
  31. package/dist/cjs/docs/templates/fading-citrus/assets/fast.svg +0 -4
  32. package/dist/cjs/docs/templates/fading-citrus/assets/independent.svg +0 -23
  33. package/dist/cjs/docs/templates/fading-citrus/assets/markup-banner.jpg +0 -0
  34. package/dist/cjs/docs/templates/fading-citrus/assets/markup-essentials-training.jpg +0 -0
  35. package/dist/cjs/docs/templates/fading-citrus/assets/markup-favicon.jpg +0 -0
  36. package/dist/cjs/docs/templates/fading-citrus/assets/markup-favicon.png +0 -0
  37. package/dist/cjs/docs/templates/fading-citrus/assets/markup-logo-name.svg +0 -10
  38. package/dist/cjs/docs/templates/fading-citrus/assets/markup-logo-name@2x.png +0 -0
  39. package/dist/cjs/docs/templates/fading-citrus/assets/markup-logo.svg +0 -13
  40. package/dist/cjs/docs/templates/fading-citrus/assets/markup-logo@2x.png +0 -0
  41. package/dist/cjs/docs/templates/fading-citrus/assets/reactive.svg +0 -3
  42. package/dist/cjs/docs/templates/fading-citrus/assets/simple.svg +0 -8
  43. package/dist/cjs/docs/templates/fading-citrus/assets/small.svg +0 -8
  44. package/dist/esm/docs/templates/fading-citrus/assets/client-server.svg +0 -4
  45. package/dist/esm/docs/templates/fading-citrus/assets/fast.svg +0 -4
  46. package/dist/esm/docs/templates/fading-citrus/assets/independent.svg +0 -23
  47. package/dist/esm/docs/templates/fading-citrus/assets/markup-banner.jpg +0 -0
  48. package/dist/esm/docs/templates/fading-citrus/assets/markup-essentials-training.jpg +0 -0
  49. package/dist/esm/docs/templates/fading-citrus/assets/markup-favicon.jpg +0 -0
  50. package/dist/esm/docs/templates/fading-citrus/assets/markup-favicon.png +0 -0
  51. package/dist/esm/docs/templates/fading-citrus/assets/markup-logo-name.svg +0 -10
  52. package/dist/esm/docs/templates/fading-citrus/assets/markup-logo-name@2x.png +0 -0
  53. package/dist/esm/docs/templates/fading-citrus/assets/markup-logo.svg +0 -13
  54. package/dist/esm/docs/templates/fading-citrus/assets/markup-logo@2x.png +0 -0
  55. package/dist/esm/docs/templates/fading-citrus/assets/reactive.svg +0 -3
  56. package/dist/esm/docs/templates/fading-citrus/assets/simple.svg +0 -8
  57. package/dist/esm/docs/templates/fading-citrus/assets/small.svg +0 -8
@@ -1,14 +1,17 @@
1
1
  import { renderCodeBlock } from './_code-snippet.js'
2
2
  import {
3
3
  codeFromPart,
4
+ escapeAttribute,
4
5
  icon,
5
6
  option,
6
7
  partByName,
8
+ siteConfig,
7
9
  statContent,
8
10
  withFirstParagraphClass,
9
11
  } from './_layout-utils.js'
10
12
 
11
- export default ({ parts, options }) => {
13
+ export default ({ parts, options }, context = {}) => {
14
+ const site = siteConfig(context)
12
15
  const copy = partByName(parts, 'copy') || parts[0]
13
16
  const code = partByName(parts, 'code') || parts[1]
14
17
  const stats = parts.filter((part) => part.name === 'stat')
@@ -22,8 +25,13 @@ export default ({ parts, options }) => {
22
25
  const primaryLabel = option(options.primaryLabel, 'Get Started')
23
26
  const secondaryLabel = option(
24
27
  options.secondaryLabel,
25
- 'npm i @beforesemicolon/markup'
28
+ site.landingHeroSecondaryLabel ||
29
+ (site.packageName ? `npm i ${site.packageName}` : 'Install')
26
30
  )
31
+ const versionHref =
32
+ option(options.versionHref) ||
33
+ site.landingHeroVersionHref ||
34
+ site.repositoryUrl
27
35
 
28
36
  return `
29
37
  <section class="hero-section relative overflow-hidden">
@@ -33,7 +41,7 @@ export default ({ parts, options }) => {
33
41
  <div class="hero-content">
34
42
  ${
35
43
  version
36
- ? `<a href="https://github.com/beforesemicolon/markup" target="_blank" rel="noopener" class="version-badge">
44
+ ? `<a href="${escapeAttribute(versionHref || '#')}"${versionHref ? ' target="_blank" rel="noopener"' : ''} class="version-badge">
37
45
  ${icon('sparkles')}
38
46
  <span>${version}</span>
39
47
  ${icon('arrowRight')}
@@ -309,6 +309,67 @@ body {
309
309
  color: var(--foreground);
310
310
  }
311
311
 
312
+ #documentation article table {
313
+ display: block;
314
+ width: 100%;
315
+ max-width: 100%;
316
+ margin: 28px 0 36px;
317
+ overflow-x: auto;
318
+ border-collapse: separate;
319
+ border-spacing: 0;
320
+ border: 1px solid var(--surface-border);
321
+ border-radius: 8px;
322
+ background: var(--surface);
323
+ box-shadow: var(--shadow-card);
324
+ }
325
+
326
+ #documentation article thead {
327
+ background: color-mix(in oklch, var(--primary) 10%, var(--card));
328
+ }
329
+
330
+ #documentation article th,
331
+ #documentation article td {
332
+ min-width: 140px;
333
+ padding: 12px 16px;
334
+ border-right: 1px solid var(--surface-border);
335
+ border-bottom: 1px solid var(--surface-border);
336
+ text-align: left;
337
+ vertical-align: top;
338
+ font-size: 0.92rem;
339
+ line-height: 1.55;
340
+ }
341
+
342
+ #documentation article th {
343
+ color: var(--foreground);
344
+ font-weight: 700;
345
+ font-size: 0.78rem;
346
+ letter-spacing: 0.04rem;
347
+ text-transform: uppercase;
348
+ white-space: nowrap;
349
+ }
350
+
351
+ #documentation article td {
352
+ color: var(--foreground);
353
+ background: color-mix(in oklch, var(--background) 34%, transparent);
354
+ }
355
+
356
+ #documentation article tbody tr:nth-child(even) td {
357
+ background: color-mix(in oklch, var(--surface-muted) 72%, transparent);
358
+ }
359
+
360
+ #documentation article th:last-child,
361
+ #documentation article td:last-child {
362
+ border-right: 0;
363
+ }
364
+
365
+ #documentation article tbody tr:last-child td {
366
+ border-bottom: 0;
367
+ }
368
+
369
+ #documentation article td code:not(.hljs) {
370
+ white-space: nowrap;
371
+ }
372
+
312
373
  /* #edit-doc */
313
374
  #edit-doc {
314
375
  margin-top: 40px;
@@ -15,12 +15,34 @@ import landingCta from './layouts/landing-cta.js'
15
15
 
16
16
  export default {
17
17
  meta: {
18
- siteName: 'Before Semicolon',
19
- title: 'Before Semicolon Documentation',
20
- description:
21
- 'Documentation for Before Semicolon projects, libraries, and developer tools.',
18
+ siteName: 'Documentation',
19
+ title: 'Project Documentation',
20
+ description: 'Documentation, guides, and references for this project.',
22
21
  image: '/assets/site-image.jpg',
23
22
  },
23
+ site: {
24
+ name: 'Documentation',
25
+ navLinks: [
26
+ { label: 'Features', href: '/#features' },
27
+ { label: 'Code', href: '/#code' },
28
+ { label: 'Install', href: '/#install' },
29
+ ],
30
+ actionLinks: [
31
+ {
32
+ label: 'Documentation',
33
+ href: '/documentation',
34
+ className: 'btn-primary',
35
+ },
36
+ ],
37
+ footerDescription:
38
+ 'Documentation, guides, and references for this project.',
39
+ footerGroups: [
40
+ {
41
+ title: 'Documentation',
42
+ links: [{ label: 'Docs', href: '/documentation' }],
43
+ },
44
+ ],
45
+ },
24
46
  markdownLayouts: {
25
47
  'landing-hero': landingHero,
26
48
  'landing-ecosystem': landingEcosystem,
@@ -4,5 +4,6 @@ export interface MarkdownLayoutExtensionOptions {
4
4
  marked: Marked;
5
5
  handlers?: Record<string, MarkdownLayoutHandler>;
6
6
  renderMarkdown?: (markdown: string) => string;
7
+ templateConfig?: Record<string, unknown>;
7
8
  }
8
- export declare const createMarkdownLayoutExtension: ({ marked, handlers, renderMarkdown, }: MarkdownLayoutExtensionOptions) => MarkedExtension;
9
+ export declare const createMarkdownLayoutExtension: ({ marked, handlers, renderMarkdown, templateConfig, }: MarkdownLayoutExtensionOptions) => MarkedExtension;
@@ -19,6 +19,7 @@ export interface MarkdownLayoutToken extends MarkdownLayoutNode {
19
19
  }
20
20
  export interface MarkdownLayoutRenderContext {
21
21
  marked: Marked;
22
+ templateConfig?: Record<string, unknown>;
22
23
  renderMarkdown(markdown: string): string;
23
24
  renderDefault(node: MarkdownLayoutNode): string;
24
25
  renderParts(node: MarkdownLayoutNode): MarkdownLayoutRenderedPart[];
@@ -13,6 +13,37 @@ export interface DocsMetaConfig {
13
13
  description?: string;
14
14
  image?: string;
15
15
  }
16
+ export interface DocsSiteLink {
17
+ label: string;
18
+ href: string;
19
+ external?: boolean;
20
+ className?: string;
21
+ ariaLabel?: string;
22
+ }
23
+ export interface DocsSiteSocialLink {
24
+ name: string;
25
+ href: string;
26
+ icon: string;
27
+ }
28
+ export interface DocsSiteFooterGroup {
29
+ title: string;
30
+ links: DocsSiteLink[];
31
+ }
32
+ export interface DocsSiteConfig {
33
+ name?: string;
34
+ packageName?: string;
35
+ repositoryUrl?: string;
36
+ repositoryLabel?: string;
37
+ docsEditUrl?: string;
38
+ navLinks?: DocsSiteLink[];
39
+ actionLinks?: DocsSiteLink[];
40
+ footerDescription?: string;
41
+ footerGroups?: DocsSiteFooterGroup[];
42
+ socialLinks?: DocsSiteSocialLink[];
43
+ copyright?: string;
44
+ landingHeroVersionHref?: string;
45
+ landingHeroSecondaryLabel?: string;
46
+ }
16
47
  export type DocsScriptMatcher = string | string[] | RegExp | ((html: string) => boolean);
17
48
  export interface DocsScriptDefinition {
18
49
  match?: DocsScriptMatcher;
@@ -72,4 +103,5 @@ export interface DocsTemplateConfig {
72
103
  scripts?: DocsScriptRegistry;
73
104
  theme?: DocsTheme;
74
105
  meta?: DocsMetaConfig;
106
+ site?: DocsSiteConfig;
75
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beforesemicolon/builder",
3
- "version": "1.8.23",
3
+ "version": "1.8.25",
4
4
  "description": "Utilities to build npm packages and documentation website",
5
5
  "engines": {
6
6
  "node": ">=18.16.0"
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
3
- <path fill="#fff" d="M81.8,40.9c-3.6,0-6.5,2.9-6.5,6.5c0,0,0,0,0,0L63,48.9c-0.3-3.7-2-7-4.5-9.5L70,25.8c1,0.6,2.1,0.9,3.3,0.9 c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5c0,2,0.9,3.8,2.4,5L57.7,38.8c-2.6-2.2-6-3.6-9.7-3.6 c-3.2,0-6.3,1-8.7,2.8l-6.7-8c1-1.1,1.6-2.6,1.6-4.3c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5c1.6,0,3-0.6,4.1-1.5 l6.6,7.9c-3.3,2.8-5.5,6.9-5.5,11.6c0,0.8,0.1,1.6,0.2,2.3l-11,1.4C22,50.6,19.2,48,15.8,48c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5 c3.4,0,6.2-2.7,6.5-6.1l11.2-1.5c0.8,3.5,2.8,6.6,5.6,8.7l-8.9,12c-1.1-0.9-2.6-1.5-4.1-1.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5 s6.5-2.9,6.5-6.5c0-1.6-0.6-3.1-1.6-4.3l9-12.1c2.4,1.5,5.2,2.4,8.2,2.4c4.7,0,8.9-2.2,11.6-5.5l11.7,9c-1,1.1-1.6,2.7-1.6,4.3 c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5c-1.6,0-3,0.6-4.1,1.5l-11.8-9.1c1.7-2.4,2.8-5.4,2.8-8.7 c0-0.1,0-0.2,0-0.3l12.4-1.5c0.5,3.1,3.2,5.5,6.4,5.5c3.6,0,6.5-2.9,6.5-6.5S85.4,40.9,81.8,40.9z M67.8,20.2c0-3,2.5-5.5,5.5-5.5 s5.5,2.5,5.5,5.5s-2.5,5.5-5.5,5.5S67.8,23.2,67.8,20.2z M22.3,25.7c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5s-2.5,5.5-5.5,5.5 S22.3,28.7,22.3,25.7z M15.8,60c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S18.8,60,15.8,60z M26,84.7 c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S29,84.7,26,84.7z M81.8,73c0,3-2.5,5.5-5.5,5.5S70.8,76,70.8,73 s2.5-5.5,5.5-5.5S81.8,69.9,81.8,73z M48.1,64.2c-7.7,0-14-6.3-14-14s6.3-14,14-14s14,6.3,14,14S55.8,64.2,48.1,64.2z M81.8,52.9 c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S84.9,52.9,81.8,52.9z"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <path fill="#fff" d="M69.76,45.04C69.41,44.4,68.73,44,68,44H56V20c0-0.89-0.58-1.67-1.43-1.92c-0.85-0.25-1.77,0.09-2.25,0.83l-22,34 c-0.4,0.62-0.43,1.4-0.08,2.04C30.59,55.6,31.27,56,32,56h12v24c0,0.89,0.58,1.67,1.43,1.92C45.62,81.97,45.81,82,46,82 c0.67,0,1.3-0.33,1.68-0.91l22-34C70.08,46.47,70.11,45.69,69.76,45.04z M48,73.23V54c0-1.11-0.89-2-2-2H35.68L52,26.77V46 c0,1.11,0.89,2,2,2h10.32L48,73.23z"/>
4
- </svg>
@@ -1,23 +0,0 @@
1
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2
- viewBox="0 0 100 100" enable-background="new 0 0 100.001 100" xml:space="preserve">
3
- <g fill="#fff">
4
- <circle cx="11.468" cy="11.469" r="11.469"/>
5
- <circle cx="11.468" cy="37.156" r="11.468"/>
6
- <circle cx="11.468" cy="62.843" r="11.469"/>
7
- <circle cx="11.469" cy="88.531" r="11.469"/>
8
- <circle cx="37.156" cy="11.468" r="11.469"/>
9
- <circle cx="37.157" cy="37.156" r="11.468"/>
10
- <circle cx="37.157" cy="62.843" r="11.469"/>
11
- <circle cx="37.156" cy="88.531" r="11.469"/>
12
- <circle cx="62.845" cy="11.468" r="11.47"/>
13
- <circle cx="62.846" cy="37.156" r="11.468"/>
14
- <path d="M62.846,51.398c-6.312,0-11.443,5.137-11.443,11.444c0,6.312,5.133,11.443,11.443,11.443
15
- c6.309,0,11.441-5.134,11.441-11.443C74.287,56.535,69.154,51.398,62.846,51.398z M62.846,71.286c-4.656,0-8.443-3.788-8.443-8.443
16
- c-0.002-4.655,3.787-8.444,8.443-8.444c4.654,0,8.441,3.789,8.441,8.444S67.5,71.286,62.846,71.286z"/>
17
- <circle cx="62.845" cy="88.531" r="11.47"/>
18
- <circle cx="88.532" cy="11.469" r="11.469"/>
19
- <circle cx="88.532" cy="37.156" r="11.468"/>
20
- <circle cx="88.532" cy="62.843" r="11.469"/>
21
- <circle cx="88.532" cy="88.532" r="11.468"/>
22
- </g>
23
- </svg>
@@ -1,10 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 207.25 61.99">
2
- <g fill="#000">
3
- <path d="m47.74.19c-.93-.39-2.01-.17-2.72.54l-20.38,20.38L4.27.73C3.55.02,2.48-.2,1.54.19.61.58,0,1.49,0,2.5v46.81h5V8.54l16.11,16.11-9.19,9.19,3.54,3.54,9.19-9.19,9.19,9.19,3.54-3.54-9.19-9.19,16.11-16.11v40.77h5V2.5c0-1.01-.61-1.92-1.54-2.31Z"/>
4
- <path d="m84.81,19.78v29.53h-4.7v-5.34c-.86,1.84-2.16,3.26-3.9,4.26-1.74,1-3.77,1.5-6.08,1.5-2.62,0-4.92-.63-6.9-1.88-1.98-1.25-3.5-3.02-4.58-5.31-1.08-2.29-1.61-4.96-1.61-8.01s.55-5.74,1.64-8.07c1.1-2.33,2.63-4.14,4.61-5.43,1.98-1.29,4.26-1.94,6.84-1.94,2.31,0,4.32.51,6.05,1.53,1.72,1.02,3.03,2.45,3.93,4.29v-5.11h4.7Zm-7.04,23.04c1.56-1.98,2.35-4.78,2.35-8.42s-.78-6.44-2.35-8.39c-1.57-1.96-3.8-2.94-6.69-2.94s-5.16,1.01-6.78,3.02c-1.62,2.02-2.44,4.82-2.44,8.42s.8,6.38,2.41,8.33c1.6,1.96,3.87,2.94,6.81,2.94s5.13-.99,6.69-2.96Z"/>
5
- <path d="m110.46,19.43l-.12,4.34c-.9-.31-1.94-.47-3.11-.47-2.86,0-4.98.89-6.37,2.67-1.39,1.78-2.08,3.94-2.08,6.49v16.85h-4.75v-21.25c0-3.05-.16-5.81-.47-8.28h4.52l.47,5.46c.74-2,1.94-3.52,3.58-4.58,1.64-1.06,3.52-1.58,5.63-1.58.98,0,1.88.12,2.7.35Z"/>
6
- <path d="m135.17,49.31l-15.14-14.21v14.21h-4.75V6.11h4.75v27.24l13.91-13.5h6.05l-14.79,14.15,16.2,15.32h-6.22Z"/>
7
- <path d="m170.22,19.78v29.53h-4.64v-5.11c-.94,1.8-2.25,3.17-3.93,4.11-1.68.94-3.58,1.41-5.69,1.41-3.48,0-6.12-.98-7.92-2.94-1.8-1.96-2.7-4.85-2.7-8.69v-18.31h4.75v18.2c0,2.66.55,4.62,1.64,5.87,1.09,1.25,2.76,1.88,4.99,1.88,2.62,0,4.73-.85,6.34-2.55,1.6-1.7,2.41-3.94,2.41-6.72v-16.67h4.75Z"/>
8
- <path d="m200.97,21.02c2,1.29,3.54,3.1,4.64,5.43,1.1,2.33,1.64,5.02,1.64,8.07s-.55,5.72-1.64,8.01c-1.1,2.29-2.63,4.06-4.61,5.31-1.98,1.25-4.28,1.88-6.9,1.88-2.31,0-4.32-.51-6.05-1.53-1.72-1.02-3.03-2.47-3.93-4.34v18.14h-4.75V28.06c0-3.05-.16-5.81-.47-8.28h4.52l.47,5.69c.82-2.03,2.12-3.61,3.9-4.73,1.78-1.12,3.88-1.67,6.31-1.67,2.58,0,4.87.65,6.87,1.94Zm-1.03,21.84c1.58-1.96,2.38-4.73,2.38-8.33s-.8-6.41-2.41-8.42c-1.61-2.02-3.84-3.02-6.69-3.02s-5.19.98-6.75,2.94c-1.57,1.96-2.35,4.75-2.35,8.39s.78,6.45,2.35,8.42c1.57,1.98,3.82,2.96,6.75,2.96s5.14-.98,6.72-2.94Z"/>
9
- </g>
10
- </svg>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.29 49.31">
3
- <defs>
4
- <style>
5
- .cls-1 {
6
- stroke-width: 0px;
7
- }
8
- </style>
9
- </defs>
10
- <g id="Layer_1-2" data-name="Layer 1">
11
- <path class="cls-1" d="m47.74.19c-.93-.39-2.01-.17-2.72.54l-20.38,20.38L4.27.73C3.55.02,2.48-.2,1.54.19.61.58,0,1.49,0,2.5v46.81h5V8.54l16.11,16.11-9.19,9.19,3.54,3.54,9.19-9.19,9.19,9.19,3.54-3.54-9.19-9.19,16.11-16.11v40.77h5V2.5c0-1.01-.61-1.92-1.54-2.31Z"/>
12
- </g>
13
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95 95">
2
- <path fill-rule="evenodd" fill="#fff" d="M64.748,63.125a84.879,84.879,0,0,1-1.664,8.389c1.86.464,3.652.826,5.359,1.081,8.02,1.2,14.055.078,16.2-3.646s.106-9.513-4.94-15.857c-1.075-1.351-2.285-2.723-3.617-4.1a84.6,84.6,0,0,1-6.433,5.636,5.891,5.891,0,0,1-4.909,8.5Zm3.646-10.188a5.872,5.872,0,0,0-2.6-1.409q.027-.751.044-1.538.03-1.415.03-2.49c0-2.58-.087-5.109-.253-7.57A86.452,86.452,0,0,1,74.6,47.5c-1.869,1.818-3.947,3.64-6.209,5.438Zm-4.7-1.538a5.894,5.894,0,0,0-4.72,8.175q-.616.386-1.235.761-1.029.624-2.1,1.241l-.01.006c-2.724,1.573-5.445,2.992-8.129,4.253-2.684-1.261-5.406-2.681-8.132-4.255s-5.31-3.217-7.743-4.909c-.249-2.955-.38-6.023-.38-9.171q0-1.412.023-2.449.015-.714.041-1.45a5.891,5.891,0,0,0,4.719-8.175c.413-.257.824-.511,1.237-.761q1.028-.624,2.1-1.241l.01-.005c2.724-1.573,5.446-2.993,8.129-4.254,2.684,1.262,5.406,2.681,8.132,4.255s5.31,3.218,7.743,4.91c.249,2.954.38,6.023.38,9.17q0,1.413-.022,2.449-.016.714-.042,1.45Zm-3.557,9.925q-.644.4-1.31.807-1.065.646-2.146,1.27h0c-2.234,1.29-4.468,2.479-6.682,3.565a86.489,86.489,0,0,0,11.057,4.006c.64-2.528,1.179-5.238,1.6-8.094a5.889,5.889,0,0,1-2.438-1.468l-.085-.087Zm6.921-6.749a3.779,3.779,0,1,1-2.672-1.107,3.764,3.764,0,0,1,2.672,1.107Zm-32.189-20.9q.645-.4,1.311-.807,1.064-.646,2.145-1.27h0c2.234-1.29,4.468-2.479,6.682-3.565a86.326,86.326,0,0,0-11.057-4.005c-.64,2.527-1.179,5.237-1.6,8.093a5.9,5.9,0,0,1,2.438,1.468l.085.087Zm-4.614-1.8a84.879,84.879,0,0,1,1.664-8.389c-1.86-.464-3.652-.826-5.359-1.081-8.019-1.2-14.054-.078-16.2,3.646s-.106,9.513,4.94,15.857c1.075,1.352,2.285,2.723,3.617,4.1a84.373,84.373,0,0,1,6.433-5.635,5.891,5.891,0,0,1,4.909-8.5ZM26.606,42.064a5.881,5.881,0,0,0,2.6,1.408q-.027.753-.044,1.538c-.02.943-.031,1.775-.031,2.49,0,2.58.087,5.109.254,7.57A86.572,86.572,0,0,1,20.4,47.5c1.87-1.818,3.948-3.64,6.21-5.437ZM33.29,35.08A3.779,3.779,0,1,0,34.4,37.753,3.771,3.771,0,0,0,33.29,35.08ZM62.537,73.546a49.456,49.456,0,0,1-4.121,10.345C55.4,89.313,51.641,92.5,47.5,92.5c-5.257,0-9.924-5.176-13.22-13.543-.661-1.677-1.269-3.487-1.818-5.411-1.943.488-3.816.867-5.6,1.133C17.973,76.008,11.16,74.553,8.532,70c-2.071-3.587-1.193-8.438,1.995-13.758a49.4,49.4,0,0,1,6.9-8.742c-1.393-1.439-2.657-2.871-3.78-4.282C8.05,36.184,5.9,29.557,8.532,25s9.442-6.012,18.329-4.683c1.785.266,3.659.645,5.6,1.133A49.424,49.424,0,0,1,36.584,11.11C39.6,5.687,43.36,2.5,47.5,2.5c5.257,0,9.925,5.175,13.22,13.543.661,1.677,1.269,3.487,1.818,5.411,1.943-.488,3.816-.867,5.6-1.133,8.888-1.329,15.7.126,18.329,4.679,2.071,3.588,1.193,8.438-2,13.758a49.4,49.4,0,0,1-6.9,8.742c1.393,1.439,2.657,2.871,3.78,4.282C86.95,58.816,89.1,65.443,86.468,70s-9.442,6.012-18.33,4.683c-1.784-.266-3.658-.645-5.6-1.133ZM18.911,48.989a47.132,47.132,0,0,0-6.58,8.333C9.544,61.973,8.7,66.083,10.353,68.945c2.151,3.726,8.186,4.848,16.2,3.65,1.708-.255,3.5-.616,5.359-1.081a90.427,90.427,0,0,1-2.3-13.692,90.533,90.533,0,0,1-10.7-8.833ZM31.892,59.4a86.578,86.578,0,0,0,2.057,11.576,86.411,86.411,0,0,0,11.056-4c-2.215-1.086-4.449-2.275-6.683-3.566s-4.382-2.63-6.43-4.005ZM47.5,68.151A90.542,90.542,0,0,0,60.506,73a47.22,47.22,0,0,1-3.928,9.865c-2.633,4.737-5.77,7.522-9.078,7.522-4.3,0-8.29-4.663-11.259-12.2C35.607,76.583,35.024,74.849,34.5,73a90.522,90.522,0,0,0,13-4.853ZM34.494,22a47.22,47.22,0,0,1,3.928-9.865C41.055,7.394,44.192,4.61,47.5,4.61c4.3,0,8.29,4.662,11.259,12.2.634,1.608,1.217,3.342,1.745,5.187a90.522,90.522,0,0,0-13,4.853A90.542,90.542,0,0,0,34.494,22ZM50,28.033c2.214,1.086,4.449,2.276,6.683,3.566s4.382,2.63,6.43,4a86.549,86.549,0,0,0-2.057-11.576A86.411,86.411,0,0,0,50,28.033Zm15.393,9.145a90.533,90.533,0,0,1,10.7,8.833,47.178,47.178,0,0,0,6.58-8.333c2.787-4.651,3.631-8.761,1.978-11.623-2.151-3.726-8.186-4.848-16.2-3.65-1.707.255-3.5.617-5.358,1.081A90.427,90.427,0,0,1,65.388,37.178Z"/>
3
- </svg>
@@ -1,8 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <g fill="#fff">
4
- <path d="M69.2,50.5H30.6c-0.5,0-1-0.3-1.3-0.8c-0.3-0.5-0.3-1,0-1.5l19.3-33.4c0.3-0.5,0.8-0.7,1.3-0.7s1,0.3,1.3,0.7l19.3,33.4 c0.3,0.5,0.3,1,0,1.5C70.2,50.2,69.7,50.5,69.2,50.5z M33.2,47.5h33.4L49.9,18.6L33.2,47.5z"/>
5
- <path d="M81.9,85.9H51.8c-0.8,0-1.5-0.7-1.5-1.5V54.3c0-0.8,0.7-1.5,1.5-1.5h30.1c0.8,0,1.5,0.7,1.5,1.5v30.1 C83.4,85.2,82.7,85.9,81.9,85.9z M53.3,82.9h27.1V55.8H53.3V82.9z"/>
6
- <path d="M30.6,85.8c-9.1,0-16.5-7.4-16.5-16.5s7.4-16.5,16.5-16.5s16.5,7.4,16.5,16.5S39.7,85.8,30.6,85.8z M30.6,55.8 c-7.4,0-13.5,6.1-13.5,13.5s6.1,13.5,13.5,13.5s13.5-6.1,13.5-13.5S38,55.8,30.6,55.8z"/>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <g fill="#fff">
4
- <polygon points="43.4,91.7 43.4,56.6 8.5,56.6 8.5,65.4 28.4,65.4 5.2,88.6 11.4,94.8 34.6,71.6 34.6,91.7 "/>
5
- <polygon
6
- points="88.6,5.2 65.4,28.4 65.4,8.4 56.6,8.4 56.6,43.4 91.5,43.4 91.5,34.6 71.6,34.6 94.8,11.4 "/>
7
- </g>
8
- </svg>
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
3
- <path fill="#fff" d="M81.8,40.9c-3.6,0-6.5,2.9-6.5,6.5c0,0,0,0,0,0L63,48.9c-0.3-3.7-2-7-4.5-9.5L70,25.8c1,0.6,2.1,0.9,3.3,0.9 c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5c0,2,0.9,3.8,2.4,5L57.7,38.8c-2.6-2.2-6-3.6-9.7-3.6 c-3.2,0-6.3,1-8.7,2.8l-6.7-8c1-1.1,1.6-2.6,1.6-4.3c0-3.6-2.9-6.5-6.5-6.5s-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5c1.6,0,3-0.6,4.1-1.5 l6.6,7.9c-3.3,2.8-5.5,6.9-5.5,11.6c0,0.8,0.1,1.6,0.2,2.3l-11,1.4C22,50.6,19.2,48,15.8,48c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5 c3.4,0,6.2-2.7,6.5-6.1l11.2-1.5c0.8,3.5,2.8,6.6,5.6,8.7l-8.9,12c-1.1-0.9-2.6-1.5-4.1-1.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5 s6.5-2.9,6.5-6.5c0-1.6-0.6-3.1-1.6-4.3l9-12.1c2.4,1.5,5.2,2.4,8.2,2.4c4.7,0,8.9-2.2,11.6-5.5l11.7,9c-1,1.1-1.6,2.7-1.6,4.3 c0,3.6,2.9,6.5,6.5,6.5s6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5c-1.6,0-3,0.6-4.1,1.5l-11.8-9.1c1.7-2.4,2.8-5.4,2.8-8.7 c0-0.1,0-0.2,0-0.3l12.4-1.5c0.5,3.1,3.2,5.5,6.4,5.5c3.6,0,6.5-2.9,6.5-6.5S85.4,40.9,81.8,40.9z M67.8,20.2c0-3,2.5-5.5,5.5-5.5 s5.5,2.5,5.5,5.5s-2.5,5.5-5.5,5.5S67.8,23.2,67.8,20.2z M22.3,25.7c0-3,2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5s-2.5,5.5-5.5,5.5 S22.3,28.7,22.3,25.7z M15.8,60c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S18.8,60,15.8,60z M26,84.7 c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S29,84.7,26,84.7z M81.8,73c0,3-2.5,5.5-5.5,5.5S70.8,76,70.8,73 s2.5-5.5,5.5-5.5S81.8,69.9,81.8,73z M48.1,64.2c-7.7,0-14-6.3-14-14s6.3-14,14-14s14,6.3,14,14S55.8,64.2,48.1,64.2z M81.8,52.9 c-3,0-5.5-2.5-5.5-5.5s2.5-5.5,5.5-5.5s5.5,2.5,5.5,5.5S84.9,52.9,81.8,52.9z"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <path fill="#fff" d="M69.76,45.04C69.41,44.4,68.73,44,68,44H56V20c0-0.89-0.58-1.67-1.43-1.92c-0.85-0.25-1.77,0.09-2.25,0.83l-22,34 c-0.4,0.62-0.43,1.4-0.08,2.04C30.59,55.6,31.27,56,32,56h12v24c0,0.89,0.58,1.67,1.43,1.92C45.62,81.97,45.81,82,46,82 c0.67,0,1.3-0.33,1.68-0.91l22-34C70.08,46.47,70.11,45.69,69.76,45.04z M48,73.23V54c0-1.11-0.89-2-2-2H35.68L52,26.77V46 c0,1.11,0.89,2,2,2h10.32L48,73.23z"/>
4
- </svg>
@@ -1,23 +0,0 @@
1
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2
- viewBox="0 0 100 100" enable-background="new 0 0 100.001 100" xml:space="preserve">
3
- <g fill="#fff">
4
- <circle cx="11.468" cy="11.469" r="11.469"/>
5
- <circle cx="11.468" cy="37.156" r="11.468"/>
6
- <circle cx="11.468" cy="62.843" r="11.469"/>
7
- <circle cx="11.469" cy="88.531" r="11.469"/>
8
- <circle cx="37.156" cy="11.468" r="11.469"/>
9
- <circle cx="37.157" cy="37.156" r="11.468"/>
10
- <circle cx="37.157" cy="62.843" r="11.469"/>
11
- <circle cx="37.156" cy="88.531" r="11.469"/>
12
- <circle cx="62.845" cy="11.468" r="11.47"/>
13
- <circle cx="62.846" cy="37.156" r="11.468"/>
14
- <path d="M62.846,51.398c-6.312,0-11.443,5.137-11.443,11.444c0,6.312,5.133,11.443,11.443,11.443
15
- c6.309,0,11.441-5.134,11.441-11.443C74.287,56.535,69.154,51.398,62.846,51.398z M62.846,71.286c-4.656,0-8.443-3.788-8.443-8.443
16
- c-0.002-4.655,3.787-8.444,8.443-8.444c4.654,0,8.441,3.789,8.441,8.444S67.5,71.286,62.846,71.286z"/>
17
- <circle cx="62.845" cy="88.531" r="11.47"/>
18
- <circle cx="88.532" cy="11.469" r="11.469"/>
19
- <circle cx="88.532" cy="37.156" r="11.468"/>
20
- <circle cx="88.532" cy="62.843" r="11.469"/>
21
- <circle cx="88.532" cy="88.532" r="11.468"/>
22
- </g>
23
- </svg>
@@ -1,10 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 207.25 61.99">
2
- <g fill="#000">
3
- <path d="m47.74.19c-.93-.39-2.01-.17-2.72.54l-20.38,20.38L4.27.73C3.55.02,2.48-.2,1.54.19.61.58,0,1.49,0,2.5v46.81h5V8.54l16.11,16.11-9.19,9.19,3.54,3.54,9.19-9.19,9.19,9.19,3.54-3.54-9.19-9.19,16.11-16.11v40.77h5V2.5c0-1.01-.61-1.92-1.54-2.31Z"/>
4
- <path d="m84.81,19.78v29.53h-4.7v-5.34c-.86,1.84-2.16,3.26-3.9,4.26-1.74,1-3.77,1.5-6.08,1.5-2.62,0-4.92-.63-6.9-1.88-1.98-1.25-3.5-3.02-4.58-5.31-1.08-2.29-1.61-4.96-1.61-8.01s.55-5.74,1.64-8.07c1.1-2.33,2.63-4.14,4.61-5.43,1.98-1.29,4.26-1.94,6.84-1.94,2.31,0,4.32.51,6.05,1.53,1.72,1.02,3.03,2.45,3.93,4.29v-5.11h4.7Zm-7.04,23.04c1.56-1.98,2.35-4.78,2.35-8.42s-.78-6.44-2.35-8.39c-1.57-1.96-3.8-2.94-6.69-2.94s-5.16,1.01-6.78,3.02c-1.62,2.02-2.44,4.82-2.44,8.42s.8,6.38,2.41,8.33c1.6,1.96,3.87,2.94,6.81,2.94s5.13-.99,6.69-2.96Z"/>
5
- <path d="m110.46,19.43l-.12,4.34c-.9-.31-1.94-.47-3.11-.47-2.86,0-4.98.89-6.37,2.67-1.39,1.78-2.08,3.94-2.08,6.49v16.85h-4.75v-21.25c0-3.05-.16-5.81-.47-8.28h4.52l.47,5.46c.74-2,1.94-3.52,3.58-4.58,1.64-1.06,3.52-1.58,5.63-1.58.98,0,1.88.12,2.7.35Z"/>
6
- <path d="m135.17,49.31l-15.14-14.21v14.21h-4.75V6.11h4.75v27.24l13.91-13.5h6.05l-14.79,14.15,16.2,15.32h-6.22Z"/>
7
- <path d="m170.22,19.78v29.53h-4.64v-5.11c-.94,1.8-2.25,3.17-3.93,4.11-1.68.94-3.58,1.41-5.69,1.41-3.48,0-6.12-.98-7.92-2.94-1.8-1.96-2.7-4.85-2.7-8.69v-18.31h4.75v18.2c0,2.66.55,4.62,1.64,5.87,1.09,1.25,2.76,1.88,4.99,1.88,2.62,0,4.73-.85,6.34-2.55,1.6-1.7,2.41-3.94,2.41-6.72v-16.67h4.75Z"/>
8
- <path d="m200.97,21.02c2,1.29,3.54,3.1,4.64,5.43,1.1,2.33,1.64,5.02,1.64,8.07s-.55,5.72-1.64,8.01c-1.1,2.29-2.63,4.06-4.61,5.31-1.98,1.25-4.28,1.88-6.9,1.88-2.31,0-4.32-.51-6.05-1.53-1.72-1.02-3.03-2.47-3.93-4.34v18.14h-4.75V28.06c0-3.05-.16-5.81-.47-8.28h4.52l.47,5.69c.82-2.03,2.12-3.61,3.9-4.73,1.78-1.12,3.88-1.67,6.31-1.67,2.58,0,4.87.65,6.87,1.94Zm-1.03,21.84c1.58-1.96,2.38-4.73,2.38-8.33s-.8-6.41-2.41-8.42c-1.61-2.02-3.84-3.02-6.69-3.02s-5.19.98-6.75,2.94c-1.57,1.96-2.35,4.75-2.35,8.39s.78,6.45,2.35,8.42c1.57,1.98,3.82,2.96,6.75,2.96s5.14-.98,6.72-2.94Z"/>
9
- </g>
10
- </svg>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.29 49.31">
3
- <defs>
4
- <style>
5
- .cls-1 {
6
- stroke-width: 0px;
7
- }
8
- </style>
9
- </defs>
10
- <g id="Layer_1-2" data-name="Layer 1">
11
- <path class="cls-1" d="m47.74.19c-.93-.39-2.01-.17-2.72.54l-20.38,20.38L4.27.73C3.55.02,2.48-.2,1.54.19.61.58,0,1.49,0,2.5v46.81h5V8.54l16.11,16.11-9.19,9.19,3.54,3.54,9.19-9.19,9.19,9.19,3.54-3.54-9.19-9.19,16.11-16.11v40.77h5V2.5c0-1.01-.61-1.92-1.54-2.31Z"/>
12
- </g>
13
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95 95">
2
- <path fill-rule="evenodd" fill="#fff" d="M64.748,63.125a84.879,84.879,0,0,1-1.664,8.389c1.86.464,3.652.826,5.359,1.081,8.02,1.2,14.055.078,16.2-3.646s.106-9.513-4.94-15.857c-1.075-1.351-2.285-2.723-3.617-4.1a84.6,84.6,0,0,1-6.433,5.636,5.891,5.891,0,0,1-4.909,8.5Zm3.646-10.188a5.872,5.872,0,0,0-2.6-1.409q.027-.751.044-1.538.03-1.415.03-2.49c0-2.58-.087-5.109-.253-7.57A86.452,86.452,0,0,1,74.6,47.5c-1.869,1.818-3.947,3.64-6.209,5.438Zm-4.7-1.538a5.894,5.894,0,0,0-4.72,8.175q-.616.386-1.235.761-1.029.624-2.1,1.241l-.01.006c-2.724,1.573-5.445,2.992-8.129,4.253-2.684-1.261-5.406-2.681-8.132-4.255s-5.31-3.217-7.743-4.909c-.249-2.955-.38-6.023-.38-9.171q0-1.412.023-2.449.015-.714.041-1.45a5.891,5.891,0,0,0,4.719-8.175c.413-.257.824-.511,1.237-.761q1.028-.624,2.1-1.241l.01-.005c2.724-1.573,5.446-2.993,8.129-4.254,2.684,1.262,5.406,2.681,8.132,4.255s5.31,3.218,7.743,4.91c.249,2.954.38,6.023.38,9.17q0,1.413-.022,2.449-.016.714-.042,1.45Zm-3.557,9.925q-.644.4-1.31.807-1.065.646-2.146,1.27h0c-2.234,1.29-4.468,2.479-6.682,3.565a86.489,86.489,0,0,0,11.057,4.006c.64-2.528,1.179-5.238,1.6-8.094a5.889,5.889,0,0,1-2.438-1.468l-.085-.087Zm6.921-6.749a3.779,3.779,0,1,1-2.672-1.107,3.764,3.764,0,0,1,2.672,1.107Zm-32.189-20.9q.645-.4,1.311-.807,1.064-.646,2.145-1.27h0c2.234-1.29,4.468-2.479,6.682-3.565a86.326,86.326,0,0,0-11.057-4.005c-.64,2.527-1.179,5.237-1.6,8.093a5.9,5.9,0,0,1,2.438,1.468l.085.087Zm-4.614-1.8a84.879,84.879,0,0,1,1.664-8.389c-1.86-.464-3.652-.826-5.359-1.081-8.019-1.2-14.054-.078-16.2,3.646s-.106,9.513,4.94,15.857c1.075,1.352,2.285,2.723,3.617,4.1a84.373,84.373,0,0,1,6.433-5.635,5.891,5.891,0,0,1,4.909-8.5ZM26.606,42.064a5.881,5.881,0,0,0,2.6,1.408q-.027.753-.044,1.538c-.02.943-.031,1.775-.031,2.49,0,2.58.087,5.109.254,7.57A86.572,86.572,0,0,1,20.4,47.5c1.87-1.818,3.948-3.64,6.21-5.437ZM33.29,35.08A3.779,3.779,0,1,0,34.4,37.753,3.771,3.771,0,0,0,33.29,35.08ZM62.537,73.546a49.456,49.456,0,0,1-4.121,10.345C55.4,89.313,51.641,92.5,47.5,92.5c-5.257,0-9.924-5.176-13.22-13.543-.661-1.677-1.269-3.487-1.818-5.411-1.943.488-3.816.867-5.6,1.133C17.973,76.008,11.16,74.553,8.532,70c-2.071-3.587-1.193-8.438,1.995-13.758a49.4,49.4,0,0,1,6.9-8.742c-1.393-1.439-2.657-2.871-3.78-4.282C8.05,36.184,5.9,29.557,8.532,25s9.442-6.012,18.329-4.683c1.785.266,3.659.645,5.6,1.133A49.424,49.424,0,0,1,36.584,11.11C39.6,5.687,43.36,2.5,47.5,2.5c5.257,0,9.925,5.175,13.22,13.543.661,1.677,1.269,3.487,1.818,5.411,1.943-.488,3.816-.867,5.6-1.133,8.888-1.329,15.7.126,18.329,4.679,2.071,3.588,1.193,8.438-2,13.758a49.4,49.4,0,0,1-6.9,8.742c1.393,1.439,2.657,2.871,3.78,4.282C86.95,58.816,89.1,65.443,86.468,70s-9.442,6.012-18.33,4.683c-1.784-.266-3.658-.645-5.6-1.133ZM18.911,48.989a47.132,47.132,0,0,0-6.58,8.333C9.544,61.973,8.7,66.083,10.353,68.945c2.151,3.726,8.186,4.848,16.2,3.65,1.708-.255,3.5-.616,5.359-1.081a90.427,90.427,0,0,1-2.3-13.692,90.533,90.533,0,0,1-10.7-8.833ZM31.892,59.4a86.578,86.578,0,0,0,2.057,11.576,86.411,86.411,0,0,0,11.056-4c-2.215-1.086-4.449-2.275-6.683-3.566s-4.382-2.63-6.43-4.005ZM47.5,68.151A90.542,90.542,0,0,0,60.506,73a47.22,47.22,0,0,1-3.928,9.865c-2.633,4.737-5.77,7.522-9.078,7.522-4.3,0-8.29-4.663-11.259-12.2C35.607,76.583,35.024,74.849,34.5,73a90.522,90.522,0,0,0,13-4.853ZM34.494,22a47.22,47.22,0,0,1,3.928-9.865C41.055,7.394,44.192,4.61,47.5,4.61c4.3,0,8.29,4.662,11.259,12.2.634,1.608,1.217,3.342,1.745,5.187a90.522,90.522,0,0,0-13,4.853A90.542,90.542,0,0,0,34.494,22ZM50,28.033c2.214,1.086,4.449,2.276,6.683,3.566s4.382,2.63,6.43,4a86.549,86.549,0,0,0-2.057-11.576A86.411,86.411,0,0,0,50,28.033Zm15.393,9.145a90.533,90.533,0,0,1,10.7,8.833,47.178,47.178,0,0,0,6.58-8.333c2.787-4.651,3.631-8.761,1.978-11.623-2.151-3.726-8.186-4.848-16.2-3.65-1.707.255-3.5.617-5.358,1.081A90.427,90.427,0,0,1,65.388,37.178Z"/>
3
- </svg>
@@ -1,8 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <g fill="#fff">
4
- <path d="M69.2,50.5H30.6c-0.5,0-1-0.3-1.3-0.8c-0.3-0.5-0.3-1,0-1.5l19.3-33.4c0.3-0.5,0.8-0.7,1.3-0.7s1,0.3,1.3,0.7l19.3,33.4 c0.3,0.5,0.3,1,0,1.5C70.2,50.2,69.7,50.5,69.2,50.5z M33.2,47.5h33.4L49.9,18.6L33.2,47.5z"/>
5
- <path d="M81.9,85.9H51.8c-0.8,0-1.5-0.7-1.5-1.5V54.3c0-0.8,0.7-1.5,1.5-1.5h30.1c0.8,0,1.5,0.7,1.5,1.5v30.1 C83.4,85.2,82.7,85.9,81.9,85.9z M53.3,82.9h27.1V55.8H53.3V82.9z"/>
6
- <path d="M30.6,85.8c-9.1,0-16.5-7.4-16.5-16.5s7.4-16.5,16.5-16.5s16.5,7.4,16.5,16.5S39.7,85.8,30.6,85.8z M30.6,55.8 c-7.4,0-13.5,6.1-13.5,13.5s6.1,13.5,13.5,13.5s13.5-6.1,13.5-13.5S38,55.8,30.6,55.8z"/>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px"
2
- viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
3
- <g fill="#fff">
4
- <polygon points="43.4,91.7 43.4,56.6 8.5,56.6 8.5,65.4 28.4,65.4 5.2,88.6 11.4,94.8 34.6,71.6 34.6,91.7 "/>
5
- <polygon
6
- points="88.6,5.2 65.4,28.4 65.4,8.4 56.6,8.4 56.6,43.4 91.5,43.4 91.5,34.6 71.6,34.6 94.8,11.4 "/>
7
- </g>
8
- </svg>