@wildcatfi/wildcat-sdk 3.0.62-beta → 3.0.63-beta
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/constants.d.ts +1 -3
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +2 -7
- package/dist/constants.js.map +1 -1
- package/dist/gql/getMarketChartsData.d.ts +35 -0
- package/dist/gql/getMarketChartsData.d.ts.map +1 -0
- package/dist/gql/getMarketChartsData.js +56 -0
- package/dist/gql/getMarketChartsData.js.map +1 -0
- package/dist/gql/graphql.d.ts +42 -371
- package/dist/gql/graphql.d.ts.map +1 -1
- package/dist/gql/graphql.js +47 -1
- package/dist/gql/graphql.js.map +1 -1
- package/dist/gql/index.d.ts +1 -0
- package/dist/gql/index.d.ts.map +1 -1
- package/dist/gql/index.js +1 -0
- package/dist/gql/index.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/typechain/factories/index.d.ts +0 -2
- package/dist/typechain/factories/index.d.ts.map +1 -1
- package/dist/typechain/factories/index.js +1 -5
- package/dist/typechain/factories/index.js.map +1 -1
- package/dist/typechain/index.d.ts +0 -4
- package/dist/typechain/index.d.ts.map +1 -1
- package/dist/typechain/index.js +1 -5
- package/dist/typechain/index.js.map +1 -1
- package/package.json +2 -3
- package/dist/typechain/Wildcat4626Wrapper.d.ts +0 -427
- package/dist/typechain/Wildcat4626Wrapper.d.ts.map +0 -1
- package/dist/typechain/Wildcat4626Wrapper.js +0 -3
- package/dist/typechain/Wildcat4626Wrapper.js.map +0 -1
- package/dist/typechain/Wildcat4626WrapperFactory.d.ts +0 -83
- package/dist/typechain/Wildcat4626WrapperFactory.d.ts.map +0 -1
- package/dist/typechain/Wildcat4626WrapperFactory.js +0 -3
- package/dist/typechain/Wildcat4626WrapperFactory.js.map +0 -1
- package/dist/typechain/factories/Wildcat4626WrapperFactory__factory.d.ts +0 -82
- package/dist/typechain/factories/Wildcat4626WrapperFactory__factory.d.ts.map +0 -1
- package/dist/typechain/factories/Wildcat4626WrapperFactory__factory.js +0 -117
- package/dist/typechain/factories/Wildcat4626WrapperFactory__factory.js.map +0 -1
- package/dist/typechain/factories/Wildcat4626Wrapper__factory.d.ts +0 -586
- package/dist/typechain/factories/Wildcat4626Wrapper__factory.d.ts.map +0 -1
- package/dist/typechain/factories/Wildcat4626Wrapper__factory.js +0 -777
- package/dist/typechain/factories/Wildcat4626Wrapper__factory.js.map +0 -1
- package/dist/wrapper/index.d.ts +0 -76
- package/dist/wrapper/index.d.ts.map +0 -1
- package/dist/wrapper/index.js +0 -218
- package/dist/wrapper/index.js.map +0 -1
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import type { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers";
|
|
2
|
-
import type { FunctionFragment, Result, EventFragment } from "@ethersproject/abi";
|
|
3
|
-
import type { Listener, Provider } from "@ethersproject/providers";
|
|
4
|
-
import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common";
|
|
5
|
-
export interface Wildcat4626WrapperFactoryInterface extends utils.Interface {
|
|
6
|
-
functions: {
|
|
7
|
-
"archController()": FunctionFragment;
|
|
8
|
-
"createWrapper(address)": FunctionFragment;
|
|
9
|
-
"wrapperForMarket(address)": FunctionFragment;
|
|
10
|
-
};
|
|
11
|
-
getFunction(nameOrSignatureOrTopic: "archController" | "createWrapper" | "wrapperForMarket"): FunctionFragment;
|
|
12
|
-
encodeFunctionData(functionFragment: "archController", values?: undefined): string;
|
|
13
|
-
encodeFunctionData(functionFragment: "createWrapper", values: [PromiseOrValue<string>]): string;
|
|
14
|
-
encodeFunctionData(functionFragment: "wrapperForMarket", values: [PromiseOrValue<string>]): string;
|
|
15
|
-
decodeFunctionResult(functionFragment: "archController", data: BytesLike): Result;
|
|
16
|
-
decodeFunctionResult(functionFragment: "createWrapper", data: BytesLike): Result;
|
|
17
|
-
decodeFunctionResult(functionFragment: "wrapperForMarket", data: BytesLike): Result;
|
|
18
|
-
events: {
|
|
19
|
-
"WrapperDeployed(address,address)": EventFragment;
|
|
20
|
-
};
|
|
21
|
-
getEvent(nameOrSignatureOrTopic: "WrapperDeployed"): EventFragment;
|
|
22
|
-
}
|
|
23
|
-
export interface WrapperDeployedEventObject {
|
|
24
|
-
market: string;
|
|
25
|
-
wrapper: string;
|
|
26
|
-
}
|
|
27
|
-
export type WrapperDeployedEvent = TypedEvent<[
|
|
28
|
-
string,
|
|
29
|
-
string
|
|
30
|
-
], WrapperDeployedEventObject>;
|
|
31
|
-
export type WrapperDeployedEventFilter = TypedEventFilter<WrapperDeployedEvent>;
|
|
32
|
-
export interface Wildcat4626WrapperFactory extends BaseContract {
|
|
33
|
-
contractName: "Wildcat4626WrapperFactory";
|
|
34
|
-
connect(signerOrProvider: Signer | Provider | string): this;
|
|
35
|
-
attach(addressOrName: string): this;
|
|
36
|
-
deployed(): Promise<this>;
|
|
37
|
-
interface: Wildcat4626WrapperFactoryInterface;
|
|
38
|
-
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
39
|
-
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
40
|
-
listeners(eventName?: string): Array<Listener>;
|
|
41
|
-
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
42
|
-
removeAllListeners(eventName?: string): this;
|
|
43
|
-
off: OnEvent<this>;
|
|
44
|
-
on: OnEvent<this>;
|
|
45
|
-
once: OnEvent<this>;
|
|
46
|
-
removeListener: OnEvent<this>;
|
|
47
|
-
functions: {
|
|
48
|
-
archController(overrides?: CallOverrides): Promise<[string]>;
|
|
49
|
-
createWrapper(market: PromiseOrValue<string>, overrides?: Overrides & {
|
|
50
|
-
from?: PromiseOrValue<string>;
|
|
51
|
-
}): Promise<ContractTransaction>;
|
|
52
|
-
wrapperForMarket(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string]>;
|
|
53
|
-
};
|
|
54
|
-
archController(overrides?: CallOverrides): Promise<string>;
|
|
55
|
-
createWrapper(market: PromiseOrValue<string>, overrides?: Overrides & {
|
|
56
|
-
from?: PromiseOrValue<string>;
|
|
57
|
-
}): Promise<ContractTransaction>;
|
|
58
|
-
wrapperForMarket(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
59
|
-
callStatic: {
|
|
60
|
-
archController(overrides?: CallOverrides): Promise<string>;
|
|
61
|
-
createWrapper(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
62
|
-
wrapperForMarket(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
63
|
-
};
|
|
64
|
-
filters: {
|
|
65
|
-
"WrapperDeployed(address,address)"(market?: PromiseOrValue<string> | null, wrapper?: PromiseOrValue<string> | null): WrapperDeployedEventFilter;
|
|
66
|
-
WrapperDeployed(market?: PromiseOrValue<string> | null, wrapper?: PromiseOrValue<string> | null): WrapperDeployedEventFilter;
|
|
67
|
-
};
|
|
68
|
-
estimateGas: {
|
|
69
|
-
archController(overrides?: CallOverrides): Promise<BigNumber>;
|
|
70
|
-
createWrapper(market: PromiseOrValue<string>, overrides?: Overrides & {
|
|
71
|
-
from?: PromiseOrValue<string>;
|
|
72
|
-
}): Promise<BigNumber>;
|
|
73
|
-
wrapperForMarket(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
74
|
-
};
|
|
75
|
-
populateTransaction: {
|
|
76
|
-
archController(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
77
|
-
createWrapper(market: PromiseOrValue<string>, overrides?: Overrides & {
|
|
78
|
-
from?: PromiseOrValue<string>;
|
|
79
|
-
}): Promise<PopulatedTransaction>;
|
|
80
|
-
wrapperForMarket(market: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
|
-
//# sourceMappingURL=Wildcat4626WrapperFactory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Wildcat4626WrapperFactory.d.ts","sourceRoot":"","sources":["../../src/typechain/Wildcat4626WrapperFactory.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Wildcat4626WrapperFactory.js","sourceRoot":"","sources":["../../src/typechain/Wildcat4626WrapperFactory.ts"],"names":[],"mappings":""}
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type { Wildcat4626WrapperFactory, Wildcat4626WrapperFactoryInterface } from "../Wildcat4626WrapperFactory";
|
|
4
|
-
export declare class Wildcat4626WrapperFactory__factory {
|
|
5
|
-
static readonly abi: readonly [{
|
|
6
|
-
readonly inputs: readonly [{
|
|
7
|
-
readonly internalType: "address";
|
|
8
|
-
readonly name: "market";
|
|
9
|
-
readonly type: "address";
|
|
10
|
-
}];
|
|
11
|
-
readonly name: "NotRegisteredMarket";
|
|
12
|
-
readonly type: "error";
|
|
13
|
-
}, {
|
|
14
|
-
readonly inputs: readonly [{
|
|
15
|
-
readonly internalType: "address";
|
|
16
|
-
readonly name: "market";
|
|
17
|
-
readonly type: "address";
|
|
18
|
-
}];
|
|
19
|
-
readonly name: "WrapperAlreadyExists";
|
|
20
|
-
readonly type: "error";
|
|
21
|
-
}, {
|
|
22
|
-
readonly inputs: readonly [];
|
|
23
|
-
readonly name: "ZeroAddress";
|
|
24
|
-
readonly type: "error";
|
|
25
|
-
}, {
|
|
26
|
-
readonly anonymous: false;
|
|
27
|
-
readonly inputs: readonly [{
|
|
28
|
-
readonly indexed: true;
|
|
29
|
-
readonly internalType: "address";
|
|
30
|
-
readonly name: "market";
|
|
31
|
-
readonly type: "address";
|
|
32
|
-
}, {
|
|
33
|
-
readonly indexed: true;
|
|
34
|
-
readonly internalType: "address";
|
|
35
|
-
readonly name: "wrapper";
|
|
36
|
-
readonly type: "address";
|
|
37
|
-
}];
|
|
38
|
-
readonly name: "WrapperDeployed";
|
|
39
|
-
readonly type: "event";
|
|
40
|
-
}, {
|
|
41
|
-
readonly inputs: readonly [];
|
|
42
|
-
readonly name: "archController";
|
|
43
|
-
readonly outputs: readonly [{
|
|
44
|
-
readonly internalType: "address";
|
|
45
|
-
readonly name: "";
|
|
46
|
-
readonly type: "address";
|
|
47
|
-
}];
|
|
48
|
-
readonly stateMutability: "view";
|
|
49
|
-
readonly type: "function";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [{
|
|
52
|
-
readonly internalType: "address";
|
|
53
|
-
readonly name: "market";
|
|
54
|
-
readonly type: "address";
|
|
55
|
-
}];
|
|
56
|
-
readonly name: "createWrapper";
|
|
57
|
-
readonly outputs: readonly [{
|
|
58
|
-
readonly internalType: "address";
|
|
59
|
-
readonly name: "wrapper";
|
|
60
|
-
readonly type: "address";
|
|
61
|
-
}];
|
|
62
|
-
readonly stateMutability: "nonpayable";
|
|
63
|
-
readonly type: "function";
|
|
64
|
-
}, {
|
|
65
|
-
readonly inputs: readonly [{
|
|
66
|
-
readonly internalType: "address";
|
|
67
|
-
readonly name: "market";
|
|
68
|
-
readonly type: "address";
|
|
69
|
-
}];
|
|
70
|
-
readonly name: "wrapperForMarket";
|
|
71
|
-
readonly outputs: readonly [{
|
|
72
|
-
readonly internalType: "address";
|
|
73
|
-
readonly name: "";
|
|
74
|
-
readonly type: "address";
|
|
75
|
-
}];
|
|
76
|
-
readonly stateMutability: "view";
|
|
77
|
-
readonly type: "function";
|
|
78
|
-
}];
|
|
79
|
-
static createInterface(): Wildcat4626WrapperFactoryInterface;
|
|
80
|
-
static connect(address: string, signerOrProvider: Signer | Provider): Wildcat4626WrapperFactory;
|
|
81
|
-
}
|
|
82
|
-
//# sourceMappingURL=Wildcat4626WrapperFactory__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Wildcat4626WrapperFactory__factory.d.ts","sourceRoot":"","sources":["../../../src/typechain/factories/Wildcat4626WrapperFactory__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EACV,yBAAyB,EACzB,kCAAkC,EACnC,MAAM,8BAA8B,CAAC;AAsGtC,qBAAa,kCAAkC;IAC7C,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,kCAAkC;IAG5D,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,yBAAyB;CAO7B"}
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Wildcat4626WrapperFactory__factory = void 0;
|
|
7
|
-
const ethers_1 = require("ethers");
|
|
8
|
-
const _abi = [
|
|
9
|
-
{
|
|
10
|
-
inputs: [
|
|
11
|
-
{
|
|
12
|
-
internalType: "address",
|
|
13
|
-
name: "market",
|
|
14
|
-
type: "address",
|
|
15
|
-
},
|
|
16
|
-
],
|
|
17
|
-
name: "NotRegisteredMarket",
|
|
18
|
-
type: "error",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
inputs: [
|
|
22
|
-
{
|
|
23
|
-
internalType: "address",
|
|
24
|
-
name: "market",
|
|
25
|
-
type: "address",
|
|
26
|
-
},
|
|
27
|
-
],
|
|
28
|
-
name: "WrapperAlreadyExists",
|
|
29
|
-
type: "error",
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
inputs: [],
|
|
33
|
-
name: "ZeroAddress",
|
|
34
|
-
type: "error",
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
anonymous: false,
|
|
38
|
-
inputs: [
|
|
39
|
-
{
|
|
40
|
-
indexed: true,
|
|
41
|
-
internalType: "address",
|
|
42
|
-
name: "market",
|
|
43
|
-
type: "address",
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
indexed: true,
|
|
47
|
-
internalType: "address",
|
|
48
|
-
name: "wrapper",
|
|
49
|
-
type: "address",
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
name: "WrapperDeployed",
|
|
53
|
-
type: "event",
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
inputs: [],
|
|
57
|
-
name: "archController",
|
|
58
|
-
outputs: [
|
|
59
|
-
{
|
|
60
|
-
internalType: "address",
|
|
61
|
-
name: "",
|
|
62
|
-
type: "address",
|
|
63
|
-
},
|
|
64
|
-
],
|
|
65
|
-
stateMutability: "view",
|
|
66
|
-
type: "function",
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
inputs: [
|
|
70
|
-
{
|
|
71
|
-
internalType: "address",
|
|
72
|
-
name: "market",
|
|
73
|
-
type: "address",
|
|
74
|
-
},
|
|
75
|
-
],
|
|
76
|
-
name: "createWrapper",
|
|
77
|
-
outputs: [
|
|
78
|
-
{
|
|
79
|
-
internalType: "address",
|
|
80
|
-
name: "wrapper",
|
|
81
|
-
type: "address",
|
|
82
|
-
},
|
|
83
|
-
],
|
|
84
|
-
stateMutability: "nonpayable",
|
|
85
|
-
type: "function",
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
inputs: [
|
|
89
|
-
{
|
|
90
|
-
internalType: "address",
|
|
91
|
-
name: "market",
|
|
92
|
-
type: "address",
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
name: "wrapperForMarket",
|
|
96
|
-
outputs: [
|
|
97
|
-
{
|
|
98
|
-
internalType: "address",
|
|
99
|
-
name: "",
|
|
100
|
-
type: "address",
|
|
101
|
-
},
|
|
102
|
-
],
|
|
103
|
-
stateMutability: "view",
|
|
104
|
-
type: "function",
|
|
105
|
-
},
|
|
106
|
-
];
|
|
107
|
-
class Wildcat4626WrapperFactory__factory {
|
|
108
|
-
static createInterface() {
|
|
109
|
-
return new ethers_1.utils.Interface(_abi);
|
|
110
|
-
}
|
|
111
|
-
static connect(address, signerOrProvider) {
|
|
112
|
-
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
Wildcat4626WrapperFactory__factory.abi = _abi;
|
|
116
|
-
exports.Wildcat4626WrapperFactory__factory = Wildcat4626WrapperFactory__factory;
|
|
117
|
-
//# sourceMappingURL=Wildcat4626WrapperFactory__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Wildcat4626WrapperFactory__factory.js","sourceRoot":"","sources":["../../../src/typechain/factories/Wildcat4626WrapperFactory__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;;;AAEpB,mCAAiD;AAOjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,qBAAqB;QAC3B,IAAI,EAAE,OAAO;KACd;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,sBAAsB;QAC5B,IAAI,EAAE,OAAO;KACd;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,aAAa;QACnB,IAAI,EAAE,OAAO;KACd;IACD;QACE,SAAS,EAAE,KAAK;QAChB,MAAM,EAAE;YACN;gBACE,OAAO,EAAE,IAAI;gBACb,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,OAAO,EAAE,IAAI;gBACb,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,iBAAiB;QACvB,IAAI,EAAE,OAAO;KACd;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,gBAAgB;QACtB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,kBAAkB;QACxB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;CACO,CAAC;AAEX,MAAa,kCAAkC;IAE7C,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAAuC,CAAC;IACzE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CACjB,OAAO,EACP,IAAI,EACJ,gBAAgB,CACY,CAAC;IACjC,CAAC;;AAbe,sCAAG,GAAG,IAAI,CAAC;AADhB,gFAAkC"}
|