zk-agent-cli 0.1.0-beta.1 → 0.1.0-beta.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/README.md +15 -6
- package/dist/builtin-account-profiles/artifacts/daily-spend-limit/Account.json +693 -0
- package/dist/builtin-account-profiles/artifacts/sed-lite/Account.json +970 -0
- package/dist/builtin-account-profiles/artifacts/sed-lite/EOAValidator.json +50 -0
- package/dist/builtin-account-profiles/artifacts/sed-lite/NativePerTxLimitHook.json +267 -0
- package/dist/builtin-account-profiles/artifacts/sed-lite/TargetAllowlistHook.json +346 -0
- package/dist/builtin-account-profiles/artifacts/sed-lite/TargetSelectorAllowlistHook.json +643 -0
- package/dist/builtin-account-profiles/contracts/daily-spend-limit/AAFactory.sol +28 -0
- package/dist/builtin-account-profiles/contracts/daily-spend-limit/Account.sol +179 -0
- package/dist/builtin-account-profiles/contracts/daily-spend-limit/SpendLimit.sol +85 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/Account.sol +230 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/Auth.sol +16 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/BootloaderAuth.sol +11 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/EOAValidator.sol +23 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/IValidationHook.sol +20 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/IValidator.sol +11 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/ModuleAuth.sol +11 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/ModuleManager.sol +46 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/NativePerTxLimitHook.sol +67 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/OwnerManager.sol +25 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/SelfAuth.sol +9 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/TargetAllowlistHook.sol +110 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/TargetSelectorAllowlistHook.sol +263 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/ValidationHookManager.sol +76 -0
- package/dist/builtin-account-profiles/contracts/sed-lite/ValidatorManager.sol +31 -0
- package/dist/builtin-account-profiles/package.json +5 -0
- package/dist/index.js +4 -3
- package/package.json +1 -1
|
@@ -0,0 +1,643 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contractName": "TargetSelectorAllowlistHook",
|
|
3
|
+
"sourceName": "contracts/sed-lite/TargetSelectorAllowlistHook.sol",
|
|
4
|
+
"abi": [
|
|
5
|
+
{
|
|
6
|
+
"anonymous": false,
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"indexed": true,
|
|
10
|
+
"internalType": "address",
|
|
11
|
+
"name": "account",
|
|
12
|
+
"type": "address"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"indexed": true,
|
|
16
|
+
"internalType": "address",
|
|
17
|
+
"name": "target",
|
|
18
|
+
"type": "address"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"indexed": true,
|
|
22
|
+
"internalType": "bytes4",
|
|
23
|
+
"name": "selector",
|
|
24
|
+
"type": "bytes4"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"name": "AllowedSelectorAdded",
|
|
28
|
+
"type": "event"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"anonymous": false,
|
|
32
|
+
"inputs": [
|
|
33
|
+
{
|
|
34
|
+
"indexed": true,
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "account",
|
|
37
|
+
"type": "address"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"indexed": true,
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "target",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"indexed": true,
|
|
47
|
+
"internalType": "bytes4",
|
|
48
|
+
"name": "selector",
|
|
49
|
+
"type": "bytes4"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"name": "AllowedSelectorRemoved",
|
|
53
|
+
"type": "event"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"anonymous": false,
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"indexed": true,
|
|
60
|
+
"internalType": "address",
|
|
61
|
+
"name": "account",
|
|
62
|
+
"type": "address"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"indexed": true,
|
|
66
|
+
"internalType": "address",
|
|
67
|
+
"name": "target",
|
|
68
|
+
"type": "address"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"name": "AllowedTargetAdded",
|
|
72
|
+
"type": "event"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"anonymous": false,
|
|
76
|
+
"inputs": [
|
|
77
|
+
{
|
|
78
|
+
"indexed": true,
|
|
79
|
+
"internalType": "address",
|
|
80
|
+
"name": "account",
|
|
81
|
+
"type": "address"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"indexed": true,
|
|
85
|
+
"internalType": "address",
|
|
86
|
+
"name": "target",
|
|
87
|
+
"type": "address"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"name": "AllowedTargetRemoved",
|
|
91
|
+
"type": "event"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"anonymous": false,
|
|
95
|
+
"inputs": [
|
|
96
|
+
{
|
|
97
|
+
"indexed": true,
|
|
98
|
+
"internalType": "address",
|
|
99
|
+
"name": "account",
|
|
100
|
+
"type": "address"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"name": "Disabled",
|
|
104
|
+
"type": "event"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"anonymous": false,
|
|
108
|
+
"inputs": [
|
|
109
|
+
{
|
|
110
|
+
"indexed": true,
|
|
111
|
+
"internalType": "address",
|
|
112
|
+
"name": "account",
|
|
113
|
+
"type": "address"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"name": "Inited",
|
|
117
|
+
"type": "event"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [
|
|
121
|
+
{
|
|
122
|
+
"internalType": "address",
|
|
123
|
+
"name": "target",
|
|
124
|
+
"type": "address"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"internalType": "bytes4",
|
|
128
|
+
"name": "selector",
|
|
129
|
+
"type": "bytes4"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"name": "addAllowedSelector",
|
|
133
|
+
"outputs": [],
|
|
134
|
+
"stateMutability": "nonpayable",
|
|
135
|
+
"type": "function"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"inputs": [
|
|
139
|
+
{
|
|
140
|
+
"internalType": "address",
|
|
141
|
+
"name": "target",
|
|
142
|
+
"type": "address"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"name": "addAllowedTarget",
|
|
146
|
+
"outputs": [],
|
|
147
|
+
"stateMutability": "nonpayable",
|
|
148
|
+
"type": "function"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"inputs": [
|
|
152
|
+
{
|
|
153
|
+
"internalType": "address",
|
|
154
|
+
"name": "",
|
|
155
|
+
"type": "address"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"internalType": "address",
|
|
159
|
+
"name": "",
|
|
160
|
+
"type": "address"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"internalType": "bytes4",
|
|
164
|
+
"name": "",
|
|
165
|
+
"type": "bytes4"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"name": "allowedSelectors",
|
|
169
|
+
"outputs": [
|
|
170
|
+
{
|
|
171
|
+
"internalType": "bool",
|
|
172
|
+
"name": "",
|
|
173
|
+
"type": "bool"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"stateMutability": "view",
|
|
177
|
+
"type": "function"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"inputs": [
|
|
181
|
+
{
|
|
182
|
+
"internalType": "address",
|
|
183
|
+
"name": "",
|
|
184
|
+
"type": "address"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"internalType": "address",
|
|
188
|
+
"name": "",
|
|
189
|
+
"type": "address"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"name": "allowedTargets",
|
|
193
|
+
"outputs": [
|
|
194
|
+
{
|
|
195
|
+
"internalType": "bool",
|
|
196
|
+
"name": "",
|
|
197
|
+
"type": "bool"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"stateMutability": "view",
|
|
201
|
+
"type": "function"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"inputs": [
|
|
205
|
+
{
|
|
206
|
+
"internalType": "address",
|
|
207
|
+
"name": "account",
|
|
208
|
+
"type": "address"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"components": [
|
|
212
|
+
{
|
|
213
|
+
"internalType": "uint256",
|
|
214
|
+
"name": "txType",
|
|
215
|
+
"type": "uint256"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"internalType": "uint256",
|
|
219
|
+
"name": "from",
|
|
220
|
+
"type": "uint256"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"internalType": "uint256",
|
|
224
|
+
"name": "to",
|
|
225
|
+
"type": "uint256"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"internalType": "uint256",
|
|
229
|
+
"name": "gasLimit",
|
|
230
|
+
"type": "uint256"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"internalType": "uint256",
|
|
234
|
+
"name": "gasPerPubdataByteLimit",
|
|
235
|
+
"type": "uint256"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"internalType": "uint256",
|
|
239
|
+
"name": "maxFeePerGas",
|
|
240
|
+
"type": "uint256"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"internalType": "uint256",
|
|
244
|
+
"name": "maxPriorityFeePerGas",
|
|
245
|
+
"type": "uint256"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"internalType": "uint256",
|
|
249
|
+
"name": "paymaster",
|
|
250
|
+
"type": "uint256"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"internalType": "uint256",
|
|
254
|
+
"name": "nonce",
|
|
255
|
+
"type": "uint256"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"internalType": "uint256",
|
|
259
|
+
"name": "value",
|
|
260
|
+
"type": "uint256"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"internalType": "uint256[4]",
|
|
264
|
+
"name": "reserved",
|
|
265
|
+
"type": "uint256[4]"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"internalType": "bytes",
|
|
269
|
+
"name": "data",
|
|
270
|
+
"type": "bytes"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"internalType": "bytes",
|
|
274
|
+
"name": "signature",
|
|
275
|
+
"type": "bytes"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"internalType": "bytes32[]",
|
|
279
|
+
"name": "factoryDeps",
|
|
280
|
+
"type": "bytes32[]"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"internalType": "bytes",
|
|
284
|
+
"name": "paymasterInput",
|
|
285
|
+
"type": "bytes"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"internalType": "bytes",
|
|
289
|
+
"name": "reservedDynamic",
|
|
290
|
+
"type": "bytes"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"internalType": "struct Transaction",
|
|
294
|
+
"name": "transaction",
|
|
295
|
+
"type": "tuple"
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"name": "debugValidation",
|
|
299
|
+
"outputs": [
|
|
300
|
+
{
|
|
301
|
+
"internalType": "bool",
|
|
302
|
+
"name": "accountEnabled",
|
|
303
|
+
"type": "bool"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"internalType": "address",
|
|
307
|
+
"name": "target",
|
|
308
|
+
"type": "address"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"internalType": "uint256",
|
|
312
|
+
"name": "dataLength",
|
|
313
|
+
"type": "uint256"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"internalType": "bytes4",
|
|
317
|
+
"name": "selector",
|
|
318
|
+
"type": "bytes4"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"internalType": "bool",
|
|
322
|
+
"name": "targetAllowed",
|
|
323
|
+
"type": "bool"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"internalType": "bool",
|
|
327
|
+
"name": "selectorAllowed",
|
|
328
|
+
"type": "bool"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"internalType": "bool",
|
|
332
|
+
"name": "wouldAllow",
|
|
333
|
+
"type": "bool"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"stateMutability": "view",
|
|
337
|
+
"type": "function"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"inputs": [],
|
|
341
|
+
"name": "disable",
|
|
342
|
+
"outputs": [],
|
|
343
|
+
"stateMutability": "nonpayable",
|
|
344
|
+
"type": "function"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"inputs": [
|
|
348
|
+
{
|
|
349
|
+
"internalType": "address",
|
|
350
|
+
"name": "",
|
|
351
|
+
"type": "address"
|
|
352
|
+
}
|
|
353
|
+
],
|
|
354
|
+
"name": "enabled",
|
|
355
|
+
"outputs": [
|
|
356
|
+
{
|
|
357
|
+
"internalType": "bool",
|
|
358
|
+
"name": "",
|
|
359
|
+
"type": "bool"
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"stateMutability": "view",
|
|
363
|
+
"type": "function"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"inputs": [
|
|
367
|
+
{
|
|
368
|
+
"internalType": "bytes",
|
|
369
|
+
"name": "initData",
|
|
370
|
+
"type": "bytes"
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"name": "init",
|
|
374
|
+
"outputs": [],
|
|
375
|
+
"stateMutability": "nonpayable",
|
|
376
|
+
"type": "function"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"inputs": [
|
|
380
|
+
{
|
|
381
|
+
"internalType": "address",
|
|
382
|
+
"name": "account",
|
|
383
|
+
"type": "address"
|
|
384
|
+
}
|
|
385
|
+
],
|
|
386
|
+
"name": "isInited",
|
|
387
|
+
"outputs": [
|
|
388
|
+
{
|
|
389
|
+
"internalType": "bool",
|
|
390
|
+
"name": "",
|
|
391
|
+
"type": "bool"
|
|
392
|
+
}
|
|
393
|
+
],
|
|
394
|
+
"stateMutability": "view",
|
|
395
|
+
"type": "function"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"inputs": [
|
|
399
|
+
{
|
|
400
|
+
"internalType": "address",
|
|
401
|
+
"name": "account",
|
|
402
|
+
"type": "address"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"internalType": "address",
|
|
406
|
+
"name": "target",
|
|
407
|
+
"type": "address"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"internalType": "bytes4",
|
|
411
|
+
"name": "selector",
|
|
412
|
+
"type": "bytes4"
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"name": "isSelectorAllowed",
|
|
416
|
+
"outputs": [
|
|
417
|
+
{
|
|
418
|
+
"internalType": "bool",
|
|
419
|
+
"name": "",
|
|
420
|
+
"type": "bool"
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"stateMutability": "view",
|
|
424
|
+
"type": "function"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"inputs": [
|
|
428
|
+
{
|
|
429
|
+
"internalType": "address",
|
|
430
|
+
"name": "account",
|
|
431
|
+
"type": "address"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"internalType": "address",
|
|
435
|
+
"name": "target",
|
|
436
|
+
"type": "address"
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"name": "isTargetAllowed",
|
|
440
|
+
"outputs": [
|
|
441
|
+
{
|
|
442
|
+
"internalType": "bool",
|
|
443
|
+
"name": "",
|
|
444
|
+
"type": "bool"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
447
|
+
"stateMutability": "view",
|
|
448
|
+
"type": "function"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"inputs": [
|
|
452
|
+
{
|
|
453
|
+
"internalType": "address",
|
|
454
|
+
"name": "target",
|
|
455
|
+
"type": "address"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"internalType": "bytes4",
|
|
459
|
+
"name": "selector",
|
|
460
|
+
"type": "bytes4"
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
"name": "removeAllowedSelector",
|
|
464
|
+
"outputs": [],
|
|
465
|
+
"stateMutability": "nonpayable",
|
|
466
|
+
"type": "function"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"inputs": [
|
|
470
|
+
{
|
|
471
|
+
"internalType": "address",
|
|
472
|
+
"name": "target",
|
|
473
|
+
"type": "address"
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"name": "removeAllowedTarget",
|
|
477
|
+
"outputs": [],
|
|
478
|
+
"stateMutability": "nonpayable",
|
|
479
|
+
"type": "function"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"inputs": [
|
|
483
|
+
{
|
|
484
|
+
"internalType": "address",
|
|
485
|
+
"name": "account",
|
|
486
|
+
"type": "address"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"name": "state",
|
|
490
|
+
"outputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "bool",
|
|
493
|
+
"name": "accountEnabled",
|
|
494
|
+
"type": "bool"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"internalType": "address[]",
|
|
498
|
+
"name": "targets",
|
|
499
|
+
"type": "address[]"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"components": [
|
|
503
|
+
{
|
|
504
|
+
"internalType": "address",
|
|
505
|
+
"name": "target",
|
|
506
|
+
"type": "address"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"internalType": "bytes4",
|
|
510
|
+
"name": "selector",
|
|
511
|
+
"type": "bytes4"
|
|
512
|
+
}
|
|
513
|
+
],
|
|
514
|
+
"internalType": "struct TargetSelectorAllowlistHook.SelectorRule[]",
|
|
515
|
+
"name": "selectorRules",
|
|
516
|
+
"type": "tuple[]"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"stateMutability": "view",
|
|
520
|
+
"type": "function"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"inputs": [
|
|
524
|
+
{
|
|
525
|
+
"internalType": "bytes4",
|
|
526
|
+
"name": "interfaceId",
|
|
527
|
+
"type": "bytes4"
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"name": "supportsInterface",
|
|
531
|
+
"outputs": [
|
|
532
|
+
{
|
|
533
|
+
"internalType": "bool",
|
|
534
|
+
"name": "",
|
|
535
|
+
"type": "bool"
|
|
536
|
+
}
|
|
537
|
+
],
|
|
538
|
+
"stateMutability": "view",
|
|
539
|
+
"type": "function"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"inputs": [
|
|
543
|
+
{
|
|
544
|
+
"internalType": "bytes32",
|
|
545
|
+
"name": "",
|
|
546
|
+
"type": "bytes32"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"components": [
|
|
550
|
+
{
|
|
551
|
+
"internalType": "uint256",
|
|
552
|
+
"name": "txType",
|
|
553
|
+
"type": "uint256"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"internalType": "uint256",
|
|
557
|
+
"name": "from",
|
|
558
|
+
"type": "uint256"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"internalType": "uint256",
|
|
562
|
+
"name": "to",
|
|
563
|
+
"type": "uint256"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"internalType": "uint256",
|
|
567
|
+
"name": "gasLimit",
|
|
568
|
+
"type": "uint256"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"internalType": "uint256",
|
|
572
|
+
"name": "gasPerPubdataByteLimit",
|
|
573
|
+
"type": "uint256"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"internalType": "uint256",
|
|
577
|
+
"name": "maxFeePerGas",
|
|
578
|
+
"type": "uint256"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"internalType": "uint256",
|
|
582
|
+
"name": "maxPriorityFeePerGas",
|
|
583
|
+
"type": "uint256"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"internalType": "uint256",
|
|
587
|
+
"name": "paymaster",
|
|
588
|
+
"type": "uint256"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"internalType": "uint256",
|
|
592
|
+
"name": "nonce",
|
|
593
|
+
"type": "uint256"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"internalType": "uint256",
|
|
597
|
+
"name": "value",
|
|
598
|
+
"type": "uint256"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"internalType": "uint256[4]",
|
|
602
|
+
"name": "reserved",
|
|
603
|
+
"type": "uint256[4]"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"internalType": "bytes",
|
|
607
|
+
"name": "data",
|
|
608
|
+
"type": "bytes"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"internalType": "bytes",
|
|
612
|
+
"name": "signature",
|
|
613
|
+
"type": "bytes"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"internalType": "bytes32[]",
|
|
617
|
+
"name": "factoryDeps",
|
|
618
|
+
"type": "bytes32[]"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"internalType": "bytes",
|
|
622
|
+
"name": "paymasterInput",
|
|
623
|
+
"type": "bytes"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"internalType": "bytes",
|
|
627
|
+
"name": "reservedDynamic",
|
|
628
|
+
"type": "bytes"
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"internalType": "struct Transaction",
|
|
632
|
+
"name": "transaction",
|
|
633
|
+
"type": "tuple"
|
|
634
|
+
}
|
|
635
|
+
],
|
|
636
|
+
"name": "validationHook",
|
|
637
|
+
"outputs": [],
|
|
638
|
+
"stateMutability": "view",
|
|
639
|
+
"type": "function"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"bytecode": "0x0002000000000002000a00000000000200010000000103550000006003100270000002a50030019d0000008004000039000000400040043f0000000100200190000000190000c13d000002a502300197000000040020008c000002ef0000413d000000000301043b000000e003300270000002a70030009c000000210000213d000002b30030009c000000b90000213d000002b90030009c0000011f0000213d000002bc0030009c000001ed0000613d000002bd0030009c000001d80000613d000002ef0000013d0000000001000416000000000001004b000002ef0000c13d000000200100003900000100001004430000012000000443000002a60100004100000a910001042e000002a80030009c000001130000213d000002ae0030009c000001240000213d000002b10030009c000001fe0000613d000002b20030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000403100370000000000403043b000002c00040009c000002ef0000213d0000002303400039000000000023004b000002ef0000813d0000000406400039000000000361034f000000000703043b000002c00070009c000002ef0000213d00000000054700190000002403500039000000000023004b000002ef0000213d000000400070008c000002ef0000413d0000002002600039000000000621034f000000000606043b000002c00060009c000002ef0000213d00000000064600190000004307600039000000000037004b000002ef0000813d0000002407600039000000000771034f000000000807043b000002c00080009c000001b40000213d00000005078002100000003f09700039000002c909900197000002ca0090009c000001b40000213d0000008009900039000000400090043f000000800080043f00000044066000390000000007760019000000000037004b000002ef0000213d000000000008004b000000650000613d000000a008000039000000000961034f000000000909043b000002be0090009c000002ef0000213d00000000089804360000002006600039000000000076004b0000005d0000413d0000002002200039000000000221034f000000000202043b000002c00020009c000002ef0000213d00000000024200190000001f04200039000000000054004b0000000006000019000002c306008041000002c304400197000002c305500197000000000754013f000000000054004b0000000004000019000002c304004041000002c30070009c000000000406c019000000000004004b000002ef0000c13d0000002404200039000000000441034f000000000504043b000002c00050009c000001b40000213d00000005045002100000003f04400039000002c904400197000000400600043d0000000004460019000300000006001d000000000064004b00000000060000390000000106004039000002c00040009c000001b40000213d0000000100600190000001b40000c13d000000400040043f00000003040000290000000004540436000200000004001d000000060450021000000044022000390000000004420019000000000034004b000002ef0000213d000000000005004b0000072a0000c13d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea0220019700000001022001bf000000000021041b000000800100043d000600000001001d000000000001004b000007450000c13d00000003010000290000000001010433000100000001001d000000000001004b000007f70000c13d0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000203000039000002dc04000041000003e90000013d000002b40030009c000001430000213d000002b70030009c0000022d0000613d000002b80030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000440020008c000002ef0000413d0000000402100370000000000202043b000900000002001d000002be0020009c000002ef0000213d0000002401100370000000000101043b000600000001001d000002cc00100198000002ef0000c13d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000002d10000613d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000004f60000c13d000000400100043d0000006402100039000002e20300004100000000003204350000004402100039000002e303000041000000000032043500000024021000390000002203000039000002da0000013d000002a90030009c000001ba0000213d000002ac0030009c000001d80000613d000002ad0030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000640020008c000002930000813d000002ef0000013d000002ba0030009c000002760000613d000002bb0030009c000001be0000613d000002ef0000013d000002af0030009c0000028e0000613d000002b00030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000440020008c000002ef0000413d0000000401100370000000000101043b000a00000001001d000002be0010009c000002ef0000213d0a9008d20000040f0000000002000411000000000020043f000000200000043f000900000001001d000000400200003900000000010000190a900a710000040f000000000101041a000000ff0110018f0a9008e20000040f00000000010004110000000a0200002900000009030000290a9009960000040f000000000100001900000a910001042e000002b50030009c000002be0000613d000002b60030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000401100370000000000101043b000a00000001001d000002be0010009c000002ef0000213d0000000a01000029000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000900000001001d0000000a01000029000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000800000001001d0000000a01000029000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000500000001001d0000000803000029000000000203041a000000400100043d000a00000001001d000600000002001d0000000001210436000700000001001d000000000030043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000605000029000000000005004b000000070400002900000000020400190000019e0000613d000000000101043b00000000030000190000000002040019000000000401041a000002be04400197000000000242043600000001011000390000000103300039000000000053004b000001970000413d0000000a0120006a0000001f01100039000002eb011001970000000a02100029000000000012004b00000000010000390000000101004039000002c00020009c000001b40000213d0000000100100190000001b40000c13d000000400020043f0000000501000029000000000301041a000002c00030009c000001b40000213d00000005013002100000003f01100039000002c9011001970000000001210019000002c00010009c000005420000a13d000002dd01000041000000000010043f0000004101000039000000040010043f000002de0100004100000a9200010430000002aa0030009c000002e50000613d000002ab0030009c000002ef0000c13d0000000003000416000000000003004b000002ef0000c13d000000440020008c000002ef0000413d0000000402100370000000000202043b000002be0020009c000002ef0000213d0000002401100370000000000101043b000a00000001001d000002be0010009c000002ef0000213d000000000020043f0000000101000039000000200010043f000000400200003900000000010000190a900a710000040f0000000a02000029000000000020043f000000200010043f00000000010000190000004002000039000001e50000013d0000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000401100370000000000101043b000002be0010009c000002ef0000213d000000000010043f000000200000043f000000400200003900000000010000190a900a710000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002bf0100004100000a910001042e0000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000401100370000000000101043b000002cc00100198000002ef0000c13d000002e80010009c00000000020000390000000102006039000002e90010009c00000001022061bf000000800020043f000002bf0100004100000a910001042e0000000003000416000000000003004b000002ef0000c13d000000440020008c000002ef0000413d0000002401100370000000000101043b000a00000001001d000002c00010009c000002ef0000213d0000000a0120006a000002c10010009c000002ef0000213d000002640010008c000002ef0000413d0000000001000415000900000001001d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000002280000613d0000000a0100002900000044021000390000000101000367000000000321034f000000000303043b000002be033001970000000004000411000000000043004b000003eb0000c13d000000000100041500000009011000690000000001000002000000000100001900000a910001042e0000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000401100370000000000101043b000900000001001d000002be0010009c000002ef0000213d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000002d10000613d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff001001900000046e0000c13d000000400100043d0000004402100039000002e5030000410000000000320435000000240210003900000019030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002cf011001c700000a92000104300000000003000416000000000003004b000002ef0000c13d000000240020008c000002ef0000413d0000000401100370000000000101043b000a00000001001d000002be0010009c000002ef0000213d0000000001000411000000000010043f000000200000043f000000400200003900000000010000190a900a710000040f000000000101041a000000ff0110018f0a9008e20000040f00000000010004110000000a020000290a9008f90000040f000000000100001900000a910001042e0000000003000416000000000003004b000002ef0000c13d000000640020008c000002ef0000413d0000000402100370000000000202043b000a00000002001d000002be0020009c000002ef0000213d0000002401100370000000000101043b000900000001001d000002be0010009c000002ef0000213d0a9008da0000040f0000000a02000029000000000020043f0000000202000039000000200020043f000a00000001001d000000400200003900000000010000190a900a710000040f0000000902000029000000000020043f000000200010043f000000000100001900000040020000390a900a710000040f0000000a02000029000002c702200197000000000020043f000000200010043f000000000100001900000040020000390a900a710000040f000000000101041a000000ff001001900000000001000039000000010100c039000000400200043d0000000000120435000002a50020009c000002a5020080410000004001200210000002c8011001c700000a910001042e0000000001000416000000000001004b000002ef0000c13d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000003620000c13d000000400100043d0000006402100039000002e60300004100000000003204350000004402100039000002e7030000410000000000320435000000240210003900000026030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002d6011001c700000a92000104300000000003000416000000000003004b000002ef0000c13d000000440020008c000002ef0000413d0000000403100370000000000303043b000a00000003001d000002be0030009c000002f10000a13d000000000100001900000a92000104300000002401100370000000000101043b000900000001001d000002c00010009c000002ef0000213d000000090120006a000002c10010009c000002ef0000213d000002640010008c000002ef0000413d0000000a01000029000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000909000029000601c40090003d00000001030003670000000602300360000000000402043b00000000020000310000000005920049000000230550008a000002c306500197000002c307400197000000000867013f000000000067004b0000000006000019000002c306004041000000000054004b0000000005000019000002c305008041000002c30080009c000000000605c0190000004405900039000000000553034f000000000101043b000000000101041a000700000001001d000000000105043b000800000001001d000000000006004b000002ef0000c13d0000000901000029000400040010003d0000000401400029000000000313034f000000000303043b000500000003001d000002c00030009c000002ef0000213d000000050220006a0000002001100039000000000021004b0000000003000019000002c303002041000002c302200197000002c301100197000000000421013f000000000021004b0000000001000019000002c301004041000002c30040009c000000000103c019000000000001004b000002ef0000c13d0000000a01000029000000000010043f0000000101000039000300000001001d000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000802000029000002be02200197000000000101043b000800000002001d000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000702000029000200ff00200193000000000101043b000000000101041a000700ff001001930000000a02000029000000080020006b000005e60000c13d000a00000000001d0000000001000019000005ec0000013d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000800000001001d000000000101041a000700000001001d000000000001004b000004360000c13d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000000000001041b000000000002004b0000039a0000613d000a00000002001d000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a02100029000000000021004b0000039a0000813d000000000001041b0000000101100039000000000021004b000003960000413d0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000301043b000000000103041a000800000001001d000000000001004b000004ad0000c13d0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000000000001041b000a00000002001d000000000002004b000003d10000613d000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a02100029000000000021004b000003d10000813d000000000001041b0000000101100039000000000021004b000003cd0000413d0000000001000411000000000010043f000000200000043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea02200197000000000021041b0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000203000039000002df040000410000000005000411000004a80000013d000800000003001d0000018002200039000000000221034f000000000202043b00000000030000310000000a0430006a000000230440008a000002c305400197000002c306200197000000000756013f000000000056004b0000000005000019000002c305004041000000000042004b0000000004000019000002c304008041000002c30070009c000000000504c019000000000005004b000002ef0000c13d0000000a0400002900000004044000390000000002420019000000000421034f000000000404043b000002c00040009c000002ef0000213d00000000054300490000002003200039000000000053004b0000000006000019000002c306002041000002c305500197000002c307300197000000000857013f000000000057004b0000000005000019000002c305004041000002c30080009c000000000506c019000000000005004b000002ef0000c13d0000000005000411000000000050043f000000030040008c0000059f0000213d0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000002280000c13d000002650000013d000a00000000001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000900000001001d0000000802000029000000000102041a0000000a0010006c000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a01100029000000000101041a000002be01100197000000000010043f0000000901000029000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea02200197000000000021041b0000000a020000290000000102200039000a00000002001d000000070020006c000004370000413d000003750000013d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea02200197000000000021041b0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000201043b000000000102041a000800000001001d000000000001004b0000060c0000c13d0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000303000039000002e404000041000000000500041100000009060000290a900a860000040f0000000100200190000002ef0000613d000000000100001900000a910001042e0000000002000019000700000003001d000000000103041a000a00000002001d000000000021004b0000801002000039000008ad0000a13d000000000030043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c70a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000900000001001d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d00000009030000290000000a02300029000000000202041a000000000101043b000900000002001d000002be02200197000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b00000009020000290000004002200210000002c702200197000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea02200197000000000021041b0000000a020000290000000102200039000000080020006c0000000703000029000004af0000413d000003ac0000013d0000000001000411000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea02200197000000000021041b0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000201043b000000000102041a000800000001001d000000000001004b000006b00000c13d0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000403000039000002e1040000410000000005000411000000090600002900000006070000290a900a860000040f0000000100200190000002ef0000613d000004ab0000013d000000400010043f000400000002001d000800000003001d0000000001320436000600000001001d0000000501000029000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000808000029000000000008004b000005690000613d000000000101043b00000000020000190000000603000029000000400400043d000002cb0040009c000001b40000213d0000004005400039000000400050043f000000000501041a0000004006500210000002c70660019700000020074000390000000000670435000002be055001970000000000540435000000000343043600000001011000390000000102200039000000000082004b000005580000413d0000000901000029000000ff00100190000000400100043d0000002002100039000000600300003900000000003204350000000002000039000000010200c03900000000002104350000000a020000290000000003020433000000600210003900000000003204350000008002100039000000000003004b000005810000613d000000000400001900000007060000290000000065060434000002be0550019700000000025204360000000104400039000000000034004b0000057b0000413d000000000312004900000040041000390000000000340435000000040300002900000000030304330000000002320436000000000003004b000005960000613d0000000004000019000000060700002900000000750704340000000065050434000002be0550019700000000055204360000000006060433000002c706600197000000000065043500000040022000390000000104400039000000000034004b0000058b0000413d0000000002120049000002a50020009c000002a5020080410000006002200210000002a50010009c000002a5010080410000004001100210000000000112019f00000a910001042e0000002104200039000000000441034f000000000331034f0000002205200039000000000551034f0000002302200039000000000121034f000000000101043b000a00000001001d000000000105043b000700000001001d000000000103043b000600000001001d000000000104043b000500000001001d0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000502000029000000e802200270000002c4022001970000000603000029000000e003300270000002c503300197000000000223019f0000000703000029000000f0033002700000ff000330018f000000000232019f0000000a03000029000000f803300270000000000232019f000000e002200210000000000101043b000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000001090000613d000002280000013d0000000501000029000000040010008c000006280000813d000a00000000001d0000000001000019000300070000002d000000030000006b0000000002000039000000010200c039000000400300043d000000c0043000390000000000240435000000010110018f000000a0023000390000000000120435000000070000006b0000000001000039000000010100c0390000008002300039000000000012043500000060013000390000000a020000290000000000210435000000400130003900000005020000290000000000210435000000200130003900000008020000290000000000210435000000020000006b0000000001000039000000010100c0390000000000130435000002a50030009c000002a5030080410000004001300210000002c6011001c700000a910001042e0000000003000019000700000002001d000000000102041a000a00000003001d000000000031004b000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a030000290000000001310019000000000101041a000002be01100197000000090010006c000006a10000613d0000000103300039000000080030006c00000007020000290000060e0000413d0000049e0000013d00000001010003670000000602100360000000000202043b0000000003000031000000090430006a000000230440008a000002c305400197000002c306200197000000000756013f000000000056004b0000000005000019000002c305004041000000000042004b0000000004000019000002c304008041000002c30070009c000000000504c019000000000005004b000002ef0000c13d0000000402200029000000000421034f000000000404043b000002c00040009c000002ef0000213d00000000054300490000002003200039000000000053004b0000000006000019000002c306002041000002c305500197000002c307300197000000000857013f000000000057004b0000000005000019000002c305004041000002c30080009c000000000506c019000000000005004b000002ef0000c13d000000040040008c000008ad0000413d0000002104200039000000000441034f000000000331034f0000002205200039000000000551034f0000002302200039000000000121034f000000000101043b000900000001001d000000000105043b000600000001001d000000000103043b000400000001001d000000000104043b000300000001001d0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000302000029000000e802200270000002c4022001970000000403000029000000e003300270000002c503300197000000000223019f0000000603000029000000f0033002700000ff000330018f000000000232019f0000000903000029000000f803300270000000000232019f000000e002200210000000000101043b000a00000002001d000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff0110018f000000020000006b00000000020100190000000102006039000300000002001d000000000001004b0000000001000039000000010100c039000005ec0000013d00000008010000290008000100100092000000080030006c000006ec0000c13d0000000701000029000000000101041a000a00000001001d000000000001004b000007150000c13d000002dd01000041000000000010043f0000003101000039000000040010043f000002de0100004100000a92000104300000000004000019000700000002001d000006b70000013d0000000104400039000000080040006c0000000702000029000005330000813d000000000102041a000a00000004001d000000000041004b000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a040000290000000001410019000000000101041a000002be02100197000000090020006c000006b30000c13d0000004001100210000002c701100197000000060010006c000006b30000c13d00000008010000290008000100100092000000080040006c000007c70000c13d0000000701000029000000000101041a000a00000001001d000000000001004b000006aa0000613d0000000701000029000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000a02000029000000010220008a000000000101043b0000000001210019000000000001041b0000000701000029000000000021041b000005330000013d0000000702000029000000000102041a000000080010006c000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000703000029000000000203041a0000000a0020006c000008ad0000a13d0000000801100029000000000101041a000800000001001d000000000030043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000802000029000002be02200197000000000101043b0000000a01100029000000000301041a000002d103300197000000000223019f000000000021041b000006a50000013d0000000701000029000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000a02000029000000010220008a000000000101043b0000000001210019000000000301041a000002d103300197000000000031041b0000000701000029000000000021041b0000049e0000013d00000002050000290000000006230049000002c10060009c000002ef0000213d000000400060008c000002ef0000413d000000400600043d000002cb0060009c000001b40000213d0000004007600039000000400070043f000000000721034f000000000707043b000002be0070009c000002ef0000213d00000000077604360000002008200039000000000881034f000000000808043b000002cc00800198000002ef0000c13d000000000087043500000000056504360000004002200039000000000042004b0000072b0000413d000000960000013d0000000001000411000a02be0010019b0000000002000019000000800100043d000000000021004b000008ad0000a13d0000000501200210000000a0011000390000000001010433000002be03100198000008b30000613d000800000002001d0000000a01000029000900000003001d000000000013004b000008ba0000613d000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000008c10000c13d0000000a01000029000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea0220019700000001022001bf000000000021041b0000000a01000029000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002c00020009c000001b40000213d000700000002001d0000000102200039000000000021041b000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000701100029000000000201041a000002d1022001970000000906000029000000000262019f000000000021041b0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000303000039000002d3040000410000000a050000290a900a860000040f0000000100200190000002ef0000613d00000008020000290000000102200039000000060020006c000007480000413d000000ab0000013d0000000702000029000000000102041a000000080010006c000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000500000001001d0000000702000029000000000102041a0000000a0010006c000008ad0000a13d000000000020043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d00000005030000290000000802300029000000000101043b0000000a01100029000000000021004b000006d40000613d000000000302041a000002be03300197000000000401041a000002d104400197000000000334019f000000000031041b000002e003300197000000000202041a000002d802200197000000000223019f000000000021041b000006d40000013d0000000001000411000902be0010019b000000000300001900000003010000290000000001010433000000000031004b000008ad0000a13d0000000501300210000000020110002900000000010104330000000012010434000002be04200198000008b30000613d000700000003001d0000000902000029000a00000004001d000000000024004b000008ba0000613d0000000001010433000800000001001d000000000020043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d0000000802000029000002c702200197000000000101043b000800000002001d000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000101041a000000ff00100190000008c80000c13d0000000901000029000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000000201041a000002ea0220019700000001022001bf000000000021041b0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b000000400300043d000002cb0030009c000001b40000213d0000004002300039000000400020043f0000000a0200002900000000042304360000000802000029000600000004001d0000000000240435000000000201041a000002c00020009c000001b40000213d000500000003001d000400000002001d0000000102200039000000000021041b000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f0000000100200190000002ef0000613d000000000101043b0000000401100029000000000201041a000002d70220019700000005030000290000000003030433000002be03300197000000000232019f000000060300002900000000030304330000004003300270000002d803300197000000000232019f000000000021041b0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000403000039000002d90400004100000009050000290000000a0600002900000008070000290a900a860000040f0000000100200190000002ef0000613d00000007030000290000000103300039000000010030006c000007fa0000413d000000b00000013d000002dd01000041000000000010043f0000003201000039000000040010043f000002de0100004100000a9200010430000000400100043d0000004402100039000002db030000410000000000320435000000240210003900000017030000390000026b0000013d000000400100043d0000004402100039000002da03000041000000000032043500000024021000390000001f030000390000026b0000013d000000400100043d0000004402100039000002cd03000041000000000032043500000024021000390000001a030000390000026b0000013d000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d503000041000000000032043500000024021000390000002303000039000002da0000013d00000024010000390000000101100367000000000101043b000002cc00100198000008d80000c13d000000000001042d000000000100001900000a920001043000000044010000390000000101100367000000000101043b000002cc00100198000008e00000c13d000000000001042d000000000100001900000a9200010430000000000001004b000008e50000613d000000000001042d000000400100043d0000006402100039000002e60300004100000000003204350000004402100039000002e7030000410000000000320435000000240210003900000026030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002d6011001c700000a92000104300003000000000002000002be02200198000009710000613d000002be01100197000300000002001d000000000012004b000009780000613d000200000001001d000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b000000000101041a000000ff001001900000097f0000c13d0000000201000029000000000010043f0000000101000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b000000000201041a000002ea0220019700000001022001bf000000000021041b0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b000000000201041a000002ec0020009c000009900000813d000100000002001d0000000102200039000000000021041b000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f00000001002001900000096f0000613d000000000101043b0000000101100029000000000201041a000002d1022001970000000306000029000000000262019f000000000021041b0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000303000039000002d30400004100000002050000290a900a860000040f00000001002001900000096f0000613d000000000001042d000000000100001900000a9200010430000000400100043d0000004402100039000002db03000041000000000032043500000024021000390000001703000039000009850000013d000000400100043d0000004402100039000002da03000041000000000032043500000024021000390000001f03000039000009850000013d000000400100043d0000004402100039000002cd03000041000000000032043500000024021000390000001a030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002cf011001c700000a9200010430000002dd01000041000000000010043f0000004101000039000000040010043f000002de0100004100000a92000104300006000000000002000002be0220019800000a450000613d000400000003001d000002be01100197000600000002001d000000000012004b00000a4c0000613d000500000001001d000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b0000000402000029000002c702200197000400000002001d000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b000000000101041a000000ff0010019000000a5d0000c13d0000000501000029000000000010043f0000000201000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b000000000201041a000002ea0220019700000001022001bf000000000021041b0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002c2011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b000000400300043d000002ed0030009c00000a3f0000813d0000004002300039000000400020043f000000060200002900000000042304360000000402000029000300000004001d0000000000240435000000000201041a000002c00020009c00000a3f0000213d000200000003001d000100000002001d0000000102200039000000000021041b000000000010043f0000000001000414000002a50010009c000002a501008041000000c001100210000002d0011001c700008010020000390a900a8b0000040f000000010020019000000a3d0000613d000000000101043b0000000101100029000000000201041a000002d70220019700000002030000290000000003030433000002be03300197000000000232019f000000030300002900000000030304330000004003300270000002d803300197000000000223019f000000000021041b0000000001000414000002a50010009c000002a501008041000000c001100210000002d2011001c70000800d020000390000000403000039000002d9040000410000000505000029000000060600002900000004070000290a900a860000040f000000010020019000000a3d0000613d000000000001042d000000000100001900000a9200010430000002dd01000041000000000010043f0000004101000039000000040010043f000002de0100004100000a9200010430000000400100043d0000004402100039000002db0300004100000000003204350000002402100039000000170300003900000a520000013d000000400100043d0000004402100039000002da03000041000000000032043500000024021000390000001f030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002cf011001c700000a9200010430000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d5030000410000000000320435000000240210003900000023030000390000000000320435000002ce020000410000000000210435000000040210003900000020030000390000000000320435000002a50010009c000002a5010080410000004001100210000002d6011001c700000a9200010430000002a50010009c000002a5010080410000004001100210000002a50020009c000002a5020080410000006002200210000000000112019f0000000002000414000002a50020009c000002a502008041000000c002200210000000000112019f000002d2011001c700008010020000390a900a8b0000040f000000010020019000000a840000613d000000000101043b000000000001042d000000000100001900000a920001043000000a89002104210000000102000039000000000001042d0000000002000019000000000001042d00000a8e002104230000000102000039000000000001042d0000000002000019000000000001042d00000a900000043200000a910001042e00000a9200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000037d5f0390000000000000000000000000000000000000000000000000000000098afdfe200000000000000000000000000000000000000000000000000000000d250a04200000000000000000000000000000000000000000000000000000000d250a04300000000000000000000000000000000000000000000000000000000eac75ae70000000000000000000000000000000000000000000000000000000098afdfe300000000000000000000000000000000000000000000000000000000b165591900000000000000000000000000000000000000000000000000000000610156d200000000000000000000000000000000000000000000000000000000610156d3000000000000000000000000000000000000000000000000000000008ad6434b0000000000000000000000000000000000000000000000000000000037d5f03a000000000000000000000000000000000000000000000000000000004ddf47d4000000000000000000000000000000000000000000000000000000002c5a79dd000000000000000000000000000000000000000000000000000000002f2770da000000000000000000000000000000000000000000000000000000002f2770db0000000000000000000000000000000000000000000000000000000031e658a5000000000000000000000000000000000000000000000000000000002c5a79de000000000000000000000000000000000000000000000000000000002d911a6a00000000000000000000000000000000000000000000000000000000182562b200000000000000000000000000000000000000000000000000000000182562b3000000000000000000000000000000000000000000000000000000002a2314c10000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000f23795f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff020000000000000000000000000000000000004000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000e0000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000000000ffffffffffffffbf00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff54617267657420616c726561647920616c6c6f776c697374656400000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000009730a19f47a8e038306e853ce95c4c3489962ac9f904f0949f578c1ea88f51ff74656400000000000000000000000000000000000000000000000000000000005461726765742073656c6563746f7220616c726561647920616c6c6f776c69730000000000000000000000000000000000000084000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000000000e80c14c071319b585a9aa3c950c167397e5a3ad5ece0a5aeaecc3a04a78658844163636f756e742073656c662d74617267657420697320696d706c6963697400546172676574206d757374206e6f74206265207a65726f0000000000000000004c3198fee40c6e645ecb6812a49b813b9860b73cb373c9729e1ad592f393fa484e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000f54453d15e2e6aee566733e6da03165ea58500408e802e05aa4e75f2408f59feffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff79450be8ae23571cf0dcf94b3cfe2bec250801f02ff4c4e556b7c3dbb10f3e1b65640000000000000000000000000000000000000000000000000000000000005461726765742073656c6563746f72206973206e6f7420616c6c6f776c697374a39ed752d09d084012b95b88d5db9517374c3e15d866f2e301da5940d57b68b1546172676574206973206e6f7420616c6c6f776c6973746564000000000000006e61626c6564000000000000000000000000000000000000000000000000000053656c6563746f7220616c6c6f776c69737420686f6f6b206973206e6f74206501ffc9a70000000000000000000000000000000000000000000000000000000037d5f03a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000a26469706673582212202a8e8e8880079e262cd0b13d6070c1f28833d15ba304ca2042b9da3c5bebd59b64736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055"
|
|
643
|
+
}
|