@asante-org/leybold-design-system 1.2.1 → 1.2.2
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 +163 -163
- package/dist/app/layout.d.ts +9 -0
- package/dist/app/page.d.ts +2 -0
- package/dist/assets/.gitkeep +2 -2
- package/dist/assets/desktop-layout-alt.svg +27 -27
- package/dist/assets/desktop-layout.svg +29 -29
- package/dist/assets/globe.svg +7 -7
- package/dist/assets/leybold-footer-logo.svg +19 -19
- package/dist/assets/leybold-white.svg +18 -18
- package/dist/assets/list-product-overlay-tip-active.svg +3 -3
- package/dist/assets/list-product-overlay-tip.svg +3 -3
- package/dist/assets/logo-example.svg +9 -9
- package/dist/assets/logo.svg +19 -19
- package/dist/assets/phone-layout.svg +14 -14
- package/dist/assets/red-tip.svg +10 -10
- package/dist/assets/tablet-layout.svg +28 -28
- package/dist/index.css +88 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.css +88 -0
- package/dist/index.esm.js +1066 -1093
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1148 -1135
- package/dist/index.js.map +1 -1
- package/dist/src/experience/algolia-dynamic-search/AlgoliaDynamicSearch.d.ts +0 -1
- package/dist/src/experience/qr-form-journey/QrFormJourney.d.ts +0 -1
- package/dist/src/stories/foundation/Typography/TypographyComponents.d.ts +0 -1
- package/dist/src/types/cards.d.ts +3 -0
- package/dist/stories/components/Algolia-dynamic-search/algolia-dynamic-search.d.ts +4 -0
- package/dist/stories/components/Algolia-dynamic-search/algolia-dynamic-search.stories.d.ts +7 -0
- package/dist/stories/components/Button/Button.d.ts +35 -0
- package/dist/stories/components/Button/Button.stories.d.ts +15 -0
- package/dist/stories/components/Button/index.d.ts +2 -0
- package/dist/stories/components/QRFormJourney/Qr-form/Qr-form.d.ts +2 -0
- package/dist/stories/components/QRFormJourney/Qr-form/Qr-form.stories.d.ts +7 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/styles/index.d.ts +1 -0
- package/package.json +115 -115
- package/dist/.next/types/app/layout.d.ts +0 -9
- package/dist/.next/types/app/page.d.ts +0 -9
package/README.md
CHANGED
|
@@ -1,163 +1,163 @@
|
|
|
1
|
-
# Leybold Design System
|
|
2
|
-
|
|
3
|
-
A comprehensive design system for Leybold, built with React, TypeScript, Storybook, and Next.js.
|
|
4
|
-
|
|
5
|
-
## Getting Started
|
|
6
|
-
|
|
7
|
-
### Prerequisites
|
|
8
|
-
|
|
9
|
-
- Node.js (v18 or higher)
|
|
10
|
-
- npm or yarn
|
|
11
|
-
|
|
12
|
-
### Installation
|
|
13
|
-
|
|
14
|
-
1. Clone the repository
|
|
15
|
-
2. Install dependencies:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
npm install
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
### Development
|
|
22
|
-
|
|
23
|
-
#### Run Storybook
|
|
24
|
-
|
|
25
|
-
To start the Storybook development server:
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
npm run storybook
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
This will open Storybook at `http://localhost:6006`
|
|
32
|
-
|
|
33
|
-
#### Run Next.js Development Server
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
npm run dev
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
This will start the Next.js development server at `http://localhost:3000`
|
|
40
|
-
|
|
41
|
-
### Building
|
|
42
|
-
|
|
43
|
-
#### Build Storybook
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
npm run build-storybook
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
#### Build Next.js Application
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
npm run build
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
#### Build NPM Package
|
|
56
|
-
|
|
57
|
-
```bash
|
|
58
|
-
npm run build:npm
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Publishing to npm
|
|
62
|
-
|
|
63
|
-
Publishing requires an npm access token with publish permissions for the `@asante-org` organization.
|
|
64
|
-
|
|
65
|
-
#### Setup Access Token
|
|
66
|
-
|
|
67
|
-
1. Generate an access token at [npmjs.com](https://www.npmjs.com) → Access Tokens
|
|
68
|
-
2. Configure the token:
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
npm config set //registry.npmjs.org/:_authToken YOUR_ACCESS_TOKEN
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
#### Publish
|
|
75
|
-
|
|
76
|
-
```bash
|
|
77
|
-
npm run build:npm
|
|
78
|
-
npm run publish:npm
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
Or to bump version and publish in one step:
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
npm run build:npm
|
|
85
|
-
npm version patch # or minor/major
|
|
86
|
-
npm publish --access public
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
### Project Structure
|
|
90
|
-
|
|
91
|
-
```
|
|
92
|
-
leybold-storybook/
|
|
93
|
-
├── .storybook/ # Storybook configuration
|
|
94
|
-
├── public/ # Static assets
|
|
95
|
-
│ ├── fonts/ # Custom fonts
|
|
96
|
-
│ └── assets/ # Images and other assets
|
|
97
|
-
├── src/
|
|
98
|
-
│ ├── app/ # Next.js app directory
|
|
99
|
-
│ ├── stories/ # Storybook stories
|
|
100
|
-
│ │ ├── introduction/ # Introduction pages
|
|
101
|
-
│ │ ├── foundation/ # Design foundations (colors, typography, etc.)
|
|
102
|
-
│ │ ├── atoms/ # Atomic components
|
|
103
|
-
│ │ ├── components/ # Component stories
|
|
104
|
-
│ │ ├── experiences/ # Complex component compositions
|
|
105
|
-
│ │ └── templates/ # Page templates
|
|
106
|
-
│ └── utils/ # Utility functions and styles
|
|
107
|
-
│ └── styles/ # Global styles and SCSS utilities
|
|
108
|
-
├── types/ # TypeScript type definitions
|
|
109
|
-
├── dist/ # Build output
|
|
110
|
-
└── package.json
|
|
111
|
-
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
### Scripts
|
|
115
|
-
|
|
116
|
-
- `npm run dev` - Start Next.js development server
|
|
117
|
-
- `npm run build` - Build Next.js application
|
|
118
|
-
- `npm run start` - Start production Next.js server
|
|
119
|
-
- `npm run lint` - Run ESLint
|
|
120
|
-
- `npm run storybook` - Start Storybook development server
|
|
121
|
-
- `npm run build-storybook` - Build Storybook for production
|
|
122
|
-
- `npm run build:npm` - Build package for npm distribution
|
|
123
|
-
- `npm run publish:npm` - Publish package to npm
|
|
124
|
-
|
|
125
|
-
### Technologies Used
|
|
126
|
-
|
|
127
|
-
- **React 18.2.0** - UI library
|
|
128
|
-
- **TypeScript 5.0.4** - Type safety
|
|
129
|
-
- **Next.js 13.3.0** - React framework
|
|
130
|
-
- **Storybook 7.0.4** - Component development and documentation
|
|
131
|
-
- **Tailwind CSS 3.3.1** - Utility-first CSS framework
|
|
132
|
-
- **SCSS/Sass** - CSS preprocessing
|
|
133
|
-
- **Rollup** - Module bundler for npm package
|
|
134
|
-
|
|
135
|
-
### Contributing
|
|
136
|
-
|
|
137
|
-
1. Create a new branch for your feature/fix
|
|
138
|
-
2. Make your changes
|
|
139
|
-
3. Write/update tests and stories
|
|
140
|
-
4. Submit a pull request
|
|
141
|
-
|
|
142
|
-
### License
|
|
143
|
-
|
|
144
|
-
UNLICENSED - This is proprietary software for Atlas Copco/Leybold.
|
|
145
|
-
|
|
146
|
-
## Design System Organization
|
|
147
|
-
|
|
148
|
-
The design system follows the Atomic Design methodology:
|
|
149
|
-
|
|
150
|
-
1. **Introduction** - Overview and getting started guides
|
|
151
|
-
2. **Foundation** - Design tokens (colors, typography, spacing, etc.)
|
|
152
|
-
3. **Atoms** - Basic building blocks (buttons, inputs, etc.)
|
|
153
|
-
4. **Components** - Composite components
|
|
154
|
-
5. **Experiences** - Complex patterns and page sections
|
|
155
|
-
6. **Templates** - Complete page layouts
|
|
156
|
-
|
|
157
|
-
Each component should include:
|
|
158
|
-
|
|
159
|
-
- Component implementation
|
|
160
|
-
- Storybook stories with different variants
|
|
161
|
-
- Documentation
|
|
162
|
-
- TypeScript types
|
|
163
|
-
- SCSS modules for styling
|
|
1
|
+
# Leybold Design System
|
|
2
|
+
|
|
3
|
+
A comprehensive design system for Leybold, built with React, TypeScript, Storybook, and Next.js.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
### Prerequisites
|
|
8
|
+
|
|
9
|
+
- Node.js (v18 or higher)
|
|
10
|
+
- npm or yarn
|
|
11
|
+
|
|
12
|
+
### Installation
|
|
13
|
+
|
|
14
|
+
1. Clone the repository
|
|
15
|
+
2. Install dependencies:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Development
|
|
22
|
+
|
|
23
|
+
#### Run Storybook
|
|
24
|
+
|
|
25
|
+
To start the Storybook development server:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm run storybook
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
This will open Storybook at `http://localhost:6006`
|
|
32
|
+
|
|
33
|
+
#### Run Next.js Development Server
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm run dev
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
This will start the Next.js development server at `http://localhost:3000`
|
|
40
|
+
|
|
41
|
+
### Building
|
|
42
|
+
|
|
43
|
+
#### Build Storybook
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run build-storybook
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
#### Build Next.js Application
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm run build
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
#### Build NPM Package
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm run build:npm
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Publishing to npm
|
|
62
|
+
|
|
63
|
+
Publishing requires an npm access token with publish permissions for the `@asante-org` organization.
|
|
64
|
+
|
|
65
|
+
#### Setup Access Token
|
|
66
|
+
|
|
67
|
+
1. Generate an access token at [npmjs.com](https://www.npmjs.com) → Access Tokens
|
|
68
|
+
2. Configure the token:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
npm config set //registry.npmjs.org/:_authToken YOUR_ACCESS_TOKEN
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
#### Publish
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
npm run build:npm
|
|
78
|
+
npm run publish:npm
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Or to bump version and publish in one step:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
npm run build:npm
|
|
85
|
+
npm version patch # or minor/major
|
|
86
|
+
npm publish --access public
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Project Structure
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
leybold-storybook/
|
|
93
|
+
├── .storybook/ # Storybook configuration
|
|
94
|
+
├── public/ # Static assets
|
|
95
|
+
│ ├── fonts/ # Custom fonts
|
|
96
|
+
│ └── assets/ # Images and other assets
|
|
97
|
+
├── src/
|
|
98
|
+
│ ├── app/ # Next.js app directory
|
|
99
|
+
│ ├── stories/ # Storybook stories
|
|
100
|
+
│ │ ├── introduction/ # Introduction pages
|
|
101
|
+
│ │ ├── foundation/ # Design foundations (colors, typography, etc.)
|
|
102
|
+
│ │ ├── atoms/ # Atomic components
|
|
103
|
+
│ │ ├── components/ # Component stories
|
|
104
|
+
│ │ ├── experiences/ # Complex component compositions
|
|
105
|
+
│ │ └── templates/ # Page templates
|
|
106
|
+
│ └── utils/ # Utility functions and styles
|
|
107
|
+
│ └── styles/ # Global styles and SCSS utilities
|
|
108
|
+
├── types/ # TypeScript type definitions
|
|
109
|
+
├── dist/ # Build output
|
|
110
|
+
└── package.json
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### Scripts
|
|
115
|
+
|
|
116
|
+
- `npm run dev` - Start Next.js development server
|
|
117
|
+
- `npm run build` - Build Next.js application
|
|
118
|
+
- `npm run start` - Start production Next.js server
|
|
119
|
+
- `npm run lint` - Run ESLint
|
|
120
|
+
- `npm run storybook` - Start Storybook development server
|
|
121
|
+
- `npm run build-storybook` - Build Storybook for production
|
|
122
|
+
- `npm run build:npm` - Build package for npm distribution
|
|
123
|
+
- `npm run publish:npm` - Publish package to npm
|
|
124
|
+
|
|
125
|
+
### Technologies Used
|
|
126
|
+
|
|
127
|
+
- **React 18.2.0** - UI library
|
|
128
|
+
- **TypeScript 5.0.4** - Type safety
|
|
129
|
+
- **Next.js 13.3.0** - React framework
|
|
130
|
+
- **Storybook 7.0.4** - Component development and documentation
|
|
131
|
+
- **Tailwind CSS 3.3.1** - Utility-first CSS framework
|
|
132
|
+
- **SCSS/Sass** - CSS preprocessing
|
|
133
|
+
- **Rollup** - Module bundler for npm package
|
|
134
|
+
|
|
135
|
+
### Contributing
|
|
136
|
+
|
|
137
|
+
1. Create a new branch for your feature/fix
|
|
138
|
+
2. Make your changes
|
|
139
|
+
3. Write/update tests and stories
|
|
140
|
+
4. Submit a pull request
|
|
141
|
+
|
|
142
|
+
### License
|
|
143
|
+
|
|
144
|
+
UNLICENSED - This is proprietary software for Atlas Copco/Leybold.
|
|
145
|
+
|
|
146
|
+
## Design System Organization
|
|
147
|
+
|
|
148
|
+
The design system follows the Atomic Design methodology:
|
|
149
|
+
|
|
150
|
+
1. **Introduction** - Overview and getting started guides
|
|
151
|
+
2. **Foundation** - Design tokens (colors, typography, spacing, etc.)
|
|
152
|
+
3. **Atoms** - Basic building blocks (buttons, inputs, etc.)
|
|
153
|
+
4. **Components** - Composite components
|
|
154
|
+
5. **Experiences** - Complex patterns and page sections
|
|
155
|
+
6. **Templates** - Complete page layouts
|
|
156
|
+
|
|
157
|
+
Each component should include:
|
|
158
|
+
|
|
159
|
+
- Component implementation
|
|
160
|
+
- Storybook stories with different variants
|
|
161
|
+
- Documentation
|
|
162
|
+
- TypeScript types
|
|
163
|
+
- SCSS modules for styling
|
package/dist/assets/.gitkeep
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# Place images and other assets here
|
|
2
|
-
|
|
1
|
+
# Place images and other assets here
|
|
2
|
+
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<svg width="796" height="587" viewBox="0 0 796 587" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_6077_1467)">
|
|
3
|
-
<rect width="792.986" height="562.112" transform="translate(1.45752 23.8496)" fill="white"/>
|
|
4
|
-
<rect x="133.622" y="23.8494" width="528.658" height="135.882" fill="#383E42"/>
|
|
5
|
-
<rect x="133.622" y="167.165" width="261.438" height="135.882" fill="#383E42"/>
|
|
6
|
-
<rect x="402.494" y="167.165" width="261.025" height="135.882" fill="#383E42"/>
|
|
7
|
-
<rect x="539.197" y="310.389" width="127.621" height="135.882" fill="#383E42"/>
|
|
8
|
-
<rect x="133.618" y="310.389" width="398.145" height="135.882" fill="#383E42"/>
|
|
9
|
-
<rect x="133.618" y="453.705" width="263.09" height="135.882" fill="#383E42"/>
|
|
10
|
-
<rect x="404.146" y="453.797" width="127.621" height="135.882" fill="#383E42"/>
|
|
11
|
-
<rect x="539.197" y="453.797" width="127.621" height="135.882" fill="#383E42"/>
|
|
12
|
-
</g>
|
|
13
|
-
<path d="M790.93 0C793.409 0.00026287 795.419 2.01003 795.419 4.48926V582.116C795.419 584.595 793.409 586.606 790.93 586.606H4.48926C2.00995 586.606 0.000132462 584.596 0 582.116V4.48926C0.000109697 2.00995 2.00992 8.40735e-05 4.48926 0H790.93ZM1.25781 23.0615V582.116C1.25794 583.901 2.70468 585.348 4.48926 585.348H790.93C792.714 585.347 794.161 583.901 794.161 582.116V23.0615H1.25781ZM4.48926 1.25781C2.70467 1.2579 1.25792 2.70466 1.25781 4.48926V21.8037H794.161V4.48926C794.161 2.70476 792.714 1.25808 790.93 1.25781H4.48926Z" fill="black"/>
|
|
14
|
-
<rect x="253.049" y="5.66016" width="290.997" height="11.7405" rx="1.50949" stroke="black" stroke-width="1.25791"/>
|
|
15
|
-
<path d="M380.602 14.2468V13.7416C380.348 14.1388 379.975 14.3373 379.482 14.3373C379.163 14.3373 378.869 14.2493 378.6 14.0734C378.334 13.8975 378.126 13.6524 377.978 13.3382C377.832 13.0216 377.759 12.6584 377.759 12.2487C377.759 11.8491 377.826 11.4872 377.959 11.1629C378.092 10.8362 378.292 10.5861 378.559 10.4127C378.825 10.2393 379.123 10.1526 379.452 10.1526C379.693 10.1526 379.908 10.2041 380.097 10.3071C380.285 10.4077 380.438 10.5396 380.557 10.703V8.71997H381.231V14.2468H380.602ZM378.457 12.2487C378.457 12.7614 378.565 13.1447 378.781 13.3986C378.997 13.6524 379.252 13.7793 379.546 13.7793C379.843 13.7793 380.094 13.6587 380.3 13.4174C380.509 13.1736 380.613 12.8029 380.613 12.3053C380.613 11.7574 380.508 11.3552 380.296 11.0989C380.085 10.8425 379.825 10.7143 379.516 10.7143C379.214 10.7143 378.962 10.8375 378.758 11.0838C378.557 11.3301 378.457 11.7184 378.457 12.2487ZM382.05 12.2449C382.05 11.5035 382.256 10.9543 382.668 10.5974C383.012 10.3009 383.432 10.1526 383.927 10.1526C384.477 10.1526 384.927 10.3335 385.277 10.6955C385.626 11.0549 385.801 11.5525 385.801 12.1884C385.801 12.7036 385.723 13.1095 385.567 13.4061C385.414 13.7002 385.189 13.9289 384.892 14.0923C384.598 14.2556 384.276 14.3373 383.927 14.3373C383.367 14.3373 382.913 14.1576 382.566 13.7982C382.222 13.4388 382.05 12.921 382.05 12.2449ZM382.747 12.2449C382.747 12.7577 382.859 13.1422 383.083 13.3986C383.306 13.6524 383.588 13.7793 383.927 13.7793C384.264 13.7793 384.544 13.6512 384.768 13.3948C384.991 13.1384 385.103 12.7476 385.103 12.2223C385.103 11.7272 384.99 11.3527 384.764 11.0989C384.54 10.8425 384.261 10.7143 383.927 10.7143C383.588 10.7143 383.306 10.8412 383.083 11.0951C382.859 11.3489 382.747 11.7322 382.747 12.2449ZM386.6 14.2468V10.2431H387.207V10.8048C387.333 10.6088 387.5 10.4517 387.708 10.3335C387.917 10.2129 388.154 10.1526 388.421 10.1526C388.717 10.1526 388.96 10.2142 389.149 10.3373C389.34 10.4605 389.474 10.6326 389.552 10.8538C389.869 10.3863 390.281 10.1526 390.788 10.1526C391.186 10.1526 391.491 10.2632 391.705 10.4843C391.918 10.703 392.025 11.041 392.025 11.4985V14.2468H391.35V11.7247C391.35 11.4532 391.328 11.2585 391.282 11.1403C391.24 11.0197 391.16 10.9229 391.045 10.85C390.929 10.7771 390.793 10.7407 390.638 10.7407C390.356 10.7407 390.122 10.835 389.936 11.0235C389.75 11.2094 389.657 11.5085 389.657 11.9207V14.2468H388.979V11.6455C388.979 11.3439 388.924 11.1177 388.813 10.9669C388.702 10.8161 388.521 10.7407 388.27 10.7407C388.079 10.7407 387.902 10.791 387.739 10.8915C387.578 10.992 387.461 11.1391 387.388 11.3326C387.315 11.5261 387.279 11.8051 387.279 12.1695V14.2468H386.6ZM395.644 13.753C395.393 13.9666 395.15 14.1174 394.917 14.2054C394.685 14.2933 394.437 14.3373 394.17 14.3373C393.73 14.3373 393.392 14.2305 393.156 14.0169C392.92 13.8007 392.802 13.5255 392.802 13.1912C392.802 12.9952 392.846 12.8167 392.934 12.6559C393.024 12.4925 393.141 12.3618 393.284 12.2638C393.43 12.1658 393.593 12.0916 393.774 12.0414C393.908 12.0062 394.109 11.9722 394.378 11.9396C394.925 11.8742 395.329 11.7963 395.588 11.7058C395.59 11.6128 395.591 11.5538 395.591 11.5286C395.591 11.2522 395.527 11.0574 395.399 10.9443C395.226 10.791 394.968 10.7143 394.626 10.7143C394.307 10.7143 394.071 10.7709 393.918 10.884C393.767 10.9945 393.655 11.1918 393.582 11.4759L392.919 11.3854C392.979 11.1014 393.078 10.8727 393.216 10.6992C393.355 10.5233 393.554 10.3888 393.816 10.2958C394.077 10.2003 394.38 10.1526 394.724 10.1526C395.066 10.1526 395.344 10.1928 395.558 10.2732C395.771 10.3536 395.928 10.4554 396.029 10.5786C396.129 10.6992 396.2 10.8525 396.24 11.0385C396.263 11.1541 396.274 11.3628 396.274 11.6644V12.5692C396.274 13.2 396.288 13.5996 396.315 13.768C396.345 13.9339 396.403 14.0935 396.489 14.2468H395.78C395.71 14.1061 395.664 13.9415 395.644 13.753ZM395.588 12.2374C395.341 12.3379 394.972 12.4234 394.479 12.4938C394.2 12.534 394.003 12.5792 393.887 12.6295C393.772 12.6798 393.683 12.7539 393.62 12.8519C393.557 12.9474 393.526 13.0542 393.526 13.1724C393.526 13.3533 393.593 13.5041 393.729 13.6248C393.867 13.7454 394.068 13.8057 394.332 13.8057C394.594 13.8057 394.826 13.7492 395.03 13.6361C395.233 13.5205 395.383 13.3634 395.478 13.1648C395.551 13.0115 395.588 12.7853 395.588 12.4862V12.2374ZM397.333 9.50036V8.71997H398.012V9.50036H397.333ZM397.333 14.2468V10.2431H398.012V14.2468H397.333ZM399.049 14.2468V10.2431H399.659V10.8123C399.953 10.3725 400.378 10.1526 400.934 10.1526C401.175 10.1526 401.396 10.1966 401.597 10.2845C401.801 10.37 401.953 10.4831 402.053 10.6238C402.154 10.7646 402.224 10.9317 402.264 11.1252C402.29 11.2509 402.302 11.4708 402.302 11.785V14.2468H401.624V11.8114C401.624 11.5349 401.597 11.3288 401.544 11.1931C401.492 11.0549 401.397 10.9455 401.262 10.8651C401.128 10.7822 400.971 10.7407 400.79 10.7407C400.501 10.7407 400.251 10.8324 400.04 11.0159C399.832 11.1994 399.727 11.5475 399.727 12.0602V14.2468H399.049ZM403.539 14.2468V13.474H404.312V14.2468H403.539ZM408.108 12.7803L408.775 12.867C408.702 13.3269 408.515 13.6876 408.214 13.949C407.914 14.2079 407.546 14.3373 407.109 14.3373C406.561 14.3373 406.12 14.1589 405.786 13.802C405.454 13.4426 405.288 12.9286 405.288 12.26C405.288 11.8277 405.36 11.4495 405.503 11.1252C405.646 10.801 405.864 10.5585 406.155 10.3976C406.449 10.2343 406.768 10.1526 407.113 10.1526C407.547 10.1526 407.903 10.2632 408.18 10.4843C408.456 10.703 408.633 11.0147 408.711 11.4193L408.051 11.5211C407.989 11.2522 407.877 11.0498 407.716 10.9141C407.558 10.7784 407.365 10.7105 407.139 10.7105C406.797 10.7105 406.52 10.8337 406.306 11.08C406.092 11.3238 405.985 11.7109 405.985 12.2412C405.985 12.779 406.088 13.1699 406.295 13.4137C406.501 13.6574 406.77 13.7793 407.101 13.7793C407.368 13.7793 407.59 13.6977 407.769 13.5343C407.947 13.3709 408.06 13.1196 408.108 12.7803ZM409.103 12.2449C409.103 11.5035 409.309 10.9543 409.722 10.5974C410.066 10.3009 410.486 10.1526 410.981 10.1526C411.531 10.1526 411.981 10.3335 412.33 10.6955C412.68 11.0549 412.854 11.5525 412.854 12.1884C412.854 12.7036 412.777 13.1095 412.621 13.4061C412.467 13.7002 412.242 13.9289 411.946 14.0923C411.652 14.2556 411.33 14.3373 410.981 14.3373C410.42 14.3373 409.967 14.1576 409.62 13.7982C409.275 13.4388 409.103 12.921 409.103 12.2449ZM409.801 12.2449C409.801 12.7577 409.913 13.1422 410.136 13.3986C410.36 13.6524 410.641 13.7793 410.981 13.7793C411.318 13.7793 411.598 13.6512 411.821 13.3948C412.045 13.1384 412.157 12.7476 412.157 12.2223C412.157 11.7272 412.044 11.3527 411.818 11.0989C411.594 10.8425 411.315 10.7143 410.981 10.7143C410.641 10.7143 410.36 10.8412 410.136 11.0951C409.913 11.3489 409.801 11.7322 409.801 12.2449ZM413.654 14.2468V10.2431H414.261V10.8048C414.386 10.6088 414.553 10.4517 414.762 10.3335C414.971 10.2129 415.208 10.1526 415.475 10.1526C415.771 10.1526 416.014 10.2142 416.202 10.3373C416.393 10.4605 416.528 10.6326 416.606 10.8538C416.922 10.3863 417.334 10.1526 417.842 10.1526C418.239 10.1526 418.545 10.2632 418.758 10.4843C418.972 10.703 419.079 11.041 419.079 11.4985V14.2468H418.404V11.7247C418.404 11.4532 418.381 11.2585 418.336 11.1403C418.293 11.0197 418.214 10.9229 418.099 10.85C417.983 10.7771 417.847 10.7407 417.691 10.7407C417.41 10.7407 417.176 10.835 416.99 11.0235C416.804 11.2094 416.711 11.5085 416.711 11.9207V14.2468H416.033V11.6455C416.033 11.3439 415.977 11.1177 415.867 10.9669C415.756 10.8161 415.575 10.7407 415.324 10.7407C415.133 10.7407 414.956 10.791 414.792 10.8915C414.631 10.992 414.515 11.1391 414.442 11.3326C414.369 11.5261 414.332 11.8051 414.332 12.1695V14.2468H413.654Z" fill="black"/>
|
|
16
|
-
<path d="M52.77 8.59546L49.751 11.6145L52.77 14.6335" stroke="black" stroke-width="1.25791" stroke-linecap="round" stroke-linejoin="round"/>
|
|
17
|
-
<path d="M63.2769 14.4658L66.2959 11.4468L63.2769 8.42781" stroke="black" stroke-width="1.25791" stroke-linecap="round" stroke-linejoin="round"/>
|
|
18
|
-
<path d="M69.5615 5.03149C70.7425 5.03149 71.7001 5.98919 71.7002 7.17017V15.8918C71.7 17.0727 70.7424 18.0295 69.5615 18.0295H46.584C45.4032 18.0294 44.4455 17.0726 44.4453 15.8918V7.17017C44.4454 5.98929 45.4031 5.03166 46.584 5.03149H69.5615ZM58.7012 16.7717H69.5615C70.0477 16.7717 70.4422 16.378 70.4424 15.8918V7.17017C70.4423 6.68391 70.0478 6.28931 69.5615 6.28931H58.7012V16.7717ZM46.584 6.28931C46.0979 6.28947 45.7032 6.68401 45.7031 7.17017V15.8918C45.7034 16.3779 46.098 16.7716 46.584 16.7717H57.4434V6.28931H46.584Z" fill="black"/>
|
|
19
|
-
<circle cx="11.9341" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
20
|
-
<circle cx="22.9639" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
21
|
-
<circle cx="33.9937" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
22
|
-
<defs>
|
|
23
|
-
<clipPath id="clip0_6077_1467">
|
|
24
|
-
<rect width="792.986" height="562.112" fill="white" transform="translate(1.45752 23.8496)"/>
|
|
25
|
-
</clipPath>
|
|
26
|
-
</defs>
|
|
27
|
-
</svg>
|
|
1
|
+
<svg width="796" height="587" viewBox="0 0 796 587" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_6077_1467)">
|
|
3
|
+
<rect width="792.986" height="562.112" transform="translate(1.45752 23.8496)" fill="white"/>
|
|
4
|
+
<rect x="133.622" y="23.8494" width="528.658" height="135.882" fill="#383E42"/>
|
|
5
|
+
<rect x="133.622" y="167.165" width="261.438" height="135.882" fill="#383E42"/>
|
|
6
|
+
<rect x="402.494" y="167.165" width="261.025" height="135.882" fill="#383E42"/>
|
|
7
|
+
<rect x="539.197" y="310.389" width="127.621" height="135.882" fill="#383E42"/>
|
|
8
|
+
<rect x="133.618" y="310.389" width="398.145" height="135.882" fill="#383E42"/>
|
|
9
|
+
<rect x="133.618" y="453.705" width="263.09" height="135.882" fill="#383E42"/>
|
|
10
|
+
<rect x="404.146" y="453.797" width="127.621" height="135.882" fill="#383E42"/>
|
|
11
|
+
<rect x="539.197" y="453.797" width="127.621" height="135.882" fill="#383E42"/>
|
|
12
|
+
</g>
|
|
13
|
+
<path d="M790.93 0C793.409 0.00026287 795.419 2.01003 795.419 4.48926V582.116C795.419 584.595 793.409 586.606 790.93 586.606H4.48926C2.00995 586.606 0.000132462 584.596 0 582.116V4.48926C0.000109697 2.00995 2.00992 8.40735e-05 4.48926 0H790.93ZM1.25781 23.0615V582.116C1.25794 583.901 2.70468 585.348 4.48926 585.348H790.93C792.714 585.347 794.161 583.901 794.161 582.116V23.0615H1.25781ZM4.48926 1.25781C2.70467 1.2579 1.25792 2.70466 1.25781 4.48926V21.8037H794.161V4.48926C794.161 2.70476 792.714 1.25808 790.93 1.25781H4.48926Z" fill="black"/>
|
|
14
|
+
<rect x="253.049" y="5.66016" width="290.997" height="11.7405" rx="1.50949" stroke="black" stroke-width="1.25791"/>
|
|
15
|
+
<path d="M380.602 14.2468V13.7416C380.348 14.1388 379.975 14.3373 379.482 14.3373C379.163 14.3373 378.869 14.2493 378.6 14.0734C378.334 13.8975 378.126 13.6524 377.978 13.3382C377.832 13.0216 377.759 12.6584 377.759 12.2487C377.759 11.8491 377.826 11.4872 377.959 11.1629C378.092 10.8362 378.292 10.5861 378.559 10.4127C378.825 10.2393 379.123 10.1526 379.452 10.1526C379.693 10.1526 379.908 10.2041 380.097 10.3071C380.285 10.4077 380.438 10.5396 380.557 10.703V8.71997H381.231V14.2468H380.602ZM378.457 12.2487C378.457 12.7614 378.565 13.1447 378.781 13.3986C378.997 13.6524 379.252 13.7793 379.546 13.7793C379.843 13.7793 380.094 13.6587 380.3 13.4174C380.509 13.1736 380.613 12.8029 380.613 12.3053C380.613 11.7574 380.508 11.3552 380.296 11.0989C380.085 10.8425 379.825 10.7143 379.516 10.7143C379.214 10.7143 378.962 10.8375 378.758 11.0838C378.557 11.3301 378.457 11.7184 378.457 12.2487ZM382.05 12.2449C382.05 11.5035 382.256 10.9543 382.668 10.5974C383.012 10.3009 383.432 10.1526 383.927 10.1526C384.477 10.1526 384.927 10.3335 385.277 10.6955C385.626 11.0549 385.801 11.5525 385.801 12.1884C385.801 12.7036 385.723 13.1095 385.567 13.4061C385.414 13.7002 385.189 13.9289 384.892 14.0923C384.598 14.2556 384.276 14.3373 383.927 14.3373C383.367 14.3373 382.913 14.1576 382.566 13.7982C382.222 13.4388 382.05 12.921 382.05 12.2449ZM382.747 12.2449C382.747 12.7577 382.859 13.1422 383.083 13.3986C383.306 13.6524 383.588 13.7793 383.927 13.7793C384.264 13.7793 384.544 13.6512 384.768 13.3948C384.991 13.1384 385.103 12.7476 385.103 12.2223C385.103 11.7272 384.99 11.3527 384.764 11.0989C384.54 10.8425 384.261 10.7143 383.927 10.7143C383.588 10.7143 383.306 10.8412 383.083 11.0951C382.859 11.3489 382.747 11.7322 382.747 12.2449ZM386.6 14.2468V10.2431H387.207V10.8048C387.333 10.6088 387.5 10.4517 387.708 10.3335C387.917 10.2129 388.154 10.1526 388.421 10.1526C388.717 10.1526 388.96 10.2142 389.149 10.3373C389.34 10.4605 389.474 10.6326 389.552 10.8538C389.869 10.3863 390.281 10.1526 390.788 10.1526C391.186 10.1526 391.491 10.2632 391.705 10.4843C391.918 10.703 392.025 11.041 392.025 11.4985V14.2468H391.35V11.7247C391.35 11.4532 391.328 11.2585 391.282 11.1403C391.24 11.0197 391.16 10.9229 391.045 10.85C390.929 10.7771 390.793 10.7407 390.638 10.7407C390.356 10.7407 390.122 10.835 389.936 11.0235C389.75 11.2094 389.657 11.5085 389.657 11.9207V14.2468H388.979V11.6455C388.979 11.3439 388.924 11.1177 388.813 10.9669C388.702 10.8161 388.521 10.7407 388.27 10.7407C388.079 10.7407 387.902 10.791 387.739 10.8915C387.578 10.992 387.461 11.1391 387.388 11.3326C387.315 11.5261 387.279 11.8051 387.279 12.1695V14.2468H386.6ZM395.644 13.753C395.393 13.9666 395.15 14.1174 394.917 14.2054C394.685 14.2933 394.437 14.3373 394.17 14.3373C393.73 14.3373 393.392 14.2305 393.156 14.0169C392.92 13.8007 392.802 13.5255 392.802 13.1912C392.802 12.9952 392.846 12.8167 392.934 12.6559C393.024 12.4925 393.141 12.3618 393.284 12.2638C393.43 12.1658 393.593 12.0916 393.774 12.0414C393.908 12.0062 394.109 11.9722 394.378 11.9396C394.925 11.8742 395.329 11.7963 395.588 11.7058C395.59 11.6128 395.591 11.5538 395.591 11.5286C395.591 11.2522 395.527 11.0574 395.399 10.9443C395.226 10.791 394.968 10.7143 394.626 10.7143C394.307 10.7143 394.071 10.7709 393.918 10.884C393.767 10.9945 393.655 11.1918 393.582 11.4759L392.919 11.3854C392.979 11.1014 393.078 10.8727 393.216 10.6992C393.355 10.5233 393.554 10.3888 393.816 10.2958C394.077 10.2003 394.38 10.1526 394.724 10.1526C395.066 10.1526 395.344 10.1928 395.558 10.2732C395.771 10.3536 395.928 10.4554 396.029 10.5786C396.129 10.6992 396.2 10.8525 396.24 11.0385C396.263 11.1541 396.274 11.3628 396.274 11.6644V12.5692C396.274 13.2 396.288 13.5996 396.315 13.768C396.345 13.9339 396.403 14.0935 396.489 14.2468H395.78C395.71 14.1061 395.664 13.9415 395.644 13.753ZM395.588 12.2374C395.341 12.3379 394.972 12.4234 394.479 12.4938C394.2 12.534 394.003 12.5792 393.887 12.6295C393.772 12.6798 393.683 12.7539 393.62 12.8519C393.557 12.9474 393.526 13.0542 393.526 13.1724C393.526 13.3533 393.593 13.5041 393.729 13.6248C393.867 13.7454 394.068 13.8057 394.332 13.8057C394.594 13.8057 394.826 13.7492 395.03 13.6361C395.233 13.5205 395.383 13.3634 395.478 13.1648C395.551 13.0115 395.588 12.7853 395.588 12.4862V12.2374ZM397.333 9.50036V8.71997H398.012V9.50036H397.333ZM397.333 14.2468V10.2431H398.012V14.2468H397.333ZM399.049 14.2468V10.2431H399.659V10.8123C399.953 10.3725 400.378 10.1526 400.934 10.1526C401.175 10.1526 401.396 10.1966 401.597 10.2845C401.801 10.37 401.953 10.4831 402.053 10.6238C402.154 10.7646 402.224 10.9317 402.264 11.1252C402.29 11.2509 402.302 11.4708 402.302 11.785V14.2468H401.624V11.8114C401.624 11.5349 401.597 11.3288 401.544 11.1931C401.492 11.0549 401.397 10.9455 401.262 10.8651C401.128 10.7822 400.971 10.7407 400.79 10.7407C400.501 10.7407 400.251 10.8324 400.04 11.0159C399.832 11.1994 399.727 11.5475 399.727 12.0602V14.2468H399.049ZM403.539 14.2468V13.474H404.312V14.2468H403.539ZM408.108 12.7803L408.775 12.867C408.702 13.3269 408.515 13.6876 408.214 13.949C407.914 14.2079 407.546 14.3373 407.109 14.3373C406.561 14.3373 406.12 14.1589 405.786 13.802C405.454 13.4426 405.288 12.9286 405.288 12.26C405.288 11.8277 405.36 11.4495 405.503 11.1252C405.646 10.801 405.864 10.5585 406.155 10.3976C406.449 10.2343 406.768 10.1526 407.113 10.1526C407.547 10.1526 407.903 10.2632 408.18 10.4843C408.456 10.703 408.633 11.0147 408.711 11.4193L408.051 11.5211C407.989 11.2522 407.877 11.0498 407.716 10.9141C407.558 10.7784 407.365 10.7105 407.139 10.7105C406.797 10.7105 406.52 10.8337 406.306 11.08C406.092 11.3238 405.985 11.7109 405.985 12.2412C405.985 12.779 406.088 13.1699 406.295 13.4137C406.501 13.6574 406.77 13.7793 407.101 13.7793C407.368 13.7793 407.59 13.6977 407.769 13.5343C407.947 13.3709 408.06 13.1196 408.108 12.7803ZM409.103 12.2449C409.103 11.5035 409.309 10.9543 409.722 10.5974C410.066 10.3009 410.486 10.1526 410.981 10.1526C411.531 10.1526 411.981 10.3335 412.33 10.6955C412.68 11.0549 412.854 11.5525 412.854 12.1884C412.854 12.7036 412.777 13.1095 412.621 13.4061C412.467 13.7002 412.242 13.9289 411.946 14.0923C411.652 14.2556 411.33 14.3373 410.981 14.3373C410.42 14.3373 409.967 14.1576 409.62 13.7982C409.275 13.4388 409.103 12.921 409.103 12.2449ZM409.801 12.2449C409.801 12.7577 409.913 13.1422 410.136 13.3986C410.36 13.6524 410.641 13.7793 410.981 13.7793C411.318 13.7793 411.598 13.6512 411.821 13.3948C412.045 13.1384 412.157 12.7476 412.157 12.2223C412.157 11.7272 412.044 11.3527 411.818 11.0989C411.594 10.8425 411.315 10.7143 410.981 10.7143C410.641 10.7143 410.36 10.8412 410.136 11.0951C409.913 11.3489 409.801 11.7322 409.801 12.2449ZM413.654 14.2468V10.2431H414.261V10.8048C414.386 10.6088 414.553 10.4517 414.762 10.3335C414.971 10.2129 415.208 10.1526 415.475 10.1526C415.771 10.1526 416.014 10.2142 416.202 10.3373C416.393 10.4605 416.528 10.6326 416.606 10.8538C416.922 10.3863 417.334 10.1526 417.842 10.1526C418.239 10.1526 418.545 10.2632 418.758 10.4843C418.972 10.703 419.079 11.041 419.079 11.4985V14.2468H418.404V11.7247C418.404 11.4532 418.381 11.2585 418.336 11.1403C418.293 11.0197 418.214 10.9229 418.099 10.85C417.983 10.7771 417.847 10.7407 417.691 10.7407C417.41 10.7407 417.176 10.835 416.99 11.0235C416.804 11.2094 416.711 11.5085 416.711 11.9207V14.2468H416.033V11.6455C416.033 11.3439 415.977 11.1177 415.867 10.9669C415.756 10.8161 415.575 10.7407 415.324 10.7407C415.133 10.7407 414.956 10.791 414.792 10.8915C414.631 10.992 414.515 11.1391 414.442 11.3326C414.369 11.5261 414.332 11.8051 414.332 12.1695V14.2468H413.654Z" fill="black"/>
|
|
16
|
+
<path d="M52.77 8.59546L49.751 11.6145L52.77 14.6335" stroke="black" stroke-width="1.25791" stroke-linecap="round" stroke-linejoin="round"/>
|
|
17
|
+
<path d="M63.2769 14.4658L66.2959 11.4468L63.2769 8.42781" stroke="black" stroke-width="1.25791" stroke-linecap="round" stroke-linejoin="round"/>
|
|
18
|
+
<path d="M69.5615 5.03149C70.7425 5.03149 71.7001 5.98919 71.7002 7.17017V15.8918C71.7 17.0727 70.7424 18.0295 69.5615 18.0295H46.584C45.4032 18.0294 44.4455 17.0726 44.4453 15.8918V7.17017C44.4454 5.98929 45.4031 5.03166 46.584 5.03149H69.5615ZM58.7012 16.7717H69.5615C70.0477 16.7717 70.4422 16.378 70.4424 15.8918V7.17017C70.4423 6.68391 70.0478 6.28931 69.5615 6.28931H58.7012V16.7717ZM46.584 6.28931C46.0979 6.28947 45.7032 6.68401 45.7031 7.17017V15.8918C45.7034 16.3779 46.098 16.7716 46.584 16.7717H57.4434V6.28931H46.584Z" fill="black"/>
|
|
19
|
+
<circle cx="11.9341" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
20
|
+
<circle cx="22.9639" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
21
|
+
<circle cx="33.9937" cy="11.9346" r="3.03326" stroke="black" stroke-width="1.25791"/>
|
|
22
|
+
<defs>
|
|
23
|
+
<clipPath id="clip0_6077_1467">
|
|
24
|
+
<rect width="792.986" height="562.112" fill="white" transform="translate(1.45752 23.8496)"/>
|
|
25
|
+
</clipPath>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<svg width="796" height="587" viewBox="0 0 796 587" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_6077_1433)">
|
|
3
|
-
<rect width="792.515" height="561.777" transform="translate(1.4585 23.8359)" fill="white"/>
|
|
4
|
-
<rect x="133.544" y="23.8359" width="528.343" height="135.801" fill="#383E42"/>
|
|
5
|
-
<rect x="133.544" y="167.066" width="261.282" height="135.801" fill="#383E42"/>
|
|
6
|
-
<rect x="402.256" y="167.066" width="260.869" height="135.801" fill="#383E42"/>
|
|
7
|
-
<rect x="493.065" y="310.297" width="172.124" height="135.801" fill="#383E42"/>
|
|
8
|
-
<rect x="313.099" y="310.297" width="172.537" height="135.801" fill="#383E42"/>
|
|
9
|
-
<rect x="133.544" y="310.297" width="172.124" height="135.801" fill="#383E42"/>
|
|
10
|
-
<rect x="133.544" y="453.527" width="127.958" height="135.801" fill="#383E42"/>
|
|
11
|
-
<rect x="268.932" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
12
|
-
<rect x="403.907" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
13
|
-
<rect x="538.882" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
14
|
-
</g>
|
|
15
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M790.46 1.25781C792.244 1.25791 793.689 2.70369 793.689 4.4873V21.7907H1.25781V4.4873C1.25781 2.70363 2.70363 1.25781 4.4873 1.25781H790.46ZM1.25781 23.0486V581.878C1.25781 583.662 2.70363 585.108 4.4873 585.108H790.46C792.244 585.108 793.689 583.662 793.689 581.878V23.0486H1.25781ZM790.46 586.365C792.938 586.365 794.946 584.356 794.946 581.878V4.4873C794.946 2.00938 792.938 9.87925e-05 790.46 0H4.4873C2.00932 0 0 2.00932 0 4.4873V581.878C0 584.356 2.00932 586.365 4.4873 586.365H790.46Z" fill="black"/>
|
|
16
|
-
<rect x="252.899" y="5.65747" width="290.824" height="11.7335" rx="1.5086" stroke="black" stroke-width="1.25716"/>
|
|
17
|
-
<path d="M380.377 14.2429V13.738C380.123 14.1349 379.75 14.3333 379.258 14.3333C378.939 14.3333 378.645 14.2454 378.376 14.0696C378.11 13.8938 377.903 13.6489 377.754 13.3349C377.609 13.0184 377.536 12.6554 377.536 12.246C377.536 11.8466 377.602 11.4849 377.736 11.1609C377.869 10.8343 378.068 10.5844 378.335 10.4111C378.601 10.2378 378.899 10.1511 379.228 10.1511C379.469 10.1511 379.684 10.2026 379.872 10.3056C380.06 10.4061 380.214 10.5379 380.332 10.7012V8.71935H381.006V14.2429H380.377ZM378.233 12.246C378.233 12.7584 378.341 13.1415 378.557 13.3952C378.773 13.6489 379.028 13.7757 379.322 13.7757C379.618 13.7757 379.869 13.6551 380.075 13.414C380.284 13.1704 380.388 12.7999 380.388 12.3025C380.388 11.7549 380.283 11.353 380.072 11.0968C379.861 10.8406 379.601 10.7125 379.292 10.7125C378.99 10.7125 378.738 10.8356 378.534 11.0817C378.333 11.3279 378.233 11.716 378.233 12.246ZM381.824 12.2422C381.824 11.5012 382.03 10.9524 382.442 10.5957C382.786 10.2993 383.205 10.1511 383.7 10.1511C384.25 10.1511 384.7 10.332 385.049 10.6937C385.398 11.0529 385.573 11.5502 385.573 12.1857C385.573 12.7006 385.495 13.1063 385.339 13.4027C385.186 13.6966 384.961 13.9252 384.665 14.0884C384.371 14.2517 384.049 14.3333 383.7 14.3333C383.14 14.3333 382.686 14.1537 382.34 13.7946C381.996 13.4354 381.824 12.9179 381.824 12.2422ZM382.521 12.2422C382.521 12.7546 382.632 13.139 382.856 13.3952C383.08 13.6489 383.361 13.7757 383.7 13.7757C384.037 13.7757 384.317 13.6476 384.54 13.3914C384.764 13.1352 384.876 12.7446 384.876 12.2196C384.876 11.7248 384.763 11.3505 384.536 11.0968C384.313 10.8406 384.034 10.7125 383.7 10.7125C383.361 10.7125 383.08 10.8394 382.856 11.0931C382.632 11.3467 382.521 11.7298 382.521 12.2422ZM386.371 14.2429V10.2415H386.978V10.8029C387.104 10.607 387.271 10.45 387.479 10.332C387.688 10.2114 387.925 10.1511 388.191 10.1511C388.488 10.1511 388.73 10.2126 388.918 10.3357C389.109 10.4588 389.244 10.6309 389.322 10.8519C389.638 10.3847 390.05 10.1511 390.557 10.1511C390.954 10.1511 391.259 10.2616 391.473 10.4827C391.686 10.7012 391.793 11.039 391.793 11.4962V14.2429H391.119V11.7223C391.119 11.451 391.096 11.2563 391.051 11.1383C391.008 11.0177 390.929 10.921 390.814 10.8481C390.698 10.7753 390.562 10.7389 390.407 10.7389C390.125 10.7389 389.892 10.8331 389.706 11.0215C389.52 11.2073 389.427 11.5063 389.427 11.9182V14.2429H388.749V11.6431C388.749 11.3417 388.694 11.1157 388.583 10.9649C388.473 10.8142 388.292 10.7389 388.041 10.7389C387.85 10.7389 387.673 10.7891 387.509 10.8896C387.348 10.9901 387.232 11.137 387.159 11.3304C387.086 11.5238 387.05 11.8027 387.05 12.1669V14.2429H386.371ZM395.41 13.7493C395.159 13.9628 394.917 14.1136 394.683 14.2015C394.452 14.2894 394.203 14.3333 393.937 14.3333C393.498 14.3333 393.16 14.2266 392.924 14.0131C392.687 13.7971 392.569 13.522 392.569 13.1879C392.569 12.992 392.613 12.8137 392.701 12.6529C392.792 12.4896 392.908 12.359 393.052 12.2611C393.197 12.1631 393.361 12.089 393.541 12.0388C393.675 12.0036 393.876 11.9697 394.144 11.937C394.692 11.8717 395.095 11.7939 395.354 11.7034C395.356 11.6105 395.358 11.5515 395.358 11.5263C395.358 11.25 395.293 11.0554 395.165 10.9423C394.992 10.7891 394.735 10.7125 394.393 10.7125C394.074 10.7125 393.838 10.769 393.685 10.8821C393.534 10.9926 393.422 11.1898 393.349 11.4736L392.686 11.3832C392.746 11.0993 392.846 10.8708 392.984 10.6974C393.122 10.5216 393.322 10.3872 393.583 10.2943C393.844 10.1988 394.147 10.1511 394.491 10.1511C394.833 10.1511 395.11 10.1913 395.324 10.2717C395.537 10.3521 395.694 10.4538 395.795 10.5769C395.895 10.6974 395.965 10.8507 396.006 11.0365C396.028 11.1521 396.04 11.3606 396.04 11.662V12.5663C396.04 13.1967 396.053 13.5961 396.081 13.7644C396.111 13.9302 396.169 14.0897 396.254 14.2429H395.546C395.476 14.1023 395.43 13.9377 395.41 13.7493ZM395.354 12.2347C395.108 12.3352 394.738 12.4206 394.246 12.4909C393.967 12.5311 393.77 12.5763 393.655 12.6265C393.539 12.6768 393.45 12.7509 393.387 12.8488C393.324 12.9443 393.293 13.051 393.293 13.1691C393.293 13.35 393.361 13.5007 393.496 13.6212C393.634 13.7418 393.835 13.8021 394.099 13.8021C394.36 13.8021 394.593 13.7456 394.796 13.6325C395 13.517 395.149 13.36 395.245 13.1616C395.317 13.0083 395.354 12.7823 395.354 12.4834V12.2347ZM397.098 9.49928V8.71935H397.776V9.49928H397.098ZM397.098 14.2429V10.2415H397.776V14.2429H397.098ZM398.813 14.2429V10.2415H399.423V10.8105C399.717 10.3709 400.141 10.1511 400.696 10.1511C400.938 10.1511 401.159 10.1951 401.36 10.283C401.563 10.3684 401.715 10.4814 401.816 10.6221C401.916 10.7627 401.986 10.9298 402.027 11.1232C402.052 11.2488 402.064 11.4686 402.064 11.7826V14.2429H401.386V11.8089C401.386 11.5326 401.36 11.3267 401.307 11.191C401.254 11.0529 401.16 10.9436 401.024 10.8632C400.891 10.7803 400.734 10.7389 400.553 10.7389C400.264 10.7389 400.015 10.8306 399.804 11.0139C399.595 11.1973 399.491 11.5452 399.491 12.0576V14.2429H398.813ZM403.3 14.2429V13.4705H404.072V14.2429H403.3ZM407.867 12.7773L408.533 12.8639C408.461 13.3236 408.274 13.684 407.972 13.9453C407.673 14.204 407.305 14.3333 406.868 14.3333C406.321 14.3333 405.88 14.155 405.546 13.7983C405.214 13.4391 405.048 12.9255 405.048 12.2573C405.048 11.8253 405.12 11.4472 405.263 11.1232C405.406 10.7992 405.624 10.5568 405.915 10.396C406.209 10.2327 406.528 10.1511 406.872 10.1511C407.306 10.1511 407.662 10.2616 407.938 10.4827C408.214 10.7012 408.392 11.0127 408.469 11.4171L407.81 11.5188C407.747 11.25 407.636 11.0478 407.475 10.9122C407.317 10.7766 407.124 10.7087 406.898 10.7087C406.557 10.7087 406.279 10.8318 406.066 11.078C405.852 11.3216 405.745 11.7085 405.745 12.2385C405.745 12.776 405.848 13.1666 406.054 13.4102C406.26 13.6539 406.529 13.7757 406.861 13.7757C407.127 13.7757 407.349 13.6941 407.527 13.5308C407.706 13.3675 407.819 13.1164 407.867 12.7773ZM408.861 12.2422C408.861 11.5012 409.067 10.9524 409.479 10.5957C409.823 10.2993 410.243 10.1511 410.738 10.1511C411.288 10.1511 411.737 10.332 412.087 10.6937C412.436 11.0529 412.61 11.5502 412.61 12.1857C412.61 12.7006 412.532 13.1063 412.377 13.4027C412.223 13.6966 411.999 13.9252 411.702 14.0884C411.408 14.2517 411.087 14.3333 410.738 14.3333C410.177 14.3333 409.724 14.1537 409.377 13.7946C409.033 13.4354 408.861 12.9179 408.861 12.2422ZM409.558 12.2422C409.558 12.7546 409.67 13.139 409.894 13.3952C410.117 13.6489 410.399 13.7757 410.738 13.7757C411.074 13.7757 411.354 13.6476 411.578 13.3914C411.801 13.1352 411.913 12.7446 411.913 12.2196C411.913 11.7248 411.8 11.3505 411.574 11.0968C411.351 10.8406 411.072 10.7125 410.738 10.7125C410.399 10.7125 410.117 10.8394 409.894 11.0931C409.67 11.3467 409.558 11.7298 409.558 12.2422ZM413.409 14.2429V10.2415H414.016V10.8029C414.141 10.607 414.308 10.45 414.517 10.332C414.725 10.2114 414.963 10.1511 415.229 10.1511C415.525 10.1511 415.768 10.2126 415.956 10.3357C416.147 10.4588 416.281 10.6309 416.359 10.8519C416.676 10.3847 417.088 10.1511 417.595 10.1511C417.992 10.1511 418.297 10.2616 418.511 10.4827C418.724 10.7012 418.831 11.039 418.831 11.4962V14.2429H418.156V11.7223C418.156 11.451 418.134 11.2563 418.089 11.1383C418.046 11.0177 417.967 10.921 417.851 10.8481C417.736 10.7753 417.6 10.7389 417.444 10.7389C417.163 10.7389 416.929 10.8331 416.743 11.0215C416.558 11.2073 416.465 11.5063 416.465 11.9182V14.2429H415.786V11.6431C415.786 11.3417 415.731 11.1157 415.621 10.9649C415.51 10.8142 415.329 10.7389 415.078 10.7389C414.887 10.7389 414.71 10.7891 414.547 10.8896C414.386 10.9901 414.269 11.137 414.196 11.3304C414.124 11.5238 414.087 11.8027 414.087 12.1669V14.2429H413.409Z" fill="black"/>
|
|
18
|
-
<path d="M52.7393 8.59106L49.722 11.6083L52.7393 14.6255" stroke="black" stroke-width="1.25716" stroke-linecap="round" stroke-linejoin="round"/>
|
|
19
|
-
<path d="M63.2402 14.4578L66.2574 11.4406L63.2402 8.42334" stroke="black" stroke-width="1.25716" stroke-linecap="round" stroke-linejoin="round"/>
|
|
20
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.5215 6.28662C70.0075 6.28662 70.4014 6.68049 70.4014 7.1665V15.8823C70.4014 16.3683 70.0075 16.7622 69.5215 16.7622H58.6684L58.6684 6.28662H69.5215ZM57.4106 6.28662L57.4106 16.7622H46.5576C46.0716 16.7622 45.6777 16.3683 45.6777 15.8823V7.1665C45.6777 6.68048 46.0716 6.28662 46.5576 6.28662H57.4106ZM69.5215 18.02C70.7018 18.02 71.6592 17.0627 71.6592 15.8823V7.1665C71.6592 5.98617 70.7018 5.02881 69.5215 5.02881H46.5576C45.3773 5.02881 44.4199 5.98617 44.4199 7.1665V15.8823C44.4199 17.0627 45.3773 18.02 46.5576 18.02H69.5215Z" fill="black"/>
|
|
21
|
-
<circle cx="11.9279" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
22
|
-
<circle cx="22.9514" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
23
|
-
<circle cx="33.9748" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
24
|
-
<defs>
|
|
25
|
-
<clipPath id="clip0_6077_1433">
|
|
26
|
-
<rect width="792.515" height="561.777" fill="white" transform="translate(1.4585 23.8359)"/>
|
|
27
|
-
</clipPath>
|
|
28
|
-
</defs>
|
|
29
|
-
</svg>
|
|
1
|
+
<svg width="796" height="587" viewBox="0 0 796 587" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_6077_1433)">
|
|
3
|
+
<rect width="792.515" height="561.777" transform="translate(1.4585 23.8359)" fill="white"/>
|
|
4
|
+
<rect x="133.544" y="23.8359" width="528.343" height="135.801" fill="#383E42"/>
|
|
5
|
+
<rect x="133.544" y="167.066" width="261.282" height="135.801" fill="#383E42"/>
|
|
6
|
+
<rect x="402.256" y="167.066" width="260.869" height="135.801" fill="#383E42"/>
|
|
7
|
+
<rect x="493.065" y="310.297" width="172.124" height="135.801" fill="#383E42"/>
|
|
8
|
+
<rect x="313.099" y="310.297" width="172.537" height="135.801" fill="#383E42"/>
|
|
9
|
+
<rect x="133.544" y="310.297" width="172.124" height="135.801" fill="#383E42"/>
|
|
10
|
+
<rect x="133.544" y="453.527" width="127.958" height="135.801" fill="#383E42"/>
|
|
11
|
+
<rect x="268.932" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
12
|
+
<rect x="403.907" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
13
|
+
<rect x="538.882" y="453.527" width="127.545" height="135.801" fill="#383E42"/>
|
|
14
|
+
</g>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M790.46 1.25781C792.244 1.25791 793.689 2.70369 793.689 4.4873V21.7907H1.25781V4.4873C1.25781 2.70363 2.70363 1.25781 4.4873 1.25781H790.46ZM1.25781 23.0486V581.878C1.25781 583.662 2.70363 585.108 4.4873 585.108H790.46C792.244 585.108 793.689 583.662 793.689 581.878V23.0486H1.25781ZM790.46 586.365C792.938 586.365 794.946 584.356 794.946 581.878V4.4873C794.946 2.00938 792.938 9.87925e-05 790.46 0H4.4873C2.00932 0 0 2.00932 0 4.4873V581.878C0 584.356 2.00932 586.365 4.4873 586.365H790.46Z" fill="black"/>
|
|
16
|
+
<rect x="252.899" y="5.65747" width="290.824" height="11.7335" rx="1.5086" stroke="black" stroke-width="1.25716"/>
|
|
17
|
+
<path d="M380.377 14.2429V13.738C380.123 14.1349 379.75 14.3333 379.258 14.3333C378.939 14.3333 378.645 14.2454 378.376 14.0696C378.11 13.8938 377.903 13.6489 377.754 13.3349C377.609 13.0184 377.536 12.6554 377.536 12.246C377.536 11.8466 377.602 11.4849 377.736 11.1609C377.869 10.8343 378.068 10.5844 378.335 10.4111C378.601 10.2378 378.899 10.1511 379.228 10.1511C379.469 10.1511 379.684 10.2026 379.872 10.3056C380.06 10.4061 380.214 10.5379 380.332 10.7012V8.71935H381.006V14.2429H380.377ZM378.233 12.246C378.233 12.7584 378.341 13.1415 378.557 13.3952C378.773 13.6489 379.028 13.7757 379.322 13.7757C379.618 13.7757 379.869 13.6551 380.075 13.414C380.284 13.1704 380.388 12.7999 380.388 12.3025C380.388 11.7549 380.283 11.353 380.072 11.0968C379.861 10.8406 379.601 10.7125 379.292 10.7125C378.99 10.7125 378.738 10.8356 378.534 11.0817C378.333 11.3279 378.233 11.716 378.233 12.246ZM381.824 12.2422C381.824 11.5012 382.03 10.9524 382.442 10.5957C382.786 10.2993 383.205 10.1511 383.7 10.1511C384.25 10.1511 384.7 10.332 385.049 10.6937C385.398 11.0529 385.573 11.5502 385.573 12.1857C385.573 12.7006 385.495 13.1063 385.339 13.4027C385.186 13.6966 384.961 13.9252 384.665 14.0884C384.371 14.2517 384.049 14.3333 383.7 14.3333C383.14 14.3333 382.686 14.1537 382.34 13.7946C381.996 13.4354 381.824 12.9179 381.824 12.2422ZM382.521 12.2422C382.521 12.7546 382.632 13.139 382.856 13.3952C383.08 13.6489 383.361 13.7757 383.7 13.7757C384.037 13.7757 384.317 13.6476 384.54 13.3914C384.764 13.1352 384.876 12.7446 384.876 12.2196C384.876 11.7248 384.763 11.3505 384.536 11.0968C384.313 10.8406 384.034 10.7125 383.7 10.7125C383.361 10.7125 383.08 10.8394 382.856 11.0931C382.632 11.3467 382.521 11.7298 382.521 12.2422ZM386.371 14.2429V10.2415H386.978V10.8029C387.104 10.607 387.271 10.45 387.479 10.332C387.688 10.2114 387.925 10.1511 388.191 10.1511C388.488 10.1511 388.73 10.2126 388.918 10.3357C389.109 10.4588 389.244 10.6309 389.322 10.8519C389.638 10.3847 390.05 10.1511 390.557 10.1511C390.954 10.1511 391.259 10.2616 391.473 10.4827C391.686 10.7012 391.793 11.039 391.793 11.4962V14.2429H391.119V11.7223C391.119 11.451 391.096 11.2563 391.051 11.1383C391.008 11.0177 390.929 10.921 390.814 10.8481C390.698 10.7753 390.562 10.7389 390.407 10.7389C390.125 10.7389 389.892 10.8331 389.706 11.0215C389.52 11.2073 389.427 11.5063 389.427 11.9182V14.2429H388.749V11.6431C388.749 11.3417 388.694 11.1157 388.583 10.9649C388.473 10.8142 388.292 10.7389 388.041 10.7389C387.85 10.7389 387.673 10.7891 387.509 10.8896C387.348 10.9901 387.232 11.137 387.159 11.3304C387.086 11.5238 387.05 11.8027 387.05 12.1669V14.2429H386.371ZM395.41 13.7493C395.159 13.9628 394.917 14.1136 394.683 14.2015C394.452 14.2894 394.203 14.3333 393.937 14.3333C393.498 14.3333 393.16 14.2266 392.924 14.0131C392.687 13.7971 392.569 13.522 392.569 13.1879C392.569 12.992 392.613 12.8137 392.701 12.6529C392.792 12.4896 392.908 12.359 393.052 12.2611C393.197 12.1631 393.361 12.089 393.541 12.0388C393.675 12.0036 393.876 11.9697 394.144 11.937C394.692 11.8717 395.095 11.7939 395.354 11.7034C395.356 11.6105 395.358 11.5515 395.358 11.5263C395.358 11.25 395.293 11.0554 395.165 10.9423C394.992 10.7891 394.735 10.7125 394.393 10.7125C394.074 10.7125 393.838 10.769 393.685 10.8821C393.534 10.9926 393.422 11.1898 393.349 11.4736L392.686 11.3832C392.746 11.0993 392.846 10.8708 392.984 10.6974C393.122 10.5216 393.322 10.3872 393.583 10.2943C393.844 10.1988 394.147 10.1511 394.491 10.1511C394.833 10.1511 395.11 10.1913 395.324 10.2717C395.537 10.3521 395.694 10.4538 395.795 10.5769C395.895 10.6974 395.965 10.8507 396.006 11.0365C396.028 11.1521 396.04 11.3606 396.04 11.662V12.5663C396.04 13.1967 396.053 13.5961 396.081 13.7644C396.111 13.9302 396.169 14.0897 396.254 14.2429H395.546C395.476 14.1023 395.43 13.9377 395.41 13.7493ZM395.354 12.2347C395.108 12.3352 394.738 12.4206 394.246 12.4909C393.967 12.5311 393.77 12.5763 393.655 12.6265C393.539 12.6768 393.45 12.7509 393.387 12.8488C393.324 12.9443 393.293 13.051 393.293 13.1691C393.293 13.35 393.361 13.5007 393.496 13.6212C393.634 13.7418 393.835 13.8021 394.099 13.8021C394.36 13.8021 394.593 13.7456 394.796 13.6325C395 13.517 395.149 13.36 395.245 13.1616C395.317 13.0083 395.354 12.7823 395.354 12.4834V12.2347ZM397.098 9.49928V8.71935H397.776V9.49928H397.098ZM397.098 14.2429V10.2415H397.776V14.2429H397.098ZM398.813 14.2429V10.2415H399.423V10.8105C399.717 10.3709 400.141 10.1511 400.696 10.1511C400.938 10.1511 401.159 10.1951 401.36 10.283C401.563 10.3684 401.715 10.4814 401.816 10.6221C401.916 10.7627 401.986 10.9298 402.027 11.1232C402.052 11.2488 402.064 11.4686 402.064 11.7826V14.2429H401.386V11.8089C401.386 11.5326 401.36 11.3267 401.307 11.191C401.254 11.0529 401.16 10.9436 401.024 10.8632C400.891 10.7803 400.734 10.7389 400.553 10.7389C400.264 10.7389 400.015 10.8306 399.804 11.0139C399.595 11.1973 399.491 11.5452 399.491 12.0576V14.2429H398.813ZM403.3 14.2429V13.4705H404.072V14.2429H403.3ZM407.867 12.7773L408.533 12.8639C408.461 13.3236 408.274 13.684 407.972 13.9453C407.673 14.204 407.305 14.3333 406.868 14.3333C406.321 14.3333 405.88 14.155 405.546 13.7983C405.214 13.4391 405.048 12.9255 405.048 12.2573C405.048 11.8253 405.12 11.4472 405.263 11.1232C405.406 10.7992 405.624 10.5568 405.915 10.396C406.209 10.2327 406.528 10.1511 406.872 10.1511C407.306 10.1511 407.662 10.2616 407.938 10.4827C408.214 10.7012 408.392 11.0127 408.469 11.4171L407.81 11.5188C407.747 11.25 407.636 11.0478 407.475 10.9122C407.317 10.7766 407.124 10.7087 406.898 10.7087C406.557 10.7087 406.279 10.8318 406.066 11.078C405.852 11.3216 405.745 11.7085 405.745 12.2385C405.745 12.776 405.848 13.1666 406.054 13.4102C406.26 13.6539 406.529 13.7757 406.861 13.7757C407.127 13.7757 407.349 13.6941 407.527 13.5308C407.706 13.3675 407.819 13.1164 407.867 12.7773ZM408.861 12.2422C408.861 11.5012 409.067 10.9524 409.479 10.5957C409.823 10.2993 410.243 10.1511 410.738 10.1511C411.288 10.1511 411.737 10.332 412.087 10.6937C412.436 11.0529 412.61 11.5502 412.61 12.1857C412.61 12.7006 412.532 13.1063 412.377 13.4027C412.223 13.6966 411.999 13.9252 411.702 14.0884C411.408 14.2517 411.087 14.3333 410.738 14.3333C410.177 14.3333 409.724 14.1537 409.377 13.7946C409.033 13.4354 408.861 12.9179 408.861 12.2422ZM409.558 12.2422C409.558 12.7546 409.67 13.139 409.894 13.3952C410.117 13.6489 410.399 13.7757 410.738 13.7757C411.074 13.7757 411.354 13.6476 411.578 13.3914C411.801 13.1352 411.913 12.7446 411.913 12.2196C411.913 11.7248 411.8 11.3505 411.574 11.0968C411.351 10.8406 411.072 10.7125 410.738 10.7125C410.399 10.7125 410.117 10.8394 409.894 11.0931C409.67 11.3467 409.558 11.7298 409.558 12.2422ZM413.409 14.2429V10.2415H414.016V10.8029C414.141 10.607 414.308 10.45 414.517 10.332C414.725 10.2114 414.963 10.1511 415.229 10.1511C415.525 10.1511 415.768 10.2126 415.956 10.3357C416.147 10.4588 416.281 10.6309 416.359 10.8519C416.676 10.3847 417.088 10.1511 417.595 10.1511C417.992 10.1511 418.297 10.2616 418.511 10.4827C418.724 10.7012 418.831 11.039 418.831 11.4962V14.2429H418.156V11.7223C418.156 11.451 418.134 11.2563 418.089 11.1383C418.046 11.0177 417.967 10.921 417.851 10.8481C417.736 10.7753 417.6 10.7389 417.444 10.7389C417.163 10.7389 416.929 10.8331 416.743 11.0215C416.558 11.2073 416.465 11.5063 416.465 11.9182V14.2429H415.786V11.6431C415.786 11.3417 415.731 11.1157 415.621 10.9649C415.51 10.8142 415.329 10.7389 415.078 10.7389C414.887 10.7389 414.71 10.7891 414.547 10.8896C414.386 10.9901 414.269 11.137 414.196 11.3304C414.124 11.5238 414.087 11.8027 414.087 12.1669V14.2429H413.409Z" fill="black"/>
|
|
18
|
+
<path d="M52.7393 8.59106L49.722 11.6083L52.7393 14.6255" stroke="black" stroke-width="1.25716" stroke-linecap="round" stroke-linejoin="round"/>
|
|
19
|
+
<path d="M63.2402 14.4578L66.2574 11.4406L63.2402 8.42334" stroke="black" stroke-width="1.25716" stroke-linecap="round" stroke-linejoin="round"/>
|
|
20
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M69.5215 6.28662C70.0075 6.28662 70.4014 6.68049 70.4014 7.1665V15.8823C70.4014 16.3683 70.0075 16.7622 69.5215 16.7622H58.6684L58.6684 6.28662H69.5215ZM57.4106 6.28662L57.4106 16.7622H46.5576C46.0716 16.7622 45.6777 16.3683 45.6777 15.8823V7.1665C45.6777 6.68048 46.0716 6.28662 46.5576 6.28662H57.4106ZM69.5215 18.02C70.7018 18.02 71.6592 17.0627 71.6592 15.8823V7.1665C71.6592 5.98617 70.7018 5.02881 69.5215 5.02881H46.5576C45.3773 5.02881 44.4199 5.98617 44.4199 7.1665V15.8823C44.4199 17.0627 45.3773 18.02 46.5576 18.02H69.5215Z" fill="black"/>
|
|
21
|
+
<circle cx="11.9279" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
22
|
+
<circle cx="22.9514" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
23
|
+
<circle cx="33.9748" cy="11.9279" r="3.03145" stroke="black" stroke-width="1.25716"/>
|
|
24
|
+
<defs>
|
|
25
|
+
<clipPath id="clip0_6077_1433">
|
|
26
|
+
<rect width="792.515" height="561.777" fill="white" transform="translate(1.4585 23.8359)"/>
|
|
27
|
+
</clipPath>
|
|
28
|
+
</defs>
|
|
29
|
+
</svg>
|
package/dist/assets/globe.svg
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="10" cy="10" r="8.5" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
3
|
-
<ellipse cx="10" cy="10" rx="3.5" ry="8.5" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
4
|
-
<path d="M2 10 H18" stroke="currentColor" stroke-width="1.5"/>
|
|
5
|
-
<path d="M4 6 Q10 6.5 16 6" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
6
|
-
<path d="M4 14 Q10 13.5 16 14" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
7
|
-
</svg>
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="10" cy="10" r="8.5" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
3
|
+
<ellipse cx="10" cy="10" rx="3.5" ry="8.5" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
4
|
+
<path d="M2 10 H18" stroke="currentColor" stroke-width="1.5"/>
|
|
5
|
+
<path d="M4 6 Q10 6.5 16 6" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
6
|
+
<path d="M4 14 Q10 13.5 16 14" stroke="currentColor" stroke-width="1.5" fill="none"/>
|
|
7
|
+
</svg>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 113 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g id="footer-logo-LG 1" clip-path="url(#clip0_0_4)">
|
|
3
|
-
<path id="Vector" d="M16.874 23.0644H26.9081V26.4819H12.6606V7.6001H16.8752V23.0644H16.874Z" fill="var(--fill-0, white)"/>
|
|
4
|
-
<path id="Vector_2" d="M42.3649 22.3792C41.3261 25.7463 38.3457 26.8497 35.7897 26.8497C31.5728 26.8497 28.3423 24.9552 28.3423 19.1976C28.3423 17.514 28.9597 12.1238 35.5072 12.1238C38.4587 12.1238 42.5326 13.4393 42.5326 19.8293V20.4859H32.2755C32.3891 21.5383 32.6133 23.9045 35.7891 23.9045C36.885 23.9045 38.0085 23.3795 38.3181 22.3786H42.3643V22.3798L42.3649 22.3792ZM38.4876 18.0936C38.2622 15.8328 36.7178 15.1478 35.4525 15.1478C33.5991 15.1478 32.6145 16.2524 32.3903 18.0936H38.4876Z" fill="var(--fill-0, white)"/>
|
|
5
|
-
<path id="Vector_3" d="M52.2556 26.2459C50.4011 31.4264 49.8944 32.1102 46.4661 32.1102C45.9317 32.1102 45.2579 32.0853 44.6964 32.0581V29.1111C44.863 29.1384 45.116 29.1644 45.4544 29.1644C46.8881 29.1644 47.675 28.9795 48.0399 27.0613L42.5317 12.4924H46.9152L50.118 22.8006H50.174L53.2379 12.4924H57.3959L52.2556 26.2459Z" fill="var(--fill-0, white)"/>
|
|
6
|
-
<path id="Vector_4" d="M62.8734 14.3063H62.9293C63.5484 13.4121 64.729 12.1238 67.2568 12.1238C70.5456 12.1238 73.4677 14.4912 73.4677 19.3291C73.4677 23.1686 71.6144 26.8497 67.1727 26.8497C65.5424 26.8497 63.8003 26.2968 62.8445 24.7194H62.7886V26.4811H58.939V7.59937H62.8728V14.3057H62.874L62.8734 14.3063ZM66.0774 15.3054C63.3801 15.3054 62.705 17.5662 62.705 19.802C62.705 21.8803 63.6891 23.8263 66.191 23.8263C68.6929 23.8263 69.4227 21.2491 69.4227 19.5934C69.4215 17.3825 68.5769 15.3054 66.0774 15.3054Z" fill="var(--fill-0, white)"/>
|
|
7
|
-
<path id="Vector_5" d="M82.6719 26.8523C78.6528 26.8523 75.0273 24.5382 75.0273 19.4881C75.0273 14.438 78.6516 12.1257 82.6719 12.1257C86.6922 12.1257 90.3159 14.4398 90.3159 19.4881C90.3159 24.5364 86.6893 26.8523 82.6719 26.8523ZM82.6719 15.2274C79.6368 15.2274 79.0753 17.6991 79.0753 19.4869C79.0753 21.2748 79.6368 23.7488 82.6719 23.7488C85.707 23.7488 86.2697 21.276 86.2697 19.4869C86.2697 17.6979 85.7064 15.2274 82.6719 15.2274Z" fill="var(--fill-0, white)"/>
|
|
8
|
-
<path id="Vector_6" d="M96.1389 26.4819H92.2051V7.6001H96.1389V26.4819Z" fill="var(--fill-0, white)"/>
|
|
9
|
-
<path id="Vector_7" d="M112.911 26.4818H109.061V24.72H109.004C108.049 26.2975 106.307 26.8504 104.677 26.8504C100.235 26.8504 98.3818 23.1686 98.3818 19.3298C98.3818 14.4918 101.304 12.1244 104.591 12.1244C107.121 12.1244 108.302 13.4133 108.918 14.307H108.977V7.60059H112.911V26.4824L112.911 26.4818ZM105.66 23.8264C108.16 23.8264 109.144 21.8809 109.144 19.8021C109.144 17.5662 108.47 15.3055 105.77 15.3055C103.27 15.3055 102.426 17.3819 102.426 19.5935C102.427 21.248 103.128 23.8264 105.66 23.8264Z" fill="var(--fill-0, white)"/>
|
|
10
|
-
<path id="Vector_8" d="M11.034 -0.110107H0V10.4997C1.12176 5.16871 5.48933 0.970189 11.034 -0.110107Z" fill="var(--fill-0, white)"/>
|
|
11
|
-
<path id="Vector_9" d="M0 15.9199V26.5309H11.034C5.48933 25.4512 1.12176 21.2521 0 15.9199Z" fill="var(--fill-0, white)"/>
|
|
12
|
-
<path id="Vector_10" d="M27.7107 10.5002V-0.109619H16.6768C22.2208 0.970677 26.5872 5.1692 27.7107 10.5002Z" fill="var(--fill-0, white)"/>
|
|
13
|
-
</g>
|
|
14
|
-
<defs>
|
|
15
|
-
<clipPath id="clip0_0_4">
|
|
16
|
-
<rect width="113" height="32" fill="white"/>
|
|
17
|
-
</clipPath>
|
|
18
|
-
</defs>
|
|
19
|
-
</svg>
|
|
1
|
+
<svg preserveAspectRatio="none" width="100%" height="100%" overflow="visible" style="display: block;" viewBox="0 0 113 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="footer-logo-LG 1" clip-path="url(#clip0_0_4)">
|
|
3
|
+
<path id="Vector" d="M16.874 23.0644H26.9081V26.4819H12.6606V7.6001H16.8752V23.0644H16.874Z" fill="var(--fill-0, white)"/>
|
|
4
|
+
<path id="Vector_2" d="M42.3649 22.3792C41.3261 25.7463 38.3457 26.8497 35.7897 26.8497C31.5728 26.8497 28.3423 24.9552 28.3423 19.1976C28.3423 17.514 28.9597 12.1238 35.5072 12.1238C38.4587 12.1238 42.5326 13.4393 42.5326 19.8293V20.4859H32.2755C32.3891 21.5383 32.6133 23.9045 35.7891 23.9045C36.885 23.9045 38.0085 23.3795 38.3181 22.3786H42.3643V22.3798L42.3649 22.3792ZM38.4876 18.0936C38.2622 15.8328 36.7178 15.1478 35.4525 15.1478C33.5991 15.1478 32.6145 16.2524 32.3903 18.0936H38.4876Z" fill="var(--fill-0, white)"/>
|
|
5
|
+
<path id="Vector_3" d="M52.2556 26.2459C50.4011 31.4264 49.8944 32.1102 46.4661 32.1102C45.9317 32.1102 45.2579 32.0853 44.6964 32.0581V29.1111C44.863 29.1384 45.116 29.1644 45.4544 29.1644C46.8881 29.1644 47.675 28.9795 48.0399 27.0613L42.5317 12.4924H46.9152L50.118 22.8006H50.174L53.2379 12.4924H57.3959L52.2556 26.2459Z" fill="var(--fill-0, white)"/>
|
|
6
|
+
<path id="Vector_4" d="M62.8734 14.3063H62.9293C63.5484 13.4121 64.729 12.1238 67.2568 12.1238C70.5456 12.1238 73.4677 14.4912 73.4677 19.3291C73.4677 23.1686 71.6144 26.8497 67.1727 26.8497C65.5424 26.8497 63.8003 26.2968 62.8445 24.7194H62.7886V26.4811H58.939V7.59937H62.8728V14.3057H62.874L62.8734 14.3063ZM66.0774 15.3054C63.3801 15.3054 62.705 17.5662 62.705 19.802C62.705 21.8803 63.6891 23.8263 66.191 23.8263C68.6929 23.8263 69.4227 21.2491 69.4227 19.5934C69.4215 17.3825 68.5769 15.3054 66.0774 15.3054Z" fill="var(--fill-0, white)"/>
|
|
7
|
+
<path id="Vector_5" d="M82.6719 26.8523C78.6528 26.8523 75.0273 24.5382 75.0273 19.4881C75.0273 14.438 78.6516 12.1257 82.6719 12.1257C86.6922 12.1257 90.3159 14.4398 90.3159 19.4881C90.3159 24.5364 86.6893 26.8523 82.6719 26.8523ZM82.6719 15.2274C79.6368 15.2274 79.0753 17.6991 79.0753 19.4869C79.0753 21.2748 79.6368 23.7488 82.6719 23.7488C85.707 23.7488 86.2697 21.276 86.2697 19.4869C86.2697 17.6979 85.7064 15.2274 82.6719 15.2274Z" fill="var(--fill-0, white)"/>
|
|
8
|
+
<path id="Vector_6" d="M96.1389 26.4819H92.2051V7.6001H96.1389V26.4819Z" fill="var(--fill-0, white)"/>
|
|
9
|
+
<path id="Vector_7" d="M112.911 26.4818H109.061V24.72H109.004C108.049 26.2975 106.307 26.8504 104.677 26.8504C100.235 26.8504 98.3818 23.1686 98.3818 19.3298C98.3818 14.4918 101.304 12.1244 104.591 12.1244C107.121 12.1244 108.302 13.4133 108.918 14.307H108.977V7.60059H112.911V26.4824L112.911 26.4818ZM105.66 23.8264C108.16 23.8264 109.144 21.8809 109.144 19.8021C109.144 17.5662 108.47 15.3055 105.77 15.3055C103.27 15.3055 102.426 17.3819 102.426 19.5935C102.427 21.248 103.128 23.8264 105.66 23.8264Z" fill="var(--fill-0, white)"/>
|
|
10
|
+
<path id="Vector_8" d="M11.034 -0.110107H0V10.4997C1.12176 5.16871 5.48933 0.970189 11.034 -0.110107Z" fill="var(--fill-0, white)"/>
|
|
11
|
+
<path id="Vector_9" d="M0 15.9199V26.5309H11.034C5.48933 25.4512 1.12176 21.2521 0 15.9199Z" fill="var(--fill-0, white)"/>
|
|
12
|
+
<path id="Vector_10" d="M27.7107 10.5002V-0.109619H16.6768C22.2208 0.970677 26.5872 5.1692 27.7107 10.5002Z" fill="var(--fill-0, white)"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_0_4">
|
|
16
|
+
<rect width="113" height="32" fill="white"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|