ca-components 1.1.8 → 1.1.9
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/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +4 -4
- package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.mjs +9 -5
- package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-get-icon.pipe.mjs +1 -2
- package/fesm2022/ca-components.mjs +10 -8
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-input/config/ca-input.config.d.ts +14 -13
- package/lib/components/ca-input-dropdown/components/ca-input-dropdown-svg-template/ca-input-dropdown-svg-template.component.d.ts +3 -1
- package/lib/components/ca-input-dropdown/pipes/input-dropdown-get-icon.pipe.d.ts +2 -13
- package/package.json +1 -1
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_atro.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_beall.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_bedard.svg +4 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_butler.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_de_lucio.svg.svg +17 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_dorsey.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_east.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_fontaine.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_fruehauf.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_gallegos.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_great_dane.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_heil.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_hudson.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_hyndai.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_kaufman.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_mac.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_manac.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_polar.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_ravens.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_strick.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_timpte.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_trail_king.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_tremcar.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_tytal.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_utility.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_vanguard.svg +6 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_vantage.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_wabash.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_walinga.svg +3 -0
- package/src/assets/ca-components/svg/common/trailermake/ic_trailer_wilson.svg +6 -0
|
@@ -60,8 +60,8 @@ export declare class CaFilterComponent implements OnDestroy {
|
|
|
60
60
|
addressList: AddressList[];
|
|
61
61
|
usaStates: ArrayStatus[];
|
|
62
62
|
canadaStates: ArrayStatus[];
|
|
63
|
-
setFilter: EventEmitter<
|
|
64
|
-
clearAll: EventEmitter<
|
|
63
|
+
setFilter: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
64
|
+
clearAll: EventEmitter<filterOutput | filterOutputWithParams>;
|
|
65
65
|
private destroy$;
|
|
66
66
|
isSearchExpanded: boolean;
|
|
67
67
|
isFilterActive: boolean;
|
|
@@ -21,6 +21,19 @@ export interface ICaInputDateTimePicker {
|
|
|
21
21
|
expiredDateInvalid?: boolean;
|
|
22
22
|
isFromDate?: boolean;
|
|
23
23
|
}
|
|
24
|
+
export interface ICaInputWithDropdown {
|
|
25
|
+
withText: boolean;
|
|
26
|
+
svg: boolean;
|
|
27
|
+
image: boolean;
|
|
28
|
+
iconsPath: string;
|
|
29
|
+
activeItemIconKey: string;
|
|
30
|
+
url: string;
|
|
31
|
+
nameInitialsInsteadUrl?: string;
|
|
32
|
+
template?: string;
|
|
33
|
+
color?: string;
|
|
34
|
+
class?: string;
|
|
35
|
+
remove?: boolean;
|
|
36
|
+
}
|
|
24
37
|
export interface ICaInput {
|
|
25
38
|
id?: number;
|
|
26
39
|
name: string;
|
|
@@ -121,19 +134,7 @@ export interface ICaInput {
|
|
|
121
134
|
defaultValue?: string;
|
|
122
135
|
isDropdown?: boolean;
|
|
123
136
|
dropdownWidthClass?: string;
|
|
124
|
-
dropdownImageInput?:
|
|
125
|
-
withText: boolean;
|
|
126
|
-
svg: boolean;
|
|
127
|
-
image: boolean;
|
|
128
|
-
iconsPath: string;
|
|
129
|
-
activeItemIconKey: string;
|
|
130
|
-
url: string;
|
|
131
|
-
nameInitialsInsteadUrl?: string;
|
|
132
|
-
template?: string;
|
|
133
|
-
color?: string;
|
|
134
|
-
class?: string;
|
|
135
|
-
remove?: boolean;
|
|
136
|
-
} | null;
|
|
137
|
+
dropdownImageInput?: ICaInputWithDropdown | null;
|
|
137
138
|
isInvalidSearchInDropdown?: boolean;
|
|
138
139
|
selectedDropdown?: boolean;
|
|
139
140
|
mergeDropdownBodyWithInput?: boolean;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { OptionModel } from '../../models/input-dropdown-option.model';
|
|
4
|
+
import { ICaInputWithDropdown } from '../../../ca-input/config';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class CaInputDropdownSvgTemplateComponent {
|
|
7
|
+
dropdownWithImage?: ICaInputWithDropdown | null;
|
|
6
8
|
options: OptionModel[];
|
|
7
9
|
activeItem: OptionModel | null;
|
|
8
10
|
getSuperControl: AbstractControl<any, any> | null;
|
|
@@ -14,5 +16,5 @@ export declare class CaInputDropdownSvgTemplateComponent {
|
|
|
14
16
|
constructor();
|
|
15
17
|
onActiveItemEmit(option: OptionModel): void;
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaInputDropdownSvgTemplateComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgTemplateComponent, "app-ca-input-dropdown-svg-template", never, { "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CaInputDropdownSvgTemplateComponent, "app-ca-input-dropdown-svg-template", never, { "dropdownWithImage": { "alias": "dropdownWithImage"; "required": false; }; "options": { "alias": "options"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; "getSuperControl": { "alias": "getSuperControl"; "required": false; }; "inputHoveredItem": { "alias": "inputHoveredItem"; "required": false; }; }, { "onActiveItem": "onActiveItem"; }, never, never, true, never>;
|
|
18
20
|
}
|
|
@@ -1,20 +1,9 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { ICaInputWithDropdown } from '../../ca-input/config';
|
|
2
3
|
import { OptionModel } from '../models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class InputDropdownGetIconsPipe implements PipeTransform {
|
|
5
|
-
transform(option:
|
|
6
|
-
withText: boolean;
|
|
7
|
-
svg: boolean;
|
|
8
|
-
image: boolean;
|
|
9
|
-
iconsPath: string;
|
|
10
|
-
activeItemIconKey: string;
|
|
11
|
-
url: string;
|
|
12
|
-
nameInitialsInsteadUrl?: string;
|
|
13
|
-
template?: string;
|
|
14
|
-
color?: string;
|
|
15
|
-
class?: string;
|
|
16
|
-
remove?: boolean;
|
|
17
|
-
}, activeItem: OptionModel | null): string;
|
|
6
|
+
transform(option: ICaInputWithDropdown, activeItem: OptionModel | null): string;
|
|
18
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownGetIconsPipe, never>;
|
|
19
8
|
static ɵpipe: i0.ɵɵPipeDeclaration<InputDropdownGetIconsPipe, "inputDropdownGetIcons", true>;
|
|
20
9
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3745 3.77499C4.33118 3.8084 4.30131 3.85628 4.29036 3.90989L0.0163555 15.9179C-0.0196445 16.0389 0.0223556 16.0999 0.143356 16.0999H3.12736C3.18194 16.1027 3.23573 16.0859 3.27901 16.0525C3.32229 16.0192 3.35221 15.9714 3.36336 15.9179L3.94536 14.0079H7.96836L8.55036 15.9179C8.56131 15.9715 8.59118 16.0194 8.6345 16.0528C8.67783 16.0862 8.73173 16.1029 8.78636 16.0999H11.7864C11.9064 16.0999 11.9494 16.0389 11.9134 15.9179L7.72835 3.90989C7.7174 3.85628 7.68753 3.8084 7.64421 3.77499C7.60088 3.74158 7.54698 3.72486 7.49235 3.72789H4.52636C4.47173 3.72486 4.41783 3.74158 4.3745 3.77499ZM6.01936 7.49389L7.16836 11.3509H4.76836L5.96836 7.49389H6.01936ZM13.195 16.1002H13.238L13.236 16.0982H15.488C15.5129 16.1017 15.5382 16.0967 15.56 16.0842C15.5916 16.0624 15.6165 16.0323 15.632 15.9972V8.5782L15.661 8.5492C15.6775 8.53748 15.6979 8.53248 15.718 8.5352H18.16C18.1733 8.53541 18.1865 8.53295 18.1989 8.52797C18.2113 8.52299 18.2225 8.51559 18.232 8.5062C18.2466 8.49079 18.258 8.47256 18.2654 8.45262C18.2728 8.43268 18.276 8.41144 18.275 8.3902V6.4272C18.2752 6.41388 18.2727 6.40064 18.2677 6.38828C18.2628 6.37591 18.2554 6.36467 18.246 6.3552L18.232 6.3262C18.219 6.31277 18.2035 6.30205 18.1863 6.29466C18.1691 6.28728 18.1507 6.28339 18.132 6.2832H10.554C10.5227 6.291 10.4953 6.30991 10.4769 6.3364C10.4585 6.36289 10.4503 6.39516 10.454 6.4272V8.3922C10.4521 8.42188 10.4569 8.45161 10.468 8.4792L10.482 8.4932L10.496 8.5072C10.503 8.51561 10.5117 8.52251 10.5215 8.52749C10.5313 8.53247 10.542 8.53543 10.553 8.5362H13.022C13.07 8.5562 13.094 8.5842 13.094 8.6232V16.0002C13.0946 16.0112 13.0975 16.0219 13.1025 16.0317C13.1075 16.0415 13.1145 16.0502 13.123 16.0572C13.1408 16.08 13.1664 16.0954 13.195 16.1002ZM24.2205 16.0996C24.1737 16.1027 24.1271 16.0903 24.0881 16.0643C24.049 16.0382 24.0196 16 24.0045 15.9556L22.5175 12.6066H21.5785C21.5667 12.6049 21.5547 12.606 21.5434 12.6098C21.5321 12.6136 21.5218 12.6199 21.5133 12.6284C21.5049 12.6368 21.4985 12.6471 21.4948 12.6584C21.491 12.6697 21.4899 12.6818 21.4915 12.6936V15.9556C21.4942 15.9752 21.4923 15.9952 21.486 16.0139C21.4796 16.0327 21.469 16.0497 21.4549 16.0637C21.4409 16.0776 21.4237 16.0881 21.4049 16.0944C21.3861 16.1006 21.3661 16.1024 21.3465 16.0996H19.0955C19.0759 16.1024 19.0559 16.1006 19.0371 16.0944C19.0183 16.0881 19.0012 16.0776 18.9872 16.0637C18.9731 16.0497 18.9625 16.0327 18.9561 16.0139C18.9498 15.9952 18.9479 15.9752 18.9505 15.9556V6.42757C18.9477 6.40786 18.9495 6.38777 18.9558 6.36888C18.962 6.34998 18.9726 6.33282 18.9867 6.31874C19.0008 6.30466 19.018 6.29406 19.0369 6.28778C19.0557 6.2815 19.0758 6.27972 19.0955 6.28257H23.0955C23.6049 6.27541 24.1119 6.35348 24.5955 6.51357C25.0088 6.65038 25.3879 6.87405 25.7075 7.16957C26.0041 7.45083 26.2379 7.79161 26.3935 8.16957C26.5559 8.57339 26.6368 9.00535 26.6315 9.44057C26.642 10.0142 26.4976 10.5801 26.2135 11.0786C25.9313 11.556 25.5137 11.9388 25.0135 12.1786L26.8135 15.9166C26.8228 15.9356 26.8276 15.9564 26.8276 15.9776C26.8276 15.9987 26.8228 16.0196 26.8135 16.0386C26.8032 16.0555 26.7884 16.0692 26.7708 16.0782C26.7531 16.0872 26.7333 16.0912 26.7135 16.0896H24.2135L24.2205 16.0996ZM22.9355 10.5126C23.2451 10.5321 23.5503 10.4314 23.7875 10.2316C23.982 10.0271 24.0904 9.75573 24.0904 9.47357C24.0904 9.19141 23.982 8.92004 23.7875 8.71557C23.5503 8.51573 23.2451 8.41508 22.9355 8.43457H21.5785C21.5667 8.4329 21.5547 8.434 21.5434 8.43779C21.5321 8.44157 21.5218 8.44793 21.5133 8.45637C21.5049 8.4648 21.4985 8.47508 21.4948 8.4864C21.491 8.49771 21.4899 8.50975 21.4915 8.52157V10.4216C21.4899 10.4334 21.491 10.4454 21.4948 10.4567C21.4985 10.4681 21.5049 10.4783 21.5133 10.4868C21.5218 10.4952 21.5321 10.5016 21.5434 10.5054C21.5547 10.5091 21.5667 10.5102 21.5785 10.5086H22.9355V10.5126ZM28.8928 15.6658C29.5876 16.0793 30.3844 16.2896 31.1927 16.2728C31.9981 16.2879 32.7916 16.0777 33.4837 15.6658C34.151 15.2565 34.644 14.6157 34.8687 13.8658C34.9267 13.6818 34.9748 13.5008 35.0138 13.3238C35.0528 13.1468 35.0848 12.9548 35.1078 12.7538C35.1308 12.5528 35.1428 12.3248 35.1508 12.0758C35.1588 11.8269 35.1588 11.5321 35.1588 11.1963V11.1958C35.1588 11.0154 35.1564 10.8471 35.1543 10.6913C35.1525 10.5568 35.1508 10.4316 35.1508 10.3158C35.1479 10.0892 35.1335 9.86294 35.1078 9.63781C35.0828 9.43581 35.0528 9.24781 35.0138 9.07481C34.9748 8.90181 34.9257 8.71981 34.8687 8.52681C34.6444 7.77678 34.1512 7.13587 33.4837 6.72681C32.784 6.32917 31.993 6.12012 31.1882 6.12012C30.3834 6.12012 29.5925 6.32917 28.8928 6.72681C28.2255 7.13616 27.7325 7.77696 27.5078 8.52681C27.4498 8.71881 27.4014 8.90148 27.3627 9.07481C27.3219 9.26045 27.2928 9.4485 27.2758 9.63781C27.2564 9.83648 27.2421 10.0625 27.2328 10.3158C27.2234 10.5691 27.2188 10.8625 27.2188 11.1958C27.2194 11.5305 27.2241 11.8238 27.2328 12.0758C27.2414 12.3278 27.2558 12.5538 27.2758 12.7538C27.2938 12.9453 27.3228 13.1356 27.3627 13.3238C27.4017 13.5028 27.4508 13.6828 27.5078 13.8658C27.7321 14.6158 28.2253 15.2567 28.8928 15.6658ZM31.9928 13.7958C31.7558 13.9518 31.4763 14.0304 31.1927 14.0208C30.9092 14.0309 30.6295 13.9523 30.3928 13.7958C30.1719 13.6393 30.0115 13.4116 29.9388 13.1508C29.9083 13.0586 29.8842 12.9644 29.8668 12.8688C29.8453 12.7441 29.831 12.6182 29.8238 12.4918C29.8167 12.3864 29.8127 12.2652 29.8081 12.1288C29.8062 12.0712 29.8041 12.0108 29.8018 11.9478C29.7938 11.7358 29.7937 11.4838 29.7937 11.1938C29.7937 10.9038 29.7968 10.6528 29.8018 10.4398C29.8068 10.2268 29.8138 10.0458 29.8238 9.89581C29.8298 9.76934 29.8442 9.6434 29.8668 9.51881C29.8844 9.42297 29.9084 9.32842 29.9388 9.23581C30.0115 8.97503 30.1718 8.74725 30.3928 8.59081C30.6338 8.44402 30.9105 8.36637 31.1927 8.36637C31.475 8.36637 31.7517 8.44402 31.9928 8.59081C32.2134 8.74754 32.3737 8.97521 32.4467 9.23581C32.4766 9.32857 32.5006 9.42308 32.5188 9.51881C32.5402 9.64356 32.5546 9.76943 32.5618 9.89581C32.5688 10.0012 32.5728 10.1225 32.5774 10.2588C32.5794 10.3165 32.5814 10.3768 32.5838 10.4398C32.5918 10.6517 32.5918 10.9036 32.5918 11.1934V11.1938C32.5918 11.4838 32.5888 11.7348 32.5838 11.9478C32.5788 12.1608 32.5718 12.3418 32.5618 12.4918C32.5546 12.6182 32.5402 12.7441 32.5188 12.8688C32.5012 12.9643 32.4771 13.0585 32.4467 13.1508C32.374 13.4116 32.2137 13.6394 31.9928 13.7958Z" fill="#00498E"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.9516 15.3614C14.4105 15.3693 13.8701 15.3227 13.3384 15.2222C12.9333 15.1494 12.5545 14.9718 12.2395 14.707C11.935 14.4242 11.7198 14.0587 11.6201 13.6553C11.4772 13.0762 11.4126 12.4805 11.428 11.8842V7.97719C11.413 7.38223 11.4776 6.78793 11.6201 6.2101C11.719 5.80848 11.9309 5.44356 12.2306 5.15847C12.539 4.89376 12.9124 4.71592 13.3123 4.64324C13.8408 4.54135 14.3784 4.49362 14.9166 4.5008H19.2249C19.7654 4.49346 20.3055 4.53652 20.8381 4.62941C21.2409 4.69431 21.618 4.86892 21.928 5.13406C22.2277 5.41917 22.4395 5.78408 22.5385 6.18568C22.6814 6.76483 22.746 7.36052 22.7306 7.95684V11.0694H15.3179V11.8638C15.3072 11.96 15.3253 12.0572 15.37 12.143C15.4047 12.1859 15.4861 12.2073 15.6142 12.2073H22.4864V15.3622L14.9516 15.3614ZM18.9636 7.87301C18.975 7.76558 18.9537 7.65721 18.9025 7.56208C18.8681 7.53235 18.8277 7.51029 18.784 7.49738C18.7404 7.48447 18.6945 7.481 18.6494 7.48719H15.6142C15.4861 7.48719 15.4047 7.51215 15.37 7.56208C15.3257 7.65938 15.3078 7.76659 15.3179 7.87301V8.90347H18.9636V7.87301ZM0.00390625 15.3615V4.50097H7.67622C8.08594 4.49341 8.49527 4.52997 8.89715 4.61004C9.1856 4.66518 9.45384 4.79705 9.67366 4.99178C9.87837 5.1918 10.022 5.44584 10.088 5.72434C10.1782 6.10443 10.2195 6.49449 10.2109 6.88504V8.04167C10.2201 8.41346 10.1585 8.78361 10.0294 9.13236C9.96563 9.28499 9.86873 9.42151 9.74568 9.53203C9.62264 9.64254 9.47653 9.72428 9.31797 9.77132C9.48952 9.82998 9.64677 9.92417 9.77945 10.0477C9.91213 10.1713 10.0173 10.3215 10.088 10.4884C10.2147 10.8647 10.274 11.2604 10.263 11.6572V12.7789C10.2766 13.2431 10.2264 13.7071 10.114 14.1577C10.0375 14.4585 9.87314 14.7296 9.64192 14.9367C9.40193 15.129 9.11297 15.2505 8.80762 15.2875C8.39834 15.3451 7.98534 15.3723 7.57204 15.3689L0.00390625 15.3615ZM7.30099 11.1697C7.30863 11.0995 7.28977 11.0289 7.24809 10.9719C7.19318 10.929 7.12359 10.9094 7.05436 10.9174H2.96669V12.7081H7.05518C7.12441 12.716 7.19399 12.6964 7.2489 12.6535C7.29194 12.5864 7.31035 12.5064 7.30099 12.4272V11.1697ZM7.30099 7.28957C7.30973 7.21083 7.29104 7.13149 7.24809 7.06492C7.19318 7.02201 7.12359 7.00242 7.05436 7.01039H2.96669V8.61143H7.05518C7.12441 8.6194 7.19399 8.59981 7.2489 8.5569C7.29071 8.49533 7.30918 8.42087 7.30099 8.3469V7.28957ZM36.5938 4.50098V15.3615L46.3734 15.364V12.5591H40.3176V4.50098H36.5938ZM47.2227 15.3615V4.50098H50.9465V12.5591H57.0023V15.364L47.2227 15.3615ZM25.4439 15.3535C26.0289 15.4574 26.6226 15.5045 27.2167 15.4943H35.3375V8.12394C35.3531 7.50455 35.2921 6.88559 35.1559 6.28115C35.0666 5.87309 34.854 5.50232 34.5471 5.21895C34.2268 4.95768 33.8391 4.79232 33.4287 4.74197C32.8625 4.66268 32.2911 4.62649 31.7194 4.63371H24.2311V7.6258H30.9657C31.0125 7.61952 31.0601 7.62301 31.1055 7.63603C31.1509 7.64906 31.1931 7.67135 31.2294 7.7015C31.2814 7.78985 31.3037 7.89257 31.2929 7.99452V8.7751H27.2565C26.6815 8.7674 26.1068 8.80714 25.5383 8.89394C25.1337 8.94956 24.7454 9.0899 24.3988 9.3058C24.1092 9.49908 23.8893 9.78007 23.7712 10.1075C23.631 10.53 23.5662 10.9739 23.5799 11.4188V12.3077C23.5676 12.8364 23.6256 13.3644 23.7525 13.8778C23.8453 14.2539 24.0479 14.5938 24.3344 14.8545C24.6543 15.1149 25.0368 15.2869 25.4439 15.3535ZM27.8165 10.985H31.2864L31.2905 12.3085H27.8174C27.7749 12.3124 27.7322 12.3078 27.6916 12.2948C27.651 12.2817 27.6135 12.2607 27.5813 12.2328C27.5213 12.1397 27.4957 12.0286 27.5089 11.9186V11.3749C27.497 11.2661 27.5192 11.1563 27.5724 11.0607C27.6054 11.0315 27.6442 11.0097 27.6863 10.9967C27.7284 10.9836 27.7728 10.9796 27.8165 10.985Z" fill="#231F20"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.46391 2.32598C8.74791 1.88798 8.86391 1.23698 9.35691 1.00098C9.81983 1.2113 10.2462 1.49419 10.6199 1.83898C12.4399 1.87598 14.4349 1.45498 16.0749 2.47098C16.7113 2.93417 17.1616 3.60914 17.3449 4.3746C17.5282 5.14005 17.4325 5.94578 17.0749 6.64698C16.3069 8.05291 15.0978 9.16718 13.6339 9.81797C12.9009 10.206 12.0859 10.408 11.3529 10.796C11.7169 11.2618 11.9706 11.8041 12.0949 12.3821C12.2193 12.96 12.2111 13.5586 12.0709 14.133C11.5191 15.089 10.6513 15.8227 9.61691 16.208C7.41348 17.1876 5.01442 17.6478 2.60491 17.553C2.37355 18.0514 2.11275 18.5355 1.82391 19.003C1.45191 18.58 0.477912 17.993 0.771912 17.419C0.546912 17.21 0.326905 17 0.103905 16.789C0.116678 16.0263 0.0832854 15.2636 0.00390625 14.505C0.695317 14.6723 1.4079 14.735 2.1179 14.691C2.63279 13.8889 3.06819 13.0386 3.41791 12.152C3.01791 12.16 2.61791 12.175 2.22391 12.187C2.22391 11.663 2.21591 11.14 2.21091 10.618C2.93491 10.382 3.70091 10.295 4.41091 10.018C4.76045 9.63822 5.03918 9.19896 5.23391 8.72098C5.76191 7.62098 6.38991 6.56598 6.84691 5.43098C5.14691 5.73098 3.54691 6.45698 1.82791 6.65498C2.25616 5.82402 2.73126 5.01805 3.25091 4.24097C3.41391 4.00697 3.56191 3.72198 3.86191 3.64098C5.36691 3.10698 6.92391 2.74098 8.46191 2.31898M8.76191 5.08498C8.12791 6.59298 7.19691 7.96598 6.68491 9.52398C9.01085 9.10297 11.2753 8.39385 13.4259 7.41298C14.0849 6.98298 15.0259 6.45297 14.8989 5.53197C14.9849 4.99197 14.3559 4.80597 13.9489 4.68497C12.2101 4.52441 10.4566 4.65966 8.76291 5.08498M6.34991 11.426C6.11341 11.4465 5.88721 11.5321 5.6964 11.6733C5.50558 11.8145 5.35762 12.0058 5.26891 12.226C4.85505 12.9394 4.51784 13.6946 4.26291 14.479C5.75527 14.3988 7.22022 14.0452 8.58491 13.436C9.03991 13.165 9.72391 12.869 9.69691 12.249C9.48929 11.883 9.17155 11.5919 8.78891 11.417C7.97623 11.3374 7.15748 11.3428 6.34591 11.433L6.34991 11.426Z" fill="#BD0912"/>
|
|
3
|
+
<path d="M22.2285 14.3616C22.2196 14.7647 22.1298 15.162 21.9644 15.5298C21.7989 15.8976 21.5613 16.2284 21.2655 16.5026C20.6162 17.0389 19.7896 17.3126 18.9485 17.2696C18.4494 17.2949 17.9514 17.2019 17.4951 16.9982C17.0387 16.7946 16.637 16.486 16.3225 16.0976C15.6459 15.1465 15.3153 13.9926 15.3855 12.8276C15.3094 11.6121 15.6478 10.4067 16.3455 9.40855C16.6701 9.00647 17.0854 8.68714 17.5574 8.47679C18.0294 8.26644 18.5445 8.17109 19.0605 8.19855C19.5443 8.17446 20.0266 8.26902 20.4655 8.47399C20.9044 8.67896 21.2865 8.98812 21.5785 9.37455C22.2289 10.3599 22.5409 11.5302 22.4675 12.7086C22.4675 12.8659 22.4675 12.9839 22.4675 13.0626C22.4675 13.1412 22.4639 13.2116 22.4565 13.2736L17.5245 13.2816C17.4935 13.8823 17.6178 14.4809 17.8855 15.0196C17.991 15.2021 18.1446 15.3521 18.3297 15.4532C18.5147 15.5543 18.7239 15.6025 18.9345 15.5926C19.2538 15.6104 19.5675 15.5027 19.8085 15.2926C20.0508 15.0376 20.208 14.7137 20.2585 14.3656L22.2285 14.3616ZM17.5795 11.6726H20.1985C20.2239 11.1792 20.1065 10.689 19.8605 10.2606C19.7547 10.1071 19.6111 9.98349 19.4437 9.90153C19.2763 9.81958 19.0906 9.78205 18.9045 9.79255C18.7205 9.79068 18.5389 9.83557 18.377 9.92302C18.215 10.0105 18.0779 10.1376 17.9785 10.2926C17.718 10.7057 17.5796 11.1841 17.5795 11.6726ZM29.2285 17.0726L29.1545 15.8336C28.918 16.262 28.578 16.6243 28.1655 16.8876C27.7709 17.1257 27.3174 17.2484 26.8565 17.2416C26.4061 17.245 25.9623 17.1333 25.5672 16.9172C25.172 16.7011 24.8386 16.3876 24.5985 16.0066C23.9786 15.0334 23.6757 13.892 23.7315 12.7396C23.6745 11.5896 23.9703 10.4496 24.5795 9.47255C24.8178 9.09334 25.1497 8.78184 25.5432 8.568C25.9368 8.35416 26.3787 8.24518 26.8265 8.25155C27.2899 8.24071 27.7475 8.3558 28.1505 8.58455C28.5556 8.83576 28.8906 9.18524 29.1245 9.60055V4.64355H31.3335V15.3336C31.3335 15.7722 31.3399 16.1279 31.3525 16.4006C31.3652 16.6732 31.3839 16.8996 31.4085 17.0796L29.2285 17.0726ZM25.9855 12.7596C25.948 13.4754 26.0885 14.1894 26.3945 14.8376C26.4949 15.0574 26.6562 15.2438 26.8593 15.3746C27.0625 15.5054 27.2989 15.5752 27.5405 15.5756C27.7896 15.5736 28.0332 15.5018 28.2436 15.3683C28.4539 15.2349 28.6226 15.0451 28.7305 14.8206C29.0539 14.1835 29.2053 13.4731 29.1695 12.7596C29.2053 12.0419 29.054 11.3272 28.7305 10.6856C28.6233 10.4602 28.4548 10.2695 28.2444 10.1353C28.034 10.0011 27.7901 9.92878 27.5405 9.92655C27.298 9.92752 27.0609 9.99841 26.8576 10.1307C26.6544 10.263 26.4936 10.4512 26.3945 10.6726C26.0891 11.3241 25.9486 12.0409 25.9855 12.7596ZM37.9475 17.0766C37.9429 17.0539 37.9379 17.0229 37.9325 16.9836C37.8879 16.5509 37.8605 16.1912 37.8505 15.9046C37.5739 16.3432 37.2046 16.7159 36.7685 16.9966C36.3655 17.2377 35.9032 17.3617 35.4335 17.3546C35.1019 17.3648 34.772 17.3013 34.4679 17.1687C34.1637 17.036 33.8927 16.8376 33.6745 16.5876C33.2064 16.0364 32.9632 15.329 32.9935 14.6066C32.9675 14.1642 33.0496 13.7222 33.2329 13.3188C33.4163 12.9154 33.6952 12.5628 34.0455 12.2916C34.9577 11.7 36.0367 11.4193 37.1215 11.4916C37.1762 11.4916 37.2592 11.4959 37.3705 11.5046C37.4819 11.5132 37.5675 11.5176 37.6275 11.5176C37.6275 11.4729 37.6299 11.4112 37.6345 11.3326C37.6392 11.2539 37.6415 11.1949 37.6415 11.1556C37.6717 10.7482 37.5823 10.3409 37.3845 9.98355C37.2915 9.85749 37.1678 9.75726 37.0252 9.69234C36.8825 9.62742 36.7257 9.59996 36.5695 9.61255C36.4299 9.60316 36.2899 9.62524 36.1599 9.67716C36.0299 9.72908 35.9133 9.80953 35.8185 9.91255C35.6228 10.1853 35.5178 10.5128 35.5185 10.8486L33.3095 10.8406C33.2865 10.4676 33.3486 10.0944 33.491 9.74892C33.6334 9.40349 33.8524 9.09493 34.1315 8.84655C34.8438 8.35356 35.7037 8.11989 36.5675 8.18456C37.0601 8.17649 37.5501 8.25641 38.0145 8.42056C38.4113 8.55975 38.7677 8.79429 39.0525 9.10355C39.3022 9.37312 39.4845 9.69798 39.5845 10.0516C39.7074 10.6233 39.7585 11.2082 39.7365 11.7926V14.4396C39.7365 14.6476 39.7465 14.9526 39.7665 15.3546C39.7865 15.7566 39.8162 16.3312 39.8555 17.0786L37.9475 17.0766ZM37.6125 12.9206L37.3675 12.9126C36.7929 12.8761 36.2208 13.0156 35.7275 13.3126C35.5434 13.4388 35.3945 13.61 35.295 13.8098C35.1954 14.0096 35.1485 14.2315 35.1585 14.4546C35.1469 14.7561 35.2547 15.05 35.4585 15.2726C35.5554 15.3771 35.6735 15.4598 35.8049 15.515C35.9363 15.5701 36.078 15.5966 36.2205 15.5926C36.4291 15.5995 36.6357 15.5504 36.8188 15.4503C37.0019 15.3503 37.1548 15.2029 37.2615 15.0236C37.5343 14.5218 37.6607 13.9536 37.6265 13.3836C37.6265 13.2656 37.6265 13.1742 37.6265 13.1096C37.6265 13.0449 37.6219 12.9816 37.6125 12.9196V12.9206ZM41.7185 17.0766V11.0986C41.7185 10.6099 41.7112 10.1406 41.6965 9.69055C41.6819 9.24055 41.6595 8.81322 41.6295 8.40855H43.6675L43.7495 9.95955C43.9135 9.46366 44.2397 9.03743 44.6755 8.74955C45.1517 8.46279 45.701 8.32068 46.2565 8.34055H46.3235L46.3165 10.6166L46.0165 10.5916C45.9499 10.5862 45.8892 10.5836 45.8345 10.5836C45.5865 10.5693 45.3381 10.6046 45.1038 10.6871C44.8695 10.7697 44.6539 10.898 44.4695 11.0646C44.2995 11.2404 44.1678 11.4495 44.0826 11.6787C43.9974 11.908 43.9606 12.1524 43.9745 12.3966V17.0756L41.7185 17.0766ZM52.7425 17.0766L52.6685 15.8376C52.432 16.266 52.092 16.6283 51.6795 16.8916C51.2849 17.1297 50.8314 17.2524 50.3705 17.2456C49.9201 17.249 49.4763 17.1373 49.0812 16.9212C48.686 16.7051 48.3526 16.3916 48.1125 16.0106C47.4926 15.0374 47.1897 13.896 47.2455 12.7436C47.1885 11.5936 47.4843 10.4536 48.0935 9.47655C48.3313 9.0966 48.663 8.7843 49.0566 8.56974C49.4501 8.35519 49.8923 8.2456 50.3405 8.25155C50.8039 8.24071 51.2615 8.3558 51.6645 8.58455C52.0696 8.83576 52.4046 9.18524 52.6385 9.60055V4.64355H54.8475V15.3336C54.8475 15.7722 54.8539 16.1279 54.8665 16.4006C54.8792 16.6732 54.8979 16.8996 54.9225 17.0796L52.7425 17.0766ZM49.4995 12.7596C49.462 13.4754 49.6025 14.1894 49.9085 14.8376C50.0089 15.0574 50.1702 15.2438 50.3733 15.3746C50.5765 15.5054 50.8129 15.5752 51.0545 15.5756C51.3036 15.5736 51.5472 15.5018 51.7576 15.3683C51.9679 15.2349 52.1366 15.0451 52.2445 14.8206C52.5679 14.1835 52.7192 13.4731 52.6835 12.7596C52.7193 12.0419 52.568 11.3272 52.2445 10.6856C52.1373 10.4602 51.9688 10.2695 51.7584 10.1353C51.548 10.0011 51.3041 9.92878 51.0545 9.92655C50.812 9.92752 50.5749 9.99841 50.3716 10.1307C50.1684 10.263 50.0076 10.4512 49.9085 10.6726C49.6031 11.3241 49.4626 12.0409 49.4995 12.7596Z" fill="black"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.4909 10.6068C14.8585 10.4118 14.2119 10.2664 13.5569 10.1718C14.2166 10.1316 14.8735 10.0555 15.5249 9.9438C17.0829 9.64313 17.8619 8.81813 17.8619 7.4688C17.8655 6.97798 17.6894 6.5028 17.3669 6.1328C16.876 5.62042 16.2334 5.27932 15.5339 5.1598C14.8411 5.03578 14.1375 4.98284 13.4339 5.0018H4.30891L4.17191 5.3258H5.55591L1.38691 15.4668H0.140906L0.00390625 15.7908H11.5039C12.2396 15.8051 12.9753 15.7603 13.7039 15.6568C14.6645 15.5223 15.5571 15.0847 16.2519 14.4078C16.5085 14.1683 16.7146 13.8797 16.8578 13.5592C17.0011 13.2387 17.0786 12.8928 17.0859 12.5418C17.0914 12.0997 16.9313 11.6716 16.6369 11.3418C16.3243 11.0026 15.9296 10.7494 15.4909 10.6068ZM10.2199 10.1718H9.80791L11.7979 5.3258H12.1459C12.3296 5.32247 12.5124 5.35158 12.6859 5.4118C12.9239 5.49913 13.0429 5.63246 13.0429 5.8118C13.0311 6.00548 12.9847 6.19548 12.9059 6.3728L11.6869 9.3298C11.5702 9.63662 11.3405 9.8871 11.0449 10.0298C10.7823 10.1323 10.5017 10.1806 10.2199 10.1718ZM8.24991 15.4718H7.62691L9.68391 10.4648H10.1839C10.3977 10.4589 10.6103 10.4995 10.8069 10.5838C10.9226 10.625 11.0226 10.7011 11.0932 10.8016C11.1638 10.9021 11.2014 11.022 11.2009 11.1448C11.1985 11.3055 11.1645 11.4642 11.1009 11.6118L10.0009 14.2848C9.8769 14.6631 9.63643 14.9924 9.31391 15.2258C8.98839 15.4035 8.62039 15.4886 8.24991 15.4718ZM30.4578 5.42374C30.5945 5.37652 30.7359 5.34558 30.8792 5.33132L29.6289 10.053L33.5669 5.721C33.7097 5.55033 33.9024 5.42864 34.1179 5.373C34.1972 5.35767 34.3079 5.342 34.4499 5.326L31.7609 15.47H30.7899L30.7009 15.794H36.8479L36.9369 15.47H35.8829L38.5719 5.326C38.6996 5.32608 38.826 5.35264 38.9429 5.404C39.1044 5.53544 39.2189 5.71584 39.2689 5.918L40.7689 10.053L42.1069 5H30.9669L30.9664 5.00195H27.5457L27.4457 5.32595C27.6326 5.32406 27.8191 5.34556 28.0007 5.38995C28.3707 5.49529 28.5557 5.83262 28.5557 6.40195C28.5556 7.02978 28.4473 7.65289 28.2357 8.24395L26.6277 12.775C26.4001 13.5405 25.9757 14.2329 25.3967 14.783C24.9334 15.1672 24.3474 15.372 23.7457 15.36C23.4199 15.376 23.0996 15.2717 22.8457 15.067C22.6812 14.9185 22.5525 14.7348 22.469 14.5296C22.3855 14.3244 22.3495 14.103 22.3637 13.882C22.3644 13.581 22.4123 13.2821 22.5057 12.996L24.9397 5.32595H25.9147L26.0217 5.00195H19.0267L18.9197 5.32595H19.9947L18.1737 11.022C17.984 11.564 17.8785 12.1319 17.8607 12.706C17.8397 13.3678 18.0743 14.0123 18.5157 14.506C19.0407 14.9955 19.6634 15.3683 20.3428 15.6C21.0222 15.8316 21.743 15.9168 22.4577 15.85C23.2924 15.8826 24.1246 15.737 24.8987 15.423C25.4241 15.1782 25.8733 14.7957 26.1987 14.316C26.5008 13.8296 26.7445 13.3094 26.9247 12.766L28.6827 7.92595C28.9149 7.14411 29.3049 6.41816 29.8287 5.79295C30.0118 5.62941 30.2257 5.50391 30.4578 5.42374ZM50.0877 15.796L51.4697 11.226L46.6697 14.846C46.3545 15.1119 45.9869 15.3085 45.5907 15.423C45.417 15.4538 45.241 15.4695 45.0647 15.47L48.1257 5.32595H49.2317L49.3257 5.00195H42.5157L42.4157 5.32595H43.4337L40.3647 15.472H39.4477L39.3477 15.796H50.0877ZM63.4941 5.00098L62.1411 9.95898C61.6965 8.60964 61.3271 7.58431 61.0331 6.88298C60.6825 6.06564 60.3215 5.58598 59.9501 5.44398C59.7486 5.36092 59.532 5.32074 59.3141 5.32598H58.9141L57.5331 10.362C57.9467 10.3705 58.3515 10.2425 58.6851 9.99798C59.2966 9.49316 59.8247 8.89516 60.2501 8.22598L58.8671 13.288C58.9078 12.8713 58.9281 12.538 58.9281 12.288C58.9281 11.5186 58.7588 11.0283 58.4201 10.817C58.1104 10.698 57.778 10.6495 57.4471 10.675L56.1311 15.475C56.5433 15.4528 56.9489 15.3618 57.3311 15.206C57.8755 14.9265 58.3936 14.5985 58.8791 14.226C59.4781 13.7817 60.0504 13.3025 60.5931 12.791C60.9398 12.4643 61.4641 11.9373 62.1661 11.21L60.9171 15.794H50.9531L51.0451 15.47H51.8771L54.6621 5.32598H53.7381L53.8301 5.00198L63.4941 5.00098ZM74.6111 15.0825C74.9613 14.6568 75.2017 14.1517 75.3111 13.6115L75.1031 13.6095C75.0379 13.8674 74.9426 14.1168 74.8191 14.3525C74.5931 14.7791 74.3695 14.9925 74.1481 14.9925C73.9681 14.9925 73.8711 14.7948 73.8571 14.3995C73.8476 13.6386 73.776 12.8797 73.6431 12.1305C73.5844 11.7675 73.4435 11.4227 73.2311 11.1225C73.0178 10.8642 72.736 10.6712 72.4181 10.5655C71.9422 10.437 71.456 10.3497 70.9651 10.3045C70.8818 10.2938 70.7018 10.2675 70.4251 10.2255C71.8825 10.0828 72.8348 9.96681 73.2821 9.87748C73.8237 9.79074 74.3296 9.55218 74.7411 9.18948C74.9948 8.95391 75.1957 8.66722 75.3305 8.34833C75.4653 8.02944 75.5309 7.6856 75.5231 7.33948C75.5343 6.79481 75.353 6.26366 75.0111 5.83948C74.6712 5.43146 74.194 5.16157 73.6691 5.08048C73.2089 5.0144 72.7439 4.98796 72.2791 5.00148H64.5791L64.4791 5.32548H65.5171L62.3691 15.4715H61.4281L61.3281 15.7955H68.1281L68.2281 15.4715H67.0931L68.5931 10.6245C68.8102 10.6193 69.0241 10.6769 69.2091 10.7905C69.3086 10.8981 69.3835 11.0259 69.4289 11.1652C69.4743 11.3045 69.4891 11.452 69.4721 11.5975C69.4725 11.7454 69.4655 11.8933 69.4511 12.0405C69.3311 13.0471 69.2711 13.6928 69.2711 13.9775C69.2498 14.2235 69.278 14.4714 69.3541 14.7063C69.4302 14.9413 69.5526 15.1586 69.7141 15.3455C70.3978 15.8211 71.2322 16.0293 72.0591 15.9305C72.5944 15.9491 73.1292 15.8816 73.6431 15.7305C74.0149 15.5989 74.3478 15.3761 74.6111 15.0825ZM69.8121 10.1405C69.4553 10.2778 69.0719 10.3318 68.6911 10.2985L70.2341 5.32548H70.6291C71.2238 5.32548 71.5211 5.54148 71.5211 5.97348C71.5135 6.21865 71.4693 6.46132 71.3901 6.69348L70.6901 8.95448C70.6312 9.20112 70.5231 9.43331 70.3722 9.63712C70.2213 9.84092 70.0308 10.0121 69.8121 10.1405Z" fill="#DBB316"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="110" height="20" viewBox="0 0 110 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_14282_117601)">
|
|
3
|
+
<path d="M7.82132 3.80041C9.1452 3.80041 10.4691 3.79953 11.793 3.80041C12.6691 3.8013 13.3489 4.50272 13.4138 5.33665C13.5307 6.85169 12.9898 8.24658 12.6454 9.67682C12.2818 11.1857 11.9346 12.7034 11.4659 14.1831C10.957 15.7882 10.2927 16.638 8.2553 16.8492C6.9433 16.9852 5.60481 16.8757 4.27819 16.8757C3.24302 16.8757 2.20877 16.8757 1.17361 16.8748C1.03656 16.8748 0.897686 16.888 0.763379 16.8704C0.0132729 16.7741 -0.113724 16.5895 0.0626099 15.8686C0.123824 15.6177 0.133875 15.335 0.26544 15.1239C0.41802 14.8801 0.644605 14.6027 0.903167 14.5161C1.30426 14.3809 1.508 14.1203 1.60302 13.7899C1.90544 12.7387 2.16583 11.6768 2.44541 10.6194C2.7396 9.5072 3.06212 8.4003 3.32251 7.28014C3.41296 6.89144 3.49976 6.44709 2.96071 6.1856C2.59616 6.00804 2.6793 5.63171 2.75331 5.31987C2.83005 5.00008 2.98812 4.69795 3.05481 4.37728C3.14709 3.93557 3.40839 3.7907 3.8506 3.79511C5.17448 3.80925 6.49836 3.80041 7.82224 3.80041H7.82132ZM6.71032 14.4119C7.42662 14.3915 7.91725 14.0417 8.03146 13.373C8.11278 12.8933 8.19592 12.6009 8.31835 12.1274C8.65366 10.8323 8.98805 9.53724 9.32336 8.24217C9.43117 7.82432 9.54995 7.40823 9.64862 6.98862C9.75552 6.53278 9.65593 6.34197 9.14885 6.27306C8.70025 6.21122 8.23246 6.28896 7.77747 6.25716C7.20004 6.21741 7.12786 6.63526 7.01914 7.00099C6.88026 7.46919 6.79072 7.95153 6.66921 8.42503C6.21421 10.1936 5.75373 11.9613 5.29782 13.7299C5.21377 14.0558 5.41385 14.3491 5.75099 14.3995C6.0461 14.4437 6.41339 14.4198 6.71215 14.4119H6.71032Z" fill="#326AB3"/>
|
|
4
|
+
<path d="M27.8759 16.9631C26.3227 16.9631 24.7704 16.964 23.2172 16.9631C22.6078 16.9631 22.4827 16.8077 22.6307 16.2246C22.712 15.9039 22.8244 15.5903 22.9002 15.2688C23.0181 14.7688 23.2647 14.4225 23.8148 14.2581C24.352 14.0974 24.3904 13.5435 24.5174 13.1203C25.0473 11.3562 25.537 9.57964 26.0386 7.80665C26.1601 7.37732 26.225 6.92678 26.3986 6.51865C26.5859 6.07606 26.4086 5.78189 26.0587 5.60167C25.6777 5.40556 25.6905 5.11933 25.7663 4.82339C25.8805 4.37904 26.0386 3.94352 26.1976 3.51154C26.3172 3.18556 26.5356 2.99652 26.9358 3.00005C28.4735 3.01418 30.0111 3.00447 31.5488 3.00623C32.1737 3.00623 32.3574 3.20942 32.2139 3.79246C32.1107 4.21031 32.0074 4.64406 31.8037 5.01863C31.6758 5.25273 31.377 5.41969 31.123 5.56545C30.8416 5.728 30.5739 5.82959 30.4698 6.20504C29.9517 8.06284 29.3935 9.91003 28.849 11.7599C28.6699 12.3677 28.4808 12.9737 28.3108 13.5841C28.1975 13.9922 28.3538 14.2475 28.8216 14.305C29.2099 14.3527 29.6247 14.3553 30.0029 14.274C30.4862 14.1707 30.5337 13.6954 30.6644 13.32C30.7685 13.0214 30.8553 12.7166 30.933 12.411C31.0362 12.0081 31.3158 11.8429 31.7206 11.8412C32.3757 11.8376 33.0307 11.8544 33.684 11.8367C34.6753 11.8102 34.6251 12.145 34.4688 12.8323C34.1883 14.0638 33.7681 15.2652 33.3871 16.4737C33.2729 16.8368 32.9759 16.9711 32.5794 16.9684C31.0116 16.9578 29.4428 16.964 27.875 16.964L27.8759 16.9631Z" fill="#326AB3"/>
|
|
5
|
+
<path d="M38.4304 7.86407C38.9018 7.86407 39.3742 7.86054 39.8456 7.86495C40.2687 7.86937 40.5364 8.19535 40.435 8.59641C40.0083 10.2846 39.5725 11.971 39.1467 13.6601C39.0636 13.9914 38.8872 14.3801 39.3614 14.5665C39.9635 14.8032 40.6305 14.6292 40.7904 14.1627C41.0508 13.4012 41.2454 12.6177 41.4482 11.8394C41.7314 10.7528 41.9763 9.65738 42.275 8.57521C42.4587 7.91001 42.5638 7.86495 43.2517 7.86495C43.8301 7.86495 44.4084 7.87202 44.9868 7.8623C45.3358 7.857 45.5231 8.01425 45.4637 8.34023C45.3294 9.0761 45.1759 9.81021 45.0014 10.5381C44.7492 11.5867 44.4459 12.6247 44.2165 13.6769C44.1343 14.0558 44.0859 14.4772 44.5683 14.7564C44.7154 14.8412 44.8049 15.1954 44.7583 15.3889C44.3033 17.2644 44.3636 16.9428 42.6624 16.9622C42.1234 16.9684 41.5825 16.979 41.0444 16.9569C40.7072 16.9428 40.3829 16.8403 40.2678 16.4817C40.1673 16.1681 39.948 16.2025 39.7077 16.2635C39.6666 16.2741 39.6236 16.3006 39.5953 16.3315C38.7136 17.26 37.5524 16.9543 36.4843 16.9428C35.7671 16.9349 35.3258 16.085 35.5305 15.2573C35.8895 13.8041 36.2514 12.3509 36.6424 10.9056C36.7475 10.5169 36.6908 10.2828 36.3107 10.0823C36.1508 9.99749 35.9782 9.7466 35.99 9.58317C36.0175 9.18741 36.1289 8.79253 36.2459 8.40913C36.3674 8.00983 36.6671 7.83934 37.1056 7.86054C37.546 7.88086 37.9882 7.86495 38.4295 7.86495L38.4304 7.86407Z" fill="#326AB3"/>
|
|
6
|
+
<path d="M65.8463 16.9631C65.2524 16.9631 64.6595 16.9649 64.0656 16.9631C62.5535 16.9569 62.0903 16.1053 62.305 14.9825C62.6257 13.3032 63.024 11.6336 63.4809 9.98424C63.8847 8.52927 64.527 8.07167 66.1003 7.9586C67.0349 7.89146 67.9751 7.86495 68.9116 7.87379C69.5383 7.87997 70.1642 7.97803 70.79 8.03633C71.8343 8.13263 72.1093 8.93564 71.9504 9.65385C71.5475 11.4648 71.1007 13.2679 70.6046 15.0567C70.2208 16.4419 69.3008 16.8509 67.8993 16.9543C67.2186 17.0047 66.5306 16.9631 65.8454 16.9631H65.8463ZM65.6864 14.0673C65.6489 14.343 65.7924 14.5506 65.9386 14.6451C66.4064 14.9481 67.4388 14.9145 67.6233 14.146C67.8755 13.0965 68.1578 12.0532 68.4009 11.0019C68.5425 10.3906 68.4319 10.1883 67.8143 10.1097C67.1382 10.024 66.6585 10.1371 66.4904 10.8623C66.4255 11.1433 66.3579 11.4233 66.2876 11.7025C66.0902 12.4834 65.8901 13.2643 65.6855 14.0673H65.6864Z" fill="#326AB3"/>
|
|
7
|
+
<path d="M16.5403 16.9631C15.7335 16.9631 14.9268 16.9667 14.12 16.9622C13.4467 16.9578 12.7934 16.563 12.7093 16.0382C12.6609 15.7379 12.7468 15.4083 12.8172 15.1018C13.1561 13.6141 13.4859 12.123 13.8724 10.6468C14.0277 10.054 14.2351 9.44006 14.575 8.93387C14.9816 8.32786 15.7317 8.16178 16.4389 8.14234C17.9446 8.10171 19.453 8.14676 20.9605 8.12291C21.7718 8.11054 22.6645 8.6185 22.4397 9.74572C22.2634 10.6327 22.0231 11.5081 21.8111 12.3889C21.7061 12.827 21.4155 12.9975 20.9578 12.9922C19.8157 12.9799 18.6746 12.9878 17.5325 12.9887C16.6033 12.9887 16.1319 13.4224 16.0533 14.343C16.0186 14.7529 16.1547 14.9658 16.6289 15.0453C17.379 15.1698 17.7207 15.0665 18.1666 14.5037C18.3082 14.3244 18.5923 14.1716 18.8235 14.1539C19.4439 14.1062 20.0706 14.1451 20.6946 14.1354C21.0976 14.1292 21.2401 14.365 21.1889 14.684C20.9724 16.0338 20.3009 17.0188 18.6874 16.9684C17.9729 16.9463 17.2566 16.9649 16.5412 16.9649L16.5403 16.9631ZM17.8249 11.6371C17.9391 11.6371 18.077 11.6397 18.1702 11.6327C18.5174 11.6062 18.8125 11.4083 18.9149 11.1901C19.0464 10.9109 19.083 10.4781 18.945 10.2175C18.7212 9.79519 17.3004 9.91622 17.1067 10.3588C16.9697 10.6724 16.8464 11.0964 16.9642 11.373C17.0428 11.5576 17.4987 11.6362 17.824 11.6353L17.8249 11.6371Z" fill="#326AB3"/>
|
|
8
|
+
<path d="M49.3686 16.9631C48.6085 16.9631 47.8474 16.964 47.0872 16.9631C46.3262 16.9614 45.8913 16.5736 45.9406 15.8412C45.9845 15.1963 46.0831 14.5479 46.233 13.918C46.5299 12.6742 46.8433 11.4321 47.2215 10.2095C47.4107 9.60084 47.65 8.94359 48.0731 8.48687C48.3801 8.15648 49.0205 7.99835 49.5221 7.97538C50.9638 7.91001 52.412 7.92414 53.8565 7.96301C54.6523 7.98421 55.3996 8.41178 55.078 9.46568C54.9739 9.80756 54.9483 10.1724 54.8861 10.5266C54.8185 10.91 54.57 11.0549 54.1836 11.0461C53.7276 11.0355 53.2699 11.0275 52.8149 11.0487C52.4832 11.0646 52.253 10.9525 52.1397 10.6583C51.9625 10.1971 51.5504 10.0849 51.1338 10.0902C50.5372 10.0982 50.3764 10.2731 50.2174 10.8906C49.9515 11.9215 49.6902 12.9525 49.4326 13.9852C49.3485 14.3209 49.513 14.5408 49.82 14.6804C50.2695 14.8862 50.8551 14.7714 51.1036 14.365C51.3448 13.971 51.6664 13.8315 52.115 13.8668C52.5938 13.9048 53.078 13.8986 53.5513 13.9675C53.8437 14.0099 54.0191 14.2343 53.9688 14.5444C53.7541 15.8659 53.1283 17.04 51.3339 16.9649C50.6806 16.9375 50.0255 16.9605 49.3714 16.9605L49.3686 16.9631Z" fill="#326AB3"/>
|
|
9
|
+
<path d="M57.5887 16.9622C56.9501 16.9622 56.3114 16.9658 55.6728 16.9614C55.1977 16.9578 55.0351 16.8209 55.0734 16.3571C55.1292 15.6707 55.2434 15.0064 56.0766 14.7361C56.2612 14.676 56.4631 14.4437 56.5143 14.2537C56.8158 13.1433 57.0789 12.0231 57.3448 10.9039C57.4151 10.6088 57.3128 10.3623 57.0515 10.1777C56.7198 9.9436 56.6111 9.65473 56.7893 9.26515C56.845 9.00543 56.8962 8.81815 56.9729 8.55754C57.0195 8.06284 57.3174 7.92591 57.7733 7.94888C58.4357 7.98333 59.0981 8.01867 59.7614 8.03015C60.0428 8.03457 60.326 7.97361 60.6083 7.95241C60.9537 7.92679 61.1492 8.09376 61.0889 8.4215C60.9391 9.24218 60.7774 10.0611 60.5837 10.8729C60.3534 11.8376 60.0601 12.789 59.8427 13.7564C59.7522 14.1601 59.7787 14.5347 60.2173 14.8659C60.8185 15.3209 60.3187 16.0276 60.2072 16.434C60.0711 16.8032 59.8802 16.9843 59.459 16.9675C58.8368 16.9437 58.2118 16.9614 57.5887 16.9614V16.9622Z" fill="#326AB3"/>
|
|
10
|
+
<path d="M61.2671 4.42321C61.4772 5.39937 60.326 6.35433 59.3393 6.15203C58.3571 5.98595 58.0647 4.93029 58.644 4.20766C59.2781 3.31807 60.9647 3.20146 61.2634 4.40731L61.2671 4.42321Z" fill="#326AB3"/>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<clipPath id="clip0_14282_117601">
|
|
14
|
+
<rect width="110" height="20" fill="white"/>
|
|
15
|
+
</clipPath>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Dorsey" data-name="Trailer - Dorsey" transform="translate(-353.877 -9728)">
|
|
3
|
+
<rect id="Rectangle_63535" data-name="Rectangle 63535" width="110" height="20" transform="translate(353.877 9728)" fill="#ef3f35" opacity="0"/>
|
|
4
|
+
<path id="Union_701" data-name="Union 701" d="M38.936,13.348l1.44-4.406L39.958,2.68h2.067l.24,3.451L44.758,2.68H47.25L42.656,9.1l-1.387,4.245Zm-9.28,0h-5.09l.559-1.753h2.93a.294.294,0,0,0,.28-.2L29,9.363a.664.664,0,0,0-.661-.935H27.154c-.993,0-.58-1.262-.58-1.262l1.1-3.488a1.474,1.474,0,0,1,1.415-1h4.527l-.568,1.735H30.188a.412.412,0,0,0-.374.288l-.353,1.053a.541.541,0,0,0-.028.172.533.533,0,0,0,.535.532H31.33a.762.762,0,0,1,.725,1L30.279,12.9a.655.655,0,0,1-.623.451Zm-12.766,0,2.916-8.933h-.627l.554-1.734h5.532c1.261,0,1.021.99,1.021.99s-.4,1.835-.7,2.82a1.906,1.906,0,0,1-1.341,1.206c.763.258.454,1.4.454,1.4L24,11.455a1.325,1.325,0,0,0-.054.373V13.3H21.226V11.842a1.324,1.324,0,0,1,.076-.431l.706-2.2H20.842l-1.361,4.134Zm4.885-6.8h.63c.611,0,.906-.8.906-.8.481-1.228-.505-1.277-.505-1.277h-.434Zm9.29,6.8L34.552,2.678h4.831l-.567,1.735H36.4L35.983,5.7h2.41L37.64,8.012H35.227l-1.143,3.495H36.5l-.6,1.84ZM10.33,13.337c-2.035,0-1.261-1.95-1.261-1.95l2.446-7.439s.394-1.281,1.478-1.281h5.081c1.148,0,.652,1.28.652,1.28l-2.532,8.015A1.674,1.674,0,0,1,14.7,13.337Zm3.306-8.215L11.777,10.8c-.359.931.407.887.407.887h.8A1.139,1.139,0,0,0,14,10.75L15.725,5.3v0s.338-.824-.445-.876h-.958C14.247,4.425,13.841,4.456,13.636,5.122ZM0,13.164,3.617,2.15H2.447L3.118,0H9.307c2.254,0,1.381,2.477,1.381,2.477s-2.633,8.162-3.1,9.5a1.57,1.57,0,0,1-1.462,1.188ZM3.358,11.3H4.58a1.343,1.343,0,0,0,1.2-1.106L7.819,3.742l0,0s.4-.975-.524-1.028H6.165Z" transform="translate(353.877 9731.263)" fill="#ef3f35"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_East" data-name="Trailer - East" transform="translate(-353.877 -9808)">
|
|
3
|
+
<rect id="Rectangle_63533" data-name="Rectangle 63533" width="110" height="20" transform="translate(353.877 9808)" fill="#2267ad" opacity="0"/>
|
|
4
|
+
<path id="Union_702" data-name="Union 702" d="M20.213,8.812a2.379,2.379,0,0,1-.028-.512,2.879,2.879,0,0,1,.194-.893h3.287l-.025.034a.775.775,0,0,0-.158.451.744.744,0,0,0,.625.678,1.617,1.617,0,0,0,.652.036c.705-.1,1.327-.574,1.277-1.061-.1-.96-2.926-.8-3.672-2.362-.192-.4-1.116-2.735,1.9-4.461a7.318,7.318,0,0,1,2.18-.664c1.949-.265,3.6.408,4.132,1.567a1.993,1.993,0,0,1,.178.844v.122a2.342,2.342,0,0,1-.134.652H27.466a.637.637,0,0,0,.061-.265.6.6,0,0,0-.356-.531,1.341,1.341,0,0,0-.8-.115c-.638.088-1.156.517-1.156.961a.539.539,0,0,0,.123.344,1.252,1.252,0,0,0,.226.184,4.539,4.539,0,0,0,1.323.566s2.69.6,2.518,2.63c-.183,2.185-2.028,3.656-4.781,4.025a6.364,6.364,0,0,1-.84.057C21.881,11.1,20.439,10.187,20.213,8.812Zm11.39,2.01,2.775-7.577H31.266L32.355.275h9.1l-1.089,2.97H37.423l-2.774,7.577Zm-15.46-.06.218-1.828h-3.5l-1.2,1.828H8.312L15.759.3h4.113l-.656,10.464Zm-1.718-4.2h2.22l.494-4.122ZM0,10.759,3.86.228h7.505L10.42,2.806v.009H6.012L5.5,4.206h4L8.585,6.694h-4L4.082,8.08h4.4L7.5,10.759Z" transform="translate(353.877 9812.451)" fill="#2267ad"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Fontaine" data-name="Trailer - Fontaine" transform="translate(-353.877 -9888)">
|
|
3
|
+
<rect id="Rectangle_63525" data-name="Rectangle 63525" width="110" height="20" transform="translate(353.877 9888)" fill="#3c3c3c" opacity="0"/>
|
|
4
|
+
<path id="Union_703" data-name="Union 703" d="M12.421,8.96a2.571,2.571,0,0,1-2.572-2.6V2.6A2.572,2.572,0,0,1,12.421,0h7.057A2.572,2.572,0,0,1,22.05,2.6V6.359a2.571,2.571,0,0,1-2.572,2.6Zm.241-5.418V5.417a1.317,1.317,0,0,0,1.354,1.3h3.716a1.316,1.316,0,0,0,1.354-1.3V3.542a1.316,1.316,0,0,0-1.354-1.3H14.016A1.316,1.316,0,0,0,12.662,3.542ZM68.426,8.855,63.2,2.379V8.855H60.512V.106H64.6l5.159,6.388V.106h2.684V8.855Zm-29.243,0v-6.7H35.44V.106H45.735l0,2.051H41.893v6.7Zm-8.476,0L25.479,2.379V8.855H22.8V.106h4.09l5.157,6.388V.106h2.683V8.855Zm22.584,0L52.378,7.2H46.944L46.03,8.855H43.121L47.947.106h3.424L56.2,8.855ZM47.931,5.4h3.462L49.662,2.271Zm8.876,3.452V.106h2.706V8.854Zm16.449,0V.105h9.769V2.156H75.962V3.536H82.6V5.324H75.962V6.8h7.063V8.854ZM0,8.854V.105H9.253V2.156H2.7V3.785H8.948v2.05H2.71V8.854Z" transform="translate(353.877 9893.52)" fill="#3c3c3c"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Fruehauf" data-name="Trailer - Fruehauf" transform="translate(-353.877 -9968)">
|
|
3
|
+
<rect id="Rectangle_63527" data-name="Rectangle 63527" width="110" height="20" transform="translate(353.877 9968)" fill="#ef3f35" opacity="0"/>
|
|
4
|
+
<path id="Union_704" data-name="Union 704" d="M21.636,10.424a3.762,3.762,0,0,1-2.329-3.453q0-3.146,0-6.292V.308h3.073s.007,2.178.008,3.129c0,.973-.015,1.946.008,2.919A3.766,3.766,0,0,0,22.567,7.4a1.257,1.257,0,0,0,2.417.01A3.285,3.285,0,0,0,25.166,6.4c.017-1.892.008-3.784.008-5.676v-.4h3.067V6.8A3.784,3.784,0,0,1,24.9,10.722a6.947,6.947,0,0,1-1.159.1A5.6,5.6,0,0,1,21.636,10.424Zm39.346.1a3.775,3.775,0,0,1-2.605-3.586q0-3.145,0-6.291V.334H61.47v.35c0,1.9-.017,3.805.013,5.707a3.052,3.052,0,0,0,.29,1.273,1.2,1.2,0,0,0,2.138.029,2.885,2.885,0,0,0,.316-1.265c.033-1.912.014-3.826.014-5.739V.324h3.073v6.51a3.822,3.822,0,0,1-3.373,3.895,7.064,7.064,0,0,1-1.106.09A5.923,5.923,0,0,1,60.982,10.529ZM14.9,10.345c-.463-1.035-.953-2.057-1.4-3.1-.141-.324-.309-.492-.673-.424a2.216,2.216,0,0,1-.379,0v3.75H9.582V.307h.231c1.5,0,3-.027,4.5.007a3.159,3.159,0,0,1,3.046,1.848,3.306,3.306,0,0,1-.939,4.067l-.162.137,2.1,4.226H17.018c-.576,0-1.152-.009-1.728,0h-.02A.351.351,0,0,1,14.9,10.345ZM12.448,2.916V4.187c.546,0,1.077.02,1.6-.008a.633.633,0,0,0,.569-.644.6.6,0,0,0-.561-.611c-.214-.012-.428-.015-.644-.015C13.1,2.908,12.777,2.916,12.448,2.916ZM54.407,9.148H51.9s-.328,1.031-.458,1.434H48.378c.153-.454.446-1.32.446-1.32L52.024.3h2.283l3.671,10.292-3.108,0Zm-1.92-2.395h1.378l-.688-2.167ZM1.195,10.589C.8,10.583.4,10.557,0,10.54v-.065C.043,9.983.059,9.486.134,9a4.834,4.834,0,0,1,3.9-3.934,3.8,3.8,0,0,1,.616-.032c1.05,0,2.1,0,3.173,0V7.872c-.441,0-.861-.006-1.28,0-.148,0-.3,0-.446,0a7.34,7.34,0,0,0-1.177.058A2.239,2.239,0,0,0,3,10.231c0,.106,0,.212,0,.36l-1.093,0C1.669,10.593,1.432,10.592,1.195,10.589Zm67.579-.019a4.847,4.847,0,0,1,3.163-5.3,4.487,4.487,0,0,1,1.334-.233c1.063-.033,2.127-.01,3.22-.01V7.872c-.577,0-1.138-.007-1.7,0a8.085,8.085,0,0,0-1.232.06A2.285,2.285,0,0,0,71.67,10.2c0,.117,0,.233,0,.37Zm-24.448,0V6.764H41.809v3.8H38.746V.329h3.032v3.7h2.552V.326h3.032V10.569Zm-14.306-.005V.327H37V2.915H32.883V4.052h3.949V6.73H32.882v1.2H37v2.638ZM0,6.647C.014,6.066.049,5.485.037,4.9A5,5,0,0,1,4.983,0c.824.027,1.65,0,2.475,0h.371V2.883c-.642,0-1.28-.005-1.916,0h-.2a3.87,3.87,0,0,0-.8.054A2.309,2.309,0,0,0,3.162,4.388a.47.47,0,0,1-.256.238A5.286,5.286,0,0,0,.226,6.587,1.234,1.234,0,0,1,0,6.777Zm68.7.069a20.151,20.151,0,0,1,.19-2.986A4.882,4.882,0,0,1,73.66.006c.825,0,1.651,0,2.477,0H76.5V2.883c-.737,0-1.462.013-2.187,0A2.437,2.437,0,0,0,71.8,4.457a.333.333,0,0,1-.174.159A5.181,5.181,0,0,0,68.8,6.731Z" transform="translate(353.877 9972.589)" fill="#ef3f35"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M43.2445 18.8642C42.8184 18.7585 42.3635 18.6549 42.0402 18.3388C41.6497 17.9833 41.573 17.4099 41.6566 16.9158C41.7353 16.5901 41.7271 16.2462 41.8532 15.9321C42.2344 15.93 42.6155 15.9302 42.9965 15.9304C43.3776 15.9306 43.7587 15.9304 44.1399 15.9287C44.2881 15.9283 44.436 15.9415 44.5817 15.968C44.5071 16.2225 44.4858 16.496 44.5941 16.7446C45.1997 17.0167 45.8977 16.9443 46.5218 16.7791C46.9212 16.6579 47.1356 16.2591 47.2157 15.88C47.35 15.2491 47.4925 14.6194 47.6117 13.9858C47.2472 14.3886 46.8725 14.8205 46.3409 15.0067C45.7346 15.2782 45.0578 15.2166 44.4111 15.203C43.8875 15.1419 43.3858 14.9593 42.9471 14.6702C42.4771 14.352 42.2689 13.759 42.2991 13.214C42.2635 12.4801 42.4436 11.7632 42.5525 11.0428C42.6704 10.5696 42.7738 10.093 42.8971 9.6218C43.1115 8.9387 43.3219 8.22372 43.8 7.66796C44.4597 6.88738 45.5264 6.54346 46.532 6.56851C47.0856 6.56377 47.6672 6.53533 48.1749 6.7926C48.3592 6.88802 48.5203 7.02201 48.6469 7.18523C48.7735 7.34845 48.8625 7.53698 48.9079 7.73769C48.9463 7.84601 48.9353 7.98412 49.0415 8.05785C49.0305 7.59884 49.1168 7.15134 49.1956 6.7012C49.5014 6.67806 49.8082 6.67062 50.1148 6.67893C50.2694 6.68042 50.4241 6.68197 50.5787 6.67954C50.7496 6.68211 50.9208 6.68055 51.0921 6.67906C51.4107 6.67622 51.7297 6.67331 52.0474 6.69714C52.0387 6.86342 52.0136 7.02847 51.9728 7.19C51.4096 9.82084 50.849 12.4526 50.2909 15.0852C50.0538 16.098 49.7552 17.1772 48.9688 17.9171C48.3187 18.5805 47.3658 18.8378 46.4622 18.9231C46.0269 19.0077 45.5847 19.0022 45.143 18.9968C44.9451 18.9944 44.7473 18.9919 44.5502 18.9976C44.5144 18.9992 44.4787 19 44.443 19C44.0397 18.9999 43.6441 18.9046 43.2445 18.8642ZM46.8431 8.79172C46.5875 8.83837 46.3081 8.89192 46.1218 9.0869C45.8333 9.35905 45.7484 9.76052 45.6593 10.1295C45.5141 10.7239 45.3901 11.3235 45.2873 11.9283C45.2599 12.2032 45.2462 12.5166 45.4222 12.7495C45.6538 12.9864 46.0141 13.0108 46.3279 13.0298C46.7896 13.0197 47.3007 12.9567 47.6542 12.633C47.9241 12.3 48.0309 11.8741 48.1221 11.4652C48.2447 10.8546 48.3995 10.2473 48.444 9.62444C48.4495 9.35025 48.3755 9.01987 48.0981 8.89469C47.8469 8.79756 47.5792 8.74929 47.3095 8.75252C47.1532 8.75307 46.9973 8.76618 46.8431 8.79172ZM65.4472 15.3249C65.1929 15.3227 64.9389 15.3204 64.6859 15.3241C64.0916 15.3412 63.5 15.2376 62.9479 15.0195C62.4656 14.8414 62.0518 14.417 62.0148 13.8923C61.9819 13.4299 61.9764 12.9438 62.1341 12.5024C63.0897 12.4787 64.0474 12.4739 65.0031 12.5037C65.0065 12.7461 64.9819 12.9898 65.0038 13.2315C65.2401 13.4502 65.5792 13.3473 65.8622 13.4366C66.1793 13.4861 66.4903 13.3893 66.8069 13.3838C67.0803 13.3744 67.3865 13.3006 67.5564 13.0704C67.7516 12.8185 67.6605 12.4821 67.6872 12.1896C67.5181 12.0531 67.3068 11.9778 67.0885 11.9764C66.8791 11.9713 66.6695 11.9714 66.4599 11.9715C66.0977 11.9715 65.7358 11.9715 65.3751 11.9459C65.0099 11.8674 64.6325 11.8836 64.2681 11.8091C63.7673 11.6723 63.1967 11.4923 62.9425 11.0015C62.5966 10.4064 62.7322 9.69214 62.8849 9.06049C63.0767 8.35702 63.3843 7.62524 64.0037 7.18654C64.5188 6.80742 65.1689 6.69572 65.7889 6.60703C66.3109 6.53865 66.8385 6.59823 67.3611 6.54136C67.864 6.55016 68.3661 6.57589 68.8689 6.58198C69.543 6.67202 70.3322 6.76545 70.7576 7.35986C71.1002 7.90349 71.0481 8.60216 70.8283 9.18168C69.9377 9.18912 69.0471 9.19786 68.1572 9.17694C68.1292 9.01107 68.1188 8.84182 68.0743 8.67934C68.0037 8.52634 67.8194 8.49181 67.6728 8.4539C67.32 8.39161 66.9604 8.41734 66.6048 8.41944C66.3109 8.43433 65.954 8.47563 65.8006 8.762C65.6279 9.00295 65.6773 9.3076 65.6704 9.58456C65.93 9.73689 66.2404 9.70236 66.5288 9.74366C67.0775 9.82084 67.6324 9.79105 68.1846 9.82016C68.7703 9.92306 69.3964 9.90621 69.9253 10.2149C70.4398 10.4614 70.6535 11.0611 70.6638 11.5926C70.6193 12.3285 70.4316 13.0677 70.0452 13.7035C69.5854 14.416 68.8614 14.9221 68.0284 15.113C67.3372 15.2993 66.6272 15.3278 65.9157 15.3278C65.7596 15.3277 65.6035 15.3262 65.4472 15.3249ZM13.8382 14.9985C13.4367 14.8089 13.2285 14.3798 13.1463 13.9688C13.0723 13.1882 13.2442 12.4015 13.5395 11.6799C13.6637 11.3726 13.8514 11.0942 14.0905 10.8625C14.3295 10.6308 14.6148 10.4508 14.9281 10.334C15.478 10.111 16.0693 10.0053 16.6634 10.0239C16.8238 10.0291 16.9861 10.0264 17.1489 10.0239C17.6264 10.0163 18.1073 10.0085 18.5528 10.1973C18.8357 10.3043 18.9864 10.5819 19.1378 10.8216C19.2851 10.1622 19.5023 9.50007 19.4578 8.81765C19.455 8.63418 19.2886 8.5042 19.1337 8.43447C18.6739 8.2857 18.1776 8.28878 17.7198 8.44327C17.3992 8.58679 17.3204 8.96388 17.2121 9.25974C16.8857 9.30692 16.5554 9.32214 16.226 9.30516C16.0542 9.30191 15.8822 9.29839 15.7111 9.30449C15.5578 9.29981 15.4039 9.30252 15.2502 9.3053C14.9361 9.32169 14.6211 9.30599 14.3102 9.25845C14.4219 8.56249 14.6213 7.82117 15.1762 7.33711C15.7989 6.77046 16.6785 6.64995 17.4875 6.57548C18.287 6.56736 19.0865 6.56465 19.8852 6.57683C20.6532 6.64995 21.4992 6.78129 22.0515 7.36893C22.4591 7.85163 22.4522 8.52458 22.3467 9.11154C22.3234 9.65924 22.1679 10.1873 22.063 10.7221C21.774 12.0716 21.486 13.4207 21.1992 14.7693C21.1601 14.9108 21.1848 15.0868 21.0622 15.1918C20.8376 15.2162 20.6115 15.2238 20.3858 15.2143C20.2659 15.2124 20.146 15.2103 20.0264 15.2134C19.8158 15.2101 19.6051 15.2119 19.3943 15.2134C19.0107 15.2168 18.6275 15.2202 18.2452 15.1922C18.2795 15.0033 18.324 14.8165 18.3692 14.6303C18.4138 14.4909 18.4486 14.3486 18.4733 14.2044C18.213 14.4861 17.9732 14.7975 17.6293 14.9864C17.1637 15.2258 16.6434 15.3424 16.1188 15.3249C16.0047 15.324 15.8894 15.3249 15.7735 15.3261C15.6864 15.3269 15.5988 15.3277 15.5113 15.3277C14.9319 15.3276 14.3483 15.2934 13.8382 14.9985ZM17.173 11.7692C16.8654 11.824 16.514 11.8871 16.3194 12.1545C16.1037 12.4672 16.0145 12.912 16.2304 13.2458C16.5661 13.3958 16.9318 13.393 17.2935 13.3903C17.3826 13.3897 17.471 13.389 17.5588 13.3903C17.854 13.3883 18.1836 13.3931 18.4206 13.1914C18.7056 12.972 18.7857 12.599 18.8159 12.2625C18.8253 12.19 18.8114 12.1164 18.7761 12.0521C18.7408 11.9878 18.6859 11.9361 18.6193 11.9045C18.3209 11.792 18.0029 11.7392 17.6837 11.7491C17.513 11.7494 17.3416 11.7588 17.173 11.7692ZM53.6509 15.0648C53.2105 14.9125 52.7844 14.6377 52.5836 14.2064C52.3 13.675 52.3548 13.0576 52.3733 12.4794C52.5281 11.2877 52.7864 10.1115 53.1454 8.96368C53.3308 8.39487 53.6669 7.88552 54.1189 7.48858C54.571 7.09164 55.1223 6.8216 55.7157 6.70655C56.1247 6.64833 56.5316 6.56106 56.9474 6.57115C57.1712 6.57115 57.3952 6.57079 57.6195 6.57006C58.1487 6.56858 58.678 6.56709 59.2074 6.57683C59.748 6.63235 60.3131 6.70682 60.7817 6.99996C61.1425 7.25753 61.3983 7.634 61.5031 8.06151C61.6162 8.65118 61.5449 9.25364 61.486 9.84541C61.2366 11.0619 60.9715 12.288 60.4687 13.4314C60.1419 14.1118 59.5713 14.6934 58.8512 14.9608C58.1308 15.2176 57.3686 15.3411 56.6029 15.325C56.4441 15.3241 56.2846 15.325 56.1248 15.326C56.0121 15.3266 55.8991 15.3273 55.7861 15.3273C55.0636 15.3271 54.3395 15.2992 53.6509 15.0648ZM56.4176 13.1753C56.7464 13.1828 57.0821 13.1904 57.3735 13.0216C57.7517 12.8375 57.9325 12.434 58.0648 12.061C58.2806 11.3975 58.3887 10.707 58.521 10.0239C58.5562 9.75582 58.5619 9.4848 58.5381 9.21553C58.4847 8.89327 58.1428 8.71522 57.8352 8.7247C57.7278 8.72612 57.6196 8.72355 57.5112 8.72097C57.2137 8.71421 56.9146 8.70696 56.6268 8.78285C56.3077 8.88982 56.0741 9.16401 55.9521 9.46595C55.6952 10.061 55.5835 10.7035 55.4465 11.3325C55.3985 11.7949 55.2341 12.2715 55.3739 12.7318C55.4711 13.0447 55.8171 13.1848 56.1247 13.1733C56.1546 13.1725 56.1847 13.1722 56.215 13.1722C56.2821 13.1722 56.3495 13.1737 56.4176 13.1753ZM37.01 15.3241C36.8562 15.323 36.7013 15.3241 36.5457 15.325C35.6844 15.3306 34.8048 15.3361 34.0087 14.9789C33.4799 14.767 33.038 14.3154 32.9332 13.7494C32.7619 13.1286 32.8962 12.4861 32.9722 11.8627C33.1017 11.1708 33.2415 10.4796 33.4333 9.80114C33.6161 9.17694 33.7881 8.52769 34.1888 7.99827C34.6827 7.299 35.5021 6.89543 36.3296 6.72144C36.7598 6.64833 37.1907 6.55084 37.6305 6.56979C37.8467 6.57379 38.0633 6.57176 38.2799 6.56979C38.6803 6.566 39.0808 6.56221 39.4795 6.59687C40.1433 6.69775 40.8867 6.84946 41.3135 7.41409C41.5779 7.70926 41.6519 8.1026 41.7601 8.46886C41.7784 8.76623 41.7782 9.06442 41.7595 9.36176C41.656 9.69214 41.6745 10.0449 41.5779 10.3766C41.4731 10.7496 41.4628 11.1476 41.2881 11.4991C39.4878 11.5058 37.6877 11.5058 35.8878 11.4991C35.7809 11.9351 35.6597 12.3968 35.7652 12.8449C35.8399 13.153 36.1646 13.2972 36.4571 13.3216C36.9394 13.3683 37.4689 13.3886 37.9033 13.1422C38.1903 12.9715 38.2355 12.6209 38.3642 12.3446C38.6722 12.345 38.9802 12.3447 39.2884 12.3437C39.8844 12.3423 40.4798 12.3409 41.075 12.348C41.162 12.541 41.0545 12.7516 41.0065 12.9424C40.7921 13.7088 40.3345 14.4494 39.611 14.8374C38.8871 15.2229 38.0527 15.3267 37.2386 15.3268C37.1625 15.3268 37.0859 15.3259 37.01 15.3241ZM36.7394 8.81948C36.405 9.0869 36.3496 9.53033 36.2304 9.91223C37.1223 9.90948 38.014 9.90923 38.9055 9.91149C38.9028 9.55809 39.1144 9.17965 38.9048 8.84994C38.6274 8.55883 38.1801 8.65497 37.8197 8.60622C37.4558 8.6306 37.0463 8.58395 36.7394 8.81948ZM2.97906 15.1109C2.294 14.8997 1.65279 14.4494 1.34794 13.7921C1.20354 13.4799 1.1043 13.1493 1.05316 12.8098C0.925053 12.2445 1.08056 11.6758 1.13948 11.1132C1.41144 9.53981 1.73685 7.97058 2.22598 6.448C2.59385 5.27272 3.41524 4.22743 4.53188 3.66416C5.27243 3.26947 6.11093 3.10225 6.94054 3.02236C7.73288 2.99528 8.52603 2.99887 9.31906 3.00245C9.62295 3.00381 9.92691 3.00516 10.2308 3.00476C10.5274 3.01897 10.8295 2.99934 11.1201 3.07043C11.8113 3.17468 12.5662 3.3744 13.0136 3.94715C13.4992 4.63356 13.4849 5.52863 13.3492 6.32133C13.3102 6.52443 13.3486 6.78109 13.1876 6.93673C12.7359 6.96848 12.2822 6.96381 11.8286 6.95873C11.5478 6.95569 11.2663 6.95271 10.986 6.95873C10.8607 6.95257 10.7343 6.95609 10.6079 6.95961C10.3561 6.96638 10.1039 6.97349 9.86039 6.90457C9.87272 6.62768 9.92616 6.30001 9.71721 6.07727C9.47607 5.83084 9.10409 5.83491 8.78416 5.78481C8.14631 5.69341 7.50242 5.77127 6.86874 5.85792C6.46319 5.92901 6.07134 6.11992 5.82609 6.45572C5.40683 7.02711 5.2801 7.73796 5.11637 8.40955C4.93476 9.28492 4.6978 10.1549 4.6197 11.0465C4.53339 11.3762 4.53407 11.7451 4.69581 12.0532C4.81227 12.2752 5.05684 12.3903 5.28976 12.4574C5.83095 12.5637 6.3879 12.6259 6.93869 12.5562C7.4272 12.4899 7.96079 12.5007 8.38005 12.2049C8.79314 11.8975 8.9644 11.3851 9.05004 10.9017C9.07812 10.8157 9.10621 10.7297 9.13423 10.643C8.84972 10.6391 8.56515 10.6411 8.28051 10.643C7.81036 10.6462 7.3402 10.6498 6.8708 10.6267C6.88108 10.3031 6.97561 9.99171 7.04556 9.67826C7.13393 9.24159 7.22093 8.80425 7.33534 8.37367C7.47646 8.35946 7.61827 8.35065 7.76076 8.34998C8.64526 8.3512 9.52983 8.35156 10.4145 8.35106C10.9452 8.35106 11.4759 8.35106 12.0067 8.35106C12.0827 8.35153 12.1589 8.35106 12.2351 8.34998C12.4656 8.34164 12.6964 8.35131 12.9254 8.37888C12.8384 8.93058 12.7034 9.47428 12.6116 10.0254C12.361 11.2291 12.1903 12.5025 11.4936 13.5526C10.8517 14.5444 9.6796 15.0914 8.52254 15.216C7.85804 15.328 7.18271 15.3257 6.50916 15.3233C6.30823 15.3226 6.10737 15.3219 5.90699 15.3243C5.72374 15.3226 5.5398 15.3237 5.35552 15.3249C5.23749 15.3256 5.11925 15.3264 5.00107 15.3264C4.31917 15.3262 3.63706 15.3017 2.97906 15.1109ZM22.9964 15.1928C23.0055 15.0278 23.034 14.8645 23.0814 14.706C23.8685 11.0489 24.6565 7.3919 25.4455 3.73518C25.4873 3.53749 25.5099 3.33236 25.5969 3.14686C25.8275 3.11249 26.0611 3.10162 26.2939 3.11443C26.42 3.11714 26.5462 3.11971 26.6717 3.11504C26.883 3.12032 27.0949 3.11761 27.3068 3.11504C27.6873 3.10239 28.0682 3.11309 28.4474 3.14706C28.0993 4.97971 27.6602 6.79612 27.2917 8.62606C26.871 10.5359 26.4584 12.448 26.0538 14.3623C25.9798 14.6399 25.9468 14.9283 25.8441 15.1984C25.3589 15.2099 24.8731 15.2176 24.3874 15.2176C23.924 15.2174 23.4596 15.2103 22.9964 15.1928ZM27.7884 15.1712C27.9028 14.5612 28.0611 13.9607 28.17 13.3501C28.8516 10.2805 29.4942 7.20151 30.1669 4.12994C30.2443 3.80362 30.2793 3.46505 30.3971 3.14896C30.5212 3.1203 30.6486 3.10846 30.7759 3.11375C31.439 3.11642 32.1021 3.11642 32.7653 3.11375C32.9351 3.11202 33.1047 3.12698 33.2715 3.15844C32.6372 6.06211 32.0207 8.96917 31.3883 11.8728C31.3191 12.187 31.2499 12.5018 31.1944 12.8187C31.019 13.5377 30.869 14.2641 30.7293 14.9905C30.6964 15.0602 30.6649 15.13 30.6334 15.1997C30.2523 15.2185 29.8707 15.2161 29.4893 15.2137C29.2809 15.2124 29.0725 15.2111 28.8641 15.2133C28.7579 15.2109 28.6514 15.2124 28.5448 15.2141C28.4774 15.2151 28.41 15.2162 28.3428 15.2162C28.1571 15.2197 27.971 15.2046 27.7884 15.1712Z" fill="#DE1A26"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Great_Dane" data-name="Trailer - Great Dane" transform="translate(-354 -10048)">
|
|
3
|
+
<rect id="Rectangle_63529" data-name="Rectangle 63529" width="110" height="20" transform="translate(354 10048)" fill="#ef3f35" opacity="0"/>
|
|
4
|
+
<path id="Union_706" data-name="Union 706" d="M26.634,13.279c-.27-.012-.541-.01-.812-.008-.238,0-.476,0-.714,0a.861.861,0,0,1-.934-1.049,4.765,4.765,0,0,1,.216-1.038,11.222,11.222,0,0,1,1.2-2.689,2.257,2.257,0,0,1,2.1-1.13c.535.022,1.071.018,1.607.014.345,0,.689-.005,1.034,0a.3.3,0,0,0,.332-.226c.217-.544.184-.605-.406-.6q-1.757.006-3.513.016h-.3c.216-.535.414-1.034.623-1.528a.222.222,0,0,1,.173-.084c1.607,0,3.215-.023,4.822,0,1.027.017,1.547.777,1.252,1.839a16.885,16.885,0,0,1-.675,1.759c-.362.9-.734,1.79-1.1,2.687-.131.323-.112.348.226.349h.879c-.251.565-.484,1.093-.725,1.618a.175.175,0,0,1-.137.068c-1.1,0-2.21,0-3.344,0l.242-.7a2.4,2.4,0,0,1-1.841.7Q26.741,13.284,26.634,13.279Zm.98-3.823c-.251.644-.527,1.279-.79,1.919a1.663,1.663,0,0,0-.053.191.782.782,0,0,0,.151.034h1.644a.357.357,0,0,0,.355-.241c.318-.754.634-1.51.969-2.311-.58,0-1.113.023-1.642-.008l-.065,0A.549.549,0,0,0,27.614,9.456Zm9.649,3.826c-.578-.009-1.157-.008-1.735-.007-.439,0-.879,0-1.318,0a.949.949,0,0,1-1.069-1.079,2.219,2.219,0,0,1,.1-.666c.309-.839.637-1.671.967-2.5.3-.748.61-1.492.915-2.238.024-.058.045-.118.083-.22H34.125c.222-.545.422-1.043.633-1.537.019-.045.112-.08.173-.083a6.826,6.826,0,0,1,.727,0c.179.013.254-.061.314-.219.154-.407.32-.809.5-1.208a.325.325,0,0,1,.193-.176c.84-.154,1.683-.3,2.526-.439a.322.322,0,0,1,.087.014l-.828,2.021H40.47c-.149.369-.282.7-.418,1.036-.238.583-.239.583-.861.583-.4,0-.808,0-1.211,0a.243.243,0,0,0-.27.175c-.6,1.479-1.21,2.954-1.813,4.432-.134.33-.071.43.285.434.411.005.823,0,1.235,0h.837c-.195.484-.391.931-.553,1.389a.373.373,0,0,1-.417.29Zm-25.42,0c-.767-.011-1.534,0-2.341,0,.383-.937.751-1.839,1.121-2.74.734-1.79,1.471-3.58,2.2-5.373a.3.3,0,0,1,.335-.221c.686.011,1.372,0,2.1,0-.1.264-.181.5-.287.8.18-.158.315-.284.457-.4a1.636,1.636,0,0,1,1.114-.4c.491.01.983,0,1.5,0-.023.082-.035.143-.058.2-.221.545-.451,1.087-.663,1.636a.251.251,0,0,1-.283.187c-.606-.008-1.212-.005-1.817,0a.721.721,0,0,0-.777.524q-1.145,2.785-2.286,5.572a.281.281,0,0,1-.3.218Zm40.86-.013a.892.892,0,0,1-.956-1.145,9.6,9.6,0,0,1,.987-2.869,6.259,6.259,0,0,1,.724-1.138,1.923,1.923,0,0,1,1.607-.749c.466,0,.931,0,1.4,0s.958,0,1.438,0a.3.3,0,0,0,.335-.223c.217-.558.189-.608-.426-.606q-1.744.006-3.488.016h-.3c.217-.532.406-1.011.611-1.484a.258.258,0,0,1,.192-.127c1.607-.007,3.215-.025,4.821,0a1.289,1.289,0,0,1,1.26,1.8,10.253,10.253,0,0,1-.484,1.313c-.43,1.061-.871,2.117-1.3,3.177-.127.311-.1.347.232.347h.877c-.25.561-.483,1.089-.723,1.614a.174.174,0,0,1-.133.071c-1.1,0-2.21,0-3.345,0l.244-.72c-.125.1-.2.161-.266.22a1.939,1.939,0,0,1-1.259.49c-.4.006-.8.011-1.194.011C53.264,13.277,52.983,13.274,52.7,13.267Zm3.351-1.662a.445.445,0,0,0,.468-.3c.157-.379.317-.757.474-1.137.15-.363.3-.727.457-1.118-.611,0-1.19.01-1.769-.005a.4.4,0,0,0-.428.271q-.361.87-.725,1.738c-.068.161-.134.323-.217.523.115.011.178.023.241.023h.875C55.637,11.6,55.845,11.6,56.054,11.606Zm-39,1.662a.939.939,0,0,1-1.017-1.24,10.471,10.471,0,0,1,.542-1.672c.451-1.148.928-2.285,1.4-3.424a4.047,4.047,0,0,1,.9-1.368,2.078,2.078,0,0,1,1.5-.619q1.6,0,3.2,0a1.493,1.493,0,0,1,1.549,2.133c-.343.964-.758,1.9-1.156,2.846-.029.068-.175.122-.267.122-1.381.008-2.762.011-4.144,0a.366.366,0,0,0-.419.284c-.1.313-.252.611-.374.917-.089.223-.035.309.208.338a2.9,2.9,0,0,0,.338.017q1.768,0,3.537,0h.311c-.225.558-.426,1.066-.64,1.57a.238.238,0,0,1-.185.1q-1.484,0-2.969.006Q18.212,13.277,17.056,13.268Zm3.8-6.63a.34.34,0,0,0-.233.18c-.231.5-.444,1.014-.68,1.561.7,0,1.337,0,1.974-.007a.283.283,0,0,0,.2-.153c.192-.435.371-.875.55-1.316a2.25,2.25,0,0,0,.069-.273l-.915,0C21.487,6.628,21.169,6.63,20.851,6.638Zm48.8,6.628a.915.915,0,0,1-.967-1.132,5.931,5.931,0,0,1,.355-1.3c.5-1.268,1.024-2.525,1.545-3.784A4.381,4.381,0,0,1,71.493,5.6a2.132,2.132,0,0,1,1.585-.66c1,0,2,.016,3,0A1.639,1.639,0,0,1,77.9,6.052V6.78c-.391.977-.791,1.952-1.168,2.935a.446.446,0,0,1-.5.346c-.831-.012-1.662-.011-2.493-.01-.526,0-1.052,0-1.578,0a.3.3,0,0,0-.336.224c-.116.326-.264.641-.391.963-.1.241-.045.32.217.351a2.663,2.663,0,0,0,.313.015H75.82c-.224.554-.426,1.069-.646,1.577-.024.056-.156.091-.237.091q-2.193.009-4.387,0h-.411C69.976,13.276,69.815,13.275,69.653,13.266Zm4.855-4.883a.255.255,0,0,0,.28-.194c.168-.427.348-.849.521-1.274.031-.078.05-.162.076-.25a.534.534,0,0,0-.118-.037c-.572,0-1.145-.013-1.717.007a.408.408,0,0,0-.29.206c-.231.494-.436,1-.665,1.537l1.075,0C73.954,8.378,74.231,8.379,74.509,8.383ZM64.6,13.275c.065-.166.117-.307.174-.447Q65.935,10,67.1,7.166a1.592,1.592,0,0,0,.079-.2.239.239,0,0,0-.235-.334c-.469-.008-.937,0-1.405,0-.23,0-.311.177-.383.351q-.441,1.061-.875,2.124l-1.711,4.165H60.009c.139-.345.271-.677.406-1.009q1.453-3.548,2.9-7.1a.3.3,0,0,1,.335-.222c.734.012,1.468.005,2.239.005l-.237.641a.743.743,0,0,0,.121-.064,2.169,2.169,0,0,1,1.734-.581c.208.014.418.012.629.011a7.187,7.187,0,0,1,.75.022,1.05,1.05,0,0,1,.988,1.268,4.764,4.764,0,0,1-.287,1.094c-.774,1.922-1.567,3.837-2.359,5.751-.031.074-.116.178-.178.179-.5.007-1.008.009-1.52.009Zm-24.444,0c.075-.186.138-.347.2-.507.147-.358.3-.714.439-1.075a.215.215,0,0,1,.248-.166c.1.006.195,0,.292,0s.209,0,.313,0a.408.408,0,0,0,.458-.3q1.334-3.27,2.681-6.534.542-1.32,1.083-2.641c.033-.08.062-.163.111-.291H44.9c.248-.6.462-1.127.693-1.649a.294.294,0,0,1,.226-.113C46.573,0,47.324,0,48.075,0c1.373,0,2.747.043,4.119.006a2.174,2.174,0,0,1,2.243,2.175A3.114,3.114,0,0,1,54.2,3.555c-.977,2.4-1.948,4.8-2.929,7.191a4.5,4.5,0,0,1-1.438,1.972,2.679,2.679,0,0,1-1.645.55q-3.865,0-7.731.007h-.3Zm8.486-11.3Q46.988,6,45.32,10.018l-.622,1.5c.7,0,1.381.017,2.056-.007a1.144,1.144,0,0,0,.908-.494,6.748,6.748,0,0,0,.715-1.145q1.1-2.489,2.13-5.005a17.762,17.762,0,0,0,.73-2.2c.179-.684-.042-.917-.759-.925-.2,0-.4,0-.606,0-.3,0-.6,0-.9-.006h-.019C48.781,1.741,48.709,1.815,48.644,1.973ZM4.634,13.259c-.765-.021-1.531-.016-2.3-.012-.357,0-.715,0-1.071,0a3.143,3.143,0,0,1-.387-.022A.939.939,0,0,1,0,12.247,3.5,3.5,0,0,1,.31,10.788q1.7-4.165,3.421-8.324A4.7,4.7,0,0,1,5.035.6,2.452,2.452,0,0,1,6.636,0q3.405,0,6.811,0c.054,0,.108.007.188.013-.033.092-.056.167-.085.238-.187.455-.382.907-.558,1.366a.286.286,0,0,1-.319.212c-.6,0-1.2,0-1.8,0-1.007,0-2.014,0-3.02-.011a.886.886,0,0,0-.925.619Q6.21,4.172,5.5,5.9,4.5,8.332,3.5,10.761a2.636,2.636,0,0,0-.146.435c-.046.214.046.338.26.339.84.006,1.681.011,2.521,0,.308-.005.458-.246.565-.5.257-.609.507-1.221.759-1.833q.4-.973.8-1.947c.036-.088.068-.176.116-.3H6.457c.269-.665.514-1.277.768-1.886a.214.214,0,0,1,.163-.1c1.486-.005,2.972,0,4.5,0-.033.094-.056.165-.084.234q-1.6,3.907-3.191,7.816a.332.332,0,0,1-.371.244c-.638-.013-1.277-.005-1.915-.005h-.3l.332-.841H6.332c-.013,0-.022,0-.024,0a1.7,1.7,0,0,1-1.588.845Z" transform="translate(354 10051.358)" fill="#ef3f35"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.811 3.84243L19.8109 3.84268C19.7923 3.89387 19.7736 3.94501 19.7543 3.99586C18.2049 8.15986 16.6579 12.3249 15.1133 16.4909C18.8346 16.4982 22.556 16.4982 26.2773 16.4909C26.5343 15.7899 26.7948 15.0901 27.0553 14.3902C27.2367 13.9029 27.4181 13.4155 27.5983 12.9279H20.7093C20.8819 12.4612 21.0556 11.9945 21.2303 11.5279H28.0983C28.4896 10.4839 28.8783 9.43885 29.2643 8.39285C28.2833 8.39028 27.3021 8.39102 26.3209 8.39175H26.3209H26.3209C25.0126 8.39273 23.7043 8.39371 22.3963 8.38686C22.4977 8.12177 22.5957 7.85669 22.6936 7.59206L22.694 7.59082L22.6941 7.59058C22.7563 7.42245 22.8184 7.2545 22.8813 7.08685C23.6433 7.08685 24.4053 7.08574 25.1673 7.08463C26.6913 7.08241 28.2153 7.08019 29.7393 7.08685C30.0391 6.3122 30.3269 5.53243 30.6148 4.75255L30.615 4.75224C30.7678 4.33822 30.9206 3.92418 31.0753 3.51086C29.5127 3.50875 27.9501 3.50948 26.3875 3.51022C24.2391 3.51122 22.0907 3.51223 19.9423 3.50586C19.8935 3.61652 19.8522 3.72955 19.8111 3.84234L19.811 3.84243ZM2.83945 11.5236C2.22422 13.1802 1.60901 14.8368 0.992188 16.4925L5.33719 16.4935C5.91186 14.9415 6.48884 13.3901 7.06818 11.8395H11.0212C10.4445 13.3901 9.86852 14.9408 9.29318 16.4915H13.6362C15.2495 12.1661 16.8585 7.83915 18.4632 3.51048C17.9807 3.51048 17.4979 3.50981 17.015 3.50915C16.0488 3.50781 15.082 3.50648 14.1152 3.51048C13.8029 4.35702 13.4878 5.20264 13.1726 6.04835C12.9197 6.72715 12.6667 7.40602 12.4152 8.08548H8.46419C9.03219 6.56014 9.59885 5.03448 10.1642 3.50848C9.68181 3.50848 9.19956 3.50937 8.71733 3.51026C7.753 3.51204 6.78882 3.51381 5.82419 3.50848C4.82469 6.17793 3.83205 8.85081 2.83945 11.5236ZM32.5024 3.51172H40.2184C39.7764 4.70239 39.3337 5.89305 38.8904 7.08372C38.7071 7.08372 38.5238 7.08305 38.3405 7.08238C37.9737 7.08105 37.6068 7.07972 37.2394 7.08372C36.9089 7.99021 36.5706 8.89412 36.2322 9.79814C35.8427 10.8388 35.4532 11.8796 35.0754 12.9247C35.4786 12.9201 35.8819 12.9216 36.2854 12.9232C36.4873 12.9239 36.6893 12.9247 36.8914 12.9247C36.7157 13.402 36.538 13.8784 36.3604 14.3548L36.3601 14.3555L36.3601 14.3556C36.096 15.0638 35.832 15.772 35.5743 16.4827C34.0165 16.4933 32.458 16.4914 30.8997 16.4895H30.899H30.899C29.8166 16.4882 28.7343 16.4868 27.6523 16.4897C28.093 15.301 28.534 14.1127 28.9753 12.9247H30.7244C31.0425 12.0723 31.3596 11.2193 31.6766 10.3663L31.6767 10.366C32.0831 9.27269 32.4895 8.17923 32.8984 7.08672C32.5157 7.08072 32.1331 7.08272 31.7504 7.08472H31.7503C31.559 7.08572 31.3677 7.08672 31.1763 7.08672C31.6197 5.89338 32.0617 4.70172 32.5024 3.51172ZM46.1661 3.51465H41.8181C40.2094 7.83798 38.6021 12.1647 36.9961 16.4947H47.4331C47.8944 15.256 48.3554 14.017 48.8161 12.7776H42.7221C43.8721 9.69098 45.0201 6.60332 46.1661 3.51465Z" fill="#D1202F"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Hudson" data-name="Trailer - Hudson" transform="translate(-353.876 -10128)">
|
|
3
|
+
<rect id="Rectangle_63531" data-name="Rectangle 63531" width="110" height="20" transform="translate(353.877 10128)" fill="#00967e" opacity="0"/>
|
|
4
|
+
<path id="Union_705" data-name="Union 705" d="M26.412,13.5c-1.093-.2-1.446-1.657-1.7-2.551-.205-.716-.373-1.441-.564-2.161a6.191,6.191,0,0,1-.263-3.06,2.965,2.965,0,0,1,.235-.626,2.741,2.741,0,0,1,2.734-1.238,4.889,4.889,0,0,1,.531.06A5.126,5.126,0,0,0,28.407,4c.1,0,.111-.053.08-.149-.142-.44-.279-.878-.4-1.321a.165.165,0,0,1,.035-.177.207.207,0,0,1,.078-.028,8.9,8.9,0,0,0,1.585-.567q.547-.237,1.071-.521A2.294,2.294,0,0,1,31.87.857a.353.353,0,0,1,.214.036.278.278,0,0,1,.09.269c-.035.3-.1.594-.124.894-.1,1.154-.086,2.319-.111,3.476Q31.9,7.322,31.9,9.111c0,1.283-.236,2.737.641,3.8a.176.176,0,0,1,.058.135c-.014.072-.1.092-.178.1-.632.046-1.272.067-1.906.061l-.928.008a1.939,1.939,0,0,1-.765-.059c-.181-.074-.132-.3-.271-.37s-.294.128-.391.183a3.352,3.352,0,0,1-1.524.545A1.252,1.252,0,0,1,26.412,13.5Zm1.057-7.746c-.439.307-.4.823-.375,1.3a12.256,12.256,0,0,0,.224,1.771c.077.4.169.791.268,1.183a1.776,1.776,0,0,0,.367.9.25.25,0,0,0,.424-.047,3.489,3.489,0,0,0,.205-1.79q-.009-.775.048-1.55c.01-.147.026-.3.039-.444a3.212,3.212,0,0,0-.023-.959.652.652,0,0,0-.669-.528A.893.893,0,0,0,27.468,5.749Zm13.924,5.7a6.449,6.449,0,0,1-.456-3.235c.006-.094.012-.189.019-.282a5.748,5.748,0,0,1,.935-3.2,4.133,4.133,0,0,1,5.982-.094,4.242,4.242,0,0,1,.943,2.232c.355,1.921.323,4.24-1.3,5.61a4.213,4.213,0,0,1-2.7.951A3.7,3.7,0,0,1,41.392,11.444ZM44.37,5.6a4.145,4.145,0,0,0-.193,2,12.625,12.625,0,0,0,.273,2.409c.065.305.455,1.651,1,1.214.35-.279.371-.9.4-1.3s.028-.806.013-1.209a14.43,14.43,0,0,0-.136-1.5,5.863,5.863,0,0,0-.255-1.352,1.2,1.2,0,0,0-.5-.585.411.411,0,0,0-.189-.052C44.6,5.221,44.475,5.4,44.37,5.6ZM9.29,13.331a.188.188,0,0,1-.13-.106c-.021-.067-.035-.175,0-.217.909-1.03.674-2.428.693-3.691,0-.049,0-.1,0-.149,0-.529,0-.874.019-1.417,0-.033,0-.066,0-.1a1.616,1.616,0,0,1,.019-.193c.018-.178-.164-.17-.308-.162-.033,0-.064,0-.091,0l-.641-.01c-.3,0-.605-.009-.907-.014a2.621,2.621,0,0,0-.841,0,.221.221,0,0,0-.148.244c.012.748-.027,1.495-.039,2.242A9.928,9.928,0,0,0,6.965,11.5,4.515,4.515,0,0,0,7.5,12.952c.036.065.073.146.032.207a.192.192,0,0,1-.119.066,3.449,3.449,0,0,1-.868.069h-.2q-1.6.014-3.206.037c-.15,0-.4.062-.5-.092a.257.257,0,0,1,0-.243,1.167,1.167,0,0,1,.145-.207,3.026,3.026,0,0,0,.5-1.478A14.486,14.486,0,0,0,3.3,9.6c-.007-.794,0-1.588.013-2.382.006-.476.014-.952.019-1.429.007-.705.014-1.411.017-2.116,0-.277,0-.554,0-.831A3.548,3.548,0,0,0,3.29,1.731,1.207,1.207,0,0,0,2.823,1.1,1.011,1.011,0,0,0,2.4.949a1.474,1.474,0,0,0-1.087.45,1.9,1.9,0,0,0-.437.785c-.034.095.01.154.107.129.081-.022.134-.093.211-.127a.808.808,0,0,1,.3-.057,1.465,1.465,0,0,1,1.3.783,1.378,1.378,0,0,1-.171,1.461A1.365,1.365,0,0,1,1.141,4.9,1.6,1.6,0,0,1,.214,4.12a1.759,1.759,0,0,1-.17-.555A3.133,3.133,0,0,1,.922.779,2.4,2.4,0,0,1,2.242.1C2.855.037,3.474.034,4.09.029L5.818.014a12.4,12.4,0,0,1,1.7.03.466.466,0,0,1,.11.025c.083.033.1.093.056.175-.157.332-.377.631-.532.964a3.776,3.776,0,0,0-.161,1.569c-.008.676-.046,1.352-.051,2.028a.144.144,0,0,0,.021.086c.065.1.284.09.444.085.05,0,.094,0,.126,0q.355.015.711.02c.267,0,.534,0,.8-.01.247-.006.495-.012.742-.01.08,0,.112-.025.117-.112,0-.036.005-.072.009-.107-.016-.6-.013-.947.007-1.444,0-.047,0-.094,0-.141C9.9,2.795,9.9,2.418,9.9,2.041a2.164,2.164,0,0,0-.1-.674c-.071-.214-.179-.412-.27-.617A1.885,1.885,0,0,0,9.362.441.382.382,0,0,1,9.371.11.168.168,0,0,1,9.494.028c.116-.01.233-.015.351-.016.265,0,.533.013.795.015l1.194,0q.98,0,1.96,0a.224.224,0,0,1,.224.1c.066.115-.034.226-.1.31a2.41,2.41,0,0,0-.232.35,2.382,2.382,0,0,0-.265.793c-.053.365-.02.735-.04,1.1-.009.176-.022.347-.025.523s-.006.359-.007.539c0,.087,0,.175,0,.271,0,.257-.007.612-.008.894,0,.094,0,.18,0,.251-.01.609-.016,1.292,0,1.868l0,.131c-.011.278-.019.595-.02.915,0,.053,0,.107,0,.161-.009.487-.015,1.006-.017,1.534,0,.052,0,.105,0,.158a9.568,9.568,0,0,0,.063,2.058,2.356,2.356,0,0,0,.554.936.467.467,0,0,1,.089.178.105.105,0,0,1-.1.141c-.712.068-1.421.057-2.136.059-.429,0-.857.009-1.285.017l-.643.011c-.114,0-.254.023-.383.023A.7.7,0,0,1,9.29,13.331Zm45.66-.044a.292.292,0,0,1-.154-.041.278.278,0,0,1-.085-.208,6.026,6.026,0,0,1,.106-.907,4.184,4.184,0,0,0-.11-1.028q-.219-1.132-.456-2.261Q54.13,8.265,54,7.69c-.047-.214-.118-.422-.155-.638a1.266,1.266,0,0,0-.178-.612.125.125,0,0,0-.065-.049c-.058-.013-.1.049-.129.1a2.254,2.254,0,0,0-.1.877c-.011.315-.037.63-.047.945q-.034,1.107-.019,2.215a7.067,7.067,0,0,0,.158,1.64,1.765,1.765,0,0,0,.365.737.266.266,0,0,1,.066.1.163.163,0,0,1-.081.169c-.291.182-.866.065-1.192.062q-.661-.006-1.322-.02L50.173,13.2c-.043,0-.117,0-.205.01-.242.015-.588.03-.667-.085-.044-.065,0-.151.035-.219a6.7,6.7,0,0,0,.722-3.117c.035-.9.05-1.807.065-2.711a6.654,6.654,0,0,0-.046-1.5,5.092,5.092,0,0,0-.616-1.161c-.029-.061-.046-.148.011-.183a.151.151,0,0,1,.068-.017,15.015,15.015,0,0,0,3.667-.646c.071-.024.164-.042.206.019a.887.887,0,0,1,.1.538c-.012.247-.062.508-.062.694,0,.038.022.1.05.108a.128.128,0,0,0,.118-.031,3.13,3.13,0,0,1,.991-.691,1.242,1.242,0,0,1,1.154-.194,1.442,1.442,0,0,1,.606.821c.72,1.792,1.192,3.7,1.734,5.552a7.144,7.144,0,0,0,1.042,2.473.882.882,0,0,1,.127.22c.034.086-.009.147-.1.165a.513.513,0,0,1-.1.006c-1,0-2.016.078-3.023.078C55.68,13.324,55.314,13.314,54.95,13.287ZM16.9,13.221A1.912,1.912,0,0,1,15.787,12.1a5.43,5.43,0,0,1-.452-1.468,9.363,9.363,0,0,1-.048-2.368,10.783,10.783,0,0,0,.053-1.9A8.978,8.978,0,0,0,14.835,4.2a.206.206,0,0,1,.019-.231c.075-.082.187-.051.283-.049.142,0,.286-.01.427-.019q.43-.024.859-.071a16.568,16.568,0,0,0,2.068-.342c.23-.056.246.032.2.231a14.684,14.684,0,0,0-.3,2.024c-.074.764-.069,1.534-.1,2.3a13.353,13.353,0,0,0,.066,1.891c.028.263.03,1.349.514,1.233a.319.319,0,0,0,.116-.063,1.318,1.318,0,0,0,.479-1.046q.029-.588.056-1.177c.034-.785.058-1.572.048-2.358,0-.118,0-.235-.007-.352a6.726,6.726,0,0,0-.1-1.035,4.317,4.317,0,0,1-.188-.982c.007-.138.034-.158.167-.158a12.863,12.863,0,0,0,1.848-.122c.3-.042.6-.1.9-.164.224-.051.507-.263.738-.214.166.035.025.289,0,.383a3.819,3.819,0,0,0-.13.633,27.1,27.1,0,0,0-.142,2.953c-.005.674-.024,1.349-.037,2.023L22.6,10.512a3.091,3.091,0,0,0,.268,1.3,6.879,6.879,0,0,0,.347.683c.073.127.331.427.255.587-.051.106-.27.094-.427.083-.05,0-.094-.007-.123-.007l-.691,0c-.826,0-1.647-.016-2.471-.07a.358.358,0,0,1-.153-.033.3.3,0,0,1-.124-.185,1.344,1.344,0,0,1-.089-.348c0-.131-.1-.158-.208-.082a3.571,3.571,0,0,1-1.861.845A1.377,1.377,0,0,1,16.9,13.221Zm17.2-.051c-.211.005-.621.02-.758-.19a.372.372,0,0,1-.119-.224.59.59,0,0,1,.032-.2,5.717,5.717,0,0,0,.035-1.478A12.9,12.9,0,0,0,33.2,9.475a.61.61,0,0,1,.008-.288.1.1,0,0,1,.042-.057c.045-.026.1.013.136.049a15.325,15.325,0,0,0,2,1.825,2.469,2.469,0,0,0,1.273.554c.44.006.938-.417.732-.891a.692.692,0,0,0-.259-.29,8.911,8.911,0,0,0-.909-.45q-.49-.247-.968-.517a3.164,3.164,0,0,1-1.353-1.282,4.292,4.292,0,0,1-.471-1.841,3.04,3.04,0,0,1,.219-1.377,1.811,1.811,0,0,1,1.24-.989,8.454,8.454,0,0,1,2.119-.265,3.237,3.237,0,0,1,2.569.965,1.617,1.617,0,0,1,.258,1.117,4.185,4.185,0,0,1-1.074,1.821c-.053.074.017.1.062.134a3.15,3.15,0,0,1,1.143,1.093,3.173,3.173,0,0,1-.224,2.93,2.768,2.768,0,0,1-1.326,1.166,3.886,3.886,0,0,1-1.334.236c-.18.008-.36.012-.537.019-.615.026-1.234.034-1.851.034ZM37.217,5.2a1.909,1.909,0,0,0-.424.09.832.832,0,0,0-.486.4.811.811,0,0,0,.114.82c.1.133.89.78,1.027.48s.26-.589.374-.889c.082-.213.213-.583.014-.765a.7.7,0,0,0-.474-.142C37.314,5.2,37.265,5.2,37.217,5.2Z" transform="translate(353.876 10131.242)" fill="#00967e"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Hyundai" data-name="Trailer - Hyundai" transform="translate(-353.877 -10208)">
|
|
3
|
+
<rect id="Rectangle_63505" data-name="Rectangle 63505" width="110" height="20" transform="translate(353.877 10208)" fill="#2267ad" opacity="0"/>
|
|
4
|
+
<path id="Path_36997" data-name="Path 36997" d="M551.948,496.957H547.9c-.679.04-.869.209-.869,1.033v2.272h4.914Zm2.154-1.819v9.908h-2.154V502.2h-4.914v2.848H544.88v-7.767c0-1.373.556-2.141,2.154-2.141Zm-11.374,2.139v5.362c0,1.707-.959,2.405-2.154,2.405H533.78v-9.907h6.793a1.9,1.9,0,0,1,2.154,2.14m-2.18.6a.85.85,0,0,0-.91-.917h-3.7v6.19h3.7c.844-.043.91-.549.91-.95Zm-50.67-2.737h2.154v3.905h4.819v-3.905H499v9.907h-2.154V501h-4.819v4.043h-2.154Zm12.817,0,2.7,4.05,2.667-4.05h2.615l-4.207,6.334v3.573h-2.154v-3.574l-4.236-6.333Zm20.073,0h6.94c.989,0,1.947.139,1.919,2.14v7.767h-2.154v-7.055c0-.853-.1-1.033-.772-1.033h-3.78v8.088h-2.154Zm35.642,9.909h-2.154v-9.907h2.154Zm-46.655,0h6.94c1.38,0,1.947-.4,1.919-2.389v-7.519h-2.154v7.072c0,.848-.1.951-.772.951h-3.78v-8.023h-2.154Z" transform="translate(-136 9717.909)" fill="#2267ad" fill-rule="evenodd"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Kaufman" data-name="Trailer - Kaufman" transform="translate(-353.877 -10288)">
|
|
3
|
+
<rect id="Rectangle_63507" data-name="Rectangle 63507" width="110" height="20" transform="translate(353.877 10288)" fill="#3c3c3c" opacity="0"/>
|
|
4
|
+
<path id="Union_707" data-name="Union 707" d="M.021,19.909v-.493c.018-.01.037-.031.058-.033.31-.03.622-.039.928-.089a3.2,3.2,0,0,0,1.037-.342,1.009,1.009,0,0,0,.463-.589,4.872,4.872,0,0,0,.244-1.573q0-4.542,0-9.084V4.784A12.443,12.443,0,0,0,2.656,2a1.642,1.642,0,0,0-.578-.958A2.033,2.033,0,0,0,1.3.73,6.019,6.019,0,0,0,.3.594C.26.592.23.592.2.592c-.111,0-.15,0-.2-.136A2.876,2.876,0,0,1,.014,0H8.56c.183.007.227.055.208.23s.01.291-.127.353a1.069,1.069,0,0,1-.4.033,1.837,1.837,0,0,0-.24,0,5.271,5.271,0,0,0-1.249.3,1.035,1.035,0,0,0-.346.19.964.964,0,0,0-.218.346A5.048,5.048,0,0,0,5.948,3.4c-.011.729-.028,1.458-.015,2.187.021,1.1.049,2.2-.014,3.3-.007.125-.011.25-.017.366.12.075.181,0,.245-.057.594-.51,1.19-1.016,1.777-1.533Q9.2,6.547,10.467,5.41c.3-.273.574-.578.87-.857.517-.488,1.012-1,1.482-1.53a4.9,4.9,0,0,0,.818-1.2.738.738,0,0,0-.307-.968,2.461,2.461,0,0,0-1.27-.269A.875.875,0,0,1,11.966.6c-.108-.013-.215-.03-.322-.046C11.624.4,11.6.255,11.59.106c0-.032.068-.083.113-.1A.7.7,0,0,1,11.893,0h7.753c.086,0,.074.492.038.538-.075.094-.416.076-.55.1a6.77,6.77,0,0,0-1.188.281,9.621,9.621,0,0,0-3.216,2.247c-1.111,1-2.2,2.012-3.3,3.021L10.8,6.76c-.305.279-.631.536-.933.818-.243.227-.464.478-.7.718a.144.144,0,0,0-.013.213c.071.085.147.167.223.249q1.647,1.769,3.323,3.513c.352.37.7.744,1.051,1.116,1.608,1.706,3.234,3.417,4.937,5.045a3.292,3.292,0,0,0,1.319.744c.361.115.734.125,1.1.227v.5H11.78a2.865,2.865,0,0,1-.053-.341c-.006-.131.045-.2.164-.181a7.824,7.824,0,0,0,1.286-.093.746.746,0,0,0,.712-.513.554.554,0,0,0,.013-.323,3.47,3.47,0,0,0-.593-1.137,15.587,15.587,0,0,0-1.345-1.481c-1.076-1.07-2.053-2.226-3.091-3.33-.419-.446-.847-.883-1.27-1.325-.192-.2-.379-.408-.571-.61a.355.355,0,0,0-.149-.115.281.281,0,0,0-.215.025c-.218.2-.422.409-.631.616a.475.475,0,0,0-.134.37c.025,1.153.026,2.307.024,3.461,0,.577,0,1.153,0,1.73a5.169,5.169,0,0,0,.147,1.559,1.381,1.381,0,0,0,1.052.94,8.115,8.115,0,0,0,1.1.2,1.209,1.209,0,0,0,.213.013c.186-.007.246.046.235.23-.005.094-.022.189-.036.306ZM28.345,13.8a3.869,3.869,0,0,0-.083-.735,2.418,2.418,0,0,0-.32.275,3.394,3.394,0,0,1-1.031.748,2.242,2.242,0,0,1-1.735.177,1.784,1.784,0,0,1-.5-.254,1.643,1.643,0,0,1-.828-1.208,6.653,6.653,0,0,1-.076-.676c-.007-1.374,0-2.748,0-4.122,0-.159-.008-.318-.02-.477a.635.635,0,0,0-.616-.639,1.878,1.878,0,0,1-.238-.015c-.112-.026-.213-.086-.193-.223s.133-.119.234-.115c.487.018.973.04,1.46.049.218,0,.437-.026.656-.029a1.461,1.461,0,0,1,.251.035V11.1c0,.278-.011.556,0,.834a4.179,4.179,0,0,0,.084.678.982.982,0,0,0,.834.742,1.95,1.95,0,0,0,1.771-.643.776.776,0,0,0,.238-.562q0-1.805,0-3.61c0-.279,0-.557,0-.835a.729.729,0,0,0-.73-.811c-.1-.012-.2-.01-.3-.023a.344.344,0,0,1-.169-.047c-.048-.04-.111-.129-.1-.163a.24.24,0,0,1,.171-.122c.178-.008.357.016.535.02.437.011.873.024,1.309.025.187,0,.373-.029.56-.043.171-.013.226.042.226.226,0,1.931-.011,3.862-.01,5.793a2.048,2.048,0,0,0,.084.43c.063.287.279.362.535.377.089.005.179,0,.269,0,.105,0,.195.047.186.144a.275.275,0,0,1-.15.189,2.775,2.775,0,0,1-.406.085c-.232.052-.468.093-.694.167-.382.125-.756.272-1.172.423C28.366,14.375,28.346,13.84,28.345,13.8Zm23.578.413a1.638,1.638,0,0,1-1.066-1.384,2.076,2.076,0,0,1,.578-1.694,3.584,3.584,0,0,1,1.25-.846c.722-.328,1.459-.623,2.191-.929.108-.045.191-.1.194-.231A7,7,0,0,0,55,7.616a.823.823,0,0,0-.613-.69,1.727,1.727,0,0,0-1.411.165.731.731,0,0,0-.294.806,1.149,1.149,0,0,1,.1.547.832.832,0,0,1-1.334.424,1.266,1.266,0,0,1-.252-.292.485.485,0,0,1-.068-.45,2.357,2.357,0,0,1,1.737-1.555,4.607,4.607,0,0,1,1.565-.128,2.39,2.39,0,0,1,1.523.6,1.6,1.6,0,0,1,.41.614,3.36,3.36,0,0,1,.231,1.218c-.02,1.224-.008,2.449-.006,3.674,0,.109.016.217.022.326a.55.55,0,0,0,.9.391c.1-.062.2-.112.3-.167.2.331.08.483-.111.6a4.227,4.227,0,0,1-1.2.578,1.084,1.084,0,0,1-1.31-.78c-.067-.256-.117-.278-.32-.1a4.442,4.442,0,0,1-1.727.91,1.7,1.7,0,0,1-.466.065A2,2,0,0,1,51.923,14.215Zm1.305-3.593a1.717,1.717,0,0,0-.794,1.814,1.237,1.237,0,0,0,.9.929,1.691,1.691,0,0,0,1.24-.285.966.966,0,0,0,.519-.87c-.01-.7,0-1.409,0-2.113a2.579,2.579,0,0,0-.047-.339A5.649,5.649,0,0,0,53.228,10.621ZM17.195,14.359a1.861,1.861,0,0,1-1.224-.577,1.641,1.641,0,0,1-.44-1.5,2.233,2.233,0,0,1,.845-1.4,7.447,7.447,0,0,1,1.834-.976c.42-.178.844-.346,1.267-.518.257-.1.267-.11.262-.394-.008-.437-.017-.874-.042-1.309a.91.91,0,0,0-.735-.794,1.985,1.985,0,0,0-1.113.1.71.71,0,0,0-.472.858,3.257,3.257,0,0,1,.046.562.745.745,0,0,1-.891.641,1.39,1.39,0,0,1-.409-.175.7.7,0,0,1-.26-.905A2.288,2.288,0,0,1,17.5,6.579a3.674,3.674,0,0,1,1.294-.168,2.77,2.77,0,0,1,1.839.641,1.972,1.972,0,0,1,.6,1.445c.025,1.243.017,2.486.028,3.73,0,.227.049.455.04.681-.018.459.557.634.914.358.077-.06.145-.131.236-.215.165.247.173.422,0,.576a2.812,2.812,0,0,1-1.461.688,1.025,1.025,0,0,1-1.019-.631c-.033-.083-.055-.171-.091-.253-.08-.182-.162-.208-.316-.074a4.522,4.522,0,0,1-1.1.706,2.677,2.677,0,0,1-1.11.3Q17.271,14.366,17.195,14.359Zm2.263-4.519a5.359,5.359,0,0,0-1.564.784,1.917,1.917,0,0,0-.72.882,1.494,1.494,0,0,0-.027,1.074,1.088,1.088,0,0,0,.648.7,1.54,1.54,0,0,0,1.495-.215.98.98,0,0,0,.46-.793c0-.356.006-.712.007-1.068,0-.378,0-.756.005-1.134,0-.2-.016-.27-.115-.27A.741.741,0,0,0,19.458,9.841ZM49.98,14.3a12.086,12.086,0,0,0-3.146-.017c-.166.021-.407-.021-.39-.187.013-.131.181-.17.312-.18a.981.981,0,0,0,.625-.215,1.083,1.083,0,0,0,.216-.8l0-3.909a2.076,2.076,0,0,0-.218-1.138c-.585-.913-1.782-.467-2.451.056a1.363,1.363,0,0,0-.426.47,2.213,2.213,0,0,0-.08.939q0,.545,0,1.091,0,1.091.005,2.182a2.265,2.265,0,0,0,.1.794.767.767,0,0,0,.568.514,1.719,1.719,0,0,1,.406.039c.127.051.206.246.091.32a.265.265,0,0,1-.177.02,14.03,14.03,0,0,0-3.282.011c-.131.016-.3.015-.352-.1s.069-.257.2-.289.268,0,.4-.029a.687.687,0,0,0,.478-.448,2.032,2.032,0,0,0,.1-.674c.035-1.284.07-2.571-.022-3.852a1.81,1.81,0,0,0-.5-1.335,1.523,1.523,0,0,0-1.567-.011,1.808,1.808,0,0,0-.81.658,2.4,2.4,0,0,0-.227,1.261l.013,3.18a2.212,2.212,0,0,0,.1.812.753.753,0,0,0,.6.5,1.169,1.169,0,0,0,.141,0,.8.8,0,0,1,.191.005c.109.02.22.112.2.221a.815.815,0,0,1-.269.032l-3.5.023a.234.234,0,0,1-.1-.013c-.126-.054-.056-.264.072-.311a.614.614,0,0,1,.248-.019,1.051,1.051,0,0,0,.16,0,.684.684,0,0,0,.53-.457,2.013,2.013,0,0,0,.091-.727q.005-2.154.011-4.308c0-.317-.063-.721-.371-.8a1.376,1.376,0,0,0-.484.057c-.209.028-.5-.14-.234-.311a4.5,4.5,0,0,1,.855-.326c.149-.055,1.675-.532,1.671-.585l.1,1.228a6.541,6.541,0,0,1,1.471-.983,2.4,2.4,0,0,1,1.729-.139,1.836,1.836,0,0,1,1.163,1.283,6.115,6.115,0,0,1,1.9-1.243,2.238,2.238,0,0,1,2.167.284A2.234,2.234,0,0,1,48.979,8.1a6.647,6.647,0,0,1,.107,1.418q.005,1.656.011,3.311a1.861,1.861,0,0,0,.069.605.632.632,0,0,0,.408.422.939.939,0,0,0,.238.019.887.887,0,0,1,.251.023c.158.046.279.268.149.368a.208.208,0,0,1-.13.037A.729.729,0,0,1,49.98,14.3Zm11.277-.045a10.71,10.71,0,0,0-1.934-.057c-.307.017-.613.046-.921.066-.09.006-.205.009-.2-.113a.328.328,0,0,1,.125-.213.447.447,0,0,1,.227-.055.615.615,0,0,0,.584-.473,2.454,2.454,0,0,0,.111-.64q.015-2.164,0-4.33a3.585,3.585,0,0,0-.106-.673.321.321,0,0,0-.258-.259,1.116,1.116,0,0,0-.616-.04.745.745,0,0,1-.191,0c0-.32.028-.346.27-.4a7.139,7.139,0,0,0,.776-.2c.432-.142.858-.3,1.286-.456.132-.047.222-.011.232.128.018.246.008.495.01.742,0,.083,0,.166,0,.291a1.315,1.315,0,0,0,.219-.1c.2-.148.393-.3.591-.455a2.772,2.772,0,0,1,1.875-.637,1.75,1.75,0,0,1,.545.124,1.981,1.981,0,0,1,1.17,1.378A4.2,4.2,0,0,1,65.2,9.12c-.01,1.214-.005,2.429,0,3.643a3.927,3.927,0,0,0,.037.473.685.685,0,0,0,.6.67c.087.02.177.028.263.053.105.031.127.116.109.215s-.087.115-.177.108c-.495-.037-.989-.1-1.484-.1-.545,0-1.091.052-1.636.081a.477.477,0,0,1-.174,0c-.049-.017-.116-.069-.119-.109a.217.217,0,0,1,.075-.17,1.825,1.825,0,0,1,.278-.1,2.705,2.705,0,0,0,.349-.162.6.6,0,0,0,.275-.43,9.363,9.363,0,0,0,.1-1.812c.019-.806,0-1.612-.013-2.418a2.963,2.963,0,0,0-.284-1.322.671.671,0,0,0-.3-.314,1.42,1.42,0,0,0-1.365.053,2.873,2.873,0,0,0-.761.539c-.277.3-.219.607-.21.993.031,1.308,0,2.615,0,3.922.007.473.134.848.632.973.126.028.255.04.379.073.078.02.165.069.123.166-.026.061-.1.14-.156.143l-.073,0A3.169,3.169,0,0,1,61.257,14.252ZM31.409,14.02c.131-.029.251-.057.371-.081.175-.036.353-.058.524-.1a.7.7,0,0,0,.535-.614,5.946,5.946,0,0,0,.078-1c-.014-1.01-.02-2.021-.008-3.032q.009-.758.033-1.515c.007-.2.051-.443-.178-.525a5.171,5.171,0,0,0-.785-.006c-.245.007-.452.015-.454.007-.026-.1-.052-.2-.073-.293-.049-.218.028-.294.24-.306.142-.008.283,0,.423,0a2.514,2.514,0,0,0,.8-.066s.053-1.01.071-1.115a4.426,4.426,0,0,1,.349-1.136,2.542,2.542,0,0,1,1.7-1.495,3.342,3.342,0,0,1,1.739.025,1.486,1.486,0,0,1,.869.542.694.694,0,0,1-1.163.755c-.12-.157-.237-.317-.347-.481a.858.858,0,0,0-1.015-.431c-.68.174-.707,1.063-.708,1.635s.031,1.135,0,1.7c-.005.1.953.076,1.035.076.216,0,.432-.007.648-.013.2-.006.428-.045.409.226,0,.04-.01.079-.015.118-.033.276-.067.279-.338.266-.5-.024-1.01-.026-1.515-.018-.214,0-.267.069-.254.247.068.919.014,1.839.008,2.759,0,.556,0,1.112.007,1.668a6.188,6.188,0,0,0,.118,1.544.768.768,0,0,0,.669.519c.212.046.433.054.65.08a1.124,1.124,0,0,1,.13.033c.018.3.011.294-.233.285-.724-.028-1.444-.1-2.172-.1-.627.006-1.249.055-1.871.1l-.042,0C31.5,14.281,31.444,14.2,31.409,14.02Z" transform="translate(353.877 10288.046)" fill="#3c3c3c"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M44.7901 4.03779C45.5958 4.03244 46.4007 3.98104 47.2067 4.00755C48.2273 4.04556 49.2531 4.02521 50.2689 4.14701C50.9593 4.23294 51.679 4.3949 52.2232 4.84408C52.5136 5.06894 52.6963 5.39419 52.8273 5.72639C53.0908 6.48048 53.04 7.30979 52.8034 8.06414C52.7394 8.28177 52.5073 8.39233 52.3372 8.52082C51.5477 8.99169 50.5766 8.91005 49.6948 8.83911C49.4503 8.80163 49.1641 8.85463 48.9558 8.6967C48.7116 8.41214 48.6737 8.02399 48.4811 7.71186C48.4281 7.68199 48.3679 7.66629 48.3067 7.66635C46.6809 7.44738 45.0308 7.43667 43.3968 7.57025C43.1243 7.59595 42.8028 7.57507 42.5902 7.77637C42.3946 7.95091 42.2092 8.16667 42.16 8.42847C41.8721 9.71285 41.668 11.0312 41.7988 12.3488C43.8358 12.53 45.9145 12.749 47.938 12.3437C48.0699 12.3258 48.1105 12.1839 48.1699 12.0889C48.3188 11.8295 48.3907 11.5342 48.5487 11.2805C48.7418 11.1335 48.9838 11.0706 49.2121 10.9946C50.2222 10.7052 51.3623 10.7544 52.296 11.2507C52.4414 11.3281 52.4622 11.5069 52.4916 11.6485C52.5993 12.2816 52.5699 12.9557 52.3037 13.5494C52.1026 14.0604 51.8362 14.5591 51.4293 14.9441C51.144 15.1977 50.807 15.3899 50.4404 15.5081C48.6308 16.1374 46.6738 15.9744 44.789 15.9958C43.3619 15.9755 41.9273 16.0622 40.5074 15.8834C39.9566 15.8127 39.3876 15.756 38.8833 15.5127C38.5261 15.3574 38.2119 15.1277 37.8729 14.9417C37.6391 15.2276 37.4913 15.6331 37.113 15.7662C36.1504 15.9209 35.1615 15.9642 34.1939 15.8259C33.8324 15.7825 33.5036 15.5689 33.3069 15.2728C33.0393 14.897 32.8965 14.4577 32.6951 14.0484C31.8831 14.0096 31.0699 13.9801 30.2568 13.9879C28.7753 13.9914 27.2938 13.9828 25.8125 13.9916C25.3683 14.5557 25.0192 15.2383 24.3744 15.616C24.0684 15.8138 23.6863 15.8272 23.333 15.8609C22.497 15.9356 21.6298 15.9597 20.826 15.6861C20.6776 15.6428 20.5403 15.5673 20.3911 15.5284C20.2101 15.5531 20.0483 15.6521 19.8724 15.6968C19.2727 15.8652 18.6365 15.9677 18.014 15.8762C17.7248 15.8234 17.43 15.7522 17.1816 15.5932C16.869 15.3558 16.7254 14.9556 16.7391 14.5779C16.7094 14.1383 16.8256 13.7108 16.8907 13.2798C17.0273 12.3129 17.1626 11.3458 17.2967 10.3783C17.3995 9.61782 17.5173 8.85811 17.5588 8.09145C17.2377 8.44025 16.9817 8.83938 16.7248 9.23369C16.1339 10.1867 15.5059 11.1172 14.9024 12.0624C14.4642 12.7437 14.0041 13.4118 13.5967 14.1113C13.2401 14.6935 12.839 15.2851 12.2357 15.6494C12.1209 15.7255 11.9803 15.7466 11.8498 15.7825C11.121 15.9452 10.3452 15.976 9.6249 15.7584C9.33095 15.7097 9.13399 15.4658 8.96669 15.2474C8.56561 14.6957 8.39666 14.0323 8.16041 13.4073C7.48902 11.7136 6.79812 10.0261 6.20639 8.30372C6.15282 8.13856 6.02838 8.00926 5.92042 7.87569C5.86795 8.21592 5.84405 8.5591 5.80476 8.90068C5.73609 9.507 5.63719 10.1096 5.5523 10.7138C5.44654 11.481 5.40698 12.2551 5.31083 13.0234C5.24408 13.5593 5.24655 14.1078 5.09161 14.6301C5.01123 14.9676 4.82426 15.272 4.55703 15.5006C4.19084 15.7937 3.70295 15.8344 3.25132 15.8837C2.68679 15.9487 2.10358 15.8874 1.57669 15.6754C1.50416 15.643 1.42038 15.6195 1.37175 15.5533C1.12589 15.2359 1.02259 14.8343 1.00721 14.4422C0.971223 13.6621 1.23989 12.9123 1.29428 12.1397C1.38741 10.9303 1.5874 9.73293 1.74783 8.53126C1.88519 7.45648 1.96952 6.37099 2.23654 5.31656C2.35906 4.684 2.99557 4.27122 3.62164 4.20483C4.46143 4.10499 5.30946 4.20135 6.15282 4.17967C6.80224 4.2142 7.45193 4.12131 8.10052 4.17807C8.58182 4.24392 9.10679 4.46101 9.32574 4.91207C9.90702 5.95527 10.1238 7.13766 10.5485 8.24109C10.8229 9.05165 11.0957 9.86356 11.4278 10.6541C11.666 10.3189 11.8657 9.95993 12.0888 9.61568C12.9753 8.23466 13.7601 6.79502 14.6411 5.41105C14.9285 4.97418 15.2749 4.53276 15.7801 4.3253C15.9748 4.2316 16.1979 4.22786 16.41 4.20965C17.5448 4.15023 18.6818 4.15799 19.8178 4.1695C20.2381 4.18984 20.6603 4.17967 21.0792 4.22545C21.238 4.25707 21.3882 4.32037 21.5206 4.41136C21.653 4.50235 21.7646 4.61906 21.8484 4.75414C22.0385 5.02745 22.0212 5.37572 22.0001 5.69106C21.9517 6.59532 21.7789 7.4862 21.6765 8.38484C21.5355 9.47675 21.3682 10.5657 21.2468 11.6603C21.1575 12.4326 21.0347 13.2009 20.9183 13.9697C21.4257 13.3195 21.8814 12.6334 22.344 11.9529C22.9525 11.0572 23.5808 10.1746 24.184 9.27544C25.0246 8.01622 25.8556 6.75085 26.7116 5.50153C26.9888 5.08179 27.305 4.65937 27.7564 4.4048C28.1399 4.17459 28.6168 4.20403 29.0483 4.1869C29.8988 4.1529 30.7507 4.15799 31.6018 4.17164C32.0015 4.19279 32.4045 4.17485 32.802 4.2308C33.2569 4.32851 33.5918 4.69899 33.7745 5.09999C34.3025 6.19218 34.7093 7.33415 35.1661 8.45497C35.3867 8.99276 35.6299 9.52119 35.8568 10.0563C36.2447 10.9905 36.5949 11.9398 37.0188 12.8593C37.1548 13.1572 37.2842 13.4581 37.4182 13.7569C37.4369 13.2009 37.4169 12.6443 37.432 12.0883C37.4842 11.2395 37.596 10.3955 37.7111 9.55304C37.8388 8.82679 37.9317 8.09466 38.08 7.37189C38.2278 6.6957 38.4396 6.00506 38.8934 5.45843C39.1723 5.09705 39.5645 4.83552 39.9813 4.64545C40.4738 4.40828 41.0208 4.31084 41.5603 4.23348C42.6301 4.08544 43.7127 4.08678 44.7901 4.03779ZM28.8929 9.12527C28.528 9.6901 28.1292 10.2351 27.8053 10.824C29.0167 10.903 30.2301 10.8492 31.443 10.854C31.1191 9.67538 30.5994 8.55964 30.0986 7.44524C29.6582 7.97794 29.267 8.54706 28.8929 9.12527Z" fill="#B42C4D"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Manac" data-name="Trailer - Manac" transform="translate(-353.877 -10368)">
|
|
3
|
+
<rect id="Rectangle_63509" data-name="Rectangle 63509" width="110" height="20" transform="translate(353.877 10368)" fill="#ef3f35" opacity="0"/>
|
|
4
|
+
<path id="Union_708" data-name="Union 708" d="M48.1,9.984a5.091,5.091,0,0,1-3.164-.8,2,2,0,0,1-.6-1.924,3.085,3.085,0,0,1,1.535-2.33,6.385,6.385,0,0,1,3.4-.818l.907-.054c1.275-.126,1.832-.07,2.5-.153.414-.052.975-.049,1.16-.734a.7.7,0,0,0-.391-.8,4.659,4.659,0,0,0-1.629-.225,3.648,3.648,0,0,0-1.591.261c-.293.182-.711.454-.761.889l-3.667,0a4.037,4.037,0,0,1,1.636-2.188A9.177,9.177,0,0,1,52.2.164c2.54,0,4.11.414,4.732,1.049a2.451,2.451,0,0,1,.4,2.442L56.4,7.9a3.026,3.026,0,0,0-.124,1.209c.024.18.11.51.11.51H52.812V8.787H52.76a4.778,4.778,0,0,1-1.667.9,10.792,10.792,0,0,1-2.545.3Q48.324,9.993,48.1,9.984ZM51.117,5.72a9.53,9.53,0,0,0-2.368.384.968.968,0,0,0-.437.946.849.849,0,0,0,.384.678,1.8,1.8,0,0,0,1.109.2,4.906,4.906,0,0,0,2.329-.493A2.574,2.574,0,0,0,53.366,5.97a1.577,1.577,0,0,0,.086-.625h0A23.233,23.233,0,0,1,51.117,5.72ZM22.748,9.959a5.091,5.091,0,0,1-3.164-.8,2,2,0,0,1-.6-1.923,3.086,3.086,0,0,1,1.535-2.332,6.385,6.385,0,0,1,3.4-.818l.907-.054c1.274-.127,1.832-.072,2.5-.154.415-.052.976-.049,1.16-.734a.7.7,0,0,0-.391-.8,4.666,4.666,0,0,0-1.629-.225,3.642,3.642,0,0,0-1.591.262c-.294.182-.712.453-.761.889l-3.667-.005a4.038,4.038,0,0,1,1.635-2.189A9.172,9.172,0,0,1,26.847.135c2.539,0,4.11.414,4.732,1.049a2.451,2.451,0,0,1,.4,2.442l-.932,4.247a3.031,3.031,0,0,0-.124,1.21c.024.18.11.51.11.51H27.459v-.83h-.052a4.777,4.777,0,0,1-1.667.9,10.766,10.766,0,0,1-2.545.305Q22.972,9.969,22.748,9.959Zm3.016-4.268a9.567,9.567,0,0,0-2.369.384.97.97,0,0,0-.437.947.852.852,0,0,0,.384.678,1.8,1.8,0,0,0,1.109.2,4.911,4.911,0,0,0,2.33-.493,2.574,2.574,0,0,0,1.232-1.467,1.589,1.589,0,0,0,.087-.626A23.206,23.206,0,0,1,25.764,5.691Zm37.26,4.244c-1.33,0-3.3-.1-4.494-1.121a3.581,3.581,0,0,1-.961-3.754,5.841,5.841,0,0,1,2.437-3.736A9.578,9.578,0,0,1,65.271.009c2.309,0,3.588.545,4.272,1.143a3.42,3.42,0,0,1,.975,2.771H66.766a1.3,1.3,0,0,0-.516-1.139,2.965,2.965,0,0,0-1.476-.46,3.6,3.6,0,0,0-2.117.623,3.36,3.36,0,0,0-1.37,2.7,2,2,0,0,0,.46,1.37c.311.489,1.214.6,1.868.6a3.914,3.914,0,0,0,1.814-.48,3.6,3.6,0,0,0,1-1.3l3.79,0a6.5,6.5,0,0,1-2.384,3.006A8.492,8.492,0,0,1,63.64,9.958Q63.332,9.958,63.024,9.936ZM7.152,9.594l1.1-5.354a.99.99,0,0,0-.262-1.1,1.445,1.445,0,0,0-1.039-.283,2.271,2.271,0,0,0-1.393.331A1.924,1.924,0,0,0,4.7,4.467L3.569,9.594H0L1.887.374l3.551,0-.267,1.4A6.3,6.3,0,0,1,6.782.685,4.677,4.677,0,0,1,8.955.166a4.389,4.389,0,0,1,1.984.283,2.437,2.437,0,0,1,1.228,1.3,5.554,5.554,0,0,1,1.39-.986,5.64,5.64,0,0,1,2.6-.613,3.379,3.379,0,0,1,2.645.8c.873.89.5,2.058.3,3.039L17.955,9.593H14.309L15.39,4.311A1.475,1.475,0,0,0,15.3,3.246c-.2-.307-.759-.362-1.168-.362a2.623,2.623,0,0,0-1.51.384,1.91,1.91,0,0,0-.755,1.1L10.8,9.594ZM32,9.592,33.89.372h3.476l-.3,1.391A5.478,5.478,0,0,1,38.8.6,6.36,6.36,0,0,1,41.2.155a3.717,3.717,0,0,1,2.644.721,3,3,0,0,1,.614,3.053L43.3,9.592H39.653l1.054-5.136A1.26,1.26,0,0,0,40.3,3.123a1.445,1.445,0,0,0-1.05-.285,2.776,2.776,0,0,0-1.619.48,2.352,2.352,0,0,0-1.084,1.53l-.991,4.744Z" transform="translate(353.877 10373.004)" fill="#ef3f35"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Truck_-_Polar" data-name="Truck - Polar" transform="translate(-353.877 -10448)">
|
|
3
|
+
<rect id="Rectangle_63511" data-name="Rectangle 63511" width="110" height="20" transform="translate(353.877 10448)" fill="#dbb357" opacity="0"/>
|
|
4
|
+
<path id="Union_709" data-name="Union 709" d="M16.787,10.424A5.033,5.033,0,0,1,14.5,9.235a4.327,4.327,0,0,1-1.241-2.3,7.473,7.473,0,0,1-.15-2.116,5.488,5.488,0,0,1,.691-2.47A4.175,4.175,0,0,1,15.723.67a6.88,6.88,0,0,1,2.594-.61c1.009-.032,2.021-.093,3.026-.04A6.716,6.716,0,0,1,24.932,1.08a4.294,4.294,0,0,1,1.745,2.678,7.521,7.521,0,0,1,.14,2.216A4.7,4.7,0,0,1,25.4,9.267a4.826,4.826,0,0,1-2.235,1.147,14.932,14.932,0,0,1-1.757.26c-.478.051-.961.055-1.442.08h-.089A12.814,12.814,0,0,1,16.787,10.424Zm3.195-7.935c-.251.024-.506.027-.753.074a2.094,2.094,0,0,0-1.652,1.28A4.178,4.178,0,0,0,17.4,6.357,2.128,2.128,0,0,0,18.993,8.1a3.667,3.667,0,0,0,1.625.079,2.144,2.144,0,0,0,1.793-1.429,4.256,4.256,0,0,0,.113-2.427,2.158,2.158,0,0,0-1.107-1.513,2.93,2.93,0,0,0-1.387-.319Zm39.87,7.632c-.029-.184-.042-.369-.056-.554-.036-.454-.054-.911-.106-1.364a.934.934,0,0,0-1.007-.939c-.5-.01-.992-.008-1.487-.007-.38,0-.759,0-1.139,0-.2,0-.194.1-.194.242,0,.859,0,1.719,0,2.578v.286H51.954V.313h.271c2.73,0,5.46-.01,8.19.008A9.133,9.133,0,0,1,62.091.5,2.293,2.293,0,0,1,63.86,2.182a2.67,2.67,0,0,1-.38,2.6,1.866,1.866,0,0,1-.861.588.748.748,0,0,0-.1.054,5.909,5.909,0,0,1,.625.448,1.7,1.7,0,0,1,.471,1.14c.071.731.088,1.469.169,2.2a3.969,3.969,0,0,0,.27.854,2.323,2.323,0,0,0,.169.308H63.9c-1.242,0-2.483-.006-3.725.006h-.007A.271.271,0,0,1,59.852,10.121ZM55.875,4.755c1.036,0,2.046.021,3.054-.009.473-.014.9-.24.87-.993a.83.83,0,0,0-.87-.877c-.118-.009-.237-.01-.356-.01h-2.7Zm-8.8,5.611a.269.269,0,0,1-.183-.151c-.108-.262-.183-.538-.3-.8a.316.316,0,0,0-.229-.161c-1.267-.01-2.534,0-3.8-.01-.2,0-.235.152-.288.271-.119.275-.214.56-.321.847h-4.2l.708-1.679q.972-2.3,1.944-4.606.771-1.813,1.562-3.617a.3.3,0,0,1,.223-.144q2.27-.012,4.541,0a.265.265,0,0,1,.2.131Q48.419,3.922,49.894,7.4q.6,1.409,1.2,2.818c.019.045.032.093.053.154H49.691C48.816,10.373,47.945,10.372,47.074,10.366ZM44.421,3.392l-1.173,3.4h2.413l-1.176-3.4Zm-16.372,6.98a.775.775,0,0,1-.109-.022V.325h3.931V7.7H37.55c-.113.258-.21.482-.309.707-.258.591-.511,1.183-.782,1.769a.353.353,0,0,1-.247.185q-2.535.009-5.07.007ZM0,10.366V.313H.27C2.907.313,5.543.3,8.179.322A4.668,4.668,0,0,1,10.716.91a2.63,2.63,0,0,1,1.2,1.912,5.75,5.75,0,0,1,.1,1.154,3.229,3.229,0,0,1-.958,2.385,3.309,3.309,0,0,1-1.731.794,12.394,12.394,0,0,1-2.3.1c-.342-.006-.683-.011-1.024,0-.687.014-1.375,0-2.1,0v3.109Zm3.926-7.7V4.805c1.014,0,2.015.026,3.014-.01a.857.857,0,0,0,.931-.78c.11-.753-.145-1.218-.883-1.294-.537-.055-1.08-.047-1.621-.057-.184,0-.368,0-.554,0Z" transform="translate(353.877 10452.623)" fill="#dbb357"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Ravens" data-name="Trailer - Ravens" transform="translate(-353.877 -10528)">
|
|
3
|
+
<rect id="Rectangle_63513" data-name="Rectangle 63513" width="110" height="20" transform="translate(353.877 10528)" fill="#3c3c3c" opacity="0"/>
|
|
4
|
+
<path id="Union_710" data-name="Union 710" d="M58.493,10.351A3.432,3.432,0,0,1,57.45,7.374Q59,7.271,60.56,7.2c.114.6.19,1.354.826,1.641a1.934,1.934,0,0,0,2.392-.619.914.914,0,0,0-.339-1.247.992.992,0,0,0-.132-.062c-1.317-.556-2.885-.585-4-1.578a2.355,2.355,0,0,1-.6-2.593A4.224,4.224,0,0,1,62.5.066c1.407-.108,2.993-.19,4.2.671a2.838,2.838,0,0,1,.9,2.447c-1.024.079-2.049.154-3.075.168-.168-.5-.284-1.191-.91-1.291-.852-.291-2,.164-1.9,1.2,1.522.705,3.353.677,4.706,1.747,1.121.9.977,2.614.293,3.737a5.072,5.072,0,0,1-4.2,2.341c-.3.014-.615.026-.928.026A5.32,5.32,0,0,1,58.493,10.351Zm-33.024.566C24.807,7.334,24.009,3.784,23.36.208c1.143,0,2.288,0,3.433,0,.379,2.534.678,5.081,1.059,7.61C29.2,5.334,30.314,2.724,31.6.206q1.673.006,3.35,0c-1.927,3.58-3.928,7.121-5.828,10.718-.609.014-1.219.023-1.829.023S26.078,10.938,25.469,10.917Zm26.71-.011c-.992-1.931-1.886-3.913-2.967-5.8-.353,1.941-.68,3.886-1.038,5.827-1.032,0-2.064,0-3.1-.006.6-3.58,1.249-7.152,1.885-10.726q1.557,0,3.116,0c1,1.934,1.889,3.928,2.983,5.811.389-1.931.665-3.882,1.06-5.812h3.122c-.64,3.566-1.3,7.129-1.867,10.707-.524.015-1.048.024-1.573.024C53.262,10.937,52.72,10.928,52.179,10.905ZM0,10.924C.622,7.352,1.261,3.779,1.883.206v0C3.934.2,5.987.206,8.039.2a3.3,3.3,0,0,1,2.628.9,3.065,3.065,0,0,1,.043,3.123A4.137,4.137,0,0,1,8.061,6.2a2.427,2.427,0,0,1,1.27,1.254C9.8,8.53,10.12,9.669,10.5,10.779c1.9-3.357,3.731-6.749,5.6-10.124.124-.2.238-.476.526-.441C17.289.188,17.942.194,18.6.2c.464,0,.929.009,1.393,0C20.7,3.776,21.442,7.348,22.12,10.93c-1.155,0-2.309.012-3.464-.012-.066-.593-.14-1.183-.215-1.775-1.265-.012-2.528-.019-3.791.006-.265.6-.541,1.191-.82,1.785-2.338-.012-4.677-.006-7.016,0Q6.228,9.322,5.651,7.711a1.97,1.97,0,0,0-.613-.978,3.855,3.855,0,0,0-.928-.187C3.837,8,3.574,9.447,3.344,10.9c-.582.024-1.167.032-1.751.032C1.061,10.936.53,10.93,0,10.924ZM15.8,6.859c.786-.01,1.574-.012,2.36-.008-.166-1.258-.323-2.516-.5-3.772C16.935,4.285,16.409,5.592,15.8,6.859ZM4.452,4.533A7.015,7.015,0,0,0,7,4.308a1.1,1.1,0,0,0,.412-1.747,3.859,3.859,0,0,0-1.788-.22c-.264.009-.527.017-.784,0Q4.642,3.438,4.452,4.533Zm29.618,6.4Q35,5.565,35.962.206q1.674,0,3.349,0c1.851,0,3.7,0,5.554-.01-.152.763-.292,1.528-.407,2.3-.721.01-1.442.006-2.163,0-1.151-.007-2.3-.013-3.454.038-.08.547-.17,1.093-.256,1.637,1.143.041,2.286.035,3.43.03.573,0,1.147-.006,1.72,0-.12.729-.252,1.458-.375,2.187-1.114.017-2.227.014-3.34.012-.612,0-1.224,0-1.836,0-.122.7-.244,1.4-.379,2.09q.965,0,1.929,0c1.271,0,2.542-.006,3.814.014-.141.811-.289,1.617-.421,2.43q-1.872.009-3.746.008Q36.729,10.935,34.07,10.932Z" transform="translate(353.877 10532.443)" fill="#3c3c3c"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110.624" height="20" viewBox="0 0 110.624 20">
|
|
2
|
+
<g id="Truck_-_Strick" data-name="Truck - Strick" transform="translate(-353.253 -10608)">
|
|
3
|
+
<rect id="Rectangle_63515" data-name="Rectangle 63515" width="110" height="20" transform="translate(353.877 10608)" fill="#3c3c3c" opacity="0"/>
|
|
4
|
+
<path id="Union_711" data-name="Union 711" d="M38.985,9.512a5.178,5.178,0,0,1-1.776-4.061A5.161,5.161,0,0,1,38.986,1.4,5.214,5.214,0,0,1,42.452.279a5.917,5.917,0,0,1,3.6,1.179,1.74,1.74,0,0,0,.683.363c.033,0,.068-.025.2-.148l.07-.064.3.253L46,4.086l-.31-.241V3.6a.374.374,0,0,0-.148-.331A4.248,4.248,0,0,0,42.6,2.155a3.127,3.127,0,0,0-3.222,3.311,3.422,3.422,0,0,0,1.011,2.489,3.134,3.134,0,0,0,2.3.807,4.058,4.058,0,0,0,2.32-.7c.567-.358.681-.545.681-.731V7.071L46,6.83l1.311,2.226-.3.256-.07-.071c-.12-.122-.174-.144-.236-.144a1.858,1.858,0,0,0-.564.317,6.171,6.171,0,0,1-3.7,1.224A5.213,5.213,0,0,1,38.985,9.512ZM.958,9.685c-.34-.177-.342-.177-.379-.177A.663.663,0,0,0,.4,9.637L.33,9.691,0,9.506,1.019,6.9l.382.2-.026.086a.226.226,0,0,0-.008.057.745.745,0,0,0,.244.526,4.646,4.646,0,0,0,2.848.994c1.221,0,2.073-.541,2.073-1.315a.642.642,0,0,0-.405-.605,4.115,4.115,0,0,0-1.276-.256l-.98-.117A4.962,4.962,0,0,1,1.61,5.912a2.651,2.651,0,0,1-1.27-2.4C.34,1.518,1.819.279,4.2.279a7.166,7.166,0,0,1,3.4.906l.109.045c.236.1.255.1.288.1.064,0,.13-.036.242-.135L8.3,1.15l.337.189L7.512,3.85l-.339-.218V3.455c0-.083-.033-.216-.321-.426a4.233,4.233,0,0,0-2.6-.875c-1.172,0-1.929.447-1.929,1.139a.636.636,0,0,0,.34.568c.252.148.344.162,1.471.293l1.006.117A4.588,4.588,0,0,1,7.61,5.1a2.9,2.9,0,0,1,.982,2.244A3.049,3.049,0,0,1,7.4,9.826a5.408,5.408,0,0,1-2.976.812A6.91,6.91,0,0,1,.958,9.685Zm54.215.776v-.433l.087-.017c.239-.047.239-.13.239-.157,0-.065-.048-.136-.275-.458L52.718,5.937,51.536,7.025V9.6c.022.271.072.334.327.409l.078.023v.425H49.02v-.425l.078-.023c.256-.075.3-.137.327-.418V1.312C49.4,1.04,49.353.977,49.1.9L49.02.879V.455h2.921V.879L51.863.9c-.256.075-.305.138-.327.418V4.484l3.28-3c.238-.209.344-.333.344-.4s-.111-.14-.29-.172L54.781.89V.455h3.785V.892l-.093.014a.612.612,0,0,0-.342.141l-.041.033a.973.973,0,0,0-.126.114l-.008.009c-.225.2-.518.467-.794.731L54.278,4.54,57.577,9c.734.959.764.963,1.117,1.014l.093.014v.437Zm-22.707,0v-.425l.078-.023c.256-.075.3-.137.327-.418V1.312C32.849,1.04,32.8.977,32.545.9L32.466.879V.455h2.922V.879L35.31.9c-.256.075-.3.138-.327.418V9.6c.011.266.063.331.327.409l.078.023v.425Zm-5.187,0v-.438l.093-.013c.16-.022.233-.09.233-.142,0-.073-.045-.176-.3-.573L25.59,6.469H23.434V9.6c.023.277.073.339.327.413l.078.024v.424H20.917v-.424L21,10.013c.256-.074.3-.137.328-.418V1.312C21.3,1.04,21.251.977,21,.9L20.917.88V.455h5.544a4.16,4.16,0,0,1,2.665.608A2.894,2.894,0,0,1,30.162,3.47a2.661,2.661,0,0,1-2.3,2.894l1.6,2.567c.62.972.731,1.054,1.078,1.079l.1.007v.445ZM23.434,4.638h2.831c.874,0,1.085-.046,1.356-.205a1.131,1.131,0,0,0,.43-.977,1.113,1.113,0,0,0-.433-.965c-.273-.173-.475-.2-1.353-.2H23.434ZM13.209,10.462v-.425l.078-.023c.256-.075.3-.137.327-.418V2.286h-2.59c-.222.024-.286.064-.357.371l-.02.084h-.4V0h.4l.02.084c.071.306.135.347.357.371h7.292c.221-.023.286-.065.357-.371L18.692,0h.4V2.742h-.4l-.02-.084c-.071-.307-.136-.347-.357-.371h-2.59V9.6c.023.277.073.339.327.414l.078.023v.425Z" transform="translate(353.877 10612.681)" fill="#3c3c3c" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.1445 3.50674C47.526 3.49956 48.9076 3.50069 50.2892 3.50182C51.1316 3.50251 51.974 3.5032 52.8163 3.50201C53.2654 3.50524 53.7145 3.50358 54.1636 3.50193C54.8836 3.49927 55.6034 3.49662 56.3227 3.5141C56.3175 4.0038 56.3184 4.49337 56.3194 4.98288V4.98291C56.3203 5.49271 56.3212 6.00244 56.3153 6.51218L56.2798 6.47778C55.9281 6.13675 55.5662 5.78589 55.1122 5.58605C54.8841 5.48155 54.6343 5.48537 54.3879 5.48913C54.3183 5.4902 54.249 5.49126 54.1805 5.48987C53.9747 5.49201 53.7688 5.49076 53.5628 5.48952C53.2123 5.4874 52.8617 5.48528 52.5117 5.49985C52.5161 7.17035 52.5155 8.84085 52.5148 10.5114C52.5143 11.8584 52.5138 13.2054 52.5159 14.5524C52.5286 15.2478 52.83 15.8922 53.1504 16.4951C51.9478 16.4988 50.7451 16.4998 49.543 16.4946C49.8571 15.8749 50.1238 15.2052 50.1202 14.4993C50.122 13.1997 50.1215 11.8999 50.1211 10.6001V10.5936C50.1205 8.8951 50.1199 7.1966 50.1244 5.49828C49.6668 5.48607 49.209 5.48784 48.7511 5.48961C48.4398 5.49081 48.1286 5.49201 47.8175 5.48882C47.7896 5.48906 47.7613 5.48878 47.733 5.48849C47.5816 5.48694 47.4259 5.48535 47.293 5.56503C46.9566 5.7602 46.6821 6.03509 46.4087 6.3089C46.3221 6.39567 46.2355 6.48233 46.1472 6.56632C46.1451 6.05649 46.1455 5.54667 46.1458 5.03679V5.03676V5.03446C46.1462 4.52531 46.1466 4.01609 46.1445 3.50674ZM5.76187 3.5025C4.50922 3.50094 3.25656 3.49939 2.00391 3.50945C2.00588 4.05513 2.00559 4.60082 2.0053 5.14658C2.00504 5.6196 2.00479 6.09268 2.00601 6.56587C2.09621 6.48047 2.18383 6.39236 2.27145 6.30425L2.27145 6.30424C2.4276 6.14721 2.58378 5.99015 2.75463 5.84841C2.77566 5.83178 2.79682 5.81472 2.81818 5.79751C3.00737 5.64505 3.21157 5.4805 3.4659 5.48994C3.81222 5.49039 4.15855 5.49027 4.50487 5.49014C4.96661 5.48997 5.42835 5.48979 5.89009 5.491C5.98193 5.47001 5.97995 5.5508 5.9783 5.61866C5.97784 5.63749 5.9774 5.65532 5.979 5.6697C5.97703 7.2454 5.97732 8.82109 5.97761 10.3968C5.97787 11.7624 5.97812 13.128 5.9769 14.4936C5.98374 15.2027 5.71438 15.8739 5.3982 16.4957C6.60136 16.5004 7.80504 16.4994 9.0082 16.4962C8.67834 15.8776 8.369 15.2137 8.37163 14.4979C8.37058 13.0349 8.37085 11.5718 8.37111 10.1087C8.37137 8.64534 8.37163 7.18196 8.37058 5.71858C8.37163 5.64079 8.37742 5.56248 8.38321 5.48469C8.80471 5.49247 9.22639 5.4914 9.64803 5.49033H9.64805H9.64806H9.64807H9.64808C9.93794 5.48959 10.2278 5.48885 10.5175 5.491C10.7916 5.48994 11.0494 5.604 11.2746 5.75065C11.5306 5.91023 11.7515 6.11448 11.9719 6.31835L11.9719 6.3184L11.972 6.3184L11.972 6.31841L11.972 6.31842C12.0405 6.38177 12.1089 6.44508 12.1784 6.507L12.1774 6.2175C12.1744 5.31639 12.1715 4.41528 12.1805 3.51418C11.3406 3.49764 10.5003 3.5001 9.66 3.50257C9.13811 3.5041 8.61621 3.50563 8.09439 3.50261C7.31688 3.50442 6.53938 3.50346 5.76187 3.5025ZM17.2533 3.50292C16.2699 3.5008 15.2863 3.49868 14.303 3.50666C14.6334 4.19889 14.8938 4.94683 14.8844 5.72316C14.8852 7.87703 14.8851 10.0312 14.885 12.1854L14.8849 14.3384C14.9049 15.1006 14.6019 15.818 14.2852 16.495C15.4831 16.4982 16.6815 16.5013 17.8794 16.4934C17.5521 15.8564 17.2607 15.1705 17.2596 14.4425C17.259 12.7812 17.2591 11.12 17.2592 9.45886V9.45885V9.45884V9.45883V9.45883V9.44662C17.2593 8.20498 17.2593 6.96333 17.2591 5.72158C17.2596 4.95873 17.5289 4.23293 17.7909 3.52686V3.52686V3.52685V3.52685V3.52685L17.7994 3.50403L17.2533 3.50292ZM20.1623 3.50406C20.4627 3.50457 20.7631 3.50358 21.0636 3.5026C21.6868 3.50054 22.3101 3.49849 22.9327 3.50984C22.9819 3.57348 23.0097 3.64972 23.0373 3.7256V3.72561V3.72561C23.0507 3.76255 23.0642 3.7994 23.08 3.83467C23.6292 5.19756 24.1789 6.56022 24.7287 7.92286C25.3728 9.51941 26.0168 11.1159 26.66 12.7128C26.6811 12.7543 26.7074 12.7937 26.7389 12.8294C27.4748 10.9672 28.2129 9.10594 28.9511 7.2447L28.9515 7.24367L28.9518 7.24284L28.9521 7.24201C29.4374 6.01835 29.9227 4.79471 30.4073 3.57081C30.4228 3.49944 30.4879 3.50106 30.5491 3.50259C30.5708 3.50313 30.592 3.50366 30.6104 3.50091C30.9894 3.50403 31.3683 3.50318 31.7473 3.50233C32.2616 3.50117 32.7759 3.50001 33.2903 3.50879C33.0293 4.02494 32.8141 4.57052 32.7258 5.14449C32.6739 5.44539 32.6757 5.75021 32.6775 6.05432V6.05439V6.05446V6.05453C32.678 6.13601 32.6784 6.21744 32.6779 6.29873L32.6778 9.01565V9.01571V9.01576V9.01582C32.6777 10.827 32.6775 12.638 32.6779 14.4488C32.6832 15.1773 32.9925 15.8554 33.3102 16.4956C32.1066 16.4998 30.9029 16.5003 29.6992 16.495C29.9449 16.0441 30.1837 15.5815 30.2942 15.0759C30.3735 14.76 30.3697 14.4356 30.366 14.1119V14.1119C30.3646 13.9955 30.3632 13.8792 30.3658 13.7634C30.3631 13.1879 30.3645 12.6121 30.3659 12.0364C30.3681 11.1064 30.3704 10.1763 30.3558 9.24688L30.3167 9.31497L30.2774 9.38354C29.3941 11.7556 28.5081 14.1266 27.6212 16.4971C27.4032 16.4947 27.185 16.4964 26.9668 16.4981C26.5804 16.5011 26.1941 16.5042 25.8088 16.484C25.3145 15.1246 24.8067 13.77 24.2988 12.4154C23.9873 11.5844 23.6757 10.7534 23.3672 9.92123C23.3341 9.83879 23.3043 9.75495 23.2745 9.67111L23.2745 9.67106C23.2207 9.51972 23.167 9.36839 23.0932 9.22533C23.0736 10.2744 23.0763 11.3242 23.079 12.3741C23.0808 13.0465 23.0825 13.7188 23.0784 14.391C23.0611 15.1463 23.3841 15.8533 23.7508 16.4956C22.546 16.4987 21.3413 16.5013 20.1366 16.4945C20.3864 15.9915 20.6232 15.4733 20.7242 14.9172C20.7704 14.6737 20.7695 14.4258 20.7686 14.1788L20.7684 14.0767C20.7679 12.8865 20.7681 11.6963 20.7682 10.5061V10.4944V10.4944V10.4944V10.4944C20.7684 8.90281 20.7685 7.31134 20.7673 5.72003C20.7715 4.94003 20.4922 4.19787 20.1623 3.50406ZM38.8295 3.5019C37.7991 3.5013 36.7687 3.5007 35.7383 3.50466C36.0655 4.30727 36.2943 5.16349 36.2796 6.036V13.4455C36.279 13.541 36.2794 13.6367 36.2798 13.7324V13.7325V13.7326C36.2814 14.1119 36.2831 14.4921 36.2196 14.8673C36.1344 15.4302 35.9445 15.9685 35.7393 16.4972C36.1211 16.4969 36.503 16.4972 36.8848 16.4976H36.8848H36.8849C37.6168 16.4984 38.3488 16.4991 39.081 16.4946C38.7264 15.7582 38.4934 14.9519 38.4997 14.1293C38.5001 13.7169 38.4996 13.3045 38.4992 12.8921C38.4983 12.0993 38.4975 11.3065 38.5023 10.5137C38.8677 10.5132 39.2332 10.5142 39.5986 10.5153C40.4239 10.5177 41.2491 10.52 42.0739 10.5047C42.1313 10.5011 42.189 10.4978 42.2471 10.4945C42.8271 10.4613 43.4375 10.4263 43.931 10.0948C44.3887 9.77519 44.5102 9.18808 44.5418 8.66615C44.5778 8.1858 44.5751 7.70421 44.5723 7.22274C44.5711 7.00195 44.5698 6.78117 44.5723 6.56056L44.5722 6.42644C44.5719 5.89223 44.5716 5.35437 44.4697 4.82815C44.4018 4.47756 44.2282 4.13276 43.9299 3.92357C43.588 3.68284 43.164 3.60715 42.7568 3.56195C42.1821 3.5009 41.6038 3.50156 41.0264 3.50221C40.9029 3.50235 40.7795 3.5025 40.6561 3.50203C40.0472 3.50262 39.4384 3.50226 38.8295 3.5019ZM38.4991 6.50282L38.4992 5.49147C39.2694 5.48884 40.0395 5.48831 40.8103 5.49147C40.8671 5.49342 40.9241 5.49474 40.9813 5.49607C41.263 5.5026 41.5476 5.50919 41.8188 5.59133C42.0787 5.6665 42.2822 5.87989 42.3622 6.13639C42.489 6.54321 42.4911 6.97894 42.4601 7.40101C42.4306 7.71585 42.3775 8.07274 42.1144 8.28246C41.8507 8.48826 41.5098 8.5023 41.1856 8.51565L41.1856 8.51566C41.1314 8.51789 41.0777 8.5201 41.0249 8.52319C40.2702 8.53167 39.5151 8.52917 38.7604 8.52666H38.7603H38.7601L38.4992 8.52581C38.4988 7.85161 38.4989 7.17718 38.4991 6.50282ZM67.0039 3.50857C64.0767 3.49648 61.1491 3.50121 58.2214 3.50647L58.2287 3.52649C58.4373 4.10336 58.6476 4.68509 58.7449 5.29302C58.7861 5.5426 58.7848 5.79483 58.7835 6.04656C58.7832 6.1129 58.7828 6.17921 58.7833 6.24542V13.5488C58.7809 13.6781 58.7821 13.8077 58.7833 13.9375C58.7867 14.2929 58.79 14.6489 58.7191 14.9989C58.6134 15.5245 58.4082 16.0281 58.1367 16.4896C58.2735 16.4953 58.4103 16.4995 58.5481 16.4985C59.6891 16.4964 60.8301 16.4972 61.9711 16.498C63.6491 16.4991 65.3271 16.5003 67.0049 16.4922C67.0018 15.976 67.0023 15.4596 67.0029 14.9432C67.0033 14.4911 67.0037 14.0391 67.0018 13.5871C66.9021 13.6546 66.8027 13.7258 66.7025 13.7975C66.2377 14.1302 65.7574 14.474 65.1731 14.5091C63.8353 14.5117 62.4969 14.5127 61.1586 14.5085C61.1559 13.3412 61.1538 12.1743 61.1596 11.0074C61.472 11.0046 61.7846 11.005 62.0971 11.0054C62.2993 11.0057 62.5015 11.006 62.7037 11.0053C62.744 11.0054 62.7848 11.0049 62.8257 11.0043C63.0481 11.0012 63.2757 10.998 63.4796 11.0984C63.92 11.2991 64.2749 11.6357 64.6226 11.9655C64.6437 11.9856 64.6648 12.0056 64.6859 12.0256C64.6838 10.7084 64.6844 9.39172 64.6854 8.07454C64.5538 8.16511 64.4257 8.26511 64.2972 8.36549C63.9491 8.63739 63.5973 8.9121 63.1608 9.0096C62.4916 9.02222 61.8204 9.028 61.1517 9.00593C61.1588 8.34635 61.1578 7.68661 61.1567 7.0268C61.1559 6.51513 61.155 6.00341 61.158 5.4917C61.8637 5.48895 62.5693 5.48939 63.2749 5.48984C63.7845 5.49016 64.2942 5.49048 64.8038 5.48959C64.8303 5.48949 64.8569 5.48926 64.8836 5.48904C65.1236 5.487 65.3689 5.48491 65.5971 5.57054C66.0273 5.71568 66.3954 5.98079 66.7606 6.24388C66.8411 6.30187 66.9214 6.35976 67.0023 6.41624C67.0033 5.95471 67.0031 5.49317 67.0029 5.03164C67.0027 4.52395 67.0025 4.01626 67.0039 3.50857Z" fill="#E66C2A"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.6507 4.80687C50.2996 3.84987 51.6356 3.88888 52.6266 4.18788C52.79 4.25066 52.9341 4.35522 53.0444 4.49112C53.1547 4.62701 53.2274 4.78947 53.2552 4.96226C53.283 5.13506 53.265 5.31214 53.203 5.4758C53.1409 5.63945 53.037 5.78396 52.9016 5.89488C52.0305 6.25703 51.057 6.28796 50.1646 5.98187L49.7646 5.49588L49.531 5.86868L49.5308 5.86898L49.5306 5.86932C48.618 7.32572 47.7062 8.78086 46.7646 10.2199C47.2816 11.0032 47.7791 11.8002 48.2767 12.5974L48.2768 12.5975L48.2769 12.5976L48.277 12.5978C48.846 13.5093 49.4152 14.421 50.0136 15.3129C49.9779 13.6841 49.9821 12.0552 49.9863 10.4269V10.4268V10.4266V10.4264C49.9896 9.14183 49.993 7.85756 49.9767 6.57388C50.9684 6.86528 52.0229 6.86528 53.0146 6.57388C52.9705 8.99495 52.9811 11.4179 52.9916 13.8398V13.8401V13.8408V13.8415V13.8421C52.9943 14.4395 52.9969 15.0367 52.9986 15.6339C51.8187 15.6419 50.6388 15.6407 49.4589 15.6396C48.5738 15.6387 47.6887 15.6379 46.8036 15.6409C46.3765 14.9442 45.9761 14.2313 45.5761 13.5191L45.576 13.519L45.5759 13.5189C45.1078 12.6855 44.6402 11.8529 44.1306 11.0479C44.1418 12.1122 44.1452 13.177 44.1486 14.2415V14.2418V14.242V14.2423C44.15 14.7079 44.1515 15.1734 44.1537 15.6389C43.8987 15.6389 43.6437 15.6393 43.3888 15.6397C42.6251 15.6411 41.8617 15.6424 41.0977 15.6319C41.1227 12.0249 41.1317 8.41587 41.0977 4.80987C42.1187 4.79887 43.1396 4.80287 44.1606 4.80987C44.1493 6.42521 44.1447 8.04188 44.1467 9.65988C44.5575 8.97821 44.9297 8.27169 45.3018 7.56548L45.3018 7.56544C45.7938 6.63167 46.2855 5.69844 46.8656 4.82388C47.4543 4.79404 48.0438 4.79927 48.6335 4.8045C48.9725 4.80751 49.3116 4.81052 49.6507 4.80687ZM28.1223 4.16186C28.8967 3.91253 29.7354 3.95412 30.4813 4.27885C30.6294 4.36702 30.7513 4.4931 30.8345 4.6441C30.9176 4.7951 30.959 4.96554 30.9543 5.13784C30.9496 5.31015 30.899 5.4781 30.8078 5.62436C30.7166 5.77061 30.588 5.88987 30.4353 5.96986C29.5967 6.27918 28.6735 6.2685 27.8423 5.93986C27.684 5.83528 27.5591 5.68737 27.4825 5.51377C27.406 5.34018 27.381 5.14823 27.4105 4.96081C27.44 4.77339 27.5228 4.59841 27.649 4.45675C27.7752 4.31509 27.9395 4.21272 28.1223 4.16186ZM69.4717 4.60853C68.4721 4.42865 67.4425 4.51953 66.4898 4.87175C65.3076 5.36721 64.336 6.26089 63.7438 7.39775C63.8168 6.53879 63.8168 5.67884 63.8168 4.82089V4.82075C62.8988 4.81375 61.9838 4.81175 61.0658 4.82075C61.0929 6.33151 61.0912 7.84358 61.0895 9.35552V9.3561C61.0886 10.1347 61.0878 10.9134 61.0908 11.6918C60.4918 10.3984 59.9228 9.09313 59.354 7.78819L59.3539 7.78808C58.9209 6.79464 58.4879 5.80139 58.0418 4.81375C57.5649 4.81375 57.0884 4.81275 56.612 4.81175H56.6119C55.6599 4.80975 54.7089 4.80775 53.7578 4.81375C53.7848 8.42275 53.7788 12.0317 53.7578 15.6407C54.373 15.6454 54.9887 15.6439 55.6048 15.6423C55.913 15.6415 56.2214 15.6407 56.5298 15.6407C56.5238 13.1954 56.5208 10.7498 56.5208 8.30376C57.1645 9.56931 57.7876 10.8454 58.4109 12.1218L58.4112 12.1224C58.9856 13.2987 59.56 14.4751 60.1508 15.6438H63.8098C63.8188 14.7928 63.8068 13.9417 63.7428 13.0927C64.1688 13.9059 64.7728 14.6125 65.5098 15.1597C66.7083 15.8628 68.1255 16.0952 69.4858 15.8118C70.1618 15.7049 70.7999 15.4297 71.3417 15.0115C71.8834 14.5933 72.3112 14.0456 72.5858 13.4187C72.6108 12.817 72.6066 12.2171 72.6023 11.6179C72.5987 11.1158 72.5951 10.6143 72.6088 10.1127H69.6088C69.6228 11.1517 69.6228 12.1937 69.6228 13.2377C69.2088 13.4665 68.7342 13.5614 68.2641 13.5092C67.794 13.4571 67.3516 13.2606 66.9978 12.9467C66.6101 12.4096 66.3528 11.7895 66.2464 11.1356C66.14 10.4818 66.1874 9.81212 66.3848 9.17975C66.5354 8.59867 66.8881 8.09023 67.3795 7.74554C67.871 7.40086 68.4692 7.24247 69.0668 7.29875C69.6821 7.31911 70.2845 7.48098 70.8271 7.77182C71.3698 8.06265 71.8381 8.47463 72.1958 8.97575C72.1568 7.94831 72.1658 6.92386 72.1748 5.89642L72.1748 5.89474C71.4047 5.23251 70.4714 4.78842 69.4717 4.60853ZM1.00491 4.80664H14.9179C16.0009 4.83164 17.3179 5.12564 17.8069 6.21564C18.1229 6.91075 18.2059 7.6893 18.0438 8.43542C17.8816 9.18155 17.4829 9.85538 16.9069 10.3566C16.3917 10.6929 15.8058 10.9057 15.1949 10.9786C15.6078 11.5429 15.9999 12.1222 16.392 12.7015L16.3921 12.7016C16.7303 13.2012 17.0684 13.7007 17.4199 14.1906C17.9765 12.323 18.5484 10.4603 19.1203 8.59754L19.1204 8.5973C19.5081 7.33432 19.8959 6.0713 20.2789 4.80664H25.1839C25.8806 7.081 26.5549 9.36302 27.2297 11.6463L27.2297 11.6464C27.3637 12.0998 27.4977 12.5532 27.6319 13.0066C27.7082 11.5479 27.6903 10.0841 27.6724 8.62156V8.62154L27.6724 8.62125C27.664 7.93723 27.6556 7.25349 27.6569 6.57065C28.6517 6.8694 29.7129 6.86626 30.7059 6.56165C30.6586 9.54231 30.6773 12.5249 30.6961 15.5056V15.5058L30.6969 15.6356C28.8319 15.6466 26.9689 15.6426 25.1029 15.6356C24.8849 14.8606 24.6559 14.0896 24.4259 13.3186H20.8399C20.7313 13.6981 20.6267 14.0791 20.5219 14.4603L20.5218 14.4607C20.4143 14.8519 20.3068 15.2433 20.1949 15.6336C19.0248 15.6396 17.8546 15.6376 16.6851 15.6356H16.6846C16.1002 15.6346 15.5159 15.6336 14.9319 15.6336C14.5479 15.0089 14.1781 14.3755 13.8081 13.742L13.8081 13.742L13.8081 13.742C13.336 12.9335 12.8637 12.1247 12.3619 11.3336C12.4207 12.3846 12.4179 13.4372 12.4151 14.4903V14.4903V14.4906C12.4141 14.8693 12.4131 15.248 12.4149 15.6266C11.7743 15.6313 11.1334 15.6298 10.4919 15.6282C10.171 15.6274 9.85002 15.6266 9.52891 15.6266C9.54109 14.3424 9.53974 13.0586 9.53839 11.7755V11.7755C9.53697 10.425 9.53555 9.07529 9.54991 7.72664C8.94995 7.72197 8.34645 7.72353 7.74293 7.72508H7.74279C7.44102 7.72586 7.13924 7.72664 6.83791 7.72664C6.84544 8.82929 6.84351 9.9323 6.84159 11.0351V11.0351C6.83891 12.5666 6.83623 14.0976 6.85891 15.6266C6.18556 15.634 5.51178 15.6315 4.83814 15.6291H4.83806C4.50128 15.6279 4.16454 15.6266 3.82791 15.6266C3.83724 14.456 3.83551 13.2853 3.83378 12.1147C3.83162 10.6517 3.82946 9.18884 3.84891 7.72664C3.34701 7.72187 2.84399 7.72215 2.34149 7.72243H2.34143H2.34134C1.89475 7.72268 1.44855 7.72293 1.00391 7.71964V4.80664H1.00491ZM21.5309 10.8196C22.2559 10.8286 22.9829 10.8266 23.7079 10.8196C23.3389 9.48164 23.0079 8.13565 22.7079 6.77965C22.4809 7.477 22.2847 8.18365 22.0886 8.89031C21.9099 9.53444 21.7311 10.1786 21.5289 10.8156L21.5309 10.8196ZM12.4132 9.0466V9.04666C12.4133 9.19841 12.4135 9.35012 12.4139 9.50165C13.0929 9.54604 13.7746 9.53064 14.4509 9.45564C14.6374 9.39318 14.8041 9.2825 14.934 9.13483C15.0639 8.98716 15.1524 8.80776 15.1906 8.61482C15.2288 8.42189 15.2152 8.22227 15.1514 8.03625C15.0875 7.85024 14.9756 7.68442 14.8269 7.55563C14.0338 7.36103 13.2132 7.3042 12.4009 7.38763L12.3979 7.38364C12.412 7.93359 12.4126 8.49034 12.4132 9.0466ZM34.3944 4.81462C33.3844 4.80762 32.3744 4.80762 31.3654 4.80762C31.3643 6.09817 31.3651 7.38847 31.366 8.67856C31.3675 11.0002 31.369 13.3211 31.3594 15.6416H38.1964C38.1874 14.7566 38.1894 13.8726 38.1964 12.9896H34.3714C34.3776 11.9253 34.3752 10.861 34.3727 9.79687C34.3689 8.13546 34.3651 6.47448 34.3944 4.81462Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.5368 6.03998V3L0.0158119 3.00497C0.0163382 3.55495 0.0140948 4.10438 0.0118513 4.65384C0.00983194 5.1484 0.0078125 5.64298 0.0078125 6.138C1.08481 6.119 2.16181 6.11298 3.23981 6.11298V17.021C3.63515 17.021 4.03048 17.0217 4.42581 17.0223C5.21648 17.0237 6.00715 17.025 6.79781 17.021V6.03998H71.5368ZM43.8233 9.27767C44.63 8.48976 45.7108 8.04529 46.8384 8.03768C47.5696 8.02794 48.2972 8.14363 48.9894 8.37969C49.0104 9.45769 49.0424 10.5357 49.0774 11.6147C48.6557 11.1993 48.1248 10.9122 47.5464 10.7867C47.2491 10.7367 46.9439 10.7672 46.6625 10.8752C46.3811 10.9832 46.1338 11.1647 45.9463 11.4007C45.7611 11.6331 45.6443 11.9126 45.6089 12.2078C45.5736 12.5029 45.6212 12.8021 45.7464 13.0717C45.9088 13.4033 46.1713 13.6754 46.4968 13.8497C46.8223 14.0239 47.1944 14.0914 47.5603 14.0427C48.1395 13.9559 48.6742 13.6815 49.0824 13.2617C49.0444 14.3247 49.0123 15.3867 48.9933 16.4497C48.3234 16.6684 47.6231 16.7798 46.9184 16.7797C46.3121 16.8052 45.7073 16.7007 45.1448 16.4733C44.5822 16.2459 44.0748 15.9008 43.6565 15.4612C43.2383 15.0216 42.9189 14.4975 42.7198 13.9243C42.5208 13.3511 42.4466 12.7419 42.5024 12.1377C42.5737 11.0537 43.0443 10.0347 43.8233 9.27767ZM9.36647 8.17001H13.2305C14.102 8.14915 14.9569 8.41086 15.6675 8.91602C15.9439 9.14601 16.1697 9.43086 16.3305 9.75256C16.4912 10.0743 16.5835 10.4258 16.6015 10.785C16.685 11.3744 16.5703 11.9749 16.2755 12.492C15.9334 12.9056 15.4698 13.2009 14.9505 13.336C15.1745 13.5123 15.3722 13.7198 15.5375 13.952C15.7374 14.2519 15.9385 14.5511 16.1396 14.8503C16.5422 15.4491 16.9447 16.0479 17.3375 16.652H13.7785C13.5933 16.2896 13.4137 15.9238 13.2342 15.558L13.2342 15.558L13.2342 15.558L13.2342 15.558L13.2341 15.558L13.2341 15.5579C12.9599 14.9994 12.6857 14.4409 12.3915 13.894C12.3799 14.4267 12.3817 14.9598 12.3836 15.493V15.4931C12.3849 15.8797 12.3863 16.2664 12.3825 16.653C11.9535 16.6482 11.5243 16.6497 11.0952 16.6511H11.095H11.095H11.0949H11.0949H11.0949H11.0948C10.5358 16.653 9.97679 16.6549 9.41847 16.643L9.35547 16.577C9.36755 14.9662 9.36573 13.353 9.36391 11.7394C9.36256 10.5482 9.36122 9.35685 9.36546 8.16602L9.36647 8.17001ZM12.3855 10.492V11.922C12.6911 11.9465 12.9983 11.9035 13.2855 11.796C13.3686 11.7398 13.4392 11.6671 13.4931 11.5825C13.547 11.4978 13.5829 11.403 13.5987 11.304C13.6144 11.2049 13.6097 11.1036 13.5847 11.0064C13.5597 10.9093 13.5151 10.8182 13.4535 10.739C13.2268 10.4965 12.8855 10.4971 12.5708 10.4976C12.5079 10.4978 12.4461 10.4979 12.3865 10.496L12.3855 10.492ZM25.4404 8.1709H19.7404C19.7424 10.9876 19.7384 13.8043 19.7344 16.6279V16.6282V16.6285V16.6288V16.6292L19.7344 16.6619H25.5274V14.3289H22.8374V13.5069H25.2084V11.3009H22.8404V10.5009H25.4404V8.1709ZM29.2322 11.2266L29.2323 11.2261C29.3979 10.2072 29.5634 9.18836 29.7274 8.16925C30.1494 8.17723 30.5719 8.17391 30.9944 8.17059C31.631 8.16559 32.2676 8.16059 32.9024 8.19425C33.0964 8.85983 33.269 9.53267 33.4416 10.2052L33.4416 10.2053L33.4416 10.2055C33.6533 11.0303 33.8647 11.8545 34.1154 12.6642C34.2814 11.6795 34.5651 10.7234 34.8489 9.76702L34.8489 9.76698L34.8489 9.76693L34.8489 9.76689C35.006 9.23737 35.1632 8.70779 35.3004 8.17325H38.4624C38.6832 9.57133 38.914 10.968 39.1449 12.3646L39.1449 12.3647L39.1449 12.365L39.145 12.3654C39.3814 13.7955 39.6177 15.2256 39.8434 16.6573C39.4518 16.6525 39.0602 16.6548 38.6685 16.6571H38.6685H38.6684H38.6684C38.0676 16.6606 37.4668 16.664 36.8664 16.6422C36.7889 15.9291 36.7276 15.214 36.6664 14.4988L36.6663 14.4986C36.5939 13.6533 36.5215 12.808 36.4224 11.9663C36.2858 12.6097 36.0813 13.2302 35.8767 13.8506C35.7952 14.098 35.7136 14.3454 35.6364 14.5942C35.5645 14.8189 35.4918 15.0433 35.4191 15.2676L35.4187 15.269L35.4182 15.2705L35.4176 15.2724L35.4173 15.2734L35.4172 15.2736L35.4171 15.2739C35.2679 15.7343 35.1188 16.1944 34.9774 16.6563C34.8211 16.6563 34.6649 16.6568 34.5087 16.6573H34.5086C34.0589 16.6588 33.6091 16.6604 33.1594 16.6492C32.9569 15.9647 32.746 15.2829 32.5352 14.6011L32.5348 14.5998L32.5347 14.5995C32.3822 14.1064 32.2297 13.6134 32.0804 13.1192C32.0153 12.9027 31.9732 12.681 31.9311 12.4595L31.9311 12.4595C31.8982 12.2862 31.8653 12.113 31.8214 11.9422C31.6915 13.0796 31.5827 14.2217 31.474 15.3632L31.474 15.3634C31.4328 15.7955 31.3917 16.2276 31.3494 16.6592C30.3534 16.6552 29.3567 16.6543 28.3594 16.6563C28.644 14.8456 28.938 13.0365 29.232 11.2275L29.2321 11.2271L29.2322 11.2266ZM51.3024 16.6469L51.3018 16.6488L51.3008 16.6469L51.3024 16.6469ZM51.3024 16.6469C51.8466 15.093 52.3863 13.538 52.9258 11.9831L52.926 11.9827C53.3668 10.7124 53.8076 9.44224 54.2508 8.17285H57.6658C58.1063 9.42005 58.5517 10.6653 58.9971 11.9105C59.5627 13.4918 60.1282 15.0729 60.6838 16.6578H57.4158C57.3224 16.3025 57.2278 15.9482 57.1318 15.5948H54.8188C54.7923 15.7053 54.7684 15.8166 54.7446 15.928L54.7445 15.9282L54.7445 15.9284L54.7445 15.9285C54.6936 16.1658 54.6427 16.4036 54.5658 16.6349C53.7284 16.6703 52.8875 16.6618 52.048 16.6533L52.0478 16.6533C51.7992 16.6508 51.5507 16.6482 51.3024 16.6469ZM55.5673 12.6932L55.5673 12.6931L55.5673 12.6931C55.6874 12.1027 55.8074 11.5124 55.9808 10.9369L55.9818 10.9359C56.0705 11.2375 56.1384 11.5449 56.1848 11.8558C56.251 12.1557 56.3235 12.4543 56.396 12.7529C56.4625 13.0268 56.529 13.3007 56.5908 13.5758H55.3808C55.4474 13.2828 55.5074 12.988 55.5673 12.6932ZM63.2363 8.17149H66.3683C67.3579 8.0743 68.3546 8.26165 69.2413 8.7115C69.5678 8.90618 69.8455 9.17272 70.0535 9.49086C70.2614 9.809 70.394 10.1704 70.4413 10.5475C70.5633 11.1779 70.4788 11.8309 70.2003 12.4095C69.8601 12.8714 69.3715 13.2022 68.8163 13.3465C69.2667 13.7416 69.6441 14.2128 69.9313 14.7385C70.0917 14.98 70.2533 15.2203 70.4149 15.4606C70.6817 15.8572 70.9484 16.2538 71.2094 16.6555C70.8127 16.6555 70.416 16.6562 70.0193 16.6568C69.226 16.6582 68.4327 16.6595 67.6393 16.6555C67.4905 16.3581 67.3448 16.059 67.1991 15.76L67.1985 15.7589C66.8952 15.1362 66.5919 14.5136 66.2603 13.9065C66.2455 14.4298 66.2476 14.9537 66.2497 15.4779V15.478C66.2514 15.8714 66.253 16.2649 66.2474 16.6585H63.2344V8.1765L63.2363 8.17149ZM66.2493 10.5015V11.9315C66.2971 11.9301 66.3465 11.9296 66.3966 11.929C66.741 11.9254 67.1266 11.9213 67.3544 11.6315C67.4333 11.4909 67.4706 11.3308 67.462 11.1699C67.4533 11.0089 67.399 10.8537 67.3054 10.7225C66.9949 10.5173 66.6186 10.4367 66.2513 10.4965L66.2493 10.5015Z" fill="#004B95"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="111" height="20" viewBox="0 0 111 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M55.3962 17.997C54.3179 17.9948 53.2396 17.9925 52.1616 17.9957C52.1823 17.6965 52.2215 17.3987 52.2793 17.104C52.9894 13.6555 53.6708 10.2022 54.3892 6.75479C55.5144 6.74996 56.6395 6.74978 57.7647 6.75423C57.1302 9.67297 56.5796 12.6061 55.9651 15.5279C56.7509 15.5343 57.5358 15.5325 58.3213 15.5308C59.4396 15.5284 60.5581 15.5259 61.6763 15.5471C61.6268 16.3686 61.4424 17.1767 61.2366 17.9771C59.9861 17.9956 58.7351 18 57.4843 18C56.7882 17.9999 56.0921 17.9989 55.3962 17.997ZM13.4337 17.9287C13.6525 16.6601 13.9547 15.404 14.1962 14.1383C14.2499 13.8234 14.4075 13.4737 14.2127 13.1708C13.1633 11.4881 12.2149 9.75909 11.1772 8.07088C10.9522 7.65634 10.5172 7.23382 10.7134 6.74579C11.9845 6.75293 13.2555 6.74876 14.5266 6.75841C15.1968 8.09018 15.8162 9.44301 16.532 10.7572C17.8009 9.45796 18.9722 8.08879 20.1931 6.75516C21.4793 6.75154 22.7669 6.73966 24.0537 6.76778C23.9426 7.05165 23.7746 7.31145 23.5595 7.53227C21.6925 9.35114 19.8868 11.2164 18.0335 13.0458C17.7927 13.2607 17.6392 13.5518 17.6007 13.8667C17.3515 15.2183 17.08 16.5661 16.7862 17.9102C16.0999 17.9275 15.4136 17.9319 14.7273 17.9319C14.2964 17.9318 13.8651 17.93 13.4338 17.9286L13.4337 17.9287ZM36.407 17.9216C37.7477 15.9293 38.9933 13.8895 40.3205 11.8901C41.4417 10.1825 42.5158 8.45321 43.6486 6.75154C44.7008 6.75086 45.7532 6.75207 46.8059 6.75516C47.7012 10.484 48.6585 14.2022 49.582 17.9262C48.4073 17.9328 47.2344 17.9298 46.06 17.9298C45.903 17.2886 45.7262 16.651 45.561 16.011C44.0752 16.0038 42.5897 16.0029 41.1045 16.0081C40.6881 16.6367 40.3047 17.2803 39.9181 17.922C39.2975 17.9274 38.6768 17.9305 38.0562 17.9313C37.5065 17.9312 36.9567 17.928 36.407 17.9216ZM42.324 13.6571C43.2999 13.6654 44.2756 13.6642 45.2523 13.6607C45.0685 12.4269 44.8262 11.2005 44.5902 9.97383C43.781 11.1748 43.0439 12.4139 42.3241 13.6571H42.324ZM2.28976 17.9278C2.8624 14.6842 4.58482 8.65004 5.13053 5.40223C4.81882 5.40149 4.45613 5.40223 4.07025 5.40223C3.03747 5.40316 1.83824 5.40418 1.00391 5.38432C1.09369 4.46931 1.62436 2.90016 1.8092 2C3.34324 2.00176 15.3148 2.00139 28.4461 2.00111C44.8606 2.00111 63.0862 2.00028 65.0039 2.00408C64.9344 2.72922 64.4761 4.11547 64.3454 4.83253C64.2903 5.00644 64.3151 5.25709 64.1389 5.38005C63.4045 5.41634 41.7269 5.41012 25.6489 5.4039C16.3545 5.40056 8.93126 5.39648 8.50724 5.40158C7.95147 8.64735 6.23518 14.6829 5.66743 17.9265C5.05416 17.9294 4.44067 17.9309 3.82695 17.9309C3.31455 17.9309 2.80216 17.9298 2.28976 17.9278ZM27.2421 17.9278C27.8153 15.0013 28.4362 12.0829 28.9881 9.15246C28.6763 9.15181 28.3149 9.15246 27.931 9.15246C26.9022 9.15339 25.7113 9.15422 24.8764 9.13622C24.9797 8.31143 25.1351 7.49354 25.3416 6.68714C28.7921 6.68352 35.4134 6.68352 38.8647 6.68779C38.7856 7.35641 38.6635 8.02067 38.5323 8.68345C38.4408 8.78924 38.5398 9.06996 38.3341 9.1248C37.5927 9.16758 35.8207 9.1609 34.3403 9.15431C33.5136 9.1506 32.7779 9.14698 32.3636 9.1519C31.7875 12.0778 31.2049 15.0027 30.6157 17.9267C29.9944 17.929 29.3733 17.9301 28.7524 17.9301C28.2492 17.9304 27.7459 17.9297 27.2425 17.9282L27.2421 17.9278Z" fill="#0147C1"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Trailer_-_Utility" data-name="Trailer - Utility" transform="translate(-353.876 -10688)">
|
|
3
|
+
<rect id="Rectangle_63518" data-name="Rectangle 63518" width="110" height="20" transform="translate(353.877 10688)" fill="#ef3f35" opacity="0"/>
|
|
4
|
+
<path id="Path_37014" data-name="Path 37014" d="M502.175,971c-1.1.019-2.611-.005-3.544-.041l-.2-.008-.027.2a61.093,61.093,0,0,1-1.649,7.381c-.126.518-.323.789-1.06.858a8.022,8.022,0,0,1-1.012-.02l-.377-.023a3.424,3.424,0,0,1-.692-.076c-.22-.067-.26-.153-.272-.178-.053-.107-.029-.3.082-.6a74.058,74.058,0,0,1,3.225-7.353l.143-.288-.319-.032c-.941-.091-2.419-.271-3.444-.449l-.187-.033-.061.18-2.2,6.414-.174.5c-.459,1.3-.822,2.334-.2,3.417a2.362,2.362,0,0,0,1.424,1.1,13.817,13.817,0,0,0,2.241.279l.028,0a13.614,13.614,0,0,0,2.268.022,4.186,4.186,0,0,0,1.989-.815c1.063-.729,1.47-1.834,2.1-3.722L502.487,971Zm48.248-3.349c-1.048-.193-2.149-.356-3.273-.474l-.13-.014-2.774,3.755c-.114-.831-.541-3.985-.541-3.985l-.19-.006c-1.085-.035-2.213-.022-3.4.006l-.28.007h-.018l-.087,0c-2.461.063-5.14.263-8.193.609l-.144.017-.853,2.827,2.512-.259c-.167.562-2.474,8.28-2.474,8.28l.328-.031c1.1-.1,2.192-.185,3.247-.247l.156-.01s2.364-8,2.449-8.278c.758-.042,1.527-.076,2.29-.1l.161,0,.712-2.428c.575,2.185,1.136,4.4,1.673,6.583l-1.19,4.117.284.012c1.065.044,2.112.117,3.113.22l.186.019s1.125-3.947,1.153-4.037c1.817-2.123,3.636-4.213,5.408-6.222l.26-.293Zm-23.76.522-.041.135L523.254,979.3l3.8-.5.041-.138,3.33-10.985-.34.046Zm-4.882.723-.351.053-.965.145-2.464.368-.043.132-3.472,11.019,3.14-.472,4.541-.672.042-.133.847-2.75s-3.266.481-3.847.568c.193-.615,2.573-8.258,2.573-8.258m-5.288.8-3.416.459-.044.135-3.54,11.025,3.808-.515.04-.133,3.5-11.017Zm-5.236,3.274.872-2.706-.344.041c-3.061.358-5.73.576-8.162.661l-.155.007-.936,2.829.32-.01c.688-.026,1.412-.063,2.147-.111-.175.534-2.73,8.323-2.73,8.323l.328-.023c1.043-.071,2.142-.158,3.266-.272l.145-.013s2.617-8.051,2.7-8.318c.257-.029,2.5-.269,2.5-.269Z" transform="translate(-136 9723.396)" fill="#ef3f35"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="20" viewBox="0 0 110 20">
|
|
2
|
+
<g id="Truck_-_Vanguard" data-name="Truck - Vanguard" transform="translate(-353.877 -10768)">
|
|
3
|
+
<rect id="Rectangle_63519" data-name="Rectangle 63519" width="110" height="20" transform="translate(353.877 10768)" fill="#2267ad" opacity="0"/>
|
|
4
|
+
<path id="Union_712" data-name="Union 712" d="M9.978,18.315q-1.918-.021-3.838,0c-.273,0-.353-.073-.362-.353-.071-2.18-.161-4.359-.248-6.538q-.083-2.1-.172-4.2C5.32,6.3,5.273,5.376,5.252,4.454c-.007-.286-.116-.35-.379-.348-1.5.01-3,.005-4.5,0C.26,4.109.149,4.1,0,4.093c.062-.114.1-.191.143-.26.4-.622.807-1.241,1.2-1.866a.415.415,0,0,1,.4-.214c1.259,0,2.519-.007,3.779-.017,1.009-.009,2.018-.024,3.028-.035.105,0,.21,0,.35,0q.176,4.8.35,9.574l.09.01c.124-.318.249-.636.372-.955Q11.649,5.322,13.578.311C13.685.03,13.846,0,14.1,0l16.43,0h.8l18.4,0,.047,0H73.67L73,2.825s-.125.242-.3.223a1.591,1.591,0,0,0-.173,0l-52.4,0c-1.135,0-2.27.018-3.4,0a.484.484,0,0,0-.535.381Q13.34,10.705,10.481,17.98a.447.447,0,0,1-.489.335ZM31.7,16.935c-.91-.179-1.2-.645-1-1.674.324-1.654.748-3.288,1.136-4.929.234-.988.481-1.973.722-2.96.023-.093.051-.185.078-.277A2.143,2.143,0,0,1,34.676,5.4a15.868,15.868,0,0,1,3.821.05c.817.131,1.118.453,1.022,1.268s-.308,1.616-.48,2.42a.237.237,0,0,1-.18.134c-.931.009-1.862.006-2.838.006.13-.553.245-1.055.367-1.556.056-.23.088-.445-.2-.549a.489.489,0,0,0-.649.316c-.134.429-.235.869-.34,1.306q-.685,2.851-1.363,5.7a.614.614,0,0,0-.032.11c-.005.2-.089.443.2.528a.524.524,0,0,0,.664-.311c.171-.637.317-1.281.48-1.955l-.55-.026c.136-.578.263-1.136.406-1.69a.251.251,0,0,1,.2-.122c1.1,0,2.191,0,3.287.006.017,0,.034.016.079.039-.149.633-.3,1.273-.451,1.912-.3,1.239-.607,2.475-.9,3.716-.048.208-.135.275-.33.248a.578.578,0,0,0-.144,0c-.568.068-1.072.025-1.214-.674,0-.022-.04-.037,0,0a10.67,10.67,0,0,1-1.5.633,4.656,4.656,0,0,1-1.166.143A6.119,6.119,0,0,1,31.7,16.935Zm7.937-.088c-.673-.125-1-.448-.851-1.28.261-1.47.622-2.923.962-4.378.424-1.81.875-3.614,1.3-5.424.066-.281.157-.4.466-.385.759.025,1.52.008,2.279.008h.354L43.128,9.611q-.6,2.5-1.2,5c-.055.229-.094.449.2.539a.5.5,0,0,0,.661-.34c.145-.537.268-1.079.4-1.619q.9-3.745,1.8-7.493c.056-.237.146-.328.4-.322.548.012,1.1.01,1.646.008h.72c.093,0,.186.008.316.013-.142.589-.278,1.144-.412,1.7-.616,2.563-1.226,5.127-1.853,7.686a6.033,6.033,0,0,1-.412,1.1,1.609,1.609,0,0,1-1.207.936,12.9,12.9,0,0,1-2.363.223A11.942,11.942,0,0,1,39.632,16.847Zm-11.007.118c-.806-.022-1.613-.008-2.448-.008-.051-1.863-.1-3.683-.15-5.5l-.063-.013a2.212,2.212,0,0,0-.077.221c-.4,1.668-.808,3.335-1.2,5-.049.206-.118.3-.355.3-.464-.013-.927-.011-1.391-.009l-.6,0c-.084,0-.168-.009-.288-.015.067-.3.125-.579.191-.855q1.241-5.187,2.48-10.374c.059-.248.157-.34.423-.332.493.015.987.012,1.48.01.218,0,.436,0,.654,0,.1,0,.206.009.365.017v5.72l.1.019c.028-.087.062-.172.083-.26.422-1.741.846-3.482,1.256-5.227a.293.293,0,0,1,.349-.273c.748.011,1.5,0,2.293,0-.034.181-.055.327-.089.469q-1.289,5.382-2.575,10.765c-.06.253-.157.343-.409.343Zm28.518,0c-.778-.021-1.557-.007-2.336-.007H54.5c.237-1,.464-1.957.693-2.914Q56.2,9.85,57.2,5.657a.293.293,0,0,1,.347-.274c.505,0,1.011,0,1.516,0,.851,0,1.7,0,2.551.019a7.635,7.635,0,0,1,1.472.224.829.829,0,0,1,.68.881,4.673,4.673,0,0,1-.075,1c-.164.738-.35,1.472-.568,2.2a2.086,2.086,0,0,1-1.494,1.5,1.054,1.054,0,0,0-.169.084.76.76,0,0,0,.139.09,1.075,1.075,0,0,1,.8,1.461c-.267,1.314-.605,2.613-.924,3.916-.019.076-.125.185-.192.185-.923.01-1.846.005-2.769,0-.017,0-.033-.016-.076-.038.153-.644.305-1.295.461-1.945s.318-1.3.474-1.955c.114-.475-.044-.668-.53-.673a.247.247,0,0,0-.293.228c-.316,1.353-.654,2.7-.966,4.054-.059.256-.156.343-.407.343Zm2.973-9.787a.465.465,0,0,0-.3.182,1.29,1.29,0,0,0-.168.53c-.139.719-.307,1.431-.485,2.142a.222.222,0,0,0,.1.19.69.69,0,0,0,.884-.453q.248-.987.472-1.98c.036-.158.078-.366-.053-.493a.505.505,0,0,0-.232-.108.521.521,0,0,0-.214-.009ZM16.262,16.962c-.826-.014-1.652-.006-2.524-.006.047-.13.079-.226.116-.319Q16.032,11.169,18.206,5.7a.412.412,0,0,1,.456-.318c.98.018,1.962.007,2.943.007h.35c0,.208.012.4,0,.583q-.133,1.708-.276,3.416c-.088,1.071-.179,2.142-.266,3.214s-.169,2.144-.252,3.216c-.024.306-.029.615-.071.918-.011.082-.125.213-.194.214-.856.013-1.712.006-2.567,0-.016,0-.033-.018-.076-.042.1-.725.194-1.463.3-2.249-.411,0-.792-.011-1.171.011-.062,0-.137.145-.169.236-.21.6-.415,1.2-.609,1.8-.056.174-.127.26-.326.26Zm2.356-4.128c.171.005.252-.044.277-.237.12-.939.261-1.877.392-2.815.058-.412.109-.825.163-1.238l-.08-.021-1.485,4.308.467,0C18.443,12.83,18.531,12.831,18.618,12.834Zm45.718,4.121c-.515,0-1.031-.01-1.546,0-.017,0-.033-.016-.075-.038.151-.635.3-1.277.455-1.918q1.117-4.654,2.23-9.309c.053-.223.136-.309.38-.306,1.327.016,2.654,0,3.981.019a6.958,6.958,0,0,1,1.229.13A1.076,1.076,0,0,1,71.978,7c-.259,1.257-.551,2.507-.844,3.756-.313,1.334-.643,2.664-.969,4-.043.176-.105.348-.158.522a2.1,2.1,0,0,1-1.946,1.572,24.651,24.651,0,0,1-2.673.118C65.037,16.961,64.686,16.958,64.336,16.955Zm3.631-9.431q-.765,3.2-1.537,6.394c-.093.388-.179.777-.271,1.181.712.12.94-.032,1.088-.662q.414-1.761.833-3.521c.253-1.061.512-2.121.762-3.183.072-.308-.012-.5-.246-.517-.2-.017-.318-.039-.4-.039C68.054,7.176,68.034,7.243,67.966,7.524ZM46.209,16.957c.037-.122.061-.221.1-.314q2.19-5.494,4.378-10.989a.361.361,0,0,1,.4-.272c.716.008,1.432.007,2.147.006h.94c.084,0,.169.01.28.017-.309,3.862-.615,7.686-.923,11.531H50.708c.1-.757.194-1.5.295-2.283-.4,0-.757-.013-1.108.01-.077.005-.182.125-.214.214-.223.623-.426,1.253-.651,1.875a.331.331,0,0,1-.222.2c-.5.008-1.008.01-1.519.01Zm4.754-4.119c.316.046.385-.119.419-.386.119-.939.256-1.877.383-2.815.049-.357.092-.715.137-1.072l-.087-.012-1.472,4.28c.153,0,.284-.008.406-.008A1.48,1.48,0,0,1,50.963,12.838Z" transform="translate(353.877 10768.843)" fill="#2267ad"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|