piral-tracking 1.6.0-beta.7216 → 1.6.0-beta.7243
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/create.js +3 -7
- package/lib/create.js.map +1 -1
- package/lib/index.js +2 -5
- package/lib/index.js.map +1 -1
- package/lib/types.js +2 -5
- package/lib/types.js.map +1 -1
- package/package.json +8 -22
- package/esm/create.d.ts +0 -11
- package/esm/create.js +0 -38
- package/esm/create.js.map +0 -1
- package/esm/index.d.ts +0 -2
- package/esm/index.js +0 -3
- package/esm/index.js.map +0 -1
- package/esm/types.d.ts +0 -135
- package/esm/types.js +0 -27
- package/esm/types.js.map +0 -1
package/lib/create.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createTrackingApi = void 0;
|
|
4
|
-
const types_1 = require("./types");
|
|
1
|
+
import { SeverityLevel } from './types';
|
|
5
2
|
/**
|
|
6
3
|
* Creates the Pilet API extensions for tracking and telemetry.
|
|
7
4
|
*/
|
|
8
|
-
function createTrackingApi(config = {}) {
|
|
5
|
+
export function createTrackingApi(config = {}) {
|
|
9
6
|
return () => (api, meta) => ({
|
|
10
7
|
trackEvent(name, properties = {}, measurements = {}) {
|
|
11
8
|
api.emit('track-event', {
|
|
@@ -15,7 +12,7 @@ function createTrackingApi(config = {}) {
|
|
|
15
12
|
measurements,
|
|
16
13
|
});
|
|
17
14
|
},
|
|
18
|
-
trackError(error, properties = {}, measurements = {}, severityLevel =
|
|
15
|
+
trackError(error, properties = {}, measurements = {}, severityLevel = SeverityLevel.information) {
|
|
19
16
|
api.emit('track-error', {
|
|
20
17
|
pilet: meta.name,
|
|
21
18
|
error,
|
|
@@ -38,5 +35,4 @@ function createTrackingApi(config = {}) {
|
|
|
38
35
|
},
|
|
39
36
|
});
|
|
40
37
|
}
|
|
41
|
-
exports.createTrackingApi = createTrackingApi;
|
|
42
38
|
//# sourceMappingURL=create.js.map
|
package/lib/create.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../src/create.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../src/create.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,aAAa,EAAE,MAAM,SAAS,CAAC;AAO1D;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,SAAyB,EAAE;IAC3D,OAAO,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;QAC3B,UAAU,CAAC,IAAI,EAAE,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE;YACjD,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE;gBACtB,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,UAAU;gBACV,YAAY;aACb,CAAC,CAAC;QACL,CAAC;QACD,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE,EAAE,aAAa,GAAG,aAAa,CAAC,WAAW;YAC7F,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE;gBACtB,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,KAAK;gBACL,UAAU;gBACV,YAAY;gBACZ,aAAa;aACd,CAAC,CAAC;QACL,CAAC;QACD,UAAU,CAAC,IAAI;YACb,GAAG,CAAC,IAAI,CAAC,mBAAmB,EAAE;gBAC5B,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;aACjB,CAAC,CAAC;YACH,OAAO,CAAC,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE,EAAE,EAAE,CAC5C,GAAG,CAAC,IAAI,CAAC,iBAAiB,EAAE;gBAC1B,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,UAAU;gBACV,YAAY;aACb,CAAC,CAAC;QACP,CAAC;KACF,CAAC,CAAC;AACL,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./create"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./types"), exports);
|
|
1
|
+
export * from './create';
|
|
2
|
+
export * from './types';
|
|
6
3
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
|
package/lib/types.js
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SeverityLevel = void 0;
|
|
4
1
|
/**
|
|
5
2
|
* The severity level of the tracking information.
|
|
6
3
|
*/
|
|
7
|
-
var SeverityLevel;
|
|
4
|
+
export var SeverityLevel;
|
|
8
5
|
(function (SeverityLevel) {
|
|
9
6
|
/**
|
|
10
7
|
* Verbose severity level.
|
|
@@ -26,5 +23,5 @@ var SeverityLevel;
|
|
|
26
23
|
* Critical severity level.
|
|
27
24
|
*/
|
|
28
25
|
SeverityLevel[SeverityLevel["critical"] = 4] = "critical";
|
|
29
|
-
})(SeverityLevel || (
|
|
26
|
+
})(SeverityLevel || (SeverityLevel = {}));
|
|
30
27
|
//# sourceMappingURL=types.js.map
|
package/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,MAAM,CAAN,IAAY,aAqBX;AArBD,WAAY,aAAa;IACvB;;OAEG;IACH,uDAAW,CAAA;IACX;;OAEG;IACH,+DAAe,CAAA;IACf;;OAEG;IACH,uDAAW,CAAA;IACX;;OAEG;IACH,mDAAS,CAAA;IACT;;OAEG;IACH,yDAAY,CAAA;AACd,CAAC,EArBW,aAAa,KAAb,aAAa,QAqBxB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-tracking",
|
|
3
|
-
"version": "1.6.0-beta.
|
|
3
|
+
"version": "1.6.0-beta.7243",
|
|
4
4
|
"description": "Plugin for tracking and telemetry events in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -18,29 +18,16 @@
|
|
|
18
18
|
"author": "smapiot",
|
|
19
19
|
"homepage": "https://piral.io",
|
|
20
20
|
"license": "MIT",
|
|
21
|
-
"module": "
|
|
21
|
+
"module": "lib/index.js",
|
|
22
22
|
"main": "lib/index.js",
|
|
23
23
|
"typings": "lib/index.d.ts",
|
|
24
24
|
"exports": {
|
|
25
|
-
".":
|
|
26
|
-
|
|
27
|
-
"require": "./lib/index.js"
|
|
28
|
-
},
|
|
29
|
-
"./esm/*": {
|
|
30
|
-
"import": "./esm/*"
|
|
31
|
-
},
|
|
32
|
-
"./lib/*": {
|
|
33
|
-
"require": "./lib/*"
|
|
34
|
-
},
|
|
35
|
-
"./_/*": {
|
|
36
|
-
"import": "./esm/*.js",
|
|
37
|
-
"require": "./lib/*.js"
|
|
38
|
-
},
|
|
25
|
+
".": "./lib/index.js",
|
|
26
|
+
"./lib/*": "./lib/*",
|
|
39
27
|
"./package.json": "./package.json"
|
|
40
28
|
},
|
|
41
29
|
"sideEffects": false,
|
|
42
30
|
"files": [
|
|
43
|
-
"esm",
|
|
44
31
|
"lib",
|
|
45
32
|
"src",
|
|
46
33
|
"piral-tracking.min.js"
|
|
@@ -54,15 +41,14 @@
|
|
|
54
41
|
},
|
|
55
42
|
"scripts": {
|
|
56
43
|
"cleanup": "rimraf esm lib piral-tracking.min.js",
|
|
57
|
-
"build": "yarn build:bundle && yarn build:
|
|
44
|
+
"build": "yarn build:bundle && yarn build:esnext",
|
|
58
45
|
"build:bundle": "esbuild src/index.ts --outfile=piral-tracking.min.js --bundle --external:piral-core --minify --global-name=piralTracking",
|
|
59
|
-
"build:
|
|
60
|
-
"build:esnext": "tsc --project tsconfig.json --outDir esm --module esnext",
|
|
46
|
+
"build:esnext": "tsc --project tsconfig.json --outDir lib --module esnext",
|
|
61
47
|
"typedoc": "typedoc --json ../../../docs/types/piral-tracking.json src --exclude \"src/**/*.test.*\"",
|
|
62
48
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
63
49
|
},
|
|
64
50
|
"devDependencies": {
|
|
65
|
-
"piral-core": "1.6.0-beta.
|
|
51
|
+
"piral-core": "1.6.0-beta.7243"
|
|
66
52
|
},
|
|
67
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "bbb6e4f78c61b6ef753099a5b378ad2708565ce3"
|
|
68
54
|
}
|
package/esm/create.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { PiralPlugin } from 'piral-core';
|
|
2
|
-
import { PiletTrackingApi } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* Available configuration options for the tracking plugin.
|
|
5
|
-
*/
|
|
6
|
-
export interface TrackingConfig {
|
|
7
|
-
}
|
|
8
|
-
/**
|
|
9
|
-
* Creates the Pilet API extensions for tracking and telemetry.
|
|
10
|
-
*/
|
|
11
|
-
export declare function createTrackingApi(config?: TrackingConfig): PiralPlugin<PiletTrackingApi>;
|
package/esm/create.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { SeverityLevel } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* Creates the Pilet API extensions for tracking and telemetry.
|
|
4
|
-
*/
|
|
5
|
-
export function createTrackingApi(config = {}) {
|
|
6
|
-
return () => (api, meta) => ({
|
|
7
|
-
trackEvent(name, properties = {}, measurements = {}) {
|
|
8
|
-
api.emit('track-event', {
|
|
9
|
-
name,
|
|
10
|
-
pilet: meta.name,
|
|
11
|
-
properties,
|
|
12
|
-
measurements,
|
|
13
|
-
});
|
|
14
|
-
},
|
|
15
|
-
trackError(error, properties = {}, measurements = {}, severityLevel = SeverityLevel.information) {
|
|
16
|
-
api.emit('track-error', {
|
|
17
|
-
pilet: meta.name,
|
|
18
|
-
error,
|
|
19
|
-
properties,
|
|
20
|
-
measurements,
|
|
21
|
-
severityLevel,
|
|
22
|
-
});
|
|
23
|
-
},
|
|
24
|
-
trackFrame(name) {
|
|
25
|
-
api.emit('track-frame-start', {
|
|
26
|
-
name,
|
|
27
|
-
pilet: meta.name,
|
|
28
|
-
});
|
|
29
|
-
return (properties = {}, measurements = {}) => api.emit('track-frame-end', {
|
|
30
|
-
name,
|
|
31
|
-
pilet: meta.name,
|
|
32
|
-
properties,
|
|
33
|
-
measurements,
|
|
34
|
-
});
|
|
35
|
-
},
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
//# sourceMappingURL=create.js.map
|
package/esm/create.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.js","sourceRoot":"","sources":["../src/create.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,aAAa,EAAE,MAAM,SAAS,CAAC;AAO1D;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,SAAyB,EAAE;IAC3D,OAAO,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;QAC3B,UAAU,CAAC,IAAI,EAAE,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE;YACjD,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE;gBACtB,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,UAAU;gBACV,YAAY;aACb,CAAC,CAAC;QACL,CAAC;QACD,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE,EAAE,aAAa,GAAG,aAAa,CAAC,WAAW;YAC7F,GAAG,CAAC,IAAI,CAAC,aAAa,EAAE;gBACtB,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,KAAK;gBACL,UAAU;gBACV,YAAY;gBACZ,aAAa;aACd,CAAC,CAAC;QACL,CAAC;QACD,UAAU,CAAC,IAAI;YACb,GAAG,CAAC,IAAI,CAAC,mBAAmB,EAAE;gBAC5B,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;aACjB,CAAC,CAAC;YACH,OAAO,CAAC,UAAU,GAAG,EAAE,EAAE,YAAY,GAAG,EAAE,EAAE,EAAE,CAC5C,GAAG,CAAC,IAAI,CAAC,iBAAiB,EAAE;gBAC1B,IAAI;gBACJ,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,UAAU;gBACV,YAAY;aACb,CAAC,CAAC;QACP,CAAC;KACF,CAAC,CAAC;AACL,CAAC"}
|
package/esm/index.d.ts
DELETED
package/esm/index.js
DELETED
package/esm/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
|
package/esm/types.d.ts
DELETED
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
declare module 'piral-core/lib/types/custom' {
|
|
2
|
-
interface PiralCustomEventMap {
|
|
3
|
-
'track-event': PiralTrackEventEvent;
|
|
4
|
-
'track-error': PiralTrackErrorEvent;
|
|
5
|
-
'track-frame-start': PiralTrackStartFrameEvent;
|
|
6
|
-
'track-frame-end': PiralTrackEndFrameEvent;
|
|
7
|
-
}
|
|
8
|
-
interface PiletCustomApi extends PiletTrackingApi {
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* The severity level of the tracking information.
|
|
13
|
-
*/
|
|
14
|
-
export declare enum SeverityLevel {
|
|
15
|
-
/**
|
|
16
|
-
* Verbose severity level.
|
|
17
|
-
*/
|
|
18
|
-
verbose = 0,
|
|
19
|
-
/**
|
|
20
|
-
* Information severity level.
|
|
21
|
-
*/
|
|
22
|
-
information = 1,
|
|
23
|
-
/**
|
|
24
|
-
* Warning severity level.
|
|
25
|
-
*/
|
|
26
|
-
warning = 2,
|
|
27
|
-
/**
|
|
28
|
-
* Error severity level.
|
|
29
|
-
*/
|
|
30
|
-
error = 3,
|
|
31
|
-
/**
|
|
32
|
-
* Critical severity level.
|
|
33
|
-
*/
|
|
34
|
-
critical = 4
|
|
35
|
-
}
|
|
36
|
-
export interface Tracker {
|
|
37
|
-
/**
|
|
38
|
-
* Finishes the created frame by optionally passing the given properties and measurements.
|
|
39
|
-
*/
|
|
40
|
-
(properties?: any, measurements?: any): void;
|
|
41
|
-
}
|
|
42
|
-
export interface PiralTrackEventEvent {
|
|
43
|
-
/**
|
|
44
|
-
* The name of the event.
|
|
45
|
-
*/
|
|
46
|
-
name: string;
|
|
47
|
-
/**
|
|
48
|
-
* The name of the pilet emitting the event, if any.
|
|
49
|
-
*/
|
|
50
|
-
pilet?: string;
|
|
51
|
-
/**
|
|
52
|
-
* The properties to collect.
|
|
53
|
-
*/
|
|
54
|
-
properties: any;
|
|
55
|
-
/**
|
|
56
|
-
* The measurements to record.
|
|
57
|
-
*/
|
|
58
|
-
measurements: any;
|
|
59
|
-
}
|
|
60
|
-
export interface PiralTrackErrorEvent {
|
|
61
|
-
/**
|
|
62
|
-
* The error to report.
|
|
63
|
-
*/
|
|
64
|
-
error: any;
|
|
65
|
-
/**
|
|
66
|
-
* The name of the pilet emitting the event, if any.
|
|
67
|
-
*/
|
|
68
|
-
pilet?: string;
|
|
69
|
-
/**
|
|
70
|
-
* The properties to collect.
|
|
71
|
-
*/
|
|
72
|
-
properties: any;
|
|
73
|
-
/**
|
|
74
|
-
* The measurements to record.
|
|
75
|
-
*/
|
|
76
|
-
measurements: any;
|
|
77
|
-
/**
|
|
78
|
-
* The severity level of the error to report.
|
|
79
|
-
*/
|
|
80
|
-
severityLevel: SeverityLevel;
|
|
81
|
-
}
|
|
82
|
-
export interface PiralTrackStartFrameEvent {
|
|
83
|
-
/**
|
|
84
|
-
* The name of the event.
|
|
85
|
-
*/
|
|
86
|
-
name: string;
|
|
87
|
-
/**
|
|
88
|
-
* The name of the pilet emitting the event, if any.
|
|
89
|
-
*/
|
|
90
|
-
pilet?: string;
|
|
91
|
-
}
|
|
92
|
-
export interface PiralTrackEndFrameEvent {
|
|
93
|
-
/**
|
|
94
|
-
* The name of the event.
|
|
95
|
-
*/
|
|
96
|
-
name: string;
|
|
97
|
-
/**
|
|
98
|
-
* The name of the pilet emitting the event, if any.
|
|
99
|
-
*/
|
|
100
|
-
pilet?: string;
|
|
101
|
-
/**
|
|
102
|
-
* The properties to collect.
|
|
103
|
-
*/
|
|
104
|
-
properties: any;
|
|
105
|
-
/**
|
|
106
|
-
* The measurements to record.
|
|
107
|
-
*/
|
|
108
|
-
measurements: any;
|
|
109
|
-
}
|
|
110
|
-
/**
|
|
111
|
-
* Defines the provided set of tracking and telemetry Pilet API extensions.
|
|
112
|
-
*/
|
|
113
|
-
export interface PiletTrackingApi {
|
|
114
|
-
/**
|
|
115
|
-
* Tracks a simple (singular) event at the current point in time.
|
|
116
|
-
* @param name The name of the event to track.
|
|
117
|
-
* @param properties The optional tracking properties to submit.
|
|
118
|
-
* @param measurements The optional tracking measurements to submit.
|
|
119
|
-
*/
|
|
120
|
-
trackEvent(name: string, properties?: any, measurements?: any): void;
|
|
121
|
-
/**
|
|
122
|
-
* Tracks an exception event at the current point in time.
|
|
123
|
-
* @param exception The Error from a catch clause, or the string error message.
|
|
124
|
-
* @param properties The optional tracking properties to submit.
|
|
125
|
-
* @param measurements The optional tracking measurements to submit.
|
|
126
|
-
* @param severityLevel The optional severity level of error.
|
|
127
|
-
*/
|
|
128
|
-
trackError(error: Error | string, properties?: any, measurements?: any, severityLevel?: SeverityLevel): void;
|
|
129
|
-
/**
|
|
130
|
-
* Starts tracking an event frame at the current point in time.
|
|
131
|
-
* @param name The name of the event to start tracking.
|
|
132
|
-
* @returns The method to use for ending the current event frame.
|
|
133
|
-
*/
|
|
134
|
-
trackFrame(name: string): Tracker;
|
|
135
|
-
}
|
package/esm/types.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The severity level of the tracking information.
|
|
3
|
-
*/
|
|
4
|
-
export var SeverityLevel;
|
|
5
|
-
(function (SeverityLevel) {
|
|
6
|
-
/**
|
|
7
|
-
* Verbose severity level.
|
|
8
|
-
*/
|
|
9
|
-
SeverityLevel[SeverityLevel["verbose"] = 0] = "verbose";
|
|
10
|
-
/**
|
|
11
|
-
* Information severity level.
|
|
12
|
-
*/
|
|
13
|
-
SeverityLevel[SeverityLevel["information"] = 1] = "information";
|
|
14
|
-
/**
|
|
15
|
-
* Warning severity level.
|
|
16
|
-
*/
|
|
17
|
-
SeverityLevel[SeverityLevel["warning"] = 2] = "warning";
|
|
18
|
-
/**
|
|
19
|
-
* Error severity level.
|
|
20
|
-
*/
|
|
21
|
-
SeverityLevel[SeverityLevel["error"] = 3] = "error";
|
|
22
|
-
/**
|
|
23
|
-
* Critical severity level.
|
|
24
|
-
*/
|
|
25
|
-
SeverityLevel[SeverityLevel["critical"] = 4] = "critical";
|
|
26
|
-
})(SeverityLevel || (SeverityLevel = {}));
|
|
27
|
-
//# sourceMappingURL=types.js.map
|
package/esm/types.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,MAAM,CAAN,IAAY,aAqBX;AArBD,WAAY,aAAa;IACvB;;OAEG;IACH,uDAAW,CAAA;IACX;;OAEG;IACH,+DAAe,CAAA;IACf;;OAEG;IACH,uDAAW,CAAA;IACX;;OAEG;IACH,mDAAS,CAAA;IACT;;OAEG;IACH,yDAAY,CAAA;AACd,CAAC,EArBW,aAAa,KAAb,aAAa,QAqBxB"}
|