@hitsoft/ovolt 0.0.6 → 0.0.8

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 (36) hide show
  1. package/config/providers/hit-error-process-log-route.provider.d.ts +9 -0
  2. package/esm2020/config/ovolt-config.module.mjs +3 -1
  3. package/esm2020/config/providers/hit-error-process-log-route.provider.mjs +19 -0
  4. package/esm2020/lib/components/hit-latest-failed-process-logs/components/hit-latest-failed-process-log.component.mjs +68 -0
  5. package/esm2020/lib/components/hit-latest-failed-process-logs/hit-latest-failed-process-log-routing.module.mjs +26 -0
  6. package/esm2020/lib/components/hit-latest-failed-process-logs/hit-latest-failed-process-log.module.mjs +72 -0
  7. package/esm2020/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.mjs +7 -1
  8. package/esm2020/lib/components/hit-system-parameters/components/hit-system-parameter.component.mjs +21 -3
  9. package/esm2020/lib/ovolt-routing.module.mjs +3 -1
  10. package/esm2020/lib/proxy/system-parameters/models.mjs +1 -1
  11. package/esm2020/lib/proxy/system-parameters/system-parameter.service.mjs +2 -2
  12. package/fesm2015/hitsoft-ovolt-config.mjs +27 -9
  13. package/fesm2015/hitsoft-ovolt-config.mjs.map +1 -1
  14. package/fesm2015/hitsoft-ovolt.mjs +204 -43
  15. package/fesm2015/hitsoft-ovolt.mjs.map +1 -1
  16. package/fesm2020/hitsoft-ovolt-config.mjs +27 -9
  17. package/fesm2020/hitsoft-ovolt-config.mjs.map +1 -1
  18. package/fesm2020/hitsoft-ovolt.mjs +203 -43
  19. package/fesm2020/hitsoft-ovolt.mjs.map +1 -1
  20. package/lib/components/hit-latest-failed-process-logs/components/hit-latest-failed-process-log.component.d.ts +30 -0
  21. package/lib/components/hit-latest-failed-process-logs/hit-latest-failed-process-log-routing.module.d.ts +7 -0
  22. package/lib/components/hit-latest-failed-process-logs/hit-latest-failed-process-log.module.d.ts +16 -0
  23. package/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.d.ts +1 -0
  24. package/lib/components/hit-system-parameters/components/hit-system-parameter.component.d.ts +4 -0
  25. package/lib/proxy/system-parameters/models.d.ts +4 -0
  26. package/package.json +1 -1
  27. package/esm2020/config/hitsoft.Entegration-ovolt-config.mjs +0 -5
  28. package/esm2020/hitsoft.Entegration-ovolt.mjs +0 -5
  29. package/fesm2015/hitsoft.Entegration-ovolt-config.mjs +0 -85
  30. package/fesm2015/hitsoft.Entegration-ovolt-config.mjs.map +0 -1
  31. package/fesm2015/hitsoft.Entegration-ovolt.mjs +0 -630
  32. package/fesm2015/hitsoft.Entegration-ovolt.mjs.map +0 -1
  33. package/fesm2020/hitsoft.Entegration-ovolt-config.mjs +0 -85
  34. package/fesm2020/hitsoft.Entegration-ovolt-config.mjs.map +0 -1
  35. package/fesm2020/hitsoft.Entegration-ovolt.mjs +0 -631
  36. package/fesm2020/hitsoft.Entegration-ovolt.mjs.map +0 -1
@@ -0,0 +1,30 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DxDataGridComponent } from 'devextreme-angular';
3
+ import { LocalizationService, TrackByService } from '@abp/ng.core';
4
+ import { ProcessLogService } from '../../../proxy/process-logs/process-log.service';
5
+ import { HitProcessLogService } from '../../hit-proxy/hit-process-logs/hit-process-log.service';
6
+ import { ToasterService } from '@abp/ng.theme.shared';
7
+ import * as i0 from "@angular/core";
8
+ export declare class HitLatestFailedProcessLogComponent implements OnInit {
9
+ private service;
10
+ track: TrackByService;
11
+ readonly HitProcessLogService: HitProcessLogService;
12
+ private toaster;
13
+ private localization;
14
+ dxGrid: DxDataGridComponent;
15
+ private permissionService;
16
+ processLogDataSource: any;
17
+ isdeleteAll: boolean;
18
+ isRequestModalOpen: boolean;
19
+ selectedRequestModel: any;
20
+ isLoadingRequestModel: boolean;
21
+ actionMenuItems: any;
22
+ closeButtonOptions: any;
23
+ constructor(service: ProcessLogService, track: TrackByService, HitProcessLogService: HitProcessLogService, toaster: ToasterService, localization: LocalizationService);
24
+ ngOnInit(): void;
25
+ l(key: string): string;
26
+ initDataSource(): void;
27
+ showRequest(id: any): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitLatestFailedProcessLogComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<HitLatestFailedProcessLogComponent, "lib-hit-latest-failed-process-log", never, {}, {}, never, never, false>;
30
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class HitLatestFailedProcessLogRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitLatestFailedProcessLogRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitLatestFailedProcessLogRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitLatestFailedProcessLogRoutingModule>;
7
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/hit-latest-failed-process-log.component";
3
+ import * as i2 from "./hit-latest-failed-process-log-routing.module";
4
+ import * as i3 from "@abp/ng.core";
5
+ import * as i4 from "@abp/ng.theme.shared";
6
+ import * as i5 from "@volo/abp.commercial.ng.ui";
7
+ import * as i6 from "@ngx-validate/core";
8
+ import * as i7 from "@ng-bootstrap/ng-bootstrap";
9
+ import * as i8 from "@abp/ng.components/page";
10
+ import * as i9 from "devextreme-angular";
11
+ export declare class HitLatestFailedProcessLogModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<HitLatestFailedProcessLogModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<HitLatestFailedProcessLogModule, [typeof i1.HitLatestFailedProcessLogComponent], [typeof i2.HitLatestFailedProcessLogRoutingModule, typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.PageModule, typeof i9.DxDataGridModule, typeof i9.DxButtonModule, typeof i9.DxPopupModule, typeof i9.DxScrollViewModule, typeof i9.DxTemplateModule, typeof i9.DxDropDownButtonModule], never>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<HitLatestFailedProcessLogModule>;
15
+ }
16
+ export declare function loadHitLatestFailedProcessLogModuleAsChild(): Promise<typeof HitLatestFailedProcessLogModule>;
@@ -10,6 +10,7 @@ export declare class HitProcessLogService {
10
10
  get LoadProcessLogs(): import("devextreme/data/custom_store").default<any, any>;
11
11
  getRequestModel: (input: GetRequestModelDto) => import("rxjs").Observable<string>;
12
12
  deleteAll: () => import("rxjs").Observable<boolean>;
13
+ get LoadLatestFailedProcessLogs(): import("devextreme/data/custom_store").default<any, any>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<HitProcessLogService, never>;
14
15
  static ɵprov: i0.ɵɵInjectableDeclaration<HitProcessLogService>;
15
16
  }
@@ -25,6 +25,10 @@ export declare class HitSystemParameterComponent implements OnInit {
25
25
  buildForm(): void;
26
26
  loadData(): void;
27
27
  save(): void;
28
+ optionalEmailValidator(control: any): {
29
+ invalidEmails: boolean;
30
+ };
31
+ sanitizeEmails(): void;
28
32
  static ɵfac: i0.ɵɵFactoryDeclaration<HitSystemParameterComponent, never>;
29
33
  static ɵcmp: i0.ɵɵComponentDeclaration<HitSystemParameterComponent, "lib-hit-system-parameter", never, {}, {}, never, never, false>;
30
34
  }
@@ -24,6 +24,7 @@ export interface GetSystemParametersInput extends PagedAndSortedResultRequestDto
24
24
  eFaturaPdfBaseUrl?: string;
25
25
  eArsivPdfBaseUrl?: string;
26
26
  vendorDebitorAccount?: string;
27
+ mailAddresses?: string;
27
28
  }
28
29
  export interface SystemParameterCreateDto {
29
30
  sharzNetCustomerSeries?: string;
@@ -45,6 +46,7 @@ export interface SystemParameterCreateDto {
45
46
  eFaturaPdfBaseUrl?: string;
46
47
  eArsivPdfBaseUrl?: string;
47
48
  vendorDebitorAccount?: string;
49
+ mailAddresses?: string;
48
50
  }
49
51
  export interface SystemParameterDto extends FullAuditedEntityDto<string> {
50
52
  sharzNetCustomerSeries?: string;
@@ -66,6 +68,7 @@ export interface SystemParameterDto extends FullAuditedEntityDto<string> {
66
68
  eFaturaPdfBaseUrl?: string;
67
69
  eArsivPdfBaseUrl?: string;
68
70
  vendorDebitorAccount?: string;
71
+ mailAddresses?: string;
69
72
  concurrencyStamp?: string;
70
73
  }
71
74
  export interface SystemParameterUpdateDto {
@@ -88,5 +91,6 @@ export interface SystemParameterUpdateDto {
88
91
  eFaturaPdfBaseUrl?: string;
89
92
  eArsivPdfBaseUrl?: string;
90
93
  vendorDebitorAccount?: string;
94
+ mailAddresses?: string;
91
95
  concurrencyStamp?: string;
92
96
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/ovolt",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGl0c29mdC5FbnRlZ3JhdGlvbi1vdm9sdC1jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9vdm9sdC9jb25maWcvc3JjL2hpdHNvZnQuRW50ZWdyYXRpb24tb3ZvbHQtY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGl0c29mdC5FbnRlZ3JhdGlvbi1vdm9sdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL292b2x0L3NyYy9oaXRzb2Z0LkVudGVncmF0aW9uLW92b2x0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -1,85 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { APP_INITIALIZER, NgModule } from '@angular/core';
3
- import { RoutesService } from '@abp/ng.core';
4
-
5
- const OVOLT_ROUTE_PROVIDERS = [
6
- {
7
- provide: APP_INITIALIZER,
8
- useFactory: configureRoutes$2,
9
- deps: [RoutesService],
10
- multi: true,
11
- },
12
- ];
13
- function configureRoutes$2(routes) {
14
- return () => {
15
- routes.add([
16
- {
17
- path: '/ovolt',
18
- name: "Ovolt::Menu:Ovolt" /* eOvoltRouteNames.Ovolt */,
19
- iconClass: 'fas fa-book',
20
- layout: "application" /* eLayoutType.application */,
21
- order: 3,
22
- },
23
- ]);
24
- };
25
- }
26
-
27
- const PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER = [
28
- { provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
29
- ];
30
- function configureRoutes$1(routes) {
31
- return () => {
32
- routes.add([
33
- {
34
- path: '/ovolt/process-logs',
35
- parentName: "Ovolt::Menu:Ovolt" /* eOvoltRouteNames.Ovolt */,
36
- name: 'Ovolt::Menu:ProcessLogs',
37
- layout: "application" /* eLayoutType.application */,
38
- requiredPolicy: 'Ovolt.ProcessLogs',
39
- },
40
- ]);
41
- };
42
- }
43
-
44
- const SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER = [
45
- { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
46
- ];
47
- function configureRoutes(routes) {
48
- return () => {
49
- routes.add([
50
- {
51
- path: '/ovolt/system-parameters',
52
- parentName: "Ovolt::Menu:Ovolt" /* eOvoltRouteNames.Ovolt */,
53
- name: 'Ovolt::Menu:SystemParameters',
54
- layout: "application" /* eLayoutType.application */,
55
- requiredPolicy: 'Ovolt.SystemParameters',
56
- },
57
- ]);
58
- };
59
- }
60
-
61
- class OvoltConfigModule {
62
- static forRoot() {
63
- return {
64
- ngModule: OvoltConfigModule,
65
- providers: [
66
- OVOLT_ROUTE_PROVIDERS,
67
- PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER,
68
- SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER,
69
- ],
70
- };
71
- }
72
- }
73
- OvoltConfigModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: OvoltConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
74
- OvoltConfigModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: OvoltConfigModule });
75
- OvoltConfigModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: OvoltConfigModule });
76
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: OvoltConfigModule, decorators: [{
77
- type: NgModule
78
- }] });
79
-
80
- /**
81
- * Generated bundle index. Do not edit.
82
- */
83
-
84
- export { OVOLT_ROUTE_PROVIDERS, OvoltConfigModule, configureRoutes$2 as configureRoutes };
85
- //# sourceMappingURL=hitsoft.Entegration-ovolt-config.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"hitsoft.Entegration-ovolt-config.mjs","sources":["../../../projects/ovolt/config/src/providers/route.provider.ts","../../../projects/ovolt/config/src/providers/process-log-route.provider.ts","../../../projects/ovolt/config/src/providers/system-parameter-route.provider.ts","../../../projects/ovolt/config/src/ovolt-config.module.ts","../../../projects/ovolt/config/src/hitsoft.Entegration-ovolt-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const OVOLT_ROUTE_PROVIDERS = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt',\r\n name: eOvoltRouteNames.Ovolt,\r\n iconClass: 'fas fa-book',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\nimport { APP_INITIALIZER } from '@angular/core';\nimport { eOvoltRouteNames } from '../enums/route-names';\n\nexport const PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER = [\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\n];\n\nfunction configureRoutes(routes: RoutesService) {\n return () => {\n routes.add([\n {\n path: '/ovolt/process-logs',\n parentName: eOvoltRouteNames.Ovolt,\n name: 'Ovolt::Menu:ProcessLogs',\n layout: eLayoutType.application,\n requiredPolicy: 'Ovolt.ProcessLogs',\n },\n ]);\n };\n}\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\nimport { APP_INITIALIZER } from '@angular/core';\nimport { eOvoltRouteNames } from '../enums/route-names';\n\nexport const SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER = [\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\n];\n\nfunction configureRoutes(routes: RoutesService) {\n return () => {\n routes.add([\n {\n path: '/ovolt/system-parameters',\n parentName: eOvoltRouteNames.Ovolt,\n name: 'Ovolt::Menu:SystemParameters',\n layout: eLayoutType.application,\n requiredPolicy: 'Ovolt.SystemParameters',\n },\n ]);\n };\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\nimport { OVOLT_ROUTE_PROVIDERS } from './providers/route.provider';\nimport { PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER } from './providers/process-log-route.provider';\nimport { SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER } from './providers/system-parameter-route.provider';\n\n@NgModule()\nexport class OvoltConfigModule {\n static forRoot(): ModuleWithProviders<OvoltConfigModule> {\n return {\n ngModule: OvoltConfigModule,\n providers: [\n OVOLT_ROUTE_PROVIDERS,\n PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER,\n SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER,\n ],\n };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["configureRoutes"],"mappings":";;;;AAIa,MAAA,qBAAqB,GAAG;AACnC,IAAA;AACE,QAAA,OAAO,EAAE,eAAe;AACxB,QAAA,UAAU,EAAEA,iBAAe;QAC3B,IAAI,EAAE,CAAC,aAAa,CAAC;AACrB,QAAA,KAAK,EAAE,IAAI;AACZ,KAAA;EACD;AAEI,SAAUA,iBAAe,CAAC,MAAqB,EAAA;AACnD,IAAA,OAAO,MAAK;QACV,MAAM,CAAC,GAAG,CAAC;AACT,YAAA;AACE,gBAAA,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAwB,mBAAA;AAC5B,gBAAA,SAAS,EAAE,aAAa;gBACxB,MAAM,EAAyB,aAAA;AAC/B,gBAAA,KAAK,EAAE,CAAC;AACT,aAAA;AACF,SAAA,CAAC,CAAC;AACL,KAAC,CAAC;AACJ;;ACrBO,MAAM,uCAAuC,GAAG;AACrD,IAAA,EAAE,OAAO,EAAE,eAAe,EAAE,UAAU,EAAEA,iBAAe,EAAE,IAAI,EAAE,CAAC,aAAa,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE;CAC9F,CAAC;AAEF,SAASA,iBAAe,CAAC,MAAqB,EAAA;AAC5C,IAAA,OAAO,MAAK;QACV,MAAM,CAAC,GAAG,CAAC;AACT,YAAA;AACE,gBAAA,IAAI,EAAE,qBAAqB;gBAC3B,UAAU,EAAwB,mBAAA;AAClC,gBAAA,IAAI,EAAE,yBAAyB;gBAC/B,MAAM,EAAyB,aAAA;AAC/B,gBAAA,cAAc,EAAE,mBAAmB;AACpC,aAAA;AACF,SAAA,CAAC,CAAC;AACL,KAAC,CAAC;AACJ;;AChBO,MAAM,iDAAiD,GAAG;AAC/D,IAAA,EAAE,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,aAAa,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE;CAC9F,CAAC;AAEF,SAAS,eAAe,CAAC,MAAqB,EAAA;AAC5C,IAAA,OAAO,MAAK;QACV,MAAM,CAAC,GAAG,CAAC;AACT,YAAA;AACE,gBAAA,IAAI,EAAE,0BAA0B;gBAChC,UAAU,EAAwB,mBAAA;AAClC,gBAAA,IAAI,EAAE,8BAA8B;gBACpC,MAAM,EAAyB,aAAA;AAC/B,gBAAA,cAAc,EAAE,wBAAwB;AACzC,aAAA;AACF,SAAA,CAAC,CAAC;AACL,KAAC,CAAC;AACJ;;MCda,iBAAiB,CAAA;AAC5B,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO;AACL,YAAA,QAAQ,EAAE,iBAAiB;AAC3B,YAAA,SAAS,EAAE;gBACT,qBAAqB;gBACrB,uCAAuC;gBACvC,iDAAiD;AAClD,aAAA;SACF,CAAC;KACH;;8GAVU,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAjB,iBAAiB,EAAA,CAAA,CAAA;+GAAjB,iBAAiB,EAAA,CAAA,CAAA;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAD7B,QAAQ;;;ACLT;;AAEG;;;;"}