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,346 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contractName": "TargetAllowlistHook",
|
|
3
|
+
"sourceName": "contracts/sed-lite/TargetAllowlistHook.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
|
+
"name": "AllowedTargetAdded",
|
|
22
|
+
"type": "event"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"anonymous": false,
|
|
26
|
+
"inputs": [
|
|
27
|
+
{
|
|
28
|
+
"indexed": true,
|
|
29
|
+
"internalType": "address",
|
|
30
|
+
"name": "account",
|
|
31
|
+
"type": "address"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"indexed": true,
|
|
35
|
+
"internalType": "address",
|
|
36
|
+
"name": "target",
|
|
37
|
+
"type": "address"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "AllowedTargetRemoved",
|
|
41
|
+
"type": "event"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"anonymous": false,
|
|
45
|
+
"inputs": [
|
|
46
|
+
{
|
|
47
|
+
"indexed": true,
|
|
48
|
+
"internalType": "address",
|
|
49
|
+
"name": "account",
|
|
50
|
+
"type": "address"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"name": "Disabled",
|
|
54
|
+
"type": "event"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"anonymous": false,
|
|
58
|
+
"inputs": [
|
|
59
|
+
{
|
|
60
|
+
"indexed": true,
|
|
61
|
+
"internalType": "address",
|
|
62
|
+
"name": "account",
|
|
63
|
+
"type": "address"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "Inited",
|
|
67
|
+
"type": "event"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"inputs": [
|
|
71
|
+
{
|
|
72
|
+
"internalType": "address",
|
|
73
|
+
"name": "target",
|
|
74
|
+
"type": "address"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "addAllowedTarget",
|
|
78
|
+
"outputs": [],
|
|
79
|
+
"stateMutability": "nonpayable",
|
|
80
|
+
"type": "function"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"inputs": [
|
|
84
|
+
{
|
|
85
|
+
"internalType": "address",
|
|
86
|
+
"name": "",
|
|
87
|
+
"type": "address"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"internalType": "address",
|
|
91
|
+
"name": "",
|
|
92
|
+
"type": "address"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"name": "allowedTargets",
|
|
96
|
+
"outputs": [
|
|
97
|
+
{
|
|
98
|
+
"internalType": "bool",
|
|
99
|
+
"name": "",
|
|
100
|
+
"type": "bool"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"stateMutability": "view",
|
|
104
|
+
"type": "function"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [],
|
|
108
|
+
"name": "disable",
|
|
109
|
+
"outputs": [],
|
|
110
|
+
"stateMutability": "nonpayable",
|
|
111
|
+
"type": "function"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"inputs": [
|
|
115
|
+
{
|
|
116
|
+
"internalType": "address",
|
|
117
|
+
"name": "",
|
|
118
|
+
"type": "address"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"name": "enabled",
|
|
122
|
+
"outputs": [
|
|
123
|
+
{
|
|
124
|
+
"internalType": "bool",
|
|
125
|
+
"name": "",
|
|
126
|
+
"type": "bool"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"stateMutability": "view",
|
|
130
|
+
"type": "function"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"inputs": [
|
|
134
|
+
{
|
|
135
|
+
"internalType": "bytes",
|
|
136
|
+
"name": "initData",
|
|
137
|
+
"type": "bytes"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"name": "init",
|
|
141
|
+
"outputs": [],
|
|
142
|
+
"stateMutability": "nonpayable",
|
|
143
|
+
"type": "function"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"inputs": [
|
|
147
|
+
{
|
|
148
|
+
"internalType": "address",
|
|
149
|
+
"name": "account",
|
|
150
|
+
"type": "address"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"name": "isInited",
|
|
154
|
+
"outputs": [
|
|
155
|
+
{
|
|
156
|
+
"internalType": "bool",
|
|
157
|
+
"name": "",
|
|
158
|
+
"type": "bool"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"stateMutability": "view",
|
|
162
|
+
"type": "function"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"inputs": [
|
|
166
|
+
{
|
|
167
|
+
"internalType": "address",
|
|
168
|
+
"name": "account",
|
|
169
|
+
"type": "address"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"internalType": "address",
|
|
173
|
+
"name": "target",
|
|
174
|
+
"type": "address"
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"name": "isTargetAllowed",
|
|
178
|
+
"outputs": [
|
|
179
|
+
{
|
|
180
|
+
"internalType": "bool",
|
|
181
|
+
"name": "",
|
|
182
|
+
"type": "bool"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"stateMutability": "view",
|
|
186
|
+
"type": "function"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"inputs": [
|
|
190
|
+
{
|
|
191
|
+
"internalType": "address",
|
|
192
|
+
"name": "target",
|
|
193
|
+
"type": "address"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"name": "removeAllowedTarget",
|
|
197
|
+
"outputs": [],
|
|
198
|
+
"stateMutability": "nonpayable",
|
|
199
|
+
"type": "function"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"inputs": [
|
|
203
|
+
{
|
|
204
|
+
"internalType": "address",
|
|
205
|
+
"name": "account",
|
|
206
|
+
"type": "address"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"name": "state",
|
|
210
|
+
"outputs": [
|
|
211
|
+
{
|
|
212
|
+
"internalType": "bool",
|
|
213
|
+
"name": "accountEnabled",
|
|
214
|
+
"type": "bool"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"internalType": "address[]",
|
|
218
|
+
"name": "targets",
|
|
219
|
+
"type": "address[]"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"stateMutability": "view",
|
|
223
|
+
"type": "function"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"inputs": [
|
|
227
|
+
{
|
|
228
|
+
"internalType": "bytes4",
|
|
229
|
+
"name": "interfaceId",
|
|
230
|
+
"type": "bytes4"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"name": "supportsInterface",
|
|
234
|
+
"outputs": [
|
|
235
|
+
{
|
|
236
|
+
"internalType": "bool",
|
|
237
|
+
"name": "",
|
|
238
|
+
"type": "bool"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"stateMutability": "view",
|
|
242
|
+
"type": "function"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"inputs": [
|
|
246
|
+
{
|
|
247
|
+
"internalType": "bytes32",
|
|
248
|
+
"name": "",
|
|
249
|
+
"type": "bytes32"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"components": [
|
|
253
|
+
{
|
|
254
|
+
"internalType": "uint256",
|
|
255
|
+
"name": "txType",
|
|
256
|
+
"type": "uint256"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"internalType": "uint256",
|
|
260
|
+
"name": "from",
|
|
261
|
+
"type": "uint256"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"internalType": "uint256",
|
|
265
|
+
"name": "to",
|
|
266
|
+
"type": "uint256"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"internalType": "uint256",
|
|
270
|
+
"name": "gasLimit",
|
|
271
|
+
"type": "uint256"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"internalType": "uint256",
|
|
275
|
+
"name": "gasPerPubdataByteLimit",
|
|
276
|
+
"type": "uint256"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"internalType": "uint256",
|
|
280
|
+
"name": "maxFeePerGas",
|
|
281
|
+
"type": "uint256"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"internalType": "uint256",
|
|
285
|
+
"name": "maxPriorityFeePerGas",
|
|
286
|
+
"type": "uint256"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"internalType": "uint256",
|
|
290
|
+
"name": "paymaster",
|
|
291
|
+
"type": "uint256"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"internalType": "uint256",
|
|
295
|
+
"name": "nonce",
|
|
296
|
+
"type": "uint256"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"internalType": "uint256",
|
|
300
|
+
"name": "value",
|
|
301
|
+
"type": "uint256"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"internalType": "uint256[4]",
|
|
305
|
+
"name": "reserved",
|
|
306
|
+
"type": "uint256[4]"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"internalType": "bytes",
|
|
310
|
+
"name": "data",
|
|
311
|
+
"type": "bytes"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"internalType": "bytes",
|
|
315
|
+
"name": "signature",
|
|
316
|
+
"type": "bytes"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"internalType": "bytes32[]",
|
|
320
|
+
"name": "factoryDeps",
|
|
321
|
+
"type": "bytes32[]"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"internalType": "bytes",
|
|
325
|
+
"name": "paymasterInput",
|
|
326
|
+
"type": "bytes"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"internalType": "bytes",
|
|
330
|
+
"name": "reservedDynamic",
|
|
331
|
+
"type": "bytes"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"internalType": "struct Transaction",
|
|
335
|
+
"name": "transaction",
|
|
336
|
+
"type": "tuple"
|
|
337
|
+
}
|
|
338
|
+
],
|
|
339
|
+
"name": "validationHook",
|
|
340
|
+
"outputs": [],
|
|
341
|
+
"stateMutability": "view",
|
|
342
|
+
"type": "function"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"bytecode": "0x0001000000000002000500000000000200000000000103550000008003000039000000400030043f0000000100200190000000450000c13d00000060021002700000012c02200197000000040020008c000003c40000413d000000000301043b000000e0033002700000012e0030009c0000004d0000a13d0000012f0030009c000000c80000213d000001330030009c0000019b0000613d000001340030009c000001120000613d000001350030009c000003c40000c13d0000000003000416000000000003004b000003c40000c13d000000440020008c000003c40000413d0000002401100370000000000101043b000500000001001d0000013e0010009c000003c40000213d000000050120006a0000014c0010009c000003c40000213d000002640010008c000003c40000413d0000000001000415000400000001001d0000000001000411000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000000400000613d000000050100002900000044011000390000000001100367000000000101043b0000013c021001970000000001000411000000000012004b000002320000c13d0000000001000415000000040110006900000000010000020000000001000019000004ac0001042e0000000001000416000000000001004b000003c40000c13d0000002001000039000001000010044300000120000004430000012d01000041000004ac0001042e000001360030009c000000e80000a13d000001370030009c000001830000613d000001380030009c000000ce0000613d000001390030009c000003c40000c13d0000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000401100370000000000101043b000400000001001d0000013c0010009c000003c40000213d0000000001000411000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000001ae0000613d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000002500000613d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a0000015602200197000000000021041b0000000001000411000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000201043b000000000102041a000300000001001d000000000001004b000002d30000c13d00000000010004140000012c0010009c0000012c01008041000000c00110021000000147011001c70000800d0200003900000003030000390000015004000041000000000500041100000004060000290000022d0000013d000001300030009c000001bf0000613d000001310030009c000000ec0000613d000001320030009c000003c40000c13d0000000003000416000000000003004b000003c40000c13d000000440020008c000003c40000413d0000000402100370000000000202043b0000013c0020009c000003c40000213d0000002401100370000000000101043b000500000001001d0000013c0010009c000003c40000213d000000000020043f0000000101000039000000200010043f0000004002000039000000000100001904ab048c0000040f0000000502000029000000000020043f000000200010043f00000000010000190000004002000039000000f90000013d0000013a0030009c000001010000613d0000013b0030009c000003c40000c13d0000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000401100370000000000101043b0000013c0010009c000003c40000213d000000000010043f000000200000043f0000004002000039000000000100001904ab048c0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000013d01000041000004ac0001042e0000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000401100370000000000101043b0000015300100198000003c40000c13d000001540010009c00000000020000390000000102006039000001550010009c00000001022061bf000000800020043f0000013d01000041000004ac0001042e0000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000401100370000000000101043b000500000001001d0000013c0010009c000003c40000213d0000000501000029000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000400000001001d0000000501000029000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000301041a000000400200043d000300000002001d000200000003001d0000000002320436000500000002001d000000000010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d0000000205000029000000000005004b00000005060000290000000002060019000001580000613d000000000101043b00000000030000190000000002060019000000000401041a0000013c04400197000000000242043600000001011000390000000103300039000000000053004b000001510000413d000000030400002900000000014200490000001f0110003900000157021001970000000001420019000000000021004b000000000200003900000001020040390000013e0010009c000001e90000213d0000000100200190000001e90000c13d0000000402000029000000ff00200190000000400010043f0000002002100039000000400300003900000000003204350000000002000039000000010200c03900000000002104350000000003040433000000400210003900000000003204350000006002100039000000000003004b0000017a0000613d000000000400001900000000650604340000013c0550019700000000025204360000000104400039000000000034004b000001740000413d00000000021200490000012c0020009c0000012c0200804100000060022002100000012c0010009c0000012c010080410000004001100210000000000112019f000004ac0001042e0000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000401100370000000000101043b000500000001001d0000013c0010009c000003c40000213d0000000001000411000000000010043f000000200000043f0000004002000039000000000100001904ab048c0000040f000000000101041a000000ff0110018f04ab03db0000040f0000000001000411000000050200002904ab03ef0000040f0000000001000019000004ac0001042e0000000001000416000000000001004b000003c40000c13d0000000001000411000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000001ef0000c13d000000400100043d00000044021000390000015203000041000000000032043500000024021000390000001d030000390000000000320435000001430200004100000000002104350000000402100039000000200300003900000000003204350000012c0010009c0000012c01008041000000400110021000000144011001c7000004ad000104300000000003000416000000000003004b000003c40000c13d000000240020008c000003c40000413d0000000403100370000000000403043b0000013e0040009c000003c40000213d0000002303400039000000000023004b000003c40000813d0000000405400039000000000351034f000000000603043b0000013e0060009c000003c40000213d00000000036400190000002403300039000000000023004b000003c40000213d000000200060008c000003c40000413d0000002002500039000000000221034f000000000202043b0000013e0020009c000003c40000213d00000000024200190000004304200039000000000034004b000003c40000813d0000002404200039000000000441034f000000000504043b0000013e0050009c000001e90000213d00000005045002100000003f064000390000013f06600197000001400060009c000002a30000a13d0000014d01000041000000000010043f0000004101000039000000040010043f0000014e01000041000004ad000104300000000001000411000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000300000001001d000000000101041a000200000001001d000000000001004b000002570000c13d0000000001000411000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a000000000001041b000000000002004b0000028f0000c13d0000000001000411000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a0000015602200197000000000021041b00000000010004140000012c0010009c0000012c01008041000000c00110021000000147011001c70000800d0200003900000002030000390000014f04000041000000000500041104ab04a10000040f0000000100200190000003c40000613d0000000001000019000004ac0001042e000500000002001d000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000502000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000000400000c13d000000400100043d00000044021000390000015103000041000000000032043500000024021000390000001903000039000001b40000013d000500000000001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000401043b0000000302000029000000000102041a000000050010006c000003a90000a13d000400000004001d000000000020043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000501100029000000000101041a0000013c01100197000000000010043f0000000401000029000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a0000015602200197000000000021041b00000005020000290000000102200039000500000002001d000000020020006c000002580000413d000002020000013d000500000002001d000000000010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000502100029000000000021004b000002140000813d000000000001041b0000000101100039000000000021004b0000029e0000413d000002140000013d0000008006600039000000400060043f000000800050043f00000044022000390000000004420019000000000034004b000003c40000213d000000000005004b000002b50000613d000000a003000039000000000521034f000000000505043b0000013c0050009c000003c40000213d00000000035304360000002002200039000000000042004b000002ad0000413d0000000001000411000000000010043f000000200000043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a000001560220019700000001022001bf000000000021041b000000800100043d000100000001001d000000000001004b000002ef0000c13d00000000010004140000012c0010009c0000012c01008041000000c00110021000000147011001c70000800d0200003900000002030000390000014b040000410000022c0000013d0000000003000019000200000002001d000000000102041a000500000003001d000000000031004b000003a90000a13d000000000020043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b00000005030000290000000001310019000000000101041a0000013c01100197000000040010006c000003710000613d0000000103300039000000030030006c0000000202000029000002d50000413d000000bd0000013d00000000010004110005013c0010019b0000000002000019000000800100043d000000000012004b000003a90000813d0000000501200210000000a00110003900000000010104330000013c03100198000003c60000613d000300000002001d0000000501000029000400000003001d000000000013004b000003cd0000613d000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000101041a000000ff00100190000003d40000c13d0000000501000029000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a000001560220019700000001022001bf000000000021041b0000000501000029000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b000000000201041a0000013e0020009c000001e90000213d000200000002001d0000000102200039000000000021041b000000000010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000201100029000000000201041a00000146022001970000000406000029000000000262019f000000000021041b00000000010004140000012c0010009c0000012c01008041000000c00110021000000147011001c70000800d0200003900000003030000390000014804000041000000050500002904ab04a10000040f0000000100200190000003c40000613d00000003020000290000000102200039000000010020006c000002f20000413d000002ca0000013d00000003010000290003000100100092000000030030006c000003800000c13d0000000201000029000000000101041a000500000001001d000000000001004b000003af0000c13d0000014d01000041000000000010043f0000003101000039000000040010043f0000014e01000041000004ad000104300000000202000029000000000102041a000000030010006c000003a90000a13d000000000020043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d000000000101043b0000000203000029000000000203041a000000050020006c000003a90000a13d0000000301100029000000000101041a000300000001001d000000000030043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d00000003020000290000013c02200197000000000101043b0000000501100029000000000301041a0000014603300197000000000223019f000000000021041b000003750000013d0000014d01000041000000000010043f0000003201000039000000040010043f0000014e01000041000004ad000104300000000201000029000000000010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000003c40000613d0000000502000029000000010220008a000000000101043b0000000001210019000000000301041a0000014603300197000000000031041b0000000201000029000000000021041b000000bd0000013d0000000001000019000004ad00010430000000400100043d00000044021000390000014a03000041000000000032043500000024021000390000001703000039000001b40000013d000000400100043d00000044021000390000014903000041000000000032043500000024021000390000001f03000039000001b40000013d000000400100043d00000044021000390000014203000041000000000032043500000024021000390000001a03000039000001b40000013d000000000001004b000003de0000613d000000000001042d000000400100043d00000044021000390000015203000041000000000032043500000024021000390000001d030000390000000000320435000001430200004100000000002104350000000402100039000000200300003900000000003204350000012c0010009c0000012c01008041000000400110021000000144011001c7000004ad0001043000030000000000020000013c02200198000004670000613d0000013c01100197000300000002001d000000000012004b0000046e0000613d000200000001001d000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b000000000101041a000000ff00100190000004750000c13d0000000201000029000000000010043f0000000101000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b000000000201041a000001560220019700000001022001bf000000000021041b0000000201000029000000000010043f0000000201000039000000200010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000141011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b000000000201041a000001580020009c000004860000813d000100000002001d0000000102200039000000000021041b000000000010043f00000000010004140000012c0010009c0000012c01008041000000c00110021000000145011001c7000080100200003904ab04a60000040f0000000100200190000004650000613d000000000101043b0000000101100029000000000201041a00000146022001970000000306000029000000000262019f000000000021041b00000000010004140000012c0010009c0000012c01008041000000c00110021000000147011001c70000800d0200003900000003030000390000014804000041000000020500002904ab04a10000040f0000000100200190000004650000613d000000000001042d0000000001000019000004ad00010430000000400100043d00000044021000390000014a030000410000000000320435000000240210003900000017030000390000047b0000013d000000400100043d00000044021000390000014903000041000000000032043500000024021000390000001f030000390000047b0000013d000000400100043d00000044021000390000014203000041000000000032043500000024021000390000001a030000390000000000320435000001430200004100000000002104350000000402100039000000200300003900000000003204350000012c0010009c0000012c01008041000000400110021000000144011001c7000004ad000104300000014d01000041000000000010043f0000004101000039000000040010043f0000014e01000041000004ad000104300000012c0010009c0000012c0100804100000040011002100000012c0020009c0000012c020080410000006002200210000000000112019f00000000020004140000012c0020009c0000012c02008041000000c002200210000000000112019f00000147011001c7000080100200003904ab04a60000040f00000001002001900000049f0000613d000000000101043b000000000001042d0000000001000019000004ad00010430000004a4002104210000000102000039000000000001042d0000000002000019000000000001042d000004a9002104230000000102000039000000000001042d0000000002000019000000000001042d000004ab00000432000004ac0001042e000004ad000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000002f2770da000000000000000000000000000000000000000000000000000000004ddf47d3000000000000000000000000000000000000000000000000000000004ddf47d40000000000000000000000000000000000000000000000000000000098afdfe300000000000000000000000000000000000000000000000000000000eac75ae7000000000000000000000000000000000000000000000000000000002f2770db0000000000000000000000000000000000000000000000000000000031e658a50000000000000000000000000000000000000000000000000000000037d5f03a00000000000000000000000000000000000000000000000000000000182562b200000000000000000000000000000000000000000000000000000000182562b3000000000000000000000000000000000000000000000000000000002a2314c1000000000000000000000000000000000000000000000000000000002c5a79de0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000f23795f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f020000000000000000000000000000000000004000000000000000000000000054617267657420616c726561647920616c6c6f776c697374656400000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000009730a19f47a8e038306e853ce95c4c3489962ac9f904f0949f578c1ea88f51ff4163636f756e742073656c662d74617267657420697320696d706c6963697400546172676574206d757374206e6f74206265207a65726f0000000000000000004c3198fee40c6e645ecb6812a49b813b9860b73cb373c9729e1ad592f393fa487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000f54453d15e2e6aee566733e6da03165ea58500408e802e05aa4e75f2408f59fea39ed752d09d084012b95b88d5db9517374c3e15d866f2e301da5940d57b68b1546172676574206973206e6f7420616c6c6f776c697374656400000000000000416c6c6f776c69737420686f6f6b206973206e6f7420656e61626c656400000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a70000000000000000000000000000000000000000000000000000000037d5f03a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a264697066735822122007c66fd307646f1ca7b8bab7174076919b07bdfc3d46a9cc33f8232b16f453ec64736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055"
|
|
346
|
+
}
|