ca-components 1.0.70 → 1.0.71

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.
Files changed (105) hide show
  1. package/esm2022/lib/ca-components.module.mjs +7 -1
  2. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +331 -118
  3. package/esm2022/lib/components/ca-chart/enums/chart-colors.enum.mjs +1 -1
  4. package/esm2022/lib/components/ca-chart/enums/chart-event-types.enum.mjs +1 -1
  5. package/esm2022/lib/components/ca-chart/enums/chart-font-properties.enum.mjs +1 -1
  6. package/esm2022/lib/components/ca-chart/enums/chart-plugin-ids.enum.mjs +2 -1
  7. package/esm2022/lib/components/ca-chart/models/chart-annotation.model.mjs +1 -1
  8. package/esm2022/lib/components/ca-chart/models/chart-base-dataset.model.mjs +1 -1
  9. package/esm2022/lib/components/ca-chart/models/chart-center-label.model.mjs +2 -0
  10. package/esm2022/lib/components/ca-chart/models/chart-config.model.mjs +1 -1
  11. package/esm2022/lib/components/ca-chart/models/chart-dataset-hover.model.mjs +2 -0
  12. package/esm2022/lib/components/ca-chart/models/chart-line-dataset.model.mjs +1 -1
  13. package/esm2022/lib/components/ca-chart/models/index.mjs +3 -1
  14. package/esm2022/lib/components/ca-chart/utils/constants/chart.constants.mjs +4 -0
  15. package/esm2022/lib/components/ca-chart/utils/constants/index.mjs +2 -0
  16. package/esm2022/lib/components/ca-chart/utils/helpers/chart.helper.mjs +74 -6
  17. package/esm2022/lib/components/ca-chart-manager/ca-chart-manager.component.mjs +108 -0
  18. package/esm2022/lib/components/ca-chart-manager/models/hover-state.model.mjs +2 -0
  19. package/esm2022/lib/components/ca-chart-manager/models/index.mjs +2 -0
  20. package/esm2022/lib/components/ca-chart-manager/services/chart-manager.service.mjs +21 -0
  21. package/esm2022/lib/components/ca-chart-manager/services/index.mjs +2 -0
  22. package/esm2022/lib/components/ca-tooltip-list/ca-tooltip-list.component.mjs +5 -4
  23. package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list-item.model.mjs +1 -1
  24. package/esm2022/lib/components/ca-tooltip-list/models/tooltip-list.model.mjs +1 -1
  25. package/esm2022/public-api.mjs +2 -1
  26. package/fesm2022/ca-components.mjs +527 -129
  27. package/fesm2022/ca-components.mjs.map +1 -1
  28. package/lib/ca-components.module.d.ts +7 -6
  29. package/lib/components/ca-chart/ca-chart.component.d.ts +18 -10
  30. package/lib/components/ca-chart/enums/chart-colors.enum.d.ts +2 -1
  31. package/lib/components/ca-chart/enums/chart-plugin-ids.enum.d.ts +2 -1
  32. package/lib/components/ca-chart/models/chart-annotation.model.d.ts +1 -1
  33. package/lib/components/ca-chart/models/chart-base-dataset.model.d.ts +5 -2
  34. package/lib/components/ca-chart/models/chart-center-label.model.d.ts +11 -0
  35. package/lib/components/ca-chart/models/chart-config.model.d.ts +10 -3
  36. package/lib/components/ca-chart/models/chart-dataset-hover.model.d.ts +5 -0
  37. package/lib/components/ca-chart/models/chart-line-dataset.model.d.ts +0 -3
  38. package/lib/components/ca-chart/models/index.d.ts +2 -0
  39. package/lib/components/ca-chart/utils/constants/chart.constants.d.ts +3 -0
  40. package/lib/components/ca-chart/utils/constants/index.d.ts +1 -0
  41. package/lib/components/ca-chart/utils/helpers/chart.helper.d.ts +7 -1
  42. package/lib/components/ca-chart-manager/ca-chart-manager.component.d.ts +27 -0
  43. package/lib/components/ca-chart-manager/models/hover-state.model.d.ts +4 -0
  44. package/lib/components/ca-chart-manager/models/index.d.ts +1 -0
  45. package/lib/components/ca-chart-manager/services/chart-manager.service.d.ts +10 -0
  46. package/lib/components/ca-chart-manager/services/index.d.ts +1 -0
  47. package/lib/components/ca-tooltip-list/ca-tooltip-list.component.d.ts +1 -1
  48. package/lib/components/ca-tooltip-list/models/tooltip-list-item.model.d.ts +0 -1
  49. package/lib/components/ca-tooltip-list/models/tooltip-list.model.d.ts +1 -3
  50. package/package.json +1 -1
  51. package/public-api.d.ts +1 -0
  52. package/src/assets/ca-components/svg/common/states/ic_alabama.svg +3 -0
  53. package/src/assets/ca-components/svg/common/states/ic_alaska.svg +14 -0
  54. package/src/assets/ca-components/svg/common/states/ic_arizona.svg +3 -0
  55. package/src/assets/ca-components/svg/common/states/ic_arkansas.svg +3 -0
  56. package/src/assets/ca-components/svg/common/states/ic_california.svg +3 -0
  57. package/src/assets/ca-components/svg/common/states/ic_colorado.svg +3 -0
  58. package/src/assets/ca-components/svg/common/states/ic_connecticut.svg +3 -0
  59. package/src/assets/ca-components/svg/common/states/ic_delaware.svg +3 -0
  60. package/src/assets/ca-components/svg/common/states/ic_florida.svg +3 -0
  61. package/src/assets/ca-components/svg/common/states/ic_georgia.svg +3 -0
  62. package/src/assets/ca-components/svg/common/states/ic_hawaii.svg +10 -0
  63. package/src/assets/ca-components/svg/common/states/ic_idaho.svg +3 -0
  64. package/src/assets/ca-components/svg/common/states/ic_illinois.svg +3 -0
  65. package/src/assets/ca-components/svg/common/states/ic_indiana.svg +3 -0
  66. package/src/assets/ca-components/svg/common/states/ic_iowa.svg +3 -0
  67. package/src/assets/ca-components/svg/common/states/ic_kansas.svg +3 -0
  68. package/src/assets/ca-components/svg/common/states/ic_kentucky.svg +3 -0
  69. package/src/assets/ca-components/svg/common/states/ic_louisiana.svg +4 -0
  70. package/src/assets/ca-components/svg/common/states/ic_maine.svg +9 -0
  71. package/src/assets/ca-components/svg/common/states/ic_maryland.svg +7 -0
  72. package/src/assets/ca-components/svg/common/states/ic_massachusetts.svg +7 -0
  73. package/src/assets/ca-components/svg/common/states/ic_michigan.svg +11 -0
  74. package/src/assets/ca-components/svg/common/states/ic_minnesota.svg +4 -0
  75. package/src/assets/ca-components/svg/common/states/ic_mississippi.svg +3 -0
  76. package/src/assets/ca-components/svg/common/states/ic_missouri.svg +3 -0
  77. package/src/assets/ca-components/svg/common/states/ic_montana.svg +3 -0
  78. package/src/assets/ca-components/svg/common/states/ic_nebraska.svg +3 -0
  79. package/src/assets/ca-components/svg/common/states/ic_nevada.svg +3 -0
  80. package/src/assets/ca-components/svg/common/states/ic_new_hampshire.svg +3 -0
  81. package/src/assets/ca-components/svg/common/states/ic_new_jersey.svg +5 -0
  82. package/src/assets/ca-components/svg/common/states/ic_new_mexico.svg +3 -0
  83. package/src/assets/ca-components/svg/common/states/ic_new_york.svg +4 -0
  84. package/src/assets/ca-components/svg/common/states/ic_north_carolina.svg +3 -0
  85. package/src/assets/ca-components/svg/common/states/ic_north_dakota.svg +3 -0
  86. package/src/assets/ca-components/svg/common/states/ic_ohio.svg +4 -0
  87. package/src/assets/ca-components/svg/common/states/ic_oklahoma.svg +3 -0
  88. package/src/assets/ca-components/svg/common/states/ic_oregon.svg +3 -0
  89. package/src/assets/ca-components/svg/common/states/ic_pennsylvania.svg +3 -0
  90. package/src/assets/ca-components/svg/common/states/ic_rhode_island.svg +8 -0
  91. package/src/assets/ca-components/svg/common/states/ic_south_carolina.svg +3 -0
  92. package/src/assets/ca-components/svg/common/states/ic_south_dakota.svg +3 -0
  93. package/src/assets/ca-components/svg/common/states/ic_tennessee.svg +3 -0
  94. package/src/assets/ca-components/svg/common/states/ic_texas.svg +3 -0
  95. package/src/assets/ca-components/svg/common/states/ic_utah.svg +3 -0
  96. package/src/assets/ca-components/svg/common/states/ic_vermont.svg +7 -0
  97. package/src/assets/ca-components/svg/common/states/ic_virginia.svg +4 -0
  98. package/src/assets/ca-components/svg/common/states/ic_washington.svg +15 -0
  99. package/src/assets/ca-components/svg/common/states/ic_west_virginia.svg +3 -0
  100. package/src/assets/ca-components/svg/common/states/ic_wisconsin.svg +4 -0
  101. package/src/assets/ca-components/svg/common/states/ic_wyoming.svg +3 -0
  102. package/esm2022/lib/components/ca-chart/config/ca-base-chart-dataset.config.mjs +0 -10
  103. package/esm2022/lib/components/ca-chart/config/index.mjs +0 -2
  104. package/lib/components/ca-chart/config/ca-base-chart-dataset.config.d.ts +0 -4
  105. package/lib/components/ca-chart/config/index.d.ts +0 -1
@@ -29,13 +29,14 @@ import * as i27 from "./components/ca-right-side-panel/components/ca-right-side-
29
29
  import * as i28 from "./components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component";
30
30
  import * as i29 from "./components/ca-right-side-panel/ca-right-side-panel.component";
31
31
  import * as i30 from "./components/ca-chart/ca-chart.component";
32
- import * as i31 from "./components/ca-dropdown-menu/ca-dropdown-menu.component";
33
- import * as i32 from "./components/ca-upload-files/ca-upload-files.component";
34
- import * as i33 from "./components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component";
35
- import * as i34 from "./components/ca-progress-range/ca-progress-range.component";
36
- import * as i35 from "./components/ca-tooltip-list/ca-tooltip-list.component";
32
+ import * as i31 from "./components/ca-chart-manager/ca-chart-manager.component";
33
+ import * as i32 from "./components/ca-dropdown-menu/ca-dropdown-menu.component";
34
+ import * as i33 from "./components/ca-upload-files/ca-upload-files.component";
35
+ import * as i34 from "./components/ca-right-side-panel/components/ca-right-side-panel-company/ca-right-side-panel-company.component";
36
+ import * as i35 from "./components/ca-progress-range/ca-progress-range.component";
37
+ import * as i36 from "./components/ca-tooltip-list/ca-tooltip-list.component";
37
38
  export declare class CaComponentsLibModule {
38
39
  static ɵfac: i0.ɵɵFactoryDeclaration<CaComponentsLibModule, never>;
39
- static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i20.CaTodoComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i24.CaInputAddressDropdownComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaDropdownMenuComponent, typeof i32.CaUploadFilesComponent, typeof i33.CaRightSidePanelCompanyComponent, typeof i34.CaProgressRangeComponent, typeof i35.CaTooltipListComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaDropdownMenuComponent, typeof i32.CaUploadFilesComponent, typeof i33.CaRightSidePanelCompanyComponent, typeof i34.CaProgressRangeComponent, typeof i35.CaTooltipListComponent, typeof i24.CaInputAddressDropdownComponent]>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CaComponentsLibModule, never, [typeof i1.CommonModule, typeof i2.CaProfileImageComponent, typeof i3.CaRatingReviewComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i20.CaTodoComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i24.CaInputAddressDropdownComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaChartManagerComponent, typeof i32.CaDropdownMenuComponent, typeof i33.CaUploadFilesComponent, typeof i34.CaRightSidePanelCompanyComponent, typeof i35.CaProgressRangeComponent, typeof i36.CaTooltipListComponent], [typeof i2.CaProfileImageComponent, typeof i4.CaAppTooltipV2Component, typeof i5.CaDetailsDropdownComponent, typeof i3.CaRatingReviewComponent, typeof i6.CaFilterComponent, typeof i7.CaInputComponent, typeof i8.CaInputRadiobuttonsComponent, typeof i9.CaInputDropdownComponent, typeof i10.CaMapComponent, typeof i11.CaMapDropdownComponent, typeof i12.CaNoteComponent, typeof i13.CaNoteContainerComponent, typeof i14.CaPayrollListSummaryOverviewComponent, typeof i15.CaPayrollListSummaryOverviewTableComponent, typeof i16.PickupDeliveryBlockComponent, typeof i17.ProgressBarComponent, typeof i18.CaSearchMultipleStatesComponent, typeof i19.CaSpinnerComponent, typeof i21.CaTruckTrailerProgresBarComponent, typeof i22.CaPeriodContentComponent, typeof i23.CaInputNoteComponent, typeof i25.CaMainTableComponent, typeof i26.CaActivityLogListComponent, typeof i27.CaRightSidePanelMenuComponent, typeof i28.CaRightSidePanelTopBarComponent, typeof i29.CaRightSidePanelComponent, typeof i30.CaChartComponent, typeof i31.CaChartManagerComponent, typeof i32.CaDropdownMenuComponent, typeof i33.CaUploadFilesComponent, typeof i34.CaRightSidePanelCompanyComponent, typeof i35.CaProgressRangeComponent, typeof i36.CaTooltipListComponent, typeof i24.CaInputAddressDropdownComponent]>;
40
41
  static ɵinj: i0.ɵɵInjectorDeclaration<CaComponentsLibModule>;
41
42
  }
@@ -1,22 +1,29 @@
1
- import { AfterViewInit, ElementRef, SimpleChanges } from '@angular/core';
2
- import { IChartConfiguration } from './models';
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
2
+ import { IChartConfiguration, IChartDatasetHover } from './models';
3
+ import { ChartManagerService } from '../ca-chart-manager/services';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class CaChartComponent implements AfterViewInit {
6
+ private changeDetector;
7
+ private chartManagerService?;
5
8
  chartCanvas: ElementRef;
9
+ chartId: string;
10
+ set chartDatasetHover(value: IChartDatasetHover | null);
6
11
  set chartConfig(value: IChartConfiguration);
7
- set isDatasetHovered(value: boolean);
12
+ hoveredIndex: EventEmitter<number | null>;
8
13
  private chart;
9
14
  private chartContext;
15
+ private subscription;
10
16
  private plugins?;
11
- private _isDatasetHovered;
12
- private originalChartDataset;
17
+ private areAnimationsCompleated;
18
+ private _hoveredIndex;
13
19
  _chartConfig: IChartConfiguration;
14
20
  isChartDataAvailable: boolean;
15
- constructor();
16
- ngOnChanges(changes: SimpleChanges): void;
21
+ constructor(changeDetector: ChangeDetectorRef, chartManagerService?: ChartManagerService | undefined);
17
22
  ngAfterViewInit(): void;
23
+ ngOnInit(): void;
24
+ private initializeChartManagerService;
18
25
  private initializeAnnotationPlugin;
19
- updateDatasetBackgroundOnHover(dataSetLabel: string, color: string, isDatasetHovered: boolean): void;
26
+ updateDatasetBackgroundOnHover(chartDatasetHover: IChartDatasetHover): void;
20
27
  private createChart;
21
28
  private updateChart;
22
29
  private setChartOptionsProperties;
@@ -26,6 +33,7 @@ export declare class CaChartComponent implements AfterViewInit {
26
33
  private setMultipleYAxis;
27
34
  private resetAnnotations;
28
35
  private setVerticalDashedAnnotationLine;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CaChartComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CaChartComponent, "app-ca-chart", never, { "chartConfig": { "alias": "chartConfig"; "required": false; }; "isDatasetHovered": { "alias": "isDatasetHovered"; "required": false; }; }, {}, never, never, true, never>;
36
+ ngOnDestroy(): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaChartComponent, [null, { optional: true; }]>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaChartComponent, "app-ca-chart", never, { "chartId": { "alias": "chartId"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; "chartConfig": { "alias": "chartConfig"; "required": false; }; }, { "hoveredIndex": "hoveredIndex"; }, never, never, true, never>;
31
39
  }
@@ -2,5 +2,6 @@ export declare const enum ChartColorsStringEnum {
2
2
  WHITE = "#FFFFFF",
3
3
  HOVER_SEGMENT = "#EEEEEE",
4
4
  X_AXIS_LABEL_COLOR = "#919191",
5
- TRANSPARENT = "transparent"
5
+ TRANSPARENT = "transparent",
6
+ BORDER_BOTTOM_LINE_CHART_COLOR = "#DADADA"
6
7
  }
@@ -1,4 +1,5 @@
1
1
  export declare enum ChartPluginIdsStringEnum {
2
2
  HIGHLIGHT_SEGMENT_ON_HOVER = "highlightSegmentOnHover",
3
- HIGHLIGHT_POINT_ON_HOVER = "highlightPointOnHover"
3
+ HIGHLIGHT_POINT_ON_HOVER = "highlightPointOnHover",
4
+ BORDER_BOTTOM_LINE_CHART = "borderBottomLineChart"
4
5
  }
@@ -1,7 +1,7 @@
1
1
  import { EChartAnnotationType, EChartEventProperties } from "../enums";
2
2
  export interface IChartAnnotation {
3
3
  id?: string;
4
- value: number;
4
+ value: number | string;
5
5
  type: EChartAnnotationType;
6
6
  color?: string;
7
7
  borderWidth?: number;
@@ -4,13 +4,16 @@ export interface IBaseDataset {
4
4
  order?: number;
5
5
  label: string;
6
6
  data: number[] | [number, number][];
7
+ hidden?: boolean;
7
8
  borderColor?: string;
8
9
  borderWidth?: number;
9
- backgroundColor?: string | CanvasGradient;
10
+ backgroundColor?: string | string[] | CanvasGradient;
10
11
  color?: string;
12
+ spanGaps?: boolean;
11
13
  colorEdgeValue?: number;
12
14
  color2?: string;
13
15
  fill?: boolean;
14
- yAxisId?: string;
16
+ yAxisID?: string;
15
17
  shiftValue?: number;
18
+ isCurrency?: boolean;
16
19
  }
@@ -0,0 +1,11 @@
1
+ export interface IChartCenterLabel {
2
+ value: string;
3
+ position?: {
4
+ top?: number;
5
+ bottom?: number;
6
+ left?: number;
7
+ right?: number;
8
+ };
9
+ color?: string;
10
+ fontSize?: number;
11
+ }
@@ -1,8 +1,8 @@
1
- import { ChartOptions, ChartType } from 'chart.js';
2
- import { IBaseDataset, IChartData } from '../models';
1
+ import { ChartOptions, ChartTypeRegistry } from 'chart.js';
2
+ import { IBaseDataset, IChartCenterLabel, IChartData } from '../models';
3
3
  import { IChartAnnotation } from './chart-annotation.model';
4
4
  export interface IChartConfiguration {
5
- chartType: ChartType;
5
+ chartType: keyof ChartTypeRegistry;
6
6
  chartData: IChartData<IBaseDataset>;
7
7
  chartOptions: ChartOptions;
8
8
  height: number;
@@ -12,6 +12,13 @@ export interface IChartConfiguration {
12
12
  isStacked?: boolean;
13
13
  showTooltipBackground?: boolean;
14
14
  showXAxisLabels?: boolean;
15
+ verticalyAlignBarChartWithLineCart?: boolean;
16
+ showHighlightPointOnHover?: boolean;
17
+ isDatasetHoverEnabled?: boolean;
18
+ isTooltipItemInSelectedItems?: boolean;
19
+ showBottomLineOnLineChart?: boolean;
15
20
  annotations?: IChartAnnotation[];
16
21
  hasVerticalDashedAnnotation?: boolean;
22
+ isDashboardChart?: boolean;
23
+ centerLabels?: IChartCenterLabel[];
17
24
  }
@@ -0,0 +1,5 @@
1
+ export interface IChartDatasetHover {
2
+ label: string;
3
+ color: string;
4
+ isHoverd: boolean;
5
+ }
@@ -7,8 +7,5 @@ export interface ILineDataset extends IBaseDataset {
7
7
  pointBorderColor?: string;
8
8
  pointBackgroundColor?: string;
9
9
  pointHoverRadius?: number;
10
- spanGaps?: boolean;
11
10
  showLine?: boolean;
12
- fill?: boolean;
13
- yAxisID?: string;
14
11
  }
@@ -3,3 +3,5 @@ export * from './chart-base-dataset.model';
3
3
  export * from './chart-line-dataset.model';
4
4
  export * from './chart-config.model';
5
5
  export * from './chart-annotation.model';
6
+ export * from './chart-dataset-hover.model';
7
+ export * from './chart-center-label.model';
@@ -0,0 +1,3 @@
1
+ export declare class ChartConstants {
2
+ static STRING_EMPTY: string;
3
+ }
@@ -0,0 +1 @@
1
+ export * from './chart.constants';
@@ -4,12 +4,18 @@ import { IBaseDataset, IChartData } from '../../models';
4
4
  export declare class ChartHelper {
5
5
  static hexToRgba(colorHex: string, opacity?: number): string;
6
6
  static rgbToRgba(rgb: string | undefined, opacity: number): string;
7
+ static changeOpacityOfRgbOrRgba(color: string, opacity: number): string;
7
8
  static calculateMinValue(data: number[]): number;
8
9
  static calculateMaxValue(data: number[]): number;
9
- static createGradient(chartContext: CanvasRenderingContext2D, chartCanvas: ElementRef, color: string, color2: string): CanvasGradient;
10
+ static createGradient(chartContext: CanvasRenderingContext2D, chartCanvas: ElementRef, color: string, color2: string, opacityColor1?: number, opacityColor2?: number, areColorsInRgbaFormat?: boolean): CanvasGradient;
10
11
  static createGradientWithShiftValue(chartContext: CanvasRenderingContext2D, chartHeight: number, color: string, color2: string, shiftValue: number, hasFade?: boolean): CanvasGradient;
11
12
  static calculateTickPositions(xScale: CategoryScale | LinearScale): number[];
12
13
  static highlightSegment(ctx: CanvasRenderingContext2D, xScale: CategoryScale | LinearScale, chartArea: ChartArea, chartHeight: number, index: number): void;
14
+ static drawDoughnutLegend(chart: Chart, position: {
15
+ indx: number;
16
+ offsetTop: number;
17
+ }, text: string, fontSize?: number, color?: string): void;
13
18
  static highlightPoint(ctx: CanvasRenderingContext2D, chart: Chart, index: number, chartData: IChartData<IBaseDataset>): void;
14
19
  private static getSegmentPosition;
20
+ static convertRgbToRgba(colorValue: string, alpha?: number): string;
15
21
  }
@@ -0,0 +1,27 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { ChartManagerService } from './services/chart-manager.service';
3
+ import { IChartConfiguration, IChartDatasetHover } from '../ca-chart/models';
4
+ import { ITooltipList } from '../ca-tooltip-list/models';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CaChartManagerComponent {
7
+ private chartManagerService;
8
+ private cdr;
9
+ chartConfigs: IChartConfiguration[];
10
+ tooltipLables: string[];
11
+ chartDatasetHover: IChartDatasetHover | null;
12
+ chartManagerContainer: ElementRef;
13
+ tooltipContainer: ElementRef;
14
+ hoveredIndex: number | null;
15
+ hoveredChartId: string | null;
16
+ tooltipList: ITooltipList | null;
17
+ tooltipPosition: {
18
+ x: number;
19
+ y: number;
20
+ };
21
+ constructor(chartManagerService: ChartManagerService, cdr: ChangeDetectorRef);
22
+ trackByIndex(index: number): number;
23
+ onMouseMove(event: MouseEvent): void;
24
+ private updateTooltipList;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaChartManagerComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaChartManagerComponent, "app-ca-chart-manager", never, { "chartConfigs": { "alias": "chartConfigs"; "required": false; }; "tooltipLables": { "alias": "tooltipLables"; "required": false; }; "chartDatasetHover": { "alias": "chartDatasetHover"; "required": false; }; }, {}, never, never, true, never>;
27
+ }
@@ -0,0 +1,4 @@
1
+ export interface IHoverState {
2
+ index: number | null;
3
+ chartId: string | null;
4
+ }
@@ -0,0 +1 @@
1
+ export * from './hover-state.model';
@@ -0,0 +1,10 @@
1
+ import { BehaviorSubject } from 'rxjs';
2
+ import { IHoverState } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChartManagerService {
5
+ hoverStateSubject: BehaviorSubject<IHoverState>;
6
+ hoverState$: import("rxjs").Observable<IHoverState>;
7
+ setHoverState(index: number | null, chartId: string | null): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartManagerService, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChartManagerService>;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './chart-manager.service';
@@ -2,7 +2,7 @@ import { ITooltipList } from './models';
2
2
  import { CaTooltipListConstants } from './utils/constants';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class CaTooltipListComponent {
5
- tooltipList: ITooltipList;
5
+ tooltipList: ITooltipList | null;
6
6
  constants: typeof CaTooltipListConstants;
7
7
  truncateLength: number;
8
8
  get isSingleItemSelected(): boolean;
@@ -1,5 +1,4 @@
1
1
  export interface ITooltipListItem {
2
- id: string;
3
2
  label: string;
4
3
  value: number;
5
4
  isCurrency: boolean;
@@ -1,8 +1,6 @@
1
1
  import { ITooltipListItem } from './tooltip-list-item.model';
2
2
  export interface ITooltipList {
3
- singleDate?: string;
4
- startDate?: string;
5
- endDate?: string;
3
+ date: string;
6
4
  selectedItems: ITooltipListItem[];
7
5
  otherItems?: ITooltipListItem[];
8
6
  showPercentage?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ca-components",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.13",
6
6
  "@angular/core": "^18.2.13",
package/public-api.d.ts CHANGED
@@ -49,3 +49,4 @@ export * from './lib/components/ca-sort-dropdown/models';
49
49
  export * from './lib/components/ca-sort-dropdown/enums';
50
50
  export * from './lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component';
51
51
  export * from './lib/components/ca-modal-button/ca-modal-button.component';
52
+ export * from './lib/components/ca-chart-manager/ca-chart-manager.component';
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.47039 18.6017C5.38414 18.0895 5.29789 17.5769 5.21164 17.0639C5.00839 15.8398 4.80551 14.6162 4.60301 13.3929C4.59278 13.3365 4.58676 13.2793 4.58501 13.2219C4.51151 9.63388 4.43876 6.04734 4.36675 2.4623C4.3686 2.4252 4.35999 2.38834 4.34188 2.35592C4.32378 2.32349 4.29692 2.29681 4.26438 2.27892C4.16395 2.18697 4.07516 2.08307 4 1.96954C4.05124 1.95014 4.10389 1.93472 4.1575 1.92341C5.29602 1.78729 6.43566 1.65904 7.57304 1.51391C8.76781 1.36091 9.96257 1.19665 11.1517 1.02903C11.5646 0.971652 11.5635 0.961527 11.6951 1.36653C12.4451 3.65781 13.197 5.94834 13.9507 8.23812C14.037 8.43293 14.1377 8.62097 14.2523 8.80062C14.3029 8.8985 14.3333 9.00875 14.385 9.10663C14.436 9.21181 14.5007 9.30979 14.5774 9.39801C14.6719 9.49701 14.7788 9.57463 14.79 9.72989C14.79 9.76814 14.8508 9.80189 14.8958 9.85251C14.8811 9.95264 14.8643 10.0775 14.844 10.2091L15.1061 10.3216C15.2186 10.3734 15.2063 10.451 15.1421 10.5331C15.1005 10.586 15.0623 10.6591 15.006 10.6805C14.7518 10.7806 14.781 10.9843 14.8215 11.1789C14.8684 11.3901 14.8397 11.611 14.7405 11.8033C14.6505 11.9709 14.7405 12.107 14.7563 12.2432C14.7888 12.438 14.8821 12.6176 15.0229 12.7562C15.0849 12.8202 15.1288 12.8996 15.1499 12.9862C15.1711 13.0728 15.1688 13.1635 15.1433 13.2489C15.1208 13.4245 15.1208 13.6021 15.1433 13.7777C15.1401 13.8533 15.131 13.9285 15.1163 14.0027C15.1163 14.0263 15.0904 14.0544 15.0983 14.0713C15.152 14.25 15.2412 14.416 15.3604 14.5596C15.4632 14.6796 15.5564 14.8075 15.6394 14.9421C12.9675 15.4292 10.3237 15.7993 7.70805 16.1211C7.67655 16.2662 7.66192 16.381 7.62704 16.4901C7.60897 16.5332 7.60698 16.5813 7.62144 16.6257C7.63589 16.6701 7.66583 16.7078 7.7058 16.732C7.89591 16.9296 8.12046 17.0908 8.36843 17.2079C8.41343 17.2236 8.44155 17.3372 8.44605 17.4081C8.44157 17.4809 8.42364 17.5522 8.39318 17.6185C8.32568 17.8131 8.37405 17.9166 8.57318 17.992C8.58547 17.9966 8.59718 18.0026 8.60806 18.01C8.49556 18.1911 8.38305 18.3475 8.28743 18.5151C8.30369 18.5316 8.32139 18.5467 8.3403 18.5601C7.88779 18.8066 7.38899 18.9564 6.87554 19C6.92054 18.9381 6.93966 18.8774 7.04204 18.9359C7.14441 18.9944 7.42904 18.8706 7.52579 18.7244C7.38292 18.6209 7.24341 18.5072 7.09041 18.415C7.02295 18.3692 6.96886 18.3064 6.93368 18.2328C6.89849 18.1593 6.88348 18.0777 6.89016 17.9965C6.91176 17.9416 6.92169 17.8829 6.91932 17.824C6.91695 17.7651 6.90233 17.7074 6.87639 17.6544C6.85046 17.6015 6.81378 17.5546 6.76869 17.5166C6.72361 17.4787 6.6711 17.4505 6.61453 17.434C6.59232 17.424 6.57089 17.4123 6.55041 17.3991C6.50878 17.4441 6.46603 17.4869 6.42778 17.5319C6.40978 17.5521 6.3839 17.5825 6.3884 17.6027C6.39698 17.7637 6.37483 17.9248 6.32315 18.0775C6.31586 18.1909 6.32649 18.3048 6.35465 18.415C6.39515 18.6321 6.35465 18.7019 6.1454 18.7525C6.11526 18.6989 6.06984 18.6555 6.01494 18.6279C5.96003 18.6002 5.89814 18.5896 5.83715 18.5972C5.71508 18.6057 5.59263 18.6072 5.47039 18.6017Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.93199 16.8535V16.8577L4.92936 16.8586C4.91164 16.8646 4.89286 16.87 4.87454 16.8752C4.76302 16.9071 4.64966 16.9396 4.64966 17.1359C4.55641 16.9778 4.46658 17.0151 4.36373 17.0578C4.34873 17.064 4.33345 17.0704 4.31785 17.0763C4.2545 17.0953 4.19569 17.1271 4.14502 17.1696C4.09436 17.2122 4.05289 17.2646 4.02315 17.3237C4.0063 17.3722 3.99461 17.4224 3.98828 17.4733C4.00948 17.4733 4.03565 17.4762 4.06156 17.4791C4.11262 17.4849 4.16267 17.4905 4.17163 17.4733C4.24401 17.3375 4.36709 17.3381 4.48043 17.3387C4.56611 17.3391 4.64623 17.3395 4.69466 17.2809L4.7419 16.9626L4.76617 16.9901C4.78347 17.0099 4.79914 17.0277 4.81389 17.0425C4.82831 17.0569 4.84374 17.0703 4.8747 17.0972L4.93199 17.1471L4.93275 16.862L5.06661 17.0116C5.20414 17.0116 5.25253 16.9094 5.3047 16.7992C5.3481 16.7075 5.39412 16.6102 5.49628 16.5617L5.44454 16.7518L5.49628 16.7968L6.22403 16.4189L6.24203 16.4965C6.29013 16.4677 6.33693 16.4387 6.38362 16.4097C6.48105 16.3493 6.57799 16.2892 6.6852 16.2321C6.8438 16.1478 6.8573 16.1107 6.73807 15.9656L7.15425 15.7406C7.15658 15.737 7.15945 15.731 7.16296 15.7236C7.17471 15.699 7.19368 15.6592 7.22399 15.6427C7.26514 15.6207 7.31123 15.6039 7.35717 15.5872C7.51088 15.5311 7.66287 15.4756 7.62217 15.2288C7.61992 15.2164 7.64467 15.1962 7.66154 15.1849C7.73783 15.1305 7.81442 15.0764 7.89104 15.0223C8.07409 14.893 8.25777 14.7632 8.43765 14.6293C8.49387 14.5741 8.54402 14.513 8.58725 14.4471C8.61881 14.408 8.65283 14.3698 8.68712 14.3313C8.72977 14.2834 8.77295 14.235 8.81221 14.1839L8.82686 14.1652C8.876 14.1029 8.93257 14.0311 8.93257 13.9668C8.93145 13.9184 8.82009 13.8644 8.74922 13.8318C8.69533 13.8217 8.64002 13.8217 8.58613 13.8318C8.57895 13.8051 8.57704 13.7772 8.5805 13.7497C8.60821 13.651 8.66005 13.5608 8.73133 13.4872C8.80261 13.4135 8.8911 13.3588 8.98881 13.3279C9.01832 13.3187 9.04481 13.2799 9.06518 13.2502C9.06965 13.2436 9.07382 13.2375 9.07767 13.2323C9.0858 13.2212 9.09214 13.2069 9.09842 13.1928C9.10865 13.1699 9.11874 13.1473 9.13616 13.1389C9.27789 13.0703 9.29363 12.9893 9.19915 12.869C9.21708 12.8534 9.23925 12.8394 9.26165 12.8253C9.30248 12.7995 9.34409 12.7733 9.36225 12.7362C9.48286 12.493 9.65117 12.2765 9.85716 12.0996C9.92072 12.0377 9.99782 11.9914 10.0824 11.9645C10.1669 11.9375 10.2565 11.9307 10.3442 11.9444L10.5242 12.2188L10.1462 12.1772L9.85266 12.3853C9.83926 12.4404 9.82691 12.4923 9.81513 12.5419C9.78144 12.6838 9.7524 12.806 9.71656 12.9252C9.70354 12.9665 9.68198 13.0053 9.66033 13.0442C9.63896 13.0826 9.61749 13.1212 9.60408 13.1625C9.59058 13.2042 9.60071 13.284 9.6277 13.3009C9.67989 13.3231 9.73777 13.3282 9.79305 13.3155C9.83381 13.3031 9.87194 13.2833 9.90553 13.257L9.9359 13.302L9.51297 13.6395C9.57108 13.6968 9.648 13.7311 9.72949 13.7361C9.81098 13.7411 9.89151 13.7163 9.95615 13.6665C10.1451 13.5293 10.3182 13.3716 10.4724 13.1963C10.5375 13.1488 10.6091 13.1109 10.685 13.0838C10.7373 13.0575 10.8011 13.0703 10.8634 13.0828C10.9686 13.104 11.0695 13.1243 11.1034 12.9533L11.2069 13.0084L11.2306 12.9826L11.1181 12.8228L11.2778 12.5731L11.0596 12.6058L11.2013 12.4427L11.0236 12.3651L11.2013 12.1322L11.235 12.1468L11.1957 12.3437L11.2306 12.3729L11.4555 12.1705L11.5061 12.2481L11.766 12.1536L11.9201 12.3651L11.8537 12.4112L12.2193 12.491L12.1495 12.6035L12.4442 12.7621L12.5567 12.5484C12.5654 12.5901 12.5705 12.6303 12.575 12.6657C12.5832 12.7304 12.5893 12.7785 12.6118 12.788C12.6714 12.8146 12.7258 12.8546 12.7803 12.8946C12.9027 12.9845 13.0251 13.0744 13.2057 13.0129C13.4314 12.9503 13.6716 12.9657 13.8873 13.0568C13.9234 13.0696 13.971 13.0522 14.0258 13.0323C14.0531 13.0223 14.0821 13.0118 14.1123 13.0039C14.1089 13.0377 14.1022 13.1029 14.0954 13.1659C14.335 13.3234 14.5825 13.4021 14.8221 13.1153L14.8704 13.1614L14.7984 13.5135C15.1255 13.5923 15.3462 13.8263 15.5643 14.0575C15.7226 14.2255 15.8797 14.392 16.0751 14.4966L16.3833 14.4234C16.3736 14.4016 16.3646 14.3803 16.3558 14.3596C16.3361 14.313 16.3174 14.2687 16.2933 14.2244C16.2681 14.178 16.2382 14.1345 16.2082 14.0911C16.1967 14.0744 16.1853 14.0578 16.1741 14.041L15.9626 13.8667L15.7467 13.9522C15.7614 13.7555 15.6451 13.6405 15.5291 13.5258C15.4773 13.4746 15.4255 13.4234 15.3856 13.365C15.3502 13.3133 15.3019 13.2684 15.2531 13.2228C15.1234 13.102 14.9896 12.9774 15.0819 12.7126L14.632 12.8577C14.632 12.8566 14.5656 12.8004 14.5195 12.8116C14.2445 12.8809 14.2452 12.7188 14.2461 12.5409L14.2462 12.5113V3.22712C14.0458 3.12548 13.855 3.00616 13.6759 2.87055C13.567 2.74214 13.4164 2.65612 13.2504 2.62753C13.0845 2.59895 12.9138 2.62963 12.7682 2.71421C12.7042 2.75253 12.6299 2.76979 12.5556 2.76353C12.4813 2.75728 12.4109 2.72782 12.3542 2.67934C12.1737 2.54607 11.9498 2.48509 11.7266 2.50837C11.5948 2.49932 11.4647 2.47324 11.3397 2.43075C11.2557 2.4032 11.1737 2.36975 11.0944 2.33065C11.0678 2.31811 11.0422 2.30344 11.018 2.28678L10.9877 2.26755C10.7865 2.13938 10.5857 2.01149 10.333 2.1743C10.3127 2.18442 10.2655 2.19567 10.2565 2.18442C10.1677 2.0703 10.0829 2.10861 9.99759 2.14711C9.96183 2.16326 9.926 2.17944 9.88978 2.18442C9.78116 2.19145 9.6722 2.19145 9.56358 2.18442L9.6007 2.0337C9.44329 1.99168 9.36427 1.97059 9.34156 1.92277C9.31867 1.87456 9.35298 1.7992 9.42186 1.64789C9.3241 1.64664 9.22692 1.63265 9.13278 1.60627C9.05395 1.57485 8.96844 1.56394 8.88424 1.57456C8.80005 1.58519 8.71993 1.61699 8.65137 1.66701C8.5827 1.68967 8.50857 1.68967 8.4399 1.66701C8.41066 1.66139 8.36679 1.5894 8.37579 1.56465C8.4613 1.34375 8.33307 1.32646 8.22456 1.31182C8.21317 1.31029 8.202 1.30878 8.19132 1.30707L7.87863 1.71425L7.82688 1.68163L7.79202 1.50166C7.80192 1.49763 7.81218 1.49455 7.82197 1.49161C7.84223 1.48554 7.86053 1.48005 7.86962 1.46792C7.90113 1.4238 7.92934 1.37748 7.9577 1.33089C7.96984 1.31095 7.98201 1.29096 7.99448 1.27108L7.52094 1C7.39359 1.20826 7.23758 1.39758 7.05751 1.5624C6.84445 1.66924 6.61718 1.745 6.38263 1.78737L6.36463 1.74575L6.431 1.65351C6.2562 1.73952 6.12598 1.88316 5.99714 2.02528C5.81424 2.22704 5.63411 2.42573 5.33319 2.45213L5.27807 2.33065C5.26064 2.35626 5.2441 2.37963 5.22851 2.40167C5.19485 2.44923 5.16542 2.49082 5.14084 2.53536C4.93899 2.79593 4.8035 3.10165 4.74604 3.42621C4.71878 3.58927 4.64031 3.73941 4.522 3.85489C4.4037 3.97037 4.25169 4.04517 4.08802 4.06847C3.94003 4.08745 3.79153 4.10232 3.65288 4.11621C3.58604 4.12291 3.52148 4.12938 3.46038 4.13596L3.32653 4.75911L3.39964 4.64663C3.44293 4.77274 3.50596 4.89119 3.58636 4.99756C3.77771 5.16798 3.97903 5.32686 4.18926 5.47336C4.27475 5.54107 4.34478 5.62629 4.39463 5.72329C4.44449 5.82029 4.47303 5.92683 4.47833 6.03576C4.48175 6.06053 4.4907 6.08422 4.50453 6.10505C4.51836 6.12589 4.5367 6.14334 4.5582 6.15612C4.65322 6.19136 4.75287 6.21258 4.85402 6.21911C4.97354 6.22351 5.09355 6.22217 5.22494 6.2207C5.29498 6.21992 5.36863 6.21911 5.44679 6.21911C5.22481 6.51323 5.25253 6.63103 5.53645 6.78972L5.25895 6.85462C5.3073 6.89169 5.36995 6.90567 5.43106 6.9193C5.54054 6.94372 5.64509 6.96704 5.65376 7.12008L5.43892 7.05146L5.30844 7.2978C5.23219 7.29242 5.15774 7.28654 5.08453 7.28077C4.91264 7.2672 4.74744 7.25416 4.58182 7.24943C4.43784 7.24493 4.3906 7.18981 4.41984 7.05034C4.43391 6.98146 4.44408 6.91161 4.4542 6.84207C4.45944 6.80607 4.46471 6.76993 4.47046 6.73427C4.2455 6.66453 3.55262 6.92998 3.57061 7.08071L3.71459 7.19319C3.69024 7.19855 3.66816 7.20589 3.64869 7.21236C3.61509 7.22352 3.58924 7.2321 3.57286 7.22356C3.3299 7.09196 3.21742 7.22806 3.10494 7.41365C3.09144 7.43615 3.06445 7.46877 3.0487 7.46877C2.92424 7.44989 2.86505 7.52382 2.80624 7.59727C2.7529 7.66387 2.69988 7.73009 2.59878 7.72635L2.59766 7.79609L3.39177 8.07954L3.19605 8.25726C3.21491 8.3193 3.23093 8.37916 3.24651 8.43741C3.26624 8.51115 3.28528 8.58231 3.30853 8.65206C3.32428 8.69931 3.36477 8.76342 3.40527 8.77242C3.4673 8.78669 3.52763 8.8084 3.58766 8.83C3.74531 8.88674 3.90093 8.94274 4.08015 8.86128C4.18463 8.79965 4.30566 8.77197 4.42654 8.78204C4.54742 8.79211 4.6622 8.83945 4.75504 8.91752L4.6538 8.76229L4.70667 8.7218L4.88664 8.96026C4.9963 8.85688 5.11158 8.75962 5.23195 8.66894C5.3588 8.59424 5.49029 8.52774 5.62563 8.46984C5.6343 8.49118 5.64919 8.51537 5.66488 8.54088C5.70216 8.60146 5.74399 8.66944 5.71787 8.72405C5.692 8.77814 5.62298 8.81693 5.55001 8.85794C5.51827 8.87577 5.48579 8.89403 5.45579 8.91414C5.59902 8.98755 5.63823 9.1265 5.67946 9.2726C5.69003 9.31007 5.70074 9.34801 5.71337 9.38544C5.74865 9.46441 5.75322 9.5537 5.72618 9.63587C5.69914 9.71803 5.64244 9.78715 5.56715 9.82974C5.42825 9.87888 5.28133 9.90139 5.13409 9.8961C5.0891 9.87923 5.05761 9.92197 5.02836 9.96809C4.81915 10.2977 4.78315 10.3044 4.44571 10.1312C4.37328 10.1035 4.29318 10.1035 4.22075 10.1312C4.19542 10.1404 4.18319 10.1863 4.16975 10.2366C4.1635 10.2601 4.15698 10.2845 4.14876 10.3067C3.96586 10.3538 3.98713 10.4826 4.00799 10.6089C4.01651 10.6604 4.02496 10.7116 4.01941 10.7566C3.89558 10.8099 3.79225 10.9017 3.72477 11.0185C3.65729 11.1352 3.62926 11.2705 3.64485 11.4045L3.53237 11.4382L3.43901 11.68L3.53237 11.6969L3.68197 12.0591L3.97779 12.0962L3.83607 12.2256L4.02279 12.2469L3.77758 12.6001C3.81804 12.5978 3.8586 12.5978 3.89906 12.6001C3.91262 12.7267 4.00107 12.7869 4.08927 12.847C4.15471 12.8915 4.22001 12.9359 4.2545 13.0073C4.26299 13.0266 4.27034 13.0482 4.27763 13.0697C4.29544 13.1221 4.31287 13.1734 4.3456 13.1862C4.44686 13.2184 4.55489 13.223 4.65852 13.1995C4.76215 13.1759 4.85761 13.1251 4.935 13.0523C4.96471 13.0332 4.96773 12.9799 4.97092 12.9236C4.9728 12.8904 4.97473 12.8562 4.98225 12.8273C5.00026 12.777 5.02285 12.7285 5.04973 12.6822C5.05719 12.7104 5.05499 12.7373 5.05299 12.7619C5.05106 12.7855 5.04932 12.8069 5.05648 12.8251C5.09217 12.9164 5.13283 13.006 5.17359 13.0957C5.19703 13.1473 5.22063 13.1993 5.2432 13.2514L5.25465 13.2782C5.29961 13.3824 5.34135 13.4791 5.2522 13.6046C5.17796 13.7092 5.18921 13.8363 5.37818 13.8037L5.24883 14.2142C5.32017 14.218 5.3915 14.2065 5.45804 14.1805C5.57336 14.1085 5.68095 14.0252 5.78471 13.9449C5.8236 13.9148 5.86206 13.8851 5.90009 13.8565L6.13067 14.0748L6.21953 13.9623L6.5851 14.4516C6.60118 14.3754 6.59277 14.3015 6.58506 14.2338C6.57069 14.1075 6.55878 14.0029 6.71332 13.9465C6.74594 14.1625 6.81906 14.2514 6.95741 14.185C7.04812 14.1415 7.13642 14.0941 7.22483 14.0466C7.27105 14.0218 7.31794 13.9967 7.36459 13.9724C7.16341 14.3039 7.06442 14.6873 7.08001 15.0747C7.04747 15.0996 7.01692 15.1225 6.98828 15.144C6.74411 15.3274 6.63915 15.4063 6.63009 15.681C6.47848 15.7048 6.3339 15.7614 6.20645 15.8469C6.079 15.9324 5.97176 16.0447 5.89221 16.1759C5.87899 16.2628 5.87899 16.3511 5.89221 16.438C5.88141 16.438 5.86467 16.4405 5.84531 16.4433C5.79216 16.4512 5.71929 16.462 5.69537 16.4324C5.5424 16.2389 5.38268 16.3311 5.2702 16.4324C5.14572 16.5623 5.03368 16.7047 4.9365 16.8562L4.93199 16.8535ZM4.9365 16.8562L4.93275 16.862L4.93199 16.8613V16.8577L4.9365 16.8562ZM5.98783 6.88387L5.98443 6.88675C6.04016 6.71599 5.94203 6.70301 5.84341 6.68995C5.78749 6.68255 5.73141 6.67513 5.70314 6.6389L5.71337 6.62854C5.74093 6.66543 5.79684 6.6728 5.85256 6.68015C5.95143 6.6932 6.0497 6.70617 5.98783 6.88387ZM4.28037 12.464L4.31973 12.3999L4.17014 12.3189C4.17576 12.3032 4.17576 12.2886 4.17576 12.2739L4.59081 12.392L4.59021 12.3933L4.20093 12.2822C4.19531 12.2968 4.19531 12.3126 4.19531 12.3272L4.34828 12.4127L4.3434 12.4207L4.28037 12.464ZM4.41982 12.4025L4.49295 12.6001L4.50719 12.5699L4.43939 12.3891L4.41982 12.4025Z" fill="black"/>
3
+ <path d="M15.9648 13.8215L16.1797 13.9981L16.3968 14.0307L16.4676 14.3153L16.8174 14.5223L16.6589 13.7113C16.7678 13.9069 16.8552 14.1033 16.9421 14.2986C16.9601 14.3391 16.9781 14.3795 16.9963 14.4199C17.0168 14.4553 17.0453 14.4853 17.0795 14.5077C17.141 14.5465 17.2003 14.5885 17.2572 14.6337C17.3827 14.7414 17.463 14.8924 17.4822 15.0566C17.4883 15.1245 17.5016 15.1918 17.5166 15.2674C17.5237 15.3033 17.5312 15.3411 17.5384 15.3817C17.6999 15.3716 17.7658 15.4967 17.8358 15.6296C17.8594 15.6744 17.8835 15.7201 17.9119 15.7618L17.8963 15.7467C17.7199 15.5755 17.5518 15.4124 17.2798 15.4626L17.3742 15.6572L17.1335 15.6156L17.2044 15.9103C17.1954 16.032 17.1876 16.1315 17.1798 16.2309L17.1796 16.2331L17.237 16.2421L17.3731 15.8226C17.4687 15.9396 17.5441 15.9902 17.6723 15.8653C17.7103 15.8296 17.7853 15.8323 17.8763 15.8356C17.9228 15.8373 17.9734 15.8391 18.0255 15.8361L17.8455 16.1893L18.0368 16.3546L18.129 16.1836C18.1812 16.2567 18.1472 16.3274 18.1136 16.3974C18.0711 16.4858 18.0292 16.573 18.1616 16.6628C18.1725 16.6365 18.1829 16.6106 18.1927 16.5862C18.2092 16.545 18.2242 16.5077 18.2369 16.4795C18.2493 16.452 18.2637 16.425 18.2782 16.3979C18.2875 16.3805 18.2968 16.3632 18.3056 16.3456L18.3404 16.3681L18.1976 16.9305C18.4372 16.7618 18.5474 16.8484 18.6318 17.2038C18.6866 17.1976 18.7397 17.1804 18.7878 17.1533C18.8359 17.1262 18.8781 17.0896 18.9118 17.0459C18.9455 17.0021 18.97 16.952 18.9839 16.8986C18.9978 16.8451 19.0009 16.7894 18.9928 16.7348C18.9853 16.6156 18.9872 16.496 18.9984 16.3771C18.9984 16.3684 18.9987 16.3589 18.999 16.3491C19.0003 16.3069 19.0017 16.2588 18.9816 16.2432C18.8618 16.1466 18.7317 16.0636 18.5935 15.9958C18.3347 15.879 18.1303 15.6678 18.0221 15.4053C17.8295 14.9823 17.6155 14.5693 17.381 14.168C17.2314 13.9703 17.063 13.7876 16.8782 13.6224C16.8502 13.5845 16.8286 13.5424 16.8141 13.4976C16.7899 13.4413 16.766 13.3851 16.7421 13.3288C16.7182 13.2726 16.6943 13.2164 16.6701 13.1602C16.6169 13.1858 16.5617 13.206 16.5106 13.2247C16.4093 13.2618 16.324 13.293 16.3023 13.3491C16.2346 13.5342 16.118 13.6975 15.9648 13.8215Z" fill="black"/>
4
+ <path d="M16.6203 15.2894L16.5315 15.5087C16.5224 15.242 16.4103 14.9893 16.2187 14.8035C16.205 14.7687 16.2003 14.731 16.2048 14.6939C16.2093 14.6568 16.223 14.6214 16.2446 14.5909C16.2699 14.58 16.2961 14.5631 16.3228 14.5459C16.4148 14.4864 16.5139 14.4224 16.6124 14.5819C16.6201 14.5937 16.6433 14.5952 16.6676 14.5968C16.6826 14.5977 16.6979 14.5987 16.7103 14.6021L16.7136 14.6031C16.8088 14.6307 16.8865 14.6533 16.8509 14.799C16.8483 14.9139 16.867 15.0283 16.906 15.1364L16.7047 15.0892C16.8355 15.2208 16.9253 15.3876 16.9632 15.5693C17.0011 15.751 16.9856 15.9398 16.9184 16.1128C16.8217 15.8439 16.7249 15.5762 16.6203 15.2894Z" fill="black"/>
5
+ <path d="M9.09223 14.7576L8.92969 14.6541C9.01794 14.5965 9.10077 14.531 9.17715 14.4584C9.22957 14.3761 9.29189 14.3005 9.36273 14.2334L9.32113 14.3808L9.53258 14.4932L9.1726 14.7956L9.33916 14.813L9.41341 15.1223L9.20644 15.1729L9.25031 15.2314L8.96911 15.5205L8.91062 15.417L8.67442 15.7387L8.62717 15.7083L8.70928 15.543L8.4562 15.5587V15.507L8.53268 15.4598C8.51431 15.438 8.4915 15.4163 8.46844 15.3944C8.41529 15.3439 8.3608 15.2921 8.35609 15.2348C8.34147 15.0604 8.5878 14.9682 8.74077 15.0987C8.73345 15.032 8.72731 14.9747 8.72149 14.9205L8.7149 14.8591L8.90162 14.8693L8.88137 14.8389L9.09223 14.7576Z" fill="black"/>
6
+ <path d="M18.0981 17.2938L17.8507 16.9958L17.8214 17.0306L17.6437 16.8057C17.619 16.6516 17.5908 16.4761 17.5605 16.2815L17.3906 16.34L17.4874 16.0408C17.4969 16.0408 17.5071 16.0402 17.5178 16.0395C17.5852 16.0354 17.6685 16.0303 17.6831 16.1769C17.6831 16.2033 17.7168 16.2281 17.747 16.2503C17.7542 16.2556 17.7612 16.2608 17.7674 16.2658C17.8889 16.3614 17.9845 16.4637 17.9316 16.6392C17.9238 16.6651 17.9643 16.7213 17.9958 16.7416C18.1683 16.8491 18.143 16.9987 18.1167 17.1544C18.1089 17.2006 18.101 17.2475 18.0981 17.2938Z" fill="black"/>
7
+ <path d="M1.13017 9.73225C1.09538 9.70746 1.06625 9.67557 1.04472 9.63867C1.03954 9.65075 1.03288 9.66272 1.0263 9.67456C1.01143 9.70129 0.99695 9.72732 1.00085 9.75228C0.995966 9.83667 1.0122 9.92095 1.04809 9.99749C1.06091 10.0167 1.13246 9.99943 1.19373 9.98464C1.2185 9.97865 1.24159 9.97308 1.25843 9.97049C1.27675 9.96767 1.29694 9.96209 1.31712 9.95652C1.36134 9.94431 1.40546 9.93213 1.4294 9.94912C1.60937 10.074 1.77922 10.2112 1.91644 10.3237C1.94589 10.3109 1.97619 10.2979 2.00705 10.2848C2.07638 10.2552 2.14853 10.2244 2.22014 10.1909C2.25696 10.1706 2.29229 10.1477 2.32587 10.1223C2.31504 10.1135 2.3041 10.1024 2.29303 10.0911C2.26733 10.0649 2.24091 10.038 2.21339 10.038C2.11313 10.0399 2.01413 10.0155 1.92629 9.96709C1.83844 9.91873 1.76484 9.84815 1.71285 9.7624C1.68148 9.73783 1.64437 9.72162 1.60502 9.71532C1.56567 9.70903 1.52536 9.71285 1.48789 9.72641C1.45393 9.75232 1.41484 9.77069 1.37323 9.78035C1.33162 9.79001 1.28843 9.79073 1.24653 9.78243C1.20462 9.77413 1.16496 9.75703 1.13017 9.73225Z" fill="black"/>
8
+ <path d="M3.64069 12.8227L3.68793 13.1298C3.29762 13.2558 3.05579 13.1827 2.91406 12.8778C3.01571 12.8944 3.1081 12.8509 3.19979 12.8077C3.33843 12.7424 3.4755 12.6779 3.64069 12.8227Z" fill="black"/>
9
+ <path d="M17.0039 15.1701L17.0038 15.1691C16.9644 14.9323 16.925 14.6951 16.8828 14.4688L17.1539 14.642C17.1514 14.7295 17.1675 14.8165 17.2011 14.8973C17.3878 15.1673 17.3237 15.2977 17.056 15.4811C17.0386 15.3784 17.0212 15.274 17.0039 15.1701Z" fill="black"/>
10
+ <path d="M3.39458 17.8871L3.30009 17.9995L3.44182 17.9692L3.46319 18.0096L2.78156 18.3752L2.74219 18.2976C2.76233 18.29 2.78473 18.284 2.80717 18.2781C2.85735 18.2648 2.90776 18.2515 2.93341 18.2189C2.98532 18.1384 3.02547 18.0509 3.05264 17.959C3.05795 17.9457 3.0603 17.929 3.06257 17.9127C3.06607 17.8878 3.06937 17.8642 3.08301 17.8567C3.13003 17.8307 3.18347 17.8186 3.2371 17.8218C3.29239 17.836 3.34541 17.858 3.39458 17.8871Z" fill="black"/>
11
+ <path d="M2.34286 18.4385C2.31337 18.4771 2.28386 18.5157 2.25391 18.5539L2.31015 18.5955L2.77694 18.1703C2.73744 18.1662 2.70214 18.1599 2.67234 18.1545C2.62067 18.1451 2.58548 18.1388 2.57335 18.1523C2.49194 18.2434 2.41745 18.3409 2.34286 18.4385Z" fill="black"/>
12
+ <path d="M5.13369 6.64392L4.94922 6.40209C4.9787 6.38042 5.00993 6.36124 5.04258 6.34473C5.09402 6.40719 5.14096 6.47265 5.1883 6.53866L5.2203 6.58317L5.13369 6.64392Z" fill="black"/>
13
+ <path d="M11.2852 13.2291L11.6305 12.7725C11.6766 12.8838 11.4809 13.1684 11.2852 13.2291Z" fill="black"/>
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 15.2515L2.14267 15.139L2.10975 15.1221C2.15364 15.0287 2.19754 14.9353 2.24144 14.8431C2.24912 14.8285 2.26339 14.8161 2.26668 14.8003C2.30619 14.5753 2.42471 14.5168 2.58275 14.6271C2.665 14.5197 2.76013 14.4233 2.86589 14.3402C3.04258 14.2378 3.00637 14.0882 2.99649 13.9363C2.97673 13.6371 2.88674 13.5482 2.59592 13.5302C2.45325 13.5212 2.3863 13.4459 2.42362 13.3052C2.45748 13.2123 2.47186 13.113 2.4658 13.014C2.45975 12.9149 2.43341 12.8183 2.3885 12.7304C2.35448 12.6685 2.4313 12.5245 2.48398 12.4345C2.53665 12.3445 2.6464 12.2657 2.70347 12.1667C2.79152 12.0225 2.85567 11.8644 2.89333 11.6987C2.94381 11.4085 2.93393 11.107 2.98771 10.8167C3.015 10.6727 3.07075 10.5359 3.15153 10.4148C3.23231 10.2937 3.33641 10.1908 3.45742 10.1125C3.59312 10.0224 3.7209 9.92041 3.83933 9.80761C3.86781 9.78478 3.89096 9.75573 3.90713 9.72259C3.9233 9.68944 3.93207 9.65303 3.9328 9.61598C3.93354 9.57893 3.92622 9.54218 3.91138 9.50838C3.89655 9.47459 3.87456 9.44461 3.84701 9.42061C3.70324 9.28963 3.55227 9.16718 3.39486 9.05386C3.36162 9.03016 3.33328 8.99995 3.31146 8.96498C3.28944 8.92039 3.27426 8.87258 3.26646 8.82324C3.20862 8.4724 3.06936 8.14097 2.8604 7.85686C2.78122 7.75304 2.73341 7.62773 2.72288 7.49639C2.71235 7.36505 2.73955 7.23342 2.80114 7.11774C2.81651 7.08511 2.78248 7.02774 2.76932 6.97149C2.9482 6.89161 2.95808 6.72511 2.92735 6.55186C2.87796 6.26274 2.80114 5.97812 2.75944 5.68899C2.71773 5.39987 2.70018 5.08262 2.67932 4.77774C2.68499 4.72331 2.69907 4.67015 2.72103 4.62024C2.732 4.57862 2.75944 4.53137 2.74956 4.49537C2.70237 4.31987 2.64091 4.14999 2.59372 3.97224C2.58803 3.94737 2.58763 3.92154 2.59255 3.89649C2.59747 3.87145 2.60761 3.84779 2.62226 3.82712C2.67298 3.76468 2.73978 3.71809 2.81505 3.69263C2.89033 3.66718 2.97106 3.66388 3.04807 3.68312C3.17537 3.71462 3.29939 3.79562 3.43657 3.69662C3.44974 3.68762 3.56497 3.77424 3.58253 3.83274C3.62204 3.96324 3.69227 4.08474 3.81629 4.06449C3.90298 4.05099 3.9809 3.93062 4.04895 3.84512C4.11528 3.75805 4.17266 3.66417 4.22015 3.565C4.24879 3.50896 4.26491 3.44709 4.26734 3.38387C4.286 2.67737 4.30465 1.97087 4.31563 1.2655C4.31563 1.18337 4.3255 1.10125 4.33209 1H16.5138C16.6755 6.95574 16.8376 12.9201 17 18.8931C16.9638 18.8931 16.9331 18.9032 16.9023 18.9043C15.2093 18.9373 13.5167 18.9692 11.8244 19C11.712 19.001 11.6004 18.9807 11.4952 18.9403C8.36743 17.7283 5.24115 16.5145 2.11633 15.2987L2 15.2515Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.9083 16.7544L13.4851 17.0245L13.744 17.5073H3.12943V17.3396C3.12943 16.7184 3.12943 16.1016 3.12943 15.4747C3.1343 15.4331 3.12607 15.391 3.1059 15.3543C3.08573 15.3176 3.05461 15.2881 3.01688 15.2698C2.86944 15.1866 2.72876 15.0909 2.58019 14.9975C2.46764 15.0909 2.35509 15.1787 2.25605 15.2721C2.19977 15.3239 2.15025 15.3419 2.08835 15.2867L2.0816 15.2834C1.89139 15.1629 1.6314 15.083 1.53236 14.9097C1.43331 14.7364 1.5076 14.482 1.5121 14.2625C1.56275 11.9541 1.61564 9.64914 1.64378 7.34413C1.62977 6.82404 1.58051 6.3055 1.49634 5.79207C1.35791 4.67896 1.20597 3.56698 1.05965 2.45274C1.04052 2.31093 1.02138 2.16799 1 2.00254H1.16882C6.47139 2.00254 11.7743 2.00254 17.0777 2.00254C17.1276 1.99446 17.1788 2.00582 17.2207 2.03428C17.2625 2.06275 17.2919 2.10616 17.3028 2.15561C17.3669 2.35032 17.4479 2.5394 17.5279 2.72736C17.546 2.76192 17.5527 2.80134 17.5471 2.83997C17.5414 2.8786 17.5237 2.91443 17.4963 2.94233C17.1744 3.35201 16.8593 3.76619 16.5408 4.18037C16.5115 4.21864 16.4834 4.25915 16.4406 4.31768C16.5127 4.31768 16.5644 4.32556 16.6173 4.32556C17.2487 4.32556 17.8801 4.33231 18.5115 4.32556C18.5849 4.31559 18.6596 4.32733 18.7264 4.35933C18.7933 4.39133 18.8492 4.44219 18.8875 4.50564C18.9217 4.55505 18.9593 4.60206 19 4.64632C18.8436 4.86242 18.6961 5.08977 18.5217 5.29236C18.4575 5.36776 18.327 5.3869 18.2268 5.42967C18.1581 5.45893 18.0884 5.48594 18.0017 5.52308L18.3056 6.06557L17.5751 6.51577L17.7102 6.91869H17.2375L17.5627 8.15673C17.5504 8.16574 17.5414 8.17587 17.5346 8.17474C17.2735 8.11622 17.17 8.26366 17.1204 8.48763C17.0999 8.55677 17.0747 8.62445 17.045 8.69022H16.6331L16.8492 9.13141C16.5948 9.23496 16.3438 9.33062 16.0985 9.44092C16.0351 9.47993 15.9828 9.53457 15.9465 9.59961C15.924 9.6498 15.9055 9.70175 15.8914 9.75493C15.7603 10.0802 15.729 10.4371 15.8014 10.7803C15.8067 10.9697 15.7863 11.1591 15.7406 11.343C15.7406 11.3633 15.7124 11.3801 15.6956 11.3982C15.6877 11.4042 15.679 11.4092 15.6697 11.4128C15.4645 11.4929 15.2742 11.6071 15.1069 11.7504C14.9885 11.9416 14.9118 12.1556 14.8818 12.3785C14.8379 12.5529 14.7558 12.6182 14.5813 12.5912C14.4786 12.5845 14.3756 12.5845 14.2729 12.5912L14.6714 12.9423L14.0062 13.361C14.0343 13.3959 14.0568 13.4263 14.0816 13.4556C14.2617 13.6593 14.2538 13.6548 14.148 13.8967C14.1171 13.9928 14.0624 14.0795 13.989 14.1488C13.9156 14.218 13.8259 14.2676 13.7282 14.2929C13.4772 14.3582 13.4727 14.4055 13.4828 14.6688C13.4896 14.8489 13.493 15.0301 13.4828 15.2102C13.4757 15.2548 13.4828 15.3004 13.503 15.3408C13.5231 15.3812 13.5555 15.4142 13.5954 15.4353C13.6588 15.4598 13.7158 15.4984 13.7622 15.5482C13.8086 15.5979 13.8431 15.6575 13.8631 15.7225C13.8831 15.7875 13.8882 15.8562 13.8779 15.9234C13.8676 15.9906 13.8422 16.0546 13.8036 16.1106C13.775 16.2083 13.775 16.3122 13.8036 16.41C13.8316 16.5268 13.8665 16.6418 13.9083 16.7544Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.9432 19C12.9432 18.7952 12.9319 18.6006 12.6957 18.514C12.8228 18.343 12.6473 18.3239 12.573 18.244C12.6135 18.1779 12.6295 18.0997 12.6182 18.023C12.6069 17.9463 12.569 17.876 12.5112 17.8244C12.4932 17.8064 12.4718 17.7704 12.4785 17.7546C12.5584 17.5814 12.4122 17.5454 12.3143 17.4891C12.0574 17.345 11.8377 17.1427 11.673 16.8985C11.549 16.9093 11.4241 16.9067 11.3007 16.8906C11.2377 16.876 11.1882 16.7882 11.1409 16.7252C11.0734 16.629 11.0117 16.5287 10.9564 16.4249C10.8788 16.2798 10.746 16.336 10.6313 16.3247C10.2388 16.3067 9.86871 16.1364 9.59966 15.85C9.54247 15.7645 9.496 15.6723 9.46128 15.5755C9.32178 15.7128 9.19241 15.6194 9.07316 15.5665C8.91464 15.5006 8.74084 15.4803 8.57141 15.508C8.37856 15.528 8.18434 15.5314 7.99091 15.5181C7.80078 15.5069 7.71753 15.3888 7.71191 15.1952C7.71191 15.0197 7.76816 14.8296 7.58478 14.689C7.54541 14.6586 7.53978 14.5405 7.56228 14.4775C7.62528 14.2997 7.52853 14.2221 7.38903 14.167C7.38903 14.1141 7.38903 14.0702 7.39916 14.0275C7.42166 13.8722 7.36316 13.8025 7.21353 13.7204C7.01865 13.5885 6.8397 13.4345 6.68028 13.2614C6.67329 13.2531 6.66833 13.2433 6.66579 13.2327C6.66325 13.2222 6.6632 13.2112 6.66566 13.2006C6.76466 12.9036 6.54303 12.7697 6.36753 12.6156C6.30614 12.5591 6.23532 12.5138 6.15828 12.4818C6.05025 12.4321 5.95485 12.3587 5.87925 12.2669C5.80366 12.1751 5.74982 12.0674 5.72178 11.9519C5.69817 11.7775 5.70579 11.6004 5.74428 11.4288L5.92766 11.4445L5.76453 10.7695C5.56653 10.873 5.41466 10.7695 5.25603 10.7222C5.23241 10.7144 5.19416 10.6919 5.19416 10.6761C5.19416 10.4995 5.02878 10.441 4.95453 10.3184C4.89941 10.2382 4.8643 10.146 4.85216 10.0495C4.84203 9.8245 4.76328 9.57588 4.95116 9.33625C4.98226 9.40249 5.01995 9.46543 5.06366 9.52413C5.11913 9.60203 5.19093 9.66691 5.27403 9.71425C5.30116 9.72387 5.33047 9.72552 5.35851 9.71901C5.38654 9.7125 5.41212 9.6981 5.43224 9.67752C5.45235 9.65693 5.46615 9.63102 5.47201 9.60284C5.47786 9.57466 5.47553 9.54539 5.46528 9.5185C5.42253 9.43116 5.36635 9.35106 5.29878 9.28113C5.23466 9.20463 5.16153 9.13488 5.09291 9.06175L5.15478 9.05612C5.20376 8.95161 5.24293 8.84276 5.27178 8.731C5.26835 8.6997 5.25707 8.66978 5.23897 8.64401C5.22088 8.61825 5.19656 8.59747 5.16828 8.58363C5.13759 8.58108 5.10672 8.58541 5.07791 8.59631C5.04911 8.60721 5.0231 8.6244 5.00178 8.64663C4.92191 8.7265 4.81166 8.79062 4.87803 8.9515C4.91403 9.04037 4.73966 9.12362 4.63953 9.07525C4.55869 9.03068 4.47196 8.99773 4.38191 8.97738C4.15691 8.9425 4.09841 8.91775 4.12428 8.69388C4.13203 8.57046 4.11165 8.44689 4.06469 8.3325C4.01772 8.2181 3.94539 8.11587 3.85316 8.0335C3.56291 7.696 3.29066 7.3405 3.00716 6.994C2.98742 6.97479 2.97307 6.95074 2.96553 6.92425C2.94078 6.625 2.90141 6.33138 2.89016 6.03437C2.9095 5.81877 2.86447 5.60227 2.76078 5.41225C2.74909 5.39626 2.74119 5.37783 2.73769 5.35834C2.73418 5.33884 2.73515 5.31881 2.74053 5.29975C2.81028 5.16587 2.73041 5.11188 2.62803 5.0545C2.58416 5.02975 2.55716 4.97687 2.51553 4.942C2.42216 4.852 2.32203 4.76875 2.23541 4.67313C2.18021 4.60805 2.13229 4.53713 2.09253 4.46162C2.02306 4.33937 1.99153 4.1992 2.00195 4.05897C2.01237 3.91874 2.06426 3.78478 2.15103 3.67413C2.24903 3.51428 2.33333 3.34643 2.40303 3.17237C2.40896 3.14414 2.4085 3.11495 2.40169 3.08692C2.39487 3.05889 2.38188 3.03274 2.36366 3.01038C2.32483 2.964 2.30084 2.90701 2.29482 2.84682C2.2888 2.78663 2.30103 2.72602 2.32991 2.67287C2.35353 2.611 2.38278 2.55138 2.40866 2.4895C2.48428 2.37373 2.52023 2.23652 2.5111 2.09855C2.50197 1.96057 2.44825 1.8293 2.35803 1.7245C2.32622 1.68687 2.30765 1.63984 2.30516 1.59062C2.29841 1.39712 2.30178 1.20475 2.30178 1H8.64678V1.19013C8.64678 3.03588 8.64678 4.88125 8.64678 6.72625C8.64372 6.78028 8.6532 6.8343 8.67447 6.88406C8.69574 6.93383 8.72823 6.978 8.76941 7.01312C11.3749 9.44462 13.9774 11.8788 16.5769 14.3155C16.6731 14.4093 16.7449 14.5251 16.7862 14.653C16.8374 14.8219 16.9245 14.9776 17.0415 15.1097C17.1203 15.1986 17.1698 15.3134 17.2407 15.4101C17.287 15.4765 17.344 15.5346 17.4094 15.5822C17.5332 15.6666 17.5624 15.751 17.4555 15.8601C17.3487 15.9692 17.1934 16.0851 17.028 16.2235C17.0033 16.3956 16.9707 16.6263 16.9358 16.8569C16.9203 16.9205 16.9094 16.9852 16.9032 17.0504C16.9067 17.1155 16.894 17.1805 16.8661 17.2394C16.8382 17.2983 16.796 17.3494 16.7434 17.3879C16.5837 17.5083 16.5938 17.551 16.7142 17.6995C16.7485 17.7576 16.7678 17.8233 16.7704 17.8908C16.775 17.9465 16.775 18.0026 16.7704 18.0584C16.8773 18.1349 17.0044 18.1799 17.0494 18.2676C17.1304 18.4274 17.0145 18.5736 16.8165 18.5961C16.3988 18.6434 15.9803 18.6884 15.561 18.7311L13.0174 19C12.9972 19 12.9758 19 12.9432 19Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 16.852C1.16763 12.5635 1.3375 8.2885 1.504 4H18.5354C18.6899 8.275 18.8447 12.559 19 16.852H1Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.96532 14.077C5.91358 14.0835 5.86356 14.0999 5.818 14.1253C5.69674 14.2286 5.58392 14.3415 5.4806 14.4627C5.46491 14.4915 5.44311 14.5166 5.41673 14.5361C5.39035 14.5556 5.36002 14.569 5.32788 14.5756C5.29573 14.5821 5.26254 14.5815 5.23064 14.5739C5.19874 14.5663 5.1689 14.5517 5.14321 14.5313C5.09649 14.5135 5.04484 14.5135 4.99813 14.5313C4.8508 14.5808 4.70909 14.6438 4.56289 14.6933C4.46279 14.7293 4.3582 14.7551 4.23674 14.7922L4.27048 14.8676L4.09278 14.9879L3.91396 14.8878L3.9657 15.0745L3.7329 15.4018L3.40787 15.3636L3.3359 15.5379L3.0075 15.4052L2.86917 15.7594L2.74096 15.6177L2.40356 16.0519L2.35408 16.0192C2.3597 15.9349 2.54302 15.8674 2.38219 15.7606L2.28885 15.8607L2.21125 15.7482L1.59719 16.1632C1.59719 16.1519 1.58257 16.1227 1.59157 16.1047C1.68941 15.9203 1.58482 15.7808 1.49709 15.6346C1.33177 15.3613 1.17207 15.0835 1 14.79L3.31903 13.4146C3.20252 13.2023 3.07332 12.9972 2.93215 12.8005C2.83895 12.675 2.77258 12.5316 2.73717 12.3794C2.70177 12.2271 2.69808 12.0692 2.72634 11.9154C2.81518 10.9212 2.88379 9.92589 2.95914 8.92945C3.03449 7.93301 3.11097 6.93883 3.18407 5.94351C3.2448 5.03704 3.30216 4.1272 3.35951 3.22074C3.37413 2.99581 3.36851 2.99581 3.59906 3.00143L7.29241 3.11502C7.97732 3.13639 8.66785 3.16226 9.35501 3.17913C9.4911 3.17913 9.52821 3.23536 9.51696 3.36132C9.50797 3.45916 9.51696 3.55813 9.51696 3.68972C9.66093 3.66989 9.80363 3.64173 9.94433 3.60537C9.98032 3.593 10.0017 3.50865 10.0163 3.45241C10.0647 3.23423 10.0883 3.20274 10.3076 3.21286C10.651 3.21238 10.9939 3.23871 11.3333 3.29159C11.512 3.31272 11.6928 3.31007 11.8709 3.28372C12.4759 3.25785 13.09 3.2511 13.6995 3.25673C14.5318 3.2646 15.364 3.29159 16.1963 3.30734C17.0285 3.32308 17.8382 3.33995 18.6615 3.33995C18.8054 3.33995 18.8358 3.39281 18.8392 3.52327C18.8673 4.62205 18.9055 5.71971 18.9303 6.81849C18.9595 8.10509 18.9775 9.39281 19 10.6805C19 10.7446 19 10.8087 19 10.8301C18.8718 10.8818 18.7751 10.9133 18.6918 10.9583C18.5794 11.0146 18.5884 11.1113 18.6109 11.2181C18.6334 11.325 18.6379 11.443 18.6514 11.5555C18.6535 11.5932 18.658 11.6308 18.6649 11.668C18.7245 11.9086 18.7076 11.9413 18.4647 12.0301C18.3522 11.9109 18.2397 11.7838 18.0553 11.9435C18.0328 11.9638 17.9552 11.9233 17.8821 11.9053L17.8079 11.9997C17.7022 11.9435 17.5931 11.8794 17.4795 11.8277C17.439 11.8086 17.3569 11.7973 17.3423 11.8176C17.2467 11.9446 17.1657 12.083 17.0634 12.2427C16.997 12.0301 17.0026 12.0369 16.8485 12.1392C16.8103 12.1651 16.7293 12.1291 16.6675 12.1178C16.627 12.1111 16.5753 12.0773 16.555 12.092C16.4358 12.1617 16.3897 12.092 16.3616 11.9986C16.3132 11.8355 16.2727 11.6702 16.2289 11.506H16.1783C16.1906 11.6635 16.1918 11.8232 16.2176 11.9784C16.2401 12.1111 16.2367 12.2314 16.1052 12.2933C16.0444 12.3341 15.9711 12.3522 15.8983 12.3443C15.8255 12.3365 15.7578 12.3033 15.707 12.2505C15.6362 12.1718 15.5799 12.1752 15.5327 12.2101C15.4382 12.1741 15.3291 12.0897 15.2504 12.1122C15.0502 12.1696 15.1863 12.3574 15.1458 12.5002C15.1065 12.4599 15.0644 12.4223 15.0199 12.3877C14.978 12.3534 14.9252 12.3352 14.8711 12.3367C14.8169 12.3381 14.7652 12.3591 14.7252 12.3956C14.6489 12.4603 14.5612 12.5103 14.4665 12.5429C14.3483 12.5748 14.2281 12.5988 14.1067 12.6149C14.0394 12.5331 13.9763 12.4479 13.9177 12.3596C13.8792 12.3078 13.8601 12.2441 13.8637 12.1797C13.893 12.1018 13.8934 12.016 13.8649 11.9379C13.8365 11.8597 13.781 11.7943 13.7085 11.7534C13.6131 11.6679 13.4991 11.6056 13.3756 11.5713C13.4487 11.7051 13.3531 11.9086 13.6107 11.9086C13.6545 11.9086 13.7288 12.0211 13.731 12.0818C13.7248 12.2295 13.7075 12.3765 13.6793 12.5216L13.8007 12.5688L13.6287 12.652L13.6422 12.6858L13.8255 12.6745L13.8412 12.7386L13.4813 12.8354C13.4319 12.6678 13.3329 12.5947 13.1698 12.6273C13.0394 12.6532 12.9067 12.6734 12.7762 12.7015C12.7413 12.7094 12.711 12.7375 12.6761 12.7465C12.5636 12.7746 12.4512 12.7994 12.332 12.8252V12.8781L12.251 12.7488L12.0261 12.9962C11.8439 12.7004 11.547 12.7465 11.268 12.7386C10.9909 12.7577 10.7283 12.8694 10.5224 13.0558L10.5438 12.9141C10.3869 12.8323 10.2185 12.7747 10.0444 12.7431C9.87782 12.7637 9.71607 12.8132 9.56645 12.8893C9.52328 12.9103 9.48255 12.936 9.44499 12.9658L9.4045 12.9175L9.55183 12.8545C9.38763 12.7847 9.38763 12.7847 9.30103 12.9231L9.27629 12.8815C9.22006 12.9051 9.16382 12.9332 9.10534 12.9523C9.00209 12.9916 8.89608 13.0231 8.78819 13.0468C8.76907 13.0468 8.72971 12.9737 8.70722 12.9343C8.68472 12.895 8.69709 12.859 8.6791 12.8309C8.54752 12.6307 8.55764 12.5744 8.7522 12.435C8.76555 12.4258 8.77637 12.4134 8.78369 12.399C8.78881 12.3784 8.79145 12.3572 8.79157 12.336C8.57901 12.3686 8.48229 12.525 8.36083 12.6734L8.50815 12.7791C8.49466 12.8027 8.48904 12.8275 8.47441 12.8387C8.26073 13.0119 8.0448 13.1829 7.83112 13.3538C7.80188 13.3774 7.76364 13.3977 7.74902 13.428C7.66692 13.5979 7.52409 13.527 7.39588 13.5259C7.36101 13.5259 7.30815 13.4989 7.29241 13.5135C7.12371 13.6822 6.95501 13.8509 6.80094 14.0342C6.7762 14.0623 6.80094 14.1377 6.81106 14.2108L6.49503 14.2727C6.49503 14.2547 6.49503 14.2355 6.50066 14.2176C6.44926 14.2004 6.39956 14.1786 6.3522 14.1523C6.29372 14.113 6.24874 14.0522 6.18913 14.0174C6.12782 13.9891 6.06375 13.9672 5.99794 13.9521L5.98107 14.005L6.15989 14.0961L5.82249 14.3109L5.78875 14.2772L6.01368 14.1478L5.96532 14.077Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.39452 1C8.62839 1.04432 8.85907 1.10405 9.08505 1.17882C9.28993 1.2784 9.48694 1.39345 9.67435 1.52295C9.5349 1.63542 9.44943 1.71639 9.34259 1.78049C9.24839 1.83149 9.16829 1.90501 9.10942 1.99449C9.05055 2.08397 9.01474 2.18664 9.0052 2.29332C8.97482 2.54319 8.8648 2.77664 8.69143 2.95911C8.6284 3.03043 8.56981 3.10554 8.51598 3.18403C8.46677 3.26607 8.4016 3.33741 8.32433 3.39381C8.24707 3.45022 8.15927 3.49055 8.06613 3.51242C8.01652 3.5219 7.97131 3.54717 7.93725 3.58447C7.90319 3.62177 7.88213 3.66909 7.87719 3.71936C7.87475 3.74436 7.8679 3.76872 7.85695 3.79133C7.7085 4.04437 7.79622 4.22544 8.0009 4.41213C8.14865 4.52891 8.24448 4.69918 8.26763 4.88609C8.29078 5.07299 8.2394 5.26149 8.12461 5.4108C8.03191 5.51981 7.98425 5.66007 7.99136 5.803C7.99846 5.94592 8.05979 6.08076 8.16285 6.18005C8.47302 6.57174 8.72423 7.0067 8.90848 7.47112C8.9366 7.5296 9.02094 7.56334 9.08167 7.60158C9.1424 7.63982 9.22787 7.64769 9.27174 7.69605C9.61034 8.08117 9.81615 8.56494 9.85879 9.07597C9.86553 9.29071 9.8497 9.50557 9.81156 9.71701C9.77486 9.97518 9.80149 10.2384 9.88916 10.484C9.92566 10.5925 9.93719 10.7078 9.9229 10.8214C9.90378 11.0115 9.89928 11.179 10.1175 11.2712C10.1803 11.3012 10.2319 11.3505 10.2648 11.4118C10.4879 11.762 10.6495 12.1476 10.7428 12.5522C10.7591 12.6559 10.7651 12.761 10.7607 12.866C10.7552 12.9286 10.7662 12.9916 10.7926 13.0486C10.8191 13.1057 10.86 13.1548 10.9114 13.191C11.2776 13.47 11.5904 13.8129 11.8348 14.2032C11.9283 14.349 12.0595 14.4667 12.2146 14.5439C12.3696 14.6212 12.5427 14.655 12.7154 14.6418C13.0527 14.6294 13.0786 14.6676 13.1011 15.0016C13.127 15.3705 13.1675 15.7383 13.1899 16.1072C13.1907 16.2533 13.1828 16.3994 13.1663 16.5446H13.1258C13.1168 16.4142 13.1112 16.2826 13.0966 16.1521C13.073 15.9272 12.9841 15.8586 12.7705 15.8575H12.6805C12.405 15.8575 12.4016 15.8575 12.5118 16.1229L12.6153 16.3714C12.5613 16.3591 12.5064 16.3512 12.4511 16.3478C12.4056 16.3536 12.3608 16.3638 12.3172 16.3782L12.2981 16.4344L12.7738 16.7246C12.6963 16.785 12.6126 16.837 12.5242 16.8798C12.3695 16.9365 12.2109 16.9816 12.0496 17.0147C11.9862 17.0326 11.9277 17.0647 11.8786 17.1085C11.8295 17.1524 11.7911 17.2068 11.7662 17.2678L11.9472 17.2959L11.7549 17.5703C11.8393 17.5604 11.9225 17.5423 12.0035 17.5163C12.1508 17.4488 12.288 17.3622 12.4364 17.2914C12.5343 17.2475 12.6074 17.2981 12.6614 17.3892C12.6843 17.4281 12.7095 17.4657 12.7367 17.5017C12.8042 17.5995 12.8751 17.6142 12.9482 17.5073C13.0606 17.3577 13.2214 17.234 13.1787 17.0136C13.1787 16.9979 13.2034 16.9754 13.2473 16.9124C13.2777 17.0327 13.3294 17.1204 13.3125 17.1936C13.2375 17.6433 13.273 18.1045 13.416 18.5375C13.4334 18.6597 13.4307 18.7839 13.4081 18.9052C13.3991 19.0042 13.326 19.0177 13.2552 18.9761C13.1427 18.9131 13.0516 18.8468 12.9493 18.9851C12.9335 19.0065 12.8739 18.9986 12.8368 18.9986C10.8762 18.9986 8.91598 18.9967 6.95612 18.993C6.81554 18.993 6.76718 18.9491 6.76044 18.8051C6.67834 17.2115 6.59512 15.6202 6.52089 14.0356C6.47366 13.0673 6.43654 12.0979 6.39043 11.1295C6.3252 9.75637 6.25773 8.3832 6.19025 7.01002C6.14526 6.06084 6.10478 5.10265 6.06204 4.14896C6.04405 3.75422 6.02493 3.36172 6.00244 2.96473C5.9964 2.91233 6.00161 2.85925 6.0177 2.80903C6.0338 2.7588 6.06042 2.71258 6.09578 2.67345C6.20897 2.5211 6.31012 2.36017 6.3983 2.19211C6.48265 2.06053 6.56587 1.93119 6.63898 1.79511C6.7695 1.57181 6.95411 1.38494 7.17579 1.25169C7.39748 1.11845 7.64912 1.04311 7.90756 1.03261L8.15948 1H8.39452Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.5342 3.0025C13.7288 3.0025 13.9245 2.99688 14.1191 3.0025C14.163 3.0025 14.2316 3.05649 14.2417 3.09249C14.3645 3.86397 14.6058 4.61183 14.9571 5.30957C15.217 5.87199 15.4959 6.43442 15.8053 6.97547C15.9743 7.22033 16.1689 7.44656 16.3857 7.65038C16.5915 7.87535 16.8075 8.0947 17.0145 8.32529C17.0305 8.34436 17.0416 8.36696 17.0471 8.39122C17.0526 8.41548 17.0522 8.44069 17.046 8.46477C16.9988 8.54794 16.9717 8.64097 16.9668 8.73647C16.9619 8.83196 16.9794 8.92728 17.0179 9.01482C17.1105 9.294 17.2327 9.56248 17.3823 9.81572C17.8851 10.5514 18.3362 11.3211 18.7321 12.1194C18.9172 12.477 19.0005 12.8786 18.9729 13.2803C18.9361 13.6577 18.9361 14.0378 18.9729 14.4152C19.0048 14.5351 19.0086 14.6607 18.984 14.7822C18.9594 14.9038 18.9071 15.018 18.8311 15.116C18.7121 15.3147 18.6754 15.552 18.7288 15.7774C18.737 15.8556 18.7144 15.9339 18.6658 15.9956C18.4718 16.169 18.2678 16.3309 18.055 16.4805C17.995 16.5216 17.9265 16.5485 17.8545 16.559C17.7825 16.5696 17.7091 16.5635 17.6399 16.5412C17.5715 16.513 17.4948 16.5127 17.4262 16.5405C17.3576 16.5682 17.3027 16.6218 17.2732 16.6897C17.2293 16.7853 17.1731 16.7583 17.1124 16.7234C17.043 16.6852 16.9858 16.6282 16.9474 16.559C16.909 16.4897 16.8909 16.411 16.8953 16.332C16.884 16.1124 16.8273 15.8976 16.7287 15.7011C16.6302 15.5046 16.4919 15.3306 16.3227 15.1903C16.2304 15.0942 16.1173 15.0207 15.992 14.9754C15.9223 14.9495 15.8244 15.0058 15.7378 15.0181C15.668 15.0283 15.5724 15.0575 15.5319 15.0249C15.4079 14.946 15.3008 14.843 15.2172 14.7221C15.1335 14.6012 15.0749 14.4647 15.0449 14.3207C15.0288 14.1895 14.9788 14.0647 14.8999 13.9587C14.8211 13.8526 14.716 13.7688 14.5949 13.7156C14.4825 13.6616 14.4656 13.6031 14.4746 13.4906C14.4911 13.2525 14.4941 13.0136 14.4836 12.7752C14.4813 12.7438 14.4715 12.7135 14.4551 12.6867C14.4386 12.6598 14.416 12.6374 14.3891 12.6211C14.343 12.6087 14.2699 12.6616 14.2237 12.7032C14.172 12.7541 14.1267 12.8112 14.0888 12.8731C13.9695 13.0463 13.9684 13.0485 13.8244 12.8843C13.5005 12.5154 13.1754 12.1487 12.8593 11.7741C12.7029 11.5885 12.7209 11.5412 12.8863 11.368C13.0663 11.1855 13.236 10.9933 13.3947 10.7921C13.5308 10.6144 13.5072 10.5559 13.3025 10.4749C13.1371 10.4085 12.965 10.3511 12.7997 10.2983C12.7475 10.2901 12.6944 10.2901 12.6422 10.2983C12.6498 10.3556 12.6615 10.4124 12.6771 10.4681C12.7267 10.5843 12.7703 10.7029 12.8076 10.8236C12.8199 10.8776 12.7749 10.9451 12.7558 11.0069C12.7078 10.9742 12.6633 10.9365 12.6231 10.8944C12.4645 10.6899 12.3548 10.4518 12.3021 10.1984C12.2495 9.94501 12.2554 9.68293 12.3194 9.43214C12.3905 9.08427 12.4312 8.73085 12.4409 8.37591C12.4543 8.26964 12.4335 8.16187 12.3815 8.06822C12.3295 7.97457 12.249 7.89992 12.1518 7.8551C12.0647 7.7952 12.0005 7.70758 11.9695 7.60651C11.9533 7.55054 11.9209 7.50057 11.8765 7.46278C11.8322 7.425 11.7777 7.40105 11.7198 7.39391C11.5466 7.36917 11.3711 7.35455 11.1979 7.32867C11.1653 7.32867 11.1158 7.28368 11.1124 7.25668C11.1083 7.16036 11.0772 7.06712 11.0227 6.98758C10.9682 6.90804 10.8925 6.84539 10.8042 6.80674C10.6748 6.73925 10.5995 6.5694 10.4982 6.44679C10.462 6.39539 10.4201 6.34822 10.3734 6.30618C10.1807 6.1562 9.98568 6.01185 9.78846 5.87312C9.71767 5.81372 9.64075 5.76206 9.55899 5.71901C9.38913 5.6459 9.21366 5.58066 9.04043 5.51429C9.01576 5.50246 8.98901 5.49558 8.96169 5.49404C8.80147 5.48343 8.64156 5.51889 8.50084 5.59622C8.36013 5.67356 8.24447 5.78954 8.16755 5.93048C8.0437 6.16854 7.8684 6.37604 7.65438 6.53791C7.44036 6.69979 7.19299 6.81199 6.93021 6.86636C6.86597 6.8846 6.80059 6.8985 6.73449 6.90798C6.658 6.91923 6.57926 6.92485 6.50164 6.9316C6.50608 6.8645 6.50116 6.79712 6.48702 6.73138C6.45301 6.61546 6.39601 6.50758 6.31942 6.41417C6.20158 6.2957 6.06518 6.19729 5.9156 6.12283C5.54552 5.94286 5.16645 5.77975 4.79075 5.61665C4.31518 5.44765 3.80618 5.39443 3.30594 5.46142C2.78634 5.48239 2.27354 5.58723 1.7874 5.77188C1.77666 5.77506 1.76578 5.77769 1.75477 5.77975C1.48819 5.85062 1.48819 5.85062 1.47806 5.57616C1.46794 5.2522 1.44994 4.93162 1.44994 4.60654C1.45478 4.55984 1.44545 4.51278 1.42319 4.47145C1.40092 4.43013 1.36674 4.39646 1.32508 4.37482C1.24556 4.3338 1.17211 4.28194 1.10686 4.22071C1.06342 4.16248 1.02751 4.09898 1 4.03174C1.04908 3.99842 1.10348 3.9737 1.16085 3.95862C1.69966 3.90575 2.23734 3.86076 2.77614 3.81352L5.64113 3.55705C5.71918 3.55819 5.79716 3.55179 5.87398 3.53793C6.01102 3.48943 6.16104 3.49248 6.29601 3.54651C6.43097 3.60053 6.54165 3.70184 6.60738 3.83151C6.65013 3.89538 6.71097 3.94502 6.78212 3.97408C6.85326 4.00314 6.93147 4.01029 7.0067 3.99462C8.24066 3.91925 9.478 3.86976 10.7142 3.80677C11.1821 3.78427 11.6501 3.76627 12.1169 3.73478C12.2553 3.72578 12.2856 3.77415 12.2845 3.90125C12.2845 4.20946 12.2418 4.17234 12.5612 4.17347C12.6939 4.17347 12.8683 4.21396 12.9493 4.14647C13.0303 4.07898 13.0067 3.90125 13.0291 3.7719C13.0291 3.7494 13.037 3.72803 13.0404 3.70553C13.073 3.50193 13.1045 3.29946 12.9088 3.14311C12.8762 3.12511 12.8717 3.06437 12.8537 3.01937C12.896 3.01058 12.9388 3.00457 12.9819 3.00137C13.1664 3.00137 13.3497 3.00137 13.5342 3.00137V3.0025Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.1198 18.1964C12.6429 18.165 12.1492 18.1346 11.6577 18.1009C10.7658 18.0401 9.87393 17.9738 8.98205 17.9187C8.09018 17.8635 7.16793 17.8174 6.26031 17.7691C5.73621 17.7421 5.21323 17.7173 4.68575 17.6937C4.59268 17.6912 4.50325 17.657 4.43214 17.5969C4.36102 17.5369 4.31243 17.4544 4.29436 17.3631C4.28185 17.3169 4.27542 17.2692 4.27524 17.2213C4.27206 17.1002 4.2329 16.9828 4.16277 16.8839C4.09845 16.785 4.05483 16.674 4.03456 16.5578C4.01961 16.3351 3.91929 16.1268 3.75451 15.9763C3.73983 15.965 3.72918 15.9492 3.72414 15.9313C3.70615 15.8061 3.6904 15.6805 3.67691 15.5546C3.67691 15.5433 3.68928 15.5298 3.6949 15.5174C3.72324 15.4626 3.74586 15.4049 3.76238 15.3454C3.7815 15.2329 3.78375 15.1272 3.79837 15.0192C3.81862 14.8719 3.8636 14.7245 3.88048 14.5828C3.89188 14.4842 3.88289 14.3843 3.85406 14.2893C3.82523 14.1943 3.77718 14.1063 3.7129 14.0306C3.68484 14.0008 3.66365 13.9652 3.65083 13.9264C3.63801 13.8875 3.63385 13.8463 3.63867 13.8057C3.63902 13.678 3.6262 13.5506 3.60043 13.4255C3.59122 13.377 3.59206 13.3271 3.60289 13.279C3.61372 13.2308 3.63432 13.1854 3.66341 13.1455C3.78594 12.9858 3.852 12.79 3.85123 12.5888C3.83555 12.4919 3.83555 12.3932 3.85123 12.2963C3.88846 12.2079 3.9477 12.1305 4.02331 12.0714C4.13578 11.9679 4.26962 11.8813 4.39333 11.7869V11.7374C4.29979 11.6716 4.20211 11.6118 4.10091 11.5586C4.00756 11.5158 4.00194 11.4843 4.05255 11.3955C4.09416 11.3027 4.12437 11.2053 4.14253 11.1053C4.14253 11.0941 4.13578 11.0704 4.12791 11.0671C4.02219 11.0333 4.05705 10.9377 4.03118 10.8657C4.00002 10.7689 3.95079 10.6788 3.8861 10.6003C3.78442 10.4942 3.72485 10.3547 3.71852 10.2078C3.71852 10.1662 3.66678 10.1291 3.65441 10.0852C3.6263 9.99186 3.61055 9.89514 3.58581 9.80067C3.57359 9.76884 3.55969 9.73768 3.54419 9.70732C3.52282 9.65221 3.50371 9.59485 3.48571 9.53974C3.48571 9.52737 3.49583 9.50712 3.48571 9.497C3.37947 9.27089 3.3198 9.02572 3.31026 8.77608C3.15843 7.93032 3.02234 7.08793 2.88288 6.24666C2.74567 5.42339 2.61633 4.599 2.47462 3.77685C2.34415 3.02443 2.20132 2.28102 2.06636 1.53198C2.04049 1.38689 2.02362 1.24068 2 1.08098C2.04949 1.07873 2.08773 1.07535 2.12596 1.07535C3.10557 1.06973 4.08517 1.06298 5.06477 1.05961C5.92965 1.05961 6.79341 1.05961 7.6583 1.05961C7.92035 1.05961 8.18352 1.05961 8.44558 1.05174C8.99892 1.03824 9.55227 1.02024 10.1056 1C10.1371 1 10.1697 1 10.2181 1.00562C10.1427 1.12596 10.1517 1.25755 10.0111 1.34303C9.87055 1.42851 9.71197 1.50049 9.67373 1.68943C9.67373 1.70293 9.63999 1.71193 9.62087 1.72092C9.54102 1.75691 9.3577 2.09207 9.40268 2.1573C9.47327 2.24852 9.55616 2.32952 9.64899 2.39798C9.74121 2.47221 9.82107 2.57793 9.96615 2.55657C9.98527 2.55657 10.0134 2.61392 10.0381 2.64429C10.1191 2.74664 10.2113 2.84224 10.2979 2.93671C10.3665 3.01094 10.4768 3.12791 10.6252 3.04918C10.6323 3.04806 10.6395 3.04806 10.6466 3.04918C10.9413 3.01431 10.9975 3.05593 11.0582 3.35059C11.0602 3.39856 11.0732 3.44542 11.0962 3.48755C11.1192 3.52968 11.1516 3.56594 11.1909 3.59353C11.2157 3.60815 11.2258 3.65313 11.2382 3.68687C11.2629 3.75323 11.2652 3.83083 11.3506 3.86233C11.3709 3.8702 11.3821 3.91631 11.3878 3.94555C11.4035 4.02878 11.4114 4.11426 11.4271 4.19636C11.4334 4.24245 11.4499 4.28656 11.4754 4.32547C11.5009 4.36439 11.5347 4.39712 11.5745 4.42129C11.6442 4.46403 11.6802 4.56301 11.7308 4.63723C11.7403 4.65287 11.7489 4.66901 11.7567 4.6856C11.8241 4.81156 11.8939 4.93528 11.9568 5.06237C11.985 5.12085 12.0007 5.17483 12.0862 5.17483C12.1132 5.17483 12.1492 5.20858 12.1705 5.23444C12.2563 5.3512 12.3721 5.44254 12.5057 5.49874C12.6288 5.56421 12.7424 5.64634 12.8431 5.7428C12.9007 5.79344 12.9555 5.84713 13.0073 5.90363C13.0152 5.9115 13.0264 5.91713 13.0309 5.92613C13.0883 6.06334 13.1501 6.19942 13.1996 6.34001C13.2202 6.38933 13.2508 6.43382 13.2895 6.47062C13.3283 6.50741 13.3743 6.53571 13.4246 6.5537C13.516 6.57115 13.6027 6.60811 13.6785 6.66207C13.7544 6.71602 13.8178 6.7857 13.8643 6.86636C13.9087 6.92611 13.964 6.97687 14.0274 7.01595C14.1084 7.06656 14.1567 7.12054 14.1252 7.22176C14.1001 7.29509 14.0809 7.37031 14.0679 7.4467C14.0679 7.46408 14.0718 7.48124 14.0792 7.49698C14.0865 7.51272 14.0973 7.52665 14.1106 7.5378C14.1815 7.59291 14.2602 7.64015 14.3277 7.68401C14.3423 7.7155 14.3592 7.74699 14.3738 7.77961C14.3792 7.79554 14.3819 7.81227 14.3817 7.82909C14.3817 7.86171 14.3693 7.90557 14.3817 7.92469C14.4256 7.97398 14.4764 8.01677 14.5324 8.05178C14.547 8.0619 14.5852 8.03604 14.6302 8.02029C14.6258 8.06442 14.6258 8.10888 14.6302 8.153C14.6403 8.20249 14.6505 8.26547 14.6853 8.29359C14.7978 8.36894 14.9193 8.42855 15.0374 8.49491C15.0925 8.52527 15.1498 8.55564 15.2016 8.59051C15.2814 8.64337 15.3579 8.70297 15.4389 8.75359C15.4733 8.77141 15.5006 8.80032 15.5165 8.83563C15.5325 8.87094 15.536 8.91058 15.5266 8.94816C15.5206 9.02252 15.5321 9.09727 15.5603 9.16635C15.5987 9.29189 15.6648 9.4072 15.7538 9.50375C15.7613 9.51212 15.7657 9.52286 15.7662 9.53412C15.7662 9.66795 15.7729 9.80179 15.7785 9.93563C15.778 9.97388 15.784 10.0119 15.7965 10.0481C15.8155 10.0821 15.8268 10.1199 15.8297 10.1587C15.8326 10.1976 15.827 10.2366 15.8134 10.273C15.8074 10.2855 15.8043 10.2991 15.8043 10.313C15.8043 10.3268 15.8074 10.3404 15.8134 10.3529C15.9011 10.4451 15.9787 10.5508 16.1261 10.561C16.1705 10.5717 16.2101 10.597 16.2385 10.6329C16.3319 10.733 16.4185 10.8399 16.5141 10.9512C16.4578 11.0277 16.4691 11.0929 16.5343 11.1762C16.616 11.2981 16.6856 11.4277 16.7424 11.5631C16.747 11.5772 16.7484 11.5923 16.7464 11.6071C16.7445 11.6219 16.7393 11.636 16.7311 11.6485C16.6254 11.7925 16.6277 11.7891 16.7244 11.9252C16.7508 11.9683 16.7618 12.019 16.7559 12.0692C16.7446 12.1323 16.7564 12.1975 16.789 12.2527C16.8216 12.308 16.8729 12.3498 16.9336 12.3706C16.9687 12.3875 17.0091 12.3899 17.0461 12.3773C17.0713 12.3591 17.1026 12.3514 17.1335 12.3558C17.1643 12.3602 17.1922 12.3764 17.2114 12.4009C17.3153 12.5176 17.4549 12.5967 17.6084 12.6259C17.6298 12.6259 17.6601 12.6832 17.659 12.7136C17.6444 12.7669 17.6171 12.8159 17.5795 12.8564C17.5419 12.8969 17.4951 12.9278 17.4431 12.9464C17.4262 12.9464 17.3981 12.9532 17.3902 12.9464C17.3227 12.8699 17.2777 12.9127 17.2519 12.9779C17.2429 13.0071 17.2901 13.0544 17.3261 13.1185L17.1776 13.2816L16.9797 13.2107L16.9212 13.3895L17.0618 13.4323C16.9755 13.5182 16.8965 13.6111 16.8256 13.7101C16.7424 13.8507 16.6254 13.7708 16.5219 13.7753C16.5118 13.8878 16.5219 13.8878 16.7053 13.8968C16.7269 13.9856 16.7292 14.078 16.7121 14.1678C16.6951 14.2577 16.659 14.3428 16.6063 14.4175C16.4668 14.3973 16.3251 14.449 16.3128 14.5367C16.369 14.5367 16.4252 14.5288 16.4781 14.5277C16.5028 14.5277 16.5411 14.5277 16.5512 14.5435C16.557 14.5558 16.56 14.5692 16.56 14.5828C16.56 14.5964 16.557 14.6099 16.5512 14.6222C16.5028 14.7133 16.4455 14.7999 16.3971 14.891C16.3423 14.9863 16.2964 15.0865 16.2599 15.1902C16.2539 15.2509 16.2721 15.3115 16.3105 15.3589C16.2925 15.4297 16.2723 15.4995 16.2576 15.5703C16.2363 15.6715 16.2396 15.7784 16.1058 15.82C16.0619 15.8335 16.0383 15.9111 16.0012 15.9561C15.9641 16.0011 15.9326 16.0258 15.9022 16.0685C15.8814 16.0899 15.8663 16.1162 15.8584 16.145C15.8505 16.1956 15.864 16.2507 15.8516 16.2991C15.828 16.3868 15.8663 16.5139 15.7032 16.524C15.6537 16.524 15.6076 16.5971 15.5423 16.6511L15.7605 16.7344L15.8291 16.641C15.8431 16.677 15.8511 16.7149 15.8528 16.7535C15.8356 16.9101 15.8013 17.0644 15.7504 17.2135C15.7126 17.2798 15.6893 17.3534 15.682 17.4293C15.6746 17.5053 15.6834 17.582 15.7077 17.6544C15.5249 17.6545 15.3425 17.6395 15.1622 17.6094C14.9498 17.5855 14.7461 17.5111 14.5684 17.3923C14.5481 17.3754 14.5054 17.3855 14.4739 17.3788C14.4166 17.3684 14.3603 17.3537 14.3052 17.3349C14.2208 17.3023 14.1387 17.263 14.051 17.2225L13.9802 17.4125L13.8857 17.3766C13.8463 17.4373 13.7867 17.489 13.7867 17.5408C13.7867 17.6768 13.6889 17.8129 13.78 17.9479C13.8817 18.1541 13.8982 18.392 13.8261 18.6103C13.8137 18.7014 13.7935 18.7914 13.7833 18.8825C13.7732 18.9736 13.7305 19.0152 13.6371 18.995C13.564 18.9837 13.4932 18.9646 13.4201 18.9545C13.257 18.9309 13.1884 18.8488 13.212 18.6846C13.2279 18.638 13.2308 18.588 13.2205 18.5398C13.2102 18.4917 13.1871 18.4473 13.1535 18.4113C13.1175 18.3719 13.1344 18.2774 13.1198 18.1964Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.32872 4.4165C4.33654 4.39527 4.34457 4.37344 4.35237 4.35078C4.34218 4.32681 4.33316 4.3014 4.32408 4.27581C4.28503 4.16579 4.24478 4.05239 4.10615 4.03598C3.92263 4.01376 3.7379 4.00961 3.55285 4.00545C3.4851 4.00393 3.4173 4.00241 3.34951 4C3.33208 4.00138 3.31573 4.00896 3.30341 4.02136C3.23364 4.08453 3.15067 4.12844 3.06727 4.17259C2.92355 4.24866 2.77853 4.32542 2.69743 4.50255C2.60074 4.71279 2.62772 4.88593 2.85258 4.96463C2.93079 4.98058 3.00336 5.01705 3.06282 5.07031C3.16808 5.18987 3.31556 5.26401 3.4743 5.27718C3.58167 5.31575 3.69814 5.32115 3.80861 5.29268C3.91908 5.26421 4.01844 5.20319 4.09378 5.11753C4.14392 5.055 4.18205 4.98372 4.20621 4.90729C4.22579 4.84223 4.23899 4.77326 4.25197 4.70538C4.2621 4.65245 4.27211 4.60015 4.28491 4.5509C4.29569 4.50625 4.31174 4.46265 4.32872 4.4165Z" fill="black"/>
3
+ <path d="M6.33984 5.77506C6.36571 5.77506 6.38969 5.7729 6.4127 5.77083C6.4367 5.76868 6.45968 5.76661 6.48263 5.76719C6.72547 5.77281 6.95033 5.74583 7.06501 5.48387C7.08855 5.4448 7.12042 5.41141 7.15833 5.38606C7.36183 5.21629 7.52821 5.27363 7.59792 5.54233C7.62001 5.62232 7.65829 5.69694 7.71035 5.76156C7.72687 5.78173 7.74543 5.80042 7.76385 5.81896C7.83065 5.88622 7.89544 5.95145 7.85313 6.07749C7.84639 6.09885 7.96556 6.17642 8.03414 6.20566C8.07308 6.22249 8.12876 6.20781 8.16061 6.19941L8.1668 6.19779C8.1672 6.31336 8.19731 6.42689 8.2542 6.52749C8.3111 6.62809 8.39288 6.71239 8.49172 6.77229C8.47487 6.78761 8.45888 6.80383 8.44318 6.81975C8.36667 6.89736 8.29725 6.96777 8.17131 6.89034C8.16369 6.88631 8.1552 6.8842 8.14657 6.8842C8.13795 6.8842 8.12945 6.88631 8.12183 6.89034C7.99437 6.99488 7.89308 6.93711 7.78747 6.87688C7.7636 6.86326 7.73951 6.84952 7.71485 6.8375C7.616 6.79058 7.50873 6.76402 7.39941 6.75938C7.2901 6.75475 7.18097 6.77214 7.07851 6.81052C6.94472 6.85549 6.89186 6.81052 6.84127 6.67786C6.76975 6.53869 6.6894 6.40425 6.60069 6.27536C6.57467 6.22877 6.55516 6.17893 6.53569 6.12916C6.51897 6.08644 6.50228 6.04378 6.48151 6.00329C6.4486 5.93912 6.4187 5.89421 6.38256 5.83994C6.36933 5.82006 6.35521 5.79886 6.33984 5.77506Z" fill="black"/>
4
+ <path d="M11.9889 7.91338C11.9522 7.98702 11.9232 8.06426 11.9023 8.14386C11.908 8.22492 11.9301 8.30397 11.9672 8.37627C12.0043 8.44857 12.0556 8.5126 12.1182 8.5645C12.1807 8.61641 12.2531 8.6551 12.3309 8.67826C12.4088 8.70142 12.4906 8.70856 12.5713 8.69925C12.6024 8.69826 12.6332 8.70529 12.6608 8.71966C12.6883 8.73404 12.7117 8.75527 12.7287 8.78132C12.7651 8.91243 12.7881 9.04692 12.7973 9.18269C12.8187 9.41879 12.8602 9.46039 13.1008 9.46039C13.1803 9.45892 13.2592 9.44759 13.3358 9.42666C13.3772 9.41545 13.4186 9.4044 13.4601 9.39333C13.6722 9.3367 13.8852 9.27986 14.0902 9.2018C14.2042 9.15493 14.3027 9.07703 14.3746 8.97695C14.4904 8.8128 14.4342 8.67451 14.2442 8.59469C14.0266 8.52199 13.8253 8.40742 13.6517 8.25741C13.5838 8.16899 13.4866 8.1078 13.3775 8.08491C13.2684 8.06202 13.1547 8.07894 13.057 8.13262L13.0193 8.14879C12.9639 8.17249 12.908 8.19641 12.8558 8.22481C12.7377 8.28889 12.6635 8.26303 12.5949 8.14048C12.5337 8.03274 12.4551 7.93588 12.3622 7.85379C12.3363 7.82733 12.3044 7.80747 12.2693 7.79586C12.2341 7.78425 12.1967 7.78124 12.1602 7.78708C12.1236 7.79291 12.089 7.80742 12.0592 7.8294C12.0294 7.85137 12.0053 7.88018 11.9889 7.91338Z" fill="black"/>
5
+ <path d="M18.0306 12.4173L18.0018 12.423C17.9992 12.3787 18.0011 12.3343 18.0074 12.2903C18.033 12.1734 18.0211 12.0515 17.9735 11.9417C17.9258 11.8319 17.8449 11.7399 17.7421 11.6787C17.3514 11.3727 16.9062 11.1438 16.43 11.0041C16.4061 10.9932 16.38 10.9922 16.3538 10.9912C16.3343 10.9905 16.3149 10.9898 16.2962 10.985C16.215 10.9713 16.136 10.9467 16.0613 10.912C15.9797 10.8643 15.9009 10.8122 15.8221 10.7601C15.6947 10.6759 15.5672 10.5917 15.4283 10.5263C15.1753 10.406 15.0258 10.5241 15.0798 10.804C15.1242 10.9723 15.1952 11.1325 15.29 11.2785C15.3496 11.3819 15.3822 11.4696 15.3058 11.5742C15.2697 11.6232 15.2343 11.6724 15.1989 11.7215C15.1453 11.7961 15.0914 11.8709 15.0359 11.944C15.0091 11.9704 14.9801 11.9944 14.9493 12.016C14.8209 12.1203 14.7017 12.2354 14.593 12.36C14.512 12.4635 14.6323 12.7367 14.7369 12.8221C14.8019 12.8806 14.8507 12.955 14.8785 13.038C14.9092 13.1244 14.9349 13.2123 14.9605 13.2999C15.0016 13.4404 15.0425 13.5804 15.1034 13.7125C15.1823 13.8833 15.2036 14.075 15.1641 14.2589C15.1401 14.3871 15.1176 14.516 15.0966 14.6457C15.0948 14.7544 15.1237 14.8615 15.1799 14.9546C15.2362 15.0477 15.3176 15.123 15.4148 15.1719C15.5688 15.2391 15.7189 15.3217 15.8803 15.4106C15.9321 15.4391 15.9853 15.4684 16.0399 15.4979C16.2084 15.3542 16.3389 15.1711 16.4199 14.965C16.4673 14.8544 16.5405 14.7569 16.6335 14.6805C16.736 14.6011 16.8454 14.5305 16.9548 14.4599C17.0481 14.3996 17.1415 14.3393 17.2305 14.2736C17.3283 14.1982 17.4172 14.1353 17.5532 14.1915C17.6137 14.2049 17.677 14.1978 17.7331 14.1712C18.1481 14.03 18.5272 13.7998 18.8439 13.4967C19.0665 13.2718 19.0563 13.1841 18.7831 13.047C18.5796 12.9447 18.3829 12.821 18.3829 12.5444C18.375 12.4185 18.2783 12.3758 18.158 12.3938C18.1208 12.3995 18.0831 12.4069 18.0306 12.4173Z" fill="black"/>
6
+ <path d="M11.8612 7.27499C11.6689 7.66849 11.3496 7.82927 10.9977 7.664C10.6552 7.56592 10.2957 7.54178 9.94312 7.59317C9.90106 7.59317 9.859 7.5891 9.80748 7.58412C9.77776 7.58124 9.74487 7.57806 9.70703 7.57518L9.95662 7.09961C10.0601 7.09961 10.1673 7.1248 10.2788 7.15101C10.4859 7.19969 10.7078 7.25185 10.9482 7.15246C11.0517 7.30086 11.2361 7.28624 11.4351 7.26488C11.5771 7.2564 11.7196 7.25978 11.8612 7.27499Z" fill="black"/>
7
+ <path d="M11.3843 8.39783C11.2233 8.25714 11.0208 8.17269 10.8076 8.15723C10.7406 8.19712 10.6778 8.24343 10.6198 8.29551C10.6074 8.30338 10.6412 8.40457 10.6715 8.41581C10.8345 8.4754 10.857 8.60356 10.8761 8.75309C10.884 8.8138 10.9593 8.91049 11.0077 8.91049C11.1206 8.91346 11.2326 8.88998 11.3348 8.84191C11.5462 8.73511 11.5485 8.5631 11.3843 8.39783Z" fill="black"/>
8
+ <path d="M1.67433 4.82617C1.66706 4.87046 1.66075 4.91103 1.65485 4.94901C1.64156 5.03444 1.63031 5.10682 1.61474 5.17919C1.60912 5.20843 1.58326 5.2534 1.5619 5.25565C1.32917 5.28375 1.23361 5.45352 1.1684 5.65027C1.02449 5.61429 0.971653 5.5221 1.01438 5.41754C1.06802 5.30198 1.13975 5.19572 1.22686 5.10275C1.30673 5.01182 1.39777 4.93136 1.49782 4.86327C1.5536 4.83929 1.61361 4.82668 1.67433 4.82617Z" fill="black"/>
9
+ <path d="M12.3668 9.72635C12.4073 9.71983 12.4489 9.71313 12.4919 9.7068C12.4745 9.65573 12.4624 9.60298 12.456 9.5494C12.456 9.39425 12.3919 9.34253 12.2581 9.40437C12.1647 9.44643 12.0761 9.49845 11.9939 9.55952C11.9579 9.5865 11.9231 9.66182 11.9366 9.6933C11.9516 9.71491 11.9716 9.73261 11.9949 9.74493C12.0181 9.75725 12.044 9.76384 12.0703 9.76413C12.1672 9.75848 12.2635 9.74297 12.3668 9.72635Z" fill="black"/>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.12934 18.9876C4.15182 18.1669 4.17318 17.3641 4.19567 16.5625C4.20354 16.2545 4.22378 15.9475 4.21928 15.6395C4.21336 15.0293 4.33116 14.4242 4.56556 13.8608C4.65776 13.636 4.63639 13.5494 4.42053 13.4291C3.95619 13.1705 3.90335 12.8287 4.13046 12.3577C4.15447 12.2958 4.18867 12.2384 4.23165 12.1879C4.53722 11.8302 4.78838 11.4294 4.97706 10.9984C5.04899 10.8407 5.11059 10.6784 5.16144 10.5127C5.21428 10.3789 5.27387 10.2451 5.33346 10.1169C5.41144 10.0072 5.44409 9.87162 5.42462 9.73843C5.40514 9.60523 5.33503 9.48468 5.2289 9.40187C5.10635 9.26583 5.02765 9.0837 4.89161 8.96002C4.78909 8.87196 4.71434 8.75603 4.67642 8.62631C4.6385 8.49659 4.63905 8.35865 4.67799 8.22923C4.68239 8.18526 4.67655 8.14086 4.66095 8.09952C4.64535 8.05817 4.6204 8.02099 4.58805 7.99088C4.54362 7.95748 4.50951 7.91223 4.48963 7.86033C4.46974 7.80843 4.46489 7.75197 4.47562 7.69744C4.56631 6.00425 4.65701 4.31106 4.7477 2.61786C4.77918 2.08157 4.80391 1.54641 4.83315 1H6.39929C6.39929 1.19338 6.39929 1.37889 6.39929 1.56215C6.39929 1.98488 6.39929 2.40762 6.3858 2.83036C6.37681 3.07545 6.3397 3.32055 6.3116 3.56565C6.30035 3.66683 6.29473 3.74553 6.42403 3.79051C6.50738 3.83757 6.57681 3.90584 6.62528 3.98838C6.75907 4.17277 6.88499 4.36277 7.00754 4.55053C7.03002 4.58538 7.04351 4.66296 7.02553 4.6787C6.86138 4.799 6.93446 4.94628 6.96819 5.09019C6.97599 5.15749 7.00075 5.22171 7.04014 5.27683C7.13927 5.36428 7.23137 5.45939 7.31559 5.56127C7.4001 5.69316 7.52638 5.79292 7.67425 5.8446C7.7743 5.89014 7.86129 5.96012 7.92721 6.04809C8.06775 6.20437 8.19929 6.36964 8.32634 6.53604C8.42078 6.65971 8.50623 6.79013 8.5928 6.91943C8.67937 7.04872 8.75357 7.18926 8.94695 7.15328C8.95819 7.15328 8.97843 7.14653 8.9818 7.15328C9.13133 7.38713 9.24939 7.21287 9.36856 7.11843C9.44906 7.20557 9.49186 7.32099 9.48765 7.43955C9.48344 7.5581 9.43255 7.67019 9.34608 7.75141C9.29416 7.8012 9.25301 7.86112 9.22516 7.92744C9.19732 7.99377 9.18337 8.06511 9.18418 8.13704C9.17743 8.24459 9.15034 8.34989 9.10435 8.44735C9.06176 8.51794 9.04445 8.60092 9.05528 8.68265C9.06611 8.76439 9.10443 8.84 9.16394 8.89706C9.29211 9.02973 9.27637 9.12192 9.13696 9.25009C9.02453 9.35016 8.9447 9.45022 9.05263 9.6065C9.07624 9.64022 9.0605 9.70993 9.05263 9.75828C9.03866 9.7916 9.03167 9.82743 9.0321 9.86356C9.03252 9.89968 9.04035 9.93534 9.05511 9.96832C9.06986 10.0013 9.09122 10.0309 9.11787 10.0553C9.14451 10.0797 9.17588 10.0984 9.21004 10.1102C9.50573 10.2518 9.77781 10.0933 9.83852 9.70206C9.9292 9.74049 10.0152 9.78915 10.0949 9.8471C10.1572 9.90431 10.2014 9.97859 10.2219 10.0607C10.3173 10.4608 10.5162 10.8287 10.7987 11.1277C10.8728 11.1924 10.9249 11.2786 10.9479 11.3743C10.9708 11.4699 10.9635 11.5704 10.9268 11.6617C11.0593 11.8203 11.2469 11.9227 11.4519 11.9484C11.5507 11.9759 11.6357 12.0392 11.6902 12.126C11.7362 12.2105 11.7623 12.3043 11.7667 12.4004C11.8015 12.6668 11.8791 12.8939 12.2265 12.876C12.4177 12.5938 12.7055 12.6601 13.0034 12.7332C13.018 12.4993 13.1586 12.5488 13.3115 12.5724C13.45 12.5818 13.589 12.5818 13.7275 12.5724C13.8334 12.565 13.9397 12.5753 14.0423 12.6027C14.1884 12.6578 14.4762 12.65 14.5673 12.5285C14.6153 12.4219 14.6446 12.3078 14.6539 12.1913C14.7325 12.1905 14.811 12.1988 14.8877 12.216C15.0473 12.272 15.1864 12.3747 15.2866 12.5109C15.3869 12.6471 15.4438 12.8104 15.4499 12.9794C15.4911 14.9162 15.532 16.8533 15.5724 18.7909C15.5724 18.8561 15.5724 18.9213 15.5724 19L4.12934 18.9876Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.7078 18.7423L10.9499 18.9528C10.7675 19.0935 10.7101 18.9303 10.6234 18.8402C10.593 18.859 10.5585 18.8703 10.5229 18.8732C10.4872 18.876 10.4514 18.8703 10.4184 18.8566C10.3854 18.8428 10.3561 18.8214 10.333 18.7941C10.31 18.7668 10.2937 18.7344 10.2856 18.6995C10.2372 18.5228 10.2282 18.2999 10.1134 18.1828C9.90625 17.97 10.0391 17.8991 10.1843 17.7764C10.2203 17.746 10.2057 17.6199 10.1764 17.5512C10.1359 17.4555 10.0526 17.3801 10.0019 17.2878C9.95129 17.1955 9.91076 17.0964 10.0841 17.0502C9.97718 16.8983 9.90851 16.7035 9.77454 16.6314C9.58315 16.529 9.5021 16.3376 9.33548 16.2262C9.25555 16.1721 9.20376 16.0641 9.06754 16.1395C9.02702 16.162 8.93132 16.0854 8.84914 16.0483L8.90768 15.9177C8.72334 15.8741 8.56358 15.7596 8.463 15.5991C8.45061 15.5766 8.4281 15.5473 8.40784 15.5451C8.15566 15.5158 8.08136 15.2783 7.92712 15.1353C7.90226 15.1062 7.88903 15.0689 7.88997 15.0306C7.85312 14.7692 7.91492 14.5036 8.06334 14.2853C8.18237 14.1428 8.24095 13.9594 8.22658 13.7742C8.22074 13.6458 8.24197 13.5176 8.28891 13.3979C8.33585 13.2783 8.40743 13.1698 8.49902 13.0796C8.29143 12.8874 8.03184 12.7605 7.75263 12.7148C7.70552 12.7164 7.66062 12.7352 7.62654 12.7678C7.53986 12.8364 7.45992 12.913 7.38787 12.976C7.26926 12.9416 7.1668 12.866 7.09891 12.7629C7.03102 12.6597 7.00215 12.5357 7.01749 12.4131C7.04392 12.2566 7.04392 12.0968 7.01749 11.9403C6.98485 11.8567 6.93629 11.7802 6.87452 11.7151C6.79951 11.6402 6.71773 11.5724 6.63022 11.5125C6.31935 11.2859 6.0478 11.0098 5.82641 10.6952C5.76674 10.6085 5.68006 10.5421 5.61814 10.4565C5.53146 10.3293 5.4504 10.1965 5.36709 10.0625C5.34125 10.0079 5.31153 9.95523 5.27815 9.90489C5.20948 9.82383 5.16558 9.75291 5.21511 9.63808C5.22163 9.60896 5.22231 9.57884 5.21709 9.54947C5.21187 9.52009 5.20086 9.49204 5.18471 9.46696C5.09597 9.29313 5.04261 9.10342 5.02773 8.90881C5.01285 8.71421 5.03674 8.51859 5.09803 8.33329C5.124 8.26169 5.17062 8.19939 5.232 8.15429C5.26686 8.1288 5.29438 8.09456 5.31178 8.05502C5.32917 8.01549 5.33583 7.97206 5.33107 7.92914C5.30517 7.26943 5.24213 7.41015 5.82303 7.23678C5.86911 7.23033 5.91135 7.2076 5.94212 7.1727C5.97289 7.1378 5.99015 7.09304 5.99078 7.04652C5.99582 6.91332 6.02843 6.78262 6.08657 6.66267C6.1447 6.54273 6.22708 6.43614 6.32851 6.34966C6.40394 6.28324 6.41294 6.11775 6.41745 5.99729C6.4125 5.87485 6.39091 5.75366 6.35328 5.63704C6.34612 5.61776 6.33502 5.60018 6.32067 5.58545C6.30632 5.57071 6.28905 5.55914 6.26997 5.55148C6.22914 5.54492 6.19024 5.52947 6.15603 5.50624C6.12182 5.483 6.09313 5.45254 6.07198 5.417C6.05082 5.38146 6.03773 5.34172 6.03362 5.30057C6.02951 5.25942 6.03449 5.21786 6.04819 5.17884C6.07728 5.08313 6.09874 4.98525 6.11236 4.88614C6.12362 4.70376 6.22494 4.65085 6.3893 4.63734C6.61446 4.6182 6.83962 4.57542 7.06477 4.53715C7.118 4.52627 7.16782 4.50271 7.21 4.46847C7.31695 4.38066 7.40589 4.27484 7.57363 4.33225C7.64906 4.35815 7.86746 4.13186 7.88772 4.05081C7.92166 3.89366 7.96873 3.73963 8.02845 3.59036C8.05434 3.53295 8.14102 3.49354 8.21195 3.4654C8.25395 3.4523 8.29028 3.42536 8.31502 3.38897C8.33975 3.35258 8.35144 3.30889 8.34817 3.26501C8.35492 2.99257 8.37744 2.719 8.37969 2.44657C8.37633 2.41385 8.36642 2.38214 8.35057 2.35332C8.33471 2.3245 8.31322 2.29917 8.28738 2.27882C8.16467 2.18426 8.01944 2.11671 7.90123 2.01652C7.82468 1.94897 7.72561 1.84314 7.72674 1.75533C7.72674 1.6011 7.6378 1.54143 7.54774 1.46488C7.45767 1.38833 7.33721 1.29939 7.24377 1.20482C7.19915 1.14444 7.16315 1.07813 7.13682 1.00781C7.24463 1.02924 7.35367 1.0439 7.4633 1.05172C9.64507 1.05172 11.8272 1.05172 14.0097 1.05172H14.254C14.2633 1.19704 14.255 1.34294 14.2293 1.48627C14.1914 1.61797 14.1867 1.75699 14.2156 1.89095C14.2444 2.02491 14.306 2.14965 14.3948 2.25406C14.5528 2.49628 14.6607 2.76767 14.7122 3.05224C14.7698 3.23458 14.8386 3.41317 14.9182 3.58698C14.9332 3.62774 14.9408 3.6708 14.9408 3.7142C14.9408 6.28399 14.9408 8.8534 14.9408 11.4224C14.9408 11.4337 14.9408 11.445 14.9014 11.4326C14.8429 11.5077 14.7884 11.5859 14.7381 11.6667C14.7269 11.687 14.7505 11.7467 14.7753 11.7647C14.9047 11.8604 14.8282 11.9369 14.755 12.0067C14.5861 12.1677 14.5951 12.2206 14.7989 12.3377C14.8185 12.3527 14.8341 12.3722 14.8445 12.3946C14.8549 12.4169 14.8597 12.4414 14.8586 12.466C14.8327 12.5933 14.8586 12.6833 15.0016 12.7193C14.9723 12.7914 14.9509 12.8556 14.9205 12.913C14.8991 12.9448 14.8894 12.9831 14.8931 13.0213C14.8968 13.0595 14.9136 13.0952 14.9408 13.1224C14.9741 13.1611 14.9987 13.2065 15.0129 13.2555C15.0271 13.3046 15.0306 13.3561 15.0232 13.4067C15.0157 13.4572 14.9974 13.5055 14.9696 13.5483C14.9418 13.5912 14.9051 13.6275 14.862 13.6549C14.7865 13.71 14.6908 13.7427 14.7392 13.8699C14.746 13.8879 14.7055 13.9228 14.692 13.9521C14.6558 14.0217 14.6366 14.0988 14.6357 14.1772L14.4252 14.2662C14.4646 14.4035 14.4612 14.4103 14.1685 14.8572L14.0311 14.8358L14.0953 15.0722C14.0548 15.1218 13.9951 15.1927 13.9399 15.2681C13.9069 15.3046 13.8844 15.3493 13.8746 15.3976C13.8746 15.5226 13.8476 15.6227 13.7396 15.6227C13.7035 15.7635 13.6698 15.8783 13.6484 15.9943C13.6484 16.0179 13.6799 16.0505 13.7137 16.1068L13.5943 16.1654C13.717 16.3905 13.7069 16.5211 13.5347 16.6821C13.5021 16.7039 13.4743 16.7322 13.453 16.7651C13.4317 16.798 13.4172 16.8348 13.4106 16.8735C13.404 16.9121 13.4053 16.9517 13.4144 16.9898C13.4235 17.028 13.4403 17.0638 13.4637 17.0953C13.5254 17.2223 13.5788 17.3532 13.6236 17.487C13.4637 17.487 13.3286 17.487 13.1935 17.487C13.1451 17.487 13.0697 17.487 13.0528 17.5118C12.9402 17.6874 12.7759 17.6672 12.6171 17.6458C12.5504 17.7515 12.5181 17.8753 12.5248 18.0001C12.5314 18.125 12.5767 18.2446 12.6543 18.3426C12.7838 18.4867 12.6307 18.5948 12.589 18.74C12.2794 18.5216 11.8854 18.5149 11.5983 18.2683C11.5722 18.2447 11.5415 18.2267 11.5082 18.2154C11.4749 18.204 11.4397 18.1996 11.4046 18.2023C11.3695 18.2051 11.3353 18.2149 11.3042 18.2313C11.273 18.2477 11.2456 18.2703 11.2234 18.2976C11.1401 18.3854 11.0692 18.4879 10.9791 18.5678C10.8933 18.6328 10.8026 18.6912 10.7078 18.7423Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.11285 18.9414C4.29281 18.7659 3.988 18.7164 4.00037 18.5657C4.28494 18.487 4.25457 18.2024 4.2377 18.0146C4.22083 17.8267 4.27369 17.8099 4.3558 17.7896C4.33899 17.7335 4.33288 17.6747 4.3378 17.6164C4.3686 17.5454 4.40627 17.4776 4.45028 17.4139C4.48104 17.3781 4.49709 17.332 4.49521 17.2848C4.49333 17.2377 4.47366 17.193 4.44016 17.1597C4.42324 17.1221 4.4145 17.0812 4.4145 17.0399C4.4145 16.9986 4.42324 16.9578 4.44016 16.9202C4.46603 16.856 4.48515 16.7413 4.63474 16.8077C4.70223 16.8403 4.8597 16.7638 4.92944 16.6952C5.02479 16.6116 5.09987 16.5074 5.14898 16.3904C5.19809 16.2735 5.21994 16.1469 5.21288 16.0203C5.31074 15.9708 5.42097 15.9202 5.52332 15.8595C5.54807 15.8449 5.55032 15.7931 5.56381 15.7594C5.61974 15.5633 5.69864 15.3745 5.79889 15.197C5.98774 14.9316 6.0682 14.6041 6.02385 14.2814C6.00923 14.1296 6.02385 13.9732 5.99685 13.8225C5.96365 13.7338 5.91698 13.6507 5.85851 13.5762C5.88405 13.496 5.88096 13.4094 5.84978 13.3313C5.8186 13.2531 5.76126 13.1882 5.68754 13.1476C5.54469 13.052 5.57506 12.9677 5.65717 12.8597C5.7206 12.7905 5.7682 12.7084 5.79664 12.619C5.80542 12.4821 5.80166 12.3447 5.7854 12.2084L5.72016 12.1859C5.78271 12.1309 5.85009 12.0816 5.92149 12.0386C5.95948 12.0217 5.99098 11.993 6.01126 11.9567C6.03153 11.9204 6.0395 11.8785 6.03397 11.8373C6.05347 10.3728 6.07484 8.90834 6.09808 7.44387C6.12883 5.41926 6.15995 3.39278 6.19144 1.36443C6.19144 1.32619 6.19144 1.28907 6.20156 1.19459C6.29349 1.31523 6.39961 1.42437 6.51763 1.51965C6.64568 1.59569 6.78893 1.64255 6.93717 1.65687C7.22819 1.67241 7.51763 1.60493 7.77176 1.46229C8.00459 1.34981 8.22167 1.19684 8.44663 1.06861C8.5059 1.02967 8.57393 1.00609 8.64459 1C10.8544 1 13.0665 1 15.2808 1C15.2977 1 15.3134 1 15.3584 1.00675C15.3584 1.05736 15.3584 1.11023 15.3584 1.16197C15.3787 5.06121 15.4 8.96045 15.4225 12.8597C15.4285 12.9191 15.4187 12.979 15.394 13.0333C15.3693 13.0877 15.3306 13.1345 15.2819 13.169C15.2506 13.1879 15.2242 13.214 15.2048 13.245C15.1854 13.2759 15.1735 13.3111 15.1701 13.3475C15.1667 13.3839 15.1719 13.4206 15.1853 13.4547C15.1986 13.4887 15.2198 13.5192 15.2471 13.5436C15.2881 13.5811 15.3154 13.6313 15.3246 13.6861C15.3338 13.741 15.3243 13.7973 15.2977 13.8461C15.1987 14.0902 15.2021 14.0913 15.4529 14.1149C15.4371 14.1622 15.4203 14.2083 15.4079 14.2555C15.3955 14.3028 15.391 14.3422 15.3865 14.368C15.2031 14.3968 15.0222 14.4401 14.8455 14.4974C14.6963 14.5706 14.5556 14.66 14.426 14.7639C14.3809 14.8082 14.3204 14.833 14.2572 14.833C14.1941 14.833 14.1335 14.8082 14.0885 14.7639C14.0017 14.6848 13.893 14.6335 13.7767 14.6169C13.6604 14.6002 13.5417 14.6189 13.4362 14.6706C13.3446 14.7354 13.2761 14.8277 13.2407 14.9341C13.2053 15.0406 13.2048 15.1555 13.2393 15.2622C13.3259 15.6941 13.2877 15.774 12.876 15.9483C12.7865 15.9793 12.7083 16.0364 12.6513 16.1121C12.5944 16.1879 12.5614 16.2789 12.5566 16.3735C12.5228 16.7042 12.5003 16.7109 12.182 16.7683C11.9245 16.811 11.8108 17.0068 11.7197 17.2182C11.6913 17.2789 11.6731 17.3439 11.6658 17.4106C11.6723 17.5473 11.6384 17.6829 11.5684 17.8005C11.4984 17.9181 11.3954 18.0125 11.2721 18.0719C11.1285 18.032 10.9817 18.0049 10.8334 17.9909C10.5263 17.9909 10.4566 17.9392 10.4544 17.6321C10.457 17.5335 10.4264 17.4368 10.3674 17.3576C10.3085 17.2785 10.2246 17.2214 10.1293 17.1957C10.0911 17.1856 10.0078 17.2407 9.98983 17.2835C9.96809 17.3542 9.95636 17.4277 9.95496 17.5017C9.8616 17.5017 9.75925 17.4837 9.69851 17.5242C9.65577 17.5534 9.67151 17.667 9.65802 17.7626C9.55196 17.8187 9.47121 17.913 9.43215 18.0264C9.39309 18.1398 9.39864 18.2639 9.44768 18.3734C9.28009 18.4116 9.11025 18.4577 8.94378 18.4858C8.88046 18.4846 8.81989 18.4597 8.77394 18.4161C8.73007 18.379 8.7132 18.3115 8.67608 18.2631C8.65509 18.2215 8.62389 18.1859 8.58539 18.1596C8.54688 18.1333 8.50234 18.1173 8.45593 18.1129C8.40952 18.1085 8.36276 18.1159 8.32002 18.1346C8.27728 18.1532 8.23996 18.1823 8.21155 18.2193C8.13935 18.2777 8.05588 18.3206 7.96635 18.3452C7.86996 18.3632 7.78171 18.4111 7.71423 18.4822C7.64675 18.5533 7.6035 18.644 7.59067 18.7412C7.57155 18.822 7.54442 18.9008 7.50968 18.9762C7.34547 18.8638 7.20037 18.7445 7.04403 18.6467C6.88069 18.5416 6.71004 18.4484 6.53338 18.3677C6.45214 18.3474 6.36715 18.3474 6.28592 18.3677C6.19482 18.379 6.10596 18.4094 6.01485 18.4184C5.98898 18.4184 5.93049 18.3767 5.93274 18.3587C5.94511 18.2339 5.85513 18.2069 5.7764 18.2181C5.74067 18.224 5.70677 18.238 5.67732 18.2591C5.64787 18.2802 5.62366 18.3077 5.60656 18.3396C5.57281 18.46 5.49408 18.4881 5.39397 18.5038C5.32832 18.5159 5.26366 18.5328 5.20051 18.5545C5.13414 18.5853 5.0591 18.5921 4.98829 18.5736C4.91748 18.5551 4.8553 18.5126 4.81246 18.4532C4.80098 18.4339 4.7854 18.4173 4.76683 18.4046C4.74826 18.392 4.72714 18.3835 4.70495 18.3799C4.68277 18.3762 4.66005 18.3775 4.6384 18.3835C4.61675 18.3896 4.59669 18.4003 4.57963 18.415C4.48627 18.4768 4.40866 18.5466 4.45703 18.6737C4.48334 18.7221 4.5059 18.7725 4.52452 18.8244C4.54081 18.8773 4.53803 18.9342 4.51664 18.9852C4.49977 19.01 4.41879 18.9976 4.36817 18.9909C4.27819 18.9762 4.19158 18.9571 4.11285 18.9414Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.60307 14.7604L3.24888 14.3106C3.36387 14.0191 3.39541 13.7014 3.33995 13.393C3.28581 13.2132 3.25742 13.0265 3.25562 12.8387C3.26206 12.6336 3.23315 12.429 3.17016 12.2337C3.15505 12.0365 3.16487 11.8382 3.1994 11.6434L2.89805 11.5523C2.89805 11.4804 2.89805 11.4107 2.89805 11.3398C2.68328 11.4185 2.64168 11.3848 2.61807 11.1532C2.57111 10.9009 2.59286 10.6407 2.68103 10.3998C2.69256 10.3529 2.68572 10.3034 2.66192 10.2615C2.59783 10.131 2.43703 10.0366 2.51687 9.84993C2.52361 9.83531 2.45615 9.77684 2.41567 9.75548C2.34019 9.71393 2.27823 9.65157 2.23716 9.57582C2.1961 9.50007 2.17766 9.41412 2.18403 9.32819C2.1754 9.25578 2.14524 9.18762 2.09745 9.13254C2.03529 9.06446 1.96759 9.00165 1.89505 8.94476C1.89505 8.9234 1.89505 8.90878 1.89505 8.90316C2.05247 8.74124 2.0075 8.60405 1.86469 8.45338C1.81656 8.38256 1.78964 8.29947 1.78711 8.21388C1.77024 8.10143 1.77136 7.98899 1.76574 7.89341C1.47901 7.74723 1.17204 7.68314 1 7.38629L1.36094 7.15353C1.14955 6.94888 1.14393 6.92077 1.2485 6.6554C1.33621 6.43052 1.42954 6.2135 1.50937 5.98861C1.53433 5.90383 1.53433 5.81365 1.50937 5.72887C1.51724 5.721 1.52286 5.70638 1.53073 5.70413C1.71964 5.6569 1.75562 5.53884 1.69153 5.3668C1.66567 5.29371 1.67016 5.21163 1.6443 5.14191C1.62744 5.09806 1.58021 5.03284 1.54648 5.03172C1.36994 5.02947 1.32946 4.90915 1.29573 4.77534C1.34145 4.75348 1.38087 4.72035 1.41028 4.67907C1.43969 4.63778 1.45813 4.58971 1.46386 4.53935C1.46959 4.48899 1.46243 4.43799 1.44306 4.39116C1.42368 4.34433 1.39271 4.30318 1.35307 4.2716C1.33186 4.24916 1.31592 4.22228 1.30639 4.19291C1.29686 4.16354 1.29398 4.13242 1.29798 4.10181C1.31484 4.0557 1.39468 4.02759 1.45202 4.00735C1.49613 3.99885 1.54135 3.99771 1.58583 4.00398L15.8943 4.01073H16.1079C16.1079 4.15353 16.1136 4.28959 16.1079 4.42564C16.1008 4.46371 16.1084 4.50308 16.1293 4.53569C16.1502 4.5683 16.1828 4.59168 16.2204 4.60106C16.267 4.61931 16.3124 4.64034 16.3564 4.66403C16.5611 4.76185 16.5892 4.85181 16.4543 5.03397C16.3352 5.17729 16.2569 5.35001 16.2277 5.53401C16.1984 5.71801 16.2192 5.9065 16.2879 6.07969C16.3365 6.19213 16.3701 6.31045 16.3879 6.43164C16.4273 6.86118 16.7388 7.00848 17.0828 7.12767L17.1301 7.14454C17.5382 7.26935 17.6226 7.37617 17.6709 7.8102C17.6812 7.85681 17.706 7.89894 17.7418 7.93052C17.8156 8.0061 17.8957 8.07531 17.9813 8.13741C18.0774 8.19757 18.159 8.27847 18.2198 8.37419C18.2807 8.46991 18.3195 8.57803 18.3332 8.69064C18.3498 8.75349 18.3901 8.80748 18.4457 8.84131C18.5963 8.94476 18.7594 9.03134 18.9112 9.13367C18.9347 9.14938 18.9547 9.16977 18.97 9.19356C18.9853 9.21736 18.9955 9.24405 19 9.27197C18.9944 9.57669 18.9843 9.88254 18.9561 10.1861C18.9474 10.2252 18.9308 10.262 18.9074 10.2945C18.884 10.3269 18.8543 10.3543 18.8201 10.375C18.6796 10.472 18.5777 10.6153 18.5322 10.7798C18.448 10.964 18.3447 11.1389 18.2241 11.3016C18.2028 11.3331 18.1387 11.3376 18.0948 11.3533C17.9737 11.377 17.8574 11.4207 17.7507 11.4826C17.5585 11.6045 17.3373 11.6732 17.1098 11.6816C16.9744 11.7127 16.8368 11.7338 16.6983 11.7446C16.6751 11.7426 16.6518 11.7453 16.6298 11.7526C16.6077 11.7598 16.5873 11.7715 16.5699 11.7868C16.5524 11.8022 16.5383 11.8209 16.5283 11.8418C16.5183 11.8628 16.5126 11.8856 16.5116 11.9088C16.4999 12.0027 16.4757 12.0945 16.4397 12.182C16.396 12.2728 16.3889 12.3769 16.4199 12.4728C16.4509 12.5687 16.5175 12.6489 16.6061 12.697C16.6572 12.7333 16.6999 12.78 16.7315 12.8341C16.7631 12.8882 16.7829 12.9484 16.7894 13.0107C16.8246 13.1192 16.8297 13.2353 16.8039 13.3464C16.7782 13.4576 16.7226 13.5596 16.6432 13.6415C16.5455 13.74 16.4689 13.8575 16.4183 13.9867C16.3676 14.1158 16.3439 14.254 16.3486 14.3927C16.35 14.4311 16.3369 14.4686 16.3119 14.4977C16.2869 14.5269 16.2518 14.5456 16.2136 14.5501C16.0843 14.5838 15.9584 14.6254 15.8302 14.6625C15.6525 14.7176 15.6053 14.7896 15.6166 14.9796C15.6267 15.1449 15.6357 15.3102 15.6469 15.498L15.2477 15.4463L15.2298 15.3237L15.0184 15.1101C14.8891 14.9762 14.7654 14.8368 14.6271 14.7131C14.5911 14.6805 14.5146 14.6895 14.4528 14.6906C12.9516 14.7232 11.4516 14.775 9.95502 14.7873C7.87031 14.8042 5.78561 14.793 3.7009 14.7941H3.58846L3.60307 14.7604Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 14.2914V5H1.15637C6.48887 5 11.821 5 17.1528 5C17.3609 5 17.4329 5.16425 17.5724 5.24525C17.6646 5.29812 17.74 5.38137 17.8345 5.42637C17.8694 5.44325 17.947 5.4005 17.9897 5.369C18.136 5.26662 18.1596 5.27112 18.2148 5.43087C18.2148 5.44437 18.226 5.4635 18.2361 5.468C18.3554 5.51637 18.3486 5.6165 18.3644 5.72112C18.3925 5.86512 18.3498 5.87187 18.2384 5.83362C18.222 5.8308 18.2053 5.83042 18.1889 5.8325C18.1191 5.92362 18.0561 5.99562 18.0033 6.0755C17.9747 6.12605 17.951 6.17916 17.9324 6.23412C17.9177 6.269 17.9132 6.3275 17.8896 6.33537C17.7411 6.3905 17.8188 6.46475 17.8739 6.52437C18.0055 6.66612 18.1461 6.80112 18.28 6.94175C18.2969 6.95975 18.2913 6.99687 18.3025 7.02162C18.3441 7.11387 18.3891 7.20387 18.4341 7.29387C18.4454 7.31525 18.4735 7.33325 18.4746 7.3535C18.4836 7.54137 18.649 7.54812 18.7671 7.60212C18.8427 7.62818 18.9207 7.64628 19 7.65612V14.2936L1 14.2914Z" fill="black"/>
3
+ </svg>