@sd-angular/core 19.0.0-beta.41 → 19.0.0-beta.43
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/fesm2022/sd-angular-core-components-table.mjs +3 -3
- package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
- package/fesm2022/sd-angular-core-components-workflow.mjs +6 -6
- package/fesm2022/sd-angular-core-components-workflow.mjs.map +1 -1
- package/fesm2022/sd-angular-core-forms-select.mjs +43 -13
- package/fesm2022/sd-angular-core-forms-select.mjs.map +1 -1
- package/forms/select/src/select.component.d.ts +5 -1
- package/package.json +73 -73
- package/sd-angular-core-19.0.0-beta.43.tgz +0 -0
- package/sd-angular-core-19.0.0-beta.41.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i1 from '@angular/common';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { viewChild, contentChild, inject, ChangeDetectorRef, input, computed, booleanAttribute, model, output, signal, effect, untracked, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
+
import { viewChild, contentChild, inject, ChangeDetectorRef, ElementRef, input, computed, booleanAttribute, model, output, signal, effect, untracked, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
5
5
|
import { toObservable } from '@angular/core/rxjs-interop';
|
|
6
6
|
import * as i2 from '@angular/forms';
|
|
7
7
|
import { FormControl, NgForm, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
@@ -31,7 +31,7 @@ import * as uuid from 'uuid';
|
|
|
31
31
|
class SdSelect {
|
|
32
32
|
id = `I${uuid.v4()}`;
|
|
33
33
|
// ==========================================
|
|
34
|
-
// 1. SIGNAL QUERIES
|
|
34
|
+
// 1. SIGNAL QUERIES & INJECTS
|
|
35
35
|
// ==========================================
|
|
36
36
|
matInputRef = viewChild(MatInput);
|
|
37
37
|
selectRef = viewChild('select');
|
|
@@ -39,13 +39,11 @@ class SdSelect {
|
|
|
39
39
|
sdValueTemplate = contentChild('sdValue');
|
|
40
40
|
itemDef = contentChild(SdItemDefDefDirective);
|
|
41
41
|
sdViewDef = contentChild(SdViewDefDirective);
|
|
42
|
-
// ==========================================
|
|
43
|
-
// 2. INJECTS
|
|
44
|
-
// ==========================================
|
|
45
42
|
ref = inject(ChangeDetectorRef);
|
|
46
43
|
formConfig = inject(SD_FORM_CONFIGURATION, { optional: true });
|
|
44
|
+
el = inject(ElementRef); // [NEW]: Dùng để lấy chiều rộng cột
|
|
47
45
|
// ==========================================
|
|
48
|
-
//
|
|
46
|
+
// 2. SIGNAL INPUTS & MODEL
|
|
49
47
|
// ==========================================
|
|
50
48
|
autoIdInput = input(undefined, { alias: 'autoId' });
|
|
51
49
|
autoId = computed(() => (this.autoIdInput() ? `forms-select-${this.autoIdInput()}` : undefined));
|
|
@@ -61,6 +59,9 @@ class SdSelect {
|
|
|
61
59
|
cacheChecksum = input();
|
|
62
60
|
limit = input(50);
|
|
63
61
|
hyperlink = input();
|
|
62
|
+
minWidthPanel = input('auto', {
|
|
63
|
+
transform: (value) => value ?? 'auto'
|
|
64
|
+
});
|
|
64
65
|
hideInlineError = input(false, { transform: booleanAttribute });
|
|
65
66
|
required = input(false, { transform: booleanAttribute });
|
|
66
67
|
disabled = input(false, { transform: booleanAttribute });
|
|
@@ -73,12 +74,12 @@ class SdSelect {
|
|
|
73
74
|
items = input();
|
|
74
75
|
valueModel = model(undefined, { alias: 'model' });
|
|
75
76
|
// ==========================================
|
|
76
|
-
//
|
|
77
|
+
// 3. SIGNAL OUTPUTS
|
|
77
78
|
// ==========================================
|
|
78
79
|
sdChange = output();
|
|
79
80
|
sdSelection = output();
|
|
80
81
|
// ==========================================
|
|
81
|
-
//
|
|
82
|
+
// 4. INTERNAL STATE & STREAMS
|
|
82
83
|
// ==========================================
|
|
83
84
|
formControl = new SdFormControl();
|
|
84
85
|
inputControl = new FormControl('');
|
|
@@ -90,13 +91,13 @@ class SdSelect {
|
|
|
90
91
|
#subscription = new Subscription();
|
|
91
92
|
#searchRequestId = 0;
|
|
92
93
|
#hashedValue;
|
|
93
|
-
// RXJS STREAMS
|
|
94
94
|
#items$ = toObservable(this.items);
|
|
95
95
|
#valueModel$ = toObservable(this.valueModel);
|
|
96
|
-
// PUBLIC SIGNALS
|
|
96
|
+
// PUBLIC SIGNALS
|
|
97
97
|
filteredItems = signal([]);
|
|
98
98
|
selectedItems = signal([]);
|
|
99
99
|
display = signal('');
|
|
100
|
+
calculatedPanelWidth = signal('auto'); // [NEW]: Signal kiểm soát độ rộng thông minh
|
|
100
101
|
normalizedValue = computed(() => {
|
|
101
102
|
const val = this.valueModel();
|
|
102
103
|
if (this.multiple() && val !== undefined && val !== null && !Array.isArray(val)) {
|
|
@@ -114,7 +115,7 @@ class SdSelect {
|
|
|
114
115
|
});
|
|
115
116
|
delayTime = computed(() => (typeof this.items() === 'function' ? 500 : 0));
|
|
116
117
|
// ==========================================
|
|
117
|
-
//
|
|
118
|
+
// 5. GETTER & HELPERS
|
|
118
119
|
// ==========================================
|
|
119
120
|
itemValue = (item) => {
|
|
120
121
|
const path = this.valueField();
|
|
@@ -164,6 +165,31 @@ class SdSelect {
|
|
|
164
165
|
.map(item => (vF ? `• ${this.itemValue(item)} - ${this.itemDisplay(item)}` : `• ${item}`))
|
|
165
166
|
.join('\n');
|
|
166
167
|
});
|
|
168
|
+
// [NEW]: Hàm tính toán độ rộng chuẩn xác
|
|
169
|
+
updatePanelWidth = () => {
|
|
170
|
+
const minWInput = this.minWidthPanel();
|
|
171
|
+
if (!minWInput || minWInput === 'auto') {
|
|
172
|
+
this.calculatedPanelWidth.set('auto');
|
|
173
|
+
return;
|
|
174
|
+
}
|
|
175
|
+
const minWStr = String(minWInput).trim().toLowerCase();
|
|
176
|
+
// Bỏ qua và gán thẳng nếu dùng đơn vị tương đối (%, vw, vh, rem, em)
|
|
177
|
+
if (!minWStr.endsWith('px') && isNaN(Number(minWStr))) {
|
|
178
|
+
this.calculatedPanelWidth.set(minWInput);
|
|
179
|
+
return;
|
|
180
|
+
}
|
|
181
|
+
// Lấy chiều rộng hiện tại của thẻ sd-select
|
|
182
|
+
const hostWidth = this.el.nativeElement.getBoundingClientRect().width;
|
|
183
|
+
const minW = parseFloat(minWStr);
|
|
184
|
+
// Nếu thẻ to hơn hoặc bằng minWidth -> dùng auto để to đúng bằng thẻ
|
|
185
|
+
// Nếu thẻ nhỏ hơn -> dùng kích thước minWidth để panel rộng ra
|
|
186
|
+
if (hostWidth >= minW) {
|
|
187
|
+
this.calculatedPanelWidth.set('auto');
|
|
188
|
+
}
|
|
189
|
+
else {
|
|
190
|
+
this.calculatedPanelWidth.set(minWInput);
|
|
191
|
+
}
|
|
192
|
+
};
|
|
167
193
|
constructor() {
|
|
168
194
|
effect(() => {
|
|
169
195
|
const val = this.normalizedValue();
|
|
@@ -420,14 +446,18 @@ class SdSelect {
|
|
|
420
446
|
this.sdSelection.emit({ multiple: false, values: [], selectedItems: [], value: null, selectedItem: null });
|
|
421
447
|
}
|
|
422
448
|
};
|
|
449
|
+
// [NEW]: Chèn updatePanelWidth trước khi open
|
|
423
450
|
onClick = () => {
|
|
451
|
+
this.updatePanelWidth();
|
|
424
452
|
if (this.sdViewDef()?.templateRef) {
|
|
425
453
|
if (!this.formControl.disabled && !this.isFocused)
|
|
426
454
|
this.focus();
|
|
427
455
|
}
|
|
428
456
|
};
|
|
457
|
+
// [NEW]: Chèn updatePanelWidth trước khi open
|
|
429
458
|
focus = () => {
|
|
430
459
|
this.isFocused = true;
|
|
460
|
+
this.updatePanelWidth();
|
|
431
461
|
setTimeout(() => {
|
|
432
462
|
this.selectRef()?.focus();
|
|
433
463
|
this.selectRef()?.open();
|
|
@@ -472,7 +502,7 @@ class SdSelect {
|
|
|
472
502
|
}
|
|
473
503
|
};
|
|
474
504
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdSelect, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
475
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SdSelect, isStandalone: true, selector: "sd-select", inputs: { autoIdInput: { classPropertyName: "autoIdInput", publicName: "autoId", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helperText: { classPropertyName: "helperText", publicName: "helperText", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, valueField: { classPropertyName: "valueField", publicName: "valueField", isSignal: true, isRequired: true, transformFunction: null }, displayField: { classPropertyName: "displayField", publicName: "displayField", isSignal: true, isRequired: true, transformFunction: null }, disabledField: { classPropertyName: "disabledField", publicName: "disabledField", isSignal: true, isRequired: false, transformFunction: null }, cacheChecksum: { classPropertyName: "cacheChecksum", publicName: "cacheChecksum", isSignal: true, isRequired: false, transformFunction: null }, limit: { classPropertyName: "limit", publicName: "limit", isSignal: true, isRequired: false, transformFunction: null }, hyperlink: { classPropertyName: "hyperlink", publicName: "hyperlink", isSignal: true, isRequired: false, transformFunction: null }, hideInlineError: { classPropertyName: "hideInlineError", publicName: "hideInlineError", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, viewed: { classPropertyName: "viewed", publicName: "viewed", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, validator: { classPropertyName: "validator", publicName: "validator", isSignal: true, isRequired: false, transformFunction: null }, inlineError: { classPropertyName: "inlineError", publicName: "inlineError", isSignal: true, isRequired: false, transformFunction: null }, appearanceInput: { classPropertyName: "appearanceInput", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, valueModel: { classPropertyName: "valueModel", publicName: "model", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valueModel: "modelChange", sdChange: "sdChange", sdSelection: "sdSelection" }, queries: [{ propertyName: "sdLabelTemplate", first: true, predicate: ["sdLabel"], descendants: true, isSignal: true }, { propertyName: "sdValueTemplate", first: true, predicate: ["sdValue"], descendants: true, isSignal: true }, { propertyName: "itemDef", first: true, predicate: SdItemDefDefDirective, descendants: true, isSignal: true }, { propertyName: "sdViewDef", first: true, predicate: SdViewDefDirective, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "matInputRef", first: true, predicate: MatInput, descendants: true, isSignal: true }, { propertyName: "selectRef", first: true, predicate: ["select"], descendants: true, isSignal: true }], ngImport: i0, template: "@let lbl = label();\r\n@let app = appearance();\r\n@let hideErr = hideInlineError();\r\n@let viewDef = sdViewDef();\r\n@let hText = helperText();\r\n@let isMulti = multiple();\r\n@let req = required();\r\n@let nVal = $any(normalizedValue());\r\n\r\n@if (viewed()) {\r\n <sd-view\r\n [label]=\"lbl\"\r\n [labelTemplate]=\"sdLabelTemplate()\"\r\n [value]=\"nVal\"\r\n [display]=\"display()\"\r\n [hyperlink]=\"hyperlink()\"\r\n [valueTemplate]=\"sdValueTemplate()\">\r\n </sd-view>\r\n} @else {\r\n @if (!app) {\r\n <ng-content select=\"[sdLabel]\">\r\n @if (lbl) {\r\n <sd-label [label]=\"lbl\" [required]=\"req\"></sd-label>\r\n }\r\n </ng-content>\r\n }\r\n \r\n <div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"viewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n \r\n @if (viewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n viewDef!.templateRef;\r\n context: {\r\n value: nVal,\r\n selectedItems: selectedItems()\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size() === 'md'\"\r\n [class.sd-sm]=\"size() === 'sm'\"\r\n [class.hide-inline-error]=\"hideErr\"\r\n [appearance]=\"app!\">\r\n \r\n @if (app && lbl) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ lbl }}</span>\r\n @if (hText) {\r\n <mat-icon [matTooltip]=\"hText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder() || lbl || ''\"\r\n [multiple]=\"isMulti\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n [panelClass]=\"isMulti ? ['sd-select-panel', 'sd-multiple'] : 'sd-select-panel'\"\r\n [class.sd-selected]=\"!req && (isMulti ? nVal?.length : nVal !== undefined && nVal !== null)\"\r\n [required]=\"req\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId()\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !nVal?.length\"\r\n [matTooltip]=\"tooltip() || ''\">\r\n \r\n <mat-select-trigger>\r\n @if (isMulti) {\r\n <div class=\"sd-trigger-text\" [matTooltip]=\"display() || ''\" matTooltipPosition=\"above\">\r\n {{ display() }}\r\n </div>\r\n } @else {\r\n {{ display() }}\r\n }\r\n </mat-select-trigger>\r\n\r\n @if (filtered()) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @let asyncItems = filteredItems();\r\n @if (asyncItems) {\r\n @if (!asyncItems.length && !loading()) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @let iDefTpl = itemDef()?.templateRef;\r\n\r\n @if (valueField() && displayField()) {\r\n @for (item of asyncItems; track itemValue(item)) {\r\n <mat-option [value]=\"itemValue(item)\" [disabled]=\"itemDisabled(item)\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"itemDisplay(item)\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ itemDisplay(item) }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField() && !displayField()) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (loading()) {\r\n <mat-option disabled class=\"sd-loading-option\">\r\n <mat-spinner diameter=\"24\"></mat-spinner>\r\n </mat-option>\r\n }\r\n </mat-select>\r\n\r\n @if (\r\n (isMulti ? nVal?.length : nVal !== undefined && nVal !== null) &&\r\n !req &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\" />\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\" />\r\n </svg>\r\n </span>\r\n }\r\n\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n </div>\r\n}", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}::ng-deep .sd-loading-option{min-height:50px!important}::ng-deep .sd-loading-option .mat-pseudo-checkbox{display:none!important}::ng-deep .sd-loading-option .mdc-list-item__primary-text{width:100%;display:flex;justify-content:center;align-items:center}.sd-trigger-text{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host ::ng-deep .mat-mdc-select-value{max-width:100%;overflow:hidden}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .mat-mdc-option{min-height:36px!important;padding:8px 12px!important}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}::ng-deep .sd-select-panel.sd-multiple .mat-pseudo-checkbox{transform:scale(.75);margin-right:8px!important}::ng-deep .sd-select-panel.sd-multiple .mdc-list-item__primary-text{font-size:14px;white-space:normal}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "directive", type: i3.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i3.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i6.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i7.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: SdLabel, selector: "sd-label", inputs: ["label", "description", "required", "helperText"] }, { kind: "component", type: SdView, selector: "sd-view", inputs: ["label", "value", "display", "hyperlink", "labelTemplate", "valueTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
505
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.17", type: SdSelect, isStandalone: true, selector: "sd-select", inputs: { autoIdInput: { classPropertyName: "autoIdInput", publicName: "autoId", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, helperText: { classPropertyName: "helperText", publicName: "helperText", isSignal: true, isRequired: false, transformFunction: null }, placeholder: { classPropertyName: "placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, valueField: { classPropertyName: "valueField", publicName: "valueField", isSignal: true, isRequired: true, transformFunction: null }, displayField: { classPropertyName: "displayField", publicName: "displayField", isSignal: true, isRequired: true, transformFunction: null }, disabledField: { classPropertyName: "disabledField", publicName: "disabledField", isSignal: true, isRequired: false, transformFunction: null }, cacheChecksum: { classPropertyName: "cacheChecksum", publicName: "cacheChecksum", isSignal: true, isRequired: false, transformFunction: null }, limit: { classPropertyName: "limit", publicName: "limit", isSignal: true, isRequired: false, transformFunction: null }, hyperlink: { classPropertyName: "hyperlink", publicName: "hyperlink", isSignal: true, isRequired: false, transformFunction: null }, minWidthPanel: { classPropertyName: "minWidthPanel", publicName: "minWidthPanel", isSignal: true, isRequired: false, transformFunction: null }, hideInlineError: { classPropertyName: "hideInlineError", publicName: "hideInlineError", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, viewed: { classPropertyName: "viewed", publicName: "viewed", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, validator: { classPropertyName: "validator", publicName: "validator", isSignal: true, isRequired: false, transformFunction: null }, inlineError: { classPropertyName: "inlineError", publicName: "inlineError", isSignal: true, isRequired: false, transformFunction: null }, appearanceInput: { classPropertyName: "appearanceInput", publicName: "appearance", isSignal: true, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, valueModel: { classPropertyName: "valueModel", publicName: "model", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valueModel: "modelChange", sdChange: "sdChange", sdSelection: "sdSelection" }, queries: [{ propertyName: "sdLabelTemplate", first: true, predicate: ["sdLabel"], descendants: true, isSignal: true }, { propertyName: "sdValueTemplate", first: true, predicate: ["sdValue"], descendants: true, isSignal: true }, { propertyName: "itemDef", first: true, predicate: SdItemDefDefDirective, descendants: true, isSignal: true }, { propertyName: "sdViewDef", first: true, predicate: SdViewDefDirective, descendants: true, isSignal: true }], viewQueries: [{ propertyName: "matInputRef", first: true, predicate: MatInput, descendants: true, isSignal: true }, { propertyName: "selectRef", first: true, predicate: ["select"], descendants: true, isSignal: true }], ngImport: i0, template: "@let lbl = label();\r\n@let app = appearance();\r\n@let hideErr = hideInlineError();\r\n@let viewDef = sdViewDef();\r\n@let hText = helperText();\r\n@let isMulti = multiple();\r\n@let req = required();\r\n@let nVal = $any(normalizedValue());\r\n\r\n@if (viewed()) {\r\n <sd-view\r\n [label]=\"lbl\"\r\n [labelTemplate]=\"sdLabelTemplate()\"\r\n [value]=\"nVal\"\r\n [display]=\"display()\"\r\n [hyperlink]=\"hyperlink()\"\r\n [valueTemplate]=\"sdValueTemplate()\">\r\n </sd-view>\r\n} @else {\r\n @if (!app) {\r\n <ng-content select=\"[sdLabel]\">\r\n @if (lbl) {\r\n <sd-label [label]=\"lbl\" [required]=\"req\"></sd-label>\r\n }\r\n </ng-content>\r\n }\r\n \r\n <div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"viewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n (mouseenter)=\"updatePanelWidth()\"\r\n (focusin)=\"updatePanelWidth()\"\r\n aria-hidden=\"true\">\r\n \r\n @if (viewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n viewDef!.templateRef;\r\n context: {\r\n value: nVal,\r\n selectedItems: selectedItems()\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size() === 'md'\"\r\n [class.sd-sm]=\"size() === 'sm'\"\r\n [class.hide-inline-error]=\"hideErr\"\r\n [appearance]=\"app!\">\r\n \r\n @if (app && lbl) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ lbl }}</span>\r\n @if (hText) {\r\n <mat-icon [matTooltip]=\"hText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder() || lbl || ''\"\r\n [multiple]=\"isMulti\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n \r\n [panelWidth]=\"calculatedPanelWidth()\"\r\n \r\n [panelClass]=\"isMulti ? ['sd-select-panel', 'sd-multiple'] : 'sd-select-panel'\"\r\n [class.sd-selected]=\"!req && (isMulti ? nVal?.length : nVal !== undefined && nVal !== null)\"\r\n [required]=\"req\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId()\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !nVal?.length\"\r\n [matTooltip]=\"tooltip() || ''\">\r\n \r\n <mat-select-trigger>\r\n @if (isMulti) {\r\n <div class=\"sd-trigger-text\" [matTooltip]=\"display() || ''\" matTooltipPosition=\"above\">\r\n {{ display() }}\r\n </div>\r\n } @else {\r\n {{ display() }}\r\n }\r\n </mat-select-trigger>\r\n\r\n @if (filtered()) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @let asyncItems = filteredItems();\r\n @if (asyncItems) {\r\n @if (!asyncItems.length && !loading()) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @let iDefTpl = itemDef()?.templateRef;\r\n\r\n @if (valueField() && displayField()) {\r\n @for (item of asyncItems; track itemValue(item)) {\r\n <mat-option [value]=\"itemValue(item)\" [disabled]=\"itemDisabled(item)\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"itemDisplay(item)\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ itemDisplay(item) }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField() && !displayField()) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (loading()) {\r\n <mat-option disabled class=\"sd-loading-option\">\r\n <mat-spinner diameter=\"24\"></mat-spinner>\r\n </mat-option>\r\n }\r\n </mat-select>\r\n\r\n @if (\r\n (isMulti ? nVal?.length : nVal !== undefined && nVal !== null) &&\r\n !req &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\" />\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\" />\r\n </svg>\r\n </span>\r\n }\r\n\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n </div>\r\n}", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block;max-width:100%}::ng-deep .sd-loading-option{min-height:50px!important}::ng-deep .sd-loading-option .mat-pseudo-checkbox{display:none!important}::ng-deep .sd-loading-option .mdc-list-item__primary-text{width:100%;display:flex;justify-content:center;align-items:center}.sd-trigger-text{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host ::ng-deep .mat-mdc-select-value{max-width:100%;overflow:hidden;width:0;min-width:100%}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .mat-mdc-option{min-height:36px!important;padding:8px 12px!important}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}::ng-deep .sd-select-panel.sd-multiple .mat-pseudo-checkbox{transform:scale(.75);margin-right:8px!important}::ng-deep .sd-select-panel.sd-multiple .mdc-list-item__primary-text{font-size:14px;white-space:normal}::ng-deep .mat-mdc-select-panel.sd-select-panel{max-width:90vw!important}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option .mdc-list-item__primary-text{white-space:normal;word-break:break-word;line-height:1.4}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "directive", type: i3.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i3.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i6.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i6.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i6.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i7.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: SdLabel, selector: "sd-label", inputs: ["label", "description", "required", "helperText"] }, { kind: "component", type: SdView, selector: "sd-view", inputs: ["label", "value", "display", "hyperlink", "labelTemplate", "valueTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
476
506
|
}
|
|
477
507
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdSelect, decorators: [{
|
|
478
508
|
type: Component,
|
|
@@ -489,7 +519,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
489
519
|
MatProgressSpinnerModule,
|
|
490
520
|
SdLabel,
|
|
491
521
|
SdView,
|
|
492
|
-
], template: "@let lbl = label();\r\n@let app = appearance();\r\n@let hideErr = hideInlineError();\r\n@let viewDef = sdViewDef();\r\n@let hText = helperText();\r\n@let isMulti = multiple();\r\n@let req = required();\r\n@let nVal = $any(normalizedValue());\r\n\r\n@if (viewed()) {\r\n <sd-view\r\n [label]=\"lbl\"\r\n [labelTemplate]=\"sdLabelTemplate()\"\r\n [value]=\"nVal\"\r\n [display]=\"display()\"\r\n [hyperlink]=\"hyperlink()\"\r\n [valueTemplate]=\"sdValueTemplate()\">\r\n </sd-view>\r\n} @else {\r\n @if (!app) {\r\n <ng-content select=\"[sdLabel]\">\r\n @if (lbl) {\r\n <sd-label [label]=\"lbl\" [required]=\"req\"></sd-label>\r\n }\r\n </ng-content>\r\n }\r\n \r\n <div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"viewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n aria-hidden=\"true\">\r\n \r\n @if (viewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n viewDef!.templateRef;\r\n context: {\r\n value: nVal,\r\n selectedItems: selectedItems()\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size() === 'md'\"\r\n [class.sd-sm]=\"size() === 'sm'\"\r\n [class.hide-inline-error]=\"hideErr\"\r\n [appearance]=\"app!\">\r\n \r\n @if (app && lbl) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ lbl }}</span>\r\n @if (hText) {\r\n <mat-icon [matTooltip]=\"hText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder() || lbl || ''\"\r\n [multiple]=\"isMulti\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n [panelClass]=\"isMulti ? ['sd-select-panel', 'sd-multiple'] : 'sd-select-panel'\"\r\n [class.sd-selected]=\"!req && (isMulti ? nVal?.length : nVal !== undefined && nVal !== null)\"\r\n [required]=\"req\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId()\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !nVal?.length\"\r\n [matTooltip]=\"tooltip() || ''\">\r\n \r\n <mat-select-trigger>\r\n @if (isMulti) {\r\n <div class=\"sd-trigger-text\" [matTooltip]=\"display() || ''\" matTooltipPosition=\"above\">\r\n {{ display() }}\r\n </div>\r\n } @else {\r\n {{ display() }}\r\n }\r\n </mat-select-trigger>\r\n\r\n @if (filtered()) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @let asyncItems = filteredItems();\r\n @if (asyncItems) {\r\n @if (!asyncItems.length && !loading()) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @let iDefTpl = itemDef()?.templateRef;\r\n\r\n @if (valueField() && displayField()) {\r\n @for (item of asyncItems; track itemValue(item)) {\r\n <mat-option [value]=\"itemValue(item)\" [disabled]=\"itemDisabled(item)\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"itemDisplay(item)\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ itemDisplay(item) }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField() && !displayField()) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (loading()) {\r\n <mat-option disabled class=\"sd-loading-option\">\r\n <mat-spinner diameter=\"24\"></mat-spinner>\r\n </mat-option>\r\n }\r\n </mat-select>\r\n\r\n @if (\r\n (isMulti ? nVal?.length : nVal !== undefined && nVal !== null) &&\r\n !req &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\" />\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\" />\r\n </svg>\r\n </span>\r\n }\r\n\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n </div>\r\n}", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block}::ng-deep .sd-loading-option{min-height:50px!important}::ng-deep .sd-loading-option .mat-pseudo-checkbox{display:none!important}::ng-deep .sd-loading-option .mdc-list-item__primary-text{width:100%;display:flex;justify-content:center;align-items:center}.sd-trigger-text{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host ::ng-deep .mat-mdc-select-value{max-width:100%;overflow:hidden}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .mat-mdc-option{min-height:36px!important;padding:8px 12px!important}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"97\" height=\"96\" viewBox=\"0 0 97 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M17.9657 72.84C8.63101 65.685 2.2812 55.23 0.806245 43.55C-0.773708 31.025 3.06618 15.9 28.8604 12.175C77.634 5.13499 110.693 47.8 90.4436 68.9C73.2191 86.85 41.73 91.05 17.9657 72.835V72.84Z\" fill=\"%23F2F2F2\"/>%0D%0A<path d=\"M68.8944 62.84H27.5107L22.1708 47.51C22.0558 47.185 22.3008 46.845 22.6408 46.845H74.3343C74.6843 46.845 74.9293 47.195 74.7993 47.525L68.8944 62.84Z\" fill=\"black\"/>%0D%0A<path d=\"M68.8943 63.09H27.5106C27.4056 63.09 27.3106 63.025 27.2756 62.92L21.9357 47.59C21.8557 47.36 21.8907 47.105 22.0307 46.91C22.1707 46.715 22.4007 46.595 22.6407 46.595H74.3342C74.5792 46.595 74.8142 46.715 74.9542 46.92C75.0942 47.125 75.1242 47.385 75.0342 47.615L69.1293 62.93C69.0943 63.025 68.9993 63.09 68.8943 63.09ZM27.6906 62.59H68.7243L74.5692 47.435C74.5992 47.355 74.5892 47.27 74.5442 47.205C74.4992 47.135 74.4192 47.095 74.3392 47.095H22.6407C22.5607 47.095 22.4857 47.135 22.4357 47.2C22.3857 47.265 22.3757 47.35 22.4057 47.425L27.6906 62.585V62.59Z\" fill=\"black\"/>%0D%0A<path d=\"M15.8561 58.295L10.5811 58.925C10.2511 58.965 9.98106 58.66 10.0611 58.335L10.7411 55.6C10.8111 55.31 11.1311 55.155 11.4061 55.28L16.0061 57.39C16.4461 57.59 16.3411 58.245 15.8611 58.3L15.8561 58.295ZM17.5611 55.435L16.6161 49.065C16.5611 48.685 16.1761 48.455 15.8161 48.58L12.4261 49.755C12.0261 49.895 11.8861 50.395 12.1561 50.72L16.4911 55.915C16.8861 56.385 17.6511 56.045 17.5611 55.435Z\" fill=\"%234CAF50\"/>%0D%0A<path d=\"M34.81 33.265C34.81 33.265 44.2198 36.035 49.1596 35.715L53.0745 40.145C53.0745 40.145 47.3047 59.815 46.5097 61.8C46.5097 61.8 38.1299 59.175 26.4253 58.005C26.4253 58.005 31.5651 46.315 34.805 33.27L34.81 33.265Z\" fill=\"white\"/>%0D%0A<path d=\"M46.6996 61.525C46.6746 61.525 46.6446 61.525 46.6196 61.51C46.4896 61.465 46.4196 61.325 46.4646 61.195C46.6346 60.69 46.8946 59.89 47.2296 58.81C47.2696 58.68 47.4095 58.605 47.5445 58.645C47.6745 58.685 47.7495 58.825 47.7095 58.96C47.3745 60.04 47.1146 60.845 46.9396 61.355C46.9046 61.46 46.8046 61.525 46.7046 61.525H46.6996ZM44.6346 61.525C44.6346 61.525 44.5896 61.525 44.5696 61.515C43.9146 61.34 43.1047 61.13 42.1497 60.905C42.0147 60.875 41.9347 60.74 41.9647 60.605C41.9947 60.47 42.1297 60.385 42.2647 60.42C43.2247 60.65 44.0396 60.86 44.6946 61.035C44.8296 61.07 44.9096 61.21 44.8696 61.34C44.8396 61.45 44.7396 61.525 44.6296 61.525H44.6346ZM39.7698 60.36C39.7698 60.36 39.7348 60.36 39.7148 60.355C38.9548 60.19 38.1348 60.025 37.2698 59.855C37.1349 59.83 37.0449 59.695 37.0699 59.56C37.0949 59.425 37.2348 59.335 37.3648 59.36C38.2348 59.53 39.0548 59.695 39.8198 59.86C39.9548 59.89 40.0398 60.02 40.0098 60.155C39.9848 60.27 39.8798 60.35 39.7648 60.35L39.7698 60.36ZM34.8599 59.41C34.8599 59.41 34.8299 59.41 34.8149 59.41C34.0249 59.275 33.2 59.14 32.35 59.01C32.215 58.99 32.12 58.86 32.14 58.725C32.16 58.59 32.29 58.495 32.425 58.515C33.28 58.645 34.1049 58.78 34.8999 58.915C35.0349 58.94 35.1299 59.07 35.1049 59.205C35.0849 59.325 34.9799 59.415 34.8599 59.415V59.41ZM29.9151 58.66C29.9151 58.66 29.8951 58.66 29.8801 58.66C29.0751 58.555 28.2501 58.455 27.4001 58.365C27.2651 58.35 27.1651 58.225 27.1801 58.09C27.1951 57.955 27.3201 57.855 27.4551 57.87C28.3051 57.965 29.1351 58.065 29.9451 58.17C30.0801 58.19 30.1801 58.315 30.1601 58.45C30.1451 58.575 30.0351 58.67 29.9101 58.67L29.9151 58.66ZM27.0101 56.885C26.9801 56.885 26.9452 56.88 26.9152 56.865C26.7852 56.81 26.7252 56.665 26.7802 56.54C27.0301 55.94 27.3501 55.16 27.7201 54.225C27.7701 54.095 27.9151 54.035 28.0451 54.085C28.1751 54.135 28.2351 54.28 28.1851 54.41C27.8101 55.35 27.4901 56.13 27.2451 56.735C27.2051 56.83 27.1101 56.89 27.0151 56.89L27.0101 56.885ZM48.2045 56.745C48.2045 56.745 48.1545 56.745 48.1295 56.735C47.9995 56.695 47.9245 56.555 47.9645 56.425C48.1945 55.665 48.4395 54.86 48.6895 54.025C48.7295 53.895 48.8695 53.815 48.9995 53.86C49.1295 53.9 49.2045 54.04 49.1645 54.17C48.9145 55 48.6695 55.81 48.4395 56.57C48.4045 56.68 48.3095 56.745 48.1995 56.745H48.2045ZM28.8551 52.235C28.8251 52.235 28.7951 52.23 28.7651 52.22C28.6351 52.17 28.5701 52.025 28.6201 51.9C28.8951 51.17 29.1901 50.39 29.4951 49.56C29.5401 49.43 29.6901 49.365 29.8151 49.41C29.9451 49.455 30.0101 49.6 29.9651 49.73C29.6601 50.565 29.3701 51.35 29.0901 52.08C29.0501 52.18 28.9551 52.24 28.8551 52.24V52.235ZM49.6495 51.95C49.6495 51.95 49.5995 51.95 49.5795 51.94C49.4495 51.9 49.3695 51.76 49.4145 51.63L50.1295 49.23C50.1695 49.1 50.3045 49.025 50.4395 49.06C50.5695 49.1 50.6495 49.24 50.6095 49.37L49.8895 51.77C49.8595 51.88 49.7595 51.95 49.6495 51.95ZM30.575 47.535C30.55 47.535 30.52 47.535 30.49 47.52C30.36 47.475 30.2901 47.33 30.335 47.2C30.6 46.44 30.87 45.65 31.145 44.835C31.19 44.705 31.33 44.63 31.46 44.68C31.59 44.725 31.66 44.865 31.615 44.995C31.34 45.81 31.07 46.6 30.805 47.365C30.77 47.47 30.67 47.53 30.57 47.53L30.575 47.535ZM51.0844 47.145C51.0844 47.145 51.0394 47.145 51.0144 47.135C50.8844 47.095 50.8044 46.955 50.8444 46.825L51.5544 44.42C51.5944 44.29 51.7344 44.21 51.8644 44.25C51.9944 44.29 52.0744 44.43 52.0344 44.56L51.3244 46.965C51.2944 47.075 51.1944 47.145 51.0844 47.145ZM32.165 42.79C32.165 42.79 32.115 42.79 32.09 42.78C31.96 42.74 31.885 42.595 31.93 42.465C32.18 41.685 32.425 40.89 32.67 40.08C32.71 39.95 32.85 39.875 32.98 39.915C33.11 39.955 33.185 40.095 33.145 40.225C32.9 41.04 32.65 41.835 32.4 42.62C32.365 42.725 32.27 42.795 32.16 42.795L32.165 42.79ZM52.5044 42.335C52.5044 42.335 52.4594 42.335 52.4344 42.325C52.3044 42.285 52.2244 42.145 52.2644 42.015L52.7944 40.215L52.5544 39.945C52.4644 39.84 52.4744 39.685 52.5744 39.59C52.6744 39.5 52.8344 39.505 52.9294 39.61L53.2594 39.985C53.3144 40.05 53.3344 40.14 53.3094 40.22L52.7394 42.155C52.7094 42.265 52.6094 42.335 52.4994 42.335H52.5044ZM51.0894 38.155C51.0194 38.155 50.9494 38.125 50.8994 38.07L49.2445 36.195C49.1545 36.09 49.1645 35.935 49.2645 35.84C49.3645 35.75 49.5245 35.755 49.6195 35.86L51.2744 37.735C51.3644 37.84 51.3544 37.995 51.2544 38.09C51.2094 38.13 51.1494 38.15 51.0894 38.15V38.155ZM33.615 38C33.615 38 33.57 38 33.545 37.99C33.41 37.95 33.335 37.815 33.375 37.68C33.6 36.885 33.8249 36.085 34.0399 35.275C34.0749 35.14 34.2099 35.06 34.3449 35.095C34.4799 35.13 34.5599 35.265 34.5249 35.4C34.3099 36.215 34.0849 37.02 33.8599 37.815C33.8299 37.925 33.7299 37.995 33.62 37.995L33.615 38ZM47.0746 35.955C47.0746 35.955 47.0646 35.955 47.0596 35.955C46.3096 35.905 45.4646 35.815 44.5546 35.685C44.4196 35.665 44.3246 35.54 44.3446 35.4C44.3646 35.26 44.4946 35.17 44.6296 35.19C45.5296 35.32 46.3596 35.405 47.0996 35.455C47.2395 35.465 47.3395 35.585 47.3345 35.72C47.3245 35.85 47.2146 35.955 47.0846 35.955H47.0746ZM42.1197 35.275C42.1197 35.275 42.0897 35.275 42.0747 35.275C41.2897 35.125 40.4648 34.95 39.6148 34.76C39.4798 34.73 39.3948 34.595 39.4248 34.46C39.4548 34.325 39.5898 34.24 39.7248 34.27C40.5647 34.46 41.3897 34.63 42.1647 34.78C42.2997 34.805 42.3897 34.935 42.3647 35.07C42.3397 35.19 42.2347 35.275 42.1197 35.275ZM37.2348 34.175C37.2348 34.175 37.1948 34.175 37.1748 34.165C35.7249 33.795 34.7549 33.51 34.7449 33.51C34.6149 33.47 34.5349 33.33 34.5749 33.2C34.6149 33.07 34.7499 32.995 34.8849 33.03C34.8949 33.03 35.8549 33.315 37.2948 33.68C37.4298 33.715 37.5098 33.85 37.4748 33.985C37.4448 34.1 37.3448 34.175 37.2348 34.175ZM46.3096 41.255C46.3096 41.255 46.2796 41.255 46.2646 41.255L45.3196 41.08C45.1846 41.055 45.0946 40.925 45.1196 40.79C45.1446 40.655 45.2746 40.565 45.4096 40.59L46.3546 40.765C46.4896 40.79 46.5796 40.92 46.5546 41.055C46.5346 41.175 46.4296 41.26 46.3096 41.26V41.255ZM43.8896 40.805C43.8896 40.805 43.8597 40.805 43.8447 40.805L42.3697 40.53C42.2347 40.505 42.1447 40.375 42.1697 40.24C42.1947 40.105 42.3247 40.015 42.4597 40.04L43.9347 40.315C44.0696 40.34 44.1596 40.47 44.1346 40.605C44.1146 40.725 44.0096 40.81 43.8896 40.81V40.805ZM40.9397 40.255C40.9397 40.255 40.9097 40.255 40.8947 40.255L39.4198 39.98C39.2848 39.955 39.1948 39.825 39.2198 39.69C39.2448 39.555 39.3748 39.465 39.5098 39.49L40.9847 39.765C41.1197 39.79 41.2097 39.92 41.1847 40.055C41.1647 40.175 41.0597 40.26 40.9397 40.26V40.255ZM37.9898 39.705C37.9898 39.705 37.9598 39.705 37.9448 39.705L36.4699 39.43C36.3349 39.405 36.2449 39.275 36.2699 39.14C36.2949 39.005 36.4249 38.915 36.5599 38.94L38.0348 39.215C38.1698 39.24 38.2598 39.37 38.2348 39.505C38.2148 39.625 38.1098 39.71 37.9898 39.71V39.705ZM45.1546 45.82C45.1546 45.82 45.1246 45.82 45.1096 45.82L44.3396 45.675C44.2046 45.65 44.1146 45.52 44.1396 45.385C44.1646 45.25 44.2946 45.16 44.4296 45.185L45.1996 45.33C45.3346 45.355 45.4246 45.485 45.3996 45.62C45.3746 45.74 45.2746 45.825 45.1546 45.825V45.82ZM42.9097 45.395C42.9097 45.395 42.8797 45.395 42.8647 45.395L41.3897 45.115C41.2547 45.09 41.1647 44.96 41.1897 44.825C41.2147 44.69 41.3447 44.6 41.4797 44.625L42.9547 44.905C43.0897 44.93 43.1797 45.06 43.1547 45.195C43.1297 45.315 43.0297 45.4 42.9097 45.4V45.395ZM39.9648 44.835C39.9648 44.835 39.9348 44.835 39.9198 44.835L38.4448 44.555C38.3098 44.53 38.2198 44.4 38.2448 44.265C38.2698 44.13 38.3998 44.04 38.5348 44.065L40.0098 44.345C40.1448 44.37 40.2348 44.5 40.2098 44.635C40.1848 44.755 40.0848 44.84 39.9648 44.84V44.835ZM37.0199 44.275C37.0199 44.275 36.9899 44.275 36.9749 44.275L35.4999 43.995C35.3649 43.97 35.2749 43.84 35.2999 43.705C35.3249 43.57 35.4549 43.48 35.5899 43.505L37.0649 43.785C37.1998 43.81 37.2898 43.94 37.2648 44.075C37.2398 44.195 37.1398 44.28 37.0199 44.28V44.275ZM37.8898 51.275C37.8898 51.275 37.8598 51.275 37.8448 51.275L36.3699 51C36.2349 50.975 36.1449 50.845 36.1699 50.71C36.1949 50.575 36.3299 50.485 36.4599 50.51L37.9348 50.785C38.0698 50.81 38.1598 50.94 38.1348 51.075C38.1148 51.195 38.0098 51.28 37.8898 51.28V51.275ZM34.9399 50.72C34.9399 50.72 34.9099 50.72 34.8949 50.72L33.42 50.445C33.285 50.42 33.195 50.29 33.22 50.155C33.245 50.02 33.38 49.93 33.51 49.955L34.9849 50.23C35.1199 50.255 35.2099 50.385 35.1849 50.52C35.1649 50.64 35.0599 50.725 34.9399 50.725V50.72ZM46.0446 52.975C46.0446 52.975 46.0146 52.975 45.9946 52.975L44.5246 52.69C44.3896 52.665 44.2996 52.53 44.3246 52.395C44.3496 52.26 44.4846 52.175 44.6196 52.195L46.0896 52.48C46.2246 52.505 46.3146 52.64 46.2896 52.775C46.2646 52.895 46.1596 52.975 46.0446 52.975ZM43.0997 52.4C43.0997 52.4 43.0697 52.4 43.0497 52.4L41.5797 52.115C41.4447 52.09 41.3547 51.955 41.3797 51.82C41.4047 51.685 41.5397 51.6 41.6747 51.62L43.1447 51.905C43.2797 51.93 43.3697 52.065 43.3447 52.2C43.3197 52.32 43.2147 52.4 43.0997 52.4Z\" fill=\"black\"/>%0D%0A<path d=\"M53.3047 40.05C52.5347 38.205 51.2247 36.68 49.5147 35.64L49.2897 35.505C49.2147 35.46 49.1197 35.455 49.0397 35.5C48.9597 35.54 48.9097 35.62 48.9097 35.71C48.9097 35.735 48.7947 38.185 47.8497 39.21C47.7897 39.275 47.7697 39.365 47.7947 39.445C47.8197 39.53 47.8797 39.595 47.9647 39.62C48.0997 39.66 50.8447 40.465 52.4547 40.465C52.7247 40.465 52.9597 40.445 53.1447 40.39C53.2147 40.37 53.2697 40.325 53.3047 40.26C53.3347 40.195 53.3397 40.12 53.3097 40.055L53.3047 40.05Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M78.2888 85.9H18.7456C18.6056 85.9 18.4956 85.79 18.4956 85.65C18.4956 85.51 18.6056 85.4 18.7456 85.4H78.2888C78.4288 85.4 78.5388 85.51 78.5388 85.65C78.5388 85.79 78.4288 85.9 78.2888 85.9Z\" fill=\"black\"/>%0D%0A<path d=\"M50.9396 51.85L46.9848 56.125C46.5098 56.635 45.8448 56.925 45.1498 56.925H19.7456C19.4106 56.925 19.1706 57.245 19.2656 57.565L27.6103 85.645H68.2641L77.7538 51.675C77.8438 51.355 77.6039 51.04 77.2739 51.04H52.7796C52.0846 51.04 51.4196 51.33 50.9446 51.84L50.9396 51.85Z\" fill=\"white\"/>%0D%0A<path d=\"M68.2592 85.9H27.6054C27.4954 85.9 27.3954 85.825 27.3654 85.72L19.0207 57.64C18.9507 57.41 18.9957 57.17 19.1407 56.98C19.2857 56.79 19.5007 56.68 19.7407 56.68H45.1449C45.7699 56.68 46.3699 56.415 46.7949 55.96L50.7547 51.685C51.2747 51.125 52.0097 50.805 52.7747 50.805H77.269C77.5039 50.805 77.7239 50.915 77.8689 51.1C78.0139 51.285 78.0589 51.525 77.9939 51.755L68.5042 85.725C68.4742 85.835 68.3742 85.91 68.2642 85.91L68.2592 85.9ZM27.7904 85.4H68.0692L77.5089 51.615C77.5289 51.54 77.514 51.46 77.469 51.395C77.419 51.33 77.3489 51.295 77.269 51.295H52.7747C52.1497 51.295 51.5497 51.56 51.1247 52.015L47.1648 56.29C46.6449 56.85 45.9099 57.17 45.1449 57.17H19.7407C19.6607 57.17 19.5907 57.205 19.5407 57.27C19.4957 57.335 19.4807 57.415 19.5007 57.49L27.7904 85.395V85.4Z\" fill=\"black\"/>%0D%0A<path d=\"M55.4401 74.565H51.4051C51.2651 74.565 51.1551 74.455 51.1551 74.315V72.025C51.1551 71.25 50.7251 70.55 50.0301 70.2C49.2801 69.825 48.4051 69.935 47.6251 70.515C47.2751 70.77 47.0701 71.205 47.0701 71.675V74.315C47.0701 74.455 46.9601 74.565 46.8201 74.565H42.7851C42.6451 74.565 42.5351 74.455 42.5351 74.315V66.15C42.5351 66.07 42.5701 66 42.6351 65.95L48.9601 61.12C49.0501 61.05 49.1751 61.05 49.2651 61.12L55.5901 65.95C55.6501 65.995 55.6901 66.07 55.6901 66.15V74.315C55.6901 74.455 55.5801 74.565 55.4401 74.565ZM51.6551 74.065H55.1901V66.275L49.1151 61.635L43.0401 66.275V74.065H46.5751V71.675C46.5751 71.045 46.8601 70.46 47.3351 70.11C48.2751 69.415 49.3401 69.285 50.2601 69.755C51.1201 70.19 51.6601 71.06 51.6601 72.025V74.065H51.6551ZM55.7551 75.755C55.7551 75.615 55.6451 75.505 55.5051 75.505H42.7251C42.5851 75.505 42.4751 75.615 42.4751 75.755C42.4751 75.895 42.5851 76.005 42.7251 76.005H55.5051C55.6451 76.005 55.7551 75.895 55.7551 75.755Z\" fill=\"black\"/>%0D%0A<path d=\"M73.3638 84.85V82.285C73.3638 81.99 73.1238 81.755 72.8288 81.755H59.4742C59.1792 81.76 58.9442 82 58.9442 82.295V84.86C58.9442 85.155 59.1842 85.39 59.4792 85.39H72.8338C73.1288 85.385 73.3638 85.145 73.3638 84.85ZM73.9738 84.735V82.42C73.9738 82.08 74.2887 81.825 74.6237 81.9L80.0286 83.15C80.5886 83.28 80.5736 84.08 80.0136 84.19L74.6087 85.26C74.2787 85.325 73.9738 85.075 73.9738 84.74V84.735ZM57.5942 85.39L40.0398 85.4C39.7448 85.4 39.5098 85.16 39.5098 84.87C39.5098 83.16 40.8947 81.77 42.6047 81.77L57.5942 81.76C57.8892 81.76 58.1242 82 58.1242 82.29V84.855C58.1242 85.15 57.8892 85.385 57.5942 85.385V85.39Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M43.0249 83.035C43.0249 81.5 44.2749 80.245 45.8099 80.245H55.8499V80.74H45.8099C44.5499 80.75 43.5249 81.775 43.5249 83.035H43.0249Z\" fill=\"black\"/>%0D%0A<path d=\"M80.0286 83.15L77.3286 82.525V84.72L80.0136 84.19C80.5736 84.08 80.5886 83.28 80.0286 83.15Z\" fill=\"black\"/>%0D%0A<path d=\"M6.90088 26.615C6.90088 26.615 15.1306 21.25 16.8156 19.39L21.6854 20.35C21.6854 20.35 26.8853 28.71 31.5851 30.19C31.5851 30.19 24.4804 35.25 20.4955 40.155C20.4955 40.155 9.35581 33.715 6.90088 26.61V26.615Z\" fill=\"white\"/>%0D%0A<path d=\"M20.4957 40.41C20.4507 40.41 20.4107 40.4 20.3707 40.375C20.3707 40.375 19.9757 40.15 19.3257 39.73C19.2107 39.655 19.1757 39.5 19.2507 39.385C19.3257 39.27 19.4807 39.235 19.5957 39.31C19.9757 39.555 20.2657 39.73 20.4407 39.835C20.6657 39.56 20.9057 39.285 21.1457 39.01C21.2357 38.905 21.3957 38.9 21.5007 38.99C21.6056 39.08 21.6156 39.24 21.5207 39.345C21.2307 39.67 20.9557 39.995 20.6907 40.32C20.6407 40.38 20.5707 40.41 20.4957 40.41ZM17.3758 38.38C17.3258 38.38 17.2758 38.365 17.2308 38.335C16.5358 37.845 15.8558 37.345 15.2058 36.84C15.0958 36.755 15.0758 36.6 15.1608 36.49C15.2458 36.38 15.4008 36.36 15.5108 36.445C16.1508 36.945 16.8258 37.44 17.5158 37.925C17.6308 38.005 17.6558 38.16 17.5758 38.275C17.5258 38.345 17.4508 38.38 17.3708 38.38H17.3758ZM23.0556 37.615C22.9906 37.615 22.9256 37.59 22.8806 37.54C22.7856 37.44 22.7856 37.285 22.8806 37.185C23.4406 36.625 24.0556 36.045 24.7056 35.455C24.8056 35.365 24.9655 35.37 25.0605 35.47C25.1555 35.57 25.1455 35.73 25.0455 35.825C24.4006 36.41 23.7956 36.985 23.2356 37.54C23.1856 37.59 23.1256 37.615 23.0606 37.615H23.0556ZM13.4259 35.305C13.3659 35.305 13.3109 35.285 13.2609 35.245C12.6059 34.68 11.9859 34.105 11.4109 33.535C11.311 33.44 11.311 33.28 11.4109 33.18C11.5059 33.08 11.6659 33.08 11.7659 33.18C12.3309 33.74 12.9459 34.305 13.5909 34.865C13.6959 34.955 13.7059 35.115 13.6159 35.22C13.5659 35.275 13.4959 35.305 13.4259 35.305ZM26.7555 34.245C26.6855 34.245 26.6155 34.215 26.5655 34.155C26.4755 34.05 26.4905 33.89 26.5955 33.8C27.2205 33.27 27.8705 32.735 28.5354 32.205C28.6404 32.12 28.8004 32.135 28.8854 32.245C28.9704 32.355 28.9554 32.51 28.8454 32.595C28.1855 33.12 27.5355 33.655 26.9155 34.18C26.8705 34.22 26.8105 34.24 26.7555 34.24V34.245ZM9.88599 31.775C9.816 31.775 9.746 31.745 9.696 31.685C9.12102 31.005 8.60603 30.325 8.17105 29.665C8.09605 29.55 8.12605 29.395 8.24104 29.32C8.35604 29.245 8.51103 29.275 8.58603 29.39C9.01102 30.035 9.51101 30.7 10.076 31.36C10.166 31.465 10.151 31.625 10.046 31.71C10.001 31.75 9.94099 31.77 9.88599 31.77V31.775ZM30.6704 31.12C30.5954 31.12 30.5204 31.085 30.4704 31.02C30.3854 30.91 30.4104 30.755 30.5204 30.67C30.7354 30.51 30.9154 30.375 31.0604 30.27C30.7854 30.16 30.5054 30.03 30.2204 29.875C30.1004 29.81 30.0554 29.655 30.1204 29.535C30.1854 29.415 30.3404 29.37 30.4604 29.435C30.8754 29.66 31.2804 29.835 31.6653 29.955C31.7553 29.985 31.8203 30.06 31.8353 30.155C31.8503 30.25 31.8103 30.345 31.7353 30.4C31.7353 30.4 31.3954 30.645 30.8204 31.075C30.7754 31.11 30.7204 31.125 30.6704 31.125V31.12ZM28.2905 28.475C28.2355 28.475 28.1755 28.455 28.1305 28.415C27.5355 27.915 26.9155 27.335 26.2905 26.68C26.1955 26.58 26.2005 26.42 26.3005 26.325C26.4005 26.23 26.5605 26.235 26.6555 26.335C27.2705 26.975 27.8755 27.545 28.4554 28.03C28.5604 28.12 28.5754 28.275 28.4854 28.38C28.4354 28.44 28.3654 28.47 28.2955 28.47L28.2905 28.475ZM7.18607 27.585C7.09108 27.585 6.99608 27.53 6.95608 27.435C6.85108 27.19 6.75609 26.945 6.67109 26.7C6.63109 26.59 6.67109 26.47 6.77109 26.41C6.77109 26.41 7.63606 25.845 8.86102 25.02C8.97602 24.945 9.13102 24.975 9.20601 25.09C9.28101 25.205 9.25101 25.36 9.13602 25.435C8.22604 26.05 7.51606 26.515 7.20607 26.72C7.27107 26.895 7.34107 27.07 7.41607 27.24C7.47107 27.365 7.41607 27.515 7.28607 27.57C7.25607 27.585 7.22107 27.59 7.18607 27.59V27.585ZM24.8106 24.885C24.7406 24.885 24.6656 24.855 24.6156 24.795C24.1006 24.175 23.5806 23.505 23.0706 22.805C22.9906 22.695 23.0106 22.535 23.1256 22.455C23.2356 22.375 23.3906 22.395 23.4756 22.51C23.9806 23.2 24.4956 23.86 25.0055 24.475C25.0955 24.58 25.0805 24.74 24.9705 24.825C24.9255 24.865 24.8656 24.88 24.8106 24.88V24.885ZM11.066 24.065C10.986 24.065 10.911 24.025 10.861 23.955C10.781 23.84 10.811 23.685 10.926 23.605C11.6009 23.14 12.2959 22.65 12.9709 22.165C13.0809 22.085 13.2409 22.11 13.3209 22.22C13.4009 22.33 13.3759 22.49 13.2659 22.57C12.5909 23.055 11.8909 23.55 11.216 24.015C11.171 24.045 11.121 24.06 11.076 24.06L11.066 24.065ZM15.1208 21.125C15.0458 21.125 14.9758 21.09 14.9258 21.03C14.8408 20.92 14.8608 20.765 14.9708 20.68C15.7708 20.055 16.3308 19.565 16.6358 19.23C16.6958 19.165 16.7858 19.135 16.8708 19.155L17.1158 19.205C17.2508 19.23 17.3408 19.365 17.3108 19.5C17.2808 19.635 17.1508 19.725 17.0158 19.695L16.9058 19.675C16.5658 20.025 16.0208 20.495 15.2758 21.08C15.2308 21.115 15.1758 21.135 15.1208 21.135V21.125ZM21.8456 20.85C21.7656 20.85 21.6856 20.81 21.6356 20.735L21.5357 20.58L19.4707 20.17C19.3357 20.145 19.2457 20.01 19.2757 19.875C19.3007 19.74 19.4357 19.65 19.5707 19.68L21.7406 20.11C21.8106 20.125 21.8656 20.165 21.9056 20.225L22.0606 20.465C22.1356 20.58 22.1006 20.735 21.9856 20.81C21.9456 20.835 21.8956 20.85 21.8506 20.85H21.8456ZM12.3159 29.575C12.2409 29.575 12.1659 29.54 12.1159 29.475C12.0309 29.365 12.0559 29.205 12.1659 29.125L13.3709 28.23C13.4809 28.15 13.6409 28.17 13.7209 28.28C13.8059 28.39 13.7809 28.55 13.6709 28.63L12.4659 29.525C12.4209 29.56 12.3709 29.575 12.3159 29.575ZM14.7259 27.785C14.6509 27.785 14.5759 27.75 14.5259 27.685C14.4409 27.575 14.4659 27.415 14.5759 27.335L15.7808 26.44C15.8908 26.36 16.0508 26.38 16.1308 26.49C16.2158 26.6 16.1908 26.76 16.0808 26.84L14.8758 27.735C14.8308 27.77 14.7809 27.785 14.7259 27.785ZM17.1358 25.995C17.0608 25.995 16.9858 25.96 16.9358 25.895C16.8508 25.785 16.8758 25.63 16.9858 25.545L18.1907 24.65C18.3007 24.57 18.4607 24.59 18.5407 24.7C18.6257 24.81 18.6007 24.965 18.4907 25.05L17.2858 25.945C17.2408 25.98 17.1908 25.995 17.1358 25.995ZM16.3558 33.41C16.2808 33.41 16.2108 33.38 16.1608 33.315C16.0758 33.21 16.0908 33.05 16.2008 32.965L17.3708 32.025C17.4758 31.94 17.6358 31.955 17.7208 32.065C17.8058 32.17 17.7908 32.33 17.6808 32.415L16.5108 33.355C16.4658 33.39 16.4108 33.41 16.3558 33.41ZM18.6907 31.53C18.6157 31.53 18.5457 31.5 18.4957 31.435C18.4107 31.33 18.4257 31.17 18.5357 31.085L19.7057 30.145C19.8107 30.06 19.9707 30.075 20.0557 30.185C20.1407 30.29 20.1257 30.45 20.0157 30.535L18.8457 31.475C18.8007 31.51 18.7457 31.53 18.6907 31.53ZM21.0257 29.65C20.9507 29.65 20.8807 29.62 20.8307 29.555C20.7457 29.45 20.7607 29.29 20.8707 29.205L21.2157 28.925C21.3207 28.84 21.4807 28.855 21.5656 28.965C21.6506 29.07 21.6356 29.23 21.5257 29.315L21.1807 29.595C21.1357 29.63 21.0807 29.65 21.0257 29.65Z\" fill=\"black\"/>%0D%0A<path d=\"M21.7308 20.11L16.8608 19.15C16.7558 19.13 16.6508 19.175 16.5958 19.27C16.5408 19.36 16.5508 19.48 16.6208 19.56L18.6458 21.91C18.6908 21.96 18.7508 21.99 18.8208 21.995C18.8258 21.995 18.8308 21.995 18.8358 21.995C18.8958 21.995 18.9558 21.975 19.0008 21.93C19.0108 21.925 19.8208 21.21 21.7558 20.595C21.8658 20.56 21.9358 20.455 21.9308 20.345C21.9258 20.23 21.8408 20.135 21.7308 20.115V20.11Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M56.2847 35.76C56.2847 35.76 67.4593 20.42 68.4443 12.83C68.4443 12.83 83.0589 23.72 87.9637 24.295C87.9637 24.295 75.4441 41.105 70.7092 49.35C70.7092 49.35 66.6044 41.54 56.2847 35.76Z\" fill=\"white\"/>%0D%0A<path d=\"M70.2791 48.865C70.1941 48.865 70.1141 48.825 70.0691 48.745C69.7891 48.3 69.3191 47.585 68.6591 46.705C68.5741 46.595 68.5991 46.44 68.7091 46.355C68.8191 46.275 68.9741 46.295 69.0591 46.405C69.7341 47.295 70.2141 48.025 70.4941 48.48C70.5691 48.595 70.5291 48.75 70.4141 48.825C70.3741 48.85 70.3291 48.865 70.2841 48.865H70.2791ZM71.554 48.17C71.509 48.17 71.464 48.16 71.424 48.135C71.304 48.065 71.269 47.91 71.339 47.79C71.749 47.115 72.194 46.405 72.669 45.66C72.744 45.545 72.899 45.51 73.014 45.585C73.129 45.66 73.164 45.815 73.089 45.93C72.619 46.67 72.174 47.38 71.769 48.05C71.724 48.125 71.639 48.17 71.554 48.17ZM67.2792 44.865C67.2092 44.865 67.1392 44.835 67.0892 44.78C66.5542 44.165 65.9842 43.555 65.3942 42.96C65.2942 42.86 65.2992 42.705 65.3942 42.605C65.4942 42.505 65.6492 42.51 65.7492 42.605C66.3442 43.205 66.9192 43.825 67.4641 44.445C67.5541 44.55 67.5441 44.705 67.4391 44.8C67.3942 44.84 67.3342 44.86 67.2742 44.86L67.2792 44.865ZM74.2389 43.945C74.1939 43.945 74.1439 43.93 74.0989 43.905C73.984 43.83 73.954 43.675 74.029 43.56C74.4789 42.88 74.9439 42.18 75.4189 41.475C75.4989 41.36 75.6539 41.33 75.7639 41.41C75.8789 41.485 75.9089 41.64 75.8289 41.755C75.3539 42.46 74.8889 43.155 74.4389 43.835C74.3889 43.91 74.3089 43.945 74.229 43.945H74.2389ZM63.7593 41.32C63.6993 41.32 63.6393 41.3 63.5943 41.255C62.9793 40.71 62.3393 40.17 61.6893 39.66C61.5793 39.575 61.5643 39.415 61.6493 39.31C61.7343 39.2 61.8943 39.185 61.9993 39.27C62.6543 39.79 63.3043 40.33 63.9293 40.885C64.0342 40.975 64.0392 41.135 63.9493 41.24C63.8993 41.295 63.8293 41.325 63.7643 41.325L63.7593 41.32ZM77.0439 39.795C76.9939 39.795 76.9439 39.78 76.9039 39.75C76.7889 39.67 76.7589 39.515 76.8389 39.4C77.3089 38.71 77.7888 38.025 78.2638 37.34C78.3438 37.225 78.4988 37.2 78.6138 37.28C78.7288 37.36 78.7538 37.515 78.6738 37.63C78.1988 38.315 77.7188 39 77.2489 39.69C77.1989 39.76 77.1239 39.8 77.0439 39.8V39.795ZM59.8344 38.23C59.7844 38.23 59.7344 38.215 59.6894 38.185C59.0094 37.71 58.3094 37.255 57.6094 36.83C57.4894 36.76 57.4544 36.605 57.5244 36.485C57.5944 36.365 57.7494 36.33 57.8694 36.4C58.5794 36.835 59.2844 37.295 59.9744 37.775C60.0894 37.855 60.1144 38.01 60.0344 38.125C59.9844 38.195 59.9094 38.23 59.8294 38.23H59.8344ZM56.2845 36.01C56.2345 36.01 56.1795 35.995 56.1395 35.96C56.0295 35.88 56.0045 35.72 56.0845 35.61C56.0845 35.61 56.6445 34.84 57.5244 33.56C57.6044 33.445 57.7594 33.415 57.8744 33.495C57.9894 33.575 58.0194 33.73 57.9394 33.845C57.0545 35.13 56.4895 35.905 56.4895 35.905C56.4395 35.97 56.3645 36.01 56.2895 36.01H56.2845ZM79.9038 35.685C79.8538 35.685 79.8038 35.67 79.7588 35.64C79.6438 35.56 79.6188 35.405 79.6988 35.29C80.1888 34.595 80.6738 33.91 81.1487 33.245C81.2287 33.135 81.3837 33.105 81.4987 33.185C81.6087 33.265 81.6387 33.42 81.5587 33.535C81.0837 34.2 80.5988 34.885 80.1138 35.575C80.0638 35.645 79.9888 35.68 79.9088 35.68L79.9038 35.685ZM59.1344 31.875C59.0844 31.875 59.0394 31.86 58.9944 31.835C58.8794 31.76 58.8494 31.605 58.9244 31.49C59.3544 30.845 59.8144 30.14 60.2894 29.395C60.3644 29.28 60.5193 29.245 60.6343 29.32C60.7493 29.395 60.7843 29.55 60.7093 29.665C60.2294 30.415 59.7694 31.12 59.3394 31.765C59.2894 31.84 59.2094 31.875 59.1294 31.875H59.1344ZM82.8087 31.605C82.7587 31.605 82.7087 31.59 82.6637 31.56C82.5537 31.48 82.5237 31.325 82.6087 31.21C83.1237 30.495 83.6137 29.815 84.0737 29.18C84.1537 29.065 84.3137 29.045 84.4236 29.125C84.5336 29.205 84.5586 29.36 84.4786 29.475C84.0187 30.11 83.5237 30.79 83.0137 31.505C82.9637 31.575 82.8887 31.61 82.8087 31.61V31.605ZM61.8293 27.655C61.7843 27.655 61.7393 27.645 61.6993 27.62C61.5793 27.55 61.5443 27.395 61.6143 27.275C62.0393 26.58 62.4743 25.86 62.8993 25.13C62.9693 25.01 63.1243 24.97 63.2393 25.04C63.3593 25.11 63.3993 25.265 63.3293 25.38C62.8993 26.115 62.4693 26.835 62.0393 27.535C61.9943 27.61 61.9093 27.655 61.8243 27.655H61.8293ZM85.7486 27.55C85.6986 27.55 85.6436 27.535 85.6036 27.5C85.4936 27.42 85.4686 27.26 85.5486 27.15C86.1536 26.325 86.6586 25.635 87.0336 25.13C87.1186 25.02 87.2736 24.995 87.3836 25.075C87.4936 25.155 87.5186 25.315 87.4386 25.425C87.0636 25.935 86.5586 26.62 85.9536 27.445C85.9036 27.51 85.8286 27.55 85.7536 27.55H85.7486ZM86.7136 24.25C86.6886 24.25 86.6636 24.25 86.6386 24.24C85.9736 24.025 85.1786 23.7 84.2887 23.275C84.1637 23.215 84.1137 23.065 84.1687 22.94C84.2236 22.815 84.3786 22.765 84.5036 22.82C85.3736 23.235 86.1436 23.55 86.7886 23.76C86.9186 23.8 86.9936 23.945 86.9486 24.075C86.9136 24.18 86.8186 24.25 86.7086 24.25H86.7136ZM64.3492 23.325C64.3092 23.325 64.2692 23.315 64.2292 23.295C64.1092 23.23 64.0642 23.075 64.1292 22.955C64.5492 22.19 64.9392 21.445 65.2892 20.745C65.3492 20.62 65.4992 20.57 65.6242 20.635C65.7492 20.695 65.7992 20.845 65.7342 20.97C65.3792 21.675 64.9842 22.425 64.5642 23.195C64.5192 23.28 64.4342 23.325 64.3442 23.325H64.3492ZM82.1737 22.145C82.1337 22.145 82.0887 22.135 82.0537 22.115C81.3737 21.74 80.6438 21.315 79.8788 20.855C79.7588 20.785 79.7238 20.63 79.7938 20.51C79.8638 20.39 80.0188 20.355 80.1388 20.425C80.8987 20.88 81.6237 21.3 82.2987 21.675C82.4187 21.74 82.4637 21.895 82.3987 22.015C82.3537 22.1 82.2687 22.145 82.1787 22.145H82.1737ZM77.8788 19.575C77.8338 19.575 77.7888 19.56 77.7438 19.535C77.0289 19.08 76.3239 18.625 75.6389 18.17C75.5239 18.095 75.4939 17.94 75.5689 17.825C75.6439 17.71 75.7989 17.68 75.9139 17.755C76.5989 18.205 77.2989 18.665 78.0088 19.115C78.1238 19.19 78.1588 19.345 78.0838 19.46C78.0388 19.535 77.9538 19.575 77.8738 19.575H77.8788ZM66.5892 18.85C66.5542 18.85 66.5192 18.845 66.4892 18.83C66.3642 18.775 66.3042 18.625 66.3642 18.5C66.7242 17.685 67.0392 16.91 67.2992 16.2C67.3442 16.07 67.4891 16.005 67.6191 16.05C67.7491 16.095 67.8141 16.24 67.7691 16.37C67.5091 17.095 67.1892 17.88 66.8192 18.705C66.7792 18.8 66.6842 18.855 66.5892 18.855V18.85ZM73.699 16.81C73.649 16.81 73.599 16.795 73.559 16.765C72.819 16.26 72.124 15.775 71.499 15.335C71.384 15.255 71.359 15.1 71.439 14.985C71.519 14.87 71.674 14.845 71.789 14.925C72.414 15.365 73.104 15.845 73.844 16.355C73.959 16.435 73.989 16.59 73.909 16.7C73.859 16.77 73.784 16.81 73.704 16.81H73.699ZM68.2491 14.135C68.2491 14.135 68.2141 14.135 68.1941 14.13C68.0591 14.1 67.9741 13.965 68.0041 13.83C68.0841 13.47 68.1491 13.12 68.1891 12.795C68.1991 12.705 68.2591 12.63 68.3391 12.595C68.4191 12.56 68.5141 12.57 68.5841 12.625C68.5841 12.625 69.0091 12.945 69.7391 13.47C69.8491 13.55 69.8741 13.705 69.7941 13.82C69.7141 13.93 69.5591 13.955 69.4441 13.875C69.0941 13.62 68.8141 13.415 68.6191 13.27C68.5841 13.485 68.5391 13.71 68.4891 13.935C68.4641 14.05 68.3591 14.13 68.2441 14.13L68.2491 14.135ZM78.7638 28.24C78.7138 28.24 78.6588 28.225 78.6138 28.19C78.3988 28.03 77.9788 27.755 77.3739 27.365C77.2589 27.29 77.2239 27.135 77.2989 27.02C77.3739 26.905 77.5288 26.87 77.6438 26.945C78.2588 27.34 78.6888 27.625 78.9138 27.79C79.0238 27.87 79.0488 28.03 78.9688 28.14C78.9188 28.205 78.8438 28.24 78.7688 28.24H78.7638ZM76.2389 26.605C76.1939 26.605 76.1489 26.595 76.1089 26.565C75.7039 26.31 75.2689 26.045 74.8339 25.775C74.7189 25.705 74.6789 25.55 74.7539 25.43C74.8289 25.31 74.9789 25.28 75.0989 25.35C75.5389 25.62 75.9689 25.89 76.3789 26.145C76.4939 26.22 76.5339 26.37 76.4589 26.49C76.4139 26.565 76.3289 26.61 76.2489 26.61L76.2389 26.605ZM73.679 25.025C73.634 25.025 73.589 25.015 73.549 24.99L72.264 24.205C72.144 24.135 72.109 23.98 72.179 23.86C72.249 23.74 72.404 23.705 72.524 23.775L73.809 24.56C73.929 24.63 73.964 24.785 73.894 24.905C73.849 24.98 73.764 25.025 73.679 25.025ZM71.109 23.46C71.064 23.46 71.019 23.45 70.979 23.425L69.6891 22.645C69.5691 22.575 69.5341 22.42 69.6041 22.3C69.6741 22.18 69.8291 22.145 69.9491 22.215L71.239 22.995C71.359 23.065 71.394 23.22 71.324 23.34C71.279 23.415 71.194 23.46 71.109 23.46ZM70.974 29.76C70.929 29.76 70.884 29.75 70.844 29.72L69.5741 28.925C69.4591 28.85 69.4191 28.695 69.4941 28.58C69.5691 28.46 69.7241 28.43 69.8391 28.5L71.109 29.295C71.224 29.37 71.264 29.525 71.189 29.64C71.144 29.715 71.059 29.76 70.979 29.76H70.974ZM68.4291 28.17C68.3841 28.17 68.3391 28.16 68.2991 28.13L67.0292 27.335C66.9142 27.26 66.8742 27.105 66.9492 26.99C67.0242 26.875 67.1792 26.84 67.2941 26.91L68.5641 27.705C68.6791 27.78 68.7191 27.935 68.6441 28.05C68.5991 28.125 68.5141 28.17 68.4341 28.17H68.4291ZM72.099 38.565C72.029 38.565 71.954 38.535 71.909 38.475C71.649 38.16 71.304 37.805 70.889 37.42C70.789 37.325 70.784 37.17 70.874 37.065C70.964 36.96 71.124 36.96 71.229 37.05C71.664 37.45 72.019 37.82 72.294 38.155C72.384 38.26 72.369 38.42 72.259 38.505C72.214 38.545 72.154 38.565 72.099 38.565ZM69.9191 36.505C69.8641 36.505 69.8091 36.485 69.7591 36.45C69.3841 36.14 68.9891 35.83 68.5841 35.525C68.4741 35.44 68.4541 35.285 68.5391 35.175C68.6241 35.065 68.7791 35.045 68.8891 35.13C69.2941 35.44 69.6941 35.755 70.0791 36.065C70.1841 36.15 70.1991 36.31 70.1141 36.415C70.0641 36.475 69.9941 36.505 69.9191 36.505ZM67.5341 34.68C67.4841 34.68 67.4341 34.665 67.3891 34.635C66.9692 34.33 66.5542 34.04 66.1642 33.77C66.0492 33.69 66.0242 33.535 66.0992 33.42C66.1792 33.305 66.3342 33.275 66.4492 33.355C66.8392 33.625 67.2542 33.92 67.6791 34.225C67.7891 34.305 67.8191 34.46 67.7341 34.575C67.6841 34.645 67.6091 34.68 67.5291 34.68H67.5341ZM65.0642 32.97C65.0142 32.97 64.9692 32.955 64.9242 32.93C64.1642 32.425 63.6693 32.11 63.6693 32.11C63.5543 32.035 63.5193 31.88 63.5893 31.765C63.6643 31.65 63.8193 31.615 63.9343 31.685C63.9343 31.685 64.4342 32 65.2042 32.51C65.3192 32.585 65.3492 32.74 65.2742 32.855C65.2242 32.925 65.1492 32.965 65.0642 32.965V32.97Z\" fill=\"black\"/>%0D%0A<path d=\"M51.3748 32.205C51.3448 32.205 51.3198 32.205 51.2898 32.19C51.0298 32.095 50.5348 31.68 50.0548 31.155C49.9598 31.055 49.9698 30.895 50.0698 30.8C50.1698 30.705 50.3298 30.715 50.4248 30.815C50.9648 31.405 51.3648 31.68 51.4648 31.72C51.5948 31.765 51.6598 31.91 51.6148 32.04C51.5798 32.14 51.4798 32.205 51.3798 32.205H51.3748ZM49.3198 30.05C49.2398 30.05 49.1598 30.01 49.1098 29.935C48.8198 29.485 48.5798 29.02 48.3948 28.56C48.3448 28.43 48.4048 28.285 48.5348 28.235C48.6648 28.185 48.8098 28.245 48.8598 28.375C49.0298 28.805 49.2548 29.235 49.5298 29.66C49.6048 29.775 49.5698 29.93 49.4548 30.005C49.4148 30.03 49.3648 30.045 49.3198 30.045V30.05ZM48.2498 27.275C48.1248 27.275 48.0198 27.18 47.9998 27.055C47.9748 26.855 47.9648 26.65 47.9648 26.45C47.9648 26.125 47.9998 25.8 48.0648 25.48C48.0948 25.345 48.2248 25.26 48.3598 25.285C48.4948 25.315 48.5798 25.445 48.5548 25.58C48.4948 25.865 48.4648 26.155 48.4648 26.45C48.4648 26.63 48.4748 26.815 48.4948 26.995C48.5098 27.13 48.4148 27.255 48.2748 27.275C48.2648 27.275 48.2548 27.275 48.2448 27.275H48.2498ZM48.8398 24.385C48.7998 24.385 48.7548 24.375 48.7148 24.35C48.5948 24.28 48.5548 24.13 48.6198 24.01C48.7398 23.795 48.8798 23.585 49.0348 23.38C49.1998 23.16 49.3698 22.955 49.5348 22.76C49.6248 22.655 49.7848 22.645 49.8898 22.735C49.9948 22.825 50.0048 22.985 49.9148 23.09C49.7548 23.275 49.5948 23.47 49.4348 23.68C49.2948 23.87 49.1648 24.06 49.0548 24.255C49.0098 24.335 48.9248 24.38 48.8398 24.38V24.385ZM55.0298 23.64C54.8898 23.64 54.7798 23.53 54.7798 23.39C54.7798 23.25 54.8898 23.14 55.0298 23.14C55.3848 23.14 55.5948 22.94 55.5948 22.61C55.5948 22.555 55.5898 22.495 55.5748 22.43C55.5498 22.295 55.6398 22.165 55.7748 22.14C55.9048 22.115 56.0398 22.205 56.0648 22.34C56.0848 22.435 56.0898 22.525 56.0898 22.61C56.0898 23.22 55.6548 23.64 55.0298 23.64ZM53.7348 22.97C53.6648 22.97 53.5998 22.94 53.5498 22.885C53.3248 22.635 53.1348 22.33 52.9798 21.985C52.9098 21.83 52.8498 21.66 52.7948 21.48C52.7548 21.35 52.8298 21.21 52.9598 21.17C53.0948 21.13 53.2298 21.205 53.2698 21.335C53.3198 21.495 53.3748 21.645 53.4348 21.785C53.5648 22.08 53.7298 22.34 53.9198 22.55C54.0098 22.655 54.0048 22.81 53.8998 22.905C53.8498 22.95 53.7948 22.97 53.7348 22.97ZM50.8048 22.14C50.7298 22.14 50.6598 22.11 50.6098 22.045C50.5248 21.935 50.5398 21.78 50.6498 21.695C51.0848 21.35 51.5348 21.075 51.9848 20.885C52.1098 20.83 52.2598 20.885 52.3148 21.015C52.3698 21.14 52.3098 21.29 52.1848 21.345C51.7748 21.52 51.3648 21.77 50.9648 22.085C50.9198 22.12 50.8648 22.14 50.8098 22.14H50.8048ZM54.9648 21.45C54.9198 21.45 54.8698 21.435 54.8298 21.41C54.4648 21.18 54.0198 21.055 53.5348 21.05C53.3948 21.05 53.2848 20.935 53.2848 20.8C53.2848 20.66 53.3948 20.55 53.5348 20.55C54.1098 20.55 54.6498 20.705 55.0948 20.99C55.2098 21.065 55.2448 21.22 55.1698 21.335C55.1198 21.41 55.0398 21.45 54.9598 21.45H54.9648ZM52.8098 20.17C52.6698 20.17 52.5598 20.065 52.5598 19.925V19.91C52.5598 19.375 52.6398 18.855 52.7948 18.37C52.8348 18.24 52.9798 18.165 53.1098 18.205C53.2398 18.245 53.3148 18.39 53.2748 18.52C53.1348 18.96 53.0648 19.425 53.0648 19.91C53.0648 20.05 52.9548 20.165 52.8148 20.165L52.8098 20.17ZM53.7248 17.38C53.6698 17.38 53.6148 17.365 53.5698 17.325C53.4598 17.24 53.4398 17.085 53.5248 16.975C53.8398 16.57 54.2348 16.215 54.6898 15.915C54.8048 15.84 54.9598 15.87 55.0348 15.99C55.1098 16.105 55.0748 16.26 54.9598 16.335C54.5498 16.6 54.1998 16.92 53.9198 17.285C53.8698 17.35 53.7948 17.38 53.7248 17.38ZM56.1798 15.735C56.0748 15.735 55.9798 15.67 55.9448 15.565C55.8998 15.435 55.9698 15.295 56.1048 15.25C56.5648 15.1 57.0698 14.98 57.6048 14.905C57.7348 14.885 57.8698 14.98 57.8898 15.115C57.9098 15.25 57.8148 15.38 57.6798 15.4C57.1698 15.475 56.6948 15.585 56.2648 15.725C56.2398 15.735 56.2098 15.74 56.1848 15.74L56.1798 15.735Z\" fill=\"%239F9F9F\"/>%0D%0A<path d=\"M55.7846 11.56C55.7496 11.56 55.7146 11.555 55.6796 11.535C55.5546 11.475 55.4996 11.33 55.5546 11.205C56.9596 8.145 59.4396 9.105 59.4646 9.115C59.5946 9.165 59.6546 9.31 59.6046 9.44C59.5546 9.565 59.4096 9.63 59.2796 9.58C59.1946 9.545 57.2096 8.795 56.0096 11.415C55.9696 11.505 55.8796 11.56 55.7846 11.56ZM55.2246 9.215C56.2246 7.4 57.6146 7.72 57.6746 7.73C57.8096 7.76 57.9446 7.68 57.9796 7.55C58.0146 7.415 57.9346 7.28 57.7996 7.245C57.7796 7.245 55.9796 6.81 54.7896 8.97C54.7246 9.09 54.7646 9.245 54.8896 9.31C54.9296 9.33 54.9696 9.34 55.0096 9.34C55.0996 9.34 55.1846 9.295 55.2296 9.21L55.2246 9.215Z\" fill=\"black\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198Z\" fill=\"white\"/>%0D%0A<path d=\"M61.2198 11.585C61.3748 11.415 61.5548 11.31 61.7748 11.275C62.0348 11.235 62.2797 11.29 62.5097 11.415C62.5547 11.44 62.5798 11.435 62.6148 11.395C62.9398 11.01 63.0248 10.58 62.8798 10.1C62.8498 10.01 62.8697 9.94 62.9397 9.9C63.0297 9.85 63.1298 9.89 63.1648 9.995C63.2998 10.41 63.2848 10.82 63.0898 11.215C63.0198 11.36 62.9198 11.49 62.8298 11.63L63.1298 12.035C63.1998 12.01 63.2748 11.975 63.3548 11.95C63.8648 11.795 64.3397 11.875 64.7797 12.17C64.8647 12.23 64.8898 12.32 64.8348 12.39C64.7798 12.465 64.6948 12.475 64.6098 12.415C64.1898 12.135 63.7498 12.095 63.2848 12.295C63.2348 12.315 63.2348 12.34 63.2398 12.385C63.2998 12.695 63.2698 12.99 63.0898 13.255C63.0048 13.38 62.8947 13.475 62.7597 13.545C62.7397 13.555 62.7248 13.565 62.7048 13.575C62.7398 13.71 62.7798 13.835 62.8098 13.965C62.8898 14.315 62.9198 14.67 62.8598 15.03C62.8248 15.24 62.7548 15.435 62.6048 15.59C62.4798 15.725 62.3197 15.785 62.1397 15.795C61.7197 15.815 61.2448 15.62 61.0347 15.12C61.0347 15.11 61.0248 15.1 61.0198 15.09C60.9598 15.11 60.8998 15.14 60.8398 15.155C60.3198 15.31 59.8497 15.195 59.4397 14.845C59.3947 14.805 59.3547 14.79 59.2947 14.81C59.2097 14.835 59.1247 14.855 59.0347 14.865C58.9997 14.865 58.9548 14.855 58.9298 14.835C58.8948 14.805 58.9048 14.765 58.9298 14.725C58.9748 14.645 59.0147 14.56 59.0647 14.485C59.0947 14.44 59.0897 14.4 59.0647 14.35C58.8647 13.91 58.8698 13.47 59.0948 13.04C59.1448 12.94 59.2147 12.855 59.2797 12.755C59.2597 12.735 59.2347 12.71 59.2097 12.69C58.7997 12.315 58.7997 11.755 58.9747 11.39C59.0847 11.165 59.2798 11.05 59.5248 11.015C59.8148 10.975 60.0898 11.035 60.3598 11.13C60.6548 11.23 60.9248 11.375 61.1798 11.555C61.1948 11.565 61.2047 11.575 61.2247 11.585H61.2198ZM61.2898 12.54C61.2898 12.54 61.3547 12.49 61.3897 12.455C61.4947 12.355 61.4947 12.335 61.4247 12.215C61.4047 12.18 61.3797 12.15 61.3547 12.12C60.9847 11.715 60.5198 11.47 59.9898 11.34C59.8348 11.3 59.6798 11.29 59.5198 11.325C59.3998 11.35 59.3047 11.405 59.2447 11.515C59.0797 11.825 59.1597 12.255 59.4247 12.485C59.9247 12.925 60.7148 12.955 61.2898 12.54ZM61.7898 13.24C61.2898 13.62 61.0797 14.285 61.2647 14.9C61.3797 15.28 61.6847 15.505 62.0847 15.5C62.2697 15.5 62.3947 15.42 62.4747 15.255C62.5397 15.12 62.5698 14.975 62.5798 14.83C62.6098 14.365 62.5297 13.92 62.3347 13.5C62.2797 13.385 62.1998 13.28 62.1248 13.175C62.0848 13.12 62.0298 13.11 61.9698 13.145C61.9098 13.18 61.8498 13.215 61.7898 13.25V13.24ZM60.6648 14.885C60.0398 14.455 59.5998 13.895 59.3598 13.175C59.1298 13.515 59.1798 14.085 59.4698 14.46C59.7498 14.825 60.2898 15.015 60.6648 14.88V14.885ZM60.9197 14.09C60.9197 14.09 60.9298 14.07 60.9298 14.065C60.9948 13.775 61.1248 13.515 61.3098 13.285C61.3198 13.27 61.3248 13.23 61.3098 13.215C61.2648 13.145 61.2148 13.08 61.1648 13.015C61.1398 12.98 61.1097 12.975 61.0697 12.99C60.8047 13.1 60.5248 13.145 60.2398 13.125C60.2248 13.125 60.2098 13.125 60.1848 13.125C60.3498 13.51 60.5948 13.825 60.9148 14.085L60.9197 14.09Z\" fill=\"black\"/>%0D%0A<path d=\"M62.0797 15.86C61.6847 15.86 61.2097 15.68 60.9847 15.17C60.9397 15.19 60.8997 15.205 60.8547 15.22C60.3197 15.375 59.8297 15.265 59.3947 14.9C59.3597 14.87 59.3447 14.865 59.3047 14.875C59.1997 14.905 59.1147 14.92 59.0397 14.93C58.9897 14.935 58.9247 14.92 58.8847 14.885C58.8597 14.865 58.8047 14.805 58.8697 14.695C58.8847 14.665 58.9047 14.635 58.9197 14.605C58.9447 14.555 58.9747 14.5 59.0047 14.455C59.0197 14.43 59.0197 14.415 59.0047 14.38C58.7947 13.915 58.8047 13.455 59.0347 13.015C59.0697 12.945 59.1197 12.88 59.1597 12.82C59.1697 12.805 59.1797 12.79 59.1947 12.77L59.1597 12.74C58.7247 12.345 58.7247 11.75 58.9097 11.37C59.0197 11.14 59.2197 11 59.5047 10.96C59.8347 10.915 60.1397 10.995 60.3697 11.075C60.6547 11.175 60.9347 11.32 61.2047 11.51C61.3647 11.35 61.5447 11.255 61.7597 11.22C62.0197 11.175 62.2797 11.23 62.5347 11.365C62.5447 11.365 62.5497 11.37 62.5497 11.37C62.5497 11.37 62.5497 11.37 62.5597 11.36C62.8697 10.995 62.9547 10.59 62.8147 10.12C62.7797 9.99999 62.8147 9.89999 62.8997 9.84999C62.9597 9.81499 63.0247 9.80999 63.0797 9.83499C63.1397 9.85999 63.1897 9.90999 63.2147 9.98499C63.3597 10.43 63.3347 10.855 63.1397 11.255C63.0897 11.36 63.0247 11.455 62.9597 11.545C62.9397 11.575 62.9197 11.605 62.8997 11.64L63.1447 11.97L63.1697 11.96C63.2197 11.94 63.2747 11.915 63.3297 11.9C63.8497 11.74 64.3447 11.815 64.8097 12.13C64.8697 12.17 64.9097 12.225 64.9197 12.285C64.9297 12.34 64.9197 12.395 64.8847 12.44C64.8147 12.54 64.6897 12.56 64.5697 12.48C64.1647 12.21 63.7497 12.17 63.3047 12.365C63.2947 12.365 63.2947 12.37 63.2997 12.385C63.3697 12.735 63.3197 13.035 63.1397 13.3C63.0547 13.425 62.9347 13.53 62.7897 13.61H62.7797C62.7847 13.64 62.7947 13.67 62.7997 13.695C62.8247 13.785 62.8497 13.875 62.8697 13.965C62.9597 14.365 62.9747 14.72 62.9197 15.055C62.8747 15.31 62.7897 15.5 62.6497 15.645C62.5197 15.785 62.3447 15.86 62.1397 15.87C62.1197 15.87 62.0997 15.87 62.0797 15.87V15.86ZM61.0447 15.015L61.0697 15.06C61.0697 15.06 61.0847 15.09 61.0897 15.1C61.2997 15.595 61.7647 15.755 62.1347 15.735C62.3097 15.725 62.4497 15.665 62.5597 15.55C62.6797 15.42 62.7547 15.255 62.7947 15.02C62.8497 14.705 62.8347 14.365 62.7447 13.98C62.7247 13.895 62.6997 13.805 62.6747 13.72C62.6647 13.68 62.6497 13.635 62.6397 13.59L62.6247 13.545L62.7197 13.49C62.8497 13.42 62.9497 13.335 63.0247 13.22C63.1847 12.985 63.2297 12.715 63.1647 12.4C63.1547 12.345 63.1547 12.28 63.2447 12.24C63.7247 12.03 64.1897 12.07 64.6297 12.365C64.6897 12.405 64.7397 12.405 64.7697 12.355C64.7847 12.335 64.7897 12.315 64.7847 12.295C64.7847 12.27 64.7597 12.24 64.7297 12.22C64.2997 11.93 63.8397 11.86 63.3597 12.005C63.3097 12.02 63.2597 12.04 63.2097 12.06L63.0947 12.105L62.7397 11.63L62.7647 11.595C62.7947 11.55 62.8247 11.505 62.8497 11.465C62.9147 11.37 62.9747 11.28 63.0197 11.185C63.1997 10.82 63.2247 10.425 63.0897 10.01C63.0797 9.97499 63.0597 9.94999 63.0297 9.93999C63.0047 9.92999 62.9797 9.93499 62.9547 9.94999C62.9397 9.95999 62.8947 9.98499 62.9247 10.075C63.0747 10.58 62.9847 11.035 62.6497 11.43C62.5947 11.49 62.5397 11.5 62.4697 11.46C62.2397 11.335 62.0097 11.29 61.7747 11.325C61.5747 11.355 61.4047 11.455 61.2547 11.615L61.2197 11.655L61.1547 11.61C61.1547 11.61 61.1347 11.595 61.1247 11.59C60.8647 11.41 60.5947 11.27 60.3197 11.175C60.1047 11.1 59.8197 11.02 59.5147 11.065C59.2747 11.1 59.1097 11.21 59.0147 11.405C58.8497 11.745 58.8497 12.275 59.2347 12.63L59.3447 12.735L59.3147 12.78C59.2947 12.815 59.2697 12.845 59.2497 12.875C59.2047 12.935 59.1647 12.995 59.1297 13.06C58.9197 13.465 58.9097 13.89 59.1047 14.315C59.1247 14.365 59.1447 14.43 59.0947 14.505C59.0647 14.55 59.0397 14.6 59.0147 14.65C58.9997 14.68 58.9797 14.715 58.9647 14.745C58.9497 14.77 58.9547 14.78 58.9547 14.78C58.9697 14.79 58.9947 14.8 59.0097 14.795C59.0847 14.785 59.1597 14.77 59.2597 14.74C59.3347 14.72 59.3947 14.735 59.4597 14.79C59.8597 15.13 60.3097 15.23 60.7997 15.085C60.8397 15.075 60.8797 15.06 60.9197 15.04L61.0297 15L61.0447 15.015ZM62.0847 15.56C61.6597 15.56 61.3297 15.32 61.2097 14.915C61.0197 14.28 61.2397 13.585 61.7547 13.19H61.7597L61.9397 13.085C62.0297 13.03 62.1197 13.055 62.1747 13.135C62.1897 13.16 62.2097 13.185 62.2297 13.21C62.2897 13.29 62.3497 13.375 62.3897 13.47C62.5897 13.9 62.6697 14.36 62.6397 14.83C62.6297 15 62.5947 15.145 62.5297 15.28C62.4397 15.465 62.2897 15.56 62.0847 15.56ZM61.8297 13.29C61.3547 13.655 61.1547 14.295 61.3297 14.875C61.4347 15.23 61.7097 15.435 62.0847 15.435C62.2447 15.435 62.3497 15.37 62.4197 15.225C62.4747 15.105 62.5097 14.975 62.5197 14.82C62.5497 14.365 62.4697 13.93 62.2797 13.52C62.2397 13.435 62.1847 13.36 62.1297 13.28C62.1097 13.255 62.0947 13.23 62.0747 13.2C62.0597 13.175 62.0397 13.165 62.0047 13.185L61.8297 13.285V13.29ZM60.4097 14.99C60.0547 14.99 59.6597 14.8 59.4297 14.5C59.1197 14.1 59.0697 13.505 59.3147 13.14L59.3847 13.035L59.4247 13.155C59.6597 13.855 60.0797 14.405 60.7047 14.83L60.8047 14.9L60.6897 14.94C60.5997 14.97 60.5047 14.985 60.4047 14.985L60.4097 14.99ZM59.3547 13.33C59.2147 13.65 59.2797 14.105 59.5247 14.425C59.7597 14.725 60.1897 14.905 60.5247 14.86C59.9847 14.46 59.5897 13.945 59.3547 13.33ZM60.9547 14.175L60.8897 14.14C60.5547 13.87 60.3097 13.545 60.1397 13.155L60.0997 13.07H60.1947C60.2297 13.07 60.2397 13.07 60.2597 13.07C60.5347 13.09 60.8047 13.045 61.0597 12.94C61.1297 12.91 61.1897 12.925 61.2297 12.985L61.2647 13.035C61.3047 13.085 61.3397 13.135 61.3747 13.19C61.3997 13.23 61.3947 13.295 61.3697 13.335C61.1897 13.56 61.0647 13.815 61.0047 14.09L60.9947 14.12L60.9597 14.185L60.9547 14.175ZM60.2947 13.195C60.4397 13.5 60.6397 13.755 60.8947 13.98C60.9647 13.715 61.0897 13.465 61.2697 13.245C61.2347 13.2 61.1997 13.15 61.1647 13.1L61.1297 13.05C61.1297 13.05 61.1197 13.045 61.1047 13.05C60.8447 13.16 60.5697 13.205 60.2947 13.195ZM60.3797 12.895C60.0197 12.895 59.6597 12.77 59.3847 12.53C59.0997 12.28 59.0147 11.82 59.1947 11.485C59.2547 11.365 59.3647 11.29 59.5097 11.26C59.6647 11.225 59.8297 11.235 60.0047 11.275C60.5697 11.415 61.0397 11.68 61.3997 12.07C61.4297 12.1 61.4547 12.135 61.4797 12.175C61.5697 12.325 61.5597 12.375 61.4347 12.495C61.4097 12.52 61.3797 12.545 61.3597 12.56L61.3297 12.585C61.0447 12.79 60.7097 12.89 60.3797 12.89V12.895ZM59.7147 11.365C59.6547 11.365 59.5947 11.37 59.5347 11.385C59.4247 11.41 59.3497 11.46 59.3047 11.545C59.1547 11.835 59.2247 12.225 59.4697 12.44C59.9547 12.865 60.7047 12.89 61.2597 12.495L61.2847 12.475C61.2847 12.475 61.3297 12.435 61.3547 12.415C61.4047 12.365 61.4114 12.31 61.3747 12.25C61.3547 12.22 61.3347 12.19 61.3097 12.165C60.9597 11.785 60.5247 11.54 59.9747 11.405C59.8797 11.385 59.7947 11.37 59.7097 11.37L59.7147 11.365Z\" fill=\"black\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.9091 17.015L86.109 18.425C86.5391 18.615 86.7041 19.135 86.4691 19.54L81.544 28.025C81.349 28.365 80.929 28.505 80.569 28.36L78.759 27.62C78.364 27.46 78.169 27.01 78.324 26.61L81.854 17.45C82.014 17.03 82.494 16.835 82.904 17.015H82.9091ZM79.219 28.62C78.299 28.245 77.249 28.685 76.874 29.605C76.499 30.525 76.939 31.575 77.859 31.95C78.779 32.325 79.829 31.885 80.204 30.965C80.579 30.045 80.139 28.995 79.219 28.62Z\" fill=\"%23F82C13\"/>%0D%0A</svg>%0D%0A')}::ng-deep .sd-select-panel.sd-multiple .mat-pseudo-checkbox{transform:scale(.75);margin-right:8px!important}::ng-deep .sd-select-panel.sd-multiple .mdc-list-item__primary-text{font-size:14px;white-space:normal}\n"] }]
|
|
522
|
+
], template: "@let lbl = label();\r\n@let app = appearance();\r\n@let hideErr = hideInlineError();\r\n@let viewDef = sdViewDef();\r\n@let hText = helperText();\r\n@let isMulti = multiple();\r\n@let req = required();\r\n@let nVal = $any(normalizedValue());\r\n\r\n@if (viewed()) {\r\n <sd-view\r\n [label]=\"lbl\"\r\n [labelTemplate]=\"sdLabelTemplate()\"\r\n [value]=\"nVal\"\r\n [display]=\"display()\"\r\n [hyperlink]=\"hyperlink()\"\r\n [valueTemplate]=\"sdValueTemplate()\">\r\n </sd-view>\r\n} @else {\r\n @if (!app) {\r\n <ng-content select=\"[sdLabel]\">\r\n @if (lbl) {\r\n <sd-label [label]=\"lbl\" [required]=\"req\"></sd-label>\r\n }\r\n </ng-content>\r\n }\r\n \r\n <div\r\n class=\"d-flex align-items-center\"\r\n [class.sd-view]=\"viewDef?.templateRef\"\r\n [class.c-focused]=\"isFocused\"\r\n [class.c-disabled]=\"formControl.disabled\"\r\n (click)=\"onClick()\"\r\n (mouseenter)=\"updatePanelWidth()\"\r\n (focusin)=\"updatePanelWidth()\"\r\n aria-hidden=\"true\">\r\n \r\n @if (viewDef?.templateRef && !isFocused) {\r\n <ng-container\r\n *ngTemplateOutlet=\"\r\n viewDef!.templateRef;\r\n context: {\r\n value: nVal,\r\n selectedItems: selectedItems()\r\n }\r\n \">\r\n </ng-container>\r\n } @else {\r\n <mat-form-field\r\n [class.sd-md]=\"size() === 'md'\"\r\n [class.sd-sm]=\"size() === 'sm'\"\r\n [class.hide-inline-error]=\"hideErr\"\r\n [appearance]=\"app!\">\r\n \r\n @if (app && lbl) {\r\n <mat-label style=\"display: inline-block\">\r\n <div style=\"display: flex; align-items: center; gap: 4px\">\r\n <span>{{ lbl }}</span>\r\n @if (hText) {\r\n <mat-icon [matTooltip]=\"hText\" matTooltipPosition=\"below\">info_outline</mat-icon>\r\n }\r\n </div>\r\n </mat-label>\r\n }\r\n\r\n <mat-select\r\n #select\r\n [formControl]=\"formControl\"\r\n [placeholder]=\"placeholder() || lbl || ''\"\r\n [multiple]=\"isMulti\"\r\n (selectionChange)=\"onSelectionChange($event)\"\r\n disableOptionCentering=\"true\"\r\n \r\n [panelWidth]=\"calculatedPanelWidth()\"\r\n \r\n [panelClass]=\"isMulti ? ['sd-select-panel', 'sd-multiple'] : 'sd-select-panel'\"\r\n [class.sd-selected]=\"!req && (isMulti ? nVal?.length : nVal !== undefined && nVal !== null)\"\r\n [required]=\"req\"\r\n (openedChange)=\"onOpenedChange($event)\"\r\n [attr.data-autoId]=\"autoId()\"\r\n matTooltipClass=\"sd-multiline-tooltip\"\r\n [matTooltipDisabled]=\"!formControl.disabled || !nVal?.length\"\r\n [matTooltip]=\"tooltip() || ''\">\r\n \r\n <mat-select-trigger>\r\n @if (isMulti) {\r\n <div class=\"sd-trigger-text\" [matTooltip]=\"display() || ''\" matTooltipPosition=\"above\">\r\n {{ display() }}\r\n </div>\r\n } @else {\r\n {{ display() }}\r\n }\r\n </mat-select-trigger>\r\n\r\n @if (filtered()) {\r\n <div class=\"c-filter-input-container\">\r\n <div class=\"filter-input-wrapper\">\r\n <mat-icon>search</mat-icon>\r\n <input\r\n [formControl]=\"inputControl\"\r\n aria-hidden=\"true\"\r\n matInput\r\n autocomplete=\"off\"\r\n class=\"c-search-input\"\r\n (keydown)=\"$event.stopPropagation()\" />\r\n </div>\r\n </div>\r\n }\r\n\r\n @let asyncItems = filteredItems();\r\n @if (asyncItems) {\r\n @if (!asyncItems.length && !loading()) {\r\n <mat-option class=\"sd-empty\" disabled>\r\n <img class=\"sd-empty-img\" alt=\"empty-image\" />\r\n </mat-option>\r\n } @else {\r\n @let iDefTpl = itemDef()?.templateRef;\r\n\r\n @if (valueField() && displayField()) {\r\n @for (item of asyncItems; track itemValue(item)) {\r\n <mat-option [value]=\"itemValue(item)\" [disabled]=\"itemDisabled(item)\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"itemDisplay(item)\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ itemDisplay(item) }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n } @else if (!valueField() && !displayField()) {\r\n @for (item of asyncItems; track item) {\r\n <mat-option [value]=\"item\">\r\n <div matTooltipPosition=\"above\" [matTooltip]=\"item\">\r\n @if (iDefTpl) {\r\n <ng-container *ngTemplateOutlet=\"iDefTpl ?? null; context: { item: item }\"> </ng-container>\r\n } @else {\r\n {{ item }}\r\n }\r\n </div>\r\n </mat-option>\r\n }\r\n }\r\n }\r\n }\r\n\r\n @if (loading()) {\r\n <mat-option disabled class=\"sd-loading-option\">\r\n <mat-spinner diameter=\"24\"></mat-spinner>\r\n </mat-option>\r\n }\r\n </mat-select>\r\n\r\n @if (\r\n (isMulti ? nVal?.length : nVal !== undefined && nVal !== null) &&\r\n !req &&\r\n !formControl.disabled\r\n ) {\r\n <mat-icon class=\"pointer sd-suffix-icon\" (click)=\"clear($event)\" matSuffix>cancel</mat-icon>\r\n } @else {\r\n <span matSuffix class=\"c-custom-arrow\">\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"20px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"#757575\">\r\n <path d=\"M24 24H0V0h24v24z\" fill=\"none\" opacity=\".87\" />\r\n <path d=\"M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z\" />\r\n </svg>\r\n </span>\r\n }\r\n\r\n @if (formControl.errors?.['required']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n Vui l\u00F2ng nh\u1EADp th\u00F4ng tin\r\n }\r\n </mat-error>\r\n }\r\n @if (formControl.errors?.['customValidator']) {\r\n <mat-error>\r\n @if (!hideErr) {\r\n {{ formControl.errors?.['customValidator'] }}\r\n }\r\n </mat-error>\r\n }\r\n </mat-form-field>\r\n }\r\n </div>\r\n}", styles: ["@charset \"UTF-8\";.text-primary{color:var(--sd-primary)!important}.bg-primary{background:var(--sd-primary)!important}.border-primary{border-color:var(--sd-primary)!important}.text-primary-light{color:var(--sd-primary-light)!important}.bg-primary-light{background:var(--sd-primary-light)!important}.border-primary-light{border-color:var(--sd-primary-light)!important}.text-primary-dark{color:var(--sd-primary-dark)!important}.bg-primary-dark{background:var(--sd-primary-dark)!important}.border-primary-dark{border-color:var(--sd-primary-dark)!important}.text-info{color:var(--sd-info)!important}.bg-info{background:var(--sd-info)!important}.border-info{border-color:var(--sd-info)!important}.text-info-light{color:var(--sd-info-light)!important}.bg-info-light{background:var(--sd-info-light)!important}.border-info-light{border-color:var(--sd-info-light)!important}.text-info-dark{color:var(--sd-info-dark)!important}.bg-info-dark{background:var(--sd-info-dark)!important}.border-info-dark{border-color:var(--sd-info-dark)!important}.text-success{color:var(--sd-success)!important}.bg-success{background:var(--sd-success)!important}.border-success{border-color:var(--sd-success)!important}.text-success-light{color:var(--sd-success-light)!important}.bg-success-light{background:var(--sd-success-light)!important}.border-success-light{border-color:var(--sd-success-light)!important}.text-success-dark{color:var(--sd-success-dark)!important}.bg-success-dark{background:var(--sd-success-dark)!important}.border-success-dark{border-color:var(--sd-success-dark)!important}.text-warning{color:var(--sd-warning)!important}.bg-warning{background:var(--sd-warning)!important}.border-warning{border-color:var(--sd-warning)!important}.text-warning-light{color:var(--sd-warning-light)!important}.bg-warning-light{background:var(--sd-warning-light)!important}.border-warning-light{border-color:var(--sd-warning-light)!important}.text-warning-dark{color:var(--sd-warning-dark)!important}.bg-warning-dark{background:var(--sd-warning-dark)!important}.border-warning-dark{border-color:var(--sd-warning-dark)!important}.text-error{color:var(--sd-error)!important}.bg-error{background:var(--sd-error)!important}.border-error{border-color:var(--sd-error)!important}.text-error-light{color:var(--sd-error-light)!important}.bg-error-light{background:var(--sd-error-light)!important}.border-error-light{border-color:var(--sd-error-light)!important}.text-error-dark{color:var(--sd-error-dark)!important}.bg-error-dark{background:var(--sd-error-dark)!important}.border-error-dark{border-color:var(--sd-error-dark)!important}.text-secondary{color:var(--sd-secondary)!important}.bg-secondary{background:var(--sd-secondary)!important}.border-secondary{border-color:var(--sd-secondary)!important}.text-secondary-light{color:var(--sd-secondary-light)!important}.bg-secondary-light{background:var(--sd-secondary-light)!important}.border-secondary-light{border-color:var(--sd-secondary-light)!important}.text-secondary-dark{color:var(--sd-secondary-dark)!important}.bg-secondary-dark{background:var(--sd-secondary-dark)!important}.border-secondary-dark{border-color:var(--sd-secondary-dark)!important}.text-light{color:var(--sd-light)!important}.bg-light{background:var(--sd-light)!important}.border-light{border-color:var(--sd-light)!important}.text-dark{color:var(--sd-dark)!important}.bg-dark{background:var(--sd-dark)!important}.border-dark{border-color:var(--sd-dark)!important}.text-black500{color:var(--sd-black500)!important}.bg-black500{background:var(--sd-black500)!important}.border-black500{border-color:var(--sd-black500)!important}.text-black400{color:var(--sd-black400)!important}.bg-black400{background:var(--sd-black400)!important}.border-black400{border-color:var(--sd-black400)!important}.text-black300{color:var(--sd-black300)!important}.bg-black300{background:var(--sd-black300)!important}.border-black300{border-color:var(--sd-black300)!important}.text-black200{color:var(--sd-black200)!important}.bg-black200{background:var(--sd-black200)!important}.border-black200{border-color:var(--sd-black200)!important}.text-black100{color:var(--sd-black100)!important}.bg-black100{background:var(--sd-black100)!important}.border-black100{border-color:var(--sd-black100)!important}.text-white{color:#fff!important}.bg-white{background:#fff!important}.border-white{border-color:#fff!important}.text-black{color:#000!important}.bg-black{background:#000!important}.border-black{border-color:#000!important}:host{padding-top:5px;display:block;max-width:100%}::ng-deep .sd-loading-option{min-height:50px!important}::ng-deep .sd-loading-option .mat-pseudo-checkbox{display:none!important}::ng-deep .sd-loading-option .mdc-list-item__primary-text{width:100%;display:flex;justify-content:center;align-items:center}.sd-trigger-text{display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host ::ng-deep .mat-mdc-select-value{max-width:100%;overflow:hidden;width:0;min-width:100%}:host ::ng-deep .sd-selected .mat-mdc-select-arrow{display:none}:host ::ng-deep .mat-mdc-select-arrow{display:none!important}:host ::ng-deep .custom-arrow{pointer-events:none;position:absolute;right:1rem;top:50%;transform:translateY(-50%);display:flex;align-items:center}:host ::ng-deep .mat-mdc-form-field.mat-form-field-appearance-outline.mat-form-field-disabled .mat-mdc-text-field-wrapper{background:var(--sd-black100)}:host ::ng-deep .mat-mdc-form-field mat-select.mat-mdc-select-disabled .mat-mdc-select-value{color:var(--sd-black400)!important}:host ::ng-deep .mat-mdc-form-field .mat-mdc-placeholder-required{color:var(--sd-error)}.sd-view:not(.c-focused):not(.c-disabled):hover{background-color:#ebecf0}::ng-deep .sd-select-panel .mat-mdc-option.sd-empty .mat-pseudo-checkbox{display:none}::ng-deep .sd-select-panel .mat-mdc-option{min-height:36px!important;padding:8px 12px!important}::ng-deep .sd-select-panel .c-filter-input-container{position:sticky;top:0;background-color:#fff;box-shadow:0 1px #f2f2f2;padding:8px;margin-bottom:8px;z-index:1000}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper{display:flex;align-items:center;padding:4px 8px;border:1px solid var(--sd-black200);border-radius:4px;background-color:#fff}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .mat-icon{color:#dadada}::ng-deep .sd-select-panel .c-filter-input-container .filter-input-wrapper .c-search-input{background-color:#fff;border:none;outline:none;flex:1;padding:4px}::ng-deep .sd-multiline-tooltip{white-space:pre-line}::ng-deep .mat-mdc-select-panel.sd-select-panel{padding:0}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text{opacity:.8;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option.mdc-list-item--disabled.sd-empty .mdc-list-item__primary-text .sd-empty-img{width:95px;content:url('data:image/svg+xml,<svg width=\"192\" height=\"192\" viewBox=\"0 0 192 192\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<g clip-path=\"url(%23clip0_2873_51802)\">%0A<path d=\"M96 176.471C146.065 176.471 186.65 172.867 186.65 168.42C186.65 163.973 146.065 160.369 96 160.369C45.935 160.369 5.35001 163.974 5.35001 168.42C5.35001 172.866 45.935 176.471 96 176.471Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M142.911 127.611C143.02 127.437 151.753 123.729 153.466 120.616C131.707 121.229 42.947 120.616 42.947 120.616L27.425 126.833C82.721 132.555 142.839 127.727 142.911 127.611Z\" fill=\"white\"/>%0A<path d=\"M41.236 54.108C41.236 54.108 142.607 52.104 155.898 54.681C155.898 54.681 157.779 104.09 154.428 120.616L142.097 120.726C114.288 121.148 42.947 120.616 42.947 120.616C42.644 107.652 42.579 66.439 41.236 54.108Z\" fill=\"white\"/>%0A<path opacity=\"0.2\" d=\"M26.408 62.691H143.654C145.219 63.377 143.469 126.769 142.911 127.65C142.353 128.531 75.206 131.759 27.425 126.884L26.408 62.691Z\" fill=\"%23949699\"/>%0A<path opacity=\"0.3\" d=\"M140.452 83.413C140.107 84.8109 139.31 86.0555 138.184 86.9527C137.058 87.8499 135.667 88.3493 134.227 88.373C131.749 88.373 130.223 88.387 128.795 89.824C128.316 91.1748 127.958 92.5652 127.723 93.979C129.517 93.8826 131.208 93.1076 132.452 91.811C133.102 91.0636 133.972 90.5412 134.938 90.3186C135.903 90.096 136.914 90.1847 137.826 90.572C138.07 90.6978 138.254 90.9145 138.339 91.1751C138.424 91.4358 138.403 91.7194 138.28 91.9647C138.158 92.2099 137.944 92.3971 137.684 92.4857C137.425 92.5743 137.141 92.5571 136.894 92.438C136.373 92.2522 135.807 92.2339 135.275 92.3858C134.743 92.5377 134.271 92.8521 133.927 93.285C132.311 94.974 130.105 95.9748 127.77 96.079C127.666 96.079 127.561 96.064 127.457 96.059C127.369 97.161 127.371 98.2684 127.464 99.37C128.474 98.6223 129.624 98.0853 130.846 97.791C131.047 97.7394 131.258 97.7486 131.453 97.8176C131.649 97.8865 131.819 98.0119 131.943 98.178C132.025 98.2884 132.084 98.4138 132.118 98.547C132.151 98.6804 132.158 98.8191 132.137 98.9551C132.117 99.0911 132.07 99.2217 131.998 99.3394C131.927 99.457 131.833 99.5594 131.722 99.6407C131.612 99.722 131.486 99.7806 131.352 99.813C130.012 100.116 128.792 100.812 127.85 101.812C128.194 103.463 128.853 105.033 129.791 106.435C129.876 106.545 129.938 106.671 129.974 106.805C130.01 106.939 130.018 107.079 129.999 107.217C129.975 107.389 129.907 107.552 129.804 107.692C129.7 107.832 129.564 107.944 129.406 108.017C129.248 108.091 129.075 108.124 128.901 108.113C128.728 108.103 128.56 108.049 128.412 107.957C128.295 107.883 128.193 107.786 128.113 107.673C127.326 106.547 126.711 105.31 126.289 104.002C125.629 104.231 124.936 104.352 124.237 104.358C122.641 104.357 121.104 103.753 119.935 102.667C119.748 102.47 119.646 102.207 119.649 101.935C119.653 101.664 119.763 101.404 119.955 101.212C120.147 101.02 120.407 100.91 120.679 100.907C120.95 100.903 121.213 101.006 121.41 101.193C121.99 101.707 122.7 102.053 123.462 102.194C124.225 102.335 125.011 102.266 125.737 101.993C125.584 101.273 125.471 100.545 125.4 99.812C124.482 98.9355 123.433 98.2063 122.292 97.65C121.523 97.275 120.87 96.6992 120.401 95.9835C119.933 95.2678 119.666 94.4387 119.63 93.584C119.629 93.4473 119.656 93.3117 119.707 93.185C119.785 92.9943 119.918 92.831 120.089 92.7157C120.26 92.6003 120.461 92.5382 120.667 92.537C120.804 92.5363 120.94 92.5624 121.067 92.614C121.194 92.6656 121.309 92.7417 121.406 92.838C121.503 92.9344 121.581 93.0488 121.634 93.175C121.687 93.3013 121.715 93.4369 121.715 93.574C121.749 94.0419 121.907 94.4924 122.171 94.8801C122.435 95.2677 122.797 95.5789 123.22 95.782C123.947 96.1406 124.645 96.5573 125.305 97.028C125.358 95.4424 125.56 93.8654 125.91 92.318L126.062 91.701C125.231 90.7566 124.275 89.929 123.222 89.241C120.142 87.188 120.961 83.378 121.825 81.652C121.901 81.4985 122.015 81.3663 122.154 81.2669C122.294 81.1676 122.456 81.1043 122.626 81.0825C122.796 81.0608 122.969 81.0813 123.129 81.1422C123.29 81.2032 123.432 81.3027 123.545 81.432C123.635 81.5351 123.704 81.6551 123.747 81.785C123.791 81.9149 123.808 82.0522 123.799 82.189C123.789 82.3257 123.753 82.4592 123.692 82.582C123.624 82.72 122.063 85.964 124.379 87.507C125.218 88.0629 126.007 88.6909 126.737 89.384C127.374 87.579 128.144 85.8239 129.041 84.133C128.131 83.6033 127.366 82.856 126.815 81.9581C126.265 81.0601 125.945 80.0396 125.886 78.988C125.885 78.7818 125.946 78.58 126.06 78.4081C126.174 78.2361 126.336 78.1018 126.526 78.022C126.716 77.9425 126.926 77.9211 127.128 77.9606C127.331 78.0001 127.517 78.0988 127.663 78.244C127.859 78.4389 127.97 78.7036 127.971 78.98C128.023 79.6377 128.228 80.2742 128.568 80.8396C128.908 81.4051 129.374 81.8841 129.93 82.239C130.867 79.966 130.99 77.977 129.123 74.245C129.062 74.1223 129.025 73.9888 129.015 73.852C129.005 73.7153 129.022 73.5779 129.066 73.448C129.131 73.2519 129.253 73.0796 129.416 72.9529C129.58 72.8262 129.777 72.7508 129.983 72.7364C130.189 72.7219 130.395 72.769 130.574 72.8717C130.753 72.9743 130.898 73.1279 130.99 73.313C131.923 75.019 132.49 76.9012 132.653 78.839C133.501 77.9695 134.059 76.858 134.248 75.658C134.304 75.3889 134.465 75.1531 134.694 75.0018C134.924 74.8505 135.204 74.796 135.473 74.8503C135.743 74.9045 135.98 75.063 136.133 75.2912C136.286 75.5195 136.343 75.7991 136.291 76.069C136.133 77.2324 135.692 78.3393 135.008 79.2933C134.324 80.2473 133.416 81.0194 132.365 81.542C131.775 83.3184 131.02 85.0358 130.111 86.672C131.458 86.3509 132.844 86.2213 134.227 86.287C137.51 86.287 138.398 83.04 138.43 82.902C138.502 82.6388 138.675 82.4144 138.911 82.2769C139.146 82.1395 139.427 82.0999 139.691 82.1668C139.956 82.2337 140.184 82.4016 140.326 82.6346C140.468 82.8676 140.513 83.1471 140.452 83.413ZM54.738 108.586C54.748 108.576 54.761 108.572 54.771 108.562C54.8053 108.52 54.8351 108.474 54.86 108.426C54.8263 108.484 54.7853 108.538 54.738 108.586ZM69.501 102.282C69.8065 102.74 69.9459 103.288 69.896 103.836C69.8462 104.384 69.61 104.898 69.227 105.293C67.6339 106.85 65.6306 107.922 63.451 108.384C63.2694 108.427 63.1091 108.534 62.9993 108.685C62.8894 108.836 62.8372 109.021 62.852 109.207L62.908 111.061C62.9494 115.059 62.3616 119.038 61.166 122.853L51.475 119.785C52.6584 117.879 53.5246 115.794 54.04 113.61C51.3872 113.465 48.8686 112.397 46.921 110.59C46.4918 110.2 46.2141 109.672 46.1367 109.097C46.0593 108.523 46.1873 107.939 46.498 107.45C46.6946 107.155 46.9543 106.907 47.2584 106.724C47.5624 106.541 47.9033 106.428 48.2564 106.392C48.6095 106.357 48.966 106.401 49.3002 106.52C49.6344 106.639 49.9379 106.831 50.189 107.082C51.2673 108.084 52.6526 108.692 54.12 108.808C54.205 108.812 54.2901 108.803 54.372 108.78C54.3393 108.791 54.3059 108.801 54.272 108.808C55.3246 108.933 56.3893 108.911 57.436 108.744C57.591 108.714 57.7337 108.639 57.8459 108.528C57.9582 108.417 58.0349 108.275 58.0665 108.12C58.0981 107.965 58.0831 107.805 58.0233 107.659C57.9636 107.512 57.8619 107.387 57.731 107.299C57.6444 107.24 57.5468 107.199 57.444 107.179C57.3411 107.158 57.235 107.158 57.132 107.178C56.4342 107.283 55.7274 107.315 55.023 107.274L54.991 108.049C55.019 107.666 55.027 107.282 55.015 106.898C55.0192 105.372 54.8232 103.851 54.432 102.376C54.3831 102.201 54.2769 102.048 54.1306 101.941C53.9843 101.834 53.8063 101.779 53.625 101.785C51.6877 101.884 49.7628 101.424 48.08 100.459C47.5711 100.143 47.1948 99.6522 47.0212 99.0787C46.8477 98.5053 46.8888 97.8883 47.137 97.343C47.2867 97.0357 47.5003 96.764 47.7634 96.5459C48.0266 96.3278 48.3333 96.1684 48.663 96.0784C48.9928 95.9884 49.3379 95.9698 49.6754 96.0238C50.0129 96.0779 50.3349 96.2034 50.62 96.392C50.7898 96.4985 50.9689 96.5895 51.155 96.664C51.2965 96.719 51.4508 96.7326 51.5998 96.7031C51.7488 96.6736 51.8862 96.6022 51.9961 96.4974C52.106 96.3925 52.1837 96.2586 52.2202 96.1111C52.2566 95.9637 52.2503 95.809 52.202 95.665C51.6681 94.1389 51.2541 92.5735 50.964 90.983C50.8611 90.3878 50.9859 89.7757 51.3136 89.2683C51.6413 88.7609 52.148 88.3954 52.7328 88.2445C53.3177 88.0936 53.9379 88.1682 54.4703 88.4536C55.0026 88.7391 55.408 89.2143 55.606 89.785L55.614 89.817C56.0623 91.064 56.6018 92.2762 57.228 93.444C57.6366 93.2572 58.0005 92.9852 58.2954 92.6463C58.5903 92.3075 58.8094 91.9094 58.938 91.479C59.0288 91.0462 59.2384 90.6472 59.5433 90.3268C59.8481 90.0064 60.2362 89.7772 60.664 89.665C61.0681 89.5621 61.492 89.5656 61.8943 89.6752C62.2967 89.7847 62.6638 89.9967 62.9598 90.2904C63.2559 90.584 63.4709 90.9494 63.5838 91.3508C63.6966 91.7522 63.7036 92.1761 63.604 92.581C63.1027 94.5529 61.8535 96.2522 60.121 97.319C60.1031 97.3298 60.0869 97.3433 60.073 97.359C59.9307 97.4702 59.8304 97.6264 59.7882 97.802C59.7461 97.9776 59.7647 98.1623 59.841 98.326L60.201 99.085C60.209 99.101 60.217 99.125 60.225 99.141L61.2 101.346L61.783 103.048C61.8089 103.15 61.8548 103.245 61.918 103.329C61.981 103.413 62.0601 103.484 62.1507 103.538C62.2414 103.591 62.3417 103.626 62.446 103.641C62.5502 103.655 62.6561 103.649 62.758 103.623C63.9132 103.341 64.9723 102.757 65.826 101.929C66.1544 101.591 66.577 101.36 67.0387 101.266C67.5003 101.172 67.9796 101.219 68.414 101.402C68.8572 101.579 69.2367 101.886 69.503 102.282H69.501ZM54.825 98.084C54.7518 97.9069 54.6175 97.7621 54.4465 97.6758C54.2754 97.5895 54.0791 97.5675 53.8932 97.6139C53.7073 97.6602 53.5442 97.7719 53.4338 97.9284C53.3233 98.0849 53.2727 98.2759 53.2913 98.4666C53.3099 98.6572 53.3964 98.8349 53.535 98.9672C53.6736 99.0994 53.8551 99.1775 54.0464 99.1871C54.2377 99.1967 54.4262 99.1373 54.5773 99.0196C54.7285 98.9019 54.8324 98.7338 54.87 98.546C54.901 98.3909 54.8853 98.2302 54.825 98.084ZM57.199 98.905C57.2006 99.0099 57.2228 99.1135 57.2644 99.2099C57.306 99.3062 57.3662 99.3934 57.4415 99.4665C57.5168 99.5396 57.6058 99.5971 57.7033 99.6358C57.8009 99.6745 57.9051 99.6936 58.01 99.692H58.034C58.7877 99.6293 59.5225 99.4233 60.199 99.085L59.84 98.326C59.7637 98.1623 59.7451 97.9776 59.7872 97.802C59.8294 97.6264 59.9297 97.4702 60.072 97.359C59.4332 97.7411 58.7242 97.991 57.987 98.094C57.8821 98.0956 57.7785 98.1178 57.6821 98.1594C57.5858 98.201 57.4986 98.2612 57.4255 98.3365C57.3524 98.4118 57.2949 98.5008 57.2562 98.5983C57.2175 98.6959 57.1984 98.8001 57.2 98.905H57.199ZM58.021 115.661C57.9479 115.484 57.8137 115.339 57.6429 115.253C57.4721 115.167 57.2759 115.145 57.0903 115.191C56.9046 115.238 56.7418 115.349 56.6314 115.506C56.5211 115.662 56.4706 115.853 56.4892 116.043C56.5078 116.234 56.5942 116.411 56.7327 116.543C56.8712 116.675 57.0525 116.753 57.2436 116.763C57.4348 116.772 57.6229 116.713 57.7739 116.595C57.9248 116.478 58.0285 116.31 58.066 116.122C58.0963 115.967 58.0803 115.807 58.02 115.661H58.021ZM58.82 102.079C58.7469 101.902 58.6127 101.757 58.4419 101.671C58.2711 101.585 58.0749 101.563 57.8893 101.609C57.7036 101.656 57.5408 101.767 57.4304 101.924C57.3201 102.08 57.2696 102.271 57.2882 102.461C57.3068 102.652 57.3932 102.829 57.5317 102.961C57.6702 103.093 57.8515 103.171 58.0426 103.181C58.2338 103.19 58.4219 103.131 58.5729 103.013C58.7238 102.896 58.8275 102.728 58.865 102.54C58.8954 102.385 58.8794 102.225 58.819 102.079H58.82ZM60.418 112.465C60.3449 112.288 60.2104 112.142 60.0391 112.056C59.8679 111.969 59.6712 111.947 59.485 111.994C59.2988 112.04 59.1355 112.152 59.0248 112.309C58.9141 112.465 58.8635 112.657 58.8822 112.848C58.9008 113.039 58.9875 113.217 59.1264 113.349C59.2652 113.481 59.4471 113.559 59.6388 113.569C59.8304 113.578 60.0191 113.519 60.1704 113.401C60.3217 113.283 60.4256 113.114 60.463 112.926C60.4933 112.771 60.4773 112.611 60.417 112.465H60.418ZM60.418 106.073C60.3448 105.896 60.2105 105.751 60.0394 105.665C59.8684 105.578 59.672 105.557 59.4862 105.603C59.3003 105.649 59.1372 105.761 59.0268 105.917C58.9163 106.074 58.8657 106.265 58.8843 106.456C58.9029 106.646 58.9894 106.824 59.128 106.956C59.2666 107.088 59.4481 107.166 59.6394 107.176C59.8307 107.186 60.0192 107.126 60.1703 107.009C60.3215 106.891 60.4254 106.723 60.463 106.535C60.4937 106.38 60.4777 106.219 60.417 106.073H60.418Z\" fill=\"%2395979A\"/>%0A<path d=\"M185.209 169.695C184.803 170.469 184.231 171.144 183.534 171.672C182.838 172.2 182.033 172.567 181.178 172.749C181.178 172.749 174.247 169.514 173.272 156.195C173.436 158.466 174.009 169.233 170.185 169.451C165.91 169.695 163.1 170.062 163.345 152.35L159.762 149.961V155.451C159.774 157.93 158.846 160.321 157.165 162.142C156.366 163.01 155.397 163.703 154.318 164.18C153.24 164.657 152.074 164.907 150.895 164.914H20.639C19.4596 164.907 18.2943 164.657 17.2156 164.18C16.1369 163.703 15.168 163.01 14.369 162.142C12.6877 160.321 11.7596 157.93 11.772 155.451V127.512L80.16 128.422C81.303 123.963 83.761 116.081 87.367 113.505C87.367 113.505 87.123 106.665 91.154 105.077C91.154 105.077 85.657 90.908 87.856 91.03C90.055 91.152 103.613 93.717 108.133 97.26C110.567 97.3737 112.923 98.1508 114.947 99.5071C116.97 100.863 118.585 102.747 119.615 104.955C119.615 104.955 124.135 106.054 126.7 105.199C129.265 104.344 153.329 94.694 168.72 107.886C168.72 107.886 177.148 116.437 178.126 128.529C179.104 140.621 179.714 154.791 179.714 154.791C179.714 154.791 186.676 167.006 185.21 169.693L185.209 169.695Z\" fill=\"white\"/>%0A<path d=\"M152.35 145.754C152.35 145.754 145.908 140.212 148.359 133.373C118.347 132.589 11.771 133.097 11.771 133.097V139.383L133.518 140.744C143.661 143.12 148.38 153.762 140.991 164.915H145.765C148.03 164.915 150.202 164.015 151.804 162.413C153.405 160.811 154.305 158.639 154.305 156.374V146.862L152.35 145.754Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M41.091 54.458L43.089 54.38L45.857 125.682L43.859 125.76L41.091 54.458Z\" fill=\"%23C1C1C1\"/>%0A<path d=\"M95.533 125.941C95.533 125.941 91.859 124.734 92.721 122.485C93.583 120.236 97.357 118.822 97.357 118.822L97.013 118.415C97.013 118.415 90.679 116.502 92.155 111.573C93.631 106.644 99.18 108.353 101.574 110.202L101.013 106.612L102.96 104.107L104.617 103.499C104.617 103.499 113.212 106.239 114.094 98.449C113.225 98.0351 112.288 97.7856 111.328 97.713L109.803 97.65C101.143 91.559 87.943 91.004 87.943 91.004C87.639 97.157 91.039 104.957 91.039 104.957C86.851 108.079 87.296 113.642 87.296 113.642C82.44 117.87 78.697 131.212 79.497 132.355C80.297 133.498 84.705 132.328 84.914 132.372C84.975 132.385 90.436 132.377 98.134 132.36C97.724 132.053 94.491 129.495 95.533 125.941ZM162.338 104.418C162.338 104.418 174.596 107.668 177.517 123.955C180.438 140.242 177.871 149.714 180.881 156.973C183.891 164.232 186.988 171.667 183.182 172.375C179.305 171.813 177.393 176.005 172.79 156.177C170.055 144.514 169.695 143.31 171.976 120.835C169.968 113.992 166.489 107.095 162.338 104.418Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M183.182 172.375C179.706 171.871 177.808 175.176 174.135 161.576C178.238 162.839 180.878 161.892 182.433 160.771C184.762 166.632 186.319 171.791 183.181 172.374L183.182 172.375ZM180.847 156.88C180.224 155.283 179.808 153.613 179.609 151.91C177.072 152.623 174.393 152.668 171.833 152.039L172.789 156.177L173.041 157.241C175.349 157.664 178.517 157.923 180.846 156.88H180.847ZM179.311 148.544C179.232 146.866 179.181 145.186 179.158 143.506C176.262 143.902 173.315 143.676 170.513 142.844C170.566 144.274 170.694 145.701 170.898 147.118C173.364 148.731 176.944 148.759 179.311 148.544ZM179.072 139.711C179.014 137.739 178.91 135.769 178.76 133.802C176.125 134.299 173.425 134.349 170.774 133.95C170.619 136.106 170.525 137.941 170.491 139.57C173.29 140.363 176.248 140.412 179.072 139.712V139.711Z\" fill=\"%23B7B7B7\"/>%0A<path d=\"M100.676 110.004C100.131 108.554 100.141 106.954 100.705 105.512C100.988 104.938 101.388 104.431 101.881 104.022C102.373 103.614 102.946 103.314 103.562 103.142C103.663 103.108 103.77 103.095 103.877 103.103C103.984 103.111 104.088 103.14 104.184 103.188C104.279 103.236 104.364 103.303 104.434 103.384C104.575 103.548 104.645 103.761 104.629 103.977C104.621 104.084 104.592 104.187 104.544 104.283C104.496 104.379 104.429 104.464 104.348 104.533C104.267 104.603 104.173 104.656 104.071 104.69C103.668 104.796 103.292 104.985 102.966 105.245C102.64 105.505 102.373 105.83 102.18 106.2C101.804 107.239 101.809 108.379 102.193 109.415C102.27 109.616 102.264 109.84 102.177 110.037C102.09 110.234 101.928 110.389 101.727 110.467C101.633 110.504 101.534 110.523 101.433 110.522C101.269 110.523 101.109 110.474 100.974 110.381C100.839 110.288 100.735 110.157 100.676 110.004ZM184.945 171.631C184.735 172.016 184.439 172.347 184.08 172.599C183.721 172.851 183.309 173.017 182.876 173.085C182.302 173.201 181.718 173.264 181.132 173.273C178.488 173.273 176.153 171.553 173.619 164.629C173.48 166.13 173.06 167.592 172.382 168.938C172.21 169.277 171.963 169.573 171.66 169.804C171.357 170.035 171.006 170.194 170.633 170.27C170.065 170.469 169.468 170.569 168.866 170.566C168.078 170.571 167.301 170.385 166.6 170.025C164.926 169.159 163.774 167.345 163.178 164.633C162.584 161.711 162.297 158.735 162.323 155.753C162.31 154.875 162.293 153.886 162.211 153.131C161.769 154.205 161.221 155.24 160.7 156.296C159.294 159.082 157.167 161.441 154.54 163.126C151.913 164.811 148.883 165.761 145.764 165.877H20.312C17.7924 165.874 15.377 164.871 13.5955 163.09C11.814 161.308 10.8119 158.893 10.809 156.373V133.096C10.809 132.969 10.8341 132.843 10.883 132.725C11.0211 132.516 11.1992 132.336 11.407 132.196C11.8769 132.138 12.3507 132.116 12.824 132.132C14.874 130.696 20.604 128.159 26.406 125.758C26.065 117.09 24.928 67.406 25.452 62.59L25.542 62.448C25.524 62.403 25.492 62.365 25.478 62.318C25.3695 61.9265 25.3964 61.5099 25.5543 61.1357C25.7122 60.7614 25.9919 60.4514 26.348 60.256L41.117 52.843C41.4032 52.6812 41.7253 52.5935 42.054 52.588L107.866 51.946L107.868 53.78V51.946C133.615 51.946 151.263 52.741 155.975 53.617C156.184 53.6504 156.376 53.7482 156.527 53.8966C156.677 54.0451 156.777 54.2368 156.813 54.445C156.825 54.548 156.843 54.802 156.867 55.177C156.872 55.19 156.876 55.205 156.882 55.218H156.87C157.158 59.819 158.189 82.849 157.496 101.447C159.113 101.891 160.673 102.52 162.146 103.321C162.885 103.538 175.056 107.377 177.962 123.584C179.069 130.081 179.623 136.661 179.618 143.252C179.717 148.617 179.796 152.855 181.268 156.409L181.305 156.493C183.944 162.864 186.438 168.879 184.945 171.634V171.631ZM154.918 57.496L145.292 62.733C145.27 62.7775 145.259 62.8271 145.261 62.877L145.255 62.883C146.113 66.329 145.803 85.324 145.535 96.558L145.437 100.385C147.315 100.13 149.217 100.094 151.103 100.279C152.352 100.432 153.816 100.619 155.377 100.937C156.123 84.334 155.605 64.189 154.918 57.497V57.496ZM27.321 61.833H75.766L143.617 61.742L154.168 55.077C148.317 54.133 128.405 53.778 107.863 53.778L42.091 54.42L27.321 61.833ZM28.261 124.996L41.463 119.801L81.422 121.177C82.5667 118.348 84.1841 115.734 86.205 113.447C86.166 111.848 86.4628 110.258 87.0761 108.78C87.6895 107.302 88.6058 105.97 89.766 104.868C88.937 102.806 86.606 96.473 86.868 91.158C86.869 91.143 86.877 91.13 86.879 91.115C86.881 91.09 86.877 91.065 86.881 91.04C86.8956 90.9721 86.9177 90.906 86.947 90.843C86.953 90.828 86.955 90.812 86.962 90.797C87.004 90.7085 87.0597 90.6272 87.127 90.556C87.136 90.546 87.149 90.541 87.158 90.532C87.167 90.523 87.166 90.519 87.172 90.513C87.186 90.5 87.205 90.496 87.219 90.484C87.2852 90.4301 87.3586 90.3857 87.437 90.352C87.4664 90.339 87.4964 90.3277 87.527 90.318C87.552 90.31 87.574 90.296 87.6 90.29C87.6644 90.2788 87.7297 90.2744 87.795 90.277C87.811 90.277 87.826 90.269 87.841 90.27C88.382 90.292 101.193 90.901 109.965 96.923L111.257 96.98H111.259C111.665 97.0138 112.067 97.0762 112.464 97.167L112.709 97.223C113.101 97.3193 113.485 97.443 113.86 97.593C113.896 97.608 113.931 97.626 113.967 97.641C114.324 97.7923 114.672 97.966 115.007 98.161C115.069 98.197 115.132 98.229 115.193 98.266C115.529 98.4718 115.854 98.6965 116.165 98.939C116.274 99.0237 116.382 99.1104 116.488 99.199C116.77 99.4325 117.042 99.6784 117.302 99.936C117.45 100.082 117.593 100.242 117.737 100.399C117.87 100.544 118 100.693 118.128 100.845C118.398 101.164 118.661 101.501 118.918 101.858L119.106 102.124C119.392 102.536 119.669 102.972 119.937 103.432L120.074 103.668C120.192 103.877 120.317 104.068 120.432 104.286C122.055 104.759 123.752 104.923 125.435 104.771C127.68 104.331 130.169 103.701 132.803 103.033C136.241 102.163 139.728 101.288 142.995 100.733C143.034 99.0323 143.072 97.303 143.107 95.545C143.508 75.294 143.297 65.952 142.964 63.666H27.33C27.28 70.531 27.286 104.456 28.262 124.996H28.261ZM89.311 92.26C90.908 95.625 93.385 100.036 94.997 100.988C98.5781 98.8823 102.567 97.565 106.698 97.124C100.392 93.679 92.676 92.584 89.311 92.261V92.26ZM90.839 131.643C89.3326 129.272 88.1542 126.707 87.336 124.02C86.038 125.477 83.601 128.651 81.102 132.134C82.0818 132.078 83.0561 131.949 84.017 131.749C84.2926 131.674 84.5774 131.638 84.863 131.643C85.157 131.65 87.334 131.649 90.839 131.643ZM153.341 156.374V147.806C152.993 147.528 152.655 147.239 152.327 146.939C149.236 143.896 147.664 139.641 147.607 134.309C134.492 133.982 107.97 133.925 81.803 133.95C81.3505 133.988 80.8956 133.989 80.443 133.951L12.733 134.069V156.373C12.7351 158.382 13.5342 160.308 14.9549 161.729C16.3756 163.15 18.3018 163.949 20.311 163.951H145.763C147.772 163.949 149.698 163.15 151.119 161.729C152.54 160.308 153.339 158.382 153.341 156.373V156.374ZM170.786 148.582C169.176 144.781 168.581 140.626 169.06 136.526C171.911 125.761 170.933 120.683 170.89 120.471C167.934 104.217 157.255 102.914 150.875 102.135C146.214 101.563 139.365 103.301 133.316 104.833C130.613 105.517 128.098 106.155 125.794 106.607C124.337 106.806 122.856 106.744 121.42 106.426C123.036 110.206 123.913 114.259 124.005 118.369C123.995 118.61 123.892 118.837 123.718 119.004C123.544 119.17 123.313 119.263 123.072 119.263L123.019 119.261C122.774 119.248 122.543 119.139 122.378 118.957C122.213 118.774 122.127 118.534 122.138 118.289C122.013 113.889 120.956 109.566 119.036 105.606C119.006 105.573 118.978 105.538 118.953 105.501C117.686 102.986 115.587 100 112.501 99.098L112.472 99.091C112.262 99.0299 112.048 98.9792 111.833 98.939C111.596 98.8955 111.356 98.8644 111.116 98.846C105.665 98.5884 100.262 99.9702 95.604 102.813C95.4935 102.887 95.3683 102.936 95.237 102.957C95.1058 102.979 94.9715 102.972 94.843 102.938C92.938 102.43 90.737 99.034 89.12 96.036C89.7015 99.0329 90.5832 101.964 91.752 104.784C91.8371 104.977 91.854 105.193 91.7998 105.397C91.7457 105.601 91.6237 105.781 91.454 105.906C87.737 108.678 88.081 113.718 88.085 113.769C88.0958 113.915 88.0726 114.061 88.0172 114.196C87.9619 114.331 87.8759 114.452 87.766 114.548C84.161 117.686 81.393 125.711 80.483 129.793C83.067 126.234 86.376 121.902 87.464 121.482C87.5854 121.436 87.7152 121.415 87.845 121.421C87.9749 121.428 88.102 121.461 88.2181 121.52C88.3343 121.578 88.4371 121.66 88.5199 121.76C88.6027 121.86 88.6637 121.977 88.699 122.102C89.256 124.086 91.128 129.59 93.131 131.483H148.389C148.584 131.403 148.76 131.283 148.907 131.131C149.054 130.979 149.167 130.799 149.241 130.601C149.457 129.855 148.962 128.704 147.845 127.359C144.942 123.861 139.521 124.282 136.28 124.532C135.711 124.578 135.209 124.616 134.795 124.63C131.91 124.724 127.75 124.534 127.718 124.532C127.533 124.52 127.355 124.454 127.207 124.341C127.06 124.229 126.948 124.076 126.887 123.901C126.825 123.726 126.817 123.537 126.862 123.357C126.908 123.177 127.005 123.014 127.142 122.889C127.233 122.808 127.34 122.746 127.455 122.708C127.571 122.67 127.694 122.656 127.815 122.667C127.851 122.669 131.931 122.855 134.731 122.761C135.151 122.744 135.57 122.717 135.988 122.681L136.134 122.67C139.741 122.389 145.765 121.925 149.283 126.167C150.861 128.066 151.448 129.74 151.029 131.143C150.76 131.936 150.208 132.601 149.479 133.011C149.013 145.762 157.516 148.542 161.178 149.736C161.806 149.895 162.408 150.14 162.969 150.464C164.123 151.303 164.15 153.06 164.19 155.721C164.159 158.579 164.431 161.432 165.001 164.233C165.472 166.369 166.293 167.756 167.443 168.358C168.266 168.748 169.209 168.796 170.067 168.492C170.152 168.457 170.242 168.435 170.333 168.426C170.421 168.417 170.586 168.293 170.782 167.971C172.674 164.847 172.404 152.583 170.785 148.582H170.786ZM179.577 157.209L179.54 157.12C177.932 153.243 177.852 148.849 177.748 143.285C177.752 136.793 177.207 130.313 176.12 123.913C174.814 116.623 171.553 112.111 168.735 109.459C170.772 112.702 172.128 116.325 172.723 120.108C172.77 120.322 173.874 125.646 170.887 136.909L170.886 136.911C170.522 140.646 171.082 144.413 172.517 147.881C173.425 150.123 173.99 155.001 173.948 159.611C177.591 172.154 180.195 171.682 182.533 171.248C182.693 171.232 182.846 171.177 182.979 171.088C183.113 171 183.223 170.88 183.301 170.74C184.369 168.769 181.712 162.359 179.577 157.209ZM109.387 123.284C109.328 123.195 109.251 123.119 109.162 123.06C107.978 122.26 106.656 121.688 105.262 121.374C105.715 120.865 106.001 120.229 106.08 119.552C106.159 118.876 106.028 118.191 105.705 117.591C106.172 117.55 106.624 117.408 107.03 117.174C107.49 116.872 107.863 116.456 108.114 115.967C108.365 115.477 108.484 114.931 108.461 114.382C108.556 113.147 108.223 111.916 107.519 110.897C107.457 110.81 107.378 110.737 107.288 110.68C107.197 110.624 107.096 110.586 106.991 110.568C106.778 110.534 106.561 110.584 106.385 110.709C106.298 110.771 106.224 110.85 106.167 110.941C106.082 111.078 106.04 111.236 106.045 111.397C106.051 111.558 106.103 111.713 106.197 111.844C106.684 112.569 106.909 113.438 106.835 114.308C106.861 114.587 106.816 114.867 106.704 115.124C106.592 115.38 106.418 115.604 106.196 115.775C105.284 116.324 103.448 115.685 102.827 115.398C102.943 115 102.95 114.579 102.849 114.178C102.748 113.776 102.541 113.409 102.251 113.114C102.127 112.998 101.968 112.927 101.799 112.914C101.63 112.9 101.461 112.944 101.32 113.039C100.743 113.487 100.275 114.06 99.9505 114.714C99.6257 115.368 99.4525 116.087 99.444 116.817C99.4356 116.979 99.4818 117.139 99.5751 117.271C99.6685 117.404 99.8037 117.501 99.959 117.548C100.319 117.654 100.703 117.654 101.063 117.548C101.423 117.441 101.745 117.233 101.99 116.948L103.475 117.535C103.778 117.649 104.027 117.871 104.174 118.159C104.766 119.404 104.471 120.22 103.126 121.071C103.09 121.095 103.057 121.123 103.029 121.156C100.575 121.246 98.2243 122.167 96.363 123.769C96.2061 123.918 96.1147 124.122 96.1088 124.338C96.1029 124.554 96.183 124.764 96.3315 124.92C96.48 125.077 96.6848 125.169 96.9007 125.175C97.1167 125.181 97.3261 125.101 97.483 124.952C98.9517 123.652 100.819 122.89 102.779 122.793C104.738 122.696 106.672 123.269 108.262 124.417C108.35 124.476 108.449 124.517 108.553 124.538C108.658 124.559 108.765 124.559 108.869 124.538C108.974 124.517 109.075 124.476 109.164 124.416C109.253 124.357 109.33 124.28 109.389 124.191C109.448 124.102 109.489 124.001 109.51 123.896C109.531 123.791 109.531 123.682 109.509 123.577C109.489 123.472 109.447 123.372 109.387 123.284ZM97.535 119.847C97.6395 119.728 97.7072 119.582 97.7299 119.425C97.7525 119.269 97.7291 119.109 97.6625 118.966C97.5959 118.823 97.489 118.702 97.3549 118.618C97.2207 118.534 97.0651 118.492 96.907 118.495L96.861 118.496C96.1208 118.507 95.3907 118.67 94.716 118.975C94.0412 119.28 93.4361 119.719 92.938 120.267C92.192 121.198 91.823 122.376 91.904 123.566C91.925 123.766 92.0191 123.951 92.1683 124.085C92.3175 124.219 92.5112 124.294 92.712 124.294C92.739 124.294 92.7661 124.293 92.793 124.29C93.007 124.268 93.2038 124.163 93.3405 123.997C93.4772 123.831 93.5428 123.617 93.523 123.403C93.4869 122.643 93.7262 121.896 94.197 121.298C94.5591 120.925 94.9925 120.628 95.4714 120.426C95.9504 120.224 96.4651 120.12 96.985 120.12C97.1966 120.104 97.3937 120.006 97.534 119.847H97.535Z\" fill=\"%23949699\"/>%0A<path d=\"M80.144 123.985C80.068 125.36 79.071 125.307 77.696 125.231L34.367 123.966C33.9595 123.944 33.5637 123.822 33.2143 123.611C32.8649 123.4 32.5726 123.107 32.3631 122.757C32.1536 122.407 32.0332 122.01 32.0126 121.603C31.9919 121.195 32.0716 120.789 32.2447 120.419C32.4178 120.05 32.679 119.728 33.0052 119.483C33.3315 119.238 33.713 119.077 34.1162 119.014C34.5193 118.951 34.9318 118.987 35.3175 119.121C35.7031 119.254 36.0501 119.48 36.328 119.779C36.2931 119.547 36.2837 119.313 36.3 119.079C36.349 118.167 36.697 117.298 37.2903 116.604C37.8835 115.91 38.6889 115.431 39.5818 115.241C40.4747 115.052 41.4052 115.161 42.2294 115.554C43.0536 115.946 43.7255 116.599 44.141 117.412L44.149 117.413C44.6416 117.142 45.1646 116.93 45.707 116.782C46.6991 116.51 47.7275 116.396 48.755 116.442C48.8133 116.438 48.8718 116.439 48.93 116.443C50.3562 116.502 51.75 116.886 53.005 117.566C53.4974 117.837 53.9472 118.178 54.34 118.58L54.348 118.589C55.6243 117.385 57.2685 116.646 59.016 116.49C60.0871 116.33 61.1718 116.281 62.253 116.343C64.1697 116.413 66.0498 116.888 67.77 117.736C68.2914 117.999 68.7767 118.328 69.214 118.715L69.222 118.723C69.8276 118.202 70.5706 117.867 71.3619 117.757C72.1532 117.647 72.9593 117.768 73.6838 118.105C74.4082 118.442 75.0203 118.98 75.4467 119.655C75.8731 120.331 76.0957 121.115 76.088 121.914C76.4622 121.609 76.917 121.419 77.397 121.368C77.8771 121.317 78.3616 121.407 78.7915 121.627C79.2215 121.846 79.5782 122.186 79.8184 122.605C80.0585 123.023 80.1717 123.503 80.144 123.985Z\" fill=\"white\"/>%0A<path opacity=\"0.3\" d=\"M46.346 119.556C46.3384 119.665 46.3096 119.771 46.261 119.869C46.2119 119.966 46.1443 120.053 46.062 120.125C45.938 120.233 45.7848 120.301 45.6218 120.322C45.4588 120.343 45.2933 120.315 45.1462 120.241C44.9992 120.168 44.8772 120.053 44.7956 119.91C44.714 119.768 44.6766 119.604 44.688 119.44C44.7277 118.949 44.6503 118.456 44.462 118.001C44.3758 117.796 44.2714 117.599 44.15 117.412C44.6428 117.142 45.1658 116.93 45.708 116.782C46.195 117.621 46.4174 118.588 46.346 119.556ZM69.215 118.715C68.541 119.173 68.0543 119.858 67.844 120.645C67.7939 120.829 67.6822 120.99 67.5277 121.101C67.3731 121.212 67.1851 121.267 66.995 121.256C66.939 121.255 66.8834 121.247 66.83 121.23C66.7242 121.203 66.6249 121.155 66.538 121.089C66.4069 120.99 66.3083 120.854 66.2545 120.698C66.2008 120.543 66.1943 120.375 66.236 120.216C66.494 119.257 67.0273 118.395 67.77 117.736C68.2913 117.999 68.7767 118.328 69.214 118.715H69.215ZM54.341 118.58C54.0311 118.859 53.8352 119.242 53.791 119.657C53.7746 119.874 53.6739 120.075 53.5105 120.219C53.3471 120.362 53.134 120.436 52.917 120.424H52.909C52.7997 120.418 52.6927 120.39 52.5942 120.343C52.4957 120.295 52.4078 120.228 52.3355 120.145C52.2633 120.063 52.2081 119.967 52.1733 119.864C52.1386 119.76 52.1248 119.65 52.133 119.541C52.1926 118.803 52.5007 118.107 53.007 117.566C53.499 117.837 53.9485 118.178 54.341 118.58Z\" fill=\"%23949699\"/>%0A<path d=\"M44.7 24.36C44.8187 24.4788 44.9128 24.6197 44.9769 24.7748C45.0411 24.9299 45.0741 25.0962 45.074 25.264V27.028C45.0647 27.3606 44.926 27.6765 44.6875 27.9085C44.4489 28.1405 44.1293 28.2703 43.7965 28.2703C43.4638 28.2703 43.1441 28.1405 42.9056 27.9085C42.667 27.6765 42.5283 27.3606 42.519 27.028V25.263C42.5193 25.0104 42.5944 24.7636 42.7348 24.5537C42.8753 24.3438 43.0748 24.1802 43.3081 24.0836C43.5415 23.987 43.7982 23.9617 44.046 24.0109C44.2937 24.0601 44.5213 24.1816 44.7 24.36ZM40.451 20.64H38.686C38.3534 20.6493 38.0375 20.788 37.8055 21.0266C37.5735 21.2651 37.4438 21.5848 37.4438 21.9175C37.4438 22.2503 37.5735 22.5699 37.8055 22.8085C38.0375 23.047 38.3534 23.1857 38.686 23.195H40.451C40.7836 23.1857 41.0995 23.047 41.3315 22.8085C41.5635 22.5699 41.6933 22.2503 41.6933 21.9175C41.6933 21.5848 41.5635 21.2651 41.3315 21.0266C41.0995 20.788 40.7836 20.6493 40.451 20.64ZM43.797 15.529C43.4581 15.529 43.133 15.6637 42.8933 15.9033C42.6537 16.143 42.519 16.4681 42.519 16.807V18.571C42.5142 18.7418 42.5437 18.9118 42.6058 19.071C42.6678 19.2301 42.7612 19.3752 42.8803 19.4977C42.9994 19.6202 43.1418 19.7175 43.2992 19.784C43.4566 19.8505 43.6257 19.8848 43.7965 19.8848C43.9674 19.8848 44.1365 19.8505 44.2938 19.784C44.4512 19.7175 44.5936 19.6202 44.7127 19.4977C44.8318 19.3752 44.9252 19.2301 44.9872 19.071C45.0493 18.9118 45.0788 18.7418 45.074 18.571V16.806C45.074 16.4671 44.9394 16.142 44.6997 15.9023C44.46 15.6627 44.135 15.528 43.796 15.528L43.797 15.529ZM49.809 21.015C49.5701 20.7757 49.2461 20.6409 48.908 20.64H47.144C46.9732 20.6352 46.8032 20.6647 46.6441 20.7268C46.4849 20.7888 46.3398 20.8822 46.2173 21.0013C46.0948 21.1204 45.9975 21.2628 45.931 21.4202C45.8645 21.5776 45.8303 21.7467 45.8303 21.9175C45.8303 22.0884 45.8645 22.2575 45.931 22.4148C45.9975 22.5722 46.0948 22.7146 46.2173 22.8337C46.3398 22.9528 46.4849 23.0462 46.6441 23.1082C46.8032 23.1703 46.9732 23.1998 47.144 23.195H48.908C49.1602 23.1942 49.4065 23.1187 49.6159 22.9782C49.8253 22.8376 49.9884 22.6382 50.0848 22.4052C50.1811 22.1721 50.2063 21.9157 50.1572 21.6684C50.1082 21.421 49.987 21.1937 49.809 21.015Z\" fill=\"%23F0F0F0\"/>%0A<path d=\"M42.857 79.971C43.0038 80.3249 43.0185 80.7199 42.8985 81.0838C42.7784 81.4476 42.5316 81.7563 42.2031 81.9534C41.8745 82.1506 41.486 82.2231 41.1084 82.1578C40.7309 82.0924 40.3893 81.8936 40.1461 81.5975C39.9029 81.3014 39.7741 80.9278 39.7834 80.5447C39.7926 80.1617 39.9391 79.7946 40.1963 79.5106C40.4535 79.2266 40.8042 79.0444 41.1845 78.9973C41.5647 78.9502 41.9493 79.0413 42.268 79.254C42.5309 79.4295 42.7358 79.679 42.857 79.971ZM51.501 76.193C51.0231 75.8737 50.4463 75.7367 49.8759 75.8071C49.3055 75.8775 48.7793 76.1505 48.3933 76.5764C48.0073 77.0022 47.7872 77.5526 47.7731 78.1272C47.759 78.7018 47.9518 79.2624 48.3164 79.7067C48.681 80.151 49.1932 80.4495 49.7595 80.5478C50.3258 80.6461 50.9085 80.5376 51.4016 80.2421C51.8946 79.9467 52.265 79.4839 52.4453 78.9382C52.6257 78.3924 52.6039 77.8 52.384 77.269C52.2026 76.8309 51.8953 76.4564 51.501 76.193ZM45.021 76.723C44.8618 76.6164 44.6696 76.5706 44.4794 76.5938C44.2893 76.6171 44.1138 76.7079 43.985 76.8498C43.8562 76.9916 43.7826 77.175 43.7777 77.3665C43.7728 77.558 43.8369 77.7449 43.9583 77.8932C44.0797 78.0414 44.2503 78.1411 44.439 78.174C44.6278 78.207 44.8221 78.171 44.9865 78.0727C45.1509 77.9744 45.2746 77.8202 45.3349 77.6384C45.3952 77.4565 45.3881 77.2591 45.315 77.082C45.2544 76.9357 45.1517 76.8108 45.02 76.723H45.021ZM109.71 84.088C109.604 83.9825 109.47 83.9108 109.324 83.8817C109.177 83.8527 109.026 83.8677 108.888 83.9249C108.75 83.9821 108.633 84.0788 108.55 84.2029C108.467 84.327 108.423 84.4728 108.423 84.622V85.662C108.423 85.8361 108.484 86.0047 108.595 86.1392C108.706 86.2736 108.859 86.3656 109.03 86.3996C109.201 86.4335 109.378 86.4072 109.532 86.3253C109.685 86.2433 109.806 86.1107 109.873 85.95C109.91 85.8585 109.93 85.7608 109.93 85.662V84.621C109.93 84.5219 109.911 84.4237 109.873 84.332C109.836 84.2403 109.78 84.157 109.71 84.087V84.088ZM112.721 82.118C112.58 81.9768 112.389 81.897 112.19 81.896H111.15C111.049 81.8923 110.948 81.9091 110.853 81.9453C110.758 81.9815 110.672 82.0364 110.599 82.1067C110.526 82.177 110.468 82.2614 110.429 82.3546C110.389 82.4479 110.369 82.5482 110.369 82.6495C110.369 82.7508 110.389 82.8511 110.429 82.9444C110.468 83.0376 110.526 83.1219 110.599 83.1923C110.672 83.2626 110.758 83.3175 110.853 83.3537C110.948 83.3899 111.049 83.4067 111.15 83.403H112.19C112.339 83.4021 112.483 83.3575 112.607 83.2746C112.73 83.1917 112.826 83.0742 112.883 82.937C112.939 82.7997 112.954 82.6488 112.925 82.5031C112.897 82.3574 112.826 82.2234 112.721 82.118ZM109.71 79.102C109.604 78.9965 109.47 78.9248 109.324 78.8957C109.177 78.8667 109.026 78.8817 108.888 78.9389C108.75 78.9961 108.633 79.0928 108.55 79.2169C108.467 79.341 108.423 79.4868 108.423 79.636V80.676C108.423 80.8501 108.484 81.0187 108.595 81.1532C108.706 81.2876 108.859 81.3796 109.03 81.4136C109.201 81.4475 109.378 81.4212 109.532 81.3393C109.685 81.2573 109.806 81.1247 109.873 80.964C109.91 80.8725 109.93 80.7748 109.93 80.676V79.636C109.93 79.5369 109.911 79.4387 109.873 79.347C109.836 79.2553 109.78 79.172 109.71 79.102ZM107.204 81.896H106.163C105.968 81.9031 105.783 81.9856 105.648 82.1261C105.512 82.2667 105.436 82.4543 105.436 82.6495C105.436 82.8447 105.512 83.0323 105.648 83.1729C105.783 83.3134 105.968 83.3959 106.163 83.403H107.204C107.399 83.3959 107.584 83.3134 107.719 83.1729C107.855 83.0323 107.931 82.8447 107.931 82.6495C107.931 82.4543 107.855 82.2667 107.719 82.1261C107.584 81.9856 107.399 81.9031 107.204 81.896ZM77.792 102.308C77.6501 102.167 77.4581 102.088 77.258 102.088H76.218C76.0229 102.095 75.8382 102.178 75.7027 102.318C75.5672 102.459 75.4915 102.646 75.4915 102.841C75.4915 103.037 75.5672 103.224 75.7027 103.365C75.8382 103.505 76.0229 103.588 76.218 103.595H77.258C77.3571 103.595 77.4553 103.576 77.547 103.538C77.6387 103.501 77.722 103.445 77.792 103.375C77.8622 103.305 77.918 103.222 77.956 103.13C77.994 103.039 78.0136 102.941 78.0136 102.841C78.0136 102.742 77.994 102.644 77.956 102.553C77.918 102.461 77.8622 102.378 77.792 102.308ZM72.272 102.088H71.232C71.0826 102.087 70.9364 102.131 70.812 102.214C70.6876 102.297 70.5906 102.414 70.5334 102.552C70.4761 102.69 70.4612 102.842 70.4905 102.989C70.5198 103.135 70.5921 103.27 70.698 103.375C70.768 103.445 70.8513 103.501 70.943 103.538C71.0347 103.576 71.1329 103.595 71.232 103.595H72.272C72.4671 103.588 72.6518 103.505 72.7873 103.365C72.9228 103.224 72.9985 103.037 72.9985 102.841C72.9985 102.646 72.9228 102.459 72.7873 102.318C72.6518 102.178 72.4671 102.095 72.272 102.088ZM74.245 99.078C74.0456 99.078 73.8544 99.1571 73.7133 99.2978C73.5721 99.4386 73.4925 99.6296 73.492 99.829V100.869C73.4991 101.064 73.5816 101.249 73.7221 101.384C73.8627 101.52 74.0503 101.596 74.2455 101.596C74.4407 101.596 74.6283 101.52 74.7689 101.384C74.9094 101.249 74.9919 101.064 74.999 100.869V99.829C74.9985 99.6296 74.9189 99.4386 74.7777 99.2978C74.6366 99.1571 74.4454 99.078 74.246 99.078H74.245ZM74.245 104.064C74.0457 104.064 73.8545 104.143 73.7133 104.283C73.5721 104.424 73.4925 104.615 73.492 104.814V105.855C73.4922 105.979 73.5229 106.101 73.5813 106.21C73.6397 106.319 73.724 106.412 73.8269 106.481C73.9298 106.549 74.048 106.592 74.1712 106.604C74.2943 106.616 74.4186 106.598 74.533 106.551C74.624 106.513 74.7069 106.457 74.777 106.388C74.9182 106.247 74.9977 106.055 74.998 105.855V104.814C74.9975 104.615 74.9179 104.424 74.7767 104.283C74.6355 104.143 74.4443 104.064 74.245 104.064ZM75.367 26.1C75.367 26.1 88.832 14.636 96 33.755C96 33.755 101.212 33.851 104.177 37.638C106.04 40.0925 106.903 43.1619 106.593 46.2276C106.282 49.2933 104.822 52.1274 102.505 54.159C100.977 55.5381 99.2578 56.6896 97.401 57.578C97.401 57.578 99.085 72.194 80.349 68.123C80.349 68.123 68.534 74.886 59.671 64.407C59.671 64.407 43.29 65.825 48.906 48.1C48.906 48.1 40.343 41.719 46.546 32.679C46.546 32.679 50.079 27.361 57.973 29.134C57.973 29.134 57.973 21.327 66.93 21.512C66.93 21.512 73.397 21.669 75.367 26.1Z\" fill=\"white\"/>%0A<path d=\"M104.935 37.044C102.341 33.732 98.269 32.999 96.679 32.838C94.285 26.761 90.966 23.136 86.809 22.06C82.008 20.814 77.55 23.36 75.672 24.666C73.058 20.746 67.22 20.556 66.95 20.549C63.833 20.496 61.352 21.324 59.597 23.043C58.2724 24.3908 57.4064 26.1218 57.122 27.99C49.419 26.771 45.898 31.916 45.753 32.133C40.062 40.426 45.93 46.732 47.8 48.422C46.132 54.055 46.491 58.414 48.87 61.384C51.995 65.287 57.547 65.451 59.25 65.391C60.7697 67.2177 62.6744 68.6859 64.8277 69.6907C66.981 70.6954 69.3298 71.2118 71.706 71.203C74.749 71.168 77.7469 70.4623 80.486 69.136C87.026 70.498 91.906 69.77 94.994 66.973C98.218 64.054 98.447 59.806 98.402 58.153C100.122 57.2692 101.719 56.1656 103.154 54.87C105.635 52.665 107.196 49.6073 107.526 46.3045C107.856 43.0016 106.932 39.6954 104.936 37.043L104.935 37.044ZM105.659 46.149C105.369 48.9774 104.009 51.588 101.858 53.447C100.397 54.7629 98.7551 55.8624 96.982 56.712L96.37 57.01L96.445 57.686C96.451 57.735 96.95 62.618 93.689 65.557C91.031 67.951 86.613 68.499 80.553 67.182L80.191 67.104L79.871 67.286C79.417 67.545 68.631 73.51 60.405 63.784L60.083 63.405L59.588 63.446C59.525 63.454 53.359 63.922 50.366 60.173C48.334 57.628 48.152 53.664 49.823 48.39L50.028 47.738L49.483 47.328C49.164 47.089 41.748 41.372 47.346 33.214C47.477 33.019 50.651 28.474 57.762 30.072L58.936 30.336V29.133C59.0119 27.3697 59.7259 25.6941 60.945 24.418C61.7561 23.708 62.7026 23.1696 63.7275 22.8353C64.7523 22.501 65.8342 22.3778 66.908 22.473C66.967 22.474 72.786 22.66 74.488 26.49L75.01 27.663L75.99 26.833C76.041 26.79 81.113 22.563 86.338 23.925C89.978 24.873 92.926 28.294 95.099 34.092L95.33 34.702L95.981 34.717C96.029 34.718 100.783 34.863 103.42 38.231C105.149 40.4879 105.95 43.3199 105.66 46.148L105.659 46.149ZM92.904 74.886C92.969 75.1324 92.9338 75.3945 92.8059 75.6149C92.6781 75.8353 92.4681 75.9961 92.222 76.062L86.643 77.535C86.4547 77.5844 86.2559 77.5756 86.0728 77.5097C85.8896 77.4438 85.7307 77.324 85.617 77.166C85.5033 77.008 85.4402 76.8193 85.4359 76.6247C85.4316 76.4301 85.4864 76.2388 85.593 76.076C86.2495 75.0788 86.884 74.0672 87.496 73.042L83.874 73.57C83.7491 73.5895 83.6216 73.5842 83.4988 73.5544C83.3759 73.5247 83.2601 73.471 83.158 73.3965C83.0559 73.3219 82.9695 73.228 82.9037 73.1201C82.8379 73.0122 82.794 72.8924 82.7745 72.7675C82.755 72.6426 82.7603 72.5151 82.7901 72.3923C82.8198 72.2694 82.8735 72.1536 82.948 72.0515C83.0225 71.9494 83.1164 71.863 83.2244 71.7972C83.3323 71.7314 83.4521 71.6875 83.577 71.668C88.766 70.858 89.102 70.941 89.304 70.992C89.4571 71.0332 89.5986 71.1092 89.7174 71.2142C89.8363 71.3191 89.9292 71.4502 89.989 71.597C90.147 72.001 90.261 72.293 88.547 75.042L91.731 74.201C91.9776 74.1367 92.2397 74.1728 92.4597 74.3014C92.6798 74.43 92.8399 74.6406 92.905 74.887L92.904 74.886ZM86.583 88.295C86.6772 88.5322 86.6733 88.7972 86.5722 89.0315C86.4711 89.2659 86.2811 89.4506 86.044 89.545C85.048 89.941 80.036 91.923 79.206 92.104C79.1416 92.1178 79.0759 92.1249 79.01 92.125C78.8571 92.1249 78.7059 92.0924 78.5665 92.0296C78.4271 91.9669 78.3025 91.8753 78.201 91.761C77.815 91.296 77.447 90.854 81.211 81.772L76.699 83.647C76.4646 83.738 76.2038 83.7337 75.9726 83.635C75.7413 83.5363 75.5578 83.3511 75.4613 83.1189C75.3647 82.8867 75.3629 82.6259 75.4561 82.3924C75.5493 82.1588 75.7301 81.971 75.96 81.869L82.633 79.096C82.8094 79.0227 83.0036 79.0035 83.191 79.0409C83.3783 79.0783 83.5503 79.1706 83.685 79.306C83.8198 79.4414 83.9112 79.6138 83.9477 79.8013C83.9842 79.9888 83.9641 80.1829 83.89 80.359C82.416 83.847 80.889 87.712 80.222 89.731L85.334 87.756C85.5712 87.6618 85.8362 87.6657 86.0705 87.7668C86.3049 87.8678 86.4896 88.0578 86.584 88.295H86.583ZM89.818 33.971C89.6896 33.8663 89.5364 33.7964 89.3732 33.7683C89.2099 33.7402 89.0422 33.7547 88.8862 33.8104C88.7302 33.8661 88.5912 33.9612 88.4827 34.0864C88.3742 34.2116 88.2999 34.3626 88.267 34.525C88.252 34.596 87.542 38.018 86.282 42.051C83.3732 41.0174 80.3947 40.1916 77.369 39.58C74.2189 39.0412 70.9811 39.3899 68.018 40.587C67.991 40.596 67.962 40.595 67.935 40.607C67.827 40.655 67.726 40.709 67.621 40.76L67.209 40.96C66.8647 41.1427 66.5294 41.3415 66.204 41.556L65.927 41.739C65.5682 41.9882 65.223 42.2566 64.893 42.543C64.87 42.563 64.844 42.579 64.821 42.599C64.803 42.615 64.789 42.632 64.771 42.648C64.471 42.914 64.1887 43.1897 63.924 43.475L63.896 43.506C60.229 47.467 59.74 53.03 59.679 54.666L59.678 54.698L59.671 54.972V55.008L59.67 55.127V55.128C59.7081 55.2766 59.7461 55.4253 59.784 55.574C59.8578 55.7113 59.9638 55.8287 60.093 55.916C62.8391 57.9019 66.0662 59.1175 69.44 59.437C69.9207 59.4837 70.4037 59.5123 70.889 59.523C70.99 59.523 71.09 59.51 71.191 59.508C71.477 59.501 71.763 59.488 72.048 59.466C72.2563 59.4507 72.4644 59.4314 72.672 59.408C72.859 59.386 73.045 59.357 73.231 59.328C73.6603 59.2633 74.0853 59.1813 74.506 59.082L74.789 59.014C77.347 58.3687 79.7057 57.1007 81.655 55.323C84.086 53.106 86.058 48.706 87.489 44.556C89.9208 45.4792 92.2798 46.584 94.546 47.861C94.7087 47.9538 94.895 47.9971 95.082 47.9857C95.269 47.9742 95.4485 47.9085 95.5987 47.7965C95.7489 47.6846 95.8632 47.5312 95.9275 47.3553C95.9919 47.1793 96.0035 46.9884 95.961 46.806C95.868 46.411 93.65 37.093 89.815 33.972L89.818 33.971ZM76.335 56.464L76.311 56.474C75.8798 56.6558 75.4399 56.8163 74.993 56.955L74.968 56.963C74.7712 57.0223 74.5732 57.0773 74.374 57.128C74.233 57.164 74.09 57.198 73.947 57.23L73.45 57.338C73.125 57.398 72.796 57.45 72.46 57.488C72.387 57.496 72.31 57.501 72.236 57.508C71.916 57.539 71.592 57.561 71.263 57.569L71.081 57.573C69.3377 57.5882 67.6046 57.3048 65.957 56.735L65.795 56.679C65.413 56.546 65.028 56.393 64.641 56.226L64.388 56.118C64.018 55.952 63.644 55.766 63.268 55.569L62.998 55.43C62.5267 55.1742 62.0651 54.901 61.614 54.611C61.709 52.898 62.335 47.186 66.36 43.839C66.439 43.774 66.521 43.715 66.602 43.652C66.8304 43.4698 67.0666 43.2976 67.31 43.136C67.409 43.072 67.514 43.018 67.615 42.957C67.862 42.808 68.109 42.659 68.376 42.528L68.393 42.52C72.238 43.839 76.648 47.299 76.914 56.203C76.723 56.2945 76.53 56.3815 76.335 56.464ZM80.36 53.9C79.863 54.3519 79.3343 54.7676 78.778 55.144C78.247 47.176 74.442 43.392 71.094 41.608C73.0616 41.2233 75.0807 41.18 77.063 41.48C79.9871 42.0863 82.8665 42.8915 85.681 43.89C84.338 47.819 82.523 51.927 80.36 53.9ZM88.096 42.717C88.7191 40.7285 89.2717 38.7185 89.753 36.691C91.491 38.989 92.8 42.754 93.504 45.11C91.7434 44.2197 89.938 43.421 88.095 42.717H88.096ZM72.005 51.239C72.0983 51.3844 72.1507 51.5522 72.1568 51.7248C72.163 51.8974 72.1226 52.0685 72.0398 52.2202C71.9571 52.3718 71.8351 52.4984 71.6867 52.5867C71.5382 52.675 71.3687 52.7217 71.196 52.722C71.1039 52.7219 71.0124 52.7088 70.924 52.683L69.125 52.154L68.702 53.67C68.6686 53.7924 68.6113 53.9071 68.5334 54.0073C68.4555 54.1076 68.3585 54.1914 68.2481 54.254C68.1377 54.3167 68.016 54.3568 67.89 54.3723C67.764 54.3877 67.6362 54.3781 67.514 54.3439C67.3917 54.3098 67.2774 54.2518 67.1776 54.1733C67.0779 54.0949 66.9946 53.9974 66.9326 53.8867C66.8706 53.7759 66.8311 53.654 66.8164 53.5279C66.8018 53.4018 66.8121 53.2741 66.847 53.152L67.277 51.61L65.019 50.945C64.8944 50.9123 64.7775 50.8549 64.6755 50.7763C64.5734 50.6976 64.4882 50.5993 64.4248 50.4871C64.3614 50.3749 64.3212 50.2512 64.3065 50.1232C64.2919 49.9951 64.303 49.8655 64.3394 49.7419C64.3757 49.6183 64.4365 49.5032 64.5181 49.4035C64.5997 49.3038 64.7005 49.2215 64.8145 49.1614C64.9285 49.1014 65.0534 49.0648 65.1818 49.0539C65.3102 49.043 65.4395 49.058 65.562 49.098L67.795 49.755L68.332 47.83C68.3654 47.7075 68.4227 47.5929 68.5006 47.4927C68.5785 47.3924 68.6754 47.3086 68.7858 47.246C68.8962 47.1833 69.018 47.1431 69.1439 47.1277C69.2699 47.1123 69.3977 47.1219 69.52 47.156C69.6423 47.1902 69.7566 47.2482 69.8563 47.3266C69.9561 47.4051 70.0394 47.5025 70.1014 47.6133C70.1634 47.7241 70.2028 47.846 70.2175 47.9721C70.2322 48.0982 70.2218 48.2259 70.187 48.348L69.642 50.298L71.466 50.835C71.6884 50.9004 71.8798 51.0438 72.005 51.239Z\" fill=\"black\" fill-opacity=\"0.45\"/>%0A<path opacity=\"0.3\" d=\"M138.718 103.091C141.856 102.296 145.057 101.77 148.285 101.519C147.258 103.646 145.704 107.275 145.536 110.079C145.284 114.301 147.553 119.909 140.81 120.477C135.376 120.934 137.636 108.094 138.718 103.091ZM128.397 113.419C132.682 116.822 134.572 111.529 134.572 109.071C134.678 107.338 134.924 105.616 135.308 103.922L127.339 105.856C126.427 107.94 125.646 111.235 128.397 113.419ZM152.279 112.671C156.901 114.886 158.493 107.426 159.022 103.061C156.623 102.325 154.156 101.834 151.658 101.593C151.498 101.574 151.325 101.569 151.161 101.554C149.611 105.012 147.966 110.605 152.279 112.671ZM172.001 148.257C171.679 147.462 171.411 146.685 171.19 145.935C161.683 145.291 154.694 139.776 153.949 133.715C152.794 124.329 147.014 125.961 147.014 125.961L150.233 131.015L149.65 131.181C148.392 127.841 134.692 127.97 116.06 129.644C94.1 131.616 87.689 120.827 90.418 112.486C93.133 104.189 92.853 105.417 91.201 104.807L91.429 105.359C87.241 108.481 87.686 114.044 87.686 114.044C82.83 118.272 79.087 131.614 79.887 132.757C80.687 133.9 85.095 132.73 85.304 132.774C85.506 132.818 145.139 132.631 148.909 132.62C148.096 149.043 161.245 150.137 162.769 151.245C164.299 152.358 162.909 157.504 164.439 164.459C165.969 171.414 170.773 169.381 170.773 169.381C174.175 169.049 173.846 152.815 172.001 148.257Z\" fill=\"%23949699\"/>%0A</g>%0A<defs>%0A<clipPath id=\"clip0_2873_51802\">%0A<rect width=\"192\" height=\"192\" fill=\"white\"/>%0A</clipPath>%0A</defs>%0A</svg>%0A')}::ng-deep .sd-select-panel.sd-multiple .mat-pseudo-checkbox{transform:scale(.75);margin-right:8px!important}::ng-deep .sd-select-panel.sd-multiple .mdc-list-item__primary-text{font-size:14px;white-space:normal}::ng-deep .mat-mdc-select-panel.sd-select-panel{max-width:90vw!important}::ng-deep .mat-mdc-select-panel.sd-select-panel .mat-mdc-option .mdc-list-item__primary-text{white-space:normal;word-break:break-word;line-height:1.4}\n"] }]
|
|
493
523
|
}], ctorParameters: () => [] });
|
|
494
524
|
|
|
495
525
|
/**
|