@mundogamernetwork/shared-ui 1.16.14 → 1.16.16

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.
@@ -344,7 +344,12 @@ const handleToggleOnline = () => {
344
344
  width: 40px;
345
345
  border-radius: 0;
346
346
  background: #555;
347
- color: var(--ck-highlight-marker-blue);
347
+ // Was a hardcoded blue (--ck-highlight-marker-blue), the same on
348
+ // every host regardless of that platform's own accent — fell
349
+ // through to the same fallback chain .plans-pricing-link already
350
+ // uses below, so this now actually reads as each host's own
351
+ // brand color instead of a fixed blue nobody configured.
352
+ color: var(--highlight-color, var(--header-active-fg, var(--active)));
348
353
 
349
354
  i {
350
355
  font-size: 1.6rem !important;
@@ -521,7 +526,9 @@ const handleToggleOnline = () => {
521
526
  justify-content: center;
522
527
  height: 32px !important;
523
528
  padding: 0 12px;
524
- border: 1px solid var(--ck-highlight-marker-blue);
529
+ // Was a hardcoded blue on every host — see the .no-avatar-wrapper
530
+ // comment above for why this fallback chain replaces it.
531
+ border: 1px solid var(--highlight-color, var(--header-active-fg, var(--active)));
525
532
  font-weight: 400;
526
533
  font-size: 0.75rem;
527
534
  color: var(--active);
@@ -529,7 +536,7 @@ const handleToggleOnline = () => {
529
536
  &:hover,
530
537
  &:active,
531
538
  &:focus {
532
- background: var(--ck-highlight-marker-blue);
539
+ background: var(--highlight-color, var(--header-active-fg, var(--active)));
533
540
  }
534
541
  }
535
542
 
@@ -539,7 +546,8 @@ const handleToggleOnline = () => {
539
546
  border: none;
540
547
  font-weight: 400;
541
548
  font-size: 0.75rem;
542
- color: var(--ck-highlight-marker-blue);
549
+ // Was a hardcoded blue — see the .no-avatar-wrapper comment above.
550
+ color: var(--highlight-color, var(--header-active-fg, var(--active)));
543
551
  width: 100%;
544
552
  display: block;
545
553
  text-align: center;
@@ -0,0 +1,293 @@
1
+ <template>
2
+ <div id="sidebar-logo" data-tour="platform-switcher">
3
+ <div class="sidebar" :class="{ open: isOpen }">
4
+ <div class="sidebar-menu">
5
+ <p class="sidebar-menu__intro">{{ $t('sidebar.platform_switcher_intro') }}</p>
6
+ <ul class="menus">
7
+ <li v-for="system in networkSystems" :key="system.id">
8
+ <a class="sidebar__logo" :href="system.domain" target="_blank" rel="noopener noreferrer" :aria-label="ariaLabelFor(system)">
9
+ <img :src="colorMode.value === 'light' ? system.logo_light : system.logo_dark" :alt="system.name" />
10
+ <span class="sidebar__tooltip" role="tooltip">
11
+ <strong>{{ system.name }}</strong>
12
+ <span v-if="descriptionFor(system.slug)">{{ descriptionFor(system.slug) }}</span>
13
+ </span>
14
+ </a>
15
+ </li>
16
+ </ul>
17
+ </div>
18
+ <button aria-controls="sidebar" :aria-label="$t('sidebar.toggler_label')" class="sidebar__toggler"
19
+ @click="isOpen = !isOpen">
20
+ <MGIcon icon="double-chevron-left" />
21
+ </button>
22
+ </div>
23
+ <button v-if="isOpen" class="back-button" type="button" @click="isOpen = false"></button>
24
+ </div>
25
+ </template>
26
+ <script setup lang="ts">
27
+ import { computed, onMounted, ref } from "vue";
28
+ import { useI18n } from "vue-i18n";
29
+ import axios from "axios";
30
+
31
+ // Uncontrolled by default (own local state); pass `open`/`@update:open` to
32
+ // let a consuming app drive it (e.g. to coordinate with its own layout
33
+ // store), same idea as the original network-accounts SidebarLogosComponent
34
+ // which read/wrote a Pinia store directly. shared-ui components can't
35
+ // assume a consumer's store shape (Pinia stores aren't auto-imported by
36
+ // this layer), so state lives here and is only mirrored out via v-model.
37
+ const props = withDefaults(defineProps<{ open?: boolean }>(), { open: undefined });
38
+ const emit = defineEmits<{ "update:open": [value: boolean] }>();
39
+ const internalOpen = ref(false);
40
+ const isOpen = computed<boolean>({
41
+ get: () => props.open ?? internalOpen.value,
42
+ set: (value: boolean) => {
43
+ internalOpen.value = value;
44
+ emit("update:open", value);
45
+ },
46
+ });
47
+
48
+ const colorMode = useColorMode();
49
+ const { t, te } = useI18n();
50
+
51
+ interface NetworkSystem {
52
+ id: number;
53
+ name: string;
54
+ domain: string;
55
+ logo_dark: string;
56
+ logo_light: string;
57
+ status: number;
58
+ slug: string;
59
+ }
60
+
61
+ // Fallback data - previous static logos
62
+ const fallbackSystems: NetworkSystem[] = [
63
+ { id: 1, name: 'Mundo Gamer Academy', domain: 'https://mundogamer.academy', logo_dark: '/imgs/dark/academy.svg', logo_light: '/imgs/light/academy.svg', status: 1, slug: 'academy' },
64
+ { id: 2, name: 'Mundo Gamer Agency', domain: 'https://mundogamer.agency', logo_dark: '/imgs/dark/agency.svg', logo_light: '/imgs/light/agency.svg', status: 1, slug: 'agency' },
65
+ { id: 3, name: 'Mundo Gamer AI', domain: 'https://mundogamer.ai', logo_dark: '/imgs/dark/ai.svg', logo_light: '/imgs/light/ai.svg', status: 1, slug: 'ai' },
66
+ { id: 4, name: 'Mundo Gamer Club', domain: 'https://mundogamer.club', logo_dark: '/imgs/dark/club.svg', logo_light: '/imgs/light/club.svg', status: 1, slug: 'club' },
67
+ { id: 5, name: 'Mundo Gamer Community', domain: 'https://mundogamer.community', logo_dark: '/imgs/dark/community.svg', logo_light: '/imgs/light/community.svg', status: 1, slug: 'community' },
68
+ { id: 6, name: 'Mundo Gamer Jobs', domain: 'https://mundogamerjobs.com', logo_dark: '/imgs/dark/jobs.svg', logo_light: '/imgs/light/jobs.svg', status: 1, slug: 'jobs' },
69
+ { id: 7, name: 'Mundo Gamer Network', domain: 'https://mundogamer.network', logo_dark: '/imgs/dark/network.svg', logo_light: '/imgs/light/network.svg', status: 1, slug: 'network' },
70
+ { id: 8, name: 'Mundo Gamer Shop', domain: 'https://mundogamer.shop', logo_dark: '/imgs/dark/shop.svg', logo_light: '/imgs/light/shop.svg', status: 1, slug: 'shop' },
71
+ { id: 9, name: 'Mundo Gamer Token', domain: 'https://mundogamer.token', logo_dark: '/imgs/dark/token.svg', logo_light: '/imgs/light/token.svg', status: 1, slug: 'token' },
72
+ { id: 10, name: 'Mundo Gamer TV', domain: 'https://mundogamer.tv', logo_dark: '/imgs/dark/tv.svg', logo_light: '/imgs/light/tv.svg', status: 1, slug: 'tv' },
73
+ ];
74
+
75
+ const networkSystems = ref<NetworkSystem[]>(fallbackSystems);
76
+ const loading = ref(true);
77
+
78
+ async function fetchNetworkSystems() {
79
+ try {
80
+ // Public, unauthenticated, cross-domain endpoint — call it with a bare
81
+ // axios instance instead of an app-provided $axios plugin, since not
82
+ // every consumer of this shared component registers one the same way.
83
+ const response = await axios.get('https://api.mgnetwork.xyz/api/v1/network-systems', {
84
+ params: {
85
+ 'filter[status]': 1,
86
+ sort: 'name',
87
+ order: 'asc',
88
+ per_page: 'all',
89
+ page: 1
90
+ }
91
+ });
92
+
93
+ const apiData = response.data.data || response.data;
94
+ networkSystems.value = apiData.map((system: any) => {
95
+ // Extract platform name from url_image filename (e.g. ".../community.png" → "community")
96
+ const fromUrl = (system.url_image || '').split('/').pop()?.replace(/\.\w+$/, '') || '';
97
+ // Fallback: extract from full name (e.g. "Mundo Gamer Community" → "community")
98
+ const fromName = (system.name || '').toLowerCase().replace(/mundo gamer\s*/i, '').trim();
99
+ const slug = fromUrl || fromName;
100
+ return {
101
+ id: system.id,
102
+ name: system.name,
103
+ domain: system.prod_url,
104
+ logo_dark: slug ? `/imgs/dark/${slug}.svg` : (system.url_reduced_image_src || ''),
105
+ logo_light: slug ? `/imgs/light/${slug}.svg` : (system.url_reduced_image_src || ''),
106
+ status: system.status ? 1 : 0,
107
+ slug
108
+ };
109
+ });
110
+ } catch (error) {
111
+ console.error('Error fetching network systems (using fallback):', error);
112
+ // Keep fallback data - already set in the initial ref value
113
+ } finally {
114
+ loading.value = false;
115
+ }
116
+ }
117
+
118
+ // Not every platform has a one-line description yet (e.g. a brand-new
119
+ // system added before its copy is translated) — fall back to no
120
+ // description line rather than rendering the raw i18n key path.
121
+ function descriptionFor(slug: string): string {
122
+ const key = `sidebar.platform_descriptions.${slug}`;
123
+ return te(key) ? t(key) : '';
124
+ }
125
+
126
+ function ariaLabelFor(system: NetworkSystem): string {
127
+ const description = descriptionFor(system.slug);
128
+ return description ? `${system.name} — ${description}` : system.name;
129
+ }
130
+
131
+ onMounted(() => {
132
+ fetchNetworkSystems();
133
+ });
134
+ </script>
135
+
136
+ <style scoped lang="scss">
137
+ #sidebar-logo {
138
+ z-index: 36;
139
+ // fixed (not absolute) + all four insets pinned: absolute with no `top`
140
+ // falls back to its "static position" — roughly where it would sit in
141
+ // normal flow — so on a real page with content above it in the DOM, the
142
+ // whole panel renders far down the page instead of pinned to the
143
+ // viewport's right edge, and its `height: 100%` then has no definite
144
+ // containing-block height to resolve against, stretching the page.
145
+ position: fixed;
146
+ top: 0;
147
+ right: 0;
148
+ bottom: 0;
149
+
150
+ .sidebar {
151
+ display: inline-flex;
152
+ padding: 12px 24px;
153
+ align-items: center;
154
+ gap: 10px;
155
+ background: var(--sidebar-bg);
156
+ transition: ease 0.5s;
157
+
158
+ &.open {
159
+ display: flex;
160
+ max-width: 104px;
161
+ flex-direction: column;
162
+ align-items: center;
163
+ gap: 20px;
164
+ background-color: var(--bg2, var(--sidebar-bg));
165
+ height: 100%;
166
+
167
+ .sidebar-menu {
168
+ display: grid;
169
+ }
170
+
171
+ .sidebar__logo {
172
+ img {
173
+ width: 42px;
174
+ height: 42px;
175
+ flex-shrink: 0;
176
+ }
177
+ }
178
+
179
+ .sidebar__toggler {
180
+ transform: rotate(180deg);
181
+ margin-bottom: 40px;
182
+ }
183
+ }
184
+
185
+ &:not(.open) {
186
+ display: inline-flex;
187
+ padding: 12px 24px;
188
+ align-items: center;
189
+ gap: 10px;
190
+ width: 72px;
191
+ max-height: 48px;
192
+ height: 48px;
193
+ background-color: var(--bg2, var(--sidebar-bg));
194
+ margin-top: 60vh;
195
+
196
+ .sidebar-menu {
197
+ display: none;
198
+ }
199
+
200
+ .sidebar__toggler {
201
+ margin-left: auto;
202
+ margin-right: 0.75rem;
203
+ }
204
+ }
205
+
206
+ &__toggler {
207
+ color: var(--sidebar-toggler-fg);
208
+ background: transparent;
209
+ border: 0;
210
+ outline: 0;
211
+ transition: color 0.5s ease-out;
212
+
213
+ &:hover {
214
+ color: var(--sidebar-toggler-active-fg);
215
+ }
216
+ }
217
+
218
+ &__logo {
219
+ position: relative;
220
+ display: inline-flex;
221
+ }
222
+
223
+ &__tooltip {
224
+ position: absolute;
225
+ right: calc(100% + 12px);
226
+ top: 50%;
227
+ transform: translateY(-50%);
228
+ display: flex;
229
+ flex-direction: column;
230
+ gap: 2px;
231
+ width: max-content;
232
+ max-width: 220px;
233
+ padding: 8px 12px;
234
+ background: var(--bg2, var(--sidebar-bg));
235
+ color: var(--sidebar-toggler-active-fg);
236
+ font-size: 12px;
237
+ line-height: 1.4;
238
+ pointer-events: none;
239
+ opacity: 0;
240
+ visibility: hidden;
241
+ transition: opacity 0.15s ease-out;
242
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
243
+ z-index: 1;
244
+
245
+ strong {
246
+ font-size: 13px;
247
+ }
248
+ }
249
+
250
+ // Sass expands every `&` in a selector to the FULL resolved parent
251
+ // chain, not just the immediate BEM block — `&__logo:hover &__tooltip`
252
+ // compiles to `#sidebar-logo .sidebar__logo:hover #sidebar-logo
253
+ // .sidebar__tooltip` (the ancestor prefix duplicated), which can never
254
+ // match since #sidebar-logo can't nest inside itself. Writing the
255
+ // tooltip side as a literal class avoids the second `&` expansion.
256
+ &__logo:hover .sidebar__tooltip,
257
+ &__logo:focus-visible .sidebar__tooltip {
258
+ opacity: 1;
259
+ visibility: visible;
260
+ }
261
+
262
+ .sidebar-menu__intro {
263
+ width: 100%;
264
+ margin: 0;
265
+ padding: 0 4px;
266
+ color: var(--sidebar-toggler-fg);
267
+ font-size: 11px;
268
+ line-height: 1.4;
269
+ text-align: center;
270
+ }
271
+
272
+ .menus {
273
+ width: 100%;
274
+ display: flex;
275
+ flex-direction: column;
276
+ align-items: center;
277
+ gap: 16px;
278
+ padding-left: 0;
279
+ list-style: none;
280
+ }
281
+ }
282
+
283
+ .back-button {
284
+ position: fixed;
285
+ width: 100vw;
286
+ height: 100vh;
287
+ background-color: rgba(0, 0, 0, 0.5);
288
+ z-index: 35;
289
+ border: none;
290
+ display: none;
291
+ }
292
+ }
293
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.16.14",
3
+ "version": "1.16.16",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -0,0 +1,22 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_ACA_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#FF7700"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M17.2496 26.1001H15.8996L15.2246 27.3001H17.4746L17.2496 26.1001Z" fill="white"/>
12
+ <path id="Vector_5" d="M17.6247 27.75H15.0747L12.8247 31.725H14.6247L15.8247 29.475H16.2747L16.7247 31.725H18.3747L17.6247 27.75Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M28.0497 26.1001H26.6247L25.9497 27.3001H28.2747L28.0497 26.1001Z" fill="white"/>
16
+ <path id="Vector_7" d="M28.3495 27.75H25.7995L23.6245 31.725H25.4245L26.5495 29.475H27.0745L27.4495 31.725H29.1745L28.3495 27.75Z" fill="white"/>
17
+ </g>
18
+ </g>
19
+ <path id="Vector_8" d="M20.55 30.1501L20.325 28.8001L21.6 27.3001H23.775L24.075 26.1001H20.775L18.75 28.6501L19.425 31.7251H22.65L23.025 30.1501H20.55Z" fill="white"/>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_AG_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#FCB216"/>
9
+ <g id="Group_3">
10
+ <path id="Vector_4" d="M26.6999 27.4501L27.0749 26.1001H23.0999L20.7749 28.7251L21.5249 31.7251H25.6499L26.6249 27.9751H24.2249L23.9249 29.3251H24.8249L24.5999 30.2251H22.6499L22.4249 29.1751L23.9249 27.4501H26.6999Z" fill="white"/>
11
+ <g id="Group_4">
12
+ <path id="Vector_5" d="M19.3497 26.1001H17.9997L17.3247 27.3001H19.5747L19.3497 26.1001Z" fill="white"/>
13
+ <path id="Vector_6" d="M19.7248 27.75H17.0998L14.9248 31.725H16.7248L17.8498 29.475H18.3748L18.8248 31.725H20.4748L19.7248 27.75Z" fill="white"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_AI_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#5A87D7"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M20.6249 26.1753H19.1999L18.5249 27.3753H20.8499L20.6249 26.1753Z" fill="white"/>
12
+ <path id="Vector_5" d="M20.9247 27.9004H18.3747L16.1997 31.8754H17.9247L19.1247 29.5504H19.6497L20.0247 31.8754H21.7497L20.9247 27.9004Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M25.4996 27.4505L25.7996 26.2505H24.1496L23.8496 27.4505H25.4996Z" fill="white"/>
16
+ <path id="Vector_7" d="M23.7746 27.9004L22.7246 31.8754H24.4496L25.4246 27.9004H23.7746Z" fill="white"/>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_CLUB_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#583CF0"/>
5
+ <g id="Group_2">
6
+ <path id="Vector_2" d="M18.075 26.1001H16.425L15 31.7251H19.125L19.5 30.1501H17.1L18.075 26.1001Z" fill="white"/>
7
+ <path id="Vector_3" d="M25.7246 28.8001L26.4746 31.8001H30.5246L31.1246 29.4751L30.3746 28.8001L31.4246 28.1251L31.9496 26.1001H28.0496L25.7246 28.8001ZM29.4746 30.3751H27.5996L27.3746 29.2501H29.6996L29.4746 30.3751ZM29.9996 28.2001H27.7496L28.5746 27.2251H30.2246L29.9996 28.2001Z" fill="white"/>
8
+ <g id="Group_3">
9
+ <path id="Vector_4" d="M23.0998 30.15H21.8248L22.4248 27.75H21.1498L20.1748 31.725H23.9998L24.9748 27.75H23.6998L23.0998 30.15Z" fill="white"/>
10
+ <path id="Vector_5" d="M24.1496 26.1001L23.8496 27.3001H25.0496L25.3496 26.1001H24.1496Z" fill="white"/>
11
+ <path id="Vector_6" d="M22.8748 26.1001H21.5998L21.2998 27.3001H22.5748L22.8748 26.1001Z" fill="white"/>
12
+ </g>
13
+ <path id="Vector_7" d="M11.9248 30.1501L11.6998 28.8001L12.8998 27.3001H15.0748L15.3748 26.1001H12.1498L10.0498 28.6501L10.7998 31.7251H14.0248L14.3998 30.1501H11.9248Z" fill="white"/>
14
+ </g>
15
+ <g id="Group_4">
16
+ <path id="Vector_8" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
17
+ <path id="Vector_9" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_COM_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#1C395C"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M23.1748 26.1001H19.3498L19.0498 27.3001H22.8748L23.1748 26.1001Z" fill="white"/>
12
+ <path id="Vector_5" d="M21.5248 27.75L20.9248 30.15H19.6498L20.1748 27.75H18.9748L17.9248 31.725H21.7498L22.7248 27.75H21.5248Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M28.9498 26.1001H27.2998L26.5498 27.3001H28.7248L28.9498 26.1001Z" fill="white"/>
16
+ <path id="Vector_7" d="M25.5748 29.1L25.6498 27.75H23.7748L22.7998 31.725H23.9998L24.5998 29.325L24.4498 31.725H25.4998L26.6998 29.475L26.0998 31.725H27.5998L28.5748 27.75H26.3248L25.5748 29.1Z" fill="white"/>
17
+ <path id="Vector_8" d="M25.7246 26.1001H24.1496L23.8496 27.3001H25.6496L25.7246 26.1001Z" fill="white"/>
18
+ </g>
19
+ <path id="Vector_9" d="M14.8498 30.1501L14.6248 28.8001L15.8998 27.3001H18.0748L18.3748 26.1001H15.0748L13.0498 28.6501L13.7248 31.7251H16.9498L17.3248 30.1501H14.8498Z" fill="white"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_JOBS_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M17.5097 8.47754L13.0083 16.5956V8.47754H8.95413L5.91108 20.6206L5.5708 21.9817H8.95413L9.84858 18.4234L10.3055 16.5859V21.9817H13.4555L17.1597 15.2636L15.4875 21.9817H19.0944L22.4486 8.47754H17.5097Z" fill="white"/>
5
+ <path id="Vector_2" d="M35.6417 11.6275L36.4292 8.47754H26.989L21.564 14.7775L23.3626 21.9817H33.0556L34.1737 17.49L35.2917 12.9789L29.4487 12.9887L28.6709 16.1192H31.1306L30.5667 18.3942H26.0362L25.4042 15.7692L28.9723 11.6275H35.6417Z" fill="white"/>
6
+ </g>
7
+ <path id="Vector_3" d="M35.875 24.3638H8.40977L6.13477 33.5221H33.6L35.875 24.3638Z" fill="#808485"/>
8
+ <g id="Group_2">
9
+ <g id="Group_3">
10
+ <path id="Vector_4" d="M21.3694 26.1235H17.5778L17.2764 27.3194H21.0778L21.3694 26.1235Z" fill="white"/>
11
+ <path id="Vector_5" d="M19.7166 27.8057L19.1235 30.1584H17.8402L18.4235 27.8057H17.1596L16.168 31.7626H19.9694L20.9513 27.8057H19.7166Z" fill="white"/>
12
+ </g>
13
+ <g id="Group_4">
14
+ <path id="Vector_6" d="M12.7267 26.1235L12.4253 27.3194H16.5281L16.8197 26.1235H12.7267Z" fill="white"/>
15
+ <path id="Vector_7" d="M12.843 30.7612L12.2402 31.7626H13.9125L14.5055 30.7612H12.843Z" fill="white"/>
16
+ <path id="Vector_8" d="M10.5779 29.75L9.9751 30.7611H11.6376L12.2404 29.75H10.5779Z" fill="white"/>
17
+ <path id="Vector_9" d="M11.6376 30.7612L12.2404 31.7626H10.5682L9.9751 30.7612H11.6376Z" fill="white"/>
18
+ <path id="Vector_10" d="M14.5058 30.7612L15.2544 27.8057H13.5919L12.8433 30.7612H14.5058Z" fill="white"/>
19
+ </g>
20
+ <path id="Vector_11" d="M22.4096 26.1235L22.1082 27.3194H23.3916H25.1707H26.6096L26.911 26.1235H22.4096ZM24.9666 28.2041H23.168L23.2652 27.8055H21.9819L21.7388 28.7777L20.9805 31.7721H25.5013L26.1138 29.293L25.336 28.7971L26.3666 28.2819L26.4832 27.8055H25.0541L24.9666 28.2041ZM24.4513 30.4305H22.5944L22.886 29.3124H24.6749L24.4513 30.4305Z" fill="white"/>
21
+ <g id="Group_5">
22
+ <path id="Vector_12" d="M27.9518 26.1235L27.6504 27.3194H31.7337L32.0254 26.1235H27.9518Z" fill="white"/>
23
+ <path id="Vector_13" d="M27.5142 27.864L27.1545 29.3126H29.6531L29.4392 30.1584H26.9406L26.785 30.7904L26.542 31.7626H30.6156L31.617 27.8057H27.5337L27.5142 27.864Z" fill="white"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,28 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_NET_Abreviado_S fundo 1">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#EE3831"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M16.6498 27.3001L16.4248 26.1001H14.4748L14.1748 27.3001H16.6498Z" fill="white"/>
12
+ <path id="Vector_5" d="M18.4499 27.3001L18.7499 26.1001H17.3249L17.0249 27.3001H18.4499Z" fill="white"/>
13
+ <path id="Vector_6" d="M16.7998 28.425L16.7248 27.75H14.0248L13.0498 31.725H14.5498L15.1498 29.325L15.8998 31.725H17.3248L18.2998 27.75H16.9498L16.7998 28.425Z" fill="white"/>
14
+ </g>
15
+ <g id="Group_5">
16
+ <g id="Group_6">
17
+ <path id="Vector_7" d="M18.375 31.725H22.425L22.8 30.15H20.475L20.7 29.325H23.025L23.4 27.75H19.35L18.375 31.725Z" fill="white"/>
18
+ <path id="Vector_8" d="M19.5 27.3001H23.475L23.775 26.1001H19.8L19.5 27.3001Z" fill="white"/>
19
+ </g>
20
+ </g>
21
+ <g id="Group_7">
22
+ <path id="Vector_9" d="M24.8249 26.1001L24.5249 27.3001H28.5749L28.8749 26.1001H24.8249Z" fill="white"/>
23
+ <path id="Vector_10" d="M24.6748 31.725H26.3248L27.2998 27.75H25.6498L24.6748 31.725Z" fill="white"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_SHOP_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#42BA8A"/>
5
+ <g id="Group_2">
6
+ <g id="Group_3">
7
+ <path id="Vector_2" d="M26.2495 26.1001H22.4245L22.1245 27.3001H25.9495L26.2495 26.1001Z" fill="white"/>
8
+ <path id="Vector_3" d="M24.5997 27.75L23.9997 30.15H22.7247L23.3247 27.75H22.0497L21.0747 31.725H24.8247L25.7997 27.75H24.5997Z" fill="white"/>
9
+ </g>
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M11.9999 26.1001L11.7749 27.3001H15.8249L16.1249 26.1001H11.9999Z" fill="white"/>
12
+ <path id="Vector_5" d="M11.6249 27.825L11.2499 29.325H13.7249L13.4999 30.15H11.0249L10.8749 30.75L10.6499 31.725H14.6999L15.6749 27.75H11.6249V27.825Z" fill="white"/>
13
+ </g>
14
+ <path id="Vector_6" d="M21.375 26.1001H19.8L19.35 27.7501H18.45L18.825 26.1001H17.175L15.75 31.7251H17.475L18 29.5501H18.9L18.375 31.7251H20.025L21.375 26.1001Z" fill="white"/>
15
+ <path id="Vector_7" d="M30.6748 26.1751C30.5248 26.1001 30.2998 26.1001 29.9998 26.1001H27.2998L26.9998 27.3001H29.6998C29.8498 27.3001 29.9998 27.3751 29.9998 27.5251C29.9998 27.6751 29.8498 27.7501 29.6998 27.7501H26.8498L25.7998 31.7251H27.5248L28.1248 29.3251H29.8498C30.0748 29.2501 30.2998 29.1751 30.4498 29.1001C30.9748 28.7251 31.2748 28.2001 31.2748 27.5251C31.3498 27.3751 31.4248 26.4751 30.6748 26.1751Z" fill="white"/>
16
+ </g>
17
+ <g id="Group_5">
18
+ <path id="Vector_8" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
19
+ <path id="Vector_9" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_TOKEN_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.5498Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#13151A"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M22.2002 26.1001L20.3252 28.6501L21.0002 31.7251H22.7252L22.1252 28.6501L24.0752 26.1001H22.2002Z" fill="white"/>
12
+ <path id="Vector_5" d="M19.05 26.1001L17.625 31.7251H19.35L20.775 26.1001H19.05Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <g id="Group_6">
16
+ <path id="Vector_6" d="M23.6997 31.725H27.6747L28.1247 30.15H25.7997L26.0247 29.325H28.3497L28.7247 27.75H24.6747L23.6997 31.725Z" fill="white"/>
17
+ <path id="Vector_7" d="M24.8247 27.3001H28.7997L29.0997 26.1001H25.1247L24.8247 27.3001Z" fill="white"/>
18
+ </g>
19
+ </g>
20
+ <g id="Group_7">
21
+ <path id="Vector_8" d="M9.0749 26.1001L8.7749 27.3001H12.8249L13.1249 26.1001H9.0749Z" fill="white"/>
22
+ <path id="Vector_9" d="M8.9248 31.725H10.5748L11.6248 27.75H9.8998L8.9248 31.725Z" fill="white"/>
23
+ </g>
24
+ <g id="Group_8">
25
+ <path id="Vector_10" d="M14.1745 26.1001L13.8745 27.3001H17.6995L17.9995 26.1001H14.1745Z" fill="white"/>
26
+ <path id="Vector_11" d="M15.7497 30.15H14.4747L15.0747 27.75H13.7997L12.8247 31.725H16.5747L17.5497 27.75H16.3497L15.7497 30.15Z" fill="white"/>
27
+ </g>
28
+ <g id="Group_9">
29
+ <path id="Vector_12" d="M32.3251 27.3001L32.1751 26.1001H30.1501L29.8501 27.3001H32.3251Z" fill="white"/>
30
+ <path id="Vector_13" d="M34.1252 27.3001L34.4252 26.1001H33.0002L32.7002 27.3001H34.1252Z" fill="white"/>
31
+ <path id="Vector_14" d="M32.4751 28.425L32.4001 27.75H29.7751L28.7251 31.725H30.3001L30.8251 29.325L31.5751 31.725H33.0001L34.0501 27.75H32.6251L32.4751 28.425Z" fill="white"/>
32
+ </g>
33
+ </g>
34
+ </g>
35
+ </g>
36
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_TV_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.4748 8.4751L12.9748 16.5751V8.4751H8.9248L5.9248 20.6251L5.5498 21.9751H8.9248L9.8248 18.4501L10.2748 16.5751V21.9751H13.4248L17.1748 15.3001L15.4498 21.9751H19.1248L22.4248 8.4751H17.4748Z" fill="white"/>
6
+ <path id="Vector_2" d="M35.6246 11.6251L36.4496 8.4751H26.9996L21.5996 14.7751L23.3996 21.9751H33.0746L34.1996 17.4751L35.3246 12.9751H29.4746L28.6496 16.1251H31.1246L30.5996 18.3751H26.0246L25.4246 15.7501L28.9496 11.6251H35.6246Z" fill="white"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#6B15AC"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <g id="Group_5">
12
+ <g id="Group_6">
13
+ <path id="Vector_4" d="M23.1745 29.0252L22.9495 27.8252H21.3745L22.1245 31.8002H23.6995L25.4245 27.8252H23.8495L23.1745 29.0252Z" fill="white"/>
14
+ <path id="Vector_5" d="M22.6497 26.1001H21.0747L21.2997 27.3001H22.8747L22.6497 26.1001Z" fill="white"/>
15
+ <path id="Vector_6" d="M24.6747 26.1001L24.0747 27.3001H25.7247L26.3997 26.1001H24.6747Z" fill="white"/>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ <g id="Group_7">
20
+ <path id="Vector_7" d="M15.8996 26.1001L15.5996 27.3001H19.7246L20.0246 26.1001H15.8996Z" fill="white"/>
21
+ <path id="Vector_8" d="M15.8247 31.7252H17.4747L18.4497 27.8252H16.7997L15.8247 31.7252Z" fill="white"/>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56 56">
3
+ <g fill="#FFFFFF"><polygon points="23.4,11.3 17.3,22.1 17.3,11.3 11.9,11.3 7.9,27.5 7.9,27.5 7.9,27.5 7.4,29.3 11.9,29.3 13.1,24.6 13.7,22.1 13.7,29.3 17.9,29.3 22.9,20.4 20.6,29.3 25.5,29.3 29.9,11.3"></polygon><polygon points="47.5,15.5 48.6,11.3 36,11.3 28.8,19.7 31.2,29.3 44.1,29.3 45.6,23.3 45.6,23.3 47.1,17.3 39.3,17.3 38.2,21.5 41.5,21.5 40.8,24.5 34.7,24.5 33.9,21 38.6,15.5"></polygon></g>
4
+ <path d="M49.25,32.5H8.65L5.65,44.7H46.25L49.25,32.5z" fill="#134E4A"></path>
5
+ <path d="M11.083 37.183L10.950 35.973L12.217 35.973L12.350 37.181L11.083 37.183ZM11.131 37.639L12.404 37.639L12.528 38.711L12.955 37.636L14.339 37.636L13.029 41.217L11.521 41.217L11.131 37.639ZM14.486 37.189L13.134 37.186L13.626 35.973L14.941 35.973L14.486 37.189ZM14.975 35.973L14.703 37.181L18.361 37.181L18.635 35.973L14.975 35.973ZM14.610 37.636L13.815 41.220L17.472 41.217L17.798 39.737L15.566 39.737L15.741 38.965L17.976 38.965L18.259 37.636L14.610 37.636ZM19.124 41.217L17.716 41.217L18.875 35.973L20.646 35.973L21.150 38.168L21.639 35.970L22.999 35.973L21.834 41.220L20.476 41.217L19.616 39.008L19.124 41.217ZM25.805 37.636L24.269 37.636L23.472 41.217L25.016 41.217L25.805 37.636ZM23.294 35.973L23.022 37.186L27.231 37.186L27.499 35.973L23.294 35.973ZM27.355 37.639L26.563 41.220L30.206 41.217L31.001 37.639L29.578 37.639L29.112 39.749L28.306 39.749L28.767 37.639L27.355 37.639ZM29.946 35.973L29.675 37.186L31.103 37.183L31.366 35.970L29.946 35.973ZM27.729 35.973L27.457 37.186L28.880 37.183L29.140 35.973L27.729 35.973ZM31.688 35.973L31.403 37.172L34.070 37.183L34.172 37.214L34.265 37.277L34.305 37.362L34.305 37.432L34.265 37.517L34.189 37.565L34.096 37.602L33.915 37.627L31.309 37.625L30.512 41.222L32.025 41.222L32.548 39.005L33.252 41.222L34.828 41.222L34.135 38.943L34.723 38.691Q35.462 38.269 35.462 37.384L35.462 37.384Q35.462 37.045 35.357 36.649L35.357 36.649Q35.204 36.072 34.559 36.001L34.559 36.001L34.296 35.973L31.688 35.973ZM36.361 35.973L36.090 37.181L39.747 37.181L40.021 35.973L36.361 35.973ZM35.996 37.636L35.201 41.220L38.859 41.217L39.184 39.737L36.952 39.737L37.128 38.965L39.362 38.965L39.645 37.636L35.996 37.636ZM40.205 35.973L39.934 37.189L43.687 37.189L43.950 35.973L40.205 35.973ZM39.832 37.642L39.535 38.982L41.600 38.982L41.427 39.757L39.365 39.754L39.043 41.217L42.790 41.217L43.585 37.642L39.832 37.642Z" fill="#FFFFFF"></path>
6
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_ACA_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#FF851A"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M17.2496 26.0996H15.8996L15.2246 27.2996H17.4746L17.2496 26.0996Z" fill="white"/>
12
+ <path id="Vector_5" d="M17.6247 27.75H15.0747L12.8247 31.725H14.6247L15.8247 29.475H16.2747L16.7247 31.725H18.3747L17.6247 27.75Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M28.0497 26.0996H26.6247L25.9497 27.2996H28.2747L28.0497 26.0996Z" fill="white"/>
16
+ <path id="Vector_7" d="M28.3495 27.75H25.7995L23.6245 31.725H25.4245L26.5495 29.475H27.0745L27.4495 31.725H29.1745L28.3495 27.75Z" fill="white"/>
17
+ </g>
18
+ </g>
19
+ <path id="Vector_8" d="M20.55 30.1496L20.325 28.7996L21.6 27.2996H23.775L24.075 26.0996H20.775L18.75 28.6496L19.425 31.7246H22.65L23.025 30.1496H20.55Z" fill="white"/>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_AG_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#FCBB2F"/>
9
+ <g id="Group_3">
10
+ <path id="Vector_4" d="M26.6999 27.4496L27.0749 26.0996H23.0999L20.7749 28.7246L21.5249 31.7246H25.6499L26.6249 27.9746H24.2249L23.9249 29.3246H24.8249L24.5999 30.2246H22.6499L22.4249 29.1746L23.9249 27.4496H26.6999Z" fill="white"/>
11
+ <g id="Group_4">
12
+ <path id="Vector_5" d="M19.3497 26.0996H17.9997L17.3247 27.2996H19.5747L19.3497 26.0996Z" fill="white"/>
13
+ <path id="Vector_6" d="M19.7248 27.75H17.0998L14.9248 31.725H16.7248L17.8498 29.475H18.3748L18.8248 31.725H20.4748L19.7248 27.75Z" fill="white"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_AI_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#6F97DC"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M20.6249 26.1738H19.1999L18.5249 27.3738H20.8499L20.6249 26.1738Z" fill="white"/>
12
+ <path id="Vector_5" d="M20.9247 27.8984H18.3747L16.1997 31.8734H17.9247L19.1247 29.5484H19.6497L20.0247 31.8734H21.7497L20.9247 27.8984Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M25.4996 27.448L25.7996 26.248H24.1496L23.8496 27.448H25.4996Z" fill="white"/>
16
+ <path id="Vector_7" d="M23.7746 27.8984L22.7246 31.8734H24.4496L25.4246 27.8984H23.7746Z" fill="white"/>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_CLUB_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#6B54F2"/>
5
+ <g id="Group_2">
6
+ <path id="Vector_2" d="M18.075 26.0996H16.425L15 31.7246H19.125L19.5 30.1496H17.1L18.075 26.0996Z" fill="white"/>
7
+ <path id="Vector_3" d="M25.7246 28.7996L26.4746 31.7996H30.5246L31.1246 29.4746L30.3746 28.7996L31.4246 28.1246L31.9496 26.0996H28.0496L25.7246 28.7996ZM29.4746 30.3746H27.5996L27.3746 29.2496H29.6996L29.4746 30.3746ZM29.9996 28.1996H27.7496L28.5746 27.2246H30.2246L29.9996 28.1996Z" fill="white"/>
8
+ <g id="Group_3">
9
+ <path id="Vector_4" d="M23.0998 30.15H21.8248L22.4248 27.75H21.1498L20.1748 31.725H23.9998L24.9748 27.75H23.6998L23.0998 30.15Z" fill="white"/>
10
+ <path id="Vector_5" d="M24.1496 26.0996L23.8496 27.2996H25.0496L25.3496 26.0996H24.1496Z" fill="white"/>
11
+ <path id="Vector_6" d="M22.8748 26.0996H21.5998L21.2998 27.2996H22.5748L22.8748 26.0996Z" fill="white"/>
12
+ </g>
13
+ <path id="Vector_7" d="M11.9248 30.1496L11.6998 28.7996L12.8998 27.2996H15.0748L15.3748 26.0996H12.1498L10.0498 28.6496L10.7998 31.7246H14.0248L14.3998 30.1496H11.9248Z" fill="white"/>
14
+ </g>
15
+ <g id="Group_4">
16
+ <path id="Vector_8" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
17
+ <path id="Vector_9" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_COM_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#224570"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M23.1748 26.0996H19.3498L19.0498 27.2996H22.8748L23.1748 26.0996Z" fill="white"/>
12
+ <path id="Vector_5" d="M21.5248 27.75L20.9248 30.15H19.6498L20.1748 27.75H18.9748L17.9248 31.725H21.7498L22.7248 27.75H21.5248Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <path id="Vector_6" d="M28.9498 26.0996H27.2998L26.5498 27.2996H28.7248L28.9498 26.0996Z" fill="white"/>
16
+ <path id="Vector_7" d="M25.5748 29.1L25.6498 27.75H23.7748L22.7998 31.725H23.9998L24.5998 29.325L24.4498 31.725H25.4998L26.6998 29.475L26.0998 31.725H27.5998L28.5748 27.75H26.3248L25.5748 29.1Z" fill="white"/>
17
+ <path id="Vector_8" d="M25.7246 26.0996H24.1496L23.8496 27.2996H25.6496L25.7246 26.0996Z" fill="white"/>
18
+ </g>
19
+ <path id="Vector_9" d="M14.8498 30.1496L14.6248 28.7996L15.8998 27.2996H18.0748L18.3748 26.0996H15.0748L13.0498 28.6496L13.7248 31.7246H16.9498L17.3248 30.1496H14.8498Z" fill="white"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_JOBS_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M17.5097 8.47852L13.0083 16.5966V8.47852H8.95413L5.91108 20.6216L5.5708 21.9827H8.95413L9.84858 18.4243L10.3055 16.5868V21.9827H13.4555L17.1597 15.2646L15.4875 21.9827H19.0944L22.4486 8.47852H17.5097Z" fill="#0D0D0D"/>
5
+ <path id="Vector_2" d="M35.6417 11.6285L36.4292 8.47852H26.989L21.564 14.7785L23.3626 21.9827H33.0556L34.1737 17.491L35.2917 12.9799L29.4487 12.9896L28.6709 16.1202H31.1306L30.5667 18.3952H26.0362L25.4042 15.7702L28.9723 11.6285H35.6417Z" fill="#0D0D0D"/>
6
+ </g>
7
+ <path id="Vector_3" d="M35.875 24.3633H8.40977L6.13477 33.5216H33.6L35.875 24.3633Z" fill="#808485"/>
8
+ <g id="Group_2">
9
+ <g id="Group_3">
10
+ <path id="Vector_4" d="M21.3694 26.123H17.5778L17.2764 27.3189H21.0778L21.3694 26.123Z" fill="white"/>
11
+ <path id="Vector_5" d="M19.7166 27.8047L19.1235 30.1575H17.8402L18.4235 27.8047H17.1596L16.168 31.7616H19.9694L20.9513 27.8047H19.7166Z" fill="white"/>
12
+ </g>
13
+ <g id="Group_4">
14
+ <path id="Vector_6" d="M12.7267 26.123L12.4253 27.3189H16.5281L16.8197 26.123H12.7267Z" fill="white"/>
15
+ <path id="Vector_7" d="M12.843 30.7598L12.2402 31.7612H13.9125L14.5055 30.7598H12.843Z" fill="white"/>
16
+ <path id="Vector_8" d="M10.5779 29.75L9.9751 30.7611H11.6376L12.2404 29.75H10.5779Z" fill="white"/>
17
+ <path id="Vector_9" d="M11.6376 30.7598L12.2404 31.7612H10.5682L9.9751 30.7598H11.6376Z" fill="white"/>
18
+ <path id="Vector_10" d="M14.5058 30.7602L15.2544 27.8047H13.5919L12.8433 30.7602H14.5058Z" fill="white"/>
19
+ </g>
20
+ <path id="Vector_11" d="M22.4096 26.123L22.1082 27.3189H23.3916H25.1707H26.6096L26.911 26.123H22.4096ZM24.9666 28.2036H23.168L23.2652 27.805H21.9819L21.7388 28.7772L20.9805 31.7717H25.5013L26.1138 29.2925L25.336 28.7967L26.3666 28.2814L26.4832 27.805H25.0541L24.9666 28.2036ZM24.4513 30.43H22.5944L22.886 29.3119H24.6749L24.4513 30.43Z" fill="white"/>
21
+ <g id="Group_5">
22
+ <path id="Vector_12" d="M27.9518 26.123L27.6504 27.3189H31.7337L32.0254 26.123H27.9518Z" fill="white"/>
23
+ <path id="Vector_13" d="M27.5142 27.863L27.1545 29.3116H29.6531L29.4392 30.1575H26.9406L26.785 30.7894L26.542 31.7616H30.6156L31.617 27.8047H27.5337L27.5142 27.863Z" fill="white"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,28 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_NET_Abreviado_S fundo 1">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#EE3831"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M16.6498 27.2996L16.4248 26.0996H14.4748L14.1748 27.2996H16.6498Z" fill="white"/>
12
+ <path id="Vector_5" d="M18.4499 27.2996L18.7499 26.0996H17.3249L17.0249 27.2996H18.4499Z" fill="white"/>
13
+ <path id="Vector_6" d="M16.7998 28.425L16.7248 27.75H14.0248L13.0498 31.725H14.5498L15.1498 29.325L15.8998 31.725H17.3248L18.2998 27.75H16.9498L16.7998 28.425Z" fill="white"/>
14
+ </g>
15
+ <g id="Group_5">
16
+ <g id="Group_6">
17
+ <path id="Vector_7" d="M18.375 31.725H22.425L22.8 30.15H20.475L20.7 29.325H23.025L23.4 27.75H19.35L18.375 31.725Z" fill="white"/>
18
+ <path id="Vector_8" d="M19.5 27.2996H23.475L23.775 26.0996H19.8L19.5 27.2996Z" fill="white"/>
19
+ </g>
20
+ </g>
21
+ <g id="Group_7">
22
+ <path id="Vector_9" d="M24.8249 26.0996L24.5249 27.2996H28.5749L28.8749 26.0996H24.8249Z" fill="white"/>
23
+ <path id="Vector_10" d="M24.6748 31.725H26.3248L27.2998 27.75H25.6498L24.6748 31.725Z" fill="white"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </svg>
@@ -0,0 +1,23 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_SHOP_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <path id="Vector" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#53C296"/>
5
+ <g id="Group_2">
6
+ <g id="Group_3">
7
+ <path id="Vector_2" d="M26.2495 26.0996H22.4245L22.1245 27.2996H25.9495L26.2495 26.0996Z" fill="white"/>
8
+ <path id="Vector_3" d="M24.5997 27.75L23.9997 30.15H22.7247L23.3247 27.75H22.0497L21.0747 31.725H24.8247L25.7997 27.75H24.5997Z" fill="white"/>
9
+ </g>
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M11.9999 26.0996L11.7749 27.2996H15.8249L16.1249 26.0996H11.9999Z" fill="white"/>
12
+ <path id="Vector_5" d="M11.6249 27.825L11.2499 29.325H13.7249L13.4999 30.15H11.0249L10.8749 30.75L10.6499 31.725H14.6999L15.6749 27.75H11.6249V27.825Z" fill="white"/>
13
+ </g>
14
+ <path id="Vector_6" d="M21.375 26.0996H19.8L19.35 27.7496H18.45L18.825 26.0996H17.175L15.75 31.7246H17.475L18 29.5496H18.9L18.375 31.7246H20.025L21.375 26.0996Z" fill="white"/>
15
+ <path id="Vector_7" d="M30.6748 26.1746C30.5248 26.0996 30.2998 26.0996 29.9998 26.0996H27.2998L26.9998 27.2996H29.6998C29.8498 27.2996 29.9998 27.3746 29.9998 27.5246C29.9998 27.6746 29.8498 27.7496 29.6998 27.7496H26.8498L25.7998 31.7246H27.5248L28.1248 29.3246H29.8498C30.0748 29.2496 30.2998 29.1746 30.4498 29.0996C30.9748 28.7246 31.2748 28.1996 31.2748 27.5246C31.3498 27.3746 31.4248 26.4746 30.6748 26.1746Z" fill="white"/>
16
+ </g>
17
+ <g id="Group_5">
18
+ <path id="Vector_8" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
19
+ <path id="Vector_9" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_TOKEN_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.5498 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.5498Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.9249 24.375H8.3999L6.1499 33.525H33.5999L35.9249 24.375Z" fill="#0D0D0D"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <path id="Vector_4" d="M22.2002 26.0996L20.3252 28.6496L21.0002 31.7246H22.7252L22.1252 28.6496L24.0752 26.0996H22.2002Z" fill="white"/>
12
+ <path id="Vector_5" d="M19.05 26.0996L17.625 31.7246H19.35L20.775 26.0996H19.05Z" fill="white"/>
13
+ </g>
14
+ <g id="Group_5">
15
+ <g id="Group_6">
16
+ <path id="Vector_6" d="M23.6997 31.725H27.6747L28.1247 30.15H25.7997L26.0247 29.325H28.3497L28.7247 27.75H24.6747L23.6997 31.725Z" fill="white"/>
17
+ <path id="Vector_7" d="M24.8247 27.2996H28.7997L29.0997 26.0996H25.1247L24.8247 27.2996Z" fill="white"/>
18
+ </g>
19
+ </g>
20
+ <g id="Group_7">
21
+ <path id="Vector_8" d="M9.0749 26.0996L8.7749 27.2996H12.8249L13.1249 26.0996H9.0749Z" fill="white"/>
22
+ <path id="Vector_9" d="M8.9248 31.725H10.5748L11.6248 27.75H9.8998L8.9248 31.725Z" fill="white"/>
23
+ </g>
24
+ <g id="Group_8">
25
+ <path id="Vector_10" d="M14.1745 26.0996L13.8745 27.2996H17.6995L17.9995 26.0996H14.1745Z" fill="white"/>
26
+ <path id="Vector_11" d="M15.7497 30.15H14.4747L15.0747 27.75H13.7997L12.8247 31.725H16.5747L17.5497 27.75H16.3497L15.7497 30.15Z" fill="white"/>
27
+ </g>
28
+ <g id="Group_9">
29
+ <path id="Vector_12" d="M32.3251 27.2996L32.1751 26.0996H30.1501L29.8501 27.2996H32.3251Z" fill="white"/>
30
+ <path id="Vector_13" d="M34.1252 27.2996L34.4252 26.0996H33.0002L32.7002 27.2996H34.1252Z" fill="white"/>
31
+ <path id="Vector_14" d="M32.4751 28.425L32.4001 27.75H29.7751L28.7251 31.725H30.3001L30.8251 29.325L31.5751 31.725H33.0001L34.0501 27.75H32.6251L32.4751 28.425Z" fill="white"/>
32
+ </g>
33
+ </g>
34
+ </g>
35
+ </g>
36
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Logo_MG_TV_Abreviado_S fundo">
3
+ <g id="Group">
4
+ <g id="Group_2">
5
+ <path id="Vector" d="M17.4748 8.47461L12.9748 16.5746V8.47461H8.9248L5.9248 20.6246L5.5498 21.9746H8.9248L9.8248 18.4496L10.2748 16.5746V21.9746H13.4248L17.1748 15.2996L15.4498 21.9746H19.1248L22.4248 8.47461H17.4748Z" fill="#0D0D0D"/>
6
+ <path id="Vector_2" d="M35.6246 11.6246L36.4496 8.47461H26.9996L21.5996 14.7746L23.3996 21.9746H33.0746L34.1996 17.4746L35.3246 12.9746H29.4746L28.6496 16.1246H31.1246L30.5996 18.3746H26.0246L25.4246 15.7496L28.9496 11.6246H35.6246Z" fill="#0D0D0D"/>
7
+ </g>
8
+ <path id="Vector_3" d="M35.8499 24.375H8.3999L6.1499 33.525H33.5999L35.8499 24.375Z" fill="#7918C3"/>
9
+ <g id="Group_3">
10
+ <g id="Group_4">
11
+ <g id="Group_5">
12
+ <g id="Group_6">
13
+ <path id="Vector_4" d="M23.1745 29.0242L22.9495 27.8242H21.3745L22.1245 31.7992H23.6995L25.4245 27.8242H23.8495L23.1745 29.0242Z" fill="white"/>
14
+ <path id="Vector_5" d="M22.6497 26.0996H21.0747L21.2997 27.2996H22.8747L22.6497 26.0996Z" fill="white"/>
15
+ <path id="Vector_6" d="M24.6747 26.0996L24.0747 27.2996H25.7247L26.3997 26.0996H24.6747Z" fill="white"/>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ <g id="Group_7">
20
+ <path id="Vector_7" d="M15.8996 26.0996L15.5996 27.2996H19.7246L20.0246 26.0996H15.8996Z" fill="white"/>
21
+ <path id="Vector_8" d="M15.8247 31.7242H17.4747L18.4497 27.8242H16.7997L15.8247 31.7242Z" fill="white"/>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56 56">
3
+ <g fill="#0B0C10"><polygon points="23.4,11.3 17.3,22.1 17.3,11.3 11.9,11.3 7.9,27.5 7.9,27.5 7.9,27.5 7.4,29.3 11.9,29.3 13.1,24.6 13.7,22.1 13.7,29.3 17.9,29.3 22.9,20.4 20.6,29.3 25.5,29.3 29.9,11.3"></polygon><polygon points="47.5,15.5 48.6,11.3 36,11.3 28.8,19.7 31.2,29.3 44.1,29.3 45.6,23.3 45.6,23.3 47.1,17.3 39.3,17.3 38.2,21.5 41.5,21.5 40.8,24.5 34.7,24.5 33.9,21 38.6,15.5"></polygon></g>
4
+ <path d="M49.25,32.5H8.65L5.65,44.7H46.25L49.25,32.5z" fill="#134E4A"></path>
5
+ <path d="M11.083 37.183L10.950 35.973L12.217 35.973L12.350 37.181L11.083 37.183ZM11.131 37.639L12.404 37.639L12.528 38.711L12.955 37.636L14.339 37.636L13.029 41.217L11.521 41.217L11.131 37.639ZM14.486 37.189L13.134 37.186L13.626 35.973L14.941 35.973L14.486 37.189ZM14.975 35.973L14.703 37.181L18.361 37.181L18.635 35.973L14.975 35.973ZM14.610 37.636L13.815 41.220L17.472 41.217L17.798 39.737L15.566 39.737L15.741 38.965L17.976 38.965L18.259 37.636L14.610 37.636ZM19.124 41.217L17.716 41.217L18.875 35.973L20.646 35.973L21.150 38.168L21.639 35.970L22.999 35.973L21.834 41.220L20.476 41.217L19.616 39.008L19.124 41.217ZM25.805 37.636L24.269 37.636L23.472 41.217L25.016 41.217L25.805 37.636ZM23.294 35.973L23.022 37.186L27.231 37.186L27.499 35.973L23.294 35.973ZM27.355 37.639L26.563 41.220L30.206 41.217L31.001 37.639L29.578 37.639L29.112 39.749L28.306 39.749L28.767 37.639L27.355 37.639ZM29.946 35.973L29.675 37.186L31.103 37.183L31.366 35.970L29.946 35.973ZM27.729 35.973L27.457 37.186L28.880 37.183L29.140 35.973L27.729 35.973ZM31.688 35.973L31.403 37.172L34.070 37.183L34.172 37.214L34.265 37.277L34.305 37.362L34.305 37.432L34.265 37.517L34.189 37.565L34.096 37.602L33.915 37.627L31.309 37.625L30.512 41.222L32.025 41.222L32.548 39.005L33.252 41.222L34.828 41.222L34.135 38.943L34.723 38.691Q35.462 38.269 35.462 37.384L35.462 37.384Q35.462 37.045 35.357 36.649L35.357 36.649Q35.204 36.072 34.559 36.001L34.559 36.001L34.296 35.973L31.688 35.973ZM36.361 35.973L36.090 37.181L39.747 37.181L40.021 35.973L36.361 35.973ZM35.996 37.636L35.201 41.220L38.859 41.217L39.184 39.737L36.952 39.737L37.128 38.965L39.362 38.965L39.645 37.636L35.996 37.636ZM40.205 35.973L39.934 37.189L43.687 37.189L43.950 35.973L40.205 35.973ZM39.832 37.642L39.535 38.982L41.600 38.982L41.427 39.757L39.365 39.754L39.043 41.217L42.790 41.217L43.585 37.642L39.832 37.642Z" fill="#FFFFFF"></path>
6
+ </svg>