@identitate-md/logos 1.3.5

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/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 IdentitateRO Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ NOTĂ: Logo-urile instituțiilor publice din acest registru sunt proprietatea
26
+ instituțiilor respective și sunt incluse ca informații de interes public.
27
+ Licența MIT se aplică doar codului sursă al platformei, nu materialelor
28
+ vizuale ale instituțiilor.
package/README.md ADDED
@@ -0,0 +1,555 @@
1
+ # @identitate-ro/logos
2
+
3
+ > Logo-uri oficiale ale instituțiilor publice din România — Official logos of Romanian public institutions
4
+
5
+ [![npm version](https://img.shields.io/npm/v/@identitate-ro/logos.svg)](https://www.npmjs.com/package/@identitate-ro/logos)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ ## 📦 Instalare
9
+
10
+ ```bash
11
+ npm install @identitate-ro/logos
12
+ ```
13
+
14
+ ## 🚀 Utilizare
15
+
16
+ ### Via CDN (Recomandat)
17
+
18
+ Logo-urile sunt disponibile automat prin CDN-uri gratuite:
19
+
20
+ #### URL-uri Simple (Recomandat)
21
+
22
+ ```html
23
+ <!-- Logo complet -->
24
+ <img src="https://identitate.eu/logos/anaf/anaf.svg" alt="ANAF">
25
+
26
+ <!-- Simbol -->
27
+ <img src="https://identitate.eu/logos/anaf/simbol-anaf.svg" alt="ANAF Simbol">
28
+
29
+ <!-- Alte instituții -->
30
+ <img src="https://identitate.eu/logos/guvernul-romaniei/guvernul-romaniei.svg" alt="Guvernul României">
31
+ <img src="https://identitate.eu/logos/pnrr/pnrr.svg" alt="PNRR">
32
+ ```
33
+
34
+ #### jsDelivr (CDN Primară)
35
+
36
+ ```html
37
+ <!-- Logo complet -->
38
+ <img src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/anaf/anaf.svg" alt="ANAF">
39
+
40
+ <!-- Simbol -->
41
+ <img src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/anaf/simbol-anaf.svg" alt="ANAF Simbol">
42
+
43
+ <!-- Versiunea latest (se actualizează automat) -->
44
+ <img src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/guvernul-romaniei/guvernul-romaniei.svg" alt="Guvernul României">
45
+ ```
46
+
47
+ #### unpkg (CDN Fallback)
48
+
49
+ ```html
50
+ <img src="https://unpkg.com/@identitate-ro/logos@1.3.1/logos/pnrr/pnrr.svg" alt="PNRR">
51
+ ```
52
+
53
+ ### Via npm Package
54
+
55
+ După instalare, logo-urile sunt disponibile în `node_modules/@identitate-ro/logos/logos/`:
56
+
57
+ ```javascript
58
+ // În React, Vue, etc.
59
+ import logoPath from '@identitate-ro/logos/logos/anaf/anaf.svg';
60
+
61
+ function MyComponent() {
62
+ return <img src={logoPath} alt="ANAF" />;
63
+ }
64
+ ```
65
+
66
+ ```javascript
67
+ // În Node.js
68
+ import { readFileSync } from 'fs';
69
+ import { join } from 'path';
70
+
71
+ const logoPath = join(
72
+ process.cwd(),
73
+ 'node_modules/@identitate-ro/logos/logos/anaf/anaf.svg'
74
+ );
75
+ const logoContent = readFileSync(logoPath, 'utf8');
76
+ ```
77
+
78
+ ### 🎯 Web Component (Recomandat pentru Aplicații Moderne)
79
+
80
+ **Metoda profesională, framework-agnostic** — funcționează cu React, Vue, Angular, vanilla HTML, WordPress, etc.
81
+
82
+ #### Cum funcționează?
83
+
84
+ Web Component-ul `<identity-icon>` este un element HTML custom care:
85
+ - ✅ Descarcă automat SVG-ul din CDN
86
+ - ✅ Include caching inteligent (descarcă o singură dată)
87
+ - ✅ Permite stilizare CSS (`color`, `width`, `height`, etc.)
88
+ - ✅ Gestionează automat erorile și loading states
89
+ - ✅ Este complet agnostic de framework
90
+
91
+ #### Instalare și Setup
92
+
93
+ **Pas 1: Instalează pachetul**
94
+
95
+ ```bash
96
+ npm install @identitate-ro/logos
97
+ ```
98
+
99
+ **Pas 2: Importă loader-ul** (o singură dată în aplicație)
100
+
101
+ ```javascript
102
+ // În index.js, main.js, App.js, etc.
103
+ import '@identitate-ro/logos/loader';
104
+ ```
105
+
106
+ Sau în HTML:
107
+
108
+ ```html
109
+ <script src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/identity-loader.js"></script>
110
+ ```
111
+
112
+ **Pas 3: Folosește tag-ul `<identity-icon>`**
113
+
114
+ ```html
115
+ <identity-icon
116
+ src="https://identitate.eu/logos/anaf/anaf.svg">
117
+ </identity-icon>
118
+ ```
119
+
120
+ #### Exemple Complete
121
+
122
+ ##### Vanilla HTML
123
+
124
+ ```html
125
+ <!DOCTYPE html>
126
+ <html>
127
+ <head>
128
+ <title>Logo Instituții</title>
129
+ <script src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/identity-loader.js"></script>
130
+ <style>
131
+ .logo-guvern {
132
+ width: 64px;
133
+ height: 64px;
134
+ color: #003399; /* Albastru */
135
+ transition: color 0.3s;
136
+ }
137
+
138
+ .logo-guvern:hover {
139
+ color: #ffcc00; /* Galben la hover */
140
+ filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
141
+ }
142
+ </style>
143
+ </head>
144
+ <body>
145
+ <identity-icon
146
+ src="https://identitate.eu/logos/guvernul-romaniei/guvernul-romaniei.svg"
147
+ class="logo-guvern">
148
+ </identity-icon>
149
+ </body>
150
+ </html>
151
+ ```
152
+
153
+ ##### React
154
+
155
+ ```jsx
156
+ // App.js sau index.js
157
+ import '@identitate-ro/logos/loader';
158
+
159
+ function InstitutionLogo({ slug }) {
160
+ return (
161
+ <identity-icon
162
+ src={`https://identitate.eu/logos/${slug}/${slug}.svg`}
163
+ className="w-16 h-16 text-blue-600"
164
+ />
165
+ );
166
+ }
167
+
168
+ // Folosire
169
+ <InstitutionLogo slug="anaf" />
170
+ ```
171
+
172
+ ##### Vue
173
+
174
+ ```vue
175
+ <script setup>
176
+ // În main.js sau App.vue
177
+ import '@identitate-ro/logos/loader';
178
+
179
+ const props = defineProps(['institution']);
180
+ </script>
181
+
182
+ <template>
183
+ <identity-icon
184
+ :src="`https://identitate.eu/logos/${institution}/${institution}.svg`"
185
+ class="logo-icon"
186
+ />
187
+ </template>
188
+
189
+ <style scoped>
190
+ .logo-icon {
191
+ width: 64px;
192
+ height: 64px;
193
+ color: currentColor;
194
+ }
195
+ </style>
196
+ ```
197
+
198
+ ##### Angular
199
+
200
+ ```typescript
201
+ // app.component.ts
202
+ import '@identitate-ro/logos/loader';
203
+
204
+ @Component({
205
+ selector: 'app-institution-logo',
206
+ template: `
207
+ <identity-icon
208
+ [attr.src]="logoUrl"
209
+ class="institution-logo">
210
+ </identity-icon>
211
+ `,
212
+ styles: [`
213
+ .institution-logo {
214
+ width: 64px;
215
+ height: 64px;
216
+ color: #003399;
217
+ }
218
+ `]
219
+ })
220
+ export class InstitutionLogoComponent {
221
+ @Input() slug!: string;
222
+
223
+ get logoUrl() {
224
+ return `https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/${this.slug}/${this.slug}.svg`;
225
+ }
226
+ }
227
+ ```
228
+
229
+ ##### WordPress
230
+
231
+ ```php
232
+ <!-- functions.php -->
233
+ <?php
234
+ function enqueue_identity_loader() {
235
+ wp_enqueue_script(
236
+ 'identity-loader',
237
+ 'https://cdn.jsdelivr.net/npm/@identitate-ro/logos/identity-loader.js',
238
+ array(),
239
+ '1.0.0',
240
+ true
241
+ );
242
+ }
243
+ add_action('wp_enqueue_scripts', 'enqueue_identity_loader');
244
+ ?>
245
+
246
+ <!-- În template (page.php, single.php, etc.) -->
247
+ <identity-icon
248
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/primaria-cluj-napoca/primaria-cluj-napoca.svg"
249
+ style="width: 100px; height: 100px; color: #2c5aa0;">
250
+ </identity-icon>
251
+ ```
252
+
253
+ #### Stilizare CSS
254
+
255
+ Web Component-ul respectă complet CSS-ul:
256
+
257
+ ```css
258
+ /* Dimensiuni */
259
+ identity-icon {
260
+ width: 64px;
261
+ height: 64px;
262
+ }
263
+
264
+ /* Culoare (fill: currentColor activat automat) */
265
+ identity-icon {
266
+ color: #003399;
267
+ }
268
+
269
+ identity-icon:hover {
270
+ color: #ffcc00;
271
+ }
272
+
273
+ /* Efecte */
274
+ identity-icon {
275
+ filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
276
+ transition: all 0.3s ease;
277
+ }
278
+
279
+ /* Responsive */
280
+ @media (max-width: 768px) {
281
+ identity-icon {
282
+ width: 48px;
283
+ height: 48px;
284
+ }
285
+ }
286
+ ```
287
+
288
+ #### Atribute Suportate
289
+
290
+ - `src` **(obligatoriu)** — URL-ul către logo-ul SVG
291
+ - `size` *(opțional)* — Shortcut pentru width/height (ex: `size="64px"`)
292
+
293
+ ```html
294
+ <!-- Cu size attribute -->
295
+ <identity-icon
296
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg"
297
+ size="128px">
298
+ </identity-icon>
299
+ ```
300
+
301
+ #### Avantaje Web Component
302
+
303
+ 1. **Semantic HTML**: `<identity-icon>` comunică clar ce face
304
+ 2. **Caching inteligent**: Descarcă fiecare SVG o singură dată, chiar dacă îl folosești în 100 de locuri
305
+ 3. **Stilizare ușoară**: Folosește CSS normal (`color`, `width`, `height`, etc.)
306
+ 4. **Framework-agnostic**: Funcționează oriunde rulează JavaScript
307
+ 5. **Loading states**: Gestionează automat stările de loading și eroare
308
+ 6. **Security**: Sanitizare automată a SVG-urilor (remove script tags)
309
+
310
+ ### Metadata
311
+
312
+ Pachetul include `index.json` cu metadata despre toate logo-urile:
313
+
314
+ ```javascript
315
+ import metadata from '@identitate-ro/logos/index.json';
316
+
317
+ console.log(metadata.institutions);
318
+ // [
319
+ // {
320
+ // "id": "ro-anaf",
321
+ // "slug": "anaf",
322
+ // "name": "Agenția Națională de Administrare Fiscală",
323
+ // "logos": {
324
+ // "horizontal": {
325
+ // "color": "/logos/anaf/anaf.svg"
326
+ // },
327
+ // "symbol": {
328
+ // "color": "/logos/anaf/simbol-anaf.svg"
329
+ // }
330
+ // }
331
+ // },
332
+ // ...
333
+ // ]
334
+ ```
335
+
336
+ ## 📁 Structură
337
+
338
+ ```
339
+ @identitate-ro/logos/
340
+ ├── logos/
341
+ │ ├── anaf/
342
+ │ │ ├── anaf.svg
343
+ │ │ └── simbol-anaf.svg
344
+ │ ├── guvernul-romaniei/
345
+ │ │ ├── guvernul-romaniei.svg
346
+ │ │ ├── guvernul-romaniei-alb.svg
347
+ │ │ └── guvernul-romaniei-mono.svg
348
+ │ ├── ministerul-educatiei/
349
+ │ ├── pnrr/
350
+ │ ├── primaria-cluj-napoca/
351
+ │ └── ...
352
+ ├── index.json (metadata)
353
+ └── README.md
354
+ ```
355
+
356
+ ## 🎨 Formate Disponibile
357
+
358
+ Pentru fiecare instituție, logo-urile sunt disponibile în mai multe variante:
359
+
360
+ - **Color** — Versiunea color completă (recomandată)
361
+ - **Dark Mode** — Optimizată pentru fundal întunecat
362
+ - **White** — Pentru fundal întunecat (versiune albă)
363
+ - **Black** — Pentru fundal deschis (versiune neagră)
364
+ - **Monochrome** — Versiune monocromă
365
+
366
+ ### Layout-uri
367
+
368
+ - **Horizontal** — Logo complet orizontal (cel mai comun)
369
+ - **Vertical** — Logo complet vertical
370
+ - **Symbol** — Doar simbolul/iconița (fără text)
371
+
372
+ ## 🔗 CDN URLs Pattern
373
+
374
+ ```
375
+ https://cdn.jsdelivr.net/npm/@identitate-ro/logos@{version}/logos/{slug}/{filename}.svg
376
+ ```
377
+
378
+ **Exemple:**
379
+
380
+ ```
381
+ # Versiune specifică (recomandată pentru producție)
382
+ https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.0.0/logos/anaf/anaf.svg
383
+
384
+ # Latest version (se actualizează automat)
385
+ https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg
386
+
387
+ # Specific major version
388
+ https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1/logos/anaf/anaf.svg
389
+ ```
390
+
391
+ ## 📋 Lista Instituțiilor
392
+
393
+ Instituțiile disponibile în v1.0.0:
394
+
395
+ - `anaf` — Agenția Națională de Administrare Fiscală
396
+ - `guvernul-romaniei` — Guvernul României
397
+ - `ministerul-educatiei` — Ministerul Educației
398
+ - `pnrr` — Plan Național de Redresare și Reziliență
399
+ - `primaria-cluj-napoca` — Primăria Cluj-Napoca
400
+
401
+ Pentru lista completă și actualizată, consultă [identitatero.vercel.app](https://identitatero.vercel.app).
402
+
403
+ ## 💡 Exemple de Utilizare
404
+
405
+ ### HTML Simplu
406
+
407
+ ```html
408
+ <!DOCTYPE html>
409
+ <html>
410
+ <head>
411
+ <title>Logo-uri Instituții</title>
412
+ </head>
413
+ <body>
414
+ <img
415
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg"
416
+ alt="ANAF"
417
+ width="200"
418
+ >
419
+ </body>
420
+ </html>
421
+ ```
422
+
423
+ ### React/Next.js
424
+
425
+ ```jsx
426
+ export default function InstitutionLogo({ slug, variant = 'color' }) {
427
+ const cdnUrl = `https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/${slug}/${slug}.svg`;
428
+
429
+ return (
430
+ <img
431
+ src={cdnUrl}
432
+ alt={slug}
433
+ loading="lazy"
434
+ />
435
+ );
436
+ }
437
+ ```
438
+
439
+ ### Vue
440
+
441
+ ```vue
442
+ <template>
443
+ <img
444
+ :src="logoUrl"
445
+ :alt="institution"
446
+ loading="lazy"
447
+ />
448
+ </template>
449
+
450
+ <script setup>
451
+ import { computed } from 'vue';
452
+
453
+ const props = defineProps(['institution', 'variant']);
454
+
455
+ const logoUrl = computed(() =>
456
+ `https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/${props.institution}/${props.institution}.svg`
457
+ );
458
+ </script>
459
+ ```
460
+
461
+ ### CSS Background
462
+
463
+ ```css
464
+ .anaf-logo {
465
+ background-image: url('https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/anaf/anaf.svg');
466
+ background-size: contain;
467
+ background-repeat: no-repeat;
468
+ width: 200px;
469
+ height: 100px;
470
+ }
471
+ ```
472
+
473
+ ## 🎯 Best Practices
474
+
475
+ ### 1. Folosește Versiuni Specifice în Producție
476
+
477
+ ```html
478
+ <!-- ✅ Bine - versiune fixată -->
479
+ <img src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.0.0/logos/anaf/anaf.svg">
480
+
481
+ <!-- ⚠️ Evită în producție - poate schimba -->
482
+ <img src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@1.3.1/logos/anaf/anaf.svg">
483
+ ```
484
+
485
+ ### 2. Optimizare Performanță
486
+
487
+ ```html
488
+ <!-- Lazy loading -->
489
+ <img
490
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg"
491
+ loading="lazy"
492
+ alt="ANAF"
493
+ >
494
+
495
+ <!-- Preload pentru logo-uri critice -->
496
+ <link
497
+ rel="preload"
498
+ href="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/guvernul-romaniei/guvernul-romaniei.svg"
499
+ as="image"
500
+ >
501
+ ```
502
+
503
+ ### 3. Fallback Strategy
504
+
505
+ ```html
506
+ <img
507
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg"
508
+ onerror="this.src='https://unpkg.com/@identitate-ro/logos/logos/anaf/anaf.svg'"
509
+ alt="ANAF"
510
+ >
511
+ ```
512
+
513
+ ### 4. Accesibilitate
514
+
515
+ ```html
516
+ <!-- ✅ Include întotdeauna alt text descriptiv -->
517
+ <img
518
+ src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos/logos/anaf/anaf.svg"
519
+ alt="Logo Agenția Națională de Administrare Fiscală"
520
+ role="img"
521
+ >
522
+ ```
523
+
524
+ ## 📄 Licență
525
+
526
+ MIT License - vezi [LICENSE](./LICENSE) pentru detalii.
527
+
528
+ Toate logo-urile sunt proprietatea instituțiilor respective și sunt disponibile în scopuri informative și de utilizare legală conform ghidurilor de identitate vizuală ale fiecărei instituții.
529
+
530
+ ## 🤝 Contribuții
531
+
532
+ Acest pachet face parte din proiectul [IdentitateRO](https://github.com/laurentiucotet/IdentitateRO).
533
+
534
+ Pentru a adăuga logo-uri noi sau pentru a raporta probleme:
535
+
536
+ 1. Vizitează [github.com/laurentiucotet/IdentitateRO](https://github.com/laurentiucotet/IdentitateRO)
537
+ 2. Consultă [CONTRIBUTING.md](https://github.com/laurentiucotet/IdentitateRO/blob/main/website/CONTRIBUTING.md)
538
+ 3. Deschide un Pull Request sau Issue
539
+
540
+ ## 🔗 Link-uri Utile
541
+
542
+ - **Website**: [identitatero.vercel.app](https://identitatero.vercel.app)
543
+ - **Documentație**: [identitatero.vercel.app/utilizare](https://identitatero.vercel.app/utilizare)
544
+ - **GitHub**: [github.com/laurentiucotet/IdentitateRO](https://github.com/laurentiucotet/IdentitateRO)
545
+ - **npm Package**: [@identitate-ro/logos](https://www.npmjs.com/package/@identitate-ro/logos)
546
+ - **jsDelivr CDN**: [cdn.jsdelivr.net/npm/@identitate-ro/logos](https://cdn.jsdelivr.net/npm/@identitate-ro/logos/)
547
+ - **unpkg CDN**: [unpkg.com/@identitate-ro/logos](https://unpkg.com/@identitate-ro/logos/)
548
+
549
+ ## 📊 Stats
550
+
551
+ ![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/@identitate-ro/logos/badge)
552
+
553
+ ---
554
+
555
+ Made with ❤️ by [IdentitateRO Contributors](https://github.com/laurentiucotet/IdentitateRO/graphs/contributors)
@@ -0,0 +1,191 @@
1
+ /**
2
+ * IdentitateRO Web Component Loader
3
+ *
4
+ * A custom HTML element for loading Romanian institution logos
5
+ * Framework-agnostic, works with React, Vue, Angular, vanilla HTML, etc.
6
+ *
7
+ * Usage:
8
+ * <identity-icon src="https://cdn.jsdelivr.net/npm/@identitate-ro/logos@latest/logos/anaf/anaf.svg"></identity-icon>
9
+ *
10
+ * Features:
11
+ * - Automatic SVG fetching and injection
12
+ * - Built-in caching (loads each SVG only once)
13
+ * - CSS styling support (fill: currentColor)
14
+ * - Error handling with fallback display
15
+ * - Observable attributes (dynamic updates)
16
+ *
17
+ * @version 1.0.0
18
+ * @license MIT
19
+ */
20
+
21
+ // Global cache to prevent duplicate downloads
22
+ const svgCache = new Map();
23
+
24
+ class IdentityIcon extends HTMLElement {
25
+ constructor() {
26
+ super();
27
+ this._isLoading = false;
28
+ }
29
+
30
+ /**
31
+ * Called when element is added to the DOM
32
+ */
33
+ connectedCallback() {
34
+ this.render();
35
+ }
36
+
37
+ /**
38
+ * Define which attributes to observe for changes
39
+ */
40
+ static get observedAttributes() {
41
+ return ['src', 'size'];
42
+ }
43
+
44
+ /**
45
+ * Called when an observed attribute changes
46
+ */
47
+ attributeChangedCallback(name, oldValue, newValue) {
48
+ if (oldValue !== newValue && !this._isLoading) {
49
+ this.render();
50
+ }
51
+ }
52
+
53
+ /**
54
+ * Main rendering logic
55
+ */
56
+ async render() {
57
+ let url = this.getAttribute('src');
58
+
59
+ if (!url) {
60
+ this.showError('Missing src attribute');
61
+ return;
62
+ }
63
+
64
+ // Resolve relative paths to absolute URLs (for local dev / same-origin usage)
65
+ if (!url.startsWith('http://') && !url.startsWith('https://') && !url.startsWith('data:')) {
66
+ try {
67
+ url = new URL(url, document.baseURI).href;
68
+ } catch (e) {
69
+ this.showError('Invalid URL: ' + url);
70
+ return;
71
+ }
72
+ }
73
+
74
+ // Check cache first
75
+ if (svgCache.has(url)) {
76
+ this.injectSvg(svgCache.get(url));
77
+ return;
78
+ }
79
+
80
+ // Show loading state
81
+ this.showLoading();
82
+ this._isLoading = true;
83
+
84
+ try {
85
+ // Fetch SVG content
86
+ const response = await fetch(url);
87
+
88
+ if (!response.ok) {
89
+ throw new Error(`HTTP ${response.status}: ${response.statusText}`);
90
+ }
91
+
92
+ const contentType = response.headers.get('content-type') || '';
93
+ const isSvg = contentType.includes('svg') || contentType.includes('xml') || url.endsWith('.svg');
94
+ if (!isSvg) {
95
+ throw new Error('Response is not an SVG file');
96
+ }
97
+
98
+ const svgContent = await response.text();
99
+
100
+ // Basic security: remove script tags
101
+ const cleanedSvg = this.sanitizeSvg(svgContent);
102
+
103
+ // Save to cache
104
+ svgCache.set(url, cleanedSvg);
105
+
106
+ // Inject into DOM
107
+ this.injectSvg(cleanedSvg);
108
+
109
+ } catch (error) {
110
+ console.error('[IdentitateRO] Failed to load logo:', url, error);
111
+ this.showError(error.message);
112
+ } finally {
113
+ this._isLoading = false;
114
+ }
115
+ }
116
+
117
+ /**
118
+ * Remove potentially dangerous content from SVG
119
+ */
120
+ sanitizeSvg(svgContent) {
121
+ // Remove script tags and event handlers
122
+ return svgContent
123
+ .replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, '')
124
+ .replace(/on\w+="[^"]*"/gi, '')
125
+ .replace(/on\w+='[^']*'/gi, '');
126
+ }
127
+
128
+ /**
129
+ * Inject SVG content into the element
130
+ */
131
+ injectSvg(svgContent) {
132
+ this.innerHTML = svgContent;
133
+
134
+ // Configure SVG element for CSS styling
135
+ const svg = this.querySelector('svg');
136
+ if (svg) {
137
+ // Make SVG responsive
138
+ svg.setAttribute('width', '100%');
139
+ svg.setAttribute('height', '100%');
140
+
141
+ // Enable CSS color control
142
+ svg.style.fill = 'currentColor';
143
+
144
+ // Preserve aspect ratio
145
+ if (!svg.hasAttribute('viewBox') && svg.hasAttribute('width') && svg.hasAttribute('height')) {
146
+ const width = svg.getAttribute('width');
147
+ const height = svg.getAttribute('height');
148
+ svg.setAttribute('viewBox', `0 0 ${width} ${height}`);
149
+ }
150
+
151
+ // Apply size attribute if present
152
+ const size = this.getAttribute('size');
153
+ if (size) {
154
+ this.style.width = size;
155
+ this.style.height = size;
156
+ }
157
+
158
+ // Ensure display is set
159
+ if (!this.style.display || this.style.display === '') {
160
+ this.style.display = 'inline-block';
161
+ }
162
+ }
163
+ }
164
+
165
+ /**
166
+ * Show loading state
167
+ */
168
+ showLoading() {
169
+ this.innerHTML = `<span style="opacity: 0.5; font-size: 0.75em;">⏳</span>`;
170
+ this.setAttribute('aria-busy', 'true');
171
+ }
172
+
173
+ /**
174
+ * Show error state
175
+ */
176
+ showError(message) {
177
+ this.innerHTML = `<span style="opacity: 0.5; font-size: 0.75em;" title="${message}">⚠️</span>`;
178
+ this.setAttribute('aria-invalid', 'true');
179
+ this.removeAttribute('aria-busy');
180
+ }
181
+ }
182
+
183
+ // Register the custom element
184
+ if (!customElements.get('identity-icon')) {
185
+ customElements.define('identity-icon', IdentityIcon);
186
+ }
187
+
188
+ // Export for module environments
189
+ if (typeof module !== 'undefined' && module.exports) {
190
+ module.exports = IdentityIcon;
191
+ }
package/index.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "version": "1.1.0",
3
+ "generated": "2026-03-04T16:27:25.121Z",
4
+ "count": 3,
5
+ "totalLogos": 6,
6
+ "institutions": [
7
+ {
8
+ "id": "eu-flag",
9
+ "slug": "eu-flag",
10
+ "name": "Steagul Uniunii Europene",
11
+ "layouts": [
12
+ "symbol"
13
+ ],
14
+ "logoCount": 3,
15
+ "logos": {
16
+ "symbol": {
17
+ "black": "/logos/eu-flag/symbol/black.svg",
18
+ "color": "/logos/eu-flag/symbol/color.svg",
19
+ "white": "/logos/eu-flag/symbol/white.svg"
20
+ }
21
+ }
22
+ },
23
+ {
24
+ "id": "md-guvern",
25
+ "slug": "md-guvern",
26
+ "name": "Md Guvern",
27
+ "layouts": [],
28
+ "logoCount": 0,
29
+ "logos": {}
30
+ },
31
+ {
32
+ "id": "md-guvernul-moldovei",
33
+ "slug": "md-guvernul-moldovei",
34
+ "name": "Md Guvernul Moldovei",
35
+ "layouts": [
36
+ "horizontal",
37
+ "symbol"
38
+ ],
39
+ "logoCount": 3,
40
+ "logos": {
41
+ "horizontal": {
42
+ "color": "/logos/md-guvernul-moldovei/horizontal/color.svg",
43
+ "white": "/logos/md-guvernul-moldovei/horizontal/white.svg"
44
+ },
45
+ "symbol": {
46
+ "color": "/logos/md-guvernul-moldovei/symbol/color.svg"
47
+ }
48
+ }
49
+ }
50
+ ]
51
+ }
@@ -0,0 +1,3 @@
1
+ <svg width="341" height="227" viewBox="0 0 341 227" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M341 0V227H0V0H341ZM167.664 185.271L158.5 185.273L158.488 185.272L165.913 190.658L163.081 199.359L163.075 199.371L163.078 199.368L163.077 199.372L163.085 199.363L170.5 193.983L177.918 199.365L177.924 199.372L177.923 199.369L177.925 199.371L177.921 199.364L175.087 190.657L182.507 185.275L182.51 185.274L182.509 185.273L182.512 185.272L182.499 185.273L173.335 185.271L170.5 176.556L167.664 185.271ZM129.772 175.134L120.611 175.133L120.6 175.131L120.602 175.133H120.6L120.607 175.137L128.021 180.516L125.188 189.23L125.194 189.224L125.19 189.232L132.615 183.846L140.012 189.212L140.035 189.236L140.032 189.227L140.039 189.232L140.024 189.205L137.196 180.521L144.616 175.14L144.62 175.139L144.618 175.138L144.623 175.136L144.604 175.138L135.445 175.134L132.607 166.418L129.772 175.134ZM205.553 175.134L196.394 175.138L196.376 175.136L196.38 175.138L196.379 175.139L196.382 175.14L203.802 180.521L200.974 189.205L200.96 189.232L200.966 189.227L200.964 189.236L200.986 189.212L208.383 183.846L215.809 189.232L215.804 189.224L215.811 189.23L212.977 180.517L220.395 175.135L220.399 175.133H220.397L220.399 175.132L220.393 175.133L211.225 175.134L208.392 166.418L205.553 175.134ZM233.288 147.438L224.136 147.442L224.112 147.439L224.117 147.442L224.115 147.443L224.123 147.447L231.538 152.825L228.71 161.509L228.696 161.536L228.702 161.53L228.7 161.54L228.723 161.516L236.119 156.149L243.545 161.536L243.54 161.527L243.547 161.534L240.713 152.82L248.13 147.438L248.135 147.437H248.133L248.135 147.436L248.128 147.437L238.96 147.438L236.127 138.723L233.288 147.438ZM102.037 147.438L92.8701 147.437L92.8643 147.436L92.8652 147.437H92.8643L92.8682 147.438L100.285 152.818L97.4521 161.534L97.458 161.527L97.4541 161.536L104.879 156.149L112.278 161.519L112.299 161.539L112.296 161.531L112.303 161.536L112.289 161.511L109.461 152.825L116.875 147.447L116.884 147.443L116.881 147.442L116.887 147.439L116.862 147.442L107.71 147.438L104.872 138.723L102.037 147.438ZM91.8867 109.604L82.7227 109.606L82.7109 109.605L82.7129 109.606V109.607L82.7148 109.608L90.1357 114.991L87.3037 123.692L87.2979 123.704L87.3008 123.701L87.2998 123.705L87.3076 123.696L94.7227 118.316L102.141 123.698L102.146 123.705L102.146 123.702L102.147 123.704L102.144 123.697L99.3096 114.99L106.729 109.608L106.732 109.607L106.731 109.606L106.734 109.605L106.722 109.606L97.5576 109.604L94.7227 100.89L91.8867 109.604ZM243.44 109.604L234.276 109.606L234.265 109.605L234.267 109.606V109.607L234.269 109.608L241.688 114.99L238.853 123.705L238.857 123.698L246.274 118.315L253.694 123.698L253.7 123.705L253.699 123.702L253.701 123.704L253.697 123.696L250.863 114.99L258.283 109.608L258.286 109.607L258.285 109.606L258.288 109.605L258.275 109.606L249.111 109.604L246.276 100.89L243.44 109.604ZM102.038 71.7705H92.8682L92.8623 71.7695L92.8633 71.7705H92.8623L92.8662 71.7725L100.285 77.1553L97.4512 85.8691L97.4541 85.8652L97.4521 85.8701L104.877 80.4834L112.289 85.8623L112.298 85.8711L112.296 85.8672L112.3 85.8701L112.293 85.8584L109.461 77.1572L116.887 71.7715H116.88L107.709 71.7705L104.873 63.0557L102.038 71.7705ZM233.289 71.7695L224.118 71.7715H224.112L231.537 77.1572L228.705 85.8584L228.699 85.8701L228.702 85.8672L228.701 85.8711L228.709 85.8623L236.122 80.4834L243.547 85.8701L243.544 85.8652L243.548 85.8691L240.713 77.1543L248.132 71.7725L248.137 71.7705H248.135L248.137 71.7695L248.13 71.7705H238.961L236.126 63.0557L233.289 71.7695ZM129.776 44.0742L120.61 44.0762L120.599 44.0752L120.601 44.0762V44.0771L128.023 49.4609L125.19 58.165L125.187 58.1738L125.188 58.1719L125.188 58.1758L125.196 58.166L132.608 52.7881L140.033 58.1738L140.03 58.1689L140.034 58.1729L137.199 49.459L144.618 44.0762L144.623 44.0742H144.621L144.623 44.0732L144.616 44.0742L135.447 44.0752L132.613 35.3604L129.776 44.0742ZM205.55 44.0752L196.382 44.0742L196.376 44.0732L196.377 44.0742H196.376L196.38 44.0762L203.799 49.459L200.965 58.1729L200.968 58.1689L200.966 58.1738L208.39 52.7881L215.801 58.165L215.812 58.1758L215.81 58.1719L215.812 58.1738L215.808 58.165L212.975 49.4619L220.4 44.0762H220.394L211.223 44.0742L208.387 35.3604L205.55 44.0752ZM167.665 33.9375L158.506 33.9404L158.488 33.9385L158.492 33.9404L158.49 33.9414L158.496 33.9443L165.912 39.3232L163.078 48.0303L163.075 48.0371L163.076 48.0352V48.0381L163.081 48.0312L170.5 42.6494L177.918 48.0312L177.924 48.0381L177.923 48.0352L177.925 48.0371L177.921 48.0303L175.087 39.3232L182.503 33.9443L182.51 33.9414L182.507 33.9404L182.512 33.9385L182.493 33.9404L173.336 33.9375L170.501 25.2227L167.665 33.9375Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="203" height="13" viewBox="0 0 203 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.22059 8.53967V6.09963C1.22059 5.56825 1.22059 5.13446 1.22059 4.79828C1.22059 4.4621 1.22059 4.19099 1.22059 3.98494C1.22059 3.76805 1.21516 3.59995 1.20432 3.48066C1.20432 3.35053 1.1989 3.23124 1.18805 3.12279C1.16636 2.88421 1.12299 2.70528 1.05792 2.58599C0.992851 2.46669 0.841026 2.39078 0.602445 2.35825C0.548222 2.3474 0.466888 2.34198 0.358442 2.34198C0.26084 2.33114 0.179506 2.32571 0.114438 2.32571C0.0385262 2.32571 0.00057016 2.28776 0.00057016 2.21185C0.00057016 2.13593 0.0764823 2.09798 0.228307 2.09798C0.390976 2.09798 0.564489 2.1034 0.748847 2.11424C0.933205 2.11424 1.10672 2.11424 1.26939 2.11424C1.43206 2.11424 1.56761 2.11967 1.67606 2.13051C1.79535 2.13051 1.86584 2.13051 1.88753 2.13051C1.89837 2.13051 1.98513 2.13051 2.1478 2.13051C2.31047 2.13051 2.50567 2.13051 2.73341 2.13051C2.97199 2.13051 3.22684 2.13051 3.49795 2.13051C3.77991 2.13051 4.0456 2.13051 4.29503 2.13051C4.54446 2.13051 4.76135 2.13051 4.94571 2.13051C5.13006 2.13051 5.24935 2.13051 5.30358 2.13051C5.44456 2.11967 5.57469 2.10882 5.69398 2.09798C5.81327 2.07629 5.90003 2.06002 5.95425 2.04918C5.98679 2.03833 6.01932 2.02749 6.05185 2.01664C6.08439 1.99495 6.11692 1.98411 6.14946 1.98411C6.19283 1.98411 6.21452 2.02749 6.21452 2.11424C6.21452 2.16847 6.19826 2.24438 6.16572 2.34198C6.14403 2.42874 6.12234 2.56972 6.10065 2.76492C6.10065 2.79745 6.09523 2.8571 6.08439 2.94386C6.08439 3.01977 6.07897 3.10653 6.06812 3.20413C6.05728 3.30173 6.04643 3.39391 6.03559 3.48066C6.03559 3.56742 6.03016 3.63249 6.01932 3.67587C6.00848 3.7084 5.99221 3.74093 5.97052 3.77347C5.94883 3.806 5.92172 3.82227 5.88919 3.82227C5.81327 3.82227 5.77532 3.76262 5.77532 3.64333C5.77532 3.58911 5.76989 3.51862 5.75905 3.43186C5.74821 3.33426 5.72652 3.24208 5.69398 3.15533C5.67229 3.1011 5.63976 3.0523 5.59638 3.00892C5.56385 2.96555 5.50962 2.92759 5.43371 2.89506C5.3578 2.86252 5.2602 2.83541 5.14091 2.81372C5.02162 2.78119 4.86437 2.75408 4.66917 2.73239C4.6041 2.72154 4.46854 2.71612 4.2625 2.71612C4.05645 2.70527 3.83413 2.69985 3.59555 2.69985C3.36782 2.68901 3.15635 2.68359 2.96114 2.68359C2.76594 2.68359 2.64665 2.68359 2.60327 2.68359C2.54905 2.68359 2.52194 2.73239 2.52194 2.82999V6.58764C2.52194 6.68524 2.54905 6.73404 2.60327 6.73404C2.64665 6.73404 2.77679 6.73404 2.99368 6.73404C3.22141 6.73404 3.47084 6.73404 3.74196 6.73404C4.01307 6.73404 4.26792 6.73404 4.5065 6.73404C4.74508 6.7232 4.90775 6.71235 4.99451 6.70151C5.16802 6.67982 5.309 6.66355 5.41745 6.65271C5.52589 6.63102 5.61807 6.58222 5.69398 6.50631C5.81327 6.38702 5.88376 6.32737 5.90545 6.32737C5.95967 6.32737 5.98679 6.36533 5.98679 6.44124C5.98679 6.48462 5.97052 6.56595 5.93799 6.68524C5.9163 6.80453 5.89461 6.97805 5.87292 7.20578C5.85123 7.34676 5.83496 7.52028 5.82412 7.72632C5.81327 7.92153 5.80785 8.04624 5.80785 8.10046C5.80785 8.15468 5.79701 8.21433 5.77532 8.2794C5.76447 8.33362 5.73194 8.36073 5.67772 8.36073C5.61265 8.36073 5.58011 8.31735 5.58011 8.2306C5.58011 8.16553 5.57469 8.09504 5.56385 8.01913C5.56385 7.94321 5.54758 7.86188 5.51505 7.77512C5.49336 7.67752 5.43371 7.59077 5.33611 7.51485C5.24935 7.43894 5.065 7.38472 4.78304 7.35218C4.68543 7.34134 4.52819 7.3305 4.3113 7.31965C4.0944 7.30881 3.87209 7.30338 3.64435 7.30338C3.41662 7.29254 3.20515 7.28712 3.00995 7.28712C2.81474 7.28712 2.68461 7.28712 2.61954 7.28712C2.55447 7.28712 2.52194 7.31965 2.52194 7.38472V8.53967C2.52194 8.65896 2.52194 8.83789 2.52194 9.07647C2.52194 9.30421 2.52194 9.54279 2.52194 9.79222C2.52194 10.0416 2.52194 10.2748 2.52194 10.4917C2.52194 10.6977 2.52194 10.8333 2.52194 10.8984C2.53278 11.1261 2.55989 11.3159 2.60327 11.4677C2.64665 11.6087 2.72799 11.7226 2.84728 11.8093C2.97741 11.8852 3.15092 11.9394 3.36782 11.972C3.58471 11.9937 3.87209 12.0045 4.22996 12.0045C4.41432 12.0045 4.6529 11.9991 4.94571 11.9882C5.23851 11.9774 5.47709 11.934 5.66145 11.8581C5.84581 11.7714 5.98679 11.6629 6.08439 11.5328C6.19283 11.3918 6.26875 11.1803 6.31212 10.8984C6.34466 10.7574 6.39346 10.6869 6.45853 10.6869C6.5019 10.6869 6.52902 10.7086 6.53986 10.752C6.55071 10.7953 6.55613 10.8441 6.55613 10.8984C6.55613 10.9201 6.55071 10.9905 6.53986 11.1098C6.52902 11.2183 6.51275 11.3484 6.49106 11.5002C6.46937 11.6412 6.44768 11.7822 6.42599 11.9232C6.4043 12.0533 6.38261 12.1563 6.36092 12.2323C6.33924 12.319 6.3067 12.3895 6.26332 12.4437C6.23079 12.4871 6.18741 12.5196 6.13319 12.5413C6.07897 12.563 6.00305 12.5739 5.90545 12.5739C5.8187 12.5847 5.70483 12.5901 5.56385 12.5901C5.02162 12.5901 4.54446 12.5847 4.13236 12.5739C3.72027 12.563 3.36782 12.5522 3.07501 12.5413C2.77136 12.5196 2.52194 12.5088 2.32674 12.5088C2.14238 12.5088 1.99598 12.5088 1.88753 12.5088C1.86584 12.5088 1.79535 12.5088 1.67606 12.5088C1.55677 12.5088 1.42121 12.5142 1.26939 12.5251C1.12841 12.5359 0.982006 12.5413 0.830182 12.5413C0.689202 12.5522 0.559067 12.5576 0.439776 12.5576C0.287952 12.5576 0.21204 12.5196 0.21204 12.4437C0.21204 12.3678 0.249996 12.3299 0.325908 12.3299C0.390976 12.3299 0.461465 12.3244 0.537378 12.3136C0.624134 12.2919 0.700046 12.2756 0.765114 12.2648C0.906094 12.2431 0.99285 12.1672 1.02538 12.037C1.06876 11.9069 1.10672 11.7388 1.13925 11.5328C1.18263 11.2508 1.20432 10.8496 1.20432 10.329C1.21516 9.80848 1.22059 9.21203 1.22059 8.53967ZM9.28541 8.13299V6.09963C9.28541 5.56825 9.28541 5.13446 9.28541 4.79828C9.28541 4.4621 9.28541 4.19099 9.28541 3.98494C9.28541 3.76805 9.27998 3.59995 9.26914 3.48066C9.26914 3.35053 9.26372 3.23124 9.25287 3.12279C9.23118 2.9059 9.1878 2.73239 9.12274 2.60225C9.05767 2.47212 8.90585 2.39078 8.66726 2.35825C8.61304 2.3474 8.53171 2.34198 8.42326 2.34198C8.32566 2.33114 8.24433 2.32571 8.17926 2.32571C8.10335 2.32571 8.06539 2.28776 8.06539 2.21185C8.06539 2.13593 8.1413 2.09798 8.29313 2.09798C8.45579 2.09798 8.62389 2.1034 8.7974 2.11424C8.98176 2.11424 9.14985 2.11424 9.30167 2.11424C9.46434 2.11424 9.5999 2.11967 9.70835 2.13051C9.82764 2.13051 9.90355 2.13051 9.93608 2.13051C9.96862 2.13051 10.0391 2.13051 10.1476 2.13051C10.2668 2.11967 10.397 2.11424 10.538 2.11424C10.6898 2.11424 10.8416 2.11424 10.9934 2.11424C11.1453 2.1034 11.2754 2.09798 11.3838 2.09798C11.5465 2.09798 11.6278 2.13593 11.6278 2.21185C11.6278 2.28776 11.5845 2.32571 11.4977 2.32571C11.4435 2.32571 11.3893 2.32571 11.335 2.32571C11.2917 2.32571 11.2266 2.33656 11.1398 2.35825C10.9555 2.39078 10.8308 2.47212 10.7657 2.60225C10.7115 2.72154 10.6735 2.89506 10.6518 3.12279C10.641 3.23124 10.6301 3.35053 10.6193 3.48066C10.6193 3.59995 10.6193 3.76805 10.6193 3.98494C10.6193 4.19099 10.6193 4.4621 10.6193 4.79828C10.6193 5.13446 10.6193 5.56825 10.6193 6.09963V8.03539C10.6193 8.53425 10.6464 8.96803 10.7006 9.33675C10.7548 9.69462 10.8253 10.0091 10.9121 10.2802C11.0097 10.5405 11.1236 10.7628 11.2537 10.9472C11.3838 11.1207 11.5248 11.2779 11.6766 11.4189C12.0237 11.7334 12.3598 11.9394 12.6852 12.037C13.0214 12.1238 13.3955 12.1672 13.8076 12.1672C14.2522 12.1672 14.6697 12.0804 15.0602 11.9069C15.4506 11.7226 15.7705 11.484 16.0199 11.1912C16.3561 10.7899 16.573 10.3128 16.6706 9.75968C16.779 9.19577 16.8332 8.55593 16.8332 7.84019V6.09963C16.8332 5.56825 16.8332 5.13446 16.8332 4.79828C16.8332 4.4621 16.8278 4.19099 16.817 3.98494C16.817 3.76805 16.8116 3.59995 16.8007 3.48066C16.8007 3.35053 16.8007 3.23124 16.8007 3.12279C16.7899 2.9059 16.7519 2.73239 16.6868 2.60225C16.6218 2.47212 16.4699 2.39078 16.2314 2.35825C16.1771 2.3474 16.0958 2.34198 15.9874 2.34198C15.8898 2.33114 15.8084 2.32571 15.7434 2.32571C15.6674 2.32571 15.6295 2.28776 15.6295 2.21185C15.6295 2.13593 15.7054 2.09798 15.8572 2.09798C16.0199 2.09798 16.188 2.1034 16.3615 2.11424C16.535 2.11424 16.6923 2.11424 16.8332 2.11424C16.9851 2.11424 17.1098 2.11967 17.2074 2.13051C17.3158 2.13051 17.3809 2.13051 17.4026 2.13051C17.4568 2.13051 17.6141 2.12509 17.8743 2.11424C18.1454 2.1034 18.3894 2.09798 18.6063 2.09798C18.7582 2.09798 18.8341 2.13593 18.8341 2.21185C18.8341 2.28776 18.7961 2.32571 18.7202 2.32571C18.666 2.32571 18.6118 2.32571 18.5575 2.32571C18.5142 2.32571 18.4491 2.33656 18.3623 2.35825C18.1671 2.40163 18.037 2.48296 17.9719 2.60225C17.9177 2.72154 17.8797 2.89506 17.8581 3.12279C17.8472 3.23124 17.8418 3.35053 17.8418 3.48066C17.8418 3.59995 17.8418 3.76805 17.8418 3.98494C17.8418 4.19099 17.8418 4.4621 17.8418 4.79828C17.8418 5.13446 17.8418 5.56825 17.8418 6.09963V7.57992C17.8418 7.95948 17.8255 8.34446 17.793 8.73487C17.7605 9.11443 17.6954 9.48857 17.5978 9.85729C17.5002 10.2152 17.3646 10.5568 17.1911 10.8821C17.0176 11.2074 16.7899 11.4894 16.5079 11.728C16.2476 11.9557 15.9819 12.1347 15.7108 12.2648C15.4506 12.3949 15.1903 12.4925 14.93 12.5576C14.6806 12.6335 14.4312 12.6823 14.1817 12.704C13.9432 12.7257 13.7208 12.7365 13.5148 12.7365C13.3955 12.7365 13.222 12.7311 12.9943 12.7203C12.7665 12.7094 12.5117 12.6715 12.2297 12.6064C11.9478 12.5413 11.655 12.4437 11.3513 12.3136C11.0585 12.1835 10.7874 11.9991 10.538 11.7605C10.3644 11.5978 10.2018 11.4135 10.05 11.2074C9.89813 10.9905 9.76257 10.7411 9.64328 10.4592C9.53483 10.1772 9.44808 9.84644 9.38301 9.46688C9.31794 9.08732 9.28541 8.64269 9.28541 8.13299ZM20.4351 7.46605H24.5343C24.6753 7.46605 24.7892 7.4769 24.876 7.49859C24.9736 7.52028 25.0224 7.56365 25.0224 7.62872C25.0224 7.72632 24.9573 7.79139 24.8272 7.82392C24.7079 7.85646 24.5831 7.88357 24.453 7.90526C24.3771 7.9161 24.2415 7.93779 24.0463 7.97033C23.8511 7.99202 23.6234 8.02455 23.3631 8.06793C23.1137 8.10046 22.8426 8.13842 22.5498 8.1818C22.2678 8.22517 21.9967 8.26855 21.7364 8.31193C21.4762 8.34446 21.2376 8.38242 21.0207 8.4258C20.8147 8.45833 20.6682 8.48544 20.5815 8.50713C20.4297 8.55051 20.2887 8.60473 20.1586 8.6698C20.0393 8.72403 19.9579 8.75114 19.9145 8.75114C19.8278 8.75114 19.8007 8.6698 19.8332 8.50713L20.0772 7.59619C20.0989 7.54196 20.1314 7.50943 20.1748 7.49859C20.2182 7.4769 20.305 7.46605 20.4351 7.46605ZM27.9447 8.53967V6.09963C27.9447 5.56825 27.9447 5.13446 27.9447 4.79828C27.9447 4.4621 27.9447 4.19099 27.9447 3.98494C27.9447 3.76805 27.9393 3.59995 27.9284 3.48066C27.9284 3.35053 27.923 3.23124 27.9121 3.12279C27.8905 2.88421 27.8471 2.70528 27.782 2.58599C27.7169 2.46669 27.5651 2.39078 27.3265 2.35825C27.2723 2.3474 27.191 2.34198 27.0825 2.34198C26.9849 2.33114 26.9036 2.32571 26.8385 2.32571C26.7626 2.32571 26.7247 2.28776 26.7247 2.21185C26.7247 2.13593 26.8006 2.09798 26.9524 2.09798C27.1151 2.09798 27.2886 2.1034 27.4729 2.11424C27.6573 2.11424 27.8254 2.11424 27.9772 2.11424C28.1399 2.11424 28.2754 2.11967 28.3839 2.13051C28.4923 2.13051 28.5574 2.13051 28.5791 2.13051C28.6225 2.13051 28.7363 2.13051 28.9207 2.13051C29.1159 2.13051 29.3382 2.13051 29.5876 2.13051C29.8479 2.13051 30.1244 2.13051 30.4172 2.13051C30.71 2.13051 30.9866 2.13051 31.2469 2.13051C31.5071 2.13051 31.7294 2.13051 31.9138 2.13051C32.109 2.13051 32.2337 2.13051 32.2879 2.13051C32.4289 2.11967 32.5536 2.11424 32.6621 2.11424C32.7814 2.1034 32.8735 2.08713 32.9386 2.06544C32.982 2.0546 33.0199 2.03833 33.0525 2.01664C33.085 1.99495 33.1121 1.98411 33.1338 1.98411C33.1989 1.98411 33.2314 2.02749 33.2314 2.11424C33.2314 2.16847 33.2151 2.24438 33.1826 2.34198C33.1609 2.42874 33.1392 2.56972 33.1175 2.76492C33.1175 2.79745 33.1121 2.8571 33.1013 2.94386C33.1013 3.01977 33.0959 3.10653 33.085 3.20413C33.085 3.30173 33.0796 3.39391 33.0687 3.48066C33.0687 3.56742 33.0633 3.63249 33.0525 3.67587C33.0416 3.7084 33.0254 3.74093 33.0037 3.77347C32.982 3.806 32.9549 3.82227 32.9223 3.82227C32.8464 3.82227 32.8085 3.76805 32.8085 3.6596C32.8085 3.60538 32.7976 3.52946 32.7759 3.43186C32.7543 3.32342 32.7217 3.22582 32.6783 3.13906C32.635 3.0523 32.5319 2.96555 32.3693 2.87879C32.2066 2.78119 31.9843 2.73239 31.7023 2.73239L29.3599 2.69985C29.284 2.69985 29.246 2.74865 29.246 2.84625V6.62017C29.246 6.66355 29.246 6.69609 29.246 6.71778C29.2569 6.73946 29.2894 6.75031 29.3436 6.75031L31.2957 6.73404C31.4149 6.73404 31.5288 6.73404 31.6373 6.73404C31.7457 6.73404 31.8487 6.72862 31.9463 6.71778C32.1198 6.69609 32.2554 6.6744 32.353 6.65271C32.4614 6.62017 32.5482 6.56053 32.6133 6.47377C32.6892 6.37617 32.7488 6.32737 32.7922 6.32737C32.8464 6.32737 32.8735 6.36533 32.8735 6.44124C32.8735 6.48462 32.8573 6.56595 32.8247 6.68524C32.7922 6.80453 32.7651 6.97805 32.7434 7.20578C32.7217 7.34676 32.7055 7.5257 32.6946 7.74259C32.6946 7.94864 32.6946 8.07877 32.6946 8.13299C32.6946 8.19806 32.6838 8.26313 32.6621 8.3282C32.6512 8.38242 32.6187 8.40953 32.5645 8.40953C32.4994 8.40953 32.4669 8.36615 32.4669 8.2794C32.456 8.20348 32.4452 8.12215 32.4343 8.03539C32.4235 7.94864 32.4018 7.86188 32.3693 7.77512C32.3367 7.67752 32.2608 7.59077 32.1415 7.51485C32.0222 7.4281 31.8542 7.36845 31.6373 7.33592C31.5505 7.32507 31.3933 7.31965 31.1655 7.31965C30.9378 7.30881 30.6992 7.30338 30.4498 7.30338C30.2004 7.30338 29.9672 7.30338 29.7503 7.30338C29.5443 7.30338 29.4087 7.30338 29.3436 7.30338C29.2786 7.30338 29.246 7.34676 29.246 7.43352V8.53967C29.246 9.22288 29.246 9.82475 29.246 10.3453C29.2569 10.8658 29.2786 11.2617 29.3111 11.5328C29.3328 11.7388 29.3762 11.9069 29.4412 12.037C29.5063 12.1563 29.6364 12.2323 29.8316 12.2648C29.9401 12.2865 30.0594 12.3027 30.1895 12.3136C30.3196 12.3244 30.4172 12.3299 30.4823 12.3299C30.5582 12.3299 30.5962 12.3678 30.5962 12.4437C30.5962 12.5196 30.5203 12.5576 30.3684 12.5576C30.1732 12.5576 29.9726 12.5522 29.7666 12.5413C29.5605 12.5413 29.3707 12.5359 29.1972 12.5251C29.0237 12.5251 28.8773 12.5196 28.758 12.5088C28.6496 12.5088 28.5899 12.5088 28.5791 12.5088C28.5574 12.5088 28.4923 12.5088 28.3839 12.5088C28.2754 12.5196 28.1453 12.5251 27.9935 12.5251C27.8525 12.5359 27.7061 12.5413 27.5543 12.5413C27.4024 12.5522 27.2723 12.5576 27.1639 12.5576C27.012 12.5576 26.9361 12.5196 26.9361 12.4437C26.9361 12.3678 26.9741 12.3299 27.05 12.3299C27.1151 12.3299 27.1856 12.3244 27.2615 12.3136C27.3482 12.2919 27.4241 12.2756 27.4892 12.2648C27.6302 12.2431 27.7169 12.1672 27.7495 12.037C27.7929 11.9069 27.8308 11.7388 27.8633 11.5328C27.9067 11.2508 27.9284 10.8496 27.9284 10.329C27.9393 9.80848 27.9447 9.21203 27.9447 8.53967ZM37.7887 6.09963V8.5722C37.7887 9.0819 37.7887 9.5211 37.7887 9.88982C37.7995 10.2477 37.8158 10.5513 37.8375 10.8008C37.8592 11.0393 37.8863 11.2291 37.9188 11.3701C37.9622 11.5111 38.0164 11.6141 38.0815 11.6792C38.2008 11.7985 38.4068 11.8852 38.6996 11.9394C38.9924 11.9828 39.4208 12.0045 39.9847 12.0045C40.3643 12.0045 40.7005 11.9882 40.9933 11.9557C41.2969 11.9123 41.5355 11.7876 41.709 11.5816C41.7958 11.4731 41.8663 11.3538 41.9205 11.2237C41.9855 11.0827 42.0289 10.9417 42.0506 10.8008C42.0723 10.6815 42.1211 10.6218 42.197 10.6218C42.2621 10.6218 42.2946 10.6923 42.2946 10.8333C42.2946 10.8658 42.2892 10.9417 42.2783 11.061C42.2675 11.1695 42.2512 11.2942 42.2295 11.4352C42.2079 11.5653 42.1862 11.7063 42.1645 11.8581C42.1428 11.9991 42.1157 12.1184 42.0831 12.216C42.0615 12.3027 42.0343 12.3732 42.0018 12.4275C41.9801 12.4708 41.9367 12.5034 41.8717 12.5251C41.8175 12.5467 41.7361 12.563 41.6277 12.5739C41.5192 12.5847 41.3674 12.5901 41.1722 12.5901C40.1745 12.5901 39.3449 12.5739 38.6834 12.5413C38.358 12.5305 38.0706 12.5196 37.8212 12.5088C37.5718 12.5088 37.3386 12.5088 37.1217 12.5088C37.0892 12.5088 37.0187 12.5088 36.9103 12.5088C36.8018 12.5088 36.6771 12.5142 36.5361 12.5251C36.3843 12.5359 36.2379 12.5413 36.0969 12.5413C35.9559 12.5522 35.8258 12.5576 35.7065 12.5576C35.5547 12.5576 35.4788 12.5196 35.4788 12.4437C35.4788 12.3678 35.5167 12.3299 35.5927 12.3299C35.6577 12.3299 35.7282 12.3244 35.8041 12.3136C35.8909 12.3027 35.9668 12.2865 36.0319 12.2648C36.1728 12.2323 36.2596 12.1563 36.2921 12.037C36.3355 11.9069 36.3735 11.7388 36.406 11.5328C36.4494 11.2508 36.4711 10.8496 36.4711 10.329C36.4819 9.80848 36.4873 9.21203 36.4873 8.53967V6.09963C36.4873 5.56825 36.4873 5.13446 36.4873 4.79828C36.4873 4.4621 36.4873 4.19099 36.4873 3.98494C36.4873 3.76805 36.4819 3.59995 36.4711 3.48066C36.4711 3.35053 36.4656 3.23124 36.4548 3.12279C36.4331 2.88421 36.3897 2.70528 36.3247 2.58599C36.2596 2.46669 36.1078 2.39078 35.8692 2.35825C35.815 2.3474 35.7336 2.34198 35.6252 2.34198C35.5276 2.33114 35.4463 2.32571 35.3812 2.32571C35.3053 2.32571 35.2673 2.28776 35.2673 2.21185C35.2673 2.13593 35.3432 2.09798 35.4951 2.09798C35.6577 2.09798 35.8312 2.1034 36.0156 2.11424C36.2 2.11424 36.368 2.11424 36.5199 2.11424C36.6825 2.11424 36.8181 2.11967 36.9265 2.13051C37.035 2.13051 37.1001 2.13051 37.1217 2.13051C37.1326 2.13051 37.2031 2.13051 37.3332 2.13051C37.4633 2.11967 37.6097 2.11424 37.7724 2.11424C37.9351 2.11424 38.1032 2.11424 38.2767 2.11424C38.4502 2.1034 38.5912 2.09798 38.6996 2.09798C38.8515 2.09798 38.9274 2.13593 38.9274 2.21185C38.9274 2.27691 38.8894 2.30945 38.8135 2.30945C38.7593 2.30945 38.6888 2.31487 38.602 2.32571C38.5153 2.32571 38.4285 2.33114 38.3418 2.34198C38.1249 2.38536 37.9839 2.46669 37.9188 2.58599C37.8646 2.69443 37.8266 2.87337 37.805 3.12279C37.805 3.23124 37.7995 3.35053 37.7887 3.48066C37.7887 3.59995 37.7887 3.76805 37.7887 3.98494C37.7887 4.19099 37.7887 4.4621 37.7887 4.79828C37.7887 5.13446 37.7887 5.56825 37.7887 6.09963ZM43.9855 11.0285L47.3527 2.37452C47.4395 2.14678 47.5046 2.00038 47.5479 1.93531C47.5913 1.87024 47.6401 1.83771 47.6943 1.83771C47.7702 1.83771 47.8245 1.88651 47.857 1.98411C47.9004 2.07087 47.96 2.19016 48.0359 2.34198C48.0793 2.43958 48.1715 2.66732 48.3125 3.02519C48.4643 3.38306 48.6432 3.81685 48.8493 4.32654C49.0553 4.82539 49.2776 5.37847 49.5162 5.98577C49.7657 6.58222 50.0097 7.17325 50.2482 7.75886C50.4868 8.34446 50.7146 8.90296 50.9314 9.43435C51.1483 9.95489 51.3273 10.3887 51.4683 10.7357C51.5984 11.0502 51.7177 11.2996 51.8261 11.484C51.9454 11.6683 52.0539 11.8147 52.1515 11.9232C52.2599 12.0316 52.3575 12.1075 52.4443 12.1509C52.531 12.1943 52.6124 12.2268 52.6883 12.2485C52.7967 12.2811 52.8997 12.3027 52.9973 12.3136C53.0949 12.3244 53.1817 12.3299 53.2576 12.3299C53.301 12.3299 53.3389 12.3407 53.3715 12.3624C53.4149 12.3732 53.4365 12.4003 53.4365 12.4437C53.4365 12.4871 53.404 12.5142 53.3389 12.5251C53.2739 12.5467 53.198 12.5576 53.1112 12.5576C53.057 12.5576 52.954 12.5576 52.8021 12.5576C52.6612 12.5576 52.4822 12.5576 52.2653 12.5576C52.0593 12.5576 51.8315 12.5522 51.5821 12.5413C51.3435 12.5413 51.0995 12.5359 50.8501 12.5251C50.7091 12.5142 50.5898 12.5088 50.4922 12.5088C50.3946 12.4979 50.3458 12.4708 50.3458 12.4275C50.3458 12.3949 50.3513 12.3787 50.3621 12.3787C50.3838 12.3678 50.4109 12.3515 50.4434 12.3299C50.4868 12.3082 50.5302 12.2702 50.5736 12.216C50.6278 12.1618 50.6278 12.075 50.5736 11.9557L49.2885 8.78367C49.256 8.72945 49.2126 8.70234 49.1584 8.70234H45.8562C45.7911 8.70234 45.7423 8.74029 45.7098 8.8162L44.8964 11.0285C44.7554 11.3972 44.685 11.7063 44.685 11.9557C44.685 12.0967 44.7338 12.1943 44.8314 12.2485C44.9398 12.3027 45.0537 12.3299 45.173 12.3299H45.3031C45.4007 12.3299 45.4495 12.3678 45.4495 12.4437C45.4495 12.5196 45.379 12.5576 45.238 12.5576C45.1513 12.5576 45.0428 12.5522 44.9127 12.5413C44.7826 12.5413 44.6524 12.5359 44.5223 12.5251C44.3922 12.5251 44.2729 12.5196 44.1644 12.5088C44.0668 12.5088 43.9963 12.5088 43.9529 12.5088C43.9204 12.5088 43.8499 12.5088 43.7415 12.5088C43.6439 12.5196 43.5246 12.5251 43.3836 12.5251C43.2535 12.5359 43.1071 12.5413 42.9444 12.5413C42.7926 12.5522 42.6462 12.5576 42.5052 12.5576C42.3208 12.5576 42.2287 12.5196 42.2287 12.4437C42.2287 12.3678 42.272 12.3299 42.3588 12.3299C42.413 12.3299 42.4835 12.3299 42.5703 12.3299C42.657 12.319 42.7275 12.3082 42.7817 12.2973C43.1071 12.2539 43.3511 12.1184 43.5137 11.8906C43.6873 11.6629 43.8445 11.3755 43.9855 11.0285ZM46.0514 8.13299H48.9469C48.9903 8.13299 49.0065 8.10046 48.9957 8.03539L47.5805 4.24521C47.4937 4.03916 47.4124 4.03916 47.3365 4.24521L46.0026 8.03539C45.9809 8.10046 45.9972 8.13299 46.0514 8.13299ZM61.8957 11.4189V9.02767C61.8957 8.74571 61.8903 8.5234 61.8794 8.36073C61.8686 8.18722 61.8415 8.05166 61.7981 7.95406C61.7656 7.85646 61.7059 7.78597 61.6192 7.74259C61.5324 7.69921 61.4186 7.66126 61.2776 7.62872C61.2233 7.61788 61.142 7.61245 61.0336 7.61245C60.936 7.60161 60.8546 7.59619 60.7896 7.59619C60.7137 7.59619 60.6757 7.55823 60.6757 7.48232C60.6757 7.40641 60.7516 7.36845 60.9034 7.36845C61.0661 7.36845 61.2396 7.37387 61.424 7.38472C61.6192 7.38472 61.7981 7.38472 61.9608 7.38472C62.1234 7.38472 62.2644 7.39014 62.3837 7.40098C62.503 7.40098 62.5735 7.40098 62.5952 7.40098C62.606 7.40098 62.6657 7.40098 62.7741 7.40098C62.8826 7.39014 63.0073 7.38472 63.1483 7.38472C63.3001 7.38472 63.4519 7.38472 63.6037 7.38472C63.7556 7.37387 63.8857 7.36845 63.9941 7.36845C64.146 7.36845 64.2219 7.40641 64.2219 7.48232C64.2219 7.55823 64.1839 7.59619 64.108 7.59619C64.0538 7.59619 63.9996 7.59619 63.9453 7.59619C63.902 7.59619 63.8369 7.60703 63.7501 7.62872C63.5549 7.66126 63.4194 7.73717 63.3435 7.85646C63.2784 7.9649 63.235 8.14384 63.2133 8.39327C63.2025 8.61016 63.1971 8.83247 63.1971 9.06021C63.1971 9.2771 63.1971 9.53195 63.1971 9.82475V11.3701C63.1971 11.6846 63.1862 11.8798 63.1645 11.9557C63.1428 12.0208 63.0886 12.075 63.0019 12.1184C62.7741 12.2377 62.5247 12.3353 62.2536 12.4112C61.9933 12.4871 61.7276 12.5467 61.4565 12.5901C61.1854 12.6443 60.9197 12.6823 60.6594 12.704C60.3992 12.7257 60.166 12.7365 59.96 12.7365C59.6888 12.7365 59.3635 12.7203 58.9839 12.6877C58.6152 12.666 58.2194 12.6064 57.7965 12.5088C57.3735 12.4003 56.9397 12.2485 56.4951 12.0533C56.0613 11.8581 55.6438 11.5924 55.2426 11.2562C55.0257 11.0719 54.8142 10.8441 54.6081 10.573C54.4021 10.3019 54.2177 9.99827 54.0551 9.66208C53.9032 9.3259 53.7785 8.96261 53.6809 8.5722C53.5833 8.17095 53.5345 7.75343 53.5345 7.31965C53.5345 6.76658 53.5996 6.25688 53.7297 5.79056C53.8599 5.3134 54.0334 4.88504 54.2503 4.50548C54.4672 4.12592 54.722 3.79516 55.0148 3.5132C55.3076 3.22039 55.6113 2.97639 55.9258 2.78119C56.5764 2.39078 57.2325 2.14678 57.8941 2.04918C58.5664 1.95158 59.1791 1.90278 59.7322 1.90278C59.96 1.90278 60.1877 1.91362 60.4154 1.93531C60.654 1.94615 60.8709 1.96784 61.0661 2.00038C61.2721 2.02207 61.4511 2.04918 61.6029 2.08171C61.7547 2.1034 61.8632 2.11967 61.9282 2.13051C62.0801 2.16305 62.2644 2.19558 62.4813 2.22811C62.6982 2.26065 62.8988 2.27691 63.0832 2.27691C63.2025 2.27691 63.2621 2.32029 63.2621 2.40705C63.2621 2.46127 63.2567 2.52634 63.2459 2.60225C63.235 2.67816 63.2242 2.79203 63.2133 2.94386C63.2133 3.08484 63.2079 3.26919 63.1971 3.49693C63.1862 3.72467 63.1808 4.01205 63.1808 4.35908C63.1808 4.47837 63.1645 4.5597 63.132 4.60308C63.1103 4.63561 63.0724 4.65188 63.0181 4.65188C62.9531 4.65188 62.9205 4.58139 62.9205 4.44041C62.9097 4.35365 62.8826 4.22352 62.8392 4.05C62.7958 3.86565 62.7145 3.69213 62.5952 3.52946C62.4108 3.26919 62.0475 3.02519 61.5053 2.79745C60.9631 2.56972 60.2256 2.45585 59.293 2.45585C58.8592 2.45585 58.3875 2.50465 57.8778 2.60225C57.3681 2.68901 56.8421 2.93843 56.2999 3.35053C55.8878 3.66502 55.5462 4.12049 55.2751 4.71695C55.0148 5.3134 54.8847 6.0183 54.8847 6.83164C54.8847 7.31965 54.9389 7.77512 55.0474 8.19806C55.1558 8.61016 55.2859 8.97887 55.4378 9.30421C55.6004 9.62955 55.7685 9.90609 55.942 10.1338C56.1155 10.3616 56.2674 10.5351 56.3975 10.6544C56.9723 11.1857 57.5579 11.5599 58.1543 11.7768C58.7616 11.9937 59.396 12.1021 60.0576 12.1021C60.307 12.1021 60.5781 12.0858 60.8709 12.0533C61.1745 12.0208 61.4186 11.9503 61.6029 11.8418C61.6897 11.7876 61.7602 11.7388 61.8144 11.6954C61.8686 11.6412 61.8957 11.549 61.8957 11.4189ZM65.715 12.7528L65.1945 12.4112C65.1294 12.3787 65.1348 12.2973 65.2107 12.1672L72.7098 0.145951C72.7748 0.0483493 72.8507 0.0266601 72.9375 0.080883L73.4255 0.373687C73.4906 0.417066 73.5014 0.471289 73.458 0.536356L65.9102 12.6715C65.856 12.7691 65.7909 12.7962 65.715 12.7528ZM77.0328 12.7365C76.6966 12.7365 76.3388 12.7094 75.9592 12.6552C75.5796 12.601 75.2435 12.5034 74.9507 12.3624C74.8531 12.3082 74.7934 12.2539 74.7717 12.1997C74.75 12.1455 74.7392 12.0262 74.7392 11.8418C74.7392 11.4948 74.75 11.1966 74.7717 10.9472C74.7934 10.6869 74.8097 10.4971 74.8205 10.3778C74.8205 10.226 74.8585 10.1501 74.9344 10.1501C75.0211 10.1501 75.0645 10.2043 75.0645 10.3128C75.0645 10.367 75.0645 10.4429 75.0645 10.5405C75.0754 10.6273 75.0916 10.7194 75.1133 10.817C75.1675 11.0665 75.2706 11.2779 75.4224 11.4514C75.5742 11.625 75.7532 11.7659 75.9592 11.8744C76.1761 11.9828 76.4038 12.0642 76.6424 12.1184C76.8918 12.1618 77.1358 12.1835 77.3744 12.1835C78.0902 12.1835 78.627 12.0099 78.9848 11.6629C79.3427 11.305 79.5216 10.8658 79.5216 10.3453C79.5216 10.0959 79.4837 9.87355 79.4078 9.67835C79.3427 9.48315 79.2343 9.29879 79.0824 9.12528C78.9415 8.94092 78.7571 8.75656 78.5294 8.5722C78.3016 8.38784 78.0305 8.17637 77.716 7.93779L77.0653 7.44979C76.2954 6.87502 75.7586 6.3599 75.4549 5.90443C75.1621 5.43811 75.0157 4.96637 75.0157 4.48921C75.0157 4.08796 75.0916 3.72467 75.2435 3.39933C75.3953 3.07399 75.6122 2.80288 75.8941 2.58599C76.1761 2.35825 76.5069 2.18473 76.8864 2.06544C77.2768 1.94615 77.7106 1.88651 78.1878 1.88651C78.4697 1.88651 78.7408 1.90278 79.0011 1.93531C79.2722 1.96784 79.4945 2.0058 79.6681 2.04918C79.809 2.08171 79.9121 2.1034 79.9771 2.11424C80.053 2.11424 80.1181 2.11424 80.1723 2.11424C80.2699 2.11424 80.3187 2.14678 80.3187 2.21185C80.3187 2.24438 80.3079 2.37994 80.2862 2.61852C80.2645 2.84626 80.2537 3.1987 80.2537 3.67587C80.2537 3.88191 80.2157 3.98494 80.1398 3.98494C80.0856 3.98494 80.053 3.96867 80.0422 3.93614C80.0313 3.9036 80.0205 3.86022 80.0097 3.806C79.9988 3.71924 79.9717 3.60538 79.9283 3.4644C79.8849 3.31257 79.8416 3.1987 79.7982 3.12279C79.7765 3.07941 79.7277 3.01977 79.6518 2.94386C79.5759 2.86794 79.462 2.79203 79.3102 2.71612C79.1692 2.64021 78.9848 2.57514 78.7571 2.52092C78.5402 2.46669 78.2691 2.43958 77.9438 2.43958C77.4232 2.43958 76.9732 2.56972 76.5936 2.82999C76.2249 3.07941 76.0405 3.44813 76.0405 3.93614C76.0405 4.15303 76.0676 4.35365 76.1219 4.53801C76.1869 4.72237 76.29 4.90673 76.4309 5.09109C76.5828 5.2646 76.7725 5.44896 77.0003 5.64416C77.2389 5.82852 77.5371 6.03999 77.895 6.27857L78.3016 6.55511C78.7354 6.84791 79.0987 7.13529 79.3915 7.41725C79.6952 7.68837 79.9392 7.95948 80.1235 8.2306C80.3079 8.49087 80.438 8.76198 80.5139 9.04394C80.6007 9.31506 80.6441 9.59702 80.6441 9.88982C80.6441 10.3019 80.5465 10.714 80.3513 11.1261C80.1669 11.5382 79.8199 11.9123 79.3102 12.2485C79.0065 12.4437 78.6487 12.5739 78.2366 12.6389C77.8245 12.704 77.4232 12.7365 77.0328 12.7365ZM86.149 10.1501V8.96261C86.149 8.59389 86.1219 8.31735 86.0677 8.13299C86.0243 7.93779 85.9484 7.74259 85.8399 7.54739C85.8183 7.51485 85.7532 7.41183 85.6447 7.23832C85.5363 7.05396 85.4007 6.83164 85.2381 6.57137C85.0754 6.3111 84.8965 6.03457 84.7013 5.74176C84.5169 5.43811 84.3325 5.14531 84.1482 4.86335C83.9638 4.57055 83.7957 4.30485 83.6439 4.06627C83.4921 3.82769 83.3782 3.64876 83.3023 3.52946C83.1288 3.26919 82.9607 3.05772 82.798 2.89506C82.6354 2.73239 82.489 2.60767 82.3588 2.52092C82.2504 2.45585 82.1365 2.40705 82.0172 2.37452C81.8979 2.34198 81.8112 2.32571 81.757 2.32571C81.6593 2.32571 81.6105 2.28234 81.6105 2.19558C81.6105 2.13051 81.6702 2.09798 81.7895 2.09798C81.8546 2.09798 81.963 2.1034 82.1148 2.11424C82.2666 2.11424 82.4185 2.11424 82.5703 2.11424C82.733 2.11424 82.8739 2.11967 82.9932 2.13051C83.1125 2.13051 83.183 2.13051 83.2047 2.13051C83.2589 2.13051 83.4053 2.12509 83.6439 2.11424C83.8933 2.1034 84.159 2.09798 84.441 2.09798C84.5277 2.09798 84.582 2.10882 84.6037 2.13051C84.6253 2.14136 84.6362 2.16305 84.6362 2.19558C84.6362 2.23896 84.5603 2.28776 84.4085 2.34198C84.2892 2.3962 84.2295 2.47212 84.2295 2.56972C84.2295 2.66732 84.2458 2.7595 84.2783 2.84625C84.3217 2.93301 84.3705 3.01977 84.4247 3.10653L87.0274 7.41725C87.0708 7.31965 87.1521 7.1624 87.2714 6.94551C87.4016 6.72862 87.5425 6.48462 87.6944 6.2135C87.857 5.94239 88.0251 5.66043 88.1986 5.36762C88.383 5.07482 88.5511 4.79828 88.7029 4.53801C88.8656 4.2669 89.0066 4.03374 89.1259 3.83854C89.2451 3.63249 89.3265 3.49151 89.3699 3.4156C89.4566 3.26377 89.5163 3.12821 89.5488 3.00892C89.5922 2.88963 89.6139 2.78661 89.6139 2.69985C89.6139 2.50465 89.5379 2.38536 89.3861 2.34198C89.2451 2.30945 89.1747 2.25522 89.1747 2.17931C89.1747 2.12509 89.2506 2.09798 89.4024 2.09798C89.5867 2.09798 89.782 2.1034 89.988 2.11424C90.2049 2.12509 90.3404 2.13051 90.3947 2.13051C90.4164 2.13051 90.4868 2.13051 90.6061 2.13051C90.7363 2.11967 90.8773 2.11424 91.0291 2.11424C91.1809 2.11424 91.3273 2.11424 91.4683 2.11424C91.6201 2.1034 91.7286 2.09798 91.7936 2.09798C91.9129 2.09798 91.9726 2.12509 91.9726 2.17931C91.9726 2.21185 91.9563 2.24438 91.9238 2.27691C91.8912 2.30945 91.8478 2.32571 91.7936 2.32571C91.7069 2.32571 91.6038 2.34198 91.4846 2.37452C91.3653 2.3962 91.246 2.43958 91.1267 2.50465C90.9857 2.59141 90.8664 2.68359 90.7688 2.78119C90.6821 2.86794 90.5628 3.0035 90.4109 3.18786C90.335 3.28546 90.2157 3.44813 90.0531 3.67587C89.9012 3.89276 89.7277 4.14761 89.5325 4.44041C89.3482 4.73321 89.153 5.04229 88.9469 5.36762C88.7409 5.69296 88.5457 6.00745 88.3613 6.3111C88.1878 6.60391 88.0305 6.86418 87.8896 7.09191C87.7594 7.31965 87.6727 7.48232 87.6293 7.57992C87.51 7.82935 87.4504 8.06793 87.4504 8.29566C87.4504 8.51256 87.4504 8.73487 87.4504 8.96261V10.1501C87.4504 10.2694 87.4504 10.4592 87.4504 10.7194C87.4612 10.9797 87.4775 11.2508 87.4992 11.5328C87.5209 11.7388 87.5642 11.9069 87.6293 12.037C87.6944 12.1563 87.8353 12.2323 88.0522 12.2648C88.1498 12.2865 88.2637 12.3027 88.3938 12.3136C88.5348 12.3244 88.6378 12.3299 88.7029 12.3299C88.7788 12.3299 88.8168 12.3678 88.8168 12.4437C88.8168 12.5196 88.7409 12.5576 88.589 12.5576C88.3938 12.5576 88.1932 12.5522 87.9872 12.5413C87.7811 12.5413 87.5913 12.5359 87.4178 12.5251C87.2443 12.5251 87.0979 12.5196 86.9786 12.5088C86.8702 12.5088 86.8051 12.5088 86.7834 12.5088C86.7617 12.5088 86.6967 12.5088 86.5882 12.5088C86.4906 12.5196 86.3659 12.5251 86.2141 12.5251C86.0731 12.5359 85.9267 12.5413 85.7749 12.5413C85.623 12.5522 85.4929 12.5576 85.3845 12.5576C85.2326 12.5576 85.1567 12.5196 85.1567 12.4437C85.1567 12.3678 85.1947 12.3299 85.2706 12.3299C85.3357 12.3299 85.4062 12.3244 85.4821 12.3136C85.558 12.3027 85.6285 12.2865 85.6935 12.2648C85.8454 12.2323 85.9484 12.1563 86.0026 12.037C86.0568 11.9069 86.0948 11.7388 86.1165 11.5328C86.1382 11.2508 86.149 10.9797 86.149 10.7194C86.149 10.4592 86.149 10.2694 86.149 10.1501ZM103.365 2.27691L104.341 10.7845C104.352 10.9038 104.368 11.0393 104.39 11.1912C104.411 11.3322 104.449 11.4731 104.504 11.6141C104.558 11.7442 104.628 11.869 104.715 11.9882C104.802 12.0967 104.921 12.1726 105.073 12.216C105.279 12.2811 105.463 12.319 105.626 12.3299C105.799 12.3407 105.924 12.3461 106 12.3461C106.076 12.3461 106.114 12.3787 106.114 12.4437C106.114 12.4871 106.087 12.5196 106.033 12.5413C105.978 12.563 105.908 12.5739 105.821 12.5739C105.734 12.5739 105.583 12.5739 105.366 12.5739C105.16 12.5739 104.926 12.5684 104.666 12.5576C104.417 12.5576 104.173 12.5522 103.934 12.5413C103.696 12.5305 103.511 12.5196 103.381 12.5088C103.208 12.4871 103.094 12.4654 103.04 12.4437C102.996 12.422 102.974 12.3949 102.974 12.3624C102.974 12.3082 103.007 12.2702 103.072 12.2485C103.115 12.2377 103.143 12.1889 103.153 12.1021C103.164 12.0045 103.159 11.8906 103.137 11.7605L102.454 4.73321H102.421L98.9728 11.793C98.821 12.0967 98.7125 12.2973 98.6474 12.3949C98.5932 12.4817 98.5336 12.5251 98.4685 12.5251C98.4034 12.5251 98.3384 12.4817 98.2733 12.3949C98.2191 12.3082 98.1215 12.1401 97.9805 11.8906C97.8829 11.7171 97.7582 11.4894 97.6064 11.2074C97.4545 10.9255 97.2973 10.6273 97.1346 10.3128C96.972 9.99827 96.8147 9.69462 96.6629 9.40181C96.5111 9.10901 96.3918 8.87043 96.305 8.68607C96.1966 8.46918 96.0502 8.17637 95.8658 7.80766C95.6923 7.43894 95.5134 7.0648 95.329 6.68524C95.1446 6.30568 94.9711 5.95323 94.8085 5.62789C94.6566 5.29171 94.5482 5.05313 94.4831 4.91215H94.4181L93.865 11.1586C93.8541 11.2671 93.8487 11.381 93.8487 11.5002C93.8487 11.6195 93.8487 11.7388 93.8487 11.8581C93.8487 12.0642 93.9626 12.1943 94.1903 12.2485C94.3096 12.2811 94.4181 12.3027 94.5157 12.3136C94.6133 12.3244 94.6892 12.3299 94.7434 12.3299C94.8193 12.3299 94.8573 12.3624 94.8573 12.4275C94.8573 12.5142 94.7705 12.5576 94.597 12.5576C94.4669 12.5576 94.3259 12.5522 94.1741 12.5413C94.0331 12.5413 93.8975 12.5359 93.7674 12.5251C93.6481 12.5251 93.5396 12.5196 93.442 12.5088C93.3553 12.5088 93.2956 12.5088 93.2631 12.5088C93.2306 12.5088 93.1655 12.5088 93.0679 12.5088C92.9811 12.5196 92.8781 12.5251 92.7588 12.5251C92.6395 12.5359 92.5148 12.5413 92.3847 12.5413C92.2654 12.5522 92.157 12.5576 92.0594 12.5576C91.8967 12.5576 91.8154 12.5142 91.8154 12.4275C91.8154 12.3624 91.8642 12.3299 91.9618 12.3299C92.016 12.3299 92.0702 12.3299 92.1244 12.3299C92.1895 12.319 92.2762 12.3027 92.3847 12.2811C92.6233 12.2377 92.7643 12.1075 92.8076 11.8906C92.8619 11.6738 92.9052 11.4352 92.9378 11.1749L93.9788 2.14678C94.0005 1.98411 94.0548 1.90278 94.1415 1.90278C94.2608 1.90278 94.3584 1.97327 94.4343 2.11424L98.7613 10.7032L102.926 2.13051C103.002 1.97869 103.077 1.90278 103.153 1.90278C103.262 1.90278 103.332 2.02749 103.365 2.27691ZM108.486 8.53967V6.09963C108.486 5.56825 108.486 5.13446 108.486 4.79828C108.486 4.4621 108.486 4.19099 108.486 3.98494C108.486 3.76805 108.481 3.59995 108.47 3.48066C108.47 3.35053 108.464 3.23124 108.454 3.12279C108.432 2.88421 108.389 2.69985 108.323 2.56972C108.258 2.43958 108.107 2.35825 107.868 2.32571C107.814 2.31487 107.732 2.30945 107.624 2.30945C107.526 2.2986 107.445 2.29318 107.38 2.29318C107.304 2.29318 107.266 2.26607 107.266 2.21185C107.266 2.13593 107.342 2.09798 107.494 2.09798C107.657 2.09798 107.83 2.1034 108.014 2.11424C108.199 2.11424 108.372 2.11424 108.535 2.11424C108.698 2.11424 108.833 2.11967 108.942 2.13051C109.061 2.13051 109.131 2.13051 109.153 2.13051C109.327 2.13051 109.565 2.12509 109.869 2.11424C110.172 2.1034 110.492 2.09798 110.829 2.09798C111.425 2.09798 111.918 2.17389 112.309 2.32571C112.699 2.47754 113.008 2.6619 113.236 2.87879C113.464 3.09568 113.621 3.32884 113.708 3.57827C113.795 3.81685 113.838 4.02832 113.838 4.21267C113.838 4.48379 113.795 4.73321 113.708 4.96095C113.632 5.18869 113.523 5.40016 113.382 5.59536C113.252 5.79056 113.1 5.97492 112.927 6.14843C112.753 6.3111 112.575 6.47377 112.39 6.63644C112.661 6.7232 112.943 6.84791 113.236 7.01058C113.54 7.17325 113.811 7.37387 114.049 7.61245C114.299 7.85104 114.505 8.133 114.668 8.45833C114.83 8.77283 114.912 9.12528 114.912 9.51568C114.912 9.90609 114.836 10.2856 114.684 10.6544C114.543 11.0231 114.321 11.3538 114.017 11.6466C113.724 11.9286 113.35 12.1563 112.894 12.3299C112.45 12.5034 111.924 12.5901 111.317 12.5901C111.186 12.5901 111.002 12.5847 110.763 12.5739C110.536 12.5739 110.308 12.563 110.08 12.5413C109.853 12.5305 109.646 12.5196 109.462 12.5088C109.289 12.5088 109.186 12.5088 109.153 12.5088C109.131 12.5088 109.066 12.5088 108.958 12.5088C108.849 12.5196 108.719 12.5251 108.567 12.5251C108.416 12.5359 108.264 12.5413 108.112 12.5413C107.96 12.5522 107.825 12.5576 107.705 12.5576C107.553 12.5576 107.478 12.5196 107.478 12.4437C107.478 12.3895 107.516 12.3624 107.591 12.3624C107.657 12.3624 107.727 12.357 107.803 12.3461C107.89 12.3244 107.966 12.3082 108.031 12.2973C108.172 12.2756 108.258 12.1943 108.291 12.0533C108.334 11.9123 108.372 11.7388 108.405 11.5328C108.448 11.2508 108.47 10.8496 108.47 10.329C108.481 9.80848 108.486 9.21203 108.486 8.53967ZM109.722 2.74865V6.39244C109.722 6.47919 109.755 6.52799 109.82 6.53884C109.863 6.54968 109.95 6.56595 110.08 6.58764C110.221 6.59848 110.427 6.60391 110.698 6.60391C111.1 6.60391 111.392 6.58764 111.577 6.55511C111.772 6.51173 111.946 6.4087 112.097 6.24604C112.249 6.07252 112.379 5.86647 112.488 5.62789C112.596 5.38931 112.65 5.10193 112.65 4.76575C112.65 4.50548 112.612 4.24521 112.537 3.98494C112.461 3.71382 112.341 3.47524 112.179 3.26919C112.016 3.0523 111.805 2.87879 111.544 2.74865C111.295 2.60767 110.991 2.53718 110.633 2.53718C110.547 2.53718 110.433 2.54261 110.292 2.55345C110.151 2.5643 110.021 2.58056 109.901 2.60225C109.782 2.63479 109.722 2.68359 109.722 2.74865ZM109.722 7.15698V7.92153C109.722 8.19264 109.722 8.49087 109.722 8.8162C109.722 9.1307 109.722 9.43435 109.722 9.72715C109.722 10.0091 109.722 10.2585 109.722 10.4754C109.733 10.6815 109.739 10.8116 109.739 10.8658C109.75 11.0285 109.76 11.1695 109.771 11.2888C109.782 11.3972 109.804 11.4894 109.836 11.5653C109.869 11.6304 109.912 11.69 109.966 11.7442C110.031 11.7985 110.118 11.8527 110.227 11.9069C110.422 11.9937 110.644 12.0479 110.894 12.0696C111.154 12.0913 111.349 12.1021 111.479 12.1021C111.718 12.1021 111.956 12.075 112.195 12.0208C112.444 11.9666 112.672 11.8635 112.878 11.7117C113.084 11.549 113.252 11.3322 113.382 11.061C113.513 10.7791 113.578 10.4158 113.578 9.97115C113.578 9.81933 113.556 9.63497 113.513 9.41808C113.48 9.20119 113.415 8.97887 113.317 8.75114C113.22 8.51256 113.079 8.28482 112.894 8.06793C112.721 7.84019 112.493 7.63414 112.211 7.44979C111.962 7.29796 111.729 7.2112 111.512 7.18952C111.295 7.15698 111.1 7.12445 110.926 7.09191C110.883 7.08107 110.807 7.07565 110.698 7.07565C110.601 7.0648 110.492 7.05938 110.373 7.05938C110.265 7.05938 110.156 7.05938 110.048 7.05938C109.939 7.05938 109.858 7.05938 109.804 7.05938C109.75 7.05938 109.722 7.09191 109.722 7.15698ZM116.689 7.30338C116.689 6.75031 116.797 6.15928 117.014 5.53029C117.242 4.89046 117.584 4.30485 118.039 3.77347C118.505 3.23124 119.096 2.78661 119.812 2.43958C120.528 2.08171 121.379 1.90278 122.366 1.90278C123.168 1.90278 123.917 2.02207 124.611 2.26065C125.305 2.49923 125.901 2.84625 126.4 3.30173C126.91 3.74636 127.306 4.28859 127.588 4.92842C127.88 5.56825 128.027 6.28941 128.027 7.09191C128.027 7.86188 127.886 8.59389 127.604 9.28794C127.333 9.97115 126.948 10.5676 126.449 11.0773C125.95 11.587 125.343 11.9937 124.627 12.2973C123.922 12.5901 123.141 12.7365 122.285 12.7365C121.309 12.7365 120.468 12.5739 119.763 12.2485C119.058 11.9123 118.478 11.484 118.023 10.9634C117.567 10.432 117.231 9.84644 117.014 9.20661C116.797 8.55593 116.689 7.92153 116.689 7.30338ZM118.169 6.92924C118.169 7.73174 118.283 8.45833 118.511 9.10901C118.738 9.74884 119.053 10.2965 119.454 10.752C119.866 11.2074 120.343 11.5599 120.886 11.8093C121.439 12.0479 122.041 12.1672 122.691 12.1672C123.017 12.1672 123.396 12.113 123.83 12.0045C124.275 11.8852 124.698 11.6575 125.099 11.3213C125.511 10.9851 125.858 10.5134 126.14 9.90609C126.422 9.28794 126.563 8.48002 126.563 7.48232C126.563 6.65813 126.444 5.93154 126.205 5.30256C125.977 4.66272 125.663 4.13134 125.261 3.7084C124.871 3.28546 124.416 2.96555 123.895 2.74865C123.385 2.53176 122.849 2.42332 122.285 2.42332C121.688 2.42332 121.135 2.52092 120.625 2.71612C120.127 2.90048 119.693 3.18244 119.324 3.562C118.966 3.93071 118.684 4.39703 118.478 4.96095C118.272 5.52487 118.169 6.18097 118.169 6.92924ZM132.147 6.09963V8.5722C132.147 9.0819 132.147 9.5211 132.147 9.88982C132.158 10.2477 132.174 10.5513 132.196 10.8008C132.217 11.0393 132.244 11.2291 132.277 11.3701C132.32 11.5111 132.375 11.6141 132.44 11.6792C132.559 11.7985 132.765 11.8852 133.058 11.9394C133.351 11.9828 133.779 12.0045 134.343 12.0045C134.722 12.0045 135.059 11.9882 135.351 11.9557C135.655 11.9123 135.894 11.7876 136.067 11.5816C136.154 11.4731 136.224 11.3538 136.279 11.2237C136.344 11.0827 136.387 10.9417 136.409 10.8008C136.43 10.6815 136.479 10.6218 136.555 10.6218C136.62 10.6218 136.653 10.6923 136.653 10.8333C136.653 10.8658 136.647 10.9417 136.636 11.061C136.626 11.1695 136.609 11.2942 136.588 11.4352C136.566 11.5653 136.544 11.7063 136.523 11.8581C136.501 11.9991 136.474 12.1184 136.441 12.216C136.42 12.3027 136.392 12.3732 136.36 12.4275C136.338 12.4708 136.295 12.5034 136.23 12.5251C136.176 12.5467 136.094 12.563 135.986 12.5739C135.877 12.5847 135.726 12.5901 135.53 12.5901C134.533 12.5901 133.703 12.5739 133.041 12.5413C132.716 12.5305 132.429 12.5196 132.179 12.5088C131.93 12.5088 131.697 12.5088 131.48 12.5088C131.447 12.5088 131.377 12.5088 131.268 12.5088C131.16 12.5088 131.035 12.5142 130.894 12.5251C130.742 12.5359 130.596 12.5413 130.455 12.5413C130.314 12.5522 130.184 12.5576 130.065 12.5576C129.913 12.5576 129.837 12.5196 129.837 12.4437C129.837 12.3678 129.875 12.3299 129.951 12.3299C130.016 12.3299 130.086 12.3244 130.162 12.3136C130.249 12.3027 130.325 12.2865 130.39 12.2648C130.531 12.2323 130.618 12.1563 130.65 12.037C130.694 11.9069 130.732 11.7388 130.764 11.5328C130.808 11.2508 130.829 10.8496 130.829 10.329C130.84 9.80848 130.845 9.21203 130.845 8.53967V6.09963C130.845 5.56825 130.845 5.13446 130.845 4.79828C130.845 4.4621 130.845 4.19099 130.845 3.98494C130.845 3.76805 130.84 3.59995 130.829 3.48066C130.829 3.35053 130.824 3.23124 130.813 3.12279C130.791 2.88421 130.748 2.70528 130.683 2.58599C130.618 2.46669 130.466 2.39078 130.227 2.35825C130.173 2.3474 130.092 2.34198 129.983 2.34198C129.886 2.33114 129.804 2.32571 129.739 2.32571C129.663 2.32571 129.625 2.28776 129.625 2.21185C129.625 2.13593 129.701 2.09798 129.853 2.09798C130.016 2.09798 130.189 2.1034 130.374 2.11424C130.558 2.11424 130.726 2.11424 130.878 2.11424C131.041 2.11424 131.176 2.11967 131.285 2.13051C131.393 2.13051 131.458 2.13051 131.48 2.13051C131.491 2.13051 131.561 2.13051 131.691 2.13051C131.821 2.11967 131.968 2.11424 132.131 2.11424C132.293 2.11424 132.461 2.11424 132.635 2.11424C132.808 2.1034 132.949 2.09798 133.058 2.09798C133.21 2.09798 133.285 2.13593 133.285 2.21185C133.285 2.27691 133.248 2.30945 133.172 2.30945C133.117 2.30945 133.047 2.31487 132.96 2.32571C132.873 2.32571 132.787 2.33114 132.7 2.34198C132.483 2.38536 132.342 2.46669 132.277 2.58599C132.223 2.69443 132.185 2.87337 132.163 3.12279C132.163 3.23124 132.158 3.35053 132.147 3.48066C132.147 3.59995 132.147 3.76805 132.147 3.98494C132.147 4.19099 132.147 4.4621 132.147 4.79828C132.147 5.13446 132.147 5.56825 132.147 6.09963ZM137.761 12.7528L137.241 12.4112C137.176 12.3787 137.181 12.2973 137.257 12.1672L144.756 0.145951C144.821 0.0483493 144.897 0.0266601 144.984 0.080883L145.472 0.373687C145.537 0.417066 145.548 0.471289 145.504 0.536356L137.957 12.6715C137.902 12.7691 137.837 12.7962 137.761 12.7528ZM153.032 12.7365C151.948 12.7365 151.031 12.6118 150.283 12.3624C149.535 12.113 148.879 11.7442 148.315 11.2562C147.968 10.9526 147.68 10.6327 147.453 10.2965C147.225 9.94946 147.046 9.60244 146.916 9.25541C146.786 8.89754 146.693 8.53967 146.639 8.1818C146.596 7.82392 146.574 7.48232 146.574 7.15698C146.574 6.92924 146.596 6.66355 146.639 6.3599C146.693 6.04541 146.78 5.72007 146.899 5.38389C147.019 5.04771 147.181 4.71153 147.387 4.37534C147.604 4.02832 147.87 3.69756 148.185 3.38306C148.401 3.17701 148.645 2.98723 148.917 2.81372C149.199 2.62936 149.513 2.47212 149.86 2.34198C150.218 2.201 150.614 2.09256 151.048 2.01664C151.492 1.94073 151.991 1.90278 152.544 1.90278C152.826 1.90278 153.157 1.91904 153.536 1.95158C153.916 1.97327 154.279 2.01122 154.626 2.06544C154.897 2.11967 155.147 2.16847 155.375 2.21185C155.613 2.24438 155.852 2.26607 156.09 2.27691C156.21 2.27691 156.269 2.32571 156.269 2.42332C156.269 2.47754 156.264 2.55887 156.253 2.66732C156.242 2.77577 156.226 2.9547 156.204 3.20413C156.204 3.32342 156.199 3.45355 156.188 3.59453C156.188 3.73551 156.188 3.87649 156.188 4.01747C156.188 4.14761 156.182 4.27232 156.172 4.39161C156.172 4.50006 156.172 4.57597 156.172 4.61935C156.161 4.81455 156.107 4.91215 156.009 4.91215C155.933 4.91215 155.895 4.81455 155.895 4.61935C155.895 4.34823 155.841 4.08796 155.732 3.83854C155.624 3.58911 155.478 3.38848 155.293 3.23666C155.044 3.01977 154.67 2.84083 154.171 2.69985C153.683 2.54803 153.119 2.47212 152.479 2.47212C152.024 2.47212 151.622 2.49923 151.275 2.55345C150.928 2.60767 150.625 2.68359 150.364 2.78119C150.115 2.86794 149.898 2.97097 149.714 3.09026C149.54 3.1987 149.388 3.31257 149.258 3.43186C148.727 3.91987 148.38 4.46752 148.217 5.07482C148.054 5.68212 147.973 6.33821 147.973 7.04311C147.973 7.70463 148.098 8.33904 148.347 8.94634C148.597 9.55364 148.949 10.0904 149.405 10.5568C149.86 11.0122 150.402 11.3755 151.031 11.6466C151.66 11.9178 152.36 12.0533 153.13 12.0533C153.672 12.0533 154.127 12.0154 154.496 11.9394C154.876 11.8635 155.206 11.6846 155.488 11.4026C155.64 11.2508 155.765 11.0556 155.863 10.817C155.96 10.5676 156.02 10.3778 156.041 10.2477C156.063 10.1718 156.079 10.123 156.09 10.1013C156.101 10.0688 156.134 10.0525 156.188 10.0525C156.22 10.0525 156.248 10.0742 156.269 10.1176C156.302 10.1501 156.318 10.1935 156.318 10.2477C156.318 10.2694 156.307 10.3561 156.285 10.508C156.264 10.6489 156.237 10.8116 156.204 10.996C156.172 11.1803 156.134 11.3701 156.09 11.5653C156.047 11.7497 156.009 11.9015 155.976 12.0208C155.933 12.1509 155.89 12.2377 155.846 12.2811C155.814 12.3244 155.738 12.3732 155.619 12.4275C155.326 12.5467 154.935 12.6281 154.447 12.6715C153.97 12.7148 153.498 12.7365 153.032 12.7365ZM157.786 7.30338C157.786 6.75031 157.894 6.15928 158.111 5.53029C158.339 4.89046 158.68 4.30485 159.136 3.77347C159.602 3.23124 160.193 2.78661 160.909 2.43958C161.625 2.08171 162.476 1.90278 163.463 1.90278C164.265 1.90278 165.014 2.02207 165.708 2.26065C166.402 2.49923 166.998 2.84625 167.497 3.30173C168.007 3.74636 168.402 4.28859 168.684 4.92842C168.977 5.56825 169.124 6.28941 169.124 7.09191C169.124 7.86188 168.983 8.59389 168.701 9.28794C168.43 9.97115 168.045 10.5676 167.546 11.0773C167.047 11.587 166.44 11.9937 165.724 12.2973C165.019 12.5901 164.238 12.7365 163.381 12.7365C162.405 12.7365 161.565 12.5739 160.86 12.2485C160.155 11.9123 159.575 11.484 159.119 10.9634C158.664 10.432 158.328 9.84644 158.111 9.20661C157.894 8.55593 157.786 7.92153 157.786 7.30338ZM159.266 6.92924C159.266 7.73174 159.38 8.45833 159.608 9.10901C159.835 9.74884 160.15 10.2965 160.551 10.752C160.963 11.2074 161.44 11.5599 161.982 11.8093C162.536 12.0479 163.137 12.1672 163.788 12.1672C164.113 12.1672 164.493 12.113 164.927 12.0045C165.371 11.8852 165.794 11.6575 166.196 11.3213C166.608 10.9851 166.955 10.5134 167.237 9.90609C167.519 9.28794 167.66 8.48002 167.66 7.48232C167.66 6.65813 167.54 5.93154 167.302 5.30256C167.074 4.66272 166.76 4.13134 166.358 3.7084C165.968 3.28546 165.512 2.96555 164.992 2.74865C164.482 2.53176 163.945 2.42332 163.381 2.42332C162.785 2.42332 162.232 2.52092 161.722 2.71612C161.223 2.90048 160.79 3.18244 160.421 3.562C160.063 3.93071 159.781 4.39703 159.575 4.96095C159.369 5.52487 159.266 6.18097 159.266 6.92924ZM173.244 6.09963V8.5722C173.244 9.0819 173.244 9.5211 173.244 9.88982C173.254 10.2477 173.271 10.5513 173.292 10.8008C173.314 11.0393 173.341 11.2291 173.374 11.3701C173.417 11.5111 173.471 11.6141 173.536 11.6792C173.656 11.7985 173.862 11.8852 174.155 11.9394C174.447 11.9828 174.876 12.0045 175.44 12.0045C175.819 12.0045 176.155 11.9882 176.448 11.9557C176.752 11.9123 176.99 11.7876 177.164 11.5816C177.251 11.4731 177.321 11.3538 177.375 11.2237C177.44 11.0827 177.484 10.9417 177.506 10.8008C177.527 10.6815 177.576 10.6218 177.652 10.6218C177.717 10.6218 177.75 10.6923 177.75 10.8333C177.75 10.8658 177.744 10.9417 177.733 11.061C177.722 11.1695 177.706 11.2942 177.684 11.4352C177.663 11.5653 177.641 11.7063 177.619 11.8581C177.598 11.9991 177.571 12.1184 177.538 12.216C177.516 12.3027 177.489 12.3732 177.457 12.4275C177.435 12.4708 177.392 12.5034 177.327 12.5251C177.272 12.5467 177.191 12.563 177.083 12.5739C176.974 12.5847 176.822 12.5901 176.627 12.5901C175.629 12.5901 174.8 12.5739 174.138 12.5413C173.813 12.5305 173.526 12.5196 173.276 12.5088C173.027 12.5088 172.794 12.5088 172.577 12.5088C172.544 12.5088 172.474 12.5088 172.365 12.5088C172.257 12.5088 172.132 12.5142 171.991 12.5251C171.839 12.5359 171.693 12.5413 171.552 12.5413C171.411 12.5522 171.281 12.5576 171.161 12.5576C171.01 12.5576 170.934 12.5196 170.934 12.4437C170.934 12.3678 170.972 12.3299 171.048 12.3299C171.113 12.3299 171.183 12.3244 171.259 12.3136C171.346 12.3027 171.422 12.2865 171.487 12.2648C171.628 12.2323 171.715 12.1563 171.747 12.037C171.79 11.9069 171.828 11.7388 171.861 11.5328C171.904 11.2508 171.926 10.8496 171.926 10.329C171.937 9.80848 171.942 9.21203 171.942 8.53967V6.09963C171.942 5.56825 171.942 5.13446 171.942 4.79828C171.942 4.4621 171.942 4.19099 171.942 3.98494C171.942 3.76805 171.937 3.59995 171.926 3.48066C171.926 3.35053 171.921 3.23124 171.91 3.12279C171.888 2.88421 171.845 2.70528 171.78 2.58599C171.715 2.46669 171.563 2.39078 171.324 2.35825C171.27 2.3474 171.189 2.34198 171.08 2.34198C170.983 2.33114 170.901 2.32571 170.836 2.32571C170.76 2.32571 170.722 2.28776 170.722 2.21185C170.722 2.13593 170.798 2.09798 170.95 2.09798C171.113 2.09798 171.286 2.1034 171.471 2.11424C171.655 2.11424 171.823 2.11424 171.975 2.11424C172.137 2.11424 172.273 2.11967 172.381 2.13051C172.49 2.13051 172.555 2.13051 172.577 2.13051C172.588 2.13051 172.658 2.13051 172.788 2.13051C172.918 2.11967 173.065 2.11424 173.227 2.11424C173.39 2.11424 173.558 2.11424 173.732 2.11424C173.905 2.1034 174.046 2.09798 174.155 2.09798C174.306 2.09798 174.382 2.13593 174.382 2.21185C174.382 2.27691 174.344 2.30945 174.268 2.30945C174.214 2.30945 174.144 2.31487 174.057 2.32571C173.97 2.32571 173.883 2.33114 173.797 2.34198C173.58 2.38536 173.439 2.46669 173.374 2.58599C173.32 2.69443 173.282 2.87337 173.26 3.12279C173.26 3.23124 173.254 3.35053 173.244 3.48066C173.244 3.59995 173.244 3.76805 173.244 3.98494C173.244 4.19099 173.244 4.4621 173.244 4.79828C173.244 5.13446 173.244 5.56825 173.244 6.09963ZM178.493 7.30338C178.493 6.75031 178.601 6.15928 178.818 5.53029C179.046 4.89046 179.388 4.30485 179.843 3.77347C180.309 3.23124 180.9 2.78661 181.616 2.43958C182.332 2.08171 183.183 1.90278 184.17 1.90278C184.972 1.90278 185.721 2.02207 186.415 2.26065C187.109 2.49923 187.705 2.84625 188.204 3.30173C188.714 3.74636 189.11 4.28859 189.392 4.92842C189.684 5.56825 189.831 6.28941 189.831 7.09191C189.831 7.86188 189.69 8.59389 189.408 9.28794C189.137 9.97115 188.752 10.5676 188.253 11.0773C187.754 11.587 187.147 11.9937 186.431 12.2973C185.726 12.5901 184.945 12.7365 184.089 12.7365C183.113 12.7365 182.272 12.5739 181.567 12.2485C180.862 11.9123 180.282 11.484 179.827 10.9634C179.371 10.432 179.035 9.84644 178.818 9.20661C178.601 8.55593 178.493 7.92153 178.493 7.30338ZM179.973 6.92924C179.973 7.73174 180.087 8.45833 180.315 9.10901C180.542 9.74884 180.857 10.2965 181.258 10.752C181.67 11.2074 182.147 11.5599 182.69 11.8093C183.243 12.0479 183.845 12.1672 184.495 12.1672C184.821 12.1672 185.2 12.113 185.634 12.0045C186.079 11.8852 186.502 11.6575 186.903 11.3213C187.315 10.9851 187.662 10.5134 187.944 9.90609C188.226 9.28794 188.367 8.48002 188.367 7.48232C188.367 6.65813 188.248 5.93154 188.009 5.30256C187.781 4.66272 187.467 4.13134 187.066 3.7084C186.675 3.28546 186.22 2.96555 185.699 2.74865C185.189 2.53176 184.653 2.42332 184.089 2.42332C183.492 2.42332 182.939 2.52092 182.429 2.71612C181.931 2.90048 181.497 3.18244 181.128 3.562C180.77 3.93071 180.488 4.39703 180.282 4.96095C180.076 5.52487 179.973 6.18097 179.973 6.92924ZM192.649 8.53967V6.09963C192.649 5.56825 192.649 5.13446 192.649 4.79828C192.649 4.4621 192.649 4.19099 192.649 3.98494C192.649 3.76805 192.644 3.59995 192.633 3.48066C192.633 3.35053 192.628 3.23124 192.617 3.12279C192.595 2.88421 192.552 2.70528 192.487 2.58599C192.422 2.46669 192.27 2.39078 192.031 2.35825C191.977 2.3474 191.896 2.34198 191.787 2.34198C191.69 2.33114 191.608 2.32571 191.543 2.32571C191.467 2.32571 191.429 2.28776 191.429 2.21185C191.429 2.13593 191.505 2.09798 191.657 2.09798C191.82 2.09798 191.993 2.1034 192.178 2.11424C192.373 2.11424 192.552 2.11424 192.715 2.11424C192.877 2.11424 193.018 2.11967 193.138 2.13051C193.257 2.13051 193.327 2.13051 193.349 2.13051C193.382 2.13051 193.474 2.13051 193.626 2.13051C193.777 2.11967 193.945 2.11424 194.13 2.11424C194.314 2.11424 194.498 2.11424 194.683 2.11424C194.878 2.1034 195.03 2.09798 195.138 2.09798C195.594 2.09798 196.055 2.13593 196.521 2.21185C196.998 2.27691 197.427 2.43958 197.806 2.69985C197.893 2.76492 197.99 2.8571 198.099 2.97639C198.218 3.08484 198.327 3.22039 198.424 3.38306C198.533 3.54573 198.619 3.73009 198.685 3.93614C198.76 4.13134 198.798 4.34823 198.798 4.58681C198.798 5.09651 198.668 5.61163 198.408 6.13217C198.159 6.64186 197.703 7.17867 197.042 7.74259C197.627 8.48002 198.169 9.15239 198.668 9.75968C199.167 10.367 199.623 10.8875 200.035 11.3213C200.414 11.7117 200.729 11.9666 200.978 12.0858C201.228 12.1943 201.444 12.2594 201.629 12.2811C201.77 12.3027 201.878 12.319 201.954 12.3299C202.03 12.3299 202.09 12.3299 202.133 12.3299C202.22 12.3299 202.263 12.3678 202.263 12.4437C202.263 12.4871 202.236 12.5142 202.182 12.5251C202.139 12.5467 202.052 12.5576 201.922 12.5576H201.027C200.615 12.5576 200.3 12.5359 200.083 12.4925C199.877 12.4491 199.682 12.3787 199.498 12.2811C199.183 12.1184 198.88 11.869 198.587 11.5328C198.305 11.1966 197.958 10.7682 197.546 10.2477C197.394 10.0633 197.242 9.87355 197.09 9.67835C196.939 9.4723 196.792 9.28252 196.651 9.10901C196.521 8.92465 196.396 8.75656 196.277 8.60473C196.169 8.45291 196.076 8.3282 196 8.2306C195.946 8.17637 195.881 8.14926 195.805 8.14926L193.983 8.11673C193.918 8.11673 193.886 8.15468 193.886 8.2306V8.55593C193.886 9.2283 193.886 9.82475 193.886 10.3453C193.897 10.855 193.918 11.2508 193.951 11.5328C193.973 11.7388 194.016 11.9069 194.081 12.037C194.157 12.1563 194.303 12.2323 194.52 12.2648C194.618 12.2865 194.732 12.3027 194.862 12.3136C194.992 12.3244 195.09 12.3299 195.155 12.3299C195.231 12.3299 195.268 12.3678 195.268 12.4437C195.268 12.5196 195.193 12.5576 195.041 12.5576C194.846 12.5576 194.645 12.5522 194.439 12.5413C194.244 12.5413 194.059 12.5359 193.886 12.5251C193.723 12.5251 193.582 12.5196 193.463 12.5088C193.354 12.5088 193.295 12.5088 193.284 12.5088C193.284 12.5088 193.23 12.5088 193.121 12.5088C193.013 12.5196 192.883 12.5251 192.731 12.5251C192.59 12.5359 192.438 12.5413 192.275 12.5413C192.113 12.5522 191.977 12.5576 191.869 12.5576C191.717 12.5576 191.641 12.5196 191.641 12.4437C191.641 12.3678 191.679 12.3299 191.755 12.3299C191.82 12.3299 191.89 12.3244 191.966 12.3136C192.053 12.3027 192.129 12.2865 192.194 12.2648C192.335 12.2323 192.422 12.1563 192.454 12.037C192.498 11.9069 192.536 11.7388 192.568 11.5328C192.612 11.2508 192.633 10.8496 192.633 10.329C192.644 9.80848 192.649 9.21203 192.649 8.53967ZM193.886 2.82999V7.27085C193.886 7.34676 193.918 7.40641 193.983 7.44979C194.038 7.48232 194.119 7.50943 194.227 7.53112C194.336 7.55281 194.461 7.5745 194.602 7.59619C194.753 7.61788 194.911 7.63414 195.073 7.64499C195.236 7.65583 195.399 7.66126 195.561 7.66126C195.735 7.66126 195.914 7.65041 196.098 7.62872C196.282 7.60703 196.461 7.53654 196.635 7.41725C196.884 7.25458 197.09 6.99431 197.253 6.63644C197.416 6.27857 197.497 5.83394 197.497 5.30256C197.497 4.43499 197.275 3.76805 196.83 3.30173C196.396 2.82457 195.794 2.58599 195.024 2.58599C194.808 2.58599 194.602 2.59683 194.406 2.61852C194.211 2.62936 194.076 2.64563 194 2.66732C193.924 2.7107 193.886 2.76492 193.886 2.82999Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,121 @@
1
+ <svg width="341" height="227" viewBox="0 0 341 227" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_65_19)">
3
+ <path d="M341 0H0V227H341V0Z" fill="#003399"/>
4
+ <path d="M167.664 33.9365L158.499 33.9395L158.486 33.9385L165.911 39.3232L163.077 48.0293L163.073 48.0361L163.075 48.0342L163.074 48.0371L163.08 48.0303L170.5 42.6475L177.917 48.0303L177.922 48.0371V48.0342L177.923 48.0361L177.92 48.0293L175.086 39.3232L182.51 33.9385L182.498 33.9395L173.335 33.9365L170.499 25.2227L167.664 33.9365Z" fill="#FFCC00"/>
5
+ <path d="M170.5 176.556L166.597 188.55L172.603 190.498L170.5 176.556Z" fill="#FFCC00"/>
6
+ <path d="M170.5 176.556L174.403 188.55L168.397 190.498L170.5 176.556Z" fill="#FFCC00"/>
7
+ <path d="M182.51 185.274L169.882 185.27L169.885 191.571L182.51 185.274Z" fill="#FFCC00"/>
8
+ <path d="M182.512 185.272L172.296 192.683L168.582 187.579L182.512 185.272Z" fill="#FFCC00"/>
9
+ <path d="M177.922 199.372L174.017 187.377L168.013 189.324L177.922 199.372Z" fill="#FFCC00"/>
10
+ <path d="M177.924 199.37L167.705 191.956L171.416 186.856L177.924 199.37Z" fill="#FFCC00"/>
11
+ <path d="M158.488 185.274L171.116 185.27L171.114 191.571L158.488 185.274Z" fill="#FFCC00"/>
12
+ <path d="M158.486 185.272L168.702 192.683L172.416 187.579L158.486 185.272Z" fill="#FFCC00"/>
13
+ <path d="M163.076 199.372L166.981 187.377L172.985 189.324L163.076 199.372Z" fill="#FFCC00"/>
14
+ <path d="M163.074 199.37L173.293 191.956L169.583 186.856L163.074 199.37Z" fill="#FFCC00"/>
15
+ <path d="M94.7227 100.889L90.8199 112.883L96.8256 114.831L94.7227 100.889Z" fill="#FFCC00"/>
16
+ <path d="M94.7227 100.889L98.6254 112.883L92.6197 114.831L94.7227 100.889Z" fill="#FFCC00"/>
17
+ <path d="M106.732 109.607L94.105 109.603L94.1072 115.904L106.732 109.607Z" fill="#FFCC00"/>
18
+ <path d="M106.734 109.605L96.5188 117.016L92.805 111.912L106.734 109.605Z" fill="#FFCC00"/>
19
+ <path d="M102.145 123.705L98.24 111.71L92.236 113.657L102.145 123.705Z" fill="#FFCC00"/>
20
+ <path d="M102.146 123.703L91.9277 116.289L95.6382 111.189L102.146 123.703Z" fill="#FFCC00"/>
21
+ <path d="M82.7109 109.607L95.3384 109.603L95.3362 115.904L82.7109 109.607Z" fill="#FFCC00"/>
22
+ <path d="M82.709 109.605L92.9246 117.016L96.6383 111.912L82.709 109.605Z" fill="#FFCC00"/>
23
+ <path d="M87.2988 123.705L91.2033 111.71L97.2073 113.657L87.2988 123.705Z" fill="#FFCC00"/>
24
+ <path d="M87.2969 123.703L97.5157 116.289L93.8052 111.189L87.2969 123.703Z" fill="#FFCC00"/>
25
+ <path d="M125.186 58.1738L135.404 50.7598L131.694 45.6599L125.186 58.1738Z" fill="#FFCC00"/>
26
+ <path d="M125.186 58.1748L129.09 46.1796L135.094 48.1269L125.186 58.1748Z" fill="#FFCC00"/>
27
+ <path d="M120.598 44.0752L130.814 51.4866L134.527 46.3841L120.598 44.0752Z" fill="#FFCC00"/>
28
+ <path d="M120.6 44.0762L133.228 44.0738L133.227 50.377L120.6 44.0762Z" fill="#FFCC00"/>
29
+ <path d="M132.613 35.3604L128.709 47.3555L134.713 49.3028L132.613 35.3604Z" fill="#FFCC00"/>
30
+ <path d="M132.613 35.3604L136.514 47.3529L130.507 49.3028L132.613 35.3604Z" fill="#FFCC00"/>
31
+ <path d="M140.033 58.1738L129.817 50.7625L133.53 45.6599L140.033 58.1738Z" fill="#FFCC00"/>
32
+ <path d="M140.035 58.1729L136.134 46.1801L130.127 48.1298L140.035 58.1729Z" fill="#FFCC00"/>
33
+ <path d="M144.621 44.0732L134.403 51.4868L130.692 46.3865L144.621 44.0732Z" fill="#FFCC00"/>
34
+ <path d="M144.621 44.0742L131.992 44.0761L131.991 50.3798L144.621 44.0742Z" fill="#FFCC00"/>
35
+ <path d="M112.297 85.8701L108.392 73.8749L102.388 75.8222L112.297 85.8701Z" fill="#FFCC00"/>
36
+ <path d="M112.299 85.8682L102.08 78.4541L105.79 73.3542L112.299 85.8682Z" fill="#FFCC00"/>
37
+ <path d="M97.4512 85.8691L107.668 78.4578L103.955 73.3552L97.4512 85.8691Z" fill="#FFCC00"/>
38
+ <path d="M97.4492 85.8682L101.35 73.8755L107.358 75.8251L97.4492 85.8682Z" fill="#FFCC00"/>
39
+ <path d="M92.8633 71.7686L103.082 79.1822L106.793 74.0818L92.8633 71.7686Z" fill="#FFCC00"/>
40
+ <path d="M92.8633 71.7695L105.492 71.7715L105.493 78.0751L92.8633 71.7695Z" fill="#FFCC00"/>
41
+ <path d="M116.885 71.7705L106.668 79.1819L102.955 74.0794L116.885 71.7705Z" fill="#FFCC00"/>
42
+ <path d="M116.883 71.7715L104.254 71.7691L104.256 78.0723L116.883 71.7715Z" fill="#FFCC00"/>
43
+ <path d="M104.869 63.0557L108.774 75.0508L102.77 76.9981L104.869 63.0557Z" fill="#FFCC00"/>
44
+ <path d="M104.869 63.0557L100.968 75.0483L106.976 76.9981L104.869 63.0557Z" fill="#FFCC00"/>
45
+ <path d="M116.883 147.442L104.256 147.436L104.259 153.736L116.883 147.442Z" fill="#FFCC00"/>
46
+ <path d="M116.885 147.438L106.67 154.848L102.955 149.744L116.885 147.438Z" fill="#FFCC00"/>
47
+ <path d="M112.295 161.538L108.387 149.541L102.386 151.486L112.295 161.538Z" fill="#FFCC00"/>
48
+ <path d="M112.299 161.535L102.078 154.119L105.786 149.021L112.299 161.535Z" fill="#FFCC00"/>
49
+ <path d="M97.4512 161.536L107.667 154.126L103.953 149.022L97.4512 161.536Z" fill="#FFCC00"/>
50
+ <path d="M97.4492 161.534L101.349 149.542L107.358 151.493L97.4492 161.534Z" fill="#FFCC00"/>
51
+ <path d="M104.869 138.722L108.776 150.718L102.774 152.664L104.869 138.722Z" fill="#FFCC00"/>
52
+ <path d="M104.869 138.722L100.97 150.713L106.98 152.664L104.869 138.722Z" fill="#FFCC00"/>
53
+ <path d="M92.8633 147.436L105.492 147.438L105.493 153.741L92.8633 147.436Z" fill="#FFCC00"/>
54
+ <path d="M92.8633 147.435L103.082 154.848L106.793 149.748L92.8633 147.435Z" fill="#FFCC00"/>
55
+ <path d="M144.619 175.139L131.993 175.132L131.996 181.432L144.619 175.139Z" fill="#FFCC00"/>
56
+ <path d="M144.621 175.135L134.406 182.544L130.692 177.44L144.621 175.135Z" fill="#FFCC00"/>
57
+ <path d="M140.031 189.234L136.124 177.237L130.123 179.182L140.031 189.234Z" fill="#FFCC00"/>
58
+ <path d="M140.035 189.231L129.814 181.815L133.523 176.718L140.035 189.231Z" fill="#FFCC00"/>
59
+ <path d="M125.188 189.232L135.403 181.822L131.689 176.718L125.188 189.232Z" fill="#FFCC00"/>
60
+ <path d="M125.186 189.23L129.085 177.239L135.094 179.189L125.186 189.23Z" fill="#FFCC00"/>
61
+ <path d="M132.605 166.419L136.512 178.416L130.51 180.361L132.605 166.419Z" fill="#FFCC00"/>
62
+ <path d="M132.605 166.419L128.707 178.41L134.716 180.361L132.605 166.419Z" fill="#FFCC00"/>
63
+ <path d="M120.6 175.133L133.228 175.135L133.229 181.438L120.6 175.133Z" fill="#FFCC00"/>
64
+ <path d="M120.6 175.132L130.818 182.546L134.529 177.446L120.6 175.132Z" fill="#FFCC00"/>
65
+ <path d="M246.275 100.889L250.178 112.883L244.172 114.831L246.275 100.889Z" fill="#FFCC00"/>
66
+ <path d="M246.275 100.889L242.373 112.883L248.378 114.831L246.275 100.889Z" fill="#FFCC00"/>
67
+ <path d="M234.266 109.607L246.893 109.603L246.891 115.904L234.266 109.607Z" fill="#FFCC00"/>
68
+ <path d="M234.264 109.605L244.479 117.016L248.193 111.912L234.264 109.605Z" fill="#FFCC00"/>
69
+ <path d="M238.854 123.705L242.758 111.71L248.762 113.657L238.854 123.705Z" fill="#FFCC00"/>
70
+ <path d="M238.852 123.703L249.07 116.289L245.36 111.189L238.852 123.703Z" fill="#FFCC00"/>
71
+ <path d="M258.287 109.607L245.66 109.603L245.662 115.904L258.287 109.607Z" fill="#FFCC00"/>
72
+ <path d="M258.289 109.605L248.073 117.016L244.36 111.912L258.289 109.605Z" fill="#FFCC00"/>
73
+ <path d="M253.699 123.705L249.795 111.71L243.791 113.657L253.699 123.705Z" fill="#FFCC00"/>
74
+ <path d="M253.701 123.703L243.482 116.289L247.193 111.189L253.701 123.703Z" fill="#FFCC00"/>
75
+ <path d="M215.812 58.1738L205.594 50.7598L209.304 45.6599L215.812 58.1738Z" fill="#FFCC00"/>
76
+ <path d="M215.812 58.1748L211.908 46.1796L205.904 48.1269L215.812 58.1748Z" fill="#FFCC00"/>
77
+ <path d="M220.4 44.0752L210.184 51.4866L206.471 46.3841L220.4 44.0752Z" fill="#FFCC00"/>
78
+ <path d="M220.398 44.0762L207.77 44.0738L207.771 50.377L220.398 44.0762Z" fill="#FFCC00"/>
79
+ <path d="M208.385 35.3604L212.289 47.3555L206.285 49.3028L208.385 35.3604Z" fill="#FFCC00"/>
80
+ <path d="M208.385 35.3604L204.484 47.3529L210.491 49.3028L208.385 35.3604Z" fill="#FFCC00"/>
81
+ <path d="M200.965 58.1738L211.181 50.7625L207.468 45.6599L200.965 58.1738Z" fill="#FFCC00"/>
82
+ <path d="M200.963 58.1729L204.864 46.1801L210.871 48.1298L200.963 58.1729Z" fill="#FFCC00"/>
83
+ <path d="M196.377 44.0732L206.595 51.4868L210.306 46.3865L196.377 44.0732Z" fill="#FFCC00"/>
84
+ <path d="M196.377 44.0742L209.006 44.0761L209.007 50.3798L196.377 44.0742Z" fill="#FFCC00"/>
85
+ <path d="M228.701 85.8701L232.606 73.8749L238.61 75.8222L228.701 85.8701Z" fill="#FFCC00"/>
86
+ <path d="M228.699 85.8682L238.918 78.4541L235.208 73.3542L228.699 85.8682Z" fill="#FFCC00"/>
87
+ <path d="M243.547 85.8691L233.33 78.4578L237.043 73.3552L243.547 85.8691Z" fill="#FFCC00"/>
88
+ <path d="M243.549 85.8682L239.648 73.8755L233.64 75.8251L243.549 85.8682Z" fill="#FFCC00"/>
89
+ <path d="M248.135 71.7686L237.916 79.1822L234.205 74.0818L248.135 71.7686Z" fill="#FFCC00"/>
90
+ <path d="M248.135 71.7695L235.506 71.7715L235.505 78.0751L248.135 71.7695Z" fill="#FFCC00"/>
91
+ <path d="M224.111 71.7705L234.328 79.1819L238.041 74.0794L224.111 71.7705Z" fill="#FFCC00"/>
92
+ <path d="M224.113 71.7715L236.742 71.7691L236.741 78.0723L224.113 71.7715Z" fill="#FFCC00"/>
93
+ <path d="M236.127 63.0557L232.222 75.0508L238.226 76.9981L236.127 63.0557Z" fill="#FFCC00"/>
94
+ <path d="M236.127 63.0557L240.028 75.0483L234.02 76.9981L236.127 63.0557Z" fill="#FFCC00"/>
95
+ <path d="M224.115 147.442L236.742 147.436L236.739 153.736L224.115 147.442Z" fill="#FFCC00"/>
96
+ <path d="M224.113 147.438L234.328 154.848L238.043 149.744L224.113 147.438Z" fill="#FFCC00"/>
97
+ <path d="M228.703 161.538L232.611 149.541L238.612 151.486L228.703 161.538Z" fill="#FFCC00"/>
98
+ <path d="M228.699 161.535L238.92 154.119L235.212 149.021L228.699 161.535Z" fill="#FFCC00"/>
99
+ <path d="M243.547 161.536L233.331 154.126L237.045 149.022L243.547 161.536Z" fill="#FFCC00"/>
100
+ <path d="M243.549 161.534L239.649 149.542L233.64 151.493L243.549 161.534Z" fill="#FFCC00"/>
101
+ <path d="M236.129 138.722L232.222 150.718L238.224 152.664L236.129 138.722Z" fill="#FFCC00"/>
102
+ <path d="M236.129 138.722L240.028 150.713L234.018 152.664L236.129 138.722Z" fill="#FFCC00"/>
103
+ <path d="M248.135 147.436L235.506 147.438L235.505 153.741L248.135 147.436Z" fill="#FFCC00"/>
104
+ <path d="M248.135 147.435L237.916 154.848L234.205 149.748L248.135 147.435Z" fill="#FFCC00"/>
105
+ <path d="M196.379 175.139L209.005 175.132L209.002 181.432L196.379 175.139Z" fill="#FFCC00"/>
106
+ <path d="M196.377 175.135L206.592 182.544L210.306 177.44L196.377 175.135Z" fill="#FFCC00"/>
107
+ <path d="M200.967 189.234L204.874 177.237L210.875 179.182L200.967 189.234Z" fill="#FFCC00"/>
108
+ <path d="M200.963 189.231L211.184 181.815L207.475 176.718L200.963 189.231Z" fill="#FFCC00"/>
109
+ <path d="M215.811 189.232L205.595 181.822L209.309 176.718L215.811 189.232Z" fill="#FFCC00"/>
110
+ <path d="M215.812 189.23L211.913 177.239L205.904 179.189L215.812 189.23Z" fill="#FFCC00"/>
111
+ <path d="M208.393 166.419L204.486 178.416L210.488 180.361L208.393 166.419Z" fill="#FFCC00"/>
112
+ <path d="M208.393 166.419L212.291 178.41L206.282 180.361L208.393 166.419Z" fill="#FFCC00"/>
113
+ <path d="M220.398 175.133L207.77 175.135L207.769 181.438L220.398 175.133Z" fill="#FFCC00"/>
114
+ <path d="M220.398 175.132L210.18 182.546L206.469 177.446L220.398 175.132Z" fill="#FFCC00"/>
115
+ </g>
116
+ <defs>
117
+ <clipPath id="clip0_65_19">
118
+ <rect width="341" height="227" fill="white"/>
119
+ </clipPath>
120
+ </defs>
121
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="341" height="227" viewBox="0 0 341 227" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M341 0V227H0V0H341ZM167.664 185.271L158.5 185.273L158.488 185.272L165.913 190.658L163.081 199.359L163.075 199.371L163.078 199.368L163.077 199.372L163.085 199.363L170.5 193.983L177.918 199.365L177.924 199.372L177.923 199.369L177.925 199.371L177.921 199.364L175.087 190.657L182.507 185.275L182.51 185.274L182.509 185.273L182.512 185.272L182.499 185.273L173.335 185.271L170.5 176.556L167.664 185.271ZM129.772 175.134L120.611 175.133L120.6 175.131L120.602 175.133H120.6L120.607 175.137L128.021 180.516L125.188 189.23L125.194 189.224L125.19 189.232L132.615 183.846L140.012 189.212L140.035 189.236L140.032 189.227L140.039 189.232L140.024 189.205L137.196 180.521L144.616 175.14L144.62 175.139L144.618 175.138L144.623 175.136L144.604 175.138L135.445 175.134L132.607 166.418L129.772 175.134ZM205.553 175.134L196.394 175.138L196.376 175.136L196.38 175.138L196.379 175.139L196.382 175.14L203.802 180.521L200.974 189.205L200.96 189.232L200.966 189.227L200.964 189.236L200.986 189.212L208.383 183.846L215.809 189.232L215.804 189.224L215.811 189.23L212.977 180.517L220.395 175.135L220.399 175.133H220.397L220.399 175.132L220.393 175.133L211.225 175.134L208.392 166.418L205.553 175.134ZM233.288 147.438L224.136 147.442L224.112 147.439L224.117 147.442L224.115 147.443L224.123 147.447L231.538 152.825L228.71 161.509L228.696 161.536L228.702 161.53L228.7 161.54L228.723 161.516L236.119 156.149L243.545 161.536L243.54 161.527L243.547 161.534L240.713 152.82L248.13 147.438L248.135 147.437H248.133L248.135 147.436L248.128 147.437L238.96 147.438L236.127 138.723L233.288 147.438ZM102.037 147.438L92.8701 147.437L92.8643 147.436L92.8652 147.437H92.8643L92.8682 147.438L100.285 152.818L97.4521 161.534L97.458 161.527L97.4541 161.536L104.879 156.149L112.278 161.519L112.299 161.539L112.296 161.531L112.303 161.536L112.289 161.511L109.461 152.825L116.875 147.447L116.884 147.443L116.881 147.442L116.887 147.439L116.862 147.442L107.71 147.438L104.872 138.723L102.037 147.438ZM91.8867 109.604L82.7227 109.606L82.7109 109.605L82.7129 109.606V109.607L82.7148 109.608L90.1357 114.991L87.3037 123.692L87.2979 123.704L87.3008 123.701L87.2998 123.705L87.3076 123.696L94.7227 118.316L102.141 123.698L102.146 123.705L102.146 123.702L102.147 123.704L102.144 123.697L99.3096 114.99L106.729 109.608L106.732 109.607L106.731 109.606L106.734 109.605L106.722 109.606L97.5576 109.604L94.7227 100.89L91.8867 109.604ZM243.44 109.604L234.276 109.606L234.265 109.605L234.267 109.606V109.607L234.269 109.608L241.688 114.99L238.853 123.705L238.857 123.698L246.274 118.315L253.694 123.698L253.7 123.705L253.699 123.702L253.701 123.704L253.697 123.696L250.863 114.99L258.283 109.608L258.286 109.607L258.285 109.606L258.288 109.605L258.275 109.606L249.111 109.604L246.276 100.89L243.44 109.604ZM102.038 71.7705H92.8682L92.8623 71.7695L92.8633 71.7705H92.8623L92.8662 71.7725L100.285 77.1553L97.4512 85.8691L97.4541 85.8652L97.4521 85.8701L104.877 80.4834L112.289 85.8623L112.298 85.8711L112.296 85.8672L112.3 85.8701L112.293 85.8584L109.461 77.1572L116.887 71.7715H116.88L107.709 71.7705L104.873 63.0557L102.038 71.7705ZM233.289 71.7695L224.118 71.7715H224.112L231.537 77.1572L228.705 85.8584L228.699 85.8701L228.702 85.8672L228.701 85.8711L228.709 85.8623L236.122 80.4834L243.547 85.8701L243.544 85.8652L243.548 85.8691L240.713 77.1543L248.132 71.7725L248.137 71.7705H248.135L248.137 71.7695L248.13 71.7705H238.961L236.126 63.0557L233.289 71.7695ZM129.776 44.0742L120.61 44.0762L120.599 44.0752L120.601 44.0762V44.0771L128.023 49.4609L125.19 58.165L125.187 58.1738L125.188 58.1719L125.188 58.1758L125.196 58.166L132.608 52.7881L140.033 58.1738L140.03 58.1689L140.034 58.1729L137.199 49.459L144.618 44.0762L144.623 44.0742H144.621L144.623 44.0732L144.616 44.0742L135.447 44.0752L132.613 35.3604L129.776 44.0742ZM205.55 44.0752L196.382 44.0742L196.376 44.0732L196.377 44.0742H196.376L196.38 44.0762L203.799 49.459L200.965 58.1729L200.968 58.1689L200.966 58.1738L208.39 52.7881L215.801 58.165L215.812 58.1758L215.81 58.1719L215.812 58.1738L215.808 58.165L212.975 49.4619L220.4 44.0762H220.394L211.223 44.0742L208.387 35.3604L205.55 44.0752ZM167.665 33.9375L158.506 33.9404L158.488 33.9385L158.492 33.9404L158.49 33.9414L158.496 33.9443L165.912 39.3232L163.078 48.0303L163.075 48.0371L163.076 48.0352V48.0381L163.081 48.0312L170.5 42.6494L177.918 48.0312L177.924 48.0381L177.923 48.0352L177.925 48.0371L177.921 48.0303L175.087 39.3232L182.503 33.9443L182.51 33.9414L182.507 33.9404L182.512 33.9385L182.493 33.9404L173.336 33.9375L170.501 25.2227L167.665 33.9375Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 100">
2
+ <rect width="300" height="100" fill="white"/>
3
+ <circle cx="25" cy="50" r="20" fill="#0047AB"/>
4
+ <circle cx="25" cy="50" r="15" fill="#D4AF37"/>
5
+ <text x="55" y="65" font-family="Georgia, serif" font-size="24" font-weight="bold" fill="#0047AB">Guvernul Republicii Moldova</text>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 100">
2
+ <rect width="300" height="100" fill="#0047AB"/>
3
+ <circle cx="25" cy="50" r="20" fill="white"/>
4
+ <circle cx="25" cy="50" r="15" fill="#D4AF37"/>
5
+ <text x="55" y="65" font-family="Georgia, serif" font-size="24" font-weight="bold" fill="white">Guvernul Republicii Moldova</text>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
+ <circle cx="50" cy="50" r="45" fill="white" stroke="#0047AB" stroke-width="2"/>
3
+ <circle cx="50" cy="50" r="35" fill="#0047AB"/>
4
+ <circle cx="50" cy="50" r="25" fill="#D4AF37"/>
5
+ </svg>
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@identitate-md/logos",
3
+ "version": "1.3.5",
4
+ "description": "Logo-uri oficiale ale instituțiilor publice din Republica Moldova — Official logos of Moldovan public institutions",
5
+ "license": "MIT",
6
+ "author": "IdentitateMD Contributors",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/identitate-md/identitate-md",
10
+ "directory": "packages/logos"
11
+ },
12
+ "homepage": "https://identitate.md",
13
+ "keywords": [
14
+ "moldova",
15
+ "logos",
16
+ "institutions",
17
+ "government",
18
+ "branding",
19
+ "svg",
20
+ "visual-identity",
21
+ "public-sector"
22
+ ],
23
+ "files": [
24
+ "logos/**/*",
25
+ "index.json",
26
+ "identity-loader.js",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "main": "index.json",
31
+ "exports": {
32
+ ".": "./index.json",
33
+ "./loader": "./identity-loader.js",
34
+ "./logos/*": "./logos/*"
35
+ },
36
+ "type": "module",
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "scripts": {
41
+ "generate": "node scripts/generate-index.js"
42
+ }
43
+ }