@layerzerolabs/lz-evm-protocol-v2 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/EndpointV2.sol/EndpointV2.json +2364 -0
- package/artifacts/contracts/EndpointV2Alt.sol/EndpointV2Alt.json +2379 -0
- package/artifacts/contracts/MessageLibManager.sol/MessageLibManager.json +783 -0
- package/artifacts/contracts/MessagingChannel.sol/MessagingChannel.json +426 -0
- package/artifacts/contracts/MessagingComposer.sol/MessagingComposer.json +320 -0
- package/artifacts/contracts/MessagingContext.sol/MessagingContext.json +42 -0
- package/artifacts/contracts/interfaces/ILayerZeroComposer.sol/ILayerZeroComposer.json +44 -0
- package/artifacts/contracts/interfaces/ILayerZeroEndpointV2.sol/ILayerZeroEndpointV2.json +1844 -0
- package/artifacts/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +121 -0
- package/artifacts/contracts/interfaces/IMessageLib.sol/IMessageLib.json +149 -0
- package/artifacts/contracts/interfaces/IMessageLibManager.sol/IMessageLibManager.json +629 -0
- package/artifacts/contracts/interfaces/IMessagingChannel.sol/IMessagingChannel.json +344 -0
- package/artifacts/contracts/interfaces/IMessagingComposer.sol/IMessagingComposer.json +246 -0
- package/artifacts/contracts/interfaces/IMessagingContext.sol/IMessagingContext.json +42 -0
- package/artifacts/contracts/interfaces/ISendLib.sol/ISendLib.json +364 -0
- package/artifacts/contracts/libs/AddressCast.sol/AddressCast.json +10 -0
- package/artifacts/contracts/libs/CalldataBytesLib.sol/CalldataBytesLib.json +10 -0
- package/artifacts/contracts/libs/Errors.sol/Errors.json +226 -0
- package/artifacts/contracts/libs/GUID.sol/GUID.json +10 -0
- package/artifacts/contracts/libs/Transfer.sol/Transfer.json +32 -0
- package/artifacts/contracts/messagelib/BlockedMessageLib.sol/BlockedMessageLib.json +94 -0
- package/artifacts/contracts/messagelib/SimpleMessageLib.sol/SimpleMessageLib.json +591 -0
- package/artifacts/contracts/messagelib/libs/BitMaps.sol/BitMaps.json +10 -0
- package/artifacts/contracts/messagelib/libs/ExecutorOptions.sol/ExecutorOptions.json +26 -0
- package/artifacts/contracts/messagelib/libs/PacketV1Codec.sol/PacketV1Codec.json +10 -0
- package/contracts/EndpointV2.sol +403 -0
- package/contracts/EndpointV2Alt.sol +50 -0
- package/contracts/MessageLibManager.sol +326 -0
- package/contracts/MessagingChannel.sol +161 -0
- package/contracts/MessagingComposer.sol +80 -0
- package/contracts/MessagingContext.sol +36 -0
- package/contracts/interfaces/ILayerZeroComposer.sol +24 -0
- package/contracts/interfaces/ILayerZeroEndpointV2.sol +98 -0
- package/contracts/interfaces/ILayerZeroReceiver.sol +20 -0
- package/contracts/interfaces/IMessageLib.sol +26 -0
- package/contracts/interfaces/IMessageLibManager.sol +68 -0
- package/contracts/interfaces/IMessagingChannel.sol +32 -0
- package/contracts/interfaces/IMessagingComposer.sol +38 -0
- package/contracts/interfaces/IMessagingContext.sol +9 -0
- package/contracts/interfaces/ISendLib.sol +36 -0
- package/contracts/libs/AddressCast.sol +40 -0
- package/contracts/libs/CalldataBytesLib.sol +58 -0
- package/contracts/libs/Errors.sol +42 -0
- package/contracts/libs/GUID.sol +19 -0
- package/contracts/libs/Transfer.sol +34 -0
- package/contracts/messagelib/BlockedMessageLib.sol +30 -0
- package/contracts/messagelib/SimpleMessageLib.sol +149 -0
- package/contracts/messagelib/libs/BitMaps.sol +26 -0
- package/contracts/messagelib/libs/ExecutorOptions.sol +85 -0
- package/contracts/messagelib/libs/PacketV1Codec.sol +108 -0
- package/package.json +27 -0
|
@@ -0,0 +1,2364 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "EndpointV2",
|
|
4
|
+
"sourceName": "contracts/EndpointV2.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint32",
|
|
10
|
+
"name": "_eid",
|
|
11
|
+
"type": "uint32"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_owner",
|
|
16
|
+
"type": "address"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "AlreadyRegistered",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "ComposeExists",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [
|
|
34
|
+
{
|
|
35
|
+
"internalType": "bytes32",
|
|
36
|
+
"name": "expected",
|
|
37
|
+
"type": "bytes32"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"internalType": "bytes32",
|
|
41
|
+
"name": "actual",
|
|
42
|
+
"type": "bytes32"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"name": "ComposeNotFound",
|
|
46
|
+
"type": "error"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [],
|
|
50
|
+
"name": "DefaultReceiveLibUnavailable",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [],
|
|
55
|
+
"name": "DefaultSendLibUnavailable",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"internalType": "uint256",
|
|
62
|
+
"name": "requiredNative",
|
|
63
|
+
"type": "uint256"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"internalType": "uint256",
|
|
67
|
+
"name": "suppliedNative",
|
|
68
|
+
"type": "uint256"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"internalType": "uint256",
|
|
72
|
+
"name": "requiredLzToken",
|
|
73
|
+
"type": "uint256"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"internalType": "uint256",
|
|
77
|
+
"name": "suppliedLzToken",
|
|
78
|
+
"type": "uint256"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"name": "InsufficientFee",
|
|
82
|
+
"type": "error"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"inputs": [],
|
|
86
|
+
"name": "InvalidExpiry",
|
|
87
|
+
"type": "error"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"inputs": [
|
|
91
|
+
{
|
|
92
|
+
"internalType": "uint64",
|
|
93
|
+
"name": "nonce",
|
|
94
|
+
"type": "uint64"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"name": "InvalidNonce",
|
|
98
|
+
"type": "error"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"inputs": [],
|
|
102
|
+
"name": "InvalidPayloadHash",
|
|
103
|
+
"type": "error"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"inputs": [],
|
|
107
|
+
"name": "InvalidReceiveLibrary",
|
|
108
|
+
"type": "error"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"inputs": [],
|
|
112
|
+
"name": "LzTokenUnavailable",
|
|
113
|
+
"type": "error"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"inputs": [],
|
|
117
|
+
"name": "OnlyNonDefaultLib",
|
|
118
|
+
"type": "error"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"inputs": [],
|
|
122
|
+
"name": "OnlyReceiveLib",
|
|
123
|
+
"type": "error"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"inputs": [],
|
|
127
|
+
"name": "OnlyRegisteredLib",
|
|
128
|
+
"type": "error"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"inputs": [],
|
|
132
|
+
"name": "OnlyRegisteredOrDefaultLib",
|
|
133
|
+
"type": "error"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"inputs": [],
|
|
137
|
+
"name": "OnlySendLib",
|
|
138
|
+
"type": "error"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"inputs": [],
|
|
142
|
+
"name": "PathNotInitializable",
|
|
143
|
+
"type": "error"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"inputs": [],
|
|
147
|
+
"name": "PathNotVerifiable",
|
|
148
|
+
"type": "error"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"inputs": [
|
|
152
|
+
{
|
|
153
|
+
"internalType": "bytes32",
|
|
154
|
+
"name": "expected",
|
|
155
|
+
"type": "bytes32"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"internalType": "bytes32",
|
|
159
|
+
"name": "actual",
|
|
160
|
+
"type": "bytes32"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"name": "PayloadHashNotFound",
|
|
164
|
+
"type": "error"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"inputs": [],
|
|
168
|
+
"name": "SameValue",
|
|
169
|
+
"type": "error"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"inputs": [],
|
|
173
|
+
"name": "SendReentrancy",
|
|
174
|
+
"type": "error"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"inputs": [],
|
|
178
|
+
"name": "ToAddressIsZero",
|
|
179
|
+
"type": "error"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"inputs": [
|
|
183
|
+
{
|
|
184
|
+
"internalType": "address",
|
|
185
|
+
"name": "_to",
|
|
186
|
+
"type": "address"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"internalType": "uint256",
|
|
190
|
+
"name": "_value",
|
|
191
|
+
"type": "uint256"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"name": "TransferNativeFailed",
|
|
195
|
+
"type": "error"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"inputs": [],
|
|
199
|
+
"name": "Unauthorized",
|
|
200
|
+
"type": "error"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"inputs": [],
|
|
204
|
+
"name": "UnsupportedEid",
|
|
205
|
+
"type": "error"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"inputs": [],
|
|
209
|
+
"name": "UnsupportedInterface",
|
|
210
|
+
"type": "error"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"inputs": [],
|
|
214
|
+
"name": "ZeroLzTokenFee",
|
|
215
|
+
"type": "error"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"anonymous": false,
|
|
219
|
+
"inputs": [
|
|
220
|
+
{
|
|
221
|
+
"indexed": false,
|
|
222
|
+
"internalType": "address",
|
|
223
|
+
"name": "from",
|
|
224
|
+
"type": "address"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"indexed": false,
|
|
228
|
+
"internalType": "address",
|
|
229
|
+
"name": "to",
|
|
230
|
+
"type": "address"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"indexed": false,
|
|
234
|
+
"internalType": "bytes32",
|
|
235
|
+
"name": "guid",
|
|
236
|
+
"type": "bytes32"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"indexed": false,
|
|
240
|
+
"internalType": "uint16",
|
|
241
|
+
"name": "index",
|
|
242
|
+
"type": "uint16"
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"name": "ComposeDelivered",
|
|
246
|
+
"type": "event"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"anonymous": false,
|
|
250
|
+
"inputs": [
|
|
251
|
+
{
|
|
252
|
+
"indexed": false,
|
|
253
|
+
"internalType": "address",
|
|
254
|
+
"name": "from",
|
|
255
|
+
"type": "address"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"indexed": false,
|
|
259
|
+
"internalType": "address",
|
|
260
|
+
"name": "to",
|
|
261
|
+
"type": "address"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"indexed": false,
|
|
265
|
+
"internalType": "bytes32",
|
|
266
|
+
"name": "guid",
|
|
267
|
+
"type": "bytes32"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"indexed": false,
|
|
271
|
+
"internalType": "uint16",
|
|
272
|
+
"name": "index",
|
|
273
|
+
"type": "uint16"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"indexed": false,
|
|
277
|
+
"internalType": "bytes",
|
|
278
|
+
"name": "message",
|
|
279
|
+
"type": "bytes"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"name": "ComposeSent",
|
|
283
|
+
"type": "event"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"anonymous": false,
|
|
287
|
+
"inputs": [
|
|
288
|
+
{
|
|
289
|
+
"indexed": false,
|
|
290
|
+
"internalType": "uint32",
|
|
291
|
+
"name": "eid",
|
|
292
|
+
"type": "uint32"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"indexed": false,
|
|
296
|
+
"internalType": "address",
|
|
297
|
+
"name": "oldLib",
|
|
298
|
+
"type": "address"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"indexed": false,
|
|
302
|
+
"internalType": "address",
|
|
303
|
+
"name": "newLib",
|
|
304
|
+
"type": "address"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"name": "DefaultReceiveLibrarySet",
|
|
308
|
+
"type": "event"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"anonymous": false,
|
|
312
|
+
"inputs": [
|
|
313
|
+
{
|
|
314
|
+
"indexed": false,
|
|
315
|
+
"internalType": "uint32",
|
|
316
|
+
"name": "eid",
|
|
317
|
+
"type": "uint32"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"indexed": false,
|
|
321
|
+
"internalType": "address",
|
|
322
|
+
"name": "oldLib",
|
|
323
|
+
"type": "address"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"indexed": false,
|
|
327
|
+
"internalType": "uint256",
|
|
328
|
+
"name": "expiry",
|
|
329
|
+
"type": "uint256"
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
"name": "DefaultReceiveLibraryTimeoutSet",
|
|
333
|
+
"type": "event"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"anonymous": false,
|
|
337
|
+
"inputs": [
|
|
338
|
+
{
|
|
339
|
+
"indexed": false,
|
|
340
|
+
"internalType": "uint32",
|
|
341
|
+
"name": "eid",
|
|
342
|
+
"type": "uint32"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"indexed": false,
|
|
346
|
+
"internalType": "address",
|
|
347
|
+
"name": "newLib",
|
|
348
|
+
"type": "address"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"name": "DefaultSendLibrarySet",
|
|
352
|
+
"type": "event"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"anonymous": false,
|
|
356
|
+
"inputs": [
|
|
357
|
+
{
|
|
358
|
+
"indexed": false,
|
|
359
|
+
"internalType": "uint32",
|
|
360
|
+
"name": "srcEid",
|
|
361
|
+
"type": "uint32"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"indexed": false,
|
|
365
|
+
"internalType": "bytes32",
|
|
366
|
+
"name": "sender",
|
|
367
|
+
"type": "bytes32"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"indexed": false,
|
|
371
|
+
"internalType": "address",
|
|
372
|
+
"name": "receiver",
|
|
373
|
+
"type": "address"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"indexed": false,
|
|
377
|
+
"internalType": "uint64",
|
|
378
|
+
"name": "nonce",
|
|
379
|
+
"type": "uint64"
|
|
380
|
+
}
|
|
381
|
+
],
|
|
382
|
+
"name": "InboundNonceSkipped",
|
|
383
|
+
"type": "event"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"anonymous": false,
|
|
387
|
+
"inputs": [
|
|
388
|
+
{
|
|
389
|
+
"indexed": false,
|
|
390
|
+
"internalType": "address",
|
|
391
|
+
"name": "newLib",
|
|
392
|
+
"type": "address"
|
|
393
|
+
}
|
|
394
|
+
],
|
|
395
|
+
"name": "LibraryRegistered",
|
|
396
|
+
"type": "event"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"anonymous": false,
|
|
400
|
+
"inputs": [
|
|
401
|
+
{
|
|
402
|
+
"indexed": true,
|
|
403
|
+
"internalType": "address",
|
|
404
|
+
"name": "from",
|
|
405
|
+
"type": "address"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"indexed": true,
|
|
409
|
+
"internalType": "address",
|
|
410
|
+
"name": "to",
|
|
411
|
+
"type": "address"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"indexed": true,
|
|
415
|
+
"internalType": "address",
|
|
416
|
+
"name": "executor",
|
|
417
|
+
"type": "address"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"indexed": false,
|
|
421
|
+
"internalType": "bytes32",
|
|
422
|
+
"name": "guid",
|
|
423
|
+
"type": "bytes32"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"indexed": false,
|
|
427
|
+
"internalType": "uint16",
|
|
428
|
+
"name": "index",
|
|
429
|
+
"type": "uint16"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"indexed": false,
|
|
433
|
+
"internalType": "uint256",
|
|
434
|
+
"name": "gas",
|
|
435
|
+
"type": "uint256"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"indexed": false,
|
|
439
|
+
"internalType": "uint256",
|
|
440
|
+
"name": "value",
|
|
441
|
+
"type": "uint256"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"indexed": false,
|
|
445
|
+
"internalType": "bytes",
|
|
446
|
+
"name": "message",
|
|
447
|
+
"type": "bytes"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"indexed": false,
|
|
451
|
+
"internalType": "bytes",
|
|
452
|
+
"name": "extraData",
|
|
453
|
+
"type": "bytes"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"indexed": false,
|
|
457
|
+
"internalType": "bytes",
|
|
458
|
+
"name": "reason",
|
|
459
|
+
"type": "bytes"
|
|
460
|
+
}
|
|
461
|
+
],
|
|
462
|
+
"name": "LzComposeAlert",
|
|
463
|
+
"type": "event"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"anonymous": false,
|
|
467
|
+
"inputs": [
|
|
468
|
+
{
|
|
469
|
+
"indexed": true,
|
|
470
|
+
"internalType": "address",
|
|
471
|
+
"name": "receiver",
|
|
472
|
+
"type": "address"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"indexed": true,
|
|
476
|
+
"internalType": "address",
|
|
477
|
+
"name": "executor",
|
|
478
|
+
"type": "address"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"components": [
|
|
482
|
+
{
|
|
483
|
+
"internalType": "uint32",
|
|
484
|
+
"name": "srcEid",
|
|
485
|
+
"type": "uint32"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"internalType": "bytes32",
|
|
489
|
+
"name": "sender",
|
|
490
|
+
"type": "bytes32"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"internalType": "uint64",
|
|
494
|
+
"name": "nonce",
|
|
495
|
+
"type": "uint64"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"indexed": false,
|
|
499
|
+
"internalType": "struct Origin",
|
|
500
|
+
"name": "origin",
|
|
501
|
+
"type": "tuple"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"indexed": false,
|
|
505
|
+
"internalType": "bytes32",
|
|
506
|
+
"name": "guid",
|
|
507
|
+
"type": "bytes32"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"indexed": false,
|
|
511
|
+
"internalType": "uint256",
|
|
512
|
+
"name": "gas",
|
|
513
|
+
"type": "uint256"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"indexed": false,
|
|
517
|
+
"internalType": "uint256",
|
|
518
|
+
"name": "value",
|
|
519
|
+
"type": "uint256"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"indexed": false,
|
|
523
|
+
"internalType": "bytes",
|
|
524
|
+
"name": "message",
|
|
525
|
+
"type": "bytes"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"indexed": false,
|
|
529
|
+
"internalType": "bytes",
|
|
530
|
+
"name": "extraData",
|
|
531
|
+
"type": "bytes"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"indexed": false,
|
|
535
|
+
"internalType": "bytes",
|
|
536
|
+
"name": "reason",
|
|
537
|
+
"type": "bytes"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"name": "LzReceiveAlert",
|
|
541
|
+
"type": "event"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"anonymous": false,
|
|
545
|
+
"inputs": [
|
|
546
|
+
{
|
|
547
|
+
"indexed": false,
|
|
548
|
+
"internalType": "address",
|
|
549
|
+
"name": "token",
|
|
550
|
+
"type": "address"
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"name": "LzTokenSet",
|
|
554
|
+
"type": "event"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"anonymous": false,
|
|
558
|
+
"inputs": [
|
|
559
|
+
{
|
|
560
|
+
"indexed": true,
|
|
561
|
+
"internalType": "address",
|
|
562
|
+
"name": "previousOwner",
|
|
563
|
+
"type": "address"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"indexed": true,
|
|
567
|
+
"internalType": "address",
|
|
568
|
+
"name": "newOwner",
|
|
569
|
+
"type": "address"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"name": "OwnershipTransferred",
|
|
573
|
+
"type": "event"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"anonymous": false,
|
|
577
|
+
"inputs": [
|
|
578
|
+
{
|
|
579
|
+
"indexed": false,
|
|
580
|
+
"internalType": "uint32",
|
|
581
|
+
"name": "srcEid",
|
|
582
|
+
"type": "uint32"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"indexed": false,
|
|
586
|
+
"internalType": "bytes32",
|
|
587
|
+
"name": "sender",
|
|
588
|
+
"type": "bytes32"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"indexed": false,
|
|
592
|
+
"internalType": "address",
|
|
593
|
+
"name": "receiver",
|
|
594
|
+
"type": "address"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"indexed": false,
|
|
598
|
+
"internalType": "uint64",
|
|
599
|
+
"name": "nonce",
|
|
600
|
+
"type": "uint64"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"indexed": false,
|
|
604
|
+
"internalType": "bytes32",
|
|
605
|
+
"name": "payloadHash",
|
|
606
|
+
"type": "bytes32"
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"name": "PacketBurnt",
|
|
610
|
+
"type": "event"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"anonymous": false,
|
|
614
|
+
"inputs": [
|
|
615
|
+
{
|
|
616
|
+
"components": [
|
|
617
|
+
{
|
|
618
|
+
"internalType": "uint32",
|
|
619
|
+
"name": "srcEid",
|
|
620
|
+
"type": "uint32"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"internalType": "bytes32",
|
|
624
|
+
"name": "sender",
|
|
625
|
+
"type": "bytes32"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"internalType": "uint64",
|
|
629
|
+
"name": "nonce",
|
|
630
|
+
"type": "uint64"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"indexed": false,
|
|
634
|
+
"internalType": "struct Origin",
|
|
635
|
+
"name": "origin",
|
|
636
|
+
"type": "tuple"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"indexed": false,
|
|
640
|
+
"internalType": "address",
|
|
641
|
+
"name": "receiver",
|
|
642
|
+
"type": "address"
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"name": "PacketDelivered",
|
|
646
|
+
"type": "event"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"anonymous": false,
|
|
650
|
+
"inputs": [
|
|
651
|
+
{
|
|
652
|
+
"indexed": false,
|
|
653
|
+
"internalType": "uint32",
|
|
654
|
+
"name": "srcEid",
|
|
655
|
+
"type": "uint32"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"indexed": false,
|
|
659
|
+
"internalType": "bytes32",
|
|
660
|
+
"name": "sender",
|
|
661
|
+
"type": "bytes32"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"indexed": false,
|
|
665
|
+
"internalType": "address",
|
|
666
|
+
"name": "receiver",
|
|
667
|
+
"type": "address"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"indexed": false,
|
|
671
|
+
"internalType": "uint64",
|
|
672
|
+
"name": "nonce",
|
|
673
|
+
"type": "uint64"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"indexed": false,
|
|
677
|
+
"internalType": "bytes32",
|
|
678
|
+
"name": "payloadHash",
|
|
679
|
+
"type": "bytes32"
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"name": "PacketNilified",
|
|
683
|
+
"type": "event"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"anonymous": false,
|
|
687
|
+
"inputs": [
|
|
688
|
+
{
|
|
689
|
+
"indexed": false,
|
|
690
|
+
"internalType": "bytes",
|
|
691
|
+
"name": "encodedPayload",
|
|
692
|
+
"type": "bytes"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"indexed": false,
|
|
696
|
+
"internalType": "bytes",
|
|
697
|
+
"name": "options",
|
|
698
|
+
"type": "bytes"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"indexed": false,
|
|
702
|
+
"internalType": "address",
|
|
703
|
+
"name": "sendLibrary",
|
|
704
|
+
"type": "address"
|
|
705
|
+
}
|
|
706
|
+
],
|
|
707
|
+
"name": "PacketSent",
|
|
708
|
+
"type": "event"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"anonymous": false,
|
|
712
|
+
"inputs": [
|
|
713
|
+
{
|
|
714
|
+
"components": [
|
|
715
|
+
{
|
|
716
|
+
"internalType": "uint32",
|
|
717
|
+
"name": "srcEid",
|
|
718
|
+
"type": "uint32"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"internalType": "bytes32",
|
|
722
|
+
"name": "sender",
|
|
723
|
+
"type": "bytes32"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"internalType": "uint64",
|
|
727
|
+
"name": "nonce",
|
|
728
|
+
"type": "uint64"
|
|
729
|
+
}
|
|
730
|
+
],
|
|
731
|
+
"indexed": false,
|
|
732
|
+
"internalType": "struct Origin",
|
|
733
|
+
"name": "origin",
|
|
734
|
+
"type": "tuple"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"indexed": false,
|
|
738
|
+
"internalType": "address",
|
|
739
|
+
"name": "receiver",
|
|
740
|
+
"type": "address"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"indexed": false,
|
|
744
|
+
"internalType": "bytes32",
|
|
745
|
+
"name": "payloadHash",
|
|
746
|
+
"type": "bytes32"
|
|
747
|
+
}
|
|
748
|
+
],
|
|
749
|
+
"name": "PacketVerified",
|
|
750
|
+
"type": "event"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"anonymous": false,
|
|
754
|
+
"inputs": [
|
|
755
|
+
{
|
|
756
|
+
"indexed": false,
|
|
757
|
+
"internalType": "address",
|
|
758
|
+
"name": "receiver",
|
|
759
|
+
"type": "address"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"indexed": false,
|
|
763
|
+
"internalType": "uint32",
|
|
764
|
+
"name": "eid",
|
|
765
|
+
"type": "uint32"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"indexed": false,
|
|
769
|
+
"internalType": "address",
|
|
770
|
+
"name": "oldLib",
|
|
771
|
+
"type": "address"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"indexed": false,
|
|
775
|
+
"internalType": "address",
|
|
776
|
+
"name": "newLib",
|
|
777
|
+
"type": "address"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"name": "ReceiveLibrarySet",
|
|
781
|
+
"type": "event"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"anonymous": false,
|
|
785
|
+
"inputs": [
|
|
786
|
+
{
|
|
787
|
+
"indexed": false,
|
|
788
|
+
"internalType": "address",
|
|
789
|
+
"name": "receiver",
|
|
790
|
+
"type": "address"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"indexed": false,
|
|
794
|
+
"internalType": "uint32",
|
|
795
|
+
"name": "eid",
|
|
796
|
+
"type": "uint32"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"indexed": false,
|
|
800
|
+
"internalType": "address",
|
|
801
|
+
"name": "oldLib",
|
|
802
|
+
"type": "address"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"indexed": false,
|
|
806
|
+
"internalType": "uint256",
|
|
807
|
+
"name": "timeout",
|
|
808
|
+
"type": "uint256"
|
|
809
|
+
}
|
|
810
|
+
],
|
|
811
|
+
"name": "ReceiveLibraryTimeoutSet",
|
|
812
|
+
"type": "event"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"anonymous": false,
|
|
816
|
+
"inputs": [
|
|
817
|
+
{
|
|
818
|
+
"indexed": false,
|
|
819
|
+
"internalType": "address",
|
|
820
|
+
"name": "sender",
|
|
821
|
+
"type": "address"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"indexed": false,
|
|
825
|
+
"internalType": "uint32",
|
|
826
|
+
"name": "eid",
|
|
827
|
+
"type": "uint32"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"indexed": false,
|
|
831
|
+
"internalType": "address",
|
|
832
|
+
"name": "newLib",
|
|
833
|
+
"type": "address"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"name": "SendLibrarySet",
|
|
837
|
+
"type": "event"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"inputs": [],
|
|
841
|
+
"name": "EMPTY_PAYLOAD_HASH",
|
|
842
|
+
"outputs": [
|
|
843
|
+
{
|
|
844
|
+
"internalType": "bytes32",
|
|
845
|
+
"name": "",
|
|
846
|
+
"type": "bytes32"
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"stateMutability": "view",
|
|
850
|
+
"type": "function"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"inputs": [],
|
|
854
|
+
"name": "NIL_PAYLOAD_HASH",
|
|
855
|
+
"outputs": [
|
|
856
|
+
{
|
|
857
|
+
"internalType": "bytes32",
|
|
858
|
+
"name": "",
|
|
859
|
+
"type": "bytes32"
|
|
860
|
+
}
|
|
861
|
+
],
|
|
862
|
+
"stateMutability": "view",
|
|
863
|
+
"type": "function"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"inputs": [],
|
|
867
|
+
"name": "blockedLibrary",
|
|
868
|
+
"outputs": [
|
|
869
|
+
{
|
|
870
|
+
"internalType": "address",
|
|
871
|
+
"name": "",
|
|
872
|
+
"type": "address"
|
|
873
|
+
}
|
|
874
|
+
],
|
|
875
|
+
"stateMutability": "view",
|
|
876
|
+
"type": "function"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"inputs": [
|
|
880
|
+
{
|
|
881
|
+
"internalType": "address",
|
|
882
|
+
"name": "_oapp",
|
|
883
|
+
"type": "address"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"internalType": "uint32",
|
|
887
|
+
"name": "_srcEid",
|
|
888
|
+
"type": "uint32"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"internalType": "bytes32",
|
|
892
|
+
"name": "_sender",
|
|
893
|
+
"type": "bytes32"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"internalType": "uint64",
|
|
897
|
+
"name": "_nonce",
|
|
898
|
+
"type": "uint64"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"internalType": "bytes32",
|
|
902
|
+
"name": "_payloadHash",
|
|
903
|
+
"type": "bytes32"
|
|
904
|
+
}
|
|
905
|
+
],
|
|
906
|
+
"name": "burn",
|
|
907
|
+
"outputs": [],
|
|
908
|
+
"stateMutability": "nonpayable",
|
|
909
|
+
"type": "function"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"inputs": [
|
|
913
|
+
{
|
|
914
|
+
"internalType": "address",
|
|
915
|
+
"name": "_oapp",
|
|
916
|
+
"type": "address"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"components": [
|
|
920
|
+
{
|
|
921
|
+
"internalType": "uint32",
|
|
922
|
+
"name": "srcEid",
|
|
923
|
+
"type": "uint32"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"internalType": "bytes32",
|
|
927
|
+
"name": "sender",
|
|
928
|
+
"type": "bytes32"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"internalType": "uint64",
|
|
932
|
+
"name": "nonce",
|
|
933
|
+
"type": "uint64"
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
"internalType": "struct Origin",
|
|
937
|
+
"name": "_origin",
|
|
938
|
+
"type": "tuple"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"internalType": "bytes32",
|
|
942
|
+
"name": "_guid",
|
|
943
|
+
"type": "bytes32"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"internalType": "bytes",
|
|
947
|
+
"name": "_message",
|
|
948
|
+
"type": "bytes"
|
|
949
|
+
}
|
|
950
|
+
],
|
|
951
|
+
"name": "clear",
|
|
952
|
+
"outputs": [],
|
|
953
|
+
"stateMutability": "nonpayable",
|
|
954
|
+
"type": "function"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"inputs": [
|
|
958
|
+
{
|
|
959
|
+
"internalType": "address",
|
|
960
|
+
"name": "from",
|
|
961
|
+
"type": "address"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"internalType": "address",
|
|
965
|
+
"name": "to",
|
|
966
|
+
"type": "address"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"internalType": "bytes32",
|
|
970
|
+
"name": "guid",
|
|
971
|
+
"type": "bytes32"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"internalType": "uint16",
|
|
975
|
+
"name": "index",
|
|
976
|
+
"type": "uint16"
|
|
977
|
+
}
|
|
978
|
+
],
|
|
979
|
+
"name": "composeQueue",
|
|
980
|
+
"outputs": [
|
|
981
|
+
{
|
|
982
|
+
"internalType": "bytes32",
|
|
983
|
+
"name": "messageHash",
|
|
984
|
+
"type": "bytes32"
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"stateMutability": "view",
|
|
988
|
+
"type": "function"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"inputs": [
|
|
992
|
+
{
|
|
993
|
+
"internalType": "uint32",
|
|
994
|
+
"name": "srcEid",
|
|
995
|
+
"type": "uint32"
|
|
996
|
+
}
|
|
997
|
+
],
|
|
998
|
+
"name": "defaultReceiveLibrary",
|
|
999
|
+
"outputs": [
|
|
1000
|
+
{
|
|
1001
|
+
"internalType": "address",
|
|
1002
|
+
"name": "lib",
|
|
1003
|
+
"type": "address"
|
|
1004
|
+
}
|
|
1005
|
+
],
|
|
1006
|
+
"stateMutability": "view",
|
|
1007
|
+
"type": "function"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"inputs": [
|
|
1011
|
+
{
|
|
1012
|
+
"internalType": "uint32",
|
|
1013
|
+
"name": "srcEid",
|
|
1014
|
+
"type": "uint32"
|
|
1015
|
+
}
|
|
1016
|
+
],
|
|
1017
|
+
"name": "defaultReceiveLibraryTimeout",
|
|
1018
|
+
"outputs": [
|
|
1019
|
+
{
|
|
1020
|
+
"internalType": "address",
|
|
1021
|
+
"name": "lib",
|
|
1022
|
+
"type": "address"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"internalType": "uint256",
|
|
1026
|
+
"name": "expiry",
|
|
1027
|
+
"type": "uint256"
|
|
1028
|
+
}
|
|
1029
|
+
],
|
|
1030
|
+
"stateMutability": "view",
|
|
1031
|
+
"type": "function"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"inputs": [
|
|
1035
|
+
{
|
|
1036
|
+
"internalType": "uint32",
|
|
1037
|
+
"name": "dstEid",
|
|
1038
|
+
"type": "uint32"
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"name": "defaultSendLibrary",
|
|
1042
|
+
"outputs": [
|
|
1043
|
+
{
|
|
1044
|
+
"internalType": "address",
|
|
1045
|
+
"name": "lib",
|
|
1046
|
+
"type": "address"
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"stateMutability": "view",
|
|
1050
|
+
"type": "function"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"inputs": [
|
|
1054
|
+
{
|
|
1055
|
+
"internalType": "address",
|
|
1056
|
+
"name": "oapp",
|
|
1057
|
+
"type": "address"
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"name": "delegates",
|
|
1061
|
+
"outputs": [
|
|
1062
|
+
{
|
|
1063
|
+
"internalType": "address",
|
|
1064
|
+
"name": "delegate",
|
|
1065
|
+
"type": "address"
|
|
1066
|
+
}
|
|
1067
|
+
],
|
|
1068
|
+
"stateMutability": "view",
|
|
1069
|
+
"type": "function"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"inputs": [],
|
|
1073
|
+
"name": "eid",
|
|
1074
|
+
"outputs": [
|
|
1075
|
+
{
|
|
1076
|
+
"internalType": "uint32",
|
|
1077
|
+
"name": "",
|
|
1078
|
+
"type": "uint32"
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"stateMutability": "view",
|
|
1082
|
+
"type": "function"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"inputs": [
|
|
1086
|
+
{
|
|
1087
|
+
"components": [
|
|
1088
|
+
{
|
|
1089
|
+
"internalType": "uint32",
|
|
1090
|
+
"name": "srcEid",
|
|
1091
|
+
"type": "uint32"
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"internalType": "bytes32",
|
|
1095
|
+
"name": "sender",
|
|
1096
|
+
"type": "bytes32"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"internalType": "uint64",
|
|
1100
|
+
"name": "nonce",
|
|
1101
|
+
"type": "uint64"
|
|
1102
|
+
}
|
|
1103
|
+
],
|
|
1104
|
+
"internalType": "struct Origin",
|
|
1105
|
+
"name": "_origin",
|
|
1106
|
+
"type": "tuple"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"internalType": "address",
|
|
1110
|
+
"name": "_receiver",
|
|
1111
|
+
"type": "address"
|
|
1112
|
+
}
|
|
1113
|
+
],
|
|
1114
|
+
"name": "executable",
|
|
1115
|
+
"outputs": [
|
|
1116
|
+
{
|
|
1117
|
+
"internalType": "enum ExecutionState",
|
|
1118
|
+
"name": "",
|
|
1119
|
+
"type": "uint8"
|
|
1120
|
+
}
|
|
1121
|
+
],
|
|
1122
|
+
"stateMutability": "view",
|
|
1123
|
+
"type": "function"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"inputs": [
|
|
1127
|
+
{
|
|
1128
|
+
"internalType": "address",
|
|
1129
|
+
"name": "_oapp",
|
|
1130
|
+
"type": "address"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"internalType": "address",
|
|
1134
|
+
"name": "_lib",
|
|
1135
|
+
"type": "address"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"internalType": "uint32",
|
|
1139
|
+
"name": "_eid",
|
|
1140
|
+
"type": "uint32"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"internalType": "uint32",
|
|
1144
|
+
"name": "_configType",
|
|
1145
|
+
"type": "uint32"
|
|
1146
|
+
}
|
|
1147
|
+
],
|
|
1148
|
+
"name": "getConfig",
|
|
1149
|
+
"outputs": [
|
|
1150
|
+
{
|
|
1151
|
+
"internalType": "bytes",
|
|
1152
|
+
"name": "config",
|
|
1153
|
+
"type": "bytes"
|
|
1154
|
+
}
|
|
1155
|
+
],
|
|
1156
|
+
"stateMutability": "view",
|
|
1157
|
+
"type": "function"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"inputs": [
|
|
1161
|
+
{
|
|
1162
|
+
"internalType": "address",
|
|
1163
|
+
"name": "_receiver",
|
|
1164
|
+
"type": "address"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"internalType": "uint32",
|
|
1168
|
+
"name": "_srcEid",
|
|
1169
|
+
"type": "uint32"
|
|
1170
|
+
}
|
|
1171
|
+
],
|
|
1172
|
+
"name": "getReceiveLibrary",
|
|
1173
|
+
"outputs": [
|
|
1174
|
+
{
|
|
1175
|
+
"internalType": "address",
|
|
1176
|
+
"name": "lib",
|
|
1177
|
+
"type": "address"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"internalType": "bool",
|
|
1181
|
+
"name": "isDefault",
|
|
1182
|
+
"type": "bool"
|
|
1183
|
+
}
|
|
1184
|
+
],
|
|
1185
|
+
"stateMutability": "view",
|
|
1186
|
+
"type": "function"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"inputs": [],
|
|
1190
|
+
"name": "getRegisteredLibraries",
|
|
1191
|
+
"outputs": [
|
|
1192
|
+
{
|
|
1193
|
+
"internalType": "address[]",
|
|
1194
|
+
"name": "",
|
|
1195
|
+
"type": "address[]"
|
|
1196
|
+
}
|
|
1197
|
+
],
|
|
1198
|
+
"stateMutability": "view",
|
|
1199
|
+
"type": "function"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"inputs": [],
|
|
1203
|
+
"name": "getSendContext",
|
|
1204
|
+
"outputs": [
|
|
1205
|
+
{
|
|
1206
|
+
"internalType": "uint32",
|
|
1207
|
+
"name": "",
|
|
1208
|
+
"type": "uint32"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"internalType": "address",
|
|
1212
|
+
"name": "",
|
|
1213
|
+
"type": "address"
|
|
1214
|
+
}
|
|
1215
|
+
],
|
|
1216
|
+
"stateMutability": "view",
|
|
1217
|
+
"type": "function"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"inputs": [
|
|
1221
|
+
{
|
|
1222
|
+
"internalType": "address",
|
|
1223
|
+
"name": "_sender",
|
|
1224
|
+
"type": "address"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"internalType": "uint32",
|
|
1228
|
+
"name": "_dstEid",
|
|
1229
|
+
"type": "uint32"
|
|
1230
|
+
}
|
|
1231
|
+
],
|
|
1232
|
+
"name": "getSendLibrary",
|
|
1233
|
+
"outputs": [
|
|
1234
|
+
{
|
|
1235
|
+
"internalType": "address",
|
|
1236
|
+
"name": "lib",
|
|
1237
|
+
"type": "address"
|
|
1238
|
+
}
|
|
1239
|
+
],
|
|
1240
|
+
"stateMutability": "view",
|
|
1241
|
+
"type": "function"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"inputs": [
|
|
1245
|
+
{
|
|
1246
|
+
"internalType": "address",
|
|
1247
|
+
"name": "_receiver",
|
|
1248
|
+
"type": "address"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"internalType": "uint32",
|
|
1252
|
+
"name": "_srcEid",
|
|
1253
|
+
"type": "uint32"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"internalType": "bytes32",
|
|
1257
|
+
"name": "_sender",
|
|
1258
|
+
"type": "bytes32"
|
|
1259
|
+
}
|
|
1260
|
+
],
|
|
1261
|
+
"name": "inboundNonce",
|
|
1262
|
+
"outputs": [
|
|
1263
|
+
{
|
|
1264
|
+
"internalType": "uint64",
|
|
1265
|
+
"name": "",
|
|
1266
|
+
"type": "uint64"
|
|
1267
|
+
}
|
|
1268
|
+
],
|
|
1269
|
+
"stateMutability": "view",
|
|
1270
|
+
"type": "function"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"inputs": [
|
|
1274
|
+
{
|
|
1275
|
+
"internalType": "address",
|
|
1276
|
+
"name": "receiver",
|
|
1277
|
+
"type": "address"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"internalType": "uint32",
|
|
1281
|
+
"name": "srcEid",
|
|
1282
|
+
"type": "uint32"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"internalType": "bytes32",
|
|
1286
|
+
"name": "sender",
|
|
1287
|
+
"type": "bytes32"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"internalType": "uint64",
|
|
1291
|
+
"name": "inboundNonce",
|
|
1292
|
+
"type": "uint64"
|
|
1293
|
+
}
|
|
1294
|
+
],
|
|
1295
|
+
"name": "inboundPayloadHash",
|
|
1296
|
+
"outputs": [
|
|
1297
|
+
{
|
|
1298
|
+
"internalType": "bytes32",
|
|
1299
|
+
"name": "payloadHash",
|
|
1300
|
+
"type": "bytes32"
|
|
1301
|
+
}
|
|
1302
|
+
],
|
|
1303
|
+
"stateMutability": "view",
|
|
1304
|
+
"type": "function"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"inputs": [
|
|
1308
|
+
{
|
|
1309
|
+
"internalType": "address",
|
|
1310
|
+
"name": "_sender",
|
|
1311
|
+
"type": "address"
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"internalType": "uint32",
|
|
1315
|
+
"name": "_dstEid",
|
|
1316
|
+
"type": "uint32"
|
|
1317
|
+
}
|
|
1318
|
+
],
|
|
1319
|
+
"name": "isDefaultSendLibrary",
|
|
1320
|
+
"outputs": [
|
|
1321
|
+
{
|
|
1322
|
+
"internalType": "bool",
|
|
1323
|
+
"name": "",
|
|
1324
|
+
"type": "bool"
|
|
1325
|
+
}
|
|
1326
|
+
],
|
|
1327
|
+
"stateMutability": "view",
|
|
1328
|
+
"type": "function"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"inputs": [
|
|
1332
|
+
{
|
|
1333
|
+
"internalType": "address",
|
|
1334
|
+
"name": "lib",
|
|
1335
|
+
"type": "address"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"name": "isRegisteredLibrary",
|
|
1339
|
+
"outputs": [
|
|
1340
|
+
{
|
|
1341
|
+
"internalType": "bool",
|
|
1342
|
+
"name": "",
|
|
1343
|
+
"type": "bool"
|
|
1344
|
+
}
|
|
1345
|
+
],
|
|
1346
|
+
"stateMutability": "view",
|
|
1347
|
+
"type": "function"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"inputs": [],
|
|
1351
|
+
"name": "isSendingMessage",
|
|
1352
|
+
"outputs": [
|
|
1353
|
+
{
|
|
1354
|
+
"internalType": "bool",
|
|
1355
|
+
"name": "",
|
|
1356
|
+
"type": "bool"
|
|
1357
|
+
}
|
|
1358
|
+
],
|
|
1359
|
+
"stateMutability": "view",
|
|
1360
|
+
"type": "function"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"inputs": [
|
|
1364
|
+
{
|
|
1365
|
+
"internalType": "uint32",
|
|
1366
|
+
"name": "_eid",
|
|
1367
|
+
"type": "uint32"
|
|
1368
|
+
}
|
|
1369
|
+
],
|
|
1370
|
+
"name": "isSupportedEid",
|
|
1371
|
+
"outputs": [
|
|
1372
|
+
{
|
|
1373
|
+
"internalType": "bool",
|
|
1374
|
+
"name": "",
|
|
1375
|
+
"type": "bool"
|
|
1376
|
+
}
|
|
1377
|
+
],
|
|
1378
|
+
"stateMutability": "view",
|
|
1379
|
+
"type": "function"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"inputs": [
|
|
1383
|
+
{
|
|
1384
|
+
"internalType": "address",
|
|
1385
|
+
"name": "_receiver",
|
|
1386
|
+
"type": "address"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"internalType": "uint32",
|
|
1390
|
+
"name": "_srcEid",
|
|
1391
|
+
"type": "uint32"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"internalType": "address",
|
|
1395
|
+
"name": "_actualReceiveLib",
|
|
1396
|
+
"type": "address"
|
|
1397
|
+
}
|
|
1398
|
+
],
|
|
1399
|
+
"name": "isValidReceiveLibrary",
|
|
1400
|
+
"outputs": [
|
|
1401
|
+
{
|
|
1402
|
+
"internalType": "bool",
|
|
1403
|
+
"name": "",
|
|
1404
|
+
"type": "bool"
|
|
1405
|
+
}
|
|
1406
|
+
],
|
|
1407
|
+
"stateMutability": "view",
|
|
1408
|
+
"type": "function"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"inputs": [
|
|
1412
|
+
{
|
|
1413
|
+
"internalType": "address",
|
|
1414
|
+
"name": "receiver",
|
|
1415
|
+
"type": "address"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"internalType": "uint32",
|
|
1419
|
+
"name": "srcEid",
|
|
1420
|
+
"type": "uint32"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"internalType": "bytes32",
|
|
1424
|
+
"name": "sender",
|
|
1425
|
+
"type": "bytes32"
|
|
1426
|
+
}
|
|
1427
|
+
],
|
|
1428
|
+
"name": "lazyInboundNonce",
|
|
1429
|
+
"outputs": [
|
|
1430
|
+
{
|
|
1431
|
+
"internalType": "uint64",
|
|
1432
|
+
"name": "nonce",
|
|
1433
|
+
"type": "uint64"
|
|
1434
|
+
}
|
|
1435
|
+
],
|
|
1436
|
+
"stateMutability": "view",
|
|
1437
|
+
"type": "function"
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
"inputs": [
|
|
1441
|
+
{
|
|
1442
|
+
"internalType": "address",
|
|
1443
|
+
"name": "_from",
|
|
1444
|
+
"type": "address"
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
"internalType": "address",
|
|
1448
|
+
"name": "_to",
|
|
1449
|
+
"type": "address"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"internalType": "bytes32",
|
|
1453
|
+
"name": "_guid",
|
|
1454
|
+
"type": "bytes32"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"internalType": "uint16",
|
|
1458
|
+
"name": "_index",
|
|
1459
|
+
"type": "uint16"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"internalType": "bytes",
|
|
1463
|
+
"name": "_message",
|
|
1464
|
+
"type": "bytes"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"internalType": "bytes",
|
|
1468
|
+
"name": "_extraData",
|
|
1469
|
+
"type": "bytes"
|
|
1470
|
+
}
|
|
1471
|
+
],
|
|
1472
|
+
"name": "lzCompose",
|
|
1473
|
+
"outputs": [],
|
|
1474
|
+
"stateMutability": "payable",
|
|
1475
|
+
"type": "function"
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"inputs": [
|
|
1479
|
+
{
|
|
1480
|
+
"internalType": "address",
|
|
1481
|
+
"name": "_from",
|
|
1482
|
+
"type": "address"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"internalType": "address",
|
|
1486
|
+
"name": "_to",
|
|
1487
|
+
"type": "address"
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"internalType": "bytes32",
|
|
1491
|
+
"name": "_guid",
|
|
1492
|
+
"type": "bytes32"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"internalType": "uint16",
|
|
1496
|
+
"name": "_index",
|
|
1497
|
+
"type": "uint16"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"internalType": "uint256",
|
|
1501
|
+
"name": "_gas",
|
|
1502
|
+
"type": "uint256"
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"internalType": "uint256",
|
|
1506
|
+
"name": "_value",
|
|
1507
|
+
"type": "uint256"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"internalType": "bytes",
|
|
1511
|
+
"name": "_message",
|
|
1512
|
+
"type": "bytes"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"internalType": "bytes",
|
|
1516
|
+
"name": "_extraData",
|
|
1517
|
+
"type": "bytes"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"internalType": "bytes",
|
|
1521
|
+
"name": "_reason",
|
|
1522
|
+
"type": "bytes"
|
|
1523
|
+
}
|
|
1524
|
+
],
|
|
1525
|
+
"name": "lzComposeAlert",
|
|
1526
|
+
"outputs": [],
|
|
1527
|
+
"stateMutability": "nonpayable",
|
|
1528
|
+
"type": "function"
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
"inputs": [
|
|
1532
|
+
{
|
|
1533
|
+
"components": [
|
|
1534
|
+
{
|
|
1535
|
+
"internalType": "uint32",
|
|
1536
|
+
"name": "srcEid",
|
|
1537
|
+
"type": "uint32"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"internalType": "bytes32",
|
|
1541
|
+
"name": "sender",
|
|
1542
|
+
"type": "bytes32"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"internalType": "uint64",
|
|
1546
|
+
"name": "nonce",
|
|
1547
|
+
"type": "uint64"
|
|
1548
|
+
}
|
|
1549
|
+
],
|
|
1550
|
+
"internalType": "struct Origin",
|
|
1551
|
+
"name": "_origin",
|
|
1552
|
+
"type": "tuple"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"internalType": "address",
|
|
1556
|
+
"name": "_receiver",
|
|
1557
|
+
"type": "address"
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
"internalType": "bytes32",
|
|
1561
|
+
"name": "_guid",
|
|
1562
|
+
"type": "bytes32"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
"internalType": "bytes",
|
|
1566
|
+
"name": "_message",
|
|
1567
|
+
"type": "bytes"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"internalType": "bytes",
|
|
1571
|
+
"name": "_extraData",
|
|
1572
|
+
"type": "bytes"
|
|
1573
|
+
}
|
|
1574
|
+
],
|
|
1575
|
+
"name": "lzReceive",
|
|
1576
|
+
"outputs": [],
|
|
1577
|
+
"stateMutability": "payable",
|
|
1578
|
+
"type": "function"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"inputs": [
|
|
1582
|
+
{
|
|
1583
|
+
"components": [
|
|
1584
|
+
{
|
|
1585
|
+
"internalType": "uint32",
|
|
1586
|
+
"name": "srcEid",
|
|
1587
|
+
"type": "uint32"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"internalType": "bytes32",
|
|
1591
|
+
"name": "sender",
|
|
1592
|
+
"type": "bytes32"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"internalType": "uint64",
|
|
1596
|
+
"name": "nonce",
|
|
1597
|
+
"type": "uint64"
|
|
1598
|
+
}
|
|
1599
|
+
],
|
|
1600
|
+
"internalType": "struct Origin",
|
|
1601
|
+
"name": "_origin",
|
|
1602
|
+
"type": "tuple"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"internalType": "address",
|
|
1606
|
+
"name": "_receiver",
|
|
1607
|
+
"type": "address"
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"internalType": "bytes32",
|
|
1611
|
+
"name": "_guid",
|
|
1612
|
+
"type": "bytes32"
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
"internalType": "uint256",
|
|
1616
|
+
"name": "_gas",
|
|
1617
|
+
"type": "uint256"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"internalType": "uint256",
|
|
1621
|
+
"name": "_value",
|
|
1622
|
+
"type": "uint256"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"internalType": "bytes",
|
|
1626
|
+
"name": "_message",
|
|
1627
|
+
"type": "bytes"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"internalType": "bytes",
|
|
1631
|
+
"name": "_extraData",
|
|
1632
|
+
"type": "bytes"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
"internalType": "bytes",
|
|
1636
|
+
"name": "_reason",
|
|
1637
|
+
"type": "bytes"
|
|
1638
|
+
}
|
|
1639
|
+
],
|
|
1640
|
+
"name": "lzReceiveAlert",
|
|
1641
|
+
"outputs": [],
|
|
1642
|
+
"stateMutability": "nonpayable",
|
|
1643
|
+
"type": "function"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"inputs": [],
|
|
1647
|
+
"name": "lzToken",
|
|
1648
|
+
"outputs": [
|
|
1649
|
+
{
|
|
1650
|
+
"internalType": "address",
|
|
1651
|
+
"name": "",
|
|
1652
|
+
"type": "address"
|
|
1653
|
+
}
|
|
1654
|
+
],
|
|
1655
|
+
"stateMutability": "view",
|
|
1656
|
+
"type": "function"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"inputs": [],
|
|
1660
|
+
"name": "nativeToken",
|
|
1661
|
+
"outputs": [
|
|
1662
|
+
{
|
|
1663
|
+
"internalType": "address",
|
|
1664
|
+
"name": "",
|
|
1665
|
+
"type": "address"
|
|
1666
|
+
}
|
|
1667
|
+
],
|
|
1668
|
+
"stateMutability": "view",
|
|
1669
|
+
"type": "function"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"inputs": [
|
|
1673
|
+
{
|
|
1674
|
+
"internalType": "address",
|
|
1675
|
+
"name": "_sender",
|
|
1676
|
+
"type": "address"
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"internalType": "uint32",
|
|
1680
|
+
"name": "_dstEid",
|
|
1681
|
+
"type": "uint32"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"internalType": "bytes32",
|
|
1685
|
+
"name": "_receiver",
|
|
1686
|
+
"type": "bytes32"
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"name": "nextGuid",
|
|
1690
|
+
"outputs": [
|
|
1691
|
+
{
|
|
1692
|
+
"internalType": "bytes32",
|
|
1693
|
+
"name": "",
|
|
1694
|
+
"type": "bytes32"
|
|
1695
|
+
}
|
|
1696
|
+
],
|
|
1697
|
+
"stateMutability": "view",
|
|
1698
|
+
"type": "function"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"inputs": [
|
|
1702
|
+
{
|
|
1703
|
+
"internalType": "address",
|
|
1704
|
+
"name": "_oapp",
|
|
1705
|
+
"type": "address"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"internalType": "uint32",
|
|
1709
|
+
"name": "_srcEid",
|
|
1710
|
+
"type": "uint32"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"internalType": "bytes32",
|
|
1714
|
+
"name": "_sender",
|
|
1715
|
+
"type": "bytes32"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"internalType": "uint64",
|
|
1719
|
+
"name": "_nonce",
|
|
1720
|
+
"type": "uint64"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"internalType": "bytes32",
|
|
1724
|
+
"name": "_payloadHash",
|
|
1725
|
+
"type": "bytes32"
|
|
1726
|
+
}
|
|
1727
|
+
],
|
|
1728
|
+
"name": "nilify",
|
|
1729
|
+
"outputs": [],
|
|
1730
|
+
"stateMutability": "nonpayable",
|
|
1731
|
+
"type": "function"
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"inputs": [
|
|
1735
|
+
{
|
|
1736
|
+
"internalType": "address",
|
|
1737
|
+
"name": "sender",
|
|
1738
|
+
"type": "address"
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"internalType": "uint32",
|
|
1742
|
+
"name": "dstEid",
|
|
1743
|
+
"type": "uint32"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"internalType": "bytes32",
|
|
1747
|
+
"name": "receiver",
|
|
1748
|
+
"type": "bytes32"
|
|
1749
|
+
}
|
|
1750
|
+
],
|
|
1751
|
+
"name": "outboundNonce",
|
|
1752
|
+
"outputs": [
|
|
1753
|
+
{
|
|
1754
|
+
"internalType": "uint64",
|
|
1755
|
+
"name": "nonce",
|
|
1756
|
+
"type": "uint64"
|
|
1757
|
+
}
|
|
1758
|
+
],
|
|
1759
|
+
"stateMutability": "view",
|
|
1760
|
+
"type": "function"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"inputs": [],
|
|
1764
|
+
"name": "owner",
|
|
1765
|
+
"outputs": [
|
|
1766
|
+
{
|
|
1767
|
+
"internalType": "address",
|
|
1768
|
+
"name": "",
|
|
1769
|
+
"type": "address"
|
|
1770
|
+
}
|
|
1771
|
+
],
|
|
1772
|
+
"stateMutability": "view",
|
|
1773
|
+
"type": "function"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"inputs": [
|
|
1777
|
+
{
|
|
1778
|
+
"components": [
|
|
1779
|
+
{
|
|
1780
|
+
"internalType": "uint32",
|
|
1781
|
+
"name": "dstEid",
|
|
1782
|
+
"type": "uint32"
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"internalType": "bytes32",
|
|
1786
|
+
"name": "receiver",
|
|
1787
|
+
"type": "bytes32"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"internalType": "bytes",
|
|
1791
|
+
"name": "message",
|
|
1792
|
+
"type": "bytes"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
"internalType": "bytes",
|
|
1796
|
+
"name": "options",
|
|
1797
|
+
"type": "bytes"
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"internalType": "bool",
|
|
1801
|
+
"name": "payInLzToken",
|
|
1802
|
+
"type": "bool"
|
|
1803
|
+
}
|
|
1804
|
+
],
|
|
1805
|
+
"internalType": "struct MessagingParams",
|
|
1806
|
+
"name": "_params",
|
|
1807
|
+
"type": "tuple"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"internalType": "address",
|
|
1811
|
+
"name": "_sender",
|
|
1812
|
+
"type": "address"
|
|
1813
|
+
}
|
|
1814
|
+
],
|
|
1815
|
+
"name": "quote",
|
|
1816
|
+
"outputs": [
|
|
1817
|
+
{
|
|
1818
|
+
"components": [
|
|
1819
|
+
{
|
|
1820
|
+
"internalType": "uint256",
|
|
1821
|
+
"name": "nativeFee",
|
|
1822
|
+
"type": "uint256"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"internalType": "uint256",
|
|
1826
|
+
"name": "lzTokenFee",
|
|
1827
|
+
"type": "uint256"
|
|
1828
|
+
}
|
|
1829
|
+
],
|
|
1830
|
+
"internalType": "struct MessagingFee",
|
|
1831
|
+
"name": "",
|
|
1832
|
+
"type": "tuple"
|
|
1833
|
+
}
|
|
1834
|
+
],
|
|
1835
|
+
"stateMutability": "view",
|
|
1836
|
+
"type": "function"
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"inputs": [
|
|
1840
|
+
{
|
|
1841
|
+
"internalType": "address",
|
|
1842
|
+
"name": "receiver",
|
|
1843
|
+
"type": "address"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"internalType": "uint32",
|
|
1847
|
+
"name": "srcEid",
|
|
1848
|
+
"type": "uint32"
|
|
1849
|
+
}
|
|
1850
|
+
],
|
|
1851
|
+
"name": "receiveLibraryTimeout",
|
|
1852
|
+
"outputs": [
|
|
1853
|
+
{
|
|
1854
|
+
"internalType": "address",
|
|
1855
|
+
"name": "lib",
|
|
1856
|
+
"type": "address"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"internalType": "uint256",
|
|
1860
|
+
"name": "expiry",
|
|
1861
|
+
"type": "uint256"
|
|
1862
|
+
}
|
|
1863
|
+
],
|
|
1864
|
+
"stateMutability": "view",
|
|
1865
|
+
"type": "function"
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"inputs": [
|
|
1869
|
+
{
|
|
1870
|
+
"internalType": "address",
|
|
1871
|
+
"name": "_token",
|
|
1872
|
+
"type": "address"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"internalType": "address",
|
|
1876
|
+
"name": "_to",
|
|
1877
|
+
"type": "address"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"internalType": "uint256",
|
|
1881
|
+
"name": "_amount",
|
|
1882
|
+
"type": "uint256"
|
|
1883
|
+
}
|
|
1884
|
+
],
|
|
1885
|
+
"name": "recoverToken",
|
|
1886
|
+
"outputs": [],
|
|
1887
|
+
"stateMutability": "nonpayable",
|
|
1888
|
+
"type": "function"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"inputs": [
|
|
1892
|
+
{
|
|
1893
|
+
"internalType": "address",
|
|
1894
|
+
"name": "_lib",
|
|
1895
|
+
"type": "address"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
|
+
"name": "registerLibrary",
|
|
1899
|
+
"outputs": [],
|
|
1900
|
+
"stateMutability": "nonpayable",
|
|
1901
|
+
"type": "function"
|
|
1902
|
+
},
|
|
1903
|
+
{
|
|
1904
|
+
"inputs": [],
|
|
1905
|
+
"name": "renounceOwnership",
|
|
1906
|
+
"outputs": [],
|
|
1907
|
+
"stateMutability": "nonpayable",
|
|
1908
|
+
"type": "function"
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"inputs": [
|
|
1912
|
+
{
|
|
1913
|
+
"components": [
|
|
1914
|
+
{
|
|
1915
|
+
"internalType": "uint32",
|
|
1916
|
+
"name": "dstEid",
|
|
1917
|
+
"type": "uint32"
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"internalType": "bytes32",
|
|
1921
|
+
"name": "receiver",
|
|
1922
|
+
"type": "bytes32"
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
"internalType": "bytes",
|
|
1926
|
+
"name": "message",
|
|
1927
|
+
"type": "bytes"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"internalType": "bytes",
|
|
1931
|
+
"name": "options",
|
|
1932
|
+
"type": "bytes"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"internalType": "bool",
|
|
1936
|
+
"name": "payInLzToken",
|
|
1937
|
+
"type": "bool"
|
|
1938
|
+
}
|
|
1939
|
+
],
|
|
1940
|
+
"internalType": "struct MessagingParams",
|
|
1941
|
+
"name": "_params",
|
|
1942
|
+
"type": "tuple"
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"internalType": "address",
|
|
1946
|
+
"name": "_refundAddress",
|
|
1947
|
+
"type": "address"
|
|
1948
|
+
}
|
|
1949
|
+
],
|
|
1950
|
+
"name": "send",
|
|
1951
|
+
"outputs": [
|
|
1952
|
+
{
|
|
1953
|
+
"components": [
|
|
1954
|
+
{
|
|
1955
|
+
"internalType": "bytes32",
|
|
1956
|
+
"name": "guid",
|
|
1957
|
+
"type": "bytes32"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"internalType": "uint64",
|
|
1961
|
+
"name": "nonce",
|
|
1962
|
+
"type": "uint64"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"components": [
|
|
1966
|
+
{
|
|
1967
|
+
"internalType": "uint256",
|
|
1968
|
+
"name": "nativeFee",
|
|
1969
|
+
"type": "uint256"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"internalType": "uint256",
|
|
1973
|
+
"name": "lzTokenFee",
|
|
1974
|
+
"type": "uint256"
|
|
1975
|
+
}
|
|
1976
|
+
],
|
|
1977
|
+
"internalType": "struct MessagingFee",
|
|
1978
|
+
"name": "fee",
|
|
1979
|
+
"type": "tuple"
|
|
1980
|
+
}
|
|
1981
|
+
],
|
|
1982
|
+
"internalType": "struct MessagingReceipt",
|
|
1983
|
+
"name": "",
|
|
1984
|
+
"type": "tuple"
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
"stateMutability": "payable",
|
|
1988
|
+
"type": "function"
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
"inputs": [
|
|
1992
|
+
{
|
|
1993
|
+
"internalType": "address",
|
|
1994
|
+
"name": "_to",
|
|
1995
|
+
"type": "address"
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"internalType": "bytes32",
|
|
1999
|
+
"name": "_guid",
|
|
2000
|
+
"type": "bytes32"
|
|
2001
|
+
},
|
|
2002
|
+
{
|
|
2003
|
+
"internalType": "uint16",
|
|
2004
|
+
"name": "_index",
|
|
2005
|
+
"type": "uint16"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"internalType": "bytes",
|
|
2009
|
+
"name": "_message",
|
|
2010
|
+
"type": "bytes"
|
|
2011
|
+
}
|
|
2012
|
+
],
|
|
2013
|
+
"name": "sendCompose",
|
|
2014
|
+
"outputs": [],
|
|
2015
|
+
"stateMutability": "nonpayable",
|
|
2016
|
+
"type": "function"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"inputs": [
|
|
2020
|
+
{
|
|
2021
|
+
"internalType": "address",
|
|
2022
|
+
"name": "_oapp",
|
|
2023
|
+
"type": "address"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"internalType": "address",
|
|
2027
|
+
"name": "_lib",
|
|
2028
|
+
"type": "address"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"components": [
|
|
2032
|
+
{
|
|
2033
|
+
"internalType": "uint32",
|
|
2034
|
+
"name": "eid",
|
|
2035
|
+
"type": "uint32"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"internalType": "uint32",
|
|
2039
|
+
"name": "configType",
|
|
2040
|
+
"type": "uint32"
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"internalType": "bytes",
|
|
2044
|
+
"name": "config",
|
|
2045
|
+
"type": "bytes"
|
|
2046
|
+
}
|
|
2047
|
+
],
|
|
2048
|
+
"internalType": "struct SetConfigParam[]",
|
|
2049
|
+
"name": "_params",
|
|
2050
|
+
"type": "tuple[]"
|
|
2051
|
+
}
|
|
2052
|
+
],
|
|
2053
|
+
"name": "setConfig",
|
|
2054
|
+
"outputs": [],
|
|
2055
|
+
"stateMutability": "nonpayable",
|
|
2056
|
+
"type": "function"
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"inputs": [
|
|
2060
|
+
{
|
|
2061
|
+
"internalType": "uint32",
|
|
2062
|
+
"name": "_eid",
|
|
2063
|
+
"type": "uint32"
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
"internalType": "address",
|
|
2067
|
+
"name": "_newLib",
|
|
2068
|
+
"type": "address"
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"internalType": "uint256",
|
|
2072
|
+
"name": "_gracePeriod",
|
|
2073
|
+
"type": "uint256"
|
|
2074
|
+
}
|
|
2075
|
+
],
|
|
2076
|
+
"name": "setDefaultReceiveLibrary",
|
|
2077
|
+
"outputs": [],
|
|
2078
|
+
"stateMutability": "nonpayable",
|
|
2079
|
+
"type": "function"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"inputs": [
|
|
2083
|
+
{
|
|
2084
|
+
"internalType": "uint32",
|
|
2085
|
+
"name": "_eid",
|
|
2086
|
+
"type": "uint32"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"internalType": "address",
|
|
2090
|
+
"name": "_lib",
|
|
2091
|
+
"type": "address"
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
"internalType": "uint256",
|
|
2095
|
+
"name": "_expiry",
|
|
2096
|
+
"type": "uint256"
|
|
2097
|
+
}
|
|
2098
|
+
],
|
|
2099
|
+
"name": "setDefaultReceiveLibraryTimeout",
|
|
2100
|
+
"outputs": [],
|
|
2101
|
+
"stateMutability": "nonpayable",
|
|
2102
|
+
"type": "function"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"inputs": [
|
|
2106
|
+
{
|
|
2107
|
+
"internalType": "uint32",
|
|
2108
|
+
"name": "_eid",
|
|
2109
|
+
"type": "uint32"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"internalType": "address",
|
|
2113
|
+
"name": "_newLib",
|
|
2114
|
+
"type": "address"
|
|
2115
|
+
}
|
|
2116
|
+
],
|
|
2117
|
+
"name": "setDefaultSendLibrary",
|
|
2118
|
+
"outputs": [],
|
|
2119
|
+
"stateMutability": "nonpayable",
|
|
2120
|
+
"type": "function"
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"inputs": [
|
|
2124
|
+
{
|
|
2125
|
+
"internalType": "address",
|
|
2126
|
+
"name": "_delegate",
|
|
2127
|
+
"type": "address"
|
|
2128
|
+
}
|
|
2129
|
+
],
|
|
2130
|
+
"name": "setDelegate",
|
|
2131
|
+
"outputs": [],
|
|
2132
|
+
"stateMutability": "nonpayable",
|
|
2133
|
+
"type": "function"
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"inputs": [
|
|
2137
|
+
{
|
|
2138
|
+
"internalType": "address",
|
|
2139
|
+
"name": "_lzToken",
|
|
2140
|
+
"type": "address"
|
|
2141
|
+
}
|
|
2142
|
+
],
|
|
2143
|
+
"name": "setLzToken",
|
|
2144
|
+
"outputs": [],
|
|
2145
|
+
"stateMutability": "nonpayable",
|
|
2146
|
+
"type": "function"
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"inputs": [
|
|
2150
|
+
{
|
|
2151
|
+
"internalType": "address",
|
|
2152
|
+
"name": "_oapp",
|
|
2153
|
+
"type": "address"
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"internalType": "uint32",
|
|
2157
|
+
"name": "_eid",
|
|
2158
|
+
"type": "uint32"
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"internalType": "address",
|
|
2162
|
+
"name": "_newLib",
|
|
2163
|
+
"type": "address"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"internalType": "uint256",
|
|
2167
|
+
"name": "_gracePeriod",
|
|
2168
|
+
"type": "uint256"
|
|
2169
|
+
}
|
|
2170
|
+
],
|
|
2171
|
+
"name": "setReceiveLibrary",
|
|
2172
|
+
"outputs": [],
|
|
2173
|
+
"stateMutability": "nonpayable",
|
|
2174
|
+
"type": "function"
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
"inputs": [
|
|
2178
|
+
{
|
|
2179
|
+
"internalType": "address",
|
|
2180
|
+
"name": "_oapp",
|
|
2181
|
+
"type": "address"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"internalType": "uint32",
|
|
2185
|
+
"name": "_eid",
|
|
2186
|
+
"type": "uint32"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"internalType": "address",
|
|
2190
|
+
"name": "_lib",
|
|
2191
|
+
"type": "address"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"internalType": "uint256",
|
|
2195
|
+
"name": "_expiry",
|
|
2196
|
+
"type": "uint256"
|
|
2197
|
+
}
|
|
2198
|
+
],
|
|
2199
|
+
"name": "setReceiveLibraryTimeout",
|
|
2200
|
+
"outputs": [],
|
|
2201
|
+
"stateMutability": "nonpayable",
|
|
2202
|
+
"type": "function"
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"inputs": [
|
|
2206
|
+
{
|
|
2207
|
+
"internalType": "address",
|
|
2208
|
+
"name": "_oapp",
|
|
2209
|
+
"type": "address"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"internalType": "uint32",
|
|
2213
|
+
"name": "_eid",
|
|
2214
|
+
"type": "uint32"
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"internalType": "address",
|
|
2218
|
+
"name": "_newLib",
|
|
2219
|
+
"type": "address"
|
|
2220
|
+
}
|
|
2221
|
+
],
|
|
2222
|
+
"name": "setSendLibrary",
|
|
2223
|
+
"outputs": [],
|
|
2224
|
+
"stateMutability": "nonpayable",
|
|
2225
|
+
"type": "function"
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"inputs": [
|
|
2229
|
+
{
|
|
2230
|
+
"internalType": "address",
|
|
2231
|
+
"name": "_oapp",
|
|
2232
|
+
"type": "address"
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
"internalType": "uint32",
|
|
2236
|
+
"name": "_srcEid",
|
|
2237
|
+
"type": "uint32"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"internalType": "bytes32",
|
|
2241
|
+
"name": "_sender",
|
|
2242
|
+
"type": "bytes32"
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
"internalType": "uint64",
|
|
2246
|
+
"name": "_nonce",
|
|
2247
|
+
"type": "uint64"
|
|
2248
|
+
}
|
|
2249
|
+
],
|
|
2250
|
+
"name": "skip",
|
|
2251
|
+
"outputs": [],
|
|
2252
|
+
"stateMutability": "nonpayable",
|
|
2253
|
+
"type": "function"
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"inputs": [
|
|
2257
|
+
{
|
|
2258
|
+
"internalType": "address",
|
|
2259
|
+
"name": "newOwner",
|
|
2260
|
+
"type": "address"
|
|
2261
|
+
}
|
|
2262
|
+
],
|
|
2263
|
+
"name": "transferOwnership",
|
|
2264
|
+
"outputs": [],
|
|
2265
|
+
"stateMutability": "nonpayable",
|
|
2266
|
+
"type": "function"
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
"inputs": [
|
|
2270
|
+
{
|
|
2271
|
+
"components": [
|
|
2272
|
+
{
|
|
2273
|
+
"internalType": "uint32",
|
|
2274
|
+
"name": "srcEid",
|
|
2275
|
+
"type": "uint32"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"internalType": "bytes32",
|
|
2279
|
+
"name": "sender",
|
|
2280
|
+
"type": "bytes32"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"internalType": "uint64",
|
|
2284
|
+
"name": "nonce",
|
|
2285
|
+
"type": "uint64"
|
|
2286
|
+
}
|
|
2287
|
+
],
|
|
2288
|
+
"internalType": "struct Origin",
|
|
2289
|
+
"name": "_origin",
|
|
2290
|
+
"type": "tuple"
|
|
2291
|
+
},
|
|
2292
|
+
{
|
|
2293
|
+
"internalType": "address",
|
|
2294
|
+
"name": "_receiver",
|
|
2295
|
+
"type": "address"
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"internalType": "address",
|
|
2299
|
+
"name": "_receiveLib",
|
|
2300
|
+
"type": "address"
|
|
2301
|
+
},
|
|
2302
|
+
{
|
|
2303
|
+
"internalType": "bytes32",
|
|
2304
|
+
"name": "_payloadHash",
|
|
2305
|
+
"type": "bytes32"
|
|
2306
|
+
}
|
|
2307
|
+
],
|
|
2308
|
+
"name": "verifiable",
|
|
2309
|
+
"outputs": [
|
|
2310
|
+
{
|
|
2311
|
+
"internalType": "bool",
|
|
2312
|
+
"name": "",
|
|
2313
|
+
"type": "bool"
|
|
2314
|
+
}
|
|
2315
|
+
],
|
|
2316
|
+
"stateMutability": "view",
|
|
2317
|
+
"type": "function"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"inputs": [
|
|
2321
|
+
{
|
|
2322
|
+
"components": [
|
|
2323
|
+
{
|
|
2324
|
+
"internalType": "uint32",
|
|
2325
|
+
"name": "srcEid",
|
|
2326
|
+
"type": "uint32"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"internalType": "bytes32",
|
|
2330
|
+
"name": "sender",
|
|
2331
|
+
"type": "bytes32"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"internalType": "uint64",
|
|
2335
|
+
"name": "nonce",
|
|
2336
|
+
"type": "uint64"
|
|
2337
|
+
}
|
|
2338
|
+
],
|
|
2339
|
+
"internalType": "struct Origin",
|
|
2340
|
+
"name": "_origin",
|
|
2341
|
+
"type": "tuple"
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
"internalType": "address",
|
|
2345
|
+
"name": "_receiver",
|
|
2346
|
+
"type": "address"
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
"internalType": "bytes32",
|
|
2350
|
+
"name": "_payloadHash",
|
|
2351
|
+
"type": "bytes32"
|
|
2352
|
+
}
|
|
2353
|
+
],
|
|
2354
|
+
"name": "verify",
|
|
2355
|
+
"outputs": [],
|
|
2356
|
+
"stateMutability": "nonpayable",
|
|
2357
|
+
"type": "function"
|
|
2358
|
+
}
|
|
2359
|
+
],
|
|
2360
|
+
"bytecode": "0x60c06040526001600d553480156200001657600080fd5b5060405162006615380380620066158339810160408190526200003991620002d6565b816200004533620000a6565b63ffffffff166080526040516200005c90620002c8565b604051809103906000f08015801562000079573d6000803e3d6000fd5b506001600160a01b031660a08190526200009390620000f6565b6200009e81620000a6565b505062000353565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200010062000267565b6040516301ffc9a760e01b81526325fc096160e21b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa1580156200014c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000172919062000328565b62000190576040516331d5783360e11b815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615620001cb57604051630ea075bf60e21b815260040160405180910390fd5b6001600160a01b0381166000818152600560209081526040808320805460ff191660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180546001600160a01b0319168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af5910160405180910390a150565b6000546001600160a01b03163314620002c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b61028f806200638683390190565b60008060408385031215620002ea57600080fd5b825163ffffffff81168114620002ff57600080fd5b60208401519092506001600160a01b03811681146200031d57600080fd5b809150509250929050565b6000602082840312156200033b57600080fd5b815180151581146200034c57600080fd5b9392505050565b60805160a051615fea6200039c60003960006107de01526000818161055f01528181612fcd015281816139160152818161397d0152818161422001526142870152615fea6000f3fe6080604052600436106103605760003560e01c80639132e5c3116101c6578063ca5eb5e1116100f7578063e1758bd811610095578063e8964e811161006f578063e8964e8114610c0f578063ef667aa114610c2f578063f2fde38b14610c7a578063f64be4c714610c9a57600080fd5b8063e1758bd814610bbb578063e1e3a7df14610bcf578063e4fe1d9414610bef57600080fd5b8063d70b8902116100d1578063d70b890214610af2578063dc706a6214610b12578063dc93c8a214610b42578063ddc28c5814610b8e57600080fd5b8063ca5eb5e114610a5b578063cb5026b914610abd578063d4b4ec8f14610ad257600080fd5b8063a7229fd911610164578063aafea3121161013e578063aafea312146109b4578063b96a277f146109d4578063c28e0eed146109f4578063c9fc7bcd14610a1457600080fd5b8063a7229fd914610954578063a825d74714610974578063aafe5e071461099457600080fd5b80639c6d7340116101a05780639c6d7340146108ac5780639d7f9775146108f4578063a0dd43fc14610914578063a718531b1461093457600080fd5b80639132e5c31461085757806391d20fa1146108795780639535ff301461088c57600080fd5b8063587cde1e116102a05780636e83f5bb1161023e578063733180911161021857806373318091146107cc57806379624ca9146108005780637cb59012146108195780638da5cb5b1461083957600080fd5b80636e83f5bb146107225780636f50a80314610781578063715018a6146107b757600080fd5b8063697fe6b61161027a578063697fe6b6146106a25780636a14d715146106c25780636bf73fa3146106e25780636dbd9f901461070257600080fd5b8063587cde1e146105c35780635b17bb70146106115780636750cd4c1461067257600080fd5b80632baf0be71161030d578063402f8468116102e7578063402f8468146104ee57806340f806831461052d578063416ecebf1461054d5780634b4b2efb1461059657600080fd5b80632baf0be7146104455780632e80fbf31461048757806335d330b0146104a757600080fd5b80632637a4501161033e5780632637a450146103d85780632a56c1b0146103f85780632b3197b91461041857600080fd5b80630c0c389e1461036557806314f651a91461037a578063183c834f146103b8575b600080fd5b610378610373366004614d66565b610cd0565b005b34801561038657600080fd5b5061038f610de7565b6040805163ffffffff90931683526001600160a01b039091166020830152015b60405180910390f35b3480156103c457600080fd5b506103786103d3366004614e16565b610e19565b6103eb6103e6366004614e61565b6111a4565b6040516103af9190614eb4565b34801561040457600080fd5b50610378610413366004614ef7565b61130d565b34801561042457600080fd5b50610438610433366004614f67565b6113cb565b6040516103af9190615029565b34801561045157600080fd5b506104797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020016103af565b34801561049357600080fd5b506103786104a2366004615054565b6114e6565b3480156104b357600080fd5b506104796104c23660046150bb565b600c60209081526000948552604080862082529385528385208152918452828420909152825290205481565b3480156104fa57600080fd5b5061050e6105093660046150fd565b6116bd565b604080516001600160a01b0390931683529015156020830152016103af565b34801561053957600080fd5b50610378610548366004615054565b611754565b34801561055957600080fd5b506105817f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016103af565b3480156105a257600080fd5b506105b66105b1366004615127565b611904565b6040516103af9190615181565b3480156105cf57600080fd5b506105f96105de3660046151c2565b600f602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b34801561061d57600080fd5b5061065961062c3660046151dd565b600160209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103af565b34801561067e57600080fd5b5061069261068d366004615219565b611aa8565b60405190151581526020016103af565b3480156106ae57600080fd5b506103786106bd366004615234565b611af4565b3480156106ce57600080fd5b506103786106dd366004614e16565b611b69565b3480156106ee57600080fd5b506103786106fd366004615332565b612073565b34801561070e57600080fd5b5061037861071d366004615416565b6120dd565b34801561072e57600080fd5b5061076261073d366004615219565b600b60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103af565b34801561078d57600080fd5b506105f961079c366004615219565b600a602052600090815260409020546001600160a01b031681565b3480156107c357600080fd5b506103786121b1565b3480156107d857600080fd5b506105f97f000000000000000000000000000000000000000000000000000000000000000081565b34801561080c57600080fd5b50600d5460011415610692565b34801561082557600080fd5b506103786108343660046154a7565b6121c5565b34801561084557600080fd5b506000546001600160a01b03166105f9565b34801561086357600080fd5b5061086c6122ca565b6040516103af91906154f9565b610378610887366004615546565b61232c565b34801561089857600080fd5b506103786108a73660046155f1565b6124ee565b3480156108b857600080fd5b506106596108c73660046151dd565b600360209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b34801561090057600080fd5b5061069261090f3660046155f1565b6127f6565b34801561092057600080fd5b5061065961092f3660046151dd565b6128d2565b34801561094057600080fd5b5061037861094f366004615634565b61296b565b34801561096057600080fd5b5061037861096f366004615660565b612d7d565b34801561098057600080fd5b5061037861098f36600461567e565b612d95565b3480156109a057600080fd5b506104796109af3660046151dd565b612f2d565b3480156109c057600080fd5b506103786109cf3660046156bb565b61303c565b3480156109e057600080fd5b506105f96109ef3660046150fd565b6132fc565b348015610a0057600080fd5b50610378610a0f3660046151c2565b613384565b348015610a2057600080fd5b50610479610a2f3660046156d7565b600260209081526000948552604080862082529385528385208152918452828420909152825290205481565b348015610a6757600080fd5b50610378610a763660046151c2565b336000908152600f6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b348015610ac957600080fd5b50610479600081565b348015610ade57600080fd5b50610378610aed366004615634565b6133f9565b348015610afe57600080fd5b50610378610b0d3660046156d7565b6136fd565b348015610b1e57600080fd5b50610692610b2d3660046151c2565b60056020526000908152604090205460ff1681565b348015610b4e57600080fd5b50610692610b5d3660046150fd565b6001600160a01b03918216600090815260066020908152604080832063ffffffff9490941683529290522054161590565b348015610b9a57600080fd5b50610bae610ba9366004614e61565b613820565b6040516103af9190615719565b348015610bc757600080fd5b5060006105f9565b348015610bdb57600080fd5b50610692610bea366004615730565b613b4b565b348015610bfb57600080fd5b50600e546105f9906001600160a01b031681565b348015610c1b57600080fd5b50610378610c2a3660046151c2565b613c19565b348015610c3b57600080fd5b50610762610c4a3660046150fd565b6008602090815260009283526040808420909152908252902080546001909101546001600160a01b039091169082565b348015610c8657600080fd5b50610378610c953660046151c2565b613e17565b348015610ca657600080fd5b506105f9610cb5366004615219565b6009602052600090815260409020546001600160a01b031681565b610d1f86610ce160208a018a615219565b60208a0135610cf660608c0160408d0161577c565b898989604051602001610d0b93929190615797565b604051602081830303815290604052613ec1565b506040517f13137d650000000000000000000000000000000000000000000000000000000081526001600160a01b038716906313137d65903490610d73908b908a908a908a9033908b908b90600401615834565b6000604051808303818588803b158015610d8c57600080fd5b505af1158015610da0573d6000803e3d6000fd5b50505050507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca048787604051610dd692919061588b565b60405180910390a150505050505050565b600080610df7600d546001141590565b610e0357600080610e11565b610e11600d5460a081901c91565b915091509091565b6001600160a01b038216600090815260056020526040902054829060ff16610e6d576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615610f29576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ebd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee191906158af565b6002811115610ef257610ef2615152565b03610f29576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615610ff7576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc191906158de565b610ff7576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61100088614104565b600061100c89896116bd565b9150508015611047576040517f78142dd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b856000036110a7576001600160a01b038916600090815260086020908152604080832063ffffffff8c168452909152812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001015561113e565b4386116110e0576040517fd36c850000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600090815260086020908152604080832063ffffffff8d168452909152902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169189169190911781556001018690555b604080516001600160a01b03808c16825263ffffffff8b166020830152891691810191909152606081018790527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb20928906080015b60405180910390a1505050505050505050565b6111ac614cad565b6111b96020840184615219565b336001600d54146111f6576040517f9633fed300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b77ffffffff000000000000000000000000000000000000000060a083811b919091166001600160a01b03831617600d55611235908601608087016158fb565b801561124a5750600e546001600160a01b0316155b15611281576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061128e338861416e565b91509150600061129b3490565b905060006112b76112b260a08b0160808c016158fb565b614452565b90506112c884604001518383614520565b600e546040850151602001516112ea916001600160a01b03169083868c614587565b6040840151516112fc9083858b6145b4565b50506001600d555095945050505050565b61131685614104565b600083838360405160200161132d93929190615797565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905290506113898661136e6020880188615219565b602088013561138360608a0160408b0161577c565b85613ec1565b507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca0485876040516113bb92919061588b565b60405180910390a1505050505050565b6001600160a01b038316600090815260056020526040902054606090849060ff16611422576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f9c33abf700000000000000000000000000000000000000000000000000000000815263ffffffff80861660048301526001600160a01b0388811660248401529085166044830152861690639c33abf790606401600060405180830381865afa158015611496573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526114dc91908101906159e3565b9695505050505050565b6114ef85614104565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff8616845290915290205481811461157b576040517fe4bb0ca100000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044015b60405180910390fd5b6001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416118015906115c8575080155b1561160b576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611572565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff8916808652908452938290207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905581519081529182018890528101929092526060820152608081018390527faf0450c392c4f702515a457a362328c8aa21916048ca6d0419e248b30cb552929060a0016113bb565b6001600160a01b03808316600090815260076020908152604080832063ffffffff86168452909152812054909116908161174d5763ffffffff83166000908152600a60205260409020546001600160a01b0316915081611749576040517ffbc6a95a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060015b9250929050565b61175d85614104565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff861684529091529020548181146117e4576040517fe4bb0ca10000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401611572565b80158061182f57506001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416115b15611872576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611572565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff89168086529084528285209490945581519081529182018890528101929092526060820152608081018390527f7f68a37a6e69a0de35024a234558f9efe4b33b58657753d21eaaa82d51c3510e9060a0016113bb565b6001600160a01b038116600090815260026020908152604082208291829061192e90870187615219565b63ffffffff1663ffffffff1681526020019081526020016000206000856020013581526020019081526020016000206000856040016020810190611972919061577c565b67ffffffffffffffff168152602081019190915260400160002054905080158015611a1157506001600160a01b0383166000908152600160209081526040822091906119c090870187615219565b63ffffffff16815260208082019290925260409081016000908120878401358252909252908190205467ffffffffffffffff1690611a04906060870190870161577c565b67ffffffffffffffff1611155b15611a20576002915050611aa2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114801590611a8d5750611a6683611a5c6020870187615219565b86602001356128d2565b67ffffffffffffffff16611a80606086016040870161577c565b67ffffffffffffffff1611155b15611a9c576001915050611aa2565b60009150505b92915050565b63ffffffff81166000908152600960205260408120546001600160a01b031615801590611aa257505063ffffffff166000908152600a60205260409020546001600160a01b0316151590565b336001600160a01b03168b6001600160a01b03168d6001600160a01b03167f8a0b1dce321c5c5fb42349bce46d18087c04140de520917661fb923e44a904b98d8d8d8d8d8d8d8d8d8d604051611b539a99989796959493929190615a18565b60405180910390a4505050505050505050505050565b6001600160a01b038216600090815260056020526040902054829060ff16158015611b9c57506001600160a01b03811615155b15611bd3576040517f4fb58e1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615611c8f576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4791906158af565b6002811115611c5857611c58615152565b03611c8f576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615611d5d576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2791906158de565b611d5d576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6688614104565b6001600160a01b03808916600090815260076020908152604080832063ffffffff8c16845290915290205481169087168103611dce576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600081815260076020908152604080832063ffffffff8e168085529083529281902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168d87169081179091558151948552918401929092529284169082015260608101919091527fc0833c35bb1d0beadca36bed54c7098819e109542a6d233d33c7c2039c8ec9aa9060800160405180910390a18515611fc8576001600160a01b0381161580611e9357506001600160a01b038716155b15611eca576040517f78142dd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280836001600160a01b031681526020018843611ef29190615ab0565b90526001600160a01b03808c16600090815260086020908152604080832063ffffffff8f1684528252918290208451815494167fffffffffffffffffffffffff00000000000000000000000000000000000000009094169390931783558301516001909201829055519192507f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092891611fba918d918d9187916001600160a01b03948516815263ffffffff93909316602084015292166040820152606081019190915260800190565b60405180910390a150612068565b6001600160a01b03898116600081815260086020908152604080832063ffffffff8e1680855290835281842080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001018490558151948552918401919091529284169282019290925260608101919091527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092890608001611191565b505050505050505050565b336001600160a01b03168a6001600160a01b03167f7edfa10fe10193301ad8a8bea7e968c7bcabcc64981f368e3aeada40ce26ae2c8d8c8c8c8c8c8c8c8c8c6040516120c89a99989796959493929190615ac3565b60405180910390a35050505050505050505050565b6001600160a01b038316600090815260056020526040902054839060ff16612131576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213a85614104565b6040517f20efd7220000000000000000000000000000000000000000000000000000000081526001600160a01b038516906320efd7229061218390889087908790600401615b22565b600060405180830381600087803b15801561219d57600080fd5b505af1158015612068573d6000803e3d6000fd5b6121b96145de565b6121c36000614652565b565b336000908152600c602090815260408083206001600160a01b03891684528252808320878452825280832061ffff8716845290915290205415612234576040517f895fdbee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181604051612244929190615c73565b60408051918290038220336000818152600c60209081528482206001600160a01b038c16835281528482208a8352815284822061ffff8a168352905292909220557f3d52ff888d033fd3dd1d8057da59e850c91d91a72c41dfa445b247dfedeb6dc1916122bb919088908890889088908890615c83565b60405180910390a15050505050565b6060600480548060200260200160405190810160405280929190818152602001828054801561232257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612304575b5050505050905090565b6001600160a01b038089166000908152600c60209081526040808320938b168352928152828220898352815282822061ffff8916835290528181205491516123779087908790615c73565b604051809103902090508082146123c4576040517f9e3e05830000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401611572565b6001600160a01b03808b166000908152600c60209081526040808320938d168084529382528083208c8452825280832061ffff8c1684529091529081902060019055517fd0a1026000000000000000000000000000000000000000000000000000000000815263d0a1026090349061244c908e908d908c908c9033908d908d90600401615ccc565b6000604051808303818588803b15801561246557600080fd5b505af1158015612479573d6000803e3d6000fd5b50505050507e36c98efcf9e6641dfbc9051f66f405253e8e0c2ab4a24dccda15595b7378c88a8a8a8a6040516124da94939291906001600160a01b039485168152929093166020830152604082015261ffff91909116606082015260800190565b60405180910390a150505050505050505050565b6001600160a01b038116600090815260056020526040902054819060ff1615801561252157506001600160a01b03811615155b15612558576040517f4fb58e1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612614576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906158af565b60028111156125dd576125dd615152565b03612614576040517f3885d60300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b038216156126e2576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015612688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ac91906158de565b6126e2576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126eb87614104565b6001600160a01b03808816600090815260066020908152604080832063ffffffff8b16845290915290205481169086168103612753576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03888116600081815260066020908152604080832063ffffffff8d168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958c1695861790558051938452908301919091528101919091527f4cff966ebee29a156dcb34cf72c1d06231fb1777f6bdf6e8089819232f002b1c906060015b60405180910390a15050505050505050565b600080600061280586866116bd565b91509150816001600160a01b0316846001600160a01b03160361282d576001925050506128cb565b600081612862576001600160a01b038716600090815260086020908152604080832063ffffffff8a1684529091529020612878565b63ffffffff86166000908152600b602052604090205b6040805180820190915281546001600160a01b03908116808352600190930154602083015290925086161480156128b25750438160200151115b156128c357600193505050506128cb565b600093505050505b9392505050565b6001600160a01b038316600090815260016020908152604080832063ffffffff86168452825280832084845290915281205467ffffffffffffffff165b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff60018601168452909152902054156129635760010161290f565b949350505050565b6129736145de565b6001600160a01b038216600090815260056020526040902054829060ff166129c7576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615612a83576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3b91906158af565b6002811115612a4c57612a4c615152565b03612a83576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615612b51576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015612af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b1b91906158de565b612b51576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600a60205260409020546001600160a01b039081169087168103612bad576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff88166000818152600a602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c8116918217909255835194855290851691840191909152908201527f9914edfad6b7eac2e388f49bae232bd0e1954fbe92f5ed1ab975fc270f27cea59060600160405180910390a18515612cec5763ffffffff88166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316178155612c918743615ab0565b600182018190556040805163ffffffff8c1681526001600160a01b038516602082015280820192909252517f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89181900360600190a150612d73565b63ffffffff88166000818152600b6020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016815560010183905580519384526001600160a01b038516918401919091528201527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f8906060016127e4565b5050505050505050565b612d856145de565b612d908383836146ba565b505050565b612dac82612da66020860186615219565b336127f6565b612de2576040517f82ceb50e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03821660009081526001602090815260408220908290612e0b90870187615219565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205467ffffffffffffffff169050612e498484836146dd565b612e7f576040517f098c20b500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e8a848483614778565b612ec0576040517f2923b32a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eec83612ed16020870187615219565b6020870135612ee66060890160408a0161577c565b86614838565b7f0d87345f3d1c929caba93e1c3821b54ff3512e12b66aa3cfe54b6bcbc17e59b4848484604051612f1f93929190615d20565b60405180910390a150505050565b6001600160a01b038316600090815260036020908152604080832063ffffffff8616845282528083208484529091528120548190612f769067ffffffffffffffff166001615d48565b604080517fffffffffffffffff00000000000000000000000000000000000000000000000060c084901b166020808301919091527fffffffff000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060e090811b821660288501526001600160a01b038b16602c85015289901b16604c830152605080830188905283518084039091018152607090920190925280519101209091505b95945050505050565b6130446145de565b6001600160a01b038116600090815260056020526040902054819060ff16613098576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615613154576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310c91906158af565b600281111561311d5761311d615152565b03613154576040517f3885d60300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b03821615613222576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156131c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131ec91906158de565b613222576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff86166000908152600960205260409020546001600160a01b03908116908616810361327e576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff871660008181526009602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038b169081179091558251938452908301527f16aa0f528038ab41019e95bae5b418a50ba8532c5800e3b7ea2f517d3fa625f59101610dd6565b6001600160a01b03808316600090815260066020908152604080832063ffffffff861684529091529020541680611aa2575063ffffffff81166000908152600960205260409020546001600160a01b031680611aa2576040517fb6f3253d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61338c6145de565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fd476ec5ec1ac11cec3714d41e7ea49419471aceb9bd0dff1becfc3e363a62396906020015b60405180910390a150565b6001600160a01b038216600090815260056020526040902054829060ff1661344d576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615613509576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561349d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c191906158af565b60028111156134d2576134d2615152565b03613509576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b038216156135d7576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa15801561357d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135a191906158de565b6135d7576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135df6145de565b8460000361362b5763ffffffff87166000908152600b6020526040812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556136b1565b438511613664576040517fd36c850000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388161781556001018590555b6040805163ffffffff891681526001600160a01b03881660208201529081018690527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f890606001610dd6565b61370684614104565b6137118484846128d2565b61371c906001615d48565b67ffffffffffffffff168167ffffffffffffffff1614613774576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611572565b6001600160a01b038416600081815260016020908152604080832063ffffffff881680855290835281842087855283529281902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8716908117909155815193845291830186905282019290925260608101919091527f28f40053783033ef755556a0c3315379141f51a33aed8334174ffbadd90bde4890608001612f1f565b604080518082019091526000808252602082015261384460a08401608085016158fb565b80156138595750600e546001600160a01b0316155b15613890576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600090815260036020908152604082209082906138b990870187615219565b63ffffffff168152602080820192909252604090810160009081208784013582529092529020546138f59067ffffffffffffffff166001615d48565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001856001600160a01b031681526020018660000160208101906139629190615219565b63ffffffff16815260200186602001358152602001613a5e847f0000000000000000000000000000000000000000000000000000000000000000888a60000160208101906139b09190615219565b8b60200135600085856001600160a01b03861660405160c09390931b7fffffffffffffffff00000000000000000000000000000000000000000000000016602084015260e091821b7fffffffff000000000000000000000000000000000000000000000000000000009081166028850152602c8401919091529085901b16604c8201526050810183905260700160405160208183030381529060405280519060200120905095945050505050565b8152602001613a706040880188615d69565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093909452509293509150613abd9050856109ef6020890189615219565b90506001600160a01b03811663d80e9bd983613adc60608a018a615d69565b613aec60a08c0160808d016158fb565b6040518563ffffffff1660e01b8152600401613b0b9493929190615dce565b6040805180830381865afa158015613b27573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc9190615ec5565b6000613b6484613b5e6020880188615219565b856127f6565b613b7057506000612963565b6001600160a01b03841660009081526001602090815260408220908290613b9990890189615219565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff169050613bd78686836146dd565b613be5576000915050612963565b613bf0868683614778565b613bfe576000915050612963565b82613c0d576000915050612963565b50600195945050505050565b613c216145de565b6040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527f97f025840000000000000000000000000000000000000000000000000000000060048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015613c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc291906158de565b613cf8576040517f63aaf06600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615613d4b576040517f3a81d6fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038116600081815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af591016133ee565b613e1f6145de565b6001600160a01b038116613eb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611572565b613ebe81614652565b50565b6001600160a01b038516600090815260016020908152604080832063ffffffff88168452825280832086845290915281205467ffffffffffffffff90811690841681101561401c57600181015b8467ffffffffffffffff168167ffffffffffffffff1611613fb7576001600160a01b038816600090815260026020908152604080832063ffffffff8b1684528252808320898452825280832067ffffffffffffffff85168452909152902054613faf576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611572565b600101613f0e565b506001600160a01b038716600090815260016020908152604080832063ffffffff8a1684528252808320888452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff86161790555b82516020808501919091206001600160a01b038916600090815260028352604080822063ffffffff8b1683528452808220898352845280822067ffffffffffffffff8916835290935291909120549092508083146140b0576040517fe4bb0ca10000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401611572565b50506001600160a01b03909516600090815260026020908152604080832063ffffffff909716835295815285822094825293845284812067ffffffffffffffff909316815291909252918220919091555090565b336001600160a01b0382161480159061413757506001600160a01b038181166000908152600f6020526040902054163314155b15613ebe576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614176614cad565b6000806141ff8561418a6020870187615219565b6001600160a01b0391909116600090815260036020908152604080832063ffffffff94909416835292815282822081890135835290522080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008116600167ffffffffffffffff928316019182161790915590565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001876001600160a01b0316815260200186600001602081019061426c9190615219565b63ffffffff168152602001866020013581526020016142ba847f00000000000000000000000000000000000000000000000000000000000000008a8a60000160208101906139b09190615219565b81526020016142cc6040880188615d69565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506143199050876109ef6020890189615219565b90506000806001600160a01b038316634389e58f8561433b60608c018c615d69565b61434b60a08e0160808f016158fb565b6040518563ffffffff1660e01b815260040161436a9493929190615dce565b6000604051808303816000875af1158015614389573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526143cf9190810190615ee1565b90925090507f1ab700d4ced0c005b164c0f789fd09fcbb0156d4c2041b8a3bfbcd961cd1567f8161440360608b018b615d69565b866040516144149493929190615f30565b60405180910390a1506040805160608101825260a090940151845267ffffffffffffffff909416602084015292820192909252925090509250929050565b6000811561451b57600e546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156144bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144df9190615f71565b90508060000361451b576040517fe801604300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b82518210806145325750808360200151115b15612d9057825160208401516040517fe273c847000000000000000000000000000000000000000000000000000000008152600481019290925260248201849052604482015260648101829052608401611572565b8315614598576145988583866148b8565b828410156145ad576145ad85828686036148b8565b5050505050565b83156145c4576145c4828561490c565b828410156145d8576145d88185850361490c565b50505050565b6000546001600160a01b031633146121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611572565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166146d257612d90828261490c565b612d908383836148b8565b6000808267ffffffffffffffff16118061296357506040517fff7bd03d0000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063ff7bd03d90614737908790600401615f8a565b602060405180830381865afa158015614754573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296391906158de565b600067ffffffffffffffff8216614795606086016040870161577c565b67ffffffffffffffff16118061296357506001600160a01b038316600090815260026020908152604082209082906147cf90880188615219565b63ffffffff1663ffffffff1681526020019081526020016000206000866020013581526020019081526020016000206000866040016020810190614813919061577c565b67ffffffffffffffff1681526020810191909152604001600020541415949350505050565b8061486f576040517fa84ab60d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03909416600090815260026020908152604080832063ffffffff909616835294815284822093825292835283812067ffffffffffffffff909216815291522055565b6001600160a01b0382166148f8576040517f32fa6a1d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d906001600160a01b03841683836149eb565b6001600160a01b03821661494c576040517f32fa6a1d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614999576040519150601f19603f3d011682016040523d82523d6000602084013e61499e565b606091505b5050905080612d90576040517f2c024f920000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401611572565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152612d9092869291600091614aa9918516908490614b56565b9050805160001480614aca575080806020019051810190614aca91906158de565b612d90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611572565b6060612963848460008585600080866001600160a01b03168587604051614b7d9190615f98565b60006040518083038185875af1925050503d8060008114614bba576040519150601f19603f3d011682016040523d82523d6000602084013e614bbf565b606091505b5091509150614bd087838387614bdb565b979650505050505050565b60608315614c64578251600003614c5d576001600160a01b0385163b614c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611572565b5081612963565b6129638383815115614c795781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115729190615029565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001614cf0604051806040016040528060008152602001600081525090565b905290565b600060608284031215614d0757600080fd5b50919050565b80356001600160a01b038116811461451b57600080fd5b60008083601f840112614d3657600080fd5b50813567ffffffffffffffff811115614d4e57600080fd5b60208301915083602082850101111561174d57600080fd5b600080600080600080600060e0888a031215614d8157600080fd5b614d8b8989614cf5565b9650614d9960608901614d0d565b95506080880135945060a088013567ffffffffffffffff80821115614dbd57600080fd5b614dc98b838c01614d24565b909650945060c08a0135915080821115614de257600080fd5b50614def8a828b01614d24565b989b979a50959850939692959293505050565b803563ffffffff8116811461451b57600080fd5b60008060008060808587031215614e2c57600080fd5b614e3585614d0d565b9350614e4360208601614e02565b9250614e5160408601614d0d565b9396929550929360600135925050565b60008060408385031215614e7457600080fd5b823567ffffffffffffffff811115614e8b57600080fd5b830160a08186031215614e9d57600080fd5b9150614eab60208401614d0d565b90509250929050565b60006080820190508251825267ffffffffffffffff60208401511660208301526040830151614ef0604084018280518252602090810151910152565b5092915050565b600080600080600060c08688031215614f0f57600080fd5b614f1886614d0d565b9450614f278760208801614cf5565b93506080860135925060a086013567ffffffffffffffff811115614f4a57600080fd5b614f5688828901614d24565b969995985093965092949392505050565b60008060008060808587031215614f7d57600080fd5b614f8685614d0d565b9350614f9460208601614d0d565b9250614fa260408601614e02565b9150614fb060608601614e02565b905092959194509250565b60005b83811015614fd6578181015183820152602001614fbe565b50506000910152565b60008151808452614ff7816020860160208601614fbb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006128cb6020830184614fdf565b803567ffffffffffffffff8116811461451b57600080fd5b600080600080600060a0868803121561506c57600080fd5b61507586614d0d565b945061508360208701614e02565b9350604086013592506150986060870161503c565b949793965091946080013592915050565b803561ffff8116811461451b57600080fd5b600080600080608085870312156150d157600080fd5b6150da85614d0d565b93506150e860208601614d0d565b925060408501359150614fb0606086016150a9565b6000806040838503121561511057600080fd5b61511983614d0d565b9150614eab60208401614e02565b6000806080838503121561513a57600080fd5b6151448484614cf5565b9150614eab60608401614d0d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600383106151bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b6000602082840312156151d457600080fd5b6128cb82614d0d565b6000806000606084860312156151f257600080fd5b6151fb84614d0d565b925061520960208501614e02565b9150604084013590509250925092565b60006020828403121561522b57600080fd5b6128cb82614e02565b6000806000806000806000806000806000806101208d8f03121561525757600080fd5b6152608d614d0d565b9b5061526e60208e01614d0d565b9a5060408d0135995061528360608e016150a9565b985060808d0135975060a08d0135965067ffffffffffffffff60c08e013511156152ac57600080fd5b6152bc8e60c08f01358f01614d24565b909650945067ffffffffffffffff60e08e013511156152da57600080fd5b6152ea8e60e08f01358f01614d24565b909450925067ffffffffffffffff6101008e0135111561530957600080fd5b61531a8e6101008f01358f01614d24565b81935080925050509295989b509295989b509295989b565b60008060008060008060008060008060006101408c8e03121561535457600080fd5b61535e8d8d614cf5565b9a5061536c60608d01614d0d565b995060808c0135985060a08c0135975060c08c0135965067ffffffffffffffff8060e08e0135111561539d57600080fd5b6153ad8e60e08f01358f01614d24565b90975095506101008d01358110156153c457600080fd5b6153d58e6101008f01358f01614d24565b90955093506101208d01358110156153ec57600080fd5b506153fe8d6101208e01358e01614d24565b81935080925050509295989b509295989b9093969950565b6000806000806060858703121561542c57600080fd5b61543585614d0d565b935061544360208601614d0d565b9250604085013567ffffffffffffffff8082111561546057600080fd5b818701915087601f83011261547457600080fd5b81358181111561548357600080fd5b8860208260051b850101111561549857600080fd5b95989497505060200194505050565b6000806000806000608086880312156154bf57600080fd5b6154c886614d0d565b9450602086013593506154dd604087016150a9565b9250606086013567ffffffffffffffff811115614f4a57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561553a5783516001600160a01b031683529284019291840191600101615515565b50909695505050505050565b60008060008060008060008060c0898b03121561556257600080fd5b61556b89614d0d565b975061557960208a01614d0d565b96506040890135955061558e60608a016150a9565b9450608089013567ffffffffffffffff808211156155ab57600080fd5b6155b78c838d01614d24565b909650945060a08b01359150808211156155d057600080fd5b506155dd8b828c01614d24565b999c989b5096995094979396929594505050565b60008060006060848603121561560657600080fd5b61560f84614d0d565b925061561d60208501614e02565b915061562b60408501614d0d565b90509250925092565b60008060006060848603121561564957600080fd5b61565284614e02565b925061520960208501614d0d565b60008060006060848603121561567557600080fd5b61565284614d0d565b600080600060a0848603121561569357600080fd5b61569d8585614cf5565b92506156ab60608501614d0d565b9150608084013590509250925092565b600080604083850312156156ce57600080fd5b614e9d83614e02565b600080600080608085870312156156ed57600080fd5b6156f685614d0d565b935061570460208601614e02565b925060408501359150614fb06060860161503c565b815181526020808301519082015260408101611aa2565b60008060008060c0858703121561574657600080fd5b6157508686614cf5565b935061575e60608601614d0d565b925061576c60808601614d0d565b9396929550929360a00135925050565b60006020828403121561578e57600080fd5b6128cb8261503c565b838152818360208301376000910160200190815292915050565b63ffffffff6157bf82614e02565b1682526020810135602083015267ffffffffffffffff6157e16040830161503c565b1660408301525050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b61583e81896157b1565b86606082015260e06080820152600061585b60e0830187896157eb565b6001600160a01b03861660a084015282810360c084015261587d8185876157eb565b9a9950505050505050505050565b6080810161589982856157b1565b6001600160a01b03831660608301529392505050565b6000602082840312156158c157600080fd5b8151600381106128cb57600080fd5b8015158114613ebe57600080fd5b6000602082840312156158f057600080fd5b81516128cb816158d0565b60006020828403121561590d57600080fd5b81356128cb816158d0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261595857600080fd5b815167ffffffffffffffff8082111561597357615973615918565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156159b9576159b9615918565b816040528381528660208588010111156159d257600080fd5b6114dc846020830160208901614fbb565b6000602082840312156159f557600080fd5b815167ffffffffffffffff811115615a0c57600080fd5b61296384828501615947565b8a815261ffff8a16602082015288604082015287606082015260e060808201526000615a4860e08301888a6157eb565b82810360a0840152615a5b8187896157eb565b905082810360c0840152615a708185876157eb565b9d9c50505050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115611aa257611aa2615a81565b6000610120615ad2838e6157b1565b8b60608401528a60808401528960a08401528060c0840152615af7818401898b6157eb565b905082810360e0840152615b0c8187896157eb565b9050828103610100840152615a708185876157eb565b600060408083016001600160a01b03871684526020604081860152818683526060925060608601905060608760051b8701018860005b89811015615c63577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa089840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18c3603018112615bb957600080fd5b8b0163ffffffff80615bca83614e02565b16855280615bd9888401614e02565b168786015250878101357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1823603018112615c1357600080fd5b01858101903567ffffffffffffffff811115615c2e57600080fd5b803603821315615c3d57600080fd5b8789860152615c4f88860182846157eb565b958701959450505090840190600101615b58565b50909a9950505050505050505050565b8183823760009101908152919050565b60006001600160a01b03808916835280881660208401525085604083015261ffff8516606083015260a06080830152615cc060a0830184866157eb565b98975050505050505050565b60006001600160a01b03808a16835288602084015260a06040840152615cf660a08401888a6157eb565b81871660608501528381036080850152615d118186886157eb565b9b9a5050505050505050505050565b60a08101615d2e82866157b1565b6001600160a01b0393909316606082015260800152919050565b67ffffffffffffffff818116838216019080821115614ef057614ef0615a81565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615d9e57600080fd5b83018035915067ffffffffffffffff821115615db957600080fd5b60200191503681900382131561174d57600080fd5b6060815267ffffffffffffffff855116606082015263ffffffff60208601511660808201526001600160a01b0360408601511660a082015260006060860151615e1f60c084018263ffffffff169052565b50608086015160e083015260a086015161010083015260c086015160e0610120840152615e50610140840182614fdf565b90508281036020840152615e658186886157eb565b915050613033604083018415159052565b600060408284031215615e8857600080fd5b6040516040810181811067ffffffffffffffff82111715615eab57615eab615918565b604052825181526020928301519281019290925250919050565b600060408284031215615ed757600080fd5b6128cb8383615e76565b60008060608385031215615ef457600080fd5b615efe8484615e76565b9150604083015167ffffffffffffffff811115615f1a57600080fd5b615f2685828601615947565b9150509250929050565b606081526000615f436060830187614fdf565b8281036020840152615f568186886157eb565b9150506001600160a01b038316604083015295945050505050565b600060208284031215615f8357600080fd5b5051919050565b60608101611aa282846157b1565b60008251615faa818460208701614fbb565b919091019291505056fea2646970667358221220519053a761b3f9b52129911b13e4920eb9411f49eaeca2cf9c8912455312fc3964736f6c63430008160033608060405234801561001057600080fd5b5061026f806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517fd623472500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea2646970667358221220a6ad9f312e44936ecdde655ebda4210a494542118313e126828fec0807900cf264736f6c63430008160033",
|
|
2361
|
+
"deployedBytecode": "0x6080604052600436106103605760003560e01c80639132e5c3116101c6578063ca5eb5e1116100f7578063e1758bd811610095578063e8964e811161006f578063e8964e8114610c0f578063ef667aa114610c2f578063f2fde38b14610c7a578063f64be4c714610c9a57600080fd5b8063e1758bd814610bbb578063e1e3a7df14610bcf578063e4fe1d9414610bef57600080fd5b8063d70b8902116100d1578063d70b890214610af2578063dc706a6214610b12578063dc93c8a214610b42578063ddc28c5814610b8e57600080fd5b8063ca5eb5e114610a5b578063cb5026b914610abd578063d4b4ec8f14610ad257600080fd5b8063a7229fd911610164578063aafea3121161013e578063aafea312146109b4578063b96a277f146109d4578063c28e0eed146109f4578063c9fc7bcd14610a1457600080fd5b8063a7229fd914610954578063a825d74714610974578063aafe5e071461099457600080fd5b80639c6d7340116101a05780639c6d7340146108ac5780639d7f9775146108f4578063a0dd43fc14610914578063a718531b1461093457600080fd5b80639132e5c31461085757806391d20fa1146108795780639535ff301461088c57600080fd5b8063587cde1e116102a05780636e83f5bb1161023e578063733180911161021857806373318091146107cc57806379624ca9146108005780637cb59012146108195780638da5cb5b1461083957600080fd5b80636e83f5bb146107225780636f50a80314610781578063715018a6146107b757600080fd5b8063697fe6b61161027a578063697fe6b6146106a25780636a14d715146106c25780636bf73fa3146106e25780636dbd9f901461070257600080fd5b8063587cde1e146105c35780635b17bb70146106115780636750cd4c1461067257600080fd5b80632baf0be71161030d578063402f8468116102e7578063402f8468146104ee57806340f806831461052d578063416ecebf1461054d5780634b4b2efb1461059657600080fd5b80632baf0be7146104455780632e80fbf31461048757806335d330b0146104a757600080fd5b80632637a4501161033e5780632637a450146103d85780632a56c1b0146103f85780632b3197b91461041857600080fd5b80630c0c389e1461036557806314f651a91461037a578063183c834f146103b8575b600080fd5b610378610373366004614d66565b610cd0565b005b34801561038657600080fd5b5061038f610de7565b6040805163ffffffff90931683526001600160a01b039091166020830152015b60405180910390f35b3480156103c457600080fd5b506103786103d3366004614e16565b610e19565b6103eb6103e6366004614e61565b6111a4565b6040516103af9190614eb4565b34801561040457600080fd5b50610378610413366004614ef7565b61130d565b34801561042457600080fd5b50610438610433366004614f67565b6113cb565b6040516103af9190615029565b34801561045157600080fd5b506104797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020016103af565b34801561049357600080fd5b506103786104a2366004615054565b6114e6565b3480156104b357600080fd5b506104796104c23660046150bb565b600c60209081526000948552604080862082529385528385208152918452828420909152825290205481565b3480156104fa57600080fd5b5061050e6105093660046150fd565b6116bd565b604080516001600160a01b0390931683529015156020830152016103af565b34801561053957600080fd5b50610378610548366004615054565b611754565b34801561055957600080fd5b506105817f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016103af565b3480156105a257600080fd5b506105b66105b1366004615127565b611904565b6040516103af9190615181565b3480156105cf57600080fd5b506105f96105de3660046151c2565b600f602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b34801561061d57600080fd5b5061065961062c3660046151dd565b600160209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103af565b34801561067e57600080fd5b5061069261068d366004615219565b611aa8565b60405190151581526020016103af565b3480156106ae57600080fd5b506103786106bd366004615234565b611af4565b3480156106ce57600080fd5b506103786106dd366004614e16565b611b69565b3480156106ee57600080fd5b506103786106fd366004615332565b612073565b34801561070e57600080fd5b5061037861071d366004615416565b6120dd565b34801561072e57600080fd5b5061076261073d366004615219565b600b60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103af565b34801561078d57600080fd5b506105f961079c366004615219565b600a602052600090815260409020546001600160a01b031681565b3480156107c357600080fd5b506103786121b1565b3480156107d857600080fd5b506105f97f000000000000000000000000000000000000000000000000000000000000000081565b34801561080c57600080fd5b50600d5460011415610692565b34801561082557600080fd5b506103786108343660046154a7565b6121c5565b34801561084557600080fd5b506000546001600160a01b03166105f9565b34801561086357600080fd5b5061086c6122ca565b6040516103af91906154f9565b610378610887366004615546565b61232c565b34801561089857600080fd5b506103786108a73660046155f1565b6124ee565b3480156108b857600080fd5b506106596108c73660046151dd565b600360209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b34801561090057600080fd5b5061069261090f3660046155f1565b6127f6565b34801561092057600080fd5b5061065961092f3660046151dd565b6128d2565b34801561094057600080fd5b5061037861094f366004615634565b61296b565b34801561096057600080fd5b5061037861096f366004615660565b612d7d565b34801561098057600080fd5b5061037861098f36600461567e565b612d95565b3480156109a057600080fd5b506104796109af3660046151dd565b612f2d565b3480156109c057600080fd5b506103786109cf3660046156bb565b61303c565b3480156109e057600080fd5b506105f96109ef3660046150fd565b6132fc565b348015610a0057600080fd5b50610378610a0f3660046151c2565b613384565b348015610a2057600080fd5b50610479610a2f3660046156d7565b600260209081526000948552604080862082529385528385208152918452828420909152825290205481565b348015610a6757600080fd5b50610378610a763660046151c2565b336000908152600f6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b348015610ac957600080fd5b50610479600081565b348015610ade57600080fd5b50610378610aed366004615634565b6133f9565b348015610afe57600080fd5b50610378610b0d3660046156d7565b6136fd565b348015610b1e57600080fd5b50610692610b2d3660046151c2565b60056020526000908152604090205460ff1681565b348015610b4e57600080fd5b50610692610b5d3660046150fd565b6001600160a01b03918216600090815260066020908152604080832063ffffffff9490941683529290522054161590565b348015610b9a57600080fd5b50610bae610ba9366004614e61565b613820565b6040516103af9190615719565b348015610bc757600080fd5b5060006105f9565b348015610bdb57600080fd5b50610692610bea366004615730565b613b4b565b348015610bfb57600080fd5b50600e546105f9906001600160a01b031681565b348015610c1b57600080fd5b50610378610c2a3660046151c2565b613c19565b348015610c3b57600080fd5b50610762610c4a3660046150fd565b6008602090815260009283526040808420909152908252902080546001909101546001600160a01b039091169082565b348015610c8657600080fd5b50610378610c953660046151c2565b613e17565b348015610ca657600080fd5b506105f9610cb5366004615219565b6009602052600090815260409020546001600160a01b031681565b610d1f86610ce160208a018a615219565b60208a0135610cf660608c0160408d0161577c565b898989604051602001610d0b93929190615797565b604051602081830303815290604052613ec1565b506040517f13137d650000000000000000000000000000000000000000000000000000000081526001600160a01b038716906313137d65903490610d73908b908a908a908a9033908b908b90600401615834565b6000604051808303818588803b158015610d8c57600080fd5b505af1158015610da0573d6000803e3d6000fd5b50505050507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca048787604051610dd692919061588b565b60405180910390a150505050505050565b600080610df7600d546001141590565b610e0357600080610e11565b610e11600d5460a081901c91565b915091509091565b6001600160a01b038216600090815260056020526040902054829060ff16610e6d576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615610f29576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ebd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee191906158af565b6002811115610ef257610ef2615152565b03610f29576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615610ff7576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc191906158de565b610ff7576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61100088614104565b600061100c89896116bd565b9150508015611047576040517f78142dd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b856000036110a7576001600160a01b038916600090815260086020908152604080832063ffffffff8c168452909152812080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001015561113e565b4386116110e0576040517fd36c850000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600090815260086020908152604080832063ffffffff8d168452909152902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169189169190911781556001018690555b604080516001600160a01b03808c16825263ffffffff8b166020830152891691810191909152606081018790527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb20928906080015b60405180910390a1505050505050505050565b6111ac614cad565b6111b96020840184615219565b336001600d54146111f6576040517f9633fed300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b77ffffffff000000000000000000000000000000000000000060a083811b919091166001600160a01b03831617600d55611235908601608087016158fb565b801561124a5750600e546001600160a01b0316155b15611281576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061128e338861416e565b91509150600061129b3490565b905060006112b76112b260a08b0160808c016158fb565b614452565b90506112c884604001518383614520565b600e546040850151602001516112ea916001600160a01b03169083868c614587565b6040840151516112fc9083858b6145b4565b50506001600d555095945050505050565b61131685614104565b600083838360405160200161132d93929190615797565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905290506113898661136e6020880188615219565b602088013561138360608a0160408b0161577c565b85613ec1565b507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca0485876040516113bb92919061588b565b60405180910390a1505050505050565b6001600160a01b038316600090815260056020526040902054606090849060ff16611422576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f9c33abf700000000000000000000000000000000000000000000000000000000815263ffffffff80861660048301526001600160a01b0388811660248401529085166044830152861690639c33abf790606401600060405180830381865afa158015611496573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526114dc91908101906159e3565b9695505050505050565b6114ef85614104565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff8616845290915290205481811461157b576040517fe4bb0ca100000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044015b60405180910390fd5b6001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416118015906115c8575080155b1561160b576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611572565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff8916808652908452938290207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905581519081529182018890528101929092526060820152608081018390527faf0450c392c4f702515a457a362328c8aa21916048ca6d0419e248b30cb552929060a0016113bb565b6001600160a01b03808316600090815260076020908152604080832063ffffffff86168452909152812054909116908161174d5763ffffffff83166000908152600a60205260409020546001600160a01b0316915081611749576040517ffbc6a95a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060015b9250929050565b61175d85614104565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff861684529091529020548181146117e4576040517fe4bb0ca10000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401611572565b80158061182f57506001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416115b15611872576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611572565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff89168086529084528285209490945581519081529182018890528101929092526060820152608081018390527f7f68a37a6e69a0de35024a234558f9efe4b33b58657753d21eaaa82d51c3510e9060a0016113bb565b6001600160a01b038116600090815260026020908152604082208291829061192e90870187615219565b63ffffffff1663ffffffff1681526020019081526020016000206000856020013581526020019081526020016000206000856040016020810190611972919061577c565b67ffffffffffffffff168152602081019190915260400160002054905080158015611a1157506001600160a01b0383166000908152600160209081526040822091906119c090870187615219565b63ffffffff16815260208082019290925260409081016000908120878401358252909252908190205467ffffffffffffffff1690611a04906060870190870161577c565b67ffffffffffffffff1611155b15611a20576002915050611aa2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114801590611a8d5750611a6683611a5c6020870187615219565b86602001356128d2565b67ffffffffffffffff16611a80606086016040870161577c565b67ffffffffffffffff1611155b15611a9c576001915050611aa2565b60009150505b92915050565b63ffffffff81166000908152600960205260408120546001600160a01b031615801590611aa257505063ffffffff166000908152600a60205260409020546001600160a01b0316151590565b336001600160a01b03168b6001600160a01b03168d6001600160a01b03167f8a0b1dce321c5c5fb42349bce46d18087c04140de520917661fb923e44a904b98d8d8d8d8d8d8d8d8d8d604051611b539a99989796959493929190615a18565b60405180910390a4505050505050505050505050565b6001600160a01b038216600090815260056020526040902054829060ff16158015611b9c57506001600160a01b03811615155b15611bd3576040517f4fb58e1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615611c8f576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4791906158af565b6002811115611c5857611c58615152565b03611c8f576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615611d5d576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015611d03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2791906158de565b611d5d576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d6688614104565b6001600160a01b03808916600090815260076020908152604080832063ffffffff8c16845290915290205481169087168103611dce576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600081815260076020908152604080832063ffffffff8e168085529083529281902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168d87169081179091558151948552918401929092529284169082015260608101919091527fc0833c35bb1d0beadca36bed54c7098819e109542a6d233d33c7c2039c8ec9aa9060800160405180910390a18515611fc8576001600160a01b0381161580611e9357506001600160a01b038716155b15611eca576040517f78142dd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280836001600160a01b031681526020018843611ef29190615ab0565b90526001600160a01b03808c16600090815260086020908152604080832063ffffffff8f1684528252918290208451815494167fffffffffffffffffffffffff00000000000000000000000000000000000000009094169390931783558301516001909201829055519192507f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092891611fba918d918d9187916001600160a01b03948516815263ffffffff93909316602084015292166040820152606081019190915260800190565b60405180910390a150612068565b6001600160a01b03898116600081815260086020908152604080832063ffffffff8e1680855290835281842080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001018490558151948552918401919091529284169282019290925260608101919091527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092890608001611191565b505050505050505050565b336001600160a01b03168a6001600160a01b03167f7edfa10fe10193301ad8a8bea7e968c7bcabcc64981f368e3aeada40ce26ae2c8d8c8c8c8c8c8c8c8c8c6040516120c89a99989796959493929190615ac3565b60405180910390a35050505050505050505050565b6001600160a01b038316600090815260056020526040902054839060ff16612131576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213a85614104565b6040517f20efd7220000000000000000000000000000000000000000000000000000000081526001600160a01b038516906320efd7229061218390889087908790600401615b22565b600060405180830381600087803b15801561219d57600080fd5b505af1158015612068573d6000803e3d6000fd5b6121b96145de565b6121c36000614652565b565b336000908152600c602090815260408083206001600160a01b03891684528252808320878452825280832061ffff8716845290915290205415612234576040517f895fdbee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181604051612244929190615c73565b60408051918290038220336000818152600c60209081528482206001600160a01b038c16835281528482208a8352815284822061ffff8a168352905292909220557f3d52ff888d033fd3dd1d8057da59e850c91d91a72c41dfa445b247dfedeb6dc1916122bb919088908890889088908890615c83565b60405180910390a15050505050565b6060600480548060200260200160405190810160405280929190818152602001828054801561232257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612304575b5050505050905090565b6001600160a01b038089166000908152600c60209081526040808320938b168352928152828220898352815282822061ffff8916835290528181205491516123779087908790615c73565b604051809103902090508082146123c4576040517f9e3e05830000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401611572565b6001600160a01b03808b166000908152600c60209081526040808320938d168084529382528083208c8452825280832061ffff8c1684529091529081902060019055517fd0a1026000000000000000000000000000000000000000000000000000000000815263d0a1026090349061244c908e908d908c908c9033908d908d90600401615ccc565b6000604051808303818588803b15801561246557600080fd5b505af1158015612479573d6000803e3d6000fd5b50505050507e36c98efcf9e6641dfbc9051f66f405253e8e0c2ab4a24dccda15595b7378c88a8a8a8a6040516124da94939291906001600160a01b039485168152929093166020830152604082015261ffff91909116606082015260800190565b60405180910390a150505050505050505050565b6001600160a01b038116600090815260056020526040902054819060ff1615801561252157506001600160a01b03811615155b15612558576040517f4fb58e1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612614576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906158af565b60028111156125dd576125dd615152565b03612614576040517f3885d60300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b038216156126e2576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015612688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ac91906158de565b6126e2576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126eb87614104565b6001600160a01b03808816600090815260066020908152604080832063ffffffff8b16845290915290205481169086168103612753576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03888116600081815260066020908152604080832063ffffffff8d168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958c1695861790558051938452908301919091528101919091527f4cff966ebee29a156dcb34cf72c1d06231fb1777f6bdf6e8089819232f002b1c906060015b60405180910390a15050505050505050565b600080600061280586866116bd565b91509150816001600160a01b0316846001600160a01b03160361282d576001925050506128cb565b600081612862576001600160a01b038716600090815260086020908152604080832063ffffffff8a1684529091529020612878565b63ffffffff86166000908152600b602052604090205b6040805180820190915281546001600160a01b03908116808352600190930154602083015290925086161480156128b25750438160200151115b156128c357600193505050506128cb565b600093505050505b9392505050565b6001600160a01b038316600090815260016020908152604080832063ffffffff86168452825280832084845290915281205467ffffffffffffffff165b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff60018601168452909152902054156129635760010161290f565b949350505050565b6129736145de565b6001600160a01b038216600090815260056020526040902054829060ff166129c7576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615612a83576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3b91906158af565b6002811115612a4c57612a4c615152565b03612a83576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615612b51576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015612af7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b1b91906158de565b612b51576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600a60205260409020546001600160a01b039081169087168103612bad576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff88166000818152600a602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c8116918217909255835194855290851691840191909152908201527f9914edfad6b7eac2e388f49bae232bd0e1954fbe92f5ed1ab975fc270f27cea59060600160405180910390a18515612cec5763ffffffff88166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316178155612c918743615ab0565b600182018190556040805163ffffffff8c1681526001600160a01b038516602082015280820192909252517f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89181900360600190a150612d73565b63ffffffff88166000818152600b6020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016815560010183905580519384526001600160a01b038516918401919091528201527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f8906060016127e4565b5050505050505050565b612d856145de565b612d908383836146ba565b505050565b612dac82612da66020860186615219565b336127f6565b612de2576040517f82ceb50e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03821660009081526001602090815260408220908290612e0b90870187615219565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205467ffffffffffffffff169050612e498484836146dd565b612e7f576040517f098c20b500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e8a848483614778565b612ec0576040517f2923b32a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eec83612ed16020870187615219565b6020870135612ee66060890160408a0161577c565b86614838565b7f0d87345f3d1c929caba93e1c3821b54ff3512e12b66aa3cfe54b6bcbc17e59b4848484604051612f1f93929190615d20565b60405180910390a150505050565b6001600160a01b038316600090815260036020908152604080832063ffffffff8616845282528083208484529091528120548190612f769067ffffffffffffffff166001615d48565b604080517fffffffffffffffff00000000000000000000000000000000000000000000000060c084901b166020808301919091527fffffffff000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060e090811b821660288501526001600160a01b038b16602c85015289901b16604c830152605080830188905283518084039091018152607090920190925280519101209091505b95945050505050565b6130446145de565b6001600160a01b038116600090815260056020526040902054819060ff16613098576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615613154576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310c91906158af565b600281111561311d5761311d615152565b03613154576040517f3885d60300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b03821615613222576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156131c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131ec91906158de565b613222576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff86166000908152600960205260409020546001600160a01b03908116908616810361327e576040517fc23f6ccb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff871660008181526009602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038b169081179091558251938452908301527f16aa0f528038ab41019e95bae5b418a50ba8532c5800e3b7ea2f517d3fa625f59101610dd6565b6001600160a01b03808316600090815260066020908152604080832063ffffffff861684529091529020541680611aa2575063ffffffff81166000908152600960205260409020546001600160a01b031680611aa2576040517fb6f3253d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61338c6145de565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fd476ec5ec1ac11cec3714d41e7ea49419471aceb9bd0dff1becfc3e363a62396906020015b60405180910390a150565b6001600160a01b038216600090815260056020526040902054829060ff1661344d576040517f8cd5e2c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615613509576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561349d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134c191906158af565b60028111156134d2576134d2615152565b03613509576040517f7865362200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b038216156135d7576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa15801561357d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135a191906158de565b6135d7576040517f9153304b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135df6145de565b8460000361362b5763ffffffff87166000908152600b6020526040812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556136b1565b438511613664576040517fd36c850000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388161781556001018590555b6040805163ffffffff891681526001600160a01b03881660208201529081018690527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f890606001610dd6565b61370684614104565b6137118484846128d2565b61371c906001615d48565b67ffffffffffffffff168167ffffffffffffffff1614613774576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611572565b6001600160a01b038416600081815260016020908152604080832063ffffffff881680855290835281842087855283529281902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8716908117909155815193845291830186905282019290925260608101919091527f28f40053783033ef755556a0c3315379141f51a33aed8334174ffbadd90bde4890608001612f1f565b604080518082019091526000808252602082015261384460a08401608085016158fb565b80156138595750600e546001600160a01b0316155b15613890576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600090815260036020908152604082209082906138b990870187615219565b63ffffffff168152602080820192909252604090810160009081208784013582529092529020546138f59067ffffffffffffffff166001615d48565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001856001600160a01b031681526020018660000160208101906139629190615219565b63ffffffff16815260200186602001358152602001613a5e847f0000000000000000000000000000000000000000000000000000000000000000888a60000160208101906139b09190615219565b8b60200135600085856001600160a01b03861660405160c09390931b7fffffffffffffffff00000000000000000000000000000000000000000000000016602084015260e091821b7fffffffff000000000000000000000000000000000000000000000000000000009081166028850152602c8401919091529085901b16604c8201526050810183905260700160405160208183030381529060405280519060200120905095945050505050565b8152602001613a706040880188615d69565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093909452509293509150613abd9050856109ef6020890189615219565b90506001600160a01b03811663d80e9bd983613adc60608a018a615d69565b613aec60a08c0160808d016158fb565b6040518563ffffffff1660e01b8152600401613b0b9493929190615dce565b6040805180830381865afa158015613b27573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114dc9190615ec5565b6000613b6484613b5e6020880188615219565b856127f6565b613b7057506000612963565b6001600160a01b03841660009081526001602090815260408220908290613b9990890189615219565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff169050613bd78686836146dd565b613be5576000915050612963565b613bf0868683614778565b613bfe576000915050612963565b82613c0d576000915050612963565b50600195945050505050565b613c216145de565b6040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527f97f025840000000000000000000000000000000000000000000000000000000060048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015613c9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc291906158de565b613cf8576040517f63aaf06600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615613d4b576040517f3a81d6fc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038116600081815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af591016133ee565b613e1f6145de565b6001600160a01b038116613eb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611572565b613ebe81614652565b50565b6001600160a01b038516600090815260016020908152604080832063ffffffff88168452825280832086845290915281205467ffffffffffffffff90811690841681101561401c57600181015b8467ffffffffffffffff168167ffffffffffffffff1611613fb7576001600160a01b038816600090815260026020908152604080832063ffffffff8b1684528252808320898452825280832067ffffffffffffffff85168452909152902054613faf576040517f5c33785a00000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611572565b600101613f0e565b506001600160a01b038716600090815260016020908152604080832063ffffffff8a1684528252808320888452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff86161790555b82516020808501919091206001600160a01b038916600090815260028352604080822063ffffffff8b1683528452808220898352845280822067ffffffffffffffff8916835290935291909120549092508083146140b0576040517fe4bb0ca10000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401611572565b50506001600160a01b03909516600090815260026020908152604080832063ffffffff909716835295815285822094825293845284812067ffffffffffffffff909316815291909252918220919091555090565b336001600160a01b0382161480159061413757506001600160a01b038181166000908152600f6020526040902054163314155b15613ebe576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b614176614cad565b6000806141ff8561418a6020870187615219565b6001600160a01b0391909116600090815260036020908152604080832063ffffffff94909416835292815282822081890135835290522080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008116600167ffffffffffffffff928316019182161790915590565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001876001600160a01b0316815260200186600001602081019061426c9190615219565b63ffffffff168152602001866020013581526020016142ba847f00000000000000000000000000000000000000000000000000000000000000008a8a60000160208101906139b09190615219565b81526020016142cc6040880188615d69565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506143199050876109ef6020890189615219565b90506000806001600160a01b038316634389e58f8561433b60608c018c615d69565b61434b60a08e0160808f016158fb565b6040518563ffffffff1660e01b815260040161436a9493929190615dce565b6000604051808303816000875af1158015614389573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526143cf9190810190615ee1565b90925090507f1ab700d4ced0c005b164c0f789fd09fcbb0156d4c2041b8a3bfbcd961cd1567f8161440360608b018b615d69565b866040516144149493929190615f30565b60405180910390a1506040805160608101825260a090940151845267ffffffffffffffff909416602084015292820192909252925090509250929050565b6000811561451b57600e546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156144bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144df9190615f71565b90508060000361451b576040517fe801604300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b82518210806145325750808360200151115b15612d9057825160208401516040517fe273c847000000000000000000000000000000000000000000000000000000008152600481019290925260248201849052604482015260648101829052608401611572565b8315614598576145988583866148b8565b828410156145ad576145ad85828686036148b8565b5050505050565b83156145c4576145c4828561490c565b828410156145d8576145d88185850361490c565b50505050565b6000546001600160a01b031633146121c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611572565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166146d257612d90828261490c565b612d908383836148b8565b6000808267ffffffffffffffff16118061296357506040517fff7bd03d0000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063ff7bd03d90614737908790600401615f8a565b602060405180830381865afa158015614754573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296391906158de565b600067ffffffffffffffff8216614795606086016040870161577c565b67ffffffffffffffff16118061296357506001600160a01b038316600090815260026020908152604082209082906147cf90880188615219565b63ffffffff1663ffffffff1681526020019081526020016000206000866020013581526020019081526020016000206000866040016020810190614813919061577c565b67ffffffffffffffff1681526020810191909152604001600020541415949350505050565b8061486f576040517fa84ab60d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03909416600090815260026020908152604080832063ffffffff909616835294815284822093825292835283812067ffffffffffffffff909216815291522055565b6001600160a01b0382166148f8576040517f32fa6a1d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d906001600160a01b03841683836149eb565b6001600160a01b03821661494c576040517f32fa6a1d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614999576040519150601f19603f3d011682016040523d82523d6000602084013e61499e565b606091505b5050905080612d90576040517f2c024f920000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401611572565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152612d9092869291600091614aa9918516908490614b56565b9050805160001480614aca575080806020019051810190614aca91906158de565b612d90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611572565b6060612963848460008585600080866001600160a01b03168587604051614b7d9190615f98565b60006040518083038185875af1925050503d8060008114614bba576040519150601f19603f3d011682016040523d82523d6000602084013e614bbf565b606091505b5091509150614bd087838387614bdb565b979650505050505050565b60608315614c64578251600003614c5d576001600160a01b0385163b614c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611572565b5081612963565b6129638383815115614c795781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115729190615029565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001614cf0604051806040016040528060008152602001600081525090565b905290565b600060608284031215614d0757600080fd5b50919050565b80356001600160a01b038116811461451b57600080fd5b60008083601f840112614d3657600080fd5b50813567ffffffffffffffff811115614d4e57600080fd5b60208301915083602082850101111561174d57600080fd5b600080600080600080600060e0888a031215614d8157600080fd5b614d8b8989614cf5565b9650614d9960608901614d0d565b95506080880135945060a088013567ffffffffffffffff80821115614dbd57600080fd5b614dc98b838c01614d24565b909650945060c08a0135915080821115614de257600080fd5b50614def8a828b01614d24565b989b979a50959850939692959293505050565b803563ffffffff8116811461451b57600080fd5b60008060008060808587031215614e2c57600080fd5b614e3585614d0d565b9350614e4360208601614e02565b9250614e5160408601614d0d565b9396929550929360600135925050565b60008060408385031215614e7457600080fd5b823567ffffffffffffffff811115614e8b57600080fd5b830160a08186031215614e9d57600080fd5b9150614eab60208401614d0d565b90509250929050565b60006080820190508251825267ffffffffffffffff60208401511660208301526040830151614ef0604084018280518252602090810151910152565b5092915050565b600080600080600060c08688031215614f0f57600080fd5b614f1886614d0d565b9450614f278760208801614cf5565b93506080860135925060a086013567ffffffffffffffff811115614f4a57600080fd5b614f5688828901614d24565b969995985093965092949392505050565b60008060008060808587031215614f7d57600080fd5b614f8685614d0d565b9350614f9460208601614d0d565b9250614fa260408601614e02565b9150614fb060608601614e02565b905092959194509250565b60005b83811015614fd6578181015183820152602001614fbe565b50506000910152565b60008151808452614ff7816020860160208601614fbb565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006128cb6020830184614fdf565b803567ffffffffffffffff8116811461451b57600080fd5b600080600080600060a0868803121561506c57600080fd5b61507586614d0d565b945061508360208701614e02565b9350604086013592506150986060870161503c565b949793965091946080013592915050565b803561ffff8116811461451b57600080fd5b600080600080608085870312156150d157600080fd5b6150da85614d0d565b93506150e860208601614d0d565b925060408501359150614fb0606086016150a9565b6000806040838503121561511057600080fd5b61511983614d0d565b9150614eab60208401614e02565b6000806080838503121561513a57600080fd5b6151448484614cf5565b9150614eab60608401614d0d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60208101600383106151bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b6000602082840312156151d457600080fd5b6128cb82614d0d565b6000806000606084860312156151f257600080fd5b6151fb84614d0d565b925061520960208501614e02565b9150604084013590509250925092565b60006020828403121561522b57600080fd5b6128cb82614e02565b6000806000806000806000806000806000806101208d8f03121561525757600080fd5b6152608d614d0d565b9b5061526e60208e01614d0d565b9a5060408d0135995061528360608e016150a9565b985060808d0135975060a08d0135965067ffffffffffffffff60c08e013511156152ac57600080fd5b6152bc8e60c08f01358f01614d24565b909650945067ffffffffffffffff60e08e013511156152da57600080fd5b6152ea8e60e08f01358f01614d24565b909450925067ffffffffffffffff6101008e0135111561530957600080fd5b61531a8e6101008f01358f01614d24565b81935080925050509295989b509295989b509295989b565b60008060008060008060008060008060006101408c8e03121561535457600080fd5b61535e8d8d614cf5565b9a5061536c60608d01614d0d565b995060808c0135985060a08c0135975060c08c0135965067ffffffffffffffff8060e08e0135111561539d57600080fd5b6153ad8e60e08f01358f01614d24565b90975095506101008d01358110156153c457600080fd5b6153d58e6101008f01358f01614d24565b90955093506101208d01358110156153ec57600080fd5b506153fe8d6101208e01358e01614d24565b81935080925050509295989b509295989b9093969950565b6000806000806060858703121561542c57600080fd5b61543585614d0d565b935061544360208601614d0d565b9250604085013567ffffffffffffffff8082111561546057600080fd5b818701915087601f83011261547457600080fd5b81358181111561548357600080fd5b8860208260051b850101111561549857600080fd5b95989497505060200194505050565b6000806000806000608086880312156154bf57600080fd5b6154c886614d0d565b9450602086013593506154dd604087016150a9565b9250606086013567ffffffffffffffff811115614f4a57600080fd5b6020808252825182820181905260009190848201906040850190845b8181101561553a5783516001600160a01b031683529284019291840191600101615515565b50909695505050505050565b60008060008060008060008060c0898b03121561556257600080fd5b61556b89614d0d565b975061557960208a01614d0d565b96506040890135955061558e60608a016150a9565b9450608089013567ffffffffffffffff808211156155ab57600080fd5b6155b78c838d01614d24565b909650945060a08b01359150808211156155d057600080fd5b506155dd8b828c01614d24565b999c989b5096995094979396929594505050565b60008060006060848603121561560657600080fd5b61560f84614d0d565b925061561d60208501614e02565b915061562b60408501614d0d565b90509250925092565b60008060006060848603121561564957600080fd5b61565284614e02565b925061520960208501614d0d565b60008060006060848603121561567557600080fd5b61565284614d0d565b600080600060a0848603121561569357600080fd5b61569d8585614cf5565b92506156ab60608501614d0d565b9150608084013590509250925092565b600080604083850312156156ce57600080fd5b614e9d83614e02565b600080600080608085870312156156ed57600080fd5b6156f685614d0d565b935061570460208601614e02565b925060408501359150614fb06060860161503c565b815181526020808301519082015260408101611aa2565b60008060008060c0858703121561574657600080fd5b6157508686614cf5565b935061575e60608601614d0d565b925061576c60808601614d0d565b9396929550929360a00135925050565b60006020828403121561578e57600080fd5b6128cb8261503c565b838152818360208301376000910160200190815292915050565b63ffffffff6157bf82614e02565b1682526020810135602083015267ffffffffffffffff6157e16040830161503c565b1660408301525050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b61583e81896157b1565b86606082015260e06080820152600061585b60e0830187896157eb565b6001600160a01b03861660a084015282810360c084015261587d8185876157eb565b9a9950505050505050505050565b6080810161589982856157b1565b6001600160a01b03831660608301529392505050565b6000602082840312156158c157600080fd5b8151600381106128cb57600080fd5b8015158114613ebe57600080fd5b6000602082840312156158f057600080fd5b81516128cb816158d0565b60006020828403121561590d57600080fd5b81356128cb816158d0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261595857600080fd5b815167ffffffffffffffff8082111561597357615973615918565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156159b9576159b9615918565b816040528381528660208588010111156159d257600080fd5b6114dc846020830160208901614fbb565b6000602082840312156159f557600080fd5b815167ffffffffffffffff811115615a0c57600080fd5b61296384828501615947565b8a815261ffff8a16602082015288604082015287606082015260e060808201526000615a4860e08301888a6157eb565b82810360a0840152615a5b8187896157eb565b905082810360c0840152615a708185876157eb565b9d9c50505050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115611aa257611aa2615a81565b6000610120615ad2838e6157b1565b8b60608401528a60808401528960a08401528060c0840152615af7818401898b6157eb565b905082810360e0840152615b0c8187896157eb565b9050828103610100840152615a708185876157eb565b600060408083016001600160a01b03871684526020604081860152818683526060925060608601905060608760051b8701018860005b89811015615c63577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa089840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18c3603018112615bb957600080fd5b8b0163ffffffff80615bca83614e02565b16855280615bd9888401614e02565b168786015250878101357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1823603018112615c1357600080fd5b01858101903567ffffffffffffffff811115615c2e57600080fd5b803603821315615c3d57600080fd5b8789860152615c4f88860182846157eb565b958701959450505090840190600101615b58565b50909a9950505050505050505050565b8183823760009101908152919050565b60006001600160a01b03808916835280881660208401525085604083015261ffff8516606083015260a06080830152615cc060a0830184866157eb565b98975050505050505050565b60006001600160a01b03808a16835288602084015260a06040840152615cf660a08401888a6157eb565b81871660608501528381036080850152615d118186886157eb565b9b9a5050505050505050505050565b60a08101615d2e82866157b1565b6001600160a01b0393909316606082015260800152919050565b67ffffffffffffffff818116838216019080821115614ef057614ef0615a81565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615d9e57600080fd5b83018035915067ffffffffffffffff821115615db957600080fd5b60200191503681900382131561174d57600080fd5b6060815267ffffffffffffffff855116606082015263ffffffff60208601511660808201526001600160a01b0360408601511660a082015260006060860151615e1f60c084018263ffffffff169052565b50608086015160e083015260a086015161010083015260c086015160e0610120840152615e50610140840182614fdf565b90508281036020840152615e658186886157eb565b915050613033604083018415159052565b600060408284031215615e8857600080fd5b6040516040810181811067ffffffffffffffff82111715615eab57615eab615918565b604052825181526020928301519281019290925250919050565b600060408284031215615ed757600080fd5b6128cb8383615e76565b60008060608385031215615ef457600080fd5b615efe8484615e76565b9150604083015167ffffffffffffffff811115615f1a57600080fd5b615f2685828601615947565b9150509250929050565b606081526000615f436060830187614fdf565b8281036020840152615f568186886157eb565b9150506001600160a01b038316604083015295945050505050565b600060208284031215615f8357600080fd5b5051919050565b60608101611aa282846157b1565b60008251615faa818460208701614fbb565b919091019291505056fea2646970667358221220519053a761b3f9b52129911b13e4920eb9411f49eaeca2cf9c8912455312fc3964736f6c63430008160033",
|
|
2362
|
+
"linkReferences": {},
|
|
2363
|
+
"deployedLinkReferences": {}
|
|
2364
|
+
}
|