@layerzerolabs/lz-evm-sdk-v1 2.3.8 → 2.3.10
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/CHANGELOG.md +16 -0
- package/artifacts-tron/contracts/Endpoint.sol/Endpoint.json +958 -0
- package/artifacts-tron/contracts/NonceContract.sol/NonceContract.json +88 -0
- package/artifacts-tron/contracts/PriceFeed.sol/PriceFeed.json +531 -0
- package/artifacts-tron/contracts/RelayerV2.sol/RelayerV2.json +1170 -0
- package/artifacts-tron/contracts/UltraLightNode.sol/UltraLightNode.json +1475 -0
- package/artifacts-tron/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1423 -0
- package/artifacts-tron/contracts/interfaces/IContractOne.sol/IContractOne.json +24 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +447 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +160 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +184 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracle.sol/ILayerZeroOracle.json +77 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +97 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +104 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +39 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayer.sol/ILayerZeroRelayer.json +92 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2PriceData.sol/ILayerZeroRelayerV2PriceData.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +40 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV1.sol/ILayerZeroUltraLightNodeV1.json +156 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +582 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +77 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +146 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +154 -0
- package/artifacts-tron/contracts/precrime/PreCrime.sol/PreCrime.json +353 -0
- package/artifacts-tron/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +259 -0
- package/artifacts-tron/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +318 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +162 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +116 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +162 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/FPValidator.json +326 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator.sol/MPTValidator.json +146 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/MPTValidator01.json +339 -0
- package/artifacts-tron/contracts/proof/MPTValidatorStgV3.sol/MPTValidatorStgV3.json +310 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV2.sol/MPTValidatorV2.json +212 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/MPTValidatorV4.json +414 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/MPTValidatorV5.json +432 -0
- package/artifacts-tron/contracts/proof/utility/Buffer.sol/Buffer.json +10 -0
- package/artifacts-tron/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +10 -0
- package/artifacts-tron/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +10 -0
- package/artifacts-tron/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +10 -0
- package/artifacts-zk/contracts/Endpoint.sol/Endpoint.json +959 -0
- package/artifacts-zk/contracts/NonceContract.sol/NonceContract.json +89 -0
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +545 -0
- package/artifacts-zk/contracts/RelayerV2.sol/RelayerV2.json +1020 -0
- package/artifacts-zk/contracts/TreasuryV2.sol/TreasuryV2.json +309 -0
- package/artifacts-zk/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1424 -0
- package/artifacts-zk/contracts/interfaces/IContractOne.sol/IContractOne.json +25 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +448 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +161 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +185 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +98 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +105 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +40 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +41 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +583 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +84 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +78 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +147 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +155 -0
- package/artifacts-zk/contracts/oracle/OracleV2.sol/OracleV2.json +1527 -0
- package/artifacts-zk/contracts/precrime/PreCrime.sol/PreCrime.json +354 -0
- package/artifacts-zk/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +260 -0
- package/artifacts-zk/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +319 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterI.sol/CounterI.json +624 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterPrecrime.sol/CounterPrecrime.json +458 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterPrecrimeView.sol/CounterPrecrimeView.json +417 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterV.sol/CounterV.json +178 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterView.sol/CounterView.json +166 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +163 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +117 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +163 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/FPValidator.json +327 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/IStargate.json +11 -0
- package/artifacts-zk/contracts/proof/utility/Buffer.sol/Buffer.json +11 -0
- package/artifacts-zk/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +11 -0
- package/artifacts-zk/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +11 -0
- package/artifacts-zk/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +11 -0
- package/artifacts-zk/contracts/proxy/ProxyAdmin.sol/ProxyAdmin.json +172 -0
- package/artifacts-zk/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +156 -0
- package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/arbitrum-sandbox-local/Endpoint.json +7 -7
- package/deployments/arbitrum-sandbox-local/FPValidator.json +4 -4
- package/deployments/arbitrum-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/arbitrum-sandbox-local/NonceContract.json +4 -4
- package/deployments/arbitrum-sandbox-local/RelayerV2.json +16 -16
- package/deployments/arbitrum-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/arbitrum-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/arbitrum-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/arbitrum-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/arbitrum-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Endpoint.json +7 -7
- package/deployments/bsc-sandbox-local/FPValidator.json +4 -4
- package/deployments/bsc-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/bsc-sandbox-local/NonceContract.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2.json +16 -16
- package/deployments/bsc-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/Endpoint.json +7 -7
- package/deployments/ethereum-sandbox-local/FPValidator.json +4 -4
- package/deployments/ethereum-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/ethereum-sandbox-local/NonceContract.json +4 -4
- package/deployments/ethereum-sandbox-local/RelayerV2.json +16 -16
- package/deployments/ethereum-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/ethereum-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/ethereum-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/polygon-sandbox-local/Endpoint.json +7 -7
- package/deployments/polygon-sandbox-local/FPValidator.json +4 -4
- package/deployments/polygon-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/polygon-sandbox-local/NonceContract.json +4 -4
- package/deployments/polygon-sandbox-local/RelayerV2.json +16 -16
- package/deployments/polygon-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/polygon-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/polygon-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/polygon-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/polygon-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/Endpoint.json +10 -10
- package/deployments/tron-sandbox-local/FPValidator.json +6 -6
- package/deployments/tron-sandbox-local/MPTValidator01.json +6 -6
- package/deployments/tron-sandbox-local/NonceContract.json +7 -7
- package/deployments/tron-sandbox-local/RelayerV2.json +31 -31
- package/deployments/tron-sandbox-local/RelayerV2_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/RelayerV2_Proxy.json +28 -28
- package/deployments/tron-sandbox-local/TreasuryV2.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNode.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNodeV2.json +12 -12
- package/package.json +23 -7
|
@@ -0,0 +1,545 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-zksolc-artifact-1",
|
|
3
|
+
"contractName": "PriceFeed",
|
|
4
|
+
"sourceName": "contracts/PriceFeed.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": false,
|
|
11
|
+
"internalType": "uint8",
|
|
12
|
+
"name": "version",
|
|
13
|
+
"type": "uint8"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"name": "Initialized",
|
|
17
|
+
"type": "event"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"anonymous": false,
|
|
21
|
+
"inputs": [
|
|
22
|
+
{
|
|
23
|
+
"indexed": true,
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "previousOwner",
|
|
26
|
+
"type": "address"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"indexed": true,
|
|
30
|
+
"internalType": "address",
|
|
31
|
+
"name": "newOwner",
|
|
32
|
+
"type": "address"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "OwnershipTransferred",
|
|
36
|
+
"type": "event"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [],
|
|
40
|
+
"name": "ARBITRUM_COMPRESSION_PERCENT",
|
|
41
|
+
"outputs": [
|
|
42
|
+
{
|
|
43
|
+
"internalType": "uint128",
|
|
44
|
+
"name": "",
|
|
45
|
+
"type": "uint128"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"stateMutability": "view",
|
|
49
|
+
"type": "function"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"inputs": [],
|
|
53
|
+
"name": "PRICE_RATIO_DENOMINATOR",
|
|
54
|
+
"outputs": [
|
|
55
|
+
{
|
|
56
|
+
"internalType": "uint128",
|
|
57
|
+
"name": "",
|
|
58
|
+
"type": "uint128"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"stateMutability": "view",
|
|
62
|
+
"type": "function"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"inputs": [],
|
|
66
|
+
"name": "arbitrumPriceExt",
|
|
67
|
+
"outputs": [
|
|
68
|
+
{
|
|
69
|
+
"internalType": "uint64",
|
|
70
|
+
"name": "gasPerL2Tx",
|
|
71
|
+
"type": "uint64"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"internalType": "uint32",
|
|
75
|
+
"name": "gasPerL1CallDataByte",
|
|
76
|
+
"type": "uint32"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"stateMutability": "view",
|
|
80
|
+
"type": "function"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"inputs": [
|
|
84
|
+
{
|
|
85
|
+
"internalType": "uint16",
|
|
86
|
+
"name": "",
|
|
87
|
+
"type": "uint16"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"name": "defaultModelPrice",
|
|
91
|
+
"outputs": [
|
|
92
|
+
{
|
|
93
|
+
"internalType": "uint128",
|
|
94
|
+
"name": "priceRatio",
|
|
95
|
+
"type": "uint128"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"internalType": "uint64",
|
|
99
|
+
"name": "gasPriceInUnit",
|
|
100
|
+
"type": "uint64"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint32",
|
|
104
|
+
"name": "gasPerByte",
|
|
105
|
+
"type": "uint32"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"stateMutability": "view",
|
|
109
|
+
"type": "function"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"inputs": [
|
|
113
|
+
{
|
|
114
|
+
"internalType": "uint16",
|
|
115
|
+
"name": "_dstChainId",
|
|
116
|
+
"type": "uint16"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"internalType": "uint256",
|
|
120
|
+
"name": "_callDataSize",
|
|
121
|
+
"type": "uint256"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"internalType": "uint256",
|
|
125
|
+
"name": "_gas",
|
|
126
|
+
"type": "uint256"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"name": "estimateFeeByChain",
|
|
130
|
+
"outputs": [
|
|
131
|
+
{
|
|
132
|
+
"internalType": "uint256",
|
|
133
|
+
"name": "fee",
|
|
134
|
+
"type": "uint256"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"internalType": "uint128",
|
|
138
|
+
"name": "priceRatio",
|
|
139
|
+
"type": "uint128"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"stateMutability": "view",
|
|
143
|
+
"type": "function"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"inputs": [
|
|
147
|
+
{
|
|
148
|
+
"internalType": "uint16",
|
|
149
|
+
"name": "_dstChainId",
|
|
150
|
+
"type": "uint16"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"internalType": "uint256",
|
|
154
|
+
"name": "_callDataSize",
|
|
155
|
+
"type": "uint256"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"internalType": "uint256",
|
|
159
|
+
"name": "_gas",
|
|
160
|
+
"type": "uint256"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"name": "estimateFeeWithArbitrumModel",
|
|
164
|
+
"outputs": [
|
|
165
|
+
{
|
|
166
|
+
"internalType": "uint256",
|
|
167
|
+
"name": "fee",
|
|
168
|
+
"type": "uint256"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"internalType": "uint128",
|
|
172
|
+
"name": "priceRatio",
|
|
173
|
+
"type": "uint128"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"stateMutability": "view",
|
|
177
|
+
"type": "function"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"inputs": [
|
|
181
|
+
{
|
|
182
|
+
"internalType": "uint16",
|
|
183
|
+
"name": "_dstChainId",
|
|
184
|
+
"type": "uint16"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"internalType": "uint256",
|
|
188
|
+
"name": "_callDataSize",
|
|
189
|
+
"type": "uint256"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"internalType": "uint256",
|
|
193
|
+
"name": "_gas",
|
|
194
|
+
"type": "uint256"
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"name": "estimateFeeWithDefaultModel",
|
|
198
|
+
"outputs": [
|
|
199
|
+
{
|
|
200
|
+
"internalType": "uint256",
|
|
201
|
+
"name": "fee",
|
|
202
|
+
"type": "uint256"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"internalType": "uint128",
|
|
206
|
+
"name": "priceRatio",
|
|
207
|
+
"type": "uint128"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"stateMutability": "view",
|
|
211
|
+
"type": "function"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"inputs": [
|
|
215
|
+
{
|
|
216
|
+
"internalType": "uint16",
|
|
217
|
+
"name": "_dstChainId",
|
|
218
|
+
"type": "uint16"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"internalType": "uint256",
|
|
222
|
+
"name": "_callDataSize",
|
|
223
|
+
"type": "uint256"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"internalType": "uint256",
|
|
227
|
+
"name": "_gas",
|
|
228
|
+
"type": "uint256"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"name": "estimateFeeWithOptimismModel",
|
|
232
|
+
"outputs": [
|
|
233
|
+
{
|
|
234
|
+
"internalType": "uint256",
|
|
235
|
+
"name": "fee",
|
|
236
|
+
"type": "uint256"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"internalType": "uint128",
|
|
240
|
+
"name": "priceRatio",
|
|
241
|
+
"type": "uint128"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"stateMutability": "view",
|
|
245
|
+
"type": "function"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"inputs": [
|
|
249
|
+
{
|
|
250
|
+
"internalType": "uint16",
|
|
251
|
+
"name": "_dstChainId",
|
|
252
|
+
"type": "uint16"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"name": "getPrice",
|
|
256
|
+
"outputs": [
|
|
257
|
+
{
|
|
258
|
+
"components": [
|
|
259
|
+
{
|
|
260
|
+
"internalType": "uint128",
|
|
261
|
+
"name": "priceRatio",
|
|
262
|
+
"type": "uint128"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"internalType": "uint64",
|
|
266
|
+
"name": "gasPriceInUnit",
|
|
267
|
+
"type": "uint64"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"internalType": "uint32",
|
|
271
|
+
"name": "gasPerByte",
|
|
272
|
+
"type": "uint32"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"internalType": "struct ILayerZeroPriceFeed.Price",
|
|
276
|
+
"name": "price",
|
|
277
|
+
"type": "tuple"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"stateMutability": "view",
|
|
281
|
+
"type": "function"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"inputs": [],
|
|
285
|
+
"name": "getPriceRatioDenominator",
|
|
286
|
+
"outputs": [
|
|
287
|
+
{
|
|
288
|
+
"internalType": "uint128",
|
|
289
|
+
"name": "",
|
|
290
|
+
"type": "uint128"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"stateMutability": "view",
|
|
294
|
+
"type": "function"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"inputs": [
|
|
298
|
+
{
|
|
299
|
+
"internalType": "address",
|
|
300
|
+
"name": "_priceUpdater",
|
|
301
|
+
"type": "address"
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"name": "initialize",
|
|
305
|
+
"outputs": [],
|
|
306
|
+
"stateMutability": "nonpayable",
|
|
307
|
+
"type": "function"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"inputs": [],
|
|
311
|
+
"name": "nativeTokenPriceUSD",
|
|
312
|
+
"outputs": [
|
|
313
|
+
{
|
|
314
|
+
"internalType": "uint128",
|
|
315
|
+
"name": "",
|
|
316
|
+
"type": "uint128"
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"stateMutability": "view",
|
|
320
|
+
"type": "function"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"inputs": [],
|
|
324
|
+
"name": "onUpgrade",
|
|
325
|
+
"outputs": [],
|
|
326
|
+
"stateMutability": "nonpayable",
|
|
327
|
+
"type": "function"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"inputs": [],
|
|
331
|
+
"name": "owner",
|
|
332
|
+
"outputs": [
|
|
333
|
+
{
|
|
334
|
+
"internalType": "address",
|
|
335
|
+
"name": "",
|
|
336
|
+
"type": "address"
|
|
337
|
+
}
|
|
338
|
+
],
|
|
339
|
+
"stateMutability": "view",
|
|
340
|
+
"type": "function"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"inputs": [
|
|
344
|
+
{
|
|
345
|
+
"internalType": "address",
|
|
346
|
+
"name": "",
|
|
347
|
+
"type": "address"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"name": "priceUpdater",
|
|
351
|
+
"outputs": [
|
|
352
|
+
{
|
|
353
|
+
"internalType": "bool",
|
|
354
|
+
"name": "",
|
|
355
|
+
"type": "bool"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"stateMutability": "view",
|
|
359
|
+
"type": "function"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"inputs": [],
|
|
363
|
+
"name": "renounceOwnership",
|
|
364
|
+
"outputs": [],
|
|
365
|
+
"stateMutability": "nonpayable",
|
|
366
|
+
"type": "function"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"inputs": [
|
|
370
|
+
{
|
|
371
|
+
"internalType": "uint128",
|
|
372
|
+
"name": "_compressionPercent",
|
|
373
|
+
"type": "uint128"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"name": "setArbitrumCompressionPercent",
|
|
377
|
+
"outputs": [],
|
|
378
|
+
"stateMutability": "nonpayable",
|
|
379
|
+
"type": "function"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"inputs": [
|
|
383
|
+
{
|
|
384
|
+
"internalType": "uint128",
|
|
385
|
+
"name": "_nativeTokenPriceUSD",
|
|
386
|
+
"type": "uint128"
|
|
387
|
+
}
|
|
388
|
+
],
|
|
389
|
+
"name": "setNativeTokenPriceUSD",
|
|
390
|
+
"outputs": [],
|
|
391
|
+
"stateMutability": "nonpayable",
|
|
392
|
+
"type": "function"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"inputs": [
|
|
396
|
+
{
|
|
397
|
+
"components": [
|
|
398
|
+
{
|
|
399
|
+
"internalType": "uint16",
|
|
400
|
+
"name": "chainId",
|
|
401
|
+
"type": "uint16"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"components": [
|
|
405
|
+
{
|
|
406
|
+
"internalType": "uint128",
|
|
407
|
+
"name": "priceRatio",
|
|
408
|
+
"type": "uint128"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"internalType": "uint64",
|
|
412
|
+
"name": "gasPriceInUnit",
|
|
413
|
+
"type": "uint64"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"internalType": "uint32",
|
|
417
|
+
"name": "gasPerByte",
|
|
418
|
+
"type": "uint32"
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
"internalType": "struct ILayerZeroPriceFeed.Price",
|
|
422
|
+
"name": "price",
|
|
423
|
+
"type": "tuple"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"internalType": "struct ILayerZeroPriceFeed.UpdatePrice[]",
|
|
427
|
+
"name": "_price",
|
|
428
|
+
"type": "tuple[]"
|
|
429
|
+
}
|
|
430
|
+
],
|
|
431
|
+
"name": "setPrice",
|
|
432
|
+
"outputs": [],
|
|
433
|
+
"stateMutability": "nonpayable",
|
|
434
|
+
"type": "function"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"inputs": [
|
|
438
|
+
{
|
|
439
|
+
"components": [
|
|
440
|
+
{
|
|
441
|
+
"internalType": "uint16",
|
|
442
|
+
"name": "chainId",
|
|
443
|
+
"type": "uint16"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"components": [
|
|
447
|
+
{
|
|
448
|
+
"internalType": "uint128",
|
|
449
|
+
"name": "priceRatio",
|
|
450
|
+
"type": "uint128"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"internalType": "uint64",
|
|
454
|
+
"name": "gasPriceInUnit",
|
|
455
|
+
"type": "uint64"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"internalType": "uint32",
|
|
459
|
+
"name": "gasPerByte",
|
|
460
|
+
"type": "uint32"
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
"internalType": "struct ILayerZeroPriceFeed.Price",
|
|
464
|
+
"name": "price",
|
|
465
|
+
"type": "tuple"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"components": [
|
|
469
|
+
{
|
|
470
|
+
"internalType": "uint64",
|
|
471
|
+
"name": "gasPerL2Tx",
|
|
472
|
+
"type": "uint64"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"internalType": "uint32",
|
|
476
|
+
"name": "gasPerL1CallDataByte",
|
|
477
|
+
"type": "uint32"
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"internalType": "struct ILayerZeroPriceFeed.ArbitrumPriceExt",
|
|
481
|
+
"name": "extend",
|
|
482
|
+
"type": "tuple"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"internalType": "struct ILayerZeroPriceFeed.UpdatePriceExt[]",
|
|
486
|
+
"name": "_price",
|
|
487
|
+
"type": "tuple[]"
|
|
488
|
+
}
|
|
489
|
+
],
|
|
490
|
+
"name": "setPriceForArbitrum",
|
|
491
|
+
"outputs": [],
|
|
492
|
+
"stateMutability": "nonpayable",
|
|
493
|
+
"type": "function"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"inputs": [
|
|
497
|
+
{
|
|
498
|
+
"internalType": "uint128",
|
|
499
|
+
"name": "_denominator",
|
|
500
|
+
"type": "uint128"
|
|
501
|
+
}
|
|
502
|
+
],
|
|
503
|
+
"name": "setPriceRatioDenominator",
|
|
504
|
+
"outputs": [],
|
|
505
|
+
"stateMutability": "nonpayable",
|
|
506
|
+
"type": "function"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"inputs": [
|
|
510
|
+
{
|
|
511
|
+
"internalType": "address",
|
|
512
|
+
"name": "_addr",
|
|
513
|
+
"type": "address"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"internalType": "bool",
|
|
517
|
+
"name": "_active",
|
|
518
|
+
"type": "bool"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"name": "setPriceUpdater",
|
|
522
|
+
"outputs": [],
|
|
523
|
+
"stateMutability": "nonpayable",
|
|
524
|
+
"type": "function"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"inputs": [
|
|
528
|
+
{
|
|
529
|
+
"internalType": "address",
|
|
530
|
+
"name": "newOwner",
|
|
531
|
+
"type": "address"
|
|
532
|
+
}
|
|
533
|
+
],
|
|
534
|
+
"name": "transferOwnership",
|
|
535
|
+
"outputs": [],
|
|
536
|
+
"stateMutability": "nonpayable",
|
|
537
|
+
"type": "function"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"bytecode": "0x000200000000000200010000000103550000006001100270000001d20010019d0000000101200190000000070000c13d0742004d0000040f0000008001000039000000400200003900000000001204350000000001000416000000000110004c000000150000c13d000000200200003900000100010000390000000000210439000001200200003900000000000204390000004002000039000001d3030000410742003a0000040f00000000010000190000000002000019074200440000040f000001d2020000410000000003000414000001d20430009c0000000003028019000001d20410009c00000000010280190000004001100210000000c002300210000000000112019f000001d4011001c70000801002000039074207390000040f0000000102200190000000280000613d000000000101043b000000000001042d00000000010000190000000002000019074200440000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c001100210000001d5011001c70000800202000039074207390000040f0000000102200190000000370000613d000000000101043b000000000001042d00000000010000190000000002000019074200440000040f000001d204000041000001d20510009c000000000104801900000040011002100000000001310019000001d20320009c000000000204801900000060022002100000000001210019000007430001042e000001d203000041000001d20420009c0000000002038019000001d20410009c000000000103801900000040011002100000006002200210000000000112019f000007440001043000090000000000020000008001000039000000400500003900000000001504350000000001000031000000040110008c0000049e0000413d0000000101000367000000000101043b000000e001100270000001d60210009c000000950000613d000001d70210009c0000010d0000613d000001d80210009c000001270000613d000001d90210009c000001480000613d000001da0210009c000001670000613d000001db0210009c000001790000613d000001dc0210009c000001ac0000613d000001dd0210009c000001de0000613d000001de0210009c000002390000613d000001df0210009c000002650000613d000001e00210009c000002750000613d000001e10210009c0000029b0000613d000001e20210009c000002b70000613d000001e30210009c000002e20000613d000001e40210009c000002fe0000613d000001e50210009c0000030e0000613d000001e60210009c0000032a0000613d000001e70210009c0000034c0000613d000001e80210009c000003680000613d000001e90210009c000003890000613d000001ea0210009c000003c90000613d000001eb0210009c000003d90000613d000001ec0110009c0000049e0000c13d0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074206bf0000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000000040210008a000001ee03000041000000200420008c00000000040000190000000004034019000001ee02200197000000000520004c000000000300a019000001ee0220009c00000000020400190000000002036019000000000220004c0000049e0000c13d00000001020003670000000403200370000000000303043b000300000003001d000001f30330009c0000049e0000213d00000003030000290000002303300039000001ee04000041000000000513004b00000000050000190000000005048019000001ee06100197000001ee03300197000000000763004b0000000004008019000000000363013f000001ee0330009c00000000030500190000000003046019000000000330004c0000049e0000c13d00000003030000290000000403300039000000000232034f000000000202043b000200000002001d000001f30220009c0000049e0000213d0000000202000029000000c0322000c9000000030300002900000000022300190000002402200039000000000112004b0000049e0000213d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000000d90000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f0000006801000039000700000001001d00000000030000190000000201000029000000000113004b000002610000813d000000c0213000c90000000302000029000000000421001900000024014000390000000101100367000000000201043b0000ffff0120008c0000049e0000213d000500000002001d00000000020000310000004401400039000400000003001d000600000004001d074205570000040f000000000201001900000005010000290742058a0000040f0000000603000029000000a4023000390000000101000367000000000221034f000000000202043b000001f304200197000002020220009c0000049e0000813d000000c402300039000000000121034f000000000201043b000001d20120009c0000049e0000213d0000000701000029000600000004001d000500000002001d074207400000040f0000000502000029000000400220021000000203022001970000000603000029000000000232019f0000020401100197000000000112019f00000007020000290742073e0000040f00000004030000290000000103300039000000dc0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000001f501000041074207400000040f000001ef01100197000000000210004c000004070000c13d000001ef01000041000001f5020000410742073e0000040f0000040a0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204b60000040f000700000001001d074204eb0000040f0000006901000039000600000001001d074207400000040f00000007020000290000008002200210000001ed01100197000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006801000039000700000005001d074207400000040f0000004002100270000001d2032001970000000702000029000000000502043300000020045000390000000000340435000001f3011001970000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000031f0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000400310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000001010003670000000402100370000000000302043b000001ef0230009c0000049e0000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000000000112004b0000049e0000c13d000700000002001d000600000003001d074204eb0000040f000000060100002900000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f000600000001001d074207400000040f000001000200008a000000000121016f0000000702000029000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000004010000390000000101100367000000000201043b000001ed0120009c0000049e0000213d000700000002001d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000001d20000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f0000006901000039000600000001001d074207400000040f000001f4011001970000000702000029000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000000040210008a000001ee03000041000000200420008c00000000040000190000000004034019000001ee02200197000000000520004c000000000300a019000001ee0220009c00000000020400190000000002036019000000000220004c0000049e0000c13d00000001020003670000000403200370000000000303043b000500000003001d000001f30330009c0000049e0000213d00000005030000290000002303300039000001ee04000041000000000513004b00000000050000190000000005048019000001ee06100197000001ee03300197000000000763004b0000000004008019000000000363013f000001ee0330009c00000000030500190000000003046019000000000330004c0000049e0000c13d00000005030000290000000403300039000000000232034f000000000202043b000400000002001d000001f30220009c0000049e0000213d00000004020000290000000702200210000000050300002900000000022300190000002402200039000000000112004b0000049e0000213d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000002220000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f00000000030000190000000401000029000000000113004b000002610000813d00000007013002100000000502000029000000000121001900000024021000390000000102200367000000000402043b0000ffff0240008c0000049e0000213d00000000020000310000004401100039000700000003001d000600000004001d074205570000040f000000000201001900000006010000290742058a0000040f00000007030000290000000103300039000002230000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204eb0000040f0000003301000039000600000001001d074207400000040f000700000001001d000001ff0110019700000006020000290742073e0000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c00110021000000200011001c70000000702000029000001ef052001970000800d02000039000000030300003900000201040000410000000006000019074207340000040f00000001012001900000049e0000613d0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074205c80000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204bf0000040f000001ef01100197000000000010043500000066010000390000002002000039000600000002001d00000000001204350000000001000019074200180000040f074207400000040f00000007020000290000000002020433000000ff011001900000000001000019000000010100c03900000000001204350000000001020019000000060200002900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000003301000039000700000005001d074207400000040f00000007020000290000000003020433000001ef0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204c80000040f0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f0000008002100270000001f3022001970000000703000029000000000303043300000020043000390000000000240435000000c002100270000001d20220019700000040043000390000000000240435000001ed0110019700000000001304350000006002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006901000039000700000005001d074207400000040f00000007020000290000000003020433000001ed0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f0742062d0000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006501000039000700000005001d074207400000040f00000007020000290000000003020433000001ed0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000000401000039000600000001001d0000000101100367000000000101043b000500000001001d000001ef0110009c0000049e0000213d000700000005001d000001f501000041074207400000040f000001ef01100197000000000210004c0000041c0000c13d000001ef01000041000001f5020000410742073e0000040f0000041f0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006901000039000700000005001d074207400000040f00000007020000290000000003020433000000800110027000000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204b60000040f000700000001001d074204eb0000040f0000006501000039000600000001001d074207400000040f0000000702000029000001ed02200197000001f401100197000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204c80000040f000600000001001d074205480000040f0000004002100039000000000002043500000000000104350000002001100039000000000001043500000006010000290000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f000500000001001d074205480000040f000600000001001d0000000501000029074207400000040f000000c002100270000001d202200197000000060400002900000040034000390000000000230435000001ed02100197000000000024043500000020044000390000008001100270000001f30110019700000000001404350000000701000029000000000101043300000000002104350000000002040433000001f302200197000000200410003900000000002404350000000002030433000001d20220019700000040031000390000000000230435000000600200003900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074205e40000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000004010000390000000101100367000000000201043b000001ef0120009c0000049e0000213d000700000005001d000600000002001d074204eb0000040f0000000601000029000000000210004c000004310000c13d000000070100002900000000010104330000006402100039000001f00300004100000000003204350000004402100039000001f1030000410000000000320435000000240210003900000026030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f0000000002000411000000000112004b0000049e0000c13d0000006501000039000700000001001d074207400000040f000001f401100197000001fa011001c700000007020000290742073e0000040f0000006901000039000700000001001d074207400000040f000001ed01100197000001fb011001c700000007020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000002000411000000000112004b0000049e0000c13d0000000001000019074207400000040f0000ff000210018f000400000002001d000000000220004c000000ff0310018f000300000001001d000004360000c13d000000000230004c00000000020000190000000102006039000800000002001d0000000004000415000000080440008a00000020044000c9000000000230004c0000044d0000613d0000043a0000013d074205000000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000004000415000000090440008a00000020044000c9000900000000001d000200000004001d000100000003001d000001f60100004100000000001004390000000001000410000000060200002900000000001204390742002b0000040f000000000110004c000004a10000c13d0000000101000029000000010110008c000000000100001900000001010060390000000202000029000000200220011a000000000201001f0000000301000029000004a40000c13d000001000200008a000600000002001d000000000121016f00000001011001bf00000000020000190742073e0000040f0000000401000029000000000110004c0000045b0000c13d0000000301000029000001f90110019700000101011001bf00000000020000190742073e0000040f0000000001000019074207400000040f0000000801100270000000ff0110018f000300000001001d074205210000040f0000000301000029074205210000040f0000000001000411074205000000040f000000050100002900000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f000500000001001d074207400000040f0000000602000029000000000121016f00000001011001bf00000005020000290742073e0000040f0000006501000039000600000001001d074207400000040f000001f401100197000001fa011001c700000006020000290742073e0000040f0000006901000039000600000001001d074207400000040f000001ed01100197000001fb011001c700000006020000290742073e0000040f0000000401000029000000000110004c0000000702000029000002610000c13d0000000001000019074207400000040f000001fc02000041000000000121016f00000000020000190742073e0000040f0000000701000029000000000101043300000001030000390000000000310435000001d2020000410000000004000414000001d20540009c0000000004028019000001d20510009c00000000010280190000004001100210000000c002400210000000000112019f000001fd011001c70000800d02000039000001fe04000041074207340000040f0000000101200190000002610000c13d00000000010000190000000002000019074200440000040f0000000201000029000000200110011a000000000100001f000000070100002900000000010104330000006402100039000001f70300004100000000003204350000004402100039000001f803000041000000000032043500000024021000390000002e030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f00000004010000390000000101100367000000000101043b000002050210009c000004bc0000813d000000000001042d00000000010000190000000002000019074200440000040f00000004010000390000000101100367000000000101043b000002060210009c000004c50000813d000000000001042d00000000010000190000000002000019074200440000040f00000004010000390000000101100367000000000101043b000002070210009c000004ce0000813d000000000001042d00000000010000190000000002000019074200440000040f000000040110008a000001ee020000410000005f0310008c00000000030000190000000003022019000001ee01100197000000000410004c0000000002008019000001ee0110009c00000000010300190000000001026019000000000110004c000004e80000613d00000001030003670000000401300370000000000101043b0000ffff0210008c000004e80000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d00000000010000190000000002000019074200440000040f0000003301000039074207400000040f000001ef011001970000000002000411000000000121004b000004f20000c13d000000000001042d00000040010000390000000001010433000000440210003900000208030000410000000000320435000001f2020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039074200440000040f0003000000000002000300000001001d0000003301000039000100000001001d074207400000040f0000000302000029000001ef02200197000300000002001d000200000001001d000001ff03100197000000000123019f00000001020000290742073e0000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c0011002100000000202000029000001ef0520019700000200011001c70000800d02000039000000030300003900000201040000410000000306000029074207340000040f00000001012001900000051e0000613d0000000300000005000000000001042d00000000010000190000000002000019074200440000040f000000000110004c000005240000613d000000000001042d0000004001000039000000000101043300000064021000390000020903000041000000000032043500000044021000390000020a03000041000000000032043500000024021000390000002b030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f000000000110004c000005390000613d000000000001042d0000004001000039000000000101043300000044021000390000020b03000041000000000032043500000024021000390000001c030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074200440000040f000000400200003900000000010204330000020c0310009c0000054f0000813d00000060031000390000000000320435000000000001042d0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000000002120049000001ee030000410000005f0420008c00000000040000190000000004032019000001ee02200197000000000520004c0000000003008019000001ee0220009c00000000020400190000000002036019000000000220004c0000057f0000613d000000400300003900000000020304330000020c0420009c000005820000813d000000600420003900000000004304350000000103100367000000000303043b000001ed0430009c0000057f0000213d000000000032043500000020031000390000000103300367000000000303043b000001f30430009c0000057f0000213d0000002004200039000000000034043500000040011000390000000101100367000000000101043b000001d20310009c0000057f0000213d000000400320003900000000001304350000000001020019000000000001042d00000000010000190000000002000019074200440000040f0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0004000000000002000000400300003900000000060304330000020c0460009c000005c00000813d000000200420003900000000040404330000000005020433000000400220003900000000020204330000000007060019000200000007001d00000060067000390000000000630435000001d2022001970000004003700039000400000003001d0000000000230435000001f3024001970000002003700039000300000003001d0000000000230435000001ed0250019700000000002704350000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f00000002020000290000000002020433000100000002001d000200000001001d074207400000040f0000000102000029000001ed022001970000020e01100197000000000121019f0000000302000029000000000202043300000080022002100000020f02200197000000000121019f00000004020000290000000002020433000000c0022002100000021002200197000000000121019f00000002020000290742073e0000040f0000000400000005000000000001042d0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000ffff0410018f0000006e0540008c000000000500001900000001050060390000279f0640008c00000000060000190000000106006039000000000756013f000000000565019f00004eaf0640008c00000000060000190000000106006039000000000770004c00000000050660190000000105500190000005da0000613d074206bf0000040f000005e30000013d00004ea40540008c000005e20000613d0000006f0540008c000005e20000613d000027940440008c000005e20000613d074205e40000040f000005e30000013d0742062d0000040f000000000001042d0002000000000002000100000003001d000200000002001d0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f0000000205000029000000c002100270000001d20220019700000000435200a9000000000450004c000005f80000613d00000000545300d9000000000224004b0000060f0000c13d00000001020000290000000002230019000000000332004b0000000003000019000000010300403900000001033001900000060f0000c13d0000008003100270000001f304300197000000000320004c000006170000613d00000000534200a900000000522300d9000000000242004b0000060f0000c13d000001ed04100197000000000130004c0000000005000019000006190000613d00000000154300a900000000213500d9000000000141004b000006190000613d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f000001ed041001970000000005000019000100000005001d000200000004001d0000006501000039074207400000040f000001ed01100197000000000210004c000006250000613d000000010200002900000000211200d900000002020000290000000200000005000000000001042d0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0005000000000002000100000003001d000500000002001d00000065020000390000ffff0310018f0000006f0130008c0000063a0000613d0000278902000039000027940130008c0000063a0000613d00004e990200003900004ea40130008c000006b00000c13d000400000003001d000000000020043500000067010000390000002002000039000300000001001d000200000002001d00000000001204350000000001000019074200180000040f074207400000040f0000000005010019000000c001500270000001d202100197000000050400002900000000314200a9000000000340004c000006510000613d00000000434100d9000000000223004b000006a00000c13d00000c740200008a000000000221004b000006a00000813d00000c74011000390000008002500270000001f30220019700000000342100a900000000311400d9000000000121004b000006a00000c13d000000040100002900000000001004350000000301000029000000020200002900000000001204350000000001000019000400000005001d000300000004001d074200180000040f074207400000040f0000000306000029000000040500002900000005040000290000000007010019000000c001700270000001d20110019700000000324100a9000000000340004c0000066e0000613d00000000434200d9000000000113004b000006a00000c13d00000001010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000006a00000c13d0000008002700270000001f30220019700000000342100a9000000000310004c0000067d0000613d00000000311400d9000000000121004b000006a00000c13d000001ed0150019700000000251600a9000000000260004c000006840000613d00000000326500d9000000000112004b000006a00000c13d000300000005001d000400000004001d000500000007001d0000006501000039074207400000040f000001ed01100197000000000210004c000006a80000613d0000000502000029000001ed02200197000000040500002900000000432500a9000000000450004c0000000306000029000006960000613d00000000545300d9000000000424004b000006a00000c13d00000000541600d900000000131300d90000000001430019000000000331004b000000000300001900000001030040390000000103300190000006a00000c13d0000000500000005000000000001042d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000004001000039000000000101043300000044021000390000021103000041000000000032043500000024021000390000001e030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074200440000040f0005000000000002000200000003001d000500000002001d0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f000400000001001d0000006901000039074207400000040f0000008001100270000000050300002900000000243100a9000000000230004c000006d50000613d000000050200002900000000322400d9000000000112004b000007160000c13d0000006801000039000300000004001d074207400000040f000100000001001d0000004001100270000001d2011001970000000305000029000000643250011a00000000342100a9000000640350008c000006e30000413d00000000322400d9000000000112004b000007160000c13d0000000401000029000400000004001d074207400000040f0000000406000029000000c002100270000001d203200197000000050500002900000000425300a9000000000450004c000006f10000613d000000050400002900000000544200d9000000000334004b000007160000c13d0000000103000029000001f30430019700000002030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000007160000c13d0000000003360019000000000463004b000000000400001900000001040040390000000104400190000007160000c13d0000000003320019000000000223004b000000000200001900000001020040390000000102200190000007160000c13d0000008002100270000001f304200197000000000230004c0000071e0000613d00000000524300a900000000533200d9000000000343004b000007160000c13d000001ed03100197000000000120004c0000000004000019000007200000613d00000000143200a900000000212400d9000000000131004b000007200000613d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f000001ed031001970000000004000019000400000004001d000500000003001d0000006501000039074207400000040f000001ed01100197000000000210004c0000072c0000613d000000040200002900000000211200d900000005020000290000000500000005000000000001042d0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f00000737002104210000000102000039000000000001042d0000000002000019000000000001042d0000073c002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000074200000432000007430001042e000007440001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000002000002000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000015527af6000000000000000000000000000000000000000000000000000000001824a46b000000000000000000000000000000000000000000000000000000002f7cb0b40000000000000000000000000000000000000000000000000000000036a5beba000000000000000000000000000000000000000000000000000000003c04741e0000000000000000000000000000000000000000000000000000000052a72510000000000000000000000000000000000000000000000000000000005d6d7ccb00000000000000000000000000000000000000000000000000000000711746e200000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007bc3c9ab000000000000000000000000000000000000000000000000000000008ca2fb08000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008f7002d20000000000000000000000000000000000000000000000000000000092807f5800000000000000000000000000000000000000000000000000000000ab1518ab00000000000000000000000000000000000000000000000000000000c184032700000000000000000000000000000000000000000000000000000000c4d66de800000000000000000000000000000000000000000000000000000000cd68b79b00000000000000000000000000000000000000000000000000000000d350ad2500000000000000000000000000000000000000000000000000000000e0ad121a00000000000000000000000000000000000000000000000000000000e15d16e800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000ff37b49600000000000000000000000000000000ffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61031806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000002f00000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff02000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695072696365466565643a206e6f74207072696365207570646174657200000000000000000000000000000000000000000000000000000000ffffffffffffffa04e487b7100000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000000000000000005072696365466565643a20756e6b6e6f776e206c3220636861696e20696400000000000000000000000000000000000000000000000000000000000000000000",
|
|
541
|
+
"deployedBytecode": "0x000200000000000200010000000103550000006001100270000001d20010019d0000000101200190000000070000c13d0742004d0000040f0000008001000039000000400200003900000000001204350000000001000416000000000110004c000000150000c13d000000200200003900000100010000390000000000210439000001200200003900000000000204390000004002000039000001d3030000410742003a0000040f00000000010000190000000002000019074200440000040f000001d2020000410000000003000414000001d20430009c0000000003028019000001d20410009c00000000010280190000004001100210000000c002300210000000000112019f000001d4011001c70000801002000039074207390000040f0000000102200190000000280000613d000000000101043b000000000001042d00000000010000190000000002000019074200440000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c001100210000001d5011001c70000800202000039074207390000040f0000000102200190000000370000613d000000000101043b000000000001042d00000000010000190000000002000019074200440000040f000001d204000041000001d20510009c000000000104801900000040011002100000000001310019000001d20320009c000000000204801900000060022002100000000001210019000007430001042e000001d203000041000001d20420009c0000000002038019000001d20410009c000000000103801900000040011002100000006002200210000000000112019f000007440001043000090000000000020000008001000039000000400500003900000000001504350000000001000031000000040110008c0000049e0000413d0000000101000367000000000101043b000000e001100270000001d60210009c000000950000613d000001d70210009c0000010d0000613d000001d80210009c000001270000613d000001d90210009c000001480000613d000001da0210009c000001670000613d000001db0210009c000001790000613d000001dc0210009c000001ac0000613d000001dd0210009c000001de0000613d000001de0210009c000002390000613d000001df0210009c000002650000613d000001e00210009c000002750000613d000001e10210009c0000029b0000613d000001e20210009c000002b70000613d000001e30210009c000002e20000613d000001e40210009c000002fe0000613d000001e50210009c0000030e0000613d000001e60210009c0000032a0000613d000001e70210009c0000034c0000613d000001e80210009c000003680000613d000001e90210009c000003890000613d000001ea0210009c000003c90000613d000001eb0210009c000003d90000613d000001ec0110009c0000049e0000c13d0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074206bf0000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000000040210008a000001ee03000041000000200420008c00000000040000190000000004034019000001ee02200197000000000520004c000000000300a019000001ee0220009c00000000020400190000000002036019000000000220004c0000049e0000c13d00000001020003670000000403200370000000000303043b000300000003001d000001f30330009c0000049e0000213d00000003030000290000002303300039000001ee04000041000000000513004b00000000050000190000000005048019000001ee06100197000001ee03300197000000000763004b0000000004008019000000000363013f000001ee0330009c00000000030500190000000003046019000000000330004c0000049e0000c13d00000003030000290000000403300039000000000232034f000000000202043b000200000002001d000001f30220009c0000049e0000213d0000000202000029000000c0322000c9000000030300002900000000022300190000002402200039000000000112004b0000049e0000213d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000000d90000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f0000006801000039000700000001001d00000000030000190000000201000029000000000113004b000002610000813d000000c0213000c90000000302000029000000000421001900000024014000390000000101100367000000000201043b0000ffff0120008c0000049e0000213d000500000002001d00000000020000310000004401400039000400000003001d000600000004001d074205570000040f000000000201001900000005010000290742058a0000040f0000000603000029000000a4023000390000000101000367000000000221034f000000000202043b000001f304200197000002020220009c0000049e0000813d000000c402300039000000000121034f000000000201043b000001d20120009c0000049e0000213d0000000701000029000600000004001d000500000002001d074207400000040f0000000502000029000000400220021000000203022001970000000603000029000000000232019f0000020401100197000000000112019f00000007020000290742073e0000040f00000004030000290000000103300039000000dc0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000001f501000041074207400000040f000001ef01100197000000000210004c000004070000c13d000001ef01000041000001f5020000410742073e0000040f0000040a0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204b60000040f000700000001001d074204eb0000040f0000006901000039000600000001001d074207400000040f00000007020000290000008002200210000001ed01100197000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006801000039000700000005001d074207400000040f0000004002100270000001d2032001970000000702000029000000000502043300000020045000390000000000340435000001f3011001970000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000031f0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000400310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000001010003670000000402100370000000000302043b000001ef0230009c0000049e0000213d0000002401100370000000000201043b000000000120004c0000000001000019000000010100c039000000000112004b0000049e0000c13d000700000002001d000600000003001d074204eb0000040f000000060100002900000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f000600000001001d074207400000040f000001000200008a000000000121016f0000000702000029000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000004010000390000000101100367000000000201043b000001ed0120009c0000049e0000213d000700000002001d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000001d20000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f0000006901000039000600000001001d074207400000040f000001f4011001970000000702000029000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000000040210008a000001ee03000041000000200420008c00000000040000190000000004034019000001ee02200197000000000520004c000000000300a019000001ee0220009c00000000020400190000000002036019000000000220004c0000049e0000c13d00000001020003670000000403200370000000000303043b000500000003001d000001f30330009c0000049e0000213d00000005030000290000002303300039000001ee04000041000000000513004b00000000050000190000000005048019000001ee06100197000001ee03300197000000000763004b0000000004008019000000000363013f000001ee0330009c00000000030500190000000003046019000000000330004c0000049e0000c13d00000005030000290000000403300039000000000232034f000000000202043b000400000002001d000001f30220009c0000049e0000213d00000004020000290000000702200210000000050300002900000000022300190000002402200039000000000112004b0000049e0000213d0000003301000039074207400000040f000001ef021001970000000001000411000000000212004b000002220000613d00000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f000000ff0110018f074205360000040f00000000030000190000000401000029000000000113004b000002610000813d00000007013002100000000502000029000000000121001900000024021000390000000102200367000000000402043b0000ffff0240008c0000049e0000213d00000000020000310000004401100039000700000003001d000600000004001d074205570000040f000000000201001900000006010000290742058a0000040f00000007030000290000000103300039000002230000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204eb0000040f0000003301000039000600000001001d074207400000040f000700000001001d000001ff0110019700000006020000290742073e0000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c00110021000000200011001c70000000702000029000001ef052001970000800d02000039000000030300003900000201040000410000000006000019074207340000040f00000001012001900000049e0000613d0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074205c80000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204bf0000040f000001ef01100197000000000010043500000066010000390000002002000039000600000002001d00000000001204350000000001000019074200180000040f074207400000040f00000007020000290000000002020433000000ff011001900000000001000019000000010100c03900000000001204350000000001020019000000060200002900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000003301000039000700000005001d074207400000040f00000007020000290000000003020433000001ef0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204c80000040f0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f0000008002100270000001f3022001970000000703000029000000000303043300000020043000390000000000240435000000c002100270000001d20220019700000040043000390000000000240435000001ed0110019700000000001304350000006002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006901000039000700000005001d074207400000040f00000007020000290000000003020433000001ed0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f0742062d0000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006501000039000700000005001d074207400000040f00000007020000290000000003020433000001ed0110019700000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000000401000039000600000001001d0000000101100367000000000101043b000500000001001d000001ef0110009c0000049e0000213d000700000005001d000001f501000041074207400000040f000001ef01100197000000000210004c0000041c0000c13d000001ef01000041000001f5020000410742073e0000040f0000041f0000013d0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000000310004c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d0000006901000039000700000005001d074207400000040f00000007020000290000000003020433000000800110027000000000001304350000002002000039000000000103001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d074204b60000040f000700000001001d074204eb0000040f0000006501000039000600000001001d074207400000040f0000000702000029000001ed02200197000001f401100197000000000121019f00000006020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d000700000005001d074204c80000040f000600000001001d074205480000040f0000004002100039000000000002043500000000000104350000002001100039000000000001043500000006010000290000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f000500000001001d074205480000040f000600000001001d0000000501000029074207400000040f000000c002100270000001d202200197000000060400002900000040034000390000000000230435000001ed02100197000000000024043500000020044000390000008001100270000001f30110019700000000001404350000000701000029000000000101043300000000002104350000000002040433000001f302200197000000200410003900000000002404350000000002030433000001d20220019700000040031000390000000000230435000000600200003900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d0000000001000031000700000005001d074204d10000040f074205e40000040f000001ed0320019700000007020000290000000005020433000000200450003900000000003404350000000000150435000000000105001900000000030000190742003a0000040f0000000001000416000000000110004c0000049e0000c13d000000040100008a0000000001100031000001ee02000041000000200310008c00000000030000190000000003024019000001ee01100197000000000410004c000000000200a019000001ee0110009c00000000010300190000000001026019000000000110004c0000049e0000c13d00000004010000390000000101100367000000000201043b000001ef0120009c0000049e0000213d000700000005001d000600000002001d074204eb0000040f0000000601000029000000000210004c000004310000c13d000000070100002900000000010104330000006402100039000001f00300004100000000003204350000004402100039000001f1030000410000000000320435000000240210003900000026030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f0000000002000411000000000112004b0000049e0000c13d0000006501000039000700000001001d074207400000040f000001f401100197000001fa011001c700000007020000290742073e0000040f0000006901000039000700000001001d074207400000040f000001ed01100197000001fb011001c700000007020000290742073e0000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000002000411000000000112004b0000049e0000c13d0000000001000019074207400000040f0000ff000210018f000400000002001d000000000220004c000000ff0310018f000300000001001d000004360000c13d000000000230004c00000000020000190000000102006039000800000002001d0000000004000415000000080440008a00000020044000c9000000000230004c0000044d0000613d0000043a0000013d074205000000040f0000000001000019000000000200001900000000030000190742003a0000040f0000000004000415000000090440008a00000020044000c9000900000000001d000200000004001d000100000003001d000001f60100004100000000001004390000000001000410000000060200002900000000001204390742002b0000040f000000000110004c000004a10000c13d0000000101000029000000010110008c000000000100001900000001010060390000000202000029000000200220011a000000000201001f0000000301000029000004a40000c13d000001000200008a000600000002001d000000000121016f00000001011001bf00000000020000190742073e0000040f0000000401000029000000000110004c0000045b0000c13d0000000301000029000001f90110019700000101011001bf00000000020000190742073e0000040f0000000001000019074207400000040f0000000801100270000000ff0110018f000300000001001d074205210000040f0000000301000029074205210000040f0000000001000411074205000000040f000000050100002900000000001004350000006601000039000000200200003900000000001204350000000001000019074200180000040f000500000001001d074207400000040f0000000602000029000000000121016f00000001011001bf00000005020000290742073e0000040f0000006501000039000600000001001d074207400000040f000001f401100197000001fa011001c700000006020000290742073e0000040f0000006901000039000600000001001d074207400000040f000001ed01100197000001fb011001c700000006020000290742073e0000040f0000000401000029000000000110004c0000000702000029000002610000c13d0000000001000019074207400000040f000001fc02000041000000000121016f00000000020000190742073e0000040f0000000701000029000000000101043300000001030000390000000000310435000001d2020000410000000004000414000001d20540009c0000000004028019000001d20510009c00000000010280190000004001100210000000c002400210000000000112019f000001fd011001c70000800d02000039000001fe04000041074207340000040f0000000101200190000002610000c13d00000000010000190000000002000019074200440000040f0000000201000029000000200110011a000000000100001f000000070100002900000000010104330000006402100039000001f70300004100000000003204350000004402100039000001f803000041000000000032043500000024021000390000002e030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f00000004010000390000000101100367000000000101043b000002050210009c000004bc0000813d000000000001042d00000000010000190000000002000019074200440000040f00000004010000390000000101100367000000000101043b000002060210009c000004c50000813d000000000001042d00000000010000190000000002000019074200440000040f00000004010000390000000101100367000000000101043b000002070210009c000004ce0000813d000000000001042d00000000010000190000000002000019074200440000040f000000040110008a000001ee020000410000005f0310008c00000000030000190000000003022019000001ee01100197000000000410004c0000000002008019000001ee0110009c00000000010300190000000001026019000000000110004c000004e80000613d00000001030003670000000401300370000000000101043b0000ffff0210008c000004e80000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d00000000010000190000000002000019074200440000040f0000003301000039074207400000040f000001ef011001970000000002000411000000000121004b000004f20000c13d000000000001042d00000040010000390000000001010433000000440210003900000208030000410000000000320435000001f2020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039074200440000040f0003000000000002000300000001001d0000003301000039000100000001001d074207400000040f0000000302000029000001ef02200197000300000002001d000200000001001d000001ff03100197000000000123019f00000001020000290742073e0000040f000001d2010000410000000002000414000001d20320009c0000000001024019000000c0011002100000000202000029000001ef0520019700000200011001c70000800d02000039000000030300003900000201040000410000000306000029074207340000040f00000001012001900000051e0000613d0000000300000005000000000001042d00000000010000190000000002000019074200440000040f000000000110004c000005240000613d000000000001042d0000004001000039000000000101043300000064021000390000020903000041000000000032043500000044021000390000020a03000041000000000032043500000024021000390000002b030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000008402000039074200440000040f000000000110004c000005390000613d000000000001042d0000004001000039000000000101043300000044021000390000020b03000041000000000032043500000024021000390000001c030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074200440000040f000000400200003900000000010204330000020c0310009c0000054f0000813d00000060031000390000000000320435000000000001042d0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000000002120049000001ee030000410000005f0420008c00000000040000190000000004032019000001ee02200197000000000520004c0000000003008019000001ee0220009c00000000020400190000000002036019000000000220004c0000057f0000613d000000400300003900000000020304330000020c0420009c000005820000813d000000600420003900000000004304350000000103100367000000000303043b000001ed0430009c0000057f0000213d000000000032043500000020031000390000000103300367000000000303043b000001f30430009c0000057f0000213d0000002004200039000000000034043500000040011000390000000101100367000000000101043b000001d20310009c0000057f0000213d000000400320003900000000001304350000000001020019000000000001042d00000000010000190000000002000019074200440000040f0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0004000000000002000000400300003900000000060304330000020c0460009c000005c00000813d000000200420003900000000040404330000000005020433000000400220003900000000020204330000000007060019000200000007001d00000060067000390000000000630435000001d2022001970000004003700039000400000003001d0000000000230435000001f3024001970000002003700039000300000003001d0000000000230435000001ed0250019700000000002704350000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f00000002020000290000000002020433000100000002001d000200000001001d074207400000040f0000000102000029000001ed022001970000020e01100197000000000121019f0000000302000029000000000202043300000080022002100000020f02200197000000000121019f00000004020000290000000002020433000000c0022002100000021002200197000000000121019f00000002020000290742073e0000040f0000000400000005000000000001042d0000020d01000041000000000010043500000041010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000ffff0410018f0000006e0540008c000000000500001900000001050060390000279f0640008c00000000060000190000000106006039000000000756013f000000000565019f00004eaf0640008c00000000060000190000000106006039000000000770004c00000000050660190000000105500190000005da0000613d074206bf0000040f000005e30000013d00004ea40540008c000005e20000613d0000006f0540008c000005e20000613d000027940440008c000005e20000613d074205e40000040f000005e30000013d0742062d0000040f000000000001042d0002000000000002000100000003001d000200000002001d0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f074207400000040f0000000205000029000000c002100270000001d20220019700000000435200a9000000000450004c000005f80000613d00000000545300d9000000000224004b0000060f0000c13d00000001020000290000000002230019000000000332004b0000000003000019000000010300403900000001033001900000060f0000c13d0000008003100270000001f304300197000000000320004c000006170000613d00000000534200a900000000522300d9000000000242004b0000060f0000c13d000001ed04100197000000000130004c0000000005000019000006190000613d00000000154300a900000000213500d9000000000141004b000006190000613d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f000001ed041001970000000005000019000100000005001d000200000004001d0000006501000039074207400000040f000001ed01100197000000000210004c000006250000613d000000010200002900000000211200d900000002020000290000000200000005000000000001042d0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0005000000000002000100000003001d000500000002001d00000065020000390000ffff0310018f0000006f0130008c0000063a0000613d0000278902000039000027940130008c0000063a0000613d00004e990200003900004ea40130008c000006b00000c13d000400000003001d000000000020043500000067010000390000002002000039000300000001001d000200000002001d00000000001204350000000001000019074200180000040f074207400000040f0000000005010019000000c001500270000001d202100197000000050400002900000000314200a9000000000340004c000006510000613d00000000434100d9000000000223004b000006a00000c13d00000c740200008a000000000221004b000006a00000813d00000c74011000390000008002500270000001f30220019700000000342100a900000000311400d9000000000121004b000006a00000c13d000000040100002900000000001004350000000301000029000000020200002900000000001204350000000001000019000400000005001d000300000004001d074200180000040f074207400000040f0000000306000029000000040500002900000005040000290000000007010019000000c001700270000001d20110019700000000324100a9000000000340004c0000066e0000613d00000000434200d9000000000113004b000006a00000c13d00000001010000290000000001120019000000000221004b000000000200001900000001020040390000000102200190000006a00000c13d0000008002700270000001f30220019700000000342100a9000000000310004c0000067d0000613d00000000311400d9000000000121004b000006a00000c13d000001ed0150019700000000251600a9000000000260004c000006840000613d00000000326500d9000000000112004b000006a00000c13d000300000005001d000400000004001d000500000007001d0000006501000039074207400000040f000001ed01100197000000000210004c000006a80000613d0000000502000029000001ed02200197000000040500002900000000432500a9000000000450004c0000000306000029000006960000613d00000000545300d9000000000424004b000006a00000c13d00000000541600d900000000131300d90000000001430019000000000331004b000000000300001900000001030040390000000103300190000006a00000c13d0000000500000005000000000001042d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f0000004001000039000000000101043300000044021000390000021103000041000000000032043500000024021000390000001e030000390000000000320435000001f20200004100000000002104350000000402100039000000200300003900000000003204350000006402000039074200440000040f0005000000000002000200000003001d000500000002001d0000ffff0110018f00000000001004350000006701000039000000200200003900000000001204350000000001000019074200180000040f000400000001001d0000006901000039074207400000040f0000008001100270000000050300002900000000243100a9000000000230004c000006d50000613d000000050200002900000000322400d9000000000112004b000007160000c13d0000006801000039000300000004001d074207400000040f000100000001001d0000004001100270000001d2011001970000000305000029000000643250011a00000000342100a9000000640350008c000006e30000413d00000000322400d9000000000112004b000007160000c13d0000000401000029000400000004001d074207400000040f0000000406000029000000c002100270000001d203200197000000050500002900000000425300a9000000000450004c000006f10000613d000000050400002900000000544200d9000000000334004b000007160000c13d0000000103000029000001f30430019700000002030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000007160000c13d0000000003360019000000000463004b000000000400001900000001040040390000000104400190000007160000c13d0000000003320019000000000223004b000000000200001900000001020040390000000102200190000007160000c13d0000008002100270000001f304200197000000000230004c0000071e0000613d00000000524300a900000000533200d9000000000343004b000007160000c13d000001ed03100197000000000120004c0000000004000019000007200000613d00000000143200a900000000212400d9000000000131004b000007200000613d0000020d01000041000000000010043500000011010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f000001ed031001970000000004000019000400000004001d000500000003001d0000006501000039074207400000040f000001ed01100197000000000210004c0000072c0000613d000000040200002900000000211200d900000005020000290000000500000005000000000001042d0000020d01000041000000000010043500000012010000390000000402000039000000000012043500000024020000390000000001000019074200440000040f00000737002104210000000102000039000000000001042d0000000002000019000000000001042d0000073c002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d0000074200000432000007430001042e000007440001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000002000002000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000015527af6000000000000000000000000000000000000000000000000000000001824a46b000000000000000000000000000000000000000000000000000000002f7cb0b40000000000000000000000000000000000000000000000000000000036a5beba000000000000000000000000000000000000000000000000000000003c04741e0000000000000000000000000000000000000000000000000000000052a72510000000000000000000000000000000000000000000000000000000005d6d7ccb00000000000000000000000000000000000000000000000000000000711746e200000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007bc3c9ab000000000000000000000000000000000000000000000000000000008ca2fb08000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008f7002d20000000000000000000000000000000000000000000000000000000092807f5800000000000000000000000000000000000000000000000000000000ab1518ab00000000000000000000000000000000000000000000000000000000c184032700000000000000000000000000000000000000000000000000000000c4d66de800000000000000000000000000000000000000000000000000000000cd68b79b00000000000000000000000000000000000000000000000000000000d350ad2500000000000000000000000000000000000000000000000000000000e0ad121a00000000000000000000000000000000000000000000000000000000e15d16e800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000ff37b49600000000000000000000000000000000ffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61031806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000000000002f00000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff02000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420695072696365466565643a206e6f74207072696365207570646174657200000000000000000000000000000000000000000000000000000000ffffffffffffffa04e487b7100000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000000000000000005072696365466565643a20756e6b6e6f776e206c3220636861696e20696400000000000000000000000000000000000000000000000000000000000000000000",
|
|
542
|
+
"linkReferences": {},
|
|
543
|
+
"deployedLinkReferences": {},
|
|
544
|
+
"factoryDeps": {}
|
|
545
|
+
}
|