@aztec/ethereum 2.0.3 → 2.1.0-rc.2
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/dest/config.d.ts +10 -5
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +27 -39
- package/dest/contracts/empire_base.d.ts +1 -1
- package/dest/contracts/empire_base.d.ts.map +1 -1
- package/dest/contracts/empire_slashing_proposer.d.ts +1 -1
- package/dest/contracts/empire_slashing_proposer.d.ts.map +1 -1
- package/dest/contracts/fee_asset_handler.d.ts +3 -3
- package/dest/contracts/fee_asset_handler.d.ts.map +1 -1
- package/dest/contracts/governance.js +7 -3
- package/dest/contracts/governance_proposer.d.ts +1 -2
- package/dest/contracts/governance_proposer.d.ts.map +1 -1
- package/dest/contracts/governance_proposer.js +1 -2
- package/dest/contracts/multicall.d.ts +3 -5
- package/dest/contracts/multicall.d.ts.map +1 -1
- package/dest/contracts/multicall.js +6 -4
- package/dest/contracts/rollup.d.ts +13 -14
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +25 -67
- package/dest/contracts/slasher_contract.d.ts +10 -0
- package/dest/contracts/slasher_contract.d.ts.map +1 -1
- package/dest/contracts/slasher_contract.js +18 -0
- package/dest/deploy_l1_contracts.d.ts +18 -4
- package/dest/deploy_l1_contracts.d.ts.map +1 -1
- package/dest/deploy_l1_contracts.js +316 -159
- package/dest/index.d.ts +1 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -1
- package/dest/l1_artifacts.d.ts +8019 -5948
- package/dest/l1_artifacts.d.ts.map +1 -1
- package/dest/l1_artifacts.js +6 -1
- package/dest/l1_contract_addresses.d.ts +5 -1
- package/dest/l1_contract_addresses.d.ts.map +1 -1
- package/dest/l1_contract_addresses.js +2 -1
- package/dest/l1_tx_utils/config.d.ts +59 -0
- package/dest/l1_tx_utils/config.d.ts.map +1 -0
- package/dest/l1_tx_utils/config.js +73 -0
- package/dest/l1_tx_utils/constants.d.ts +6 -0
- package/dest/l1_tx_utils/constants.d.ts.map +1 -0
- package/dest/l1_tx_utils/constants.js +14 -0
- package/dest/l1_tx_utils/factory.d.ts +24 -0
- package/dest/l1_tx_utils/factory.d.ts.map +1 -0
- package/dest/l1_tx_utils/factory.js +12 -0
- package/dest/l1_tx_utils/index.d.ts +10 -0
- package/dest/l1_tx_utils/index.d.ts.map +1 -0
- package/dest/l1_tx_utils/index.js +10 -0
- package/dest/l1_tx_utils/interfaces.d.ts +76 -0
- package/dest/l1_tx_utils/interfaces.d.ts.map +1 -0
- package/dest/l1_tx_utils/interfaces.js +4 -0
- package/dest/l1_tx_utils/l1_tx_utils.d.ts +95 -0
- package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/l1_tx_utils.js +610 -0
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts +26 -0
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts.map +1 -0
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.js +26 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +81 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.js +294 -0
- package/dest/l1_tx_utils/signer.d.ts +4 -0
- package/dest/l1_tx_utils/signer.d.ts.map +1 -0
- package/dest/l1_tx_utils/signer.js +16 -0
- package/dest/l1_tx_utils/types.d.ts +67 -0
- package/dest/l1_tx_utils/types.d.ts.map +1 -0
- package/dest/l1_tx_utils/types.js +26 -0
- package/dest/l1_tx_utils/utils.d.ts +4 -0
- package/dest/l1_tx_utils/utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/utils.js +14 -0
- package/dest/publisher_manager.d.ts +7 -2
- package/dest/publisher_manager.d.ts.map +1 -1
- package/dest/publisher_manager.js +36 -8
- package/dest/queries.d.ts.map +1 -1
- package/dest/queries.js +8 -2
- package/dest/test/chain_monitor.js +2 -2
- package/dest/test/delayed_tx_utils.d.ts +2 -2
- package/dest/test/delayed_tx_utils.d.ts.map +1 -1
- package/dest/test/delayed_tx_utils.js +2 -2
- package/dest/test/eth_cheat_codes.d.ts +18 -1
- package/dest/test/eth_cheat_codes.d.ts.map +1 -1
- package/dest/test/eth_cheat_codes.js +101 -22
- package/dest/test/rollup_cheat_codes.d.ts +3 -1
- package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
- package/dest/test/rollup_cheat_codes.js +2 -2
- package/dest/test/upgrade_utils.js +1 -1
- package/package.json +6 -6
- package/src/config.ts +34 -44
- package/src/contracts/empire_base.ts +1 -1
- package/src/contracts/empire_slashing_proposer.ts +1 -1
- package/src/contracts/fee_asset_handler.ts +1 -1
- package/src/contracts/governance.ts +3 -3
- package/src/contracts/governance_proposer.ts +3 -4
- package/src/contracts/multicall.ts +12 -10
- package/src/contracts/rollup.ts +31 -86
- package/src/contracts/slasher_contract.ts +22 -0
- package/src/deploy_l1_contracts.ts +351 -178
- package/src/index.ts +1 -1
- package/src/l1_artifacts.ts +8 -0
- package/src/l1_contract_addresses.ts +3 -1
- package/src/l1_tx_utils/README.md +177 -0
- package/src/l1_tx_utils/config.ts +140 -0
- package/src/l1_tx_utils/constants.ts +18 -0
- package/src/l1_tx_utils/factory.ts +64 -0
- package/src/l1_tx_utils/index.ts +12 -0
- package/src/l1_tx_utils/interfaces.ts +86 -0
- package/src/l1_tx_utils/l1_tx_utils.ts +718 -0
- package/src/l1_tx_utils/l1_tx_utils_with_blobs.ts +77 -0
- package/src/l1_tx_utils/readonly_l1_tx_utils.ts +372 -0
- package/src/l1_tx_utils/signer.ts +28 -0
- package/src/l1_tx_utils/types.ts +85 -0
- package/src/l1_tx_utils/utils.ts +16 -0
- package/src/publisher_manager.ts +51 -9
- package/src/queries.ts +10 -1
- package/src/test/chain_monitor.ts +2 -2
- package/src/test/delayed_tx_utils.ts +2 -2
- package/src/test/eth_cheat_codes.ts +120 -20
- package/src/test/rollup_cheat_codes.ts +5 -2
- package/src/test/upgrade_utils.ts +1 -1
- package/dest/l1_tx_utils.d.ts +0 -252
- package/dest/l1_tx_utils.d.ts.map +0 -1
- package/dest/l1_tx_utils.js +0 -834
- package/dest/l1_tx_utils_with_blobs.d.ts +0 -20
- package/dest/l1_tx_utils_with_blobs.d.ts.map +0 -1
- package/dest/l1_tx_utils_with_blobs.js +0 -87
- package/src/l1_tx_utils.ts +0 -1124
- package/src/l1_tx_utils_with_blobs.ts +0 -150
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './config.js';
|
|
2
|
+
export * from './constants.js';
|
|
3
|
+
export * from './factory.js';
|
|
4
|
+
export * from './interfaces.js';
|
|
5
|
+
export * from './l1_tx_utils.js';
|
|
6
|
+
export * from './readonly_l1_tx_utils.js';
|
|
7
|
+
export * from './signer.js';
|
|
8
|
+
export * from './types.js';
|
|
9
|
+
export * from './utils.js';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/l1_tx_utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './config.js';
|
|
2
|
+
export * from './constants.js';
|
|
3
|
+
export * from './factory.js';
|
|
4
|
+
export * from './interfaces.js';
|
|
5
|
+
export * from './l1_tx_utils.js';
|
|
6
|
+
export * from './readonly_l1_tx_utils.js';
|
|
7
|
+
export * from './signer.js';
|
|
8
|
+
export * from './types.js';
|
|
9
|
+
export * from './utils.js'; // Note: We intentionally do not export l1_tx_utils_with_blobs.js
|
|
10
|
+
// to avoid accidentally importing blob-lib dependency.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { L1BlobInputs, L1TxState } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Interface for L1 transaction state storage.
|
|
4
|
+
* Implementations handle persistence of transaction states across restarts.
|
|
5
|
+
*/
|
|
6
|
+
export interface IL1TxStore {
|
|
7
|
+
/**
|
|
8
|
+
* Gets the next available state ID for an account.
|
|
9
|
+
*/
|
|
10
|
+
consumeNextStateId(account: string): Promise<number>;
|
|
11
|
+
/**
|
|
12
|
+
* Saves a single transaction state for a specific account.
|
|
13
|
+
* Does not save blob data (see saveBlobs).
|
|
14
|
+
* @param account - The sender account address
|
|
15
|
+
* @param state - Transaction state to save
|
|
16
|
+
*/
|
|
17
|
+
saveState(account: string, state: L1TxState): Promise<L1TxState>;
|
|
18
|
+
/**
|
|
19
|
+
* Saves blobs for a given state.
|
|
20
|
+
* @param account - The sender account address
|
|
21
|
+
* @param stateId - The state ID
|
|
22
|
+
* @param blobInputs - Blob inputs to save
|
|
23
|
+
*/
|
|
24
|
+
saveBlobs(account: string, stateId: number, blobInputs: L1BlobInputs | undefined): Promise<void>;
|
|
25
|
+
/**
|
|
26
|
+
* Loads all transaction states for a specific account.
|
|
27
|
+
* @param account - The sender account address
|
|
28
|
+
* @returns Array of transaction states with their IDs
|
|
29
|
+
*/
|
|
30
|
+
loadStates(account: string): Promise<L1TxState[]>;
|
|
31
|
+
/**
|
|
32
|
+
* Loads a single state by ID.
|
|
33
|
+
* @param account - The sender account address
|
|
34
|
+
* @param stateId - The state ID
|
|
35
|
+
* @returns The transaction state or undefined if not found
|
|
36
|
+
*/
|
|
37
|
+
loadState(account: string, stateId: number): Promise<L1TxState | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* Deletes a specific state and its associated blobs.
|
|
40
|
+
* @param account - The sender account address
|
|
41
|
+
* @param stateId - The state ID to delete
|
|
42
|
+
*/
|
|
43
|
+
deleteState(account: string, stateId: number): Promise<void>;
|
|
44
|
+
/**
|
|
45
|
+
* Clears all transaction states for a specific account.
|
|
46
|
+
* @param account - The sender account address
|
|
47
|
+
*/
|
|
48
|
+
clearStates(account: string): Promise<void>;
|
|
49
|
+
/**
|
|
50
|
+
* Gets all accounts that have stored states.
|
|
51
|
+
* @returns Array of account addresses
|
|
52
|
+
*/
|
|
53
|
+
getAllAccounts(): Promise<string[]>;
|
|
54
|
+
/**
|
|
55
|
+
* Closes the store.
|
|
56
|
+
*/
|
|
57
|
+
close(): Promise<void>;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Interface for L1 transaction metrics recording.
|
|
61
|
+
* Implementations handle tracking of transaction lifecycle and gas costs.
|
|
62
|
+
*/
|
|
63
|
+
export interface IL1TxMetrics {
|
|
64
|
+
/**
|
|
65
|
+
* Records metrics when a transaction is mined
|
|
66
|
+
* @param state - The L1 transaction state
|
|
67
|
+
* @param l1Timestamp - The current L1 timestamp
|
|
68
|
+
*/
|
|
69
|
+
recordMinedTx(state: L1TxState, l1Timestamp: Date): void;
|
|
70
|
+
/**
|
|
71
|
+
* Records metrics when a transaction is dropped
|
|
72
|
+
* @param state - The L1 transaction state
|
|
73
|
+
*/
|
|
74
|
+
recordDroppedTx(state: L1TxState): void;
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=interfaces.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../src/l1_tx_utils/interfaces.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAE1D;;;GAGG;AACH,MAAM,WAAW,UAAU;IACzB;;OAEG;IACH,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAErD;;;;;OAKG;IACH,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IAEjE;;;;;OAKG;IACH,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjG;;;;OAIG;IACH,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC;IAElD;;;;;OAKG;IACH,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IAE5E;;;;OAIG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7D;;;OAGG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE5C;;;OAGG;IACH,cAAc,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAEpC;;OAEG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;CACxB;AAED;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B;;;;OAIG;IACH,aAAa,CAAC,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,IAAI,GAAG,IAAI,CAAC;IAEzD;;;OAGG;IACH,eAAe,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI,CAAC;CACzC"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
2
|
+
import { type Logger } from '@aztec/foundation/log';
|
|
3
|
+
import { DateProvider } from '@aztec/foundation/timer';
|
|
4
|
+
import { type Abi, type BlockOverrides, type Hex, type NonceManager, type PrepareTransactionRequestRequest, type StateOverride, type TransactionReceipt } from 'viem';
|
|
5
|
+
import type { ViemClient } from '../types.js';
|
|
6
|
+
import { type L1TxUtilsConfig } from './config.js';
|
|
7
|
+
import type { IL1TxMetrics, IL1TxStore } from './interfaces.js';
|
|
8
|
+
import { ReadOnlyL1TxUtils } from './readonly_l1_tx_utils.js';
|
|
9
|
+
import { type L1BlobInputs, type L1TxConfig, type L1TxRequest, type L1TxState, type SigningCallback, TxUtilsState } from './types.js';
|
|
10
|
+
export declare class L1TxUtils extends ReadOnlyL1TxUtils {
|
|
11
|
+
client: ViemClient;
|
|
12
|
+
address: EthAddress;
|
|
13
|
+
protected signer: SigningCallback;
|
|
14
|
+
protected store?: IL1TxStore | undefined;
|
|
15
|
+
protected metrics?: IL1TxMetrics | undefined;
|
|
16
|
+
protected nonceManager: NonceManager;
|
|
17
|
+
protected txs: L1TxState[];
|
|
18
|
+
constructor(client: ViemClient, address: EthAddress, signer: SigningCallback, logger?: Logger, dateProvider?: DateProvider, config?: Partial<L1TxUtilsConfig>, debugMaxGasLimit?: boolean, store?: IL1TxStore | undefined, metrics?: IL1TxMetrics | undefined);
|
|
19
|
+
get state(): TxUtilsState;
|
|
20
|
+
get lastMinedAtBlockNumber(): bigint | undefined;
|
|
21
|
+
protected updateState(l1TxState: L1TxState, newState: TxUtilsState.MINED, l1Timestamp: number): Promise<void>;
|
|
22
|
+
protected updateState(l1TxState: L1TxState, newState: TxUtilsState, l1Timestamp?: undefined): Promise<void>;
|
|
23
|
+
updateConfig(newConfig: Partial<L1TxUtilsConfig>): void;
|
|
24
|
+
getSenderAddress(): EthAddress;
|
|
25
|
+
getSenderBalance(): Promise<bigint>;
|
|
26
|
+
/**
|
|
27
|
+
* Rehydrates transaction states from the store and resumes monitoring for pending transactions.
|
|
28
|
+
* This should be called on startup to restore state and resume monitoring of any in-flight transactions.
|
|
29
|
+
*/
|
|
30
|
+
loadStateAndResumeMonitoring(): Promise<void>;
|
|
31
|
+
private signTransaction;
|
|
32
|
+
protected prepareSignedTransaction(txData: PrepareTransactionRequestRequest): Promise<`0x${string}`>;
|
|
33
|
+
/**
|
|
34
|
+
* Sends a transaction with gas estimation and pricing
|
|
35
|
+
* @param request - The transaction request (to, data, value)
|
|
36
|
+
* @param gasConfig - Optional gas configuration
|
|
37
|
+
* @returns The transaction hash and parameters used
|
|
38
|
+
*/
|
|
39
|
+
sendTransaction(request: L1TxRequest, gasConfigOverrides?: L1TxConfig, blobInputs?: L1BlobInputs, stateChange?: TxUtilsState): Promise<{
|
|
40
|
+
txHash: Hex;
|
|
41
|
+
state: L1TxState;
|
|
42
|
+
}>;
|
|
43
|
+
private tryGetTxReceipt;
|
|
44
|
+
/**
|
|
45
|
+
* Returns whether a given tx should be considered as timed out and no longer monitored.
|
|
46
|
+
* Relies on the txTimeout setting for user txs, and on the txCancellationTimeout for cancel txs.
|
|
47
|
+
* @remarks We check against the latestBlockTimestamp as opposed to the current time to avoid a race condition where
|
|
48
|
+
* the tx is mined in a block with the same timestamp as txTimeoutAt, but our execution node has not yet processed it,
|
|
49
|
+
* or the loop here has not yet checked the tx before that timeout.
|
|
50
|
+
*/
|
|
51
|
+
private isTxTimedOut;
|
|
52
|
+
/**
|
|
53
|
+
* Monitors a transaction until completion, handling speed-ups if needed
|
|
54
|
+
*/
|
|
55
|
+
protected monitorTransaction(state: L1TxState): Promise<TransactionReceipt>;
|
|
56
|
+
/**
|
|
57
|
+
* Creates tx data to be signed by viem signTransaction method, using the state as input.
|
|
58
|
+
* If isCancelTx is true, creates a 0-value tx to self with 21k gas and no data instead,
|
|
59
|
+
* and an empty blob input if the original tx also had blobs.
|
|
60
|
+
*/
|
|
61
|
+
private makeTxData;
|
|
62
|
+
/** Returns when all monitor loops have stopped. */
|
|
63
|
+
waitMonitoringStopped(timeoutSeconds?: number): Promise<void>;
|
|
64
|
+
/**
|
|
65
|
+
* Sends a transaction and monitors it until completion
|
|
66
|
+
* @param request - The transaction request (to, data, value)
|
|
67
|
+
* @param gasConfig - Optional gas configuration
|
|
68
|
+
* @returns The receipt of the successful transaction
|
|
69
|
+
*/
|
|
70
|
+
sendAndMonitorTransaction(request: L1TxRequest, gasConfig?: L1TxConfig, blobInputs?: L1BlobInputs): Promise<{
|
|
71
|
+
receipt: TransactionReceipt;
|
|
72
|
+
state: L1TxState;
|
|
73
|
+
}>;
|
|
74
|
+
simulate(request: L1TxRequest & {
|
|
75
|
+
gas?: bigint;
|
|
76
|
+
from?: Hex;
|
|
77
|
+
}, _blockOverrides?: BlockOverrides<bigint, number>, stateOverrides?: StateOverride, abi?: Abi, _gasConfig?: L1TxUtilsConfig & {
|
|
78
|
+
fallbackGasEstimate?: bigint;
|
|
79
|
+
ignoreBlockGasLimit?: boolean;
|
|
80
|
+
}): Promise<{
|
|
81
|
+
gasUsed: bigint;
|
|
82
|
+
result: `0x${string}`;
|
|
83
|
+
}>;
|
|
84
|
+
/**
|
|
85
|
+
* Attempts to cancel a transaction by sending a 0-value tx to self with same nonce but higher gas prices
|
|
86
|
+
* Only sends the cancellation if the original tx is still pending, not if it was dropped
|
|
87
|
+
* @returns The hash of the cancellation transaction
|
|
88
|
+
*/
|
|
89
|
+
protected attemptTxCancellation(state: L1TxState): Promise<void>;
|
|
90
|
+
/** Returns L1 timestamps in milliseconds */
|
|
91
|
+
private getL1Timestamp;
|
|
92
|
+
/** Makes empty blob inputs for the cancellation tx. To be overridden in L1TxUtilsWithBlobs. */
|
|
93
|
+
protected makeEmptyBlobInputs(_maxFeePerBlobGas: bigint): Required<L1BlobInputs>;
|
|
94
|
+
}
|
|
95
|
+
//# sourceMappingURL=l1_tx_utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"l1_tx_utils.d.ts","sourceRoot":"","sources":["../../src/l1_tx_utils/l1_tx_utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,KAAK,MAAM,EAAgB,MAAM,uBAAuB,CAAC;AAGlE,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAIvD,OAAO,EACL,KAAK,GAAG,EACR,KAAK,cAAc,EACnB,KAAK,GAAG,EACR,KAAK,YAAY,EACjB,KAAK,gCAAgC,EACrC,KAAK,aAAa,EAClB,KAAK,kBAAkB,EAKxB,MAAM,MAAM,CAAC;AAGd,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,EAAE,KAAK,eAAe,EAA2B,MAAM,aAAa,CAAC;AAE5E,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,SAAS,EACd,KAAK,eAAe,EAEpB,YAAY,EAEb,MAAM,YAAY,CAAC;AAIpB,qBAAa,SAAU,SAAQ,iBAAiB;IAK5B,MAAM,EAAE,UAAU;IAC3B,OAAO,EAAE,UAAU;IAC1B,SAAS,CAAC,MAAM,EAAE,eAAe;IAKjC,SAAS,CAAC,KAAK,CAAC,EAAE,UAAU;IAC5B,SAAS,CAAC,OAAO,CAAC,EAAE,YAAY;IAZlC,SAAS,CAAC,YAAY,EAAE,YAAY,CAAC;IACrC,SAAS,CAAC,GAAG,EAAE,SAAS,EAAE,CAAM;gBAGd,MAAM,EAAE,UAAU,EAC3B,OAAO,EAAE,UAAU,EAChB,MAAM,EAAE,eAAe,EACjC,MAAM,GAAE,MAA2C,EACnD,YAAY,GAAE,YAAiC,EAC/C,MAAM,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,EACjC,gBAAgB,GAAE,OAAe,EACvB,KAAK,CAAC,EAAE,UAAU,YAAA,EAClB,OAAO,CAAC,EAAE,YAAY,YAAA;IAMlC,IAAW,KAAK,iBAEf;IAED,IAAW,sBAAsB,uBAGhC;cAEe,WAAW,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;cACnG,WAAW,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;IAsB1G,YAAY,CAAC,SAAS,EAAE,OAAO,CAAC,eAAe,CAAC;IAQhD,gBAAgB;IAIhB,gBAAgB,IAAI,OAAO,CAAC,MAAM,CAAC;IAM1C;;;OAGG;IACU,4BAA4B,IAAI,OAAO,CAAC,IAAI,CAAC;YAsC5C,eAAe;cAKb,wBAAwB,CAAC,MAAM,EAAE,gCAAgC;IAKjF;;;;;OAKG;IACU,eAAe,CAC1B,OAAO,EAAE,WAAW,EACpB,kBAAkB,CAAC,EAAE,UAAU,EAC/B,UAAU,CAAC,EAAE,YAAY,EACzB,WAAW,GAAE,YAAgC,GAC5C,OAAO,CAAC;QAAE,MAAM,EAAE,GAAG,CAAC;QAAC,KAAK,EAAE,SAAS,CAAA;KAAE,CAAC;YA8F/B,eAAe;IA6B7B;;;;;;OAMG;IACH,OAAO,CAAC,YAAY;IAyCpB;;OAEG;cACa,kBAAkB,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAsLjF;;;;OAIG;IACH,OAAO,CAAC,UAAU;IA8BlB,mDAAmD;IACtC,qBAAqB,CAAC,cAAc,SAAK;IAUtD;;;;;OAKG;IACU,yBAAyB,CACpC,OAAO,EAAE,WAAW,EACpB,SAAS,CAAC,EAAE,UAAU,EACtB,UAAU,CAAC,EAAE,YAAY,GACxB,OAAO,CAAC;QAAE,OAAO,EAAE,kBAAkB,CAAC;QAAC,KAAK,EAAE,SAAS,CAAA;KAAE,CAAC;IAMvC,QAAQ,CAC5B,OAAO,EAAE,WAAW,GAAG;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,GAAG,CAAA;KAAE,EACnD,eAAe,GAAE,cAAc,CAAC,MAAM,EAAE,MAAM,CAAM,EACpD,cAAc,GAAE,aAAkB,EAClC,GAAG,GAAE,GAAe,EACpB,UAAU,CAAC,EAAE,eAAe,GAAG;QAAE,mBAAmB,CAAC,EAAE,MAAM,CAAC;QAAC,mBAAmB,CAAC,EAAE,OAAO,CAAA;KAAE,GAC7F,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,KAAK,MAAM,EAAE,CAAA;KAAE,CAAC;IAsBtD;;;;OAIG;cACa,qBAAqB,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;IA8EtE,4CAA4C;YAC9B,cAAc;IAK5B,+FAA+F;IAC/F,SAAS,CAAC,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAG,QAAQ,CAAC,YAAY,CAAC;CAGjF"}
|