@ckb-ccc/joy-id 0.0.9-alpha.2 → 0.0.10-alpha.4
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/dist/btc/index.d.ts +0 -1
- package/dist/btc/index.d.ts.map +1 -1
- package/dist/btc/index.js +0 -7
- package/dist/ckb/index.d.ts +0 -1
- package/dist/ckb/index.d.ts.map +1 -1
- package/dist/ckb/index.js +0 -7
- package/dist/evm/index.d.ts +2 -3
- package/dist/evm/index.d.ts.map +1 -1
- package/dist/evm/index.js +1 -8
- package/dist/nostr/index.d.ts +0 -1
- package/dist/nostr/index.d.ts.map +1 -1
- package/dist/nostr/index.js +0 -7
- package/dist.commonjs/advanced.d.ts +1 -1
- package/dist.commonjs/advanced.js +40 -19
- package/dist.commonjs/advancedBarrel.d.ts +1 -1
- package/dist.commonjs/advancedBarrel.js +30 -14
- package/dist.commonjs/barrel.d.ts +1 -1
- package/dist.commonjs/barrel.js +30 -14
- package/dist.commonjs/btc/index.d.ts +67 -60
- package/dist.commonjs/btc/index.d.ts.map +1 -1
- package/dist.commonjs/btc/index.js +176 -148
- package/dist.commonjs/ckb/index.d.ts +122 -116
- package/dist.commonjs/ckb/index.d.ts.map +1 -1
- package/dist.commonjs/ckb/index.js +312 -262
- package/dist.commonjs/common/index.d.ts +34 -21
- package/dist.commonjs/common/index.js +50 -45
- package/dist.commonjs/connectionsStorage/index.d.ts +53 -44
- package/dist.commonjs/connectionsStorage/index.js +49 -44
- package/dist.commonjs/evm/index.d.ts +68 -63
- package/dist.commonjs/evm/index.d.ts.map +1 -1
- package/dist.commonjs/evm/index.js +143 -127
- package/dist.commonjs/index.d.ts +1 -1
- package/dist.commonjs/index.js +40 -19
- package/dist.commonjs/nostr/index.d.ts +59 -54
- package/dist.commonjs/nostr/index.d.ts.map +1 -1
- package/dist.commonjs/nostr/index.js +127 -114
- package/dist.commonjs/signerFactory/index.d.ts +7 -2
- package/dist.commonjs/signerFactory/index.js +54 -31
- package/package.json +3 -3
- package/src/btc/index.ts +0 -8
- package/src/ckb/index.ts +0 -8
- package/src/evm/index.ts +3 -11
- package/src/nostr/index.ts +0 -8
|
@@ -11,134 +11,150 @@ const connectionsStorage_1 = require("../connectionsStorage");
|
|
|
11
11
|
* @extends {ccc.SignerEvm}
|
|
12
12
|
*/
|
|
13
13
|
class EvmSigner extends core_1.ccc.SignerEvm {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
return this.connection;
|
|
14
|
+
/**
|
|
15
|
+
* Ensures that the signer is connected and returns the connection.
|
|
16
|
+
* @private
|
|
17
|
+
* @throws Will throw an error if not connected.
|
|
18
|
+
* @returns {Connection} The current connection.
|
|
19
|
+
*/
|
|
20
|
+
assertConnection() {
|
|
21
|
+
if (!this.isConnected() || !this.connection) {
|
|
22
|
+
throw new Error("Not connected");
|
|
25
23
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
* Signs a raw message with the EVM account.
|
|
106
|
-
* @param {string | ccc.BytesLike} message - The message to sign.
|
|
107
|
-
* @returns {Promise<ccc.Hex>} A promise that resolves to the signed message.
|
|
108
|
-
*/
|
|
109
|
-
async signMessageRaw(message) {
|
|
110
|
-
const { address } = this.assertConnection();
|
|
111
|
-
const challenge = typeof message === "string" ? message : core_1.ccc.hexFrom(message).slice(2);
|
|
112
|
-
const config = this.getConfig();
|
|
113
|
-
const { signature } = await (0, common_2.createPopup)((0, common_1.buildJoyIDURL)({
|
|
114
|
-
...config,
|
|
115
|
-
challenge,
|
|
116
|
-
isData: typeof message !== "string",
|
|
117
|
-
address,
|
|
118
|
-
}, "popup", "/sign-message"), { ...config, type: common_1.DappRequestType.SignMessage });
|
|
119
|
-
return core_1.ccc.hexFrom(signature);
|
|
120
|
-
}
|
|
121
|
-
/**
|
|
122
|
-
* Saves the current connection.
|
|
123
|
-
* @private
|
|
124
|
-
* @returns {Promise<void>}
|
|
125
|
-
*/
|
|
126
|
-
async saveConnection() {
|
|
127
|
-
return this.connectionsRepo.set({
|
|
128
|
-
uri: this.getConfig().joyidAppURL,
|
|
129
|
-
addressType: "ethereum",
|
|
130
|
-
}, this.connection);
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* Restores the previous connection.
|
|
134
|
-
* @private
|
|
135
|
-
* @returns {Promise<void>}
|
|
136
|
-
*/
|
|
137
|
-
async restoreConnection() {
|
|
138
|
-
this.connection = await this.connectionsRepo.get({
|
|
139
|
-
uri: this.getConfig().joyidAppURL,
|
|
140
|
-
addressType: "ethereum",
|
|
141
|
-
});
|
|
24
|
+
return this.connection;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Creates an instance of EvmSigner.
|
|
28
|
+
* @param client - The client instance.
|
|
29
|
+
* @param name - The name of the signer.
|
|
30
|
+
* @param icon - The icon URL of the signer.
|
|
31
|
+
* @param appUri - The application URI.
|
|
32
|
+
* @param connectionsRepo - The connections repository.
|
|
33
|
+
*/
|
|
34
|
+
constructor(
|
|
35
|
+
client,
|
|
36
|
+
name,
|
|
37
|
+
icon,
|
|
38
|
+
_appUri,
|
|
39
|
+
connectionsRepo = new connectionsStorage_1.ConnectionsRepoLocalStorage(),
|
|
40
|
+
) {
|
|
41
|
+
super(client);
|
|
42
|
+
this.name = name;
|
|
43
|
+
this.icon = icon;
|
|
44
|
+
this._appUri = _appUri;
|
|
45
|
+
this.connectionsRepo = connectionsRepo;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Gets the configuration for JoyID.
|
|
49
|
+
* @private
|
|
50
|
+
* @returns {object} The configuration object.
|
|
51
|
+
*/
|
|
52
|
+
getConfig() {
|
|
53
|
+
return {
|
|
54
|
+
redirectURL: location.href,
|
|
55
|
+
joyidAppURL:
|
|
56
|
+
this._appUri ?? this.client.addressPrefix === "ckb"
|
|
57
|
+
? "https://app.joy.id"
|
|
58
|
+
: "https://testnet.joyid.dev",
|
|
59
|
+
requestNetwork: `ethereum`,
|
|
60
|
+
name: this.name,
|
|
61
|
+
logo: this.icon,
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Gets the EVM account address.
|
|
66
|
+
* @returns A promise that resolves to the EVM account address.
|
|
67
|
+
*/
|
|
68
|
+
async getEvmAccount() {
|
|
69
|
+
return this.assertConnection().address;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Connects to the provider by requesting authentication.
|
|
73
|
+
* @returns {Promise<void>} A promise that resolves when the connection is established.
|
|
74
|
+
*/
|
|
75
|
+
async connect() {
|
|
76
|
+
const config = this.getConfig();
|
|
77
|
+
const res = await (0, common_2.createPopup)(
|
|
78
|
+
(0, common_1.buildJoyIDURL)(config, "popup", "/auth"),
|
|
79
|
+
{
|
|
80
|
+
...config,
|
|
81
|
+
type: common_1.DappRequestType.Auth,
|
|
82
|
+
},
|
|
83
|
+
);
|
|
84
|
+
this.connection = {
|
|
85
|
+
address: res.ethAddress,
|
|
86
|
+
publicKey: core_1.ccc.hexFrom(res.pubkey),
|
|
87
|
+
keyType: res.keyType,
|
|
88
|
+
};
|
|
89
|
+
await this.saveConnection();
|
|
90
|
+
}
|
|
91
|
+
async disconnect() {
|
|
92
|
+
await super.disconnect();
|
|
93
|
+
this.connection = undefined;
|
|
94
|
+
await this.saveConnection();
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Checks if the signer is connected.
|
|
98
|
+
* @returns {Promise<boolean>} A promise that resolves to true if connected, false otherwise.
|
|
99
|
+
*/
|
|
100
|
+
async isConnected() {
|
|
101
|
+
if (this.connection) {
|
|
102
|
+
return true;
|
|
142
103
|
}
|
|
104
|
+
await this.restoreConnection();
|
|
105
|
+
return this.connection !== undefined;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Signs a raw message with the EVM account.
|
|
109
|
+
* @param {string | ccc.BytesLike} message - The message to sign.
|
|
110
|
+
* @returns {Promise<ccc.Hex>} A promise that resolves to the signed message.
|
|
111
|
+
*/
|
|
112
|
+
async signMessageRaw(message) {
|
|
113
|
+
const { address } = this.assertConnection();
|
|
114
|
+
const challenge =
|
|
115
|
+
typeof message === "string"
|
|
116
|
+
? message
|
|
117
|
+
: core_1.ccc.hexFrom(message).slice(2);
|
|
118
|
+
const config = this.getConfig();
|
|
119
|
+
const { signature } = await (0, common_2.createPopup)(
|
|
120
|
+
(0, common_1.buildJoyIDURL)(
|
|
121
|
+
{
|
|
122
|
+
...config,
|
|
123
|
+
challenge,
|
|
124
|
+
isData: typeof message !== "string",
|
|
125
|
+
address,
|
|
126
|
+
},
|
|
127
|
+
"popup",
|
|
128
|
+
"/sign-message",
|
|
129
|
+
),
|
|
130
|
+
{ ...config, type: common_1.DappRequestType.SignMessage },
|
|
131
|
+
);
|
|
132
|
+
return core_1.ccc.hexFrom(signature);
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Saves the current connection.
|
|
136
|
+
* @private
|
|
137
|
+
* @returns {Promise<void>}
|
|
138
|
+
*/
|
|
139
|
+
async saveConnection() {
|
|
140
|
+
return this.connectionsRepo.set(
|
|
141
|
+
{
|
|
142
|
+
uri: this.getConfig().joyidAppURL,
|
|
143
|
+
addressType: "ethereum",
|
|
144
|
+
},
|
|
145
|
+
this.connection,
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Restores the previous connection.
|
|
150
|
+
* @private
|
|
151
|
+
* @returns {Promise<void>}
|
|
152
|
+
*/
|
|
153
|
+
async restoreConnection() {
|
|
154
|
+
this.connection = await this.connectionsRepo.get({
|
|
155
|
+
uri: this.getConfig().joyidAppURL,
|
|
156
|
+
addressType: "ethereum",
|
|
157
|
+
});
|
|
158
|
+
}
|
|
143
159
|
}
|
|
144
160
|
exports.EvmSigner = EvmSigner;
|
package/dist.commonjs/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * as JoyId from "./barrel";
|
|
2
|
-
//# sourceMappingURL=index.d.ts.map
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist.commonjs/index.js
CHANGED
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding =
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
2
|
+
var __createBinding =
|
|
3
|
+
(this && this.__createBinding) ||
|
|
4
|
+
(Object.create
|
|
5
|
+
? function (o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (
|
|
9
|
+
!desc ||
|
|
10
|
+
("get" in desc ? !m.__esModule : desc.writable || desc.configurable)
|
|
11
|
+
) {
|
|
12
|
+
desc = {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return m[k];
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
Object.defineProperty(o, k2, desc);
|
|
20
|
+
}
|
|
21
|
+
: function (o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
o[k2] = m[k];
|
|
24
|
+
});
|
|
25
|
+
var __setModuleDefault =
|
|
26
|
+
(this && this.__setModuleDefault) ||
|
|
27
|
+
(Object.create
|
|
28
|
+
? function (o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}
|
|
31
|
+
: function (o, v) {
|
|
32
|
+
o["default"] = v;
|
|
33
|
+
});
|
|
34
|
+
var __importStar =
|
|
35
|
+
(this && this.__importStar) ||
|
|
36
|
+
function (mod) {
|
|
19
37
|
if (mod && mod.__esModule) return mod;
|
|
20
38
|
var result = {};
|
|
21
|
-
if (mod != null)
|
|
39
|
+
if (mod != null)
|
|
40
|
+
for (var k in mod)
|
|
41
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k))
|
|
42
|
+
__createBinding(result, mod, k);
|
|
22
43
|
__setModuleDefault(result, mod);
|
|
23
44
|
return result;
|
|
24
|
-
};
|
|
45
|
+
};
|
|
25
46
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
47
|
exports.JoyId = void 0;
|
|
27
48
|
exports.JoyId = __importStar(require("./barrel"));
|
|
@@ -6,58 +6,63 @@ import { ConnectionsRepo } from "../connectionsStorage";
|
|
|
6
6
|
* @extends {ccc.SignerNostr}
|
|
7
7
|
*/
|
|
8
8
|
export declare class NostrSigner extends ccc.SignerNostr {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
9
|
+
private readonly name;
|
|
10
|
+
private readonly icon;
|
|
11
|
+
private readonly _appUri?;
|
|
12
|
+
private readonly connectionsRepo;
|
|
13
|
+
private connection?;
|
|
14
|
+
/**
|
|
15
|
+
* Ensures that the signer is connected and returns the connection.
|
|
16
|
+
* @private
|
|
17
|
+
* @throws Will throw an error if not connected.
|
|
18
|
+
* @returns {Connection} The current connection.
|
|
19
|
+
*/
|
|
20
|
+
private assertConnection;
|
|
21
|
+
/**
|
|
22
|
+
* Creates an instance of NostrSigner.
|
|
23
|
+
* @param client - The client instance.
|
|
24
|
+
* @param name - The name of the signer.
|
|
25
|
+
* @param icon - The icon URL of the signer.
|
|
26
|
+
* @param appUri - The application URI.
|
|
27
|
+
* @param connectionsRepo - The connections repository.
|
|
28
|
+
*/
|
|
29
|
+
constructor(
|
|
30
|
+
client: ccc.Client,
|
|
31
|
+
name: string,
|
|
32
|
+
icon: string,
|
|
33
|
+
_appUri?: string | undefined,
|
|
34
|
+
connectionsRepo?: ConnectionsRepo,
|
|
35
|
+
);
|
|
36
|
+
/**
|
|
37
|
+
* Gets the configuration for JoyID.
|
|
38
|
+
* @private
|
|
39
|
+
* @returns {object} The configuration object.
|
|
40
|
+
*/
|
|
41
|
+
private getConfig;
|
|
42
|
+
/**
|
|
43
|
+
* Connects to the provider by requesting authentication.
|
|
44
|
+
* @returns {Promise<void>} A promise that resolves when the connection is established.
|
|
45
|
+
*/
|
|
46
|
+
connect(): Promise<void>;
|
|
47
|
+
disconnect(): Promise<void>;
|
|
48
|
+
/**
|
|
49
|
+
* Checks if the signer is connected.
|
|
50
|
+
* @returns {Promise<boolean>} A promise that resolves to true if connected, false otherwise.
|
|
51
|
+
*/
|
|
52
|
+
isConnected(): Promise<boolean>;
|
|
53
|
+
getNostrPublicKey(): Promise<ccc.Hex>;
|
|
54
|
+
signNostrEvent(event: ccc.NostrEvent): Promise<Required<ccc.NostrEvent>>;
|
|
55
|
+
/**
|
|
56
|
+
* Saves the current connection.
|
|
57
|
+
* @private
|
|
58
|
+
* @returns {Promise<void>}
|
|
59
|
+
*/
|
|
60
|
+
private saveConnection;
|
|
61
|
+
/**
|
|
62
|
+
* Restores the previous connection.
|
|
63
|
+
* @private
|
|
64
|
+
* @returns {Promise<void>}
|
|
65
|
+
*/
|
|
66
|
+
private restoreConnection;
|
|
62
67
|
}
|
|
63
|
-
//# sourceMappingURL=index.d.ts.map
|
|
68
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/nostr/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AAGpC,OAAO,EAEL,eAAe,EAEhB,MAAM,uBAAuB,CAAC;AAE/B;;;;GAIG;AACH,qBAAa,WAAY,SAAQ,GAAG,CAAC,WAAW;IA2B5C,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC;IACzB,OAAO,CAAC,QAAQ,CAAC,eAAe;IA7BlC,OAAO,CAAC,UAAU,CAAC,CAAa;IAEhC;;;;;OAKG;IACH,OAAO,CAAC,gBAAgB;IAQxB;;;;;;;OAOG;gBAED,MAAM,EAAE,GAAG,CAAC,MAAM,EACD,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,oBAAQ,EAChB,eAAe,GAAE,eAAmD;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/nostr/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AAGpC,OAAO,EAEL,eAAe,EAEhB,MAAM,uBAAuB,CAAC;AAE/B;;;;GAIG;AACH,qBAAa,WAAY,SAAQ,GAAG,CAAC,WAAW;IA2B5C,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC;IACzB,OAAO,CAAC,QAAQ,CAAC,eAAe;IA7BlC,OAAO,CAAC,UAAU,CAAC,CAAa;IAEhC;;;;;OAKG;IACH,OAAO,CAAC,gBAAgB;IAQxB;;;;;;;OAOG;gBAED,MAAM,EAAE,GAAG,CAAC,MAAM,EACD,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,oBAAQ,EAChB,eAAe,GAAE,eAAmD;IAKvF;;;;OAIG;IACH,OAAO,CAAC,SAAS;IAajB;;;OAGG;IACG,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAexB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAOjC;;;OAGG;IACG,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAS/B,iBAAiB,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC;IAIrC,cAAc,CAClB,KAAK,EAAE,GAAG,CAAC,UAAU,GACpB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IAYpC;;;;OAIG;YACW,cAAc;IAU5B;;;;OAIG;YACW,iBAAiB;CAMhC"}
|