@keep-network/tbtc-v2 0.1.1-dev.53 → 0.1.1-dev.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/Bank.json +3 -3
- package/artifacts/Bridge.json +626 -254
- package/artifacts/Deposit.json +7 -7
- package/artifacts/DepositSweep.json +76 -0
- package/artifacts/EcdsaDkgValidator.json +1 -1
- package/artifacts/EcdsaInactivity.json +1 -1
- package/artifacts/Fraud.json +8 -8
- package/artifacts/KeepRegistry.json +1 -1
- package/artifacts/KeepStake.json +2 -2
- package/artifacts/KeepToken.json +2 -2
- package/artifacts/KeepTokenStaking.json +1 -1
- package/artifacts/MovingFunds.json +44 -13
- package/artifacts/NuCypherStakingEscrow.json +1 -1
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeaconStub.json +1 -1
- package/artifacts/Redemption.json +11 -11
- package/artifacts/ReimbursementPool.json +2 -2
- package/artifacts/Relay.json +9 -9
- package/artifacts/SortitionPool.json +2 -2
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +3 -3
- package/artifacts/TBTCToken.json +3 -3
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +10 -10
- package/artifacts/VendingMachineKeep.json +1 -1
- package/artifacts/VendingMachineNuCypher.json +1 -1
- package/artifacts/WalletRegistry.json +2 -2
- package/artifacts/WalletRegistryGovernance.json +2 -2
- package/artifacts/Wallets.json +7 -7
- package/artifacts/solcInputs/{fa22a04615b4037761340d27e55c86ee.json → 5dd2a7c685770548b7ea9ce25e179326.json} +11 -11
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/Bridge.sol/Bridge.json +328 -128
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +29 -11
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
- package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +4 -0
- package/build/contracts/bridge/{Sweep.sol/Sweep.json → DepositSweep.sol/DepositSweep.json} +4 -4
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +21 -2
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/contracts/bridge/BitcoinTx.sol +69 -0
- package/contracts/bridge/Bridge.sol +176 -55
- package/contracts/bridge/BridgeState.sol +107 -44
- package/contracts/bridge/{Sweep.sol → DepositSweep.sol} +30 -18
- package/contracts/bridge/Fraud.sol +1 -1
- package/contracts/bridge/MovingFunds.sol +485 -79
- package/contracts/bridge/Redemption.sol +4 -4
- package/deploy/05_deploy_bridge.ts +5 -2
- package/export.json +375 -94
- package/package.json +1 -1
- package/artifacts/Sweep.json +0 -76
- package/build/contracts/bridge/Sweep.sol/Sweep.dbg.json +0 -4
|
@@ -217,16 +217,10 @@
|
|
|
217
217
|
{
|
|
218
218
|
"anonymous": false,
|
|
219
219
|
"inputs": [
|
|
220
|
-
{
|
|
221
|
-
"indexed": false,
|
|
222
|
-
"internalType": "uint96",
|
|
223
|
-
"name": "fraudSlashingAmount",
|
|
224
|
-
"type": "uint96"
|
|
225
|
-
},
|
|
226
220
|
{
|
|
227
221
|
"indexed": false,
|
|
228
222
|
"internalType": "uint256",
|
|
229
|
-
"name": "
|
|
223
|
+
"name": "fraudChallengeDepositAmount",
|
|
230
224
|
"type": "uint256"
|
|
231
225
|
},
|
|
232
226
|
{
|
|
@@ -235,10 +229,16 @@
|
|
|
235
229
|
"name": "fraudChallengeDefeatTimeout",
|
|
236
230
|
"type": "uint256"
|
|
237
231
|
},
|
|
232
|
+
{
|
|
233
|
+
"indexed": false,
|
|
234
|
+
"internalType": "uint96",
|
|
235
|
+
"name": "fraudSlashingAmount",
|
|
236
|
+
"type": "uint96"
|
|
237
|
+
},
|
|
238
238
|
{
|
|
239
239
|
"indexed": false,
|
|
240
240
|
"internalType": "uint256",
|
|
241
|
-
"name": "
|
|
241
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
242
242
|
"type": "uint256"
|
|
243
243
|
}
|
|
244
244
|
],
|
|
@@ -264,6 +264,25 @@
|
|
|
264
264
|
"name": "GovernanceTransferred",
|
|
265
265
|
"type": "event"
|
|
266
266
|
},
|
|
267
|
+
{
|
|
268
|
+
"anonymous": false,
|
|
269
|
+
"inputs": [
|
|
270
|
+
{
|
|
271
|
+
"indexed": false,
|
|
272
|
+
"internalType": "bytes20",
|
|
273
|
+
"name": "walletPubKeyHash",
|
|
274
|
+
"type": "bytes20"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"indexed": false,
|
|
278
|
+
"internalType": "bytes32",
|
|
279
|
+
"name": "sweepTxHash",
|
|
280
|
+
"type": "bytes32"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"name": "MovedFundsSwept",
|
|
284
|
+
"type": "event"
|
|
285
|
+
},
|
|
267
286
|
{
|
|
268
287
|
"anonymous": false,
|
|
269
288
|
"inputs": [
|
|
@@ -330,16 +349,34 @@
|
|
|
330
349
|
"name": "movingFundsTxMaxTotalFee",
|
|
331
350
|
"type": "uint64"
|
|
332
351
|
},
|
|
352
|
+
{
|
|
353
|
+
"indexed": false,
|
|
354
|
+
"internalType": "uint64",
|
|
355
|
+
"name": "movingFundsDustThreshold",
|
|
356
|
+
"type": "uint64"
|
|
357
|
+
},
|
|
333
358
|
{
|
|
334
359
|
"indexed": false,
|
|
335
360
|
"internalType": "uint32",
|
|
336
361
|
"name": "movingFundsTimeout",
|
|
337
362
|
"type": "uint32"
|
|
338
363
|
},
|
|
364
|
+
{
|
|
365
|
+
"indexed": false,
|
|
366
|
+
"internalType": "uint96",
|
|
367
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
368
|
+
"type": "uint96"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"indexed": false,
|
|
372
|
+
"internalType": "uint256",
|
|
373
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
374
|
+
"type": "uint256"
|
|
375
|
+
},
|
|
339
376
|
{
|
|
340
377
|
"indexed": false,
|
|
341
378
|
"internalType": "uint64",
|
|
342
|
-
"name": "
|
|
379
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
343
380
|
"type": "uint64"
|
|
344
381
|
}
|
|
345
382
|
],
|
|
@@ -876,14 +913,9 @@
|
|
|
876
913
|
"inputs": [],
|
|
877
914
|
"name": "fraudParameters",
|
|
878
915
|
"outputs": [
|
|
879
|
-
{
|
|
880
|
-
"internalType": "uint96",
|
|
881
|
-
"name": "fraudSlashingAmount",
|
|
882
|
-
"type": "uint96"
|
|
883
|
-
},
|
|
884
916
|
{
|
|
885
917
|
"internalType": "uint256",
|
|
886
|
-
"name": "
|
|
918
|
+
"name": "fraudChallengeDepositAmount",
|
|
887
919
|
"type": "uint256"
|
|
888
920
|
},
|
|
889
921
|
{
|
|
@@ -891,9 +923,14 @@
|
|
|
891
923
|
"name": "fraudChallengeDefeatTimeout",
|
|
892
924
|
"type": "uint256"
|
|
893
925
|
},
|
|
926
|
+
{
|
|
927
|
+
"internalType": "uint96",
|
|
928
|
+
"name": "fraudSlashingAmount",
|
|
929
|
+
"type": "uint96"
|
|
930
|
+
},
|
|
894
931
|
{
|
|
895
932
|
"internalType": "uint256",
|
|
896
|
-
"name": "
|
|
933
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
897
934
|
"type": "uint256"
|
|
898
935
|
}
|
|
899
936
|
],
|
|
@@ -945,6 +982,47 @@
|
|
|
945
982
|
"stateMutability": "view",
|
|
946
983
|
"type": "function"
|
|
947
984
|
},
|
|
985
|
+
{
|
|
986
|
+
"inputs": [
|
|
987
|
+
{
|
|
988
|
+
"internalType": "uint256",
|
|
989
|
+
"name": "requestKey",
|
|
990
|
+
"type": "uint256"
|
|
991
|
+
}
|
|
992
|
+
],
|
|
993
|
+
"name": "movedFundsSweepRequests",
|
|
994
|
+
"outputs": [
|
|
995
|
+
{
|
|
996
|
+
"components": [
|
|
997
|
+
{
|
|
998
|
+
"internalType": "bytes20",
|
|
999
|
+
"name": "walletPubKeyHash",
|
|
1000
|
+
"type": "bytes20"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"internalType": "uint64",
|
|
1004
|
+
"name": "value",
|
|
1005
|
+
"type": "uint64"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"internalType": "uint32",
|
|
1009
|
+
"name": "createdAt",
|
|
1010
|
+
"type": "uint32"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"internalType": "uint32",
|
|
1014
|
+
"name": "sweptAt",
|
|
1015
|
+
"type": "uint32"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"internalType": "struct MovingFunds.MovedFundsSweepRequest",
|
|
1019
|
+
"name": "",
|
|
1020
|
+
"type": "tuple"
|
|
1021
|
+
}
|
|
1022
|
+
],
|
|
1023
|
+
"stateMutability": "view",
|
|
1024
|
+
"type": "function"
|
|
1025
|
+
},
|
|
948
1026
|
{
|
|
949
1027
|
"inputs": [],
|
|
950
1028
|
"name": "movingFundsParameters",
|
|
@@ -954,14 +1032,29 @@
|
|
|
954
1032
|
"name": "movingFundsTxMaxTotalFee",
|
|
955
1033
|
"type": "uint64"
|
|
956
1034
|
},
|
|
1035
|
+
{
|
|
1036
|
+
"internalType": "uint64",
|
|
1037
|
+
"name": "movingFundsDustThreshold",
|
|
1038
|
+
"type": "uint64"
|
|
1039
|
+
},
|
|
957
1040
|
{
|
|
958
1041
|
"internalType": "uint32",
|
|
959
1042
|
"name": "movingFundsTimeout",
|
|
960
1043
|
"type": "uint32"
|
|
961
1044
|
},
|
|
1045
|
+
{
|
|
1046
|
+
"internalType": "uint96",
|
|
1047
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
1048
|
+
"type": "uint96"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"internalType": "uint256",
|
|
1052
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
1053
|
+
"type": "uint256"
|
|
1054
|
+
},
|
|
962
1055
|
{
|
|
963
1056
|
"internalType": "uint64",
|
|
964
|
-
"name": "
|
|
1057
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
965
1058
|
"type": "uint64"
|
|
966
1059
|
}
|
|
967
1060
|
],
|
|
@@ -1067,6 +1160,11 @@
|
|
|
1067
1160
|
"internalType": "bytes20",
|
|
1068
1161
|
"name": "walletPubKeyHash",
|
|
1069
1162
|
"type": "bytes20"
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"internalType": "uint32[]",
|
|
1166
|
+
"name": "walletMembersIDs",
|
|
1167
|
+
"type": "uint32[]"
|
|
1070
1168
|
}
|
|
1071
1169
|
],
|
|
1072
1170
|
"name": "notifyMovingFundsTimeout",
|
|
@@ -1386,49 +1484,53 @@
|
|
|
1386
1484
|
{
|
|
1387
1485
|
"inputs": [
|
|
1388
1486
|
{
|
|
1389
|
-
"
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1487
|
+
"components": [
|
|
1488
|
+
{
|
|
1489
|
+
"internalType": "bytes4",
|
|
1490
|
+
"name": "version",
|
|
1491
|
+
"type": "bytes4"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"internalType": "bytes",
|
|
1495
|
+
"name": "inputVector",
|
|
1496
|
+
"type": "bytes"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"internalType": "bytes",
|
|
1500
|
+
"name": "outputVector",
|
|
1501
|
+
"type": "bytes"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"internalType": "bytes4",
|
|
1505
|
+
"name": "locktime",
|
|
1506
|
+
"type": "bytes4"
|
|
1507
|
+
}
|
|
1508
|
+
],
|
|
1509
|
+
"internalType": "struct BitcoinTx.Info",
|
|
1510
|
+
"name": "sweepTx",
|
|
1511
|
+
"type": "tuple"
|
|
1397
1512
|
},
|
|
1398
1513
|
{
|
|
1399
1514
|
"components": [
|
|
1400
1515
|
{
|
|
1401
|
-
"internalType": "
|
|
1402
|
-
"name": "
|
|
1403
|
-
"type": "
|
|
1516
|
+
"internalType": "bytes",
|
|
1517
|
+
"name": "merkleProof",
|
|
1518
|
+
"type": "bytes"
|
|
1404
1519
|
},
|
|
1405
1520
|
{
|
|
1406
|
-
"internalType": "
|
|
1407
|
-
"name": "
|
|
1408
|
-
"type": "
|
|
1521
|
+
"internalType": "uint256",
|
|
1522
|
+
"name": "txIndexInBlock",
|
|
1523
|
+
"type": "uint256"
|
|
1409
1524
|
},
|
|
1410
1525
|
{
|
|
1411
|
-
"internalType": "
|
|
1412
|
-
"name": "
|
|
1413
|
-
"type": "
|
|
1526
|
+
"internalType": "bytes",
|
|
1527
|
+
"name": "bitcoinHeaders",
|
|
1528
|
+
"type": "bytes"
|
|
1414
1529
|
}
|
|
1415
1530
|
],
|
|
1416
|
-
"internalType": "struct BitcoinTx.
|
|
1417
|
-
"name": "
|
|
1531
|
+
"internalType": "struct BitcoinTx.Proof",
|
|
1532
|
+
"name": "sweepProof",
|
|
1418
1533
|
"type": "tuple"
|
|
1419
|
-
}
|
|
1420
|
-
],
|
|
1421
|
-
"name": "submitFraudChallenge",
|
|
1422
|
-
"outputs": [],
|
|
1423
|
-
"stateMutability": "payable",
|
|
1424
|
-
"type": "function"
|
|
1425
|
-
},
|
|
1426
|
-
{
|
|
1427
|
-
"inputs": [
|
|
1428
|
-
{
|
|
1429
|
-
"internalType": "bytes20",
|
|
1430
|
-
"name": "walletPubKeyHash",
|
|
1431
|
-
"type": "bytes20"
|
|
1432
1534
|
},
|
|
1433
1535
|
{
|
|
1434
1536
|
"components": [
|
|
@@ -1449,28 +1551,53 @@
|
|
|
1449
1551
|
}
|
|
1450
1552
|
],
|
|
1451
1553
|
"internalType": "struct BitcoinTx.UTXO",
|
|
1452
|
-
"name": "
|
|
1554
|
+
"name": "mainUtxo",
|
|
1453
1555
|
"type": "tuple"
|
|
1454
|
-
}
|
|
1556
|
+
}
|
|
1557
|
+
],
|
|
1558
|
+
"name": "submitDepositSweepProof",
|
|
1559
|
+
"outputs": [],
|
|
1560
|
+
"stateMutability": "nonpayable",
|
|
1561
|
+
"type": "function"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"inputs": [
|
|
1455
1565
|
{
|
|
1456
|
-
"internalType": "
|
|
1457
|
-
"name": "
|
|
1458
|
-
"type": "
|
|
1566
|
+
"internalType": "bytes",
|
|
1567
|
+
"name": "walletPublicKey",
|
|
1568
|
+
"type": "bytes"
|
|
1459
1569
|
},
|
|
1460
1570
|
{
|
|
1461
|
-
"internalType": "
|
|
1462
|
-
"name": "
|
|
1463
|
-
"type": "
|
|
1571
|
+
"internalType": "bytes32",
|
|
1572
|
+
"name": "sighash",
|
|
1573
|
+
"type": "bytes32"
|
|
1464
1574
|
},
|
|
1465
1575
|
{
|
|
1466
|
-
"
|
|
1467
|
-
|
|
1468
|
-
|
|
1576
|
+
"components": [
|
|
1577
|
+
{
|
|
1578
|
+
"internalType": "bytes32",
|
|
1579
|
+
"name": "r",
|
|
1580
|
+
"type": "bytes32"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"internalType": "bytes32",
|
|
1584
|
+
"name": "s",
|
|
1585
|
+
"type": "bytes32"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"internalType": "uint8",
|
|
1589
|
+
"name": "v",
|
|
1590
|
+
"type": "uint8"
|
|
1591
|
+
}
|
|
1592
|
+
],
|
|
1593
|
+
"internalType": "struct BitcoinTx.RSVSignature",
|
|
1594
|
+
"name": "signature",
|
|
1595
|
+
"type": "tuple"
|
|
1469
1596
|
}
|
|
1470
1597
|
],
|
|
1471
|
-
"name": "
|
|
1598
|
+
"name": "submitFraudChallenge",
|
|
1472
1599
|
"outputs": [],
|
|
1473
|
-
"stateMutability": "
|
|
1600
|
+
"stateMutability": "payable",
|
|
1474
1601
|
"type": "function"
|
|
1475
1602
|
},
|
|
1476
1603
|
{
|
|
@@ -1499,7 +1626,7 @@
|
|
|
1499
1626
|
}
|
|
1500
1627
|
],
|
|
1501
1628
|
"internalType": "struct BitcoinTx.Info",
|
|
1502
|
-
"name": "
|
|
1629
|
+
"name": "sweepTx",
|
|
1503
1630
|
"type": "tuple"
|
|
1504
1631
|
},
|
|
1505
1632
|
{
|
|
@@ -1521,7 +1648,7 @@
|
|
|
1521
1648
|
}
|
|
1522
1649
|
],
|
|
1523
1650
|
"internalType": "struct BitcoinTx.Proof",
|
|
1524
|
-
"name": "
|
|
1651
|
+
"name": "sweepProof",
|
|
1525
1652
|
"type": "tuple"
|
|
1526
1653
|
},
|
|
1527
1654
|
{
|
|
@@ -1545,14 +1672,59 @@
|
|
|
1545
1672
|
"internalType": "struct BitcoinTx.UTXO",
|
|
1546
1673
|
"name": "mainUtxo",
|
|
1547
1674
|
"type": "tuple"
|
|
1548
|
-
}
|
|
1675
|
+
}
|
|
1676
|
+
],
|
|
1677
|
+
"name": "submitMovedFundsSweepProof",
|
|
1678
|
+
"outputs": [],
|
|
1679
|
+
"stateMutability": "nonpayable",
|
|
1680
|
+
"type": "function"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"inputs": [
|
|
1549
1684
|
{
|
|
1550
1685
|
"internalType": "bytes20",
|
|
1551
1686
|
"name": "walletPubKeyHash",
|
|
1552
1687
|
"type": "bytes20"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"components": [
|
|
1691
|
+
{
|
|
1692
|
+
"internalType": "bytes32",
|
|
1693
|
+
"name": "txHash",
|
|
1694
|
+
"type": "bytes32"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"internalType": "uint32",
|
|
1698
|
+
"name": "txOutputIndex",
|
|
1699
|
+
"type": "uint32"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"internalType": "uint64",
|
|
1703
|
+
"name": "txOutputValue",
|
|
1704
|
+
"type": "uint64"
|
|
1705
|
+
}
|
|
1706
|
+
],
|
|
1707
|
+
"internalType": "struct BitcoinTx.UTXO",
|
|
1708
|
+
"name": "walletMainUtxo",
|
|
1709
|
+
"type": "tuple"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"internalType": "uint32[]",
|
|
1713
|
+
"name": "walletMembersIDs",
|
|
1714
|
+
"type": "uint32[]"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"internalType": "uint256",
|
|
1718
|
+
"name": "walletMemberIndex",
|
|
1719
|
+
"type": "uint256"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"internalType": "bytes20[]",
|
|
1723
|
+
"name": "targetWallets",
|
|
1724
|
+
"type": "bytes20[]"
|
|
1553
1725
|
}
|
|
1554
1726
|
],
|
|
1555
|
-
"name": "
|
|
1727
|
+
"name": "submitMovingFundsCommitment",
|
|
1556
1728
|
"outputs": [],
|
|
1557
1729
|
"stateMutability": "nonpayable",
|
|
1558
1730
|
"type": "function"
|
|
@@ -1583,7 +1755,7 @@
|
|
|
1583
1755
|
}
|
|
1584
1756
|
],
|
|
1585
1757
|
"internalType": "struct BitcoinTx.Info",
|
|
1586
|
-
"name": "
|
|
1758
|
+
"name": "movingFundsTx",
|
|
1587
1759
|
"type": "tuple"
|
|
1588
1760
|
},
|
|
1589
1761
|
{
|
|
@@ -1605,7 +1777,7 @@
|
|
|
1605
1777
|
}
|
|
1606
1778
|
],
|
|
1607
1779
|
"internalType": "struct BitcoinTx.Proof",
|
|
1608
|
-
"name": "
|
|
1780
|
+
"name": "movingFundsProof",
|
|
1609
1781
|
"type": "tuple"
|
|
1610
1782
|
},
|
|
1611
1783
|
{
|
|
@@ -1636,7 +1808,7 @@
|
|
|
1636
1808
|
"type": "bytes20"
|
|
1637
1809
|
}
|
|
1638
1810
|
],
|
|
1639
|
-
"name": "
|
|
1811
|
+
"name": "submitMovingFundsProof",
|
|
1640
1812
|
"outputs": [],
|
|
1641
1813
|
"stateMutability": "nonpayable",
|
|
1642
1814
|
"type": "function"
|
|
@@ -1667,7 +1839,7 @@
|
|
|
1667
1839
|
}
|
|
1668
1840
|
],
|
|
1669
1841
|
"internalType": "struct BitcoinTx.Info",
|
|
1670
|
-
"name": "
|
|
1842
|
+
"name": "redemptionTx",
|
|
1671
1843
|
"type": "tuple"
|
|
1672
1844
|
},
|
|
1673
1845
|
{
|
|
@@ -1689,7 +1861,7 @@
|
|
|
1689
1861
|
}
|
|
1690
1862
|
],
|
|
1691
1863
|
"internalType": "struct BitcoinTx.Proof",
|
|
1692
|
-
"name": "
|
|
1864
|
+
"name": "redemptionProof",
|
|
1693
1865
|
"type": "tuple"
|
|
1694
1866
|
},
|
|
1695
1867
|
{
|
|
@@ -1713,9 +1885,14 @@
|
|
|
1713
1885
|
"internalType": "struct BitcoinTx.UTXO",
|
|
1714
1886
|
"name": "mainUtxo",
|
|
1715
1887
|
"type": "tuple"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"internalType": "bytes20",
|
|
1891
|
+
"name": "walletPubKeyHash",
|
|
1892
|
+
"type": "bytes20"
|
|
1716
1893
|
}
|
|
1717
1894
|
],
|
|
1718
|
-
"name": "
|
|
1895
|
+
"name": "submitRedemptionProof",
|
|
1719
1896
|
"outputs": [],
|
|
1720
1897
|
"stateMutability": "nonpayable",
|
|
1721
1898
|
"type": "function"
|
|
@@ -1830,14 +2007,9 @@
|
|
|
1830
2007
|
},
|
|
1831
2008
|
{
|
|
1832
2009
|
"inputs": [
|
|
1833
|
-
{
|
|
1834
|
-
"internalType": "uint96",
|
|
1835
|
-
"name": "fraudSlashingAmount",
|
|
1836
|
-
"type": "uint96"
|
|
1837
|
-
},
|
|
1838
2010
|
{
|
|
1839
2011
|
"internalType": "uint256",
|
|
1840
|
-
"name": "
|
|
2012
|
+
"name": "fraudChallengeDepositAmount",
|
|
1841
2013
|
"type": "uint256"
|
|
1842
2014
|
},
|
|
1843
2015
|
{
|
|
@@ -1845,9 +2017,14 @@
|
|
|
1845
2017
|
"name": "fraudChallengeDefeatTimeout",
|
|
1846
2018
|
"type": "uint256"
|
|
1847
2019
|
},
|
|
2020
|
+
{
|
|
2021
|
+
"internalType": "uint96",
|
|
2022
|
+
"name": "fraudSlashingAmount",
|
|
2023
|
+
"type": "uint96"
|
|
2024
|
+
},
|
|
1848
2025
|
{
|
|
1849
2026
|
"internalType": "uint256",
|
|
1850
|
-
"name": "
|
|
2027
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
1851
2028
|
"type": "uint256"
|
|
1852
2029
|
}
|
|
1853
2030
|
],
|
|
@@ -1863,14 +2040,29 @@
|
|
|
1863
2040
|
"name": "movingFundsTxMaxTotalFee",
|
|
1864
2041
|
"type": "uint64"
|
|
1865
2042
|
},
|
|
2043
|
+
{
|
|
2044
|
+
"internalType": "uint64",
|
|
2045
|
+
"name": "movingFundsDustThreshold",
|
|
2046
|
+
"type": "uint64"
|
|
2047
|
+
},
|
|
1866
2048
|
{
|
|
1867
2049
|
"internalType": "uint32",
|
|
1868
2050
|
"name": "movingFundsTimeout",
|
|
1869
2051
|
"type": "uint32"
|
|
1870
2052
|
},
|
|
2053
|
+
{
|
|
2054
|
+
"internalType": "uint96",
|
|
2055
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
2056
|
+
"type": "uint96"
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
"internalType": "uint256",
|
|
2060
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
2061
|
+
"type": "uint256"
|
|
2062
|
+
},
|
|
1871
2063
|
{
|
|
1872
2064
|
"internalType": "uint64",
|
|
1873
|
-
"name": "
|
|
2065
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
1874
2066
|
"type": "uint64"
|
|
1875
2067
|
}
|
|
1876
2068
|
],
|
|
@@ -2065,14 +2257,22 @@
|
|
|
2065
2257
|
"type": "function"
|
|
2066
2258
|
}
|
|
2067
2259
|
],
|
|
2068
|
-
"bytecode": "0x60806040523480156200001157600080fd5b5060405162003c7838038062003c788339810160408190526200003491620003a2565b6001600160a01b038516620000905760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b03878116919091179091558416620001005760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000087565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001855760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000087565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620001f55760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000087565b6005805460048390556001600160a01b0385166001600160e01b031991821617613d0960a61b17909155600680546001600160801b031990811669271000000000000007d090811790925560098054600a80549093169093179091556202a300600b55600c805469021e19e0c9bab24000006001600160601b031991821681179092556064600d81905593909416760f42400000000000004e2000093a80000000000000271017909155601080549093161790915560115562093a80601255671bc16d674ec800006013557eeff1000000000002faf08000000002540be4000000000005f5e10000093a80601655601780546001600160c01b0316621dcd6560c91b179055601880546234bc0063ffffffff19909116179055620003193362000324565b505050505062000409565b600080546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b80516001600160a01b03811681146200039d57600080fd5b919050565b600080600080600060a08688031215620003bb57600080fd5b620003c68662000385565b9450620003d66020870162000385565b9350620003e66040870162000385565b9250620003f66060870162000385565b9150608086015190509295509295909350565b61385f80620004196000396000f3fe6080604052600436106102d15760003560e01c80636e70ce4111610179578063b2146cd6116100d6578063c8b5d2db1161008a578063ded1d24a11610064578063ded1d24a14610cf1578063e53c0b5514610d1d578063e65e19d514610d5657600080fd5b8063c8b5d2db14610c91578063d38bfff414610cb1578063d6eccdf014610cd157600080fd5b8063b34b3216116100bb578063b34b321614610bda578063be05abe314610bfa578063c42b64d014610c4557600080fd5b8063b2146cd614610b7a578063b216bd3514610bba57600080fd5b8063a145e2d51161012d578063a9de2f3a11610112578063a9de2f3a146109d5578063abaeed8f14610a15578063b02c43d014610a3557600080fd5b8063a145e2d514610995578063a8fa0f42146109b557600080fd5b806377145f211161015e57806377145f2114610935578063883d6a11146109555780638c3992dd1461097557600080fd5b80636e70ce411461087557806375b922d1146108ed57600080fd5b806333e957cb116102325780635aa6e675116101e657806361ccf97a116101c057806361ccf97a146107a757806361d027b3146108445780636d02b43c1461086257600080fd5b80635aa6e6751461072f5780635c0b48121461076757806360d712fc1461078757600080fd5b80634fb1b4c6116102175780634fb1b4c6146106cf578063575e4279146106ef57806359a9d90a1461070f57600080fd5b806333e957cb146105d05780633dce9812146106af57600080fd5b806324028c11116102895780632f429b641161026e5780632f429b6414610570578063319a33a91461059057806331a4889a146105b057600080fd5b806324028c11146105205780632bb818c21461055257600080fd5b80630b6ba19d116102ba5780630b6ba19d1461042257806310760882146104e057806317c964001461050057600080fd5b806303d952f7146102d657806307f7d22314610400575b600080fd5b3480156102e257600080fd5b506103946102f1366004612930565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600e6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103f79190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040c57600080fd5b5061042061041b36600461297e565b610d83565b005b34801561042e57600080fd5b5061039461043d366004612930565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600f6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104ec57600080fd5b506104206104fb3660046129ce565b610e0c565b34801561050c57600080fd5b5061042061051b366004612a1f565b610e7f565b34801561052c57600080fd5b50601754600160a01b900463ffffffff1660405163ffffffff90911681526020016103f7565b34801561055e57600080fd5b506004546040519081526020016103f7565b34801561057c57600080fd5b5061042061058b366004612a74565b610eeb565b34801561059c57600080fd5b506104206105ab366004612afa565b610f78565b3480156105bc57600080fd5b506104206105cb366004612baa565b611008565b3480156105dc57600080fd5b5061066b6105eb366004612930565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260146020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103f7919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b3480156106bb57600080fd5b506104206106ca366004612c2b565b61109a565b3480156106db57600080fd5b506104206106ea366004612c57565b61112a565b3480156106fb57600080fd5b5061042061070a36600461297e565b611185565b34801561071b57600080fd5b5061042061072a366004612ccb565b6111da565b34801561073b57600080fd5b5060005461074f906001600160a01b031681565b6040516001600160a01b0390911681526020016103f7565b34801561077357600080fd5b50610420610782366004612d37565b611231565b34801561079357600080fd5b506104206107a2366004612db9565b611286565b3480156107b357600080fd5b506016546017546018546040805163ffffffff808616825267ffffffffffffffff640100000000870481166020840152600160601b8704811693830193909352600160a01b860483166060830152600160e01b9095048516608082015278010000000000000000000000000000000000000000000000009093041660a08301529190911660c082015260e0016103f7565b34801561085057600080fd5b506005546001600160a01b031661074f565b610420610870366004612de3565b61133f565b34801561088157600080fd5b50600954600a54600b54600c54600d5460408051600160a01b90960467ffffffffffffffff90811687528086166020880152600160401b9095049094169385019390935260608401919091526bffffffffffffffffffffffff16608083015260a082015260c0016103f7565b3480156108f957600080fd5b50601054601154601254601354604080516bffffffffffffffffffffffff909516855260208501939093529183015260608201526080016103f7565b34801561094157600080fd5b50610420610950366004612e36565b611398565b34801561096157600080fd5b50610420610970366004612ecb565b6113f3565b34801561098157600080fd5b50610420610990366004612f51565b61145e565b3480156109a157600080fd5b506104206109b0366004612f7d565b6114c5565b3480156109c157600080fd5b506104206109d0366004612c2b565b611518565b3480156109e157600080fd5b50600154600254600354604080516001600160a01b03948516815292841660208401529216918101919091526060016103f7565b348015610a2157600080fd5b50610420610a30366004612f99565b61157e565b348015610a4157600080fd5b50610b04610a50366004612930565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103f79190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610b8657600080fd5b50610baa610b95366004612930565b60009081526015602052604090205460ff1690565b60405190151581526020016103f7565b348015610bc657600080fd5b50610420610bd5366004613035565b611616565b348015610be657600080fd5b50610420610bf5366004612a74565b611680565b348015610c0657600080fd5b506009546040805167ffffffffffffffff808416825263ffffffff600160401b8504166020830152600160601b909304909216908201526060016103f7565b348015610c5157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103f7565b348015610c9d57600080fd5b50610420610cac366004612afa565b6116d9565b348015610cbd57600080fd5b50610420610ccc36600461309b565b6116e7565b348015610cdd57600080fd5b50610420610cec3660046130b6565b6117c6565b348015610cfd57600080fd5b5060175460601b6040516001600160601b031990911681526020016103f7565b348015610d2957600080fd5b50610baa610d3836600461309b565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610d6257600080fd5b50610d76610d71366004612afa565b611821565b6040516103f79190613137565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610dd89060019086908690600401613202565b60006040518083038186803b158015610df057600080fd5b505af4158015610e04573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b610e79600185858585611926565b50505050565b6000546001600160a01b03163314610ed95760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610ee66001848484611a9b565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610f429060019088908890889088906004016133b9565b60006040518083038186803b158015610f5a57600080fd5b505af4158015610f6e573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526001600160601b03198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610fed57600080fd5b505af4158015611001573d6000803e3d6000fd5b5050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110639060019089908990899089908990600401613457565b60006040518083038186803b15801561107b57600080fd5b505af415801561108f573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561110d57600080fd5b505af4158015611121573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a869061106390600190899089908990899089906004016134a6565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610dd89060019086908690600401613202565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a906110f5906001908790879087906004016134e7565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610dd8906001908690869060040161352b565b6000546001600160a01b031633146112e05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610f4290600190889088908890889060040161365e565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe9061106390600190899089908990899089906004016136b8565b6000546001600160a01b0316331461144d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b611121600188888888888888611cd3565b6000546001600160a01b031633146114b85760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610ee660018484846120a3565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610fd59060019085906004016136fb565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c9906084016110f5565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906115dd906001908b908b908b908b908b908b908b9060040161370f565b60006040518083038186803b1580156115f557600080fd5b505af4158015611609573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b031633146116705760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610e0460018787878787876122c4565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610f429060019088908890889088906004016133b9565b6116e460018261265b565b50565b6000546001600160a01b031633146117415760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b6001600160a01b0381166117bd5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e62565b6116e4816127b3565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b36990611063906001908990899089908990899060040161379f565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526001600160601b0319821660009081526019602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b90910416600581111561190057611900613121565b600581111561191157611911613121565b81526020016003820154815250509050919050565b606483111561199d5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610e62565b60008211611a135760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610e62565b600f850180546001600160601b0319166bffffffffffffffffffffffff861690811790915560108601849055601186018390556012860182905560408051918252602082018590528101839052606081018290527f05a00d49ab61707f55232992ae68b57d8ed6e071aa0f9b88f992f19215a5f0869060800160405180910390a15050505050565b60008367ffffffffffffffff1611611b1b5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610e62565b60008267ffffffffffffffff1611611b9b5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610e62565b60008167ffffffffffffffff1611611c1b5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b5906060015b60405180910390a150505050565b8567ffffffffffffffff168567ffffffffffffffff1611611d825760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610e62565b60008467ffffffffffffffff1611611e025760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610e62565b60008267ffffffffffffffff1611611e825760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b60008163ffffffff1611611efe5760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610e62565b868860150160006101000a81548163ffffffff021916908363ffffffff160217905550858860150160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508488601501600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550838860150160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508288601501601c6101000a81548163ffffffff021916908363ffffffff160217905550818860160160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808860170160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612091979695949392919063ffffffff978816815267ffffffffffffffff968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008367ffffffffffffffff1611612125576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610e62565b60008263ffffffff16116121a15760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610e62565b60008167ffffffffffffffff16116122215760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b60088401805467ffffffffffffffff838116600160601b81027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff63ffffffff8816600160401b81026001600160601b0319909616948a16948517959095171617909355604080519182526020820192909252908101919091527f3bc8e35585937de0df227d080c3587c7aadd7630aa377299d63a5bb67fc07d8a90606001611cc5565b60008667ffffffffffffffff16116123445760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610e62565b60008567ffffffffffffffff16116123c45760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610e62565b60008467ffffffffffffffff16116124445760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610e62565b600083116124ba5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610e62565b60648111156125575760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610e62565b6008870180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff898116918202929092179092556009890180548883166fffffffffffffffffffffffffffffffff199091168117600160401b93891693840217909155600a8a01869055600b8a0180546001600160601b0319166bffffffffffffffffffffffff8716908117909155600c8b018590556040805194855260208501929092529083019190915260608201859052608082015260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b6001600160601b031981166000908152601883016020526040902060036002820154600160a01b900460ff16600581111561269857612698613121565b1461270b5760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610e62565b6017830154600282015461272f9163ffffffff90811691600160801b9004166137f3565b63ffffffff1642116127a95760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610e62565b610ee6838361282c565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b0319811660008181526018840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916129029160040190815260200190565b600060405180830381600087803b15801561291c57600080fd5b505af1158015611121573d6000803e3d6000fd5b60006020828403121561294257600080fd5b5035919050565b80356001600160601b03198116811461296157600080fd5b919050565b60006060828403121561297857600080fd5b50919050565b6000806080838503121561299157600080fd5b61299a83612949565b91506129a98460208501612966565b90509250929050565b80356bffffffffffffffffffffffff8116811461296157600080fd5b600080600080608085870312156129e457600080fd5b6129ed856129b2565b966020860135965060408601359560600135945092505050565b803567ffffffffffffffff8116811461296157600080fd5b600080600060608486031215612a3457600080fd5b612a3d84612a07565b9250612a4b60208501612a07565b9150612a5960408501612a07565b90509250925092565b60006080828403121561297857600080fd5b60008060008060c08587031215612a8a57600080fd5b843567ffffffffffffffff80821115612aa257600080fd5b612aae88838901612a62565b95506020870135915080821115612ac457600080fd5b50612ad187828801612966565b935050612ae18660408701612966565b9150612aef60a08601612949565b905092959194509250565b600060208284031215612b0c57600080fd5b612b1582612949565b9392505050565b60008083601f840112612b2e57600080fd5b50813567ffffffffffffffff811115612b4657600080fd5b6020830191508360208260051b8501011115612b6157600080fd5b9250929050565b60008083601f840112612b7a57600080fd5b50813567ffffffffffffffff811115612b9257600080fd5b602083019150836020828501011115612b6157600080fd5b600080600080600060608688031215612bc257600080fd5b612bcb86612949565b9450602086013567ffffffffffffffff80821115612be857600080fd5b612bf489838a01612b1c565b90965094506040880135915080821115612c0d57600080fd5b50612c1a88828901612b68565b969995985093965092949392505050565b600080600060608486031215612c4057600080fd5b505081359360208301359350604090920135919050565b600080600080600060608688031215612c6f57600080fd5b853567ffffffffffffffff80821115612c8757600080fd5b612c9389838a01612b68565b90975095506020880135915080821115612cac57600080fd5b50612cb988828901612b1c565b96999598509660400135949350505050565b600080600060a08486031215612ce057600080fd5b833567ffffffffffffffff80821115612cf857600080fd5b612d0487838801612a62565b94506020860135915080821115612d1a57600080fd5b50612d2786828701612966565b925050612a598560408601612966565b600080828403610100811215612d4c57600080fd5b833567ffffffffffffffff811115612d6357600080fd5b612d6f86828701612a62565b93505060e0601f1982011215612d8457600080fd5b506020830190509250929050565b80356001600160a01b038116811461296157600080fd5b8035801515811461296157600080fd5b60008060408385031215612dcc57600080fd5b612dd583612d92565b91506129a960208401612da9565b60008060008060a08587031215612df957600080fd5b843567ffffffffffffffff811115612e1057600080fd5b612e1c87828801612b68565b90955093505060208501359150612aef8660408701612966565b600080600080600060608688031215612e4e57600080fd5b853567ffffffffffffffff80821115612e6657600080fd5b612e7289838a01612b68565b90975095506020880135915080821115612e8b57600080fd5b50612e9888828901612b68565b9094509250612eab905060408701612da9565b90509295509295909350565b803563ffffffff8116811461296157600080fd5b600080600080600080600060e0888a031215612ee657600080fd5b612eef88612eb7565b9650612efd60208901612a07565b9550612f0b60408901612a07565b9450612f1960608901612a07565b9350612f2760808901612eb7565b9250612f3560a08901612a07565b9150612f4360c08901612eb7565b905092959891949750929550565b600080600060608486031215612f6657600080fd5b612f6f84612a07565b9250612a4b60208501612eb7565b600060608284031215612f8f57600080fd5b612b158383612966565b600080600080600080600060e0888a031215612fb457600080fd5b612fbd88612949565b9650612fcc8960208a01612966565b9550608088013567ffffffffffffffff80821115612fe957600080fd5b612ff58b838c01612b1c565b909750955060a08a0135945060c08a013591508082111561301557600080fd5b506130228a828b01612b1c565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561304e57600080fd5b61305787612a07565b955061306560208801612a07565b945061307360408801612a07565b935060608701359250613088608088016129b2565b915060a087013590509295509295509295565b6000602082840312156130ad57600080fd5b612b1582612d92565b600080600080600060c086880312156130ce57600080fd5b6130d786612949565b94506130e68760208801612966565b9350608086013567ffffffffffffffff81111561310257600080fd5b61310e88828901612b68565b9094509250612eab905060a08701612a07565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106131b157634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b8035825263ffffffff6131dd60208301612eb7565b16602083015267ffffffffffffffff6131f860408301612a07565b1660408301525050565b8381526001600160601b03198316602082015260a0810161322660408301846131c8565b949350505050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461296157600080fd5b6000808335601e1984360301811261327557600080fd5b830160208101925035905067ffffffffffffffff81111561329557600080fd5b803603831315612b6157600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff00000000000000000000000000000000000000000000000000000000806132fa8461322e565b16845261330a602084018461325e565b6080602087015261331f6080870182846132a4565b91505061332f604085018561325e565b86830360408801526133428382846132a4565b92505050816133536060860161322e565b166060860152809250505092915050565b6000613370828361325e565b606085526133826060860182846132a4565b9150506020830135602085015261339c604084018461325e565b85830360408701526133af8382846132a4565b9695505050505050565b85815260e0602082015260006133d260e08301876132cd565b82810360408401526133e48187613364565b9150506133f460608301856131c8565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8183526000602080850194508260005b8581101561344c5763ffffffff61343983612eb7565b1687529582019590820190600101613423565b509495945050505050565b8681526bffffffffffffffffffffffff1986166020820152608060408201526000613486608083018688613413565b82810360608401526134998185876132a4565b9998505050505050505050565b8681526080602082015260006134c06080830187896132a4565b82810360408401526134d3818688613413565b915050826060830152979650505050505050565b84815260c06020820152600061350060c08301866132cd565b82810360408401526135128186613364565b91505061352260608301846131c8565b95945050505050565b6000610120858352806020840152613545818401866132cd565b91505063ffffffff61355684612eb7565b1660408301526001600160a01b0361357060208501612d92565b16606083015260408301357fffffffffffffffff000000000000000000000000000000000000000000000000811681146135a957600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526135dc60608401612949565b6001600160601b03191660a08301526135f760808401612949565b6001600160601b03191660c083015261361260a0840161322e565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261364560c08401612d92565b6001600160a01b03811661010084015250949350505050565b85815260c06020820152600061367860c0830186886132a4565b90508360408301528235606083015260208301356080830152604083013560ff81168082146136a657600080fd5b8060a085015250509695505050505050565b8681526080602082015260006136d26080830187896132a4565b82810360408401526136e58186886132a4565b9150508215156060830152979650505050505050565b82815260808101612b1560208301846131c8565b60006101008a835260206bffffffffffffffffffffffff19808c168286015261373b604086018c6131c8565b8260a086015261374e8386018a8c613413565b60c0860189905285810360e0870152868152879350820160005b8781101561378d578261377a86612949565b1682529383019390830190600101613768565b509d9c50505050505050505050505050565b8681526001600160601b0319861660208201526137bf60408201866131c8565b60e060a082015260006137d660e0830185876132a4565b905067ffffffffffffffff831660c0830152979650505050505050565b600063ffffffff80831681851680830382111561382057634e487b7160e01b600052601160045260246000fd5b0194935050505056fea264697066735822122057136b4c8128b73f3c7d7ceb15a05be9bc0b1afa42ec6283b64b95532d4de4f664736f6c63430008090033",
|
|
2069
|
-
"deployedBytecode": "0x6080604052600436106102d15760003560e01c80636e70ce4111610179578063b2146cd6116100d6578063c8b5d2db1161008a578063ded1d24a11610064578063ded1d24a14610cf1578063e53c0b5514610d1d578063e65e19d514610d5657600080fd5b8063c8b5d2db14610c91578063d38bfff414610cb1578063d6eccdf014610cd157600080fd5b8063b34b3216116100bb578063b34b321614610bda578063be05abe314610bfa578063c42b64d014610c4557600080fd5b8063b2146cd614610b7a578063b216bd3514610bba57600080fd5b8063a145e2d51161012d578063a9de2f3a11610112578063a9de2f3a146109d5578063abaeed8f14610a15578063b02c43d014610a3557600080fd5b8063a145e2d514610995578063a8fa0f42146109b557600080fd5b806377145f211161015e57806377145f2114610935578063883d6a11146109555780638c3992dd1461097557600080fd5b80636e70ce411461087557806375b922d1146108ed57600080fd5b806333e957cb116102325780635aa6e675116101e657806361ccf97a116101c057806361ccf97a146107a757806361d027b3146108445780636d02b43c1461086257600080fd5b80635aa6e6751461072f5780635c0b48121461076757806360d712fc1461078757600080fd5b80634fb1b4c6116102175780634fb1b4c6146106cf578063575e4279146106ef57806359a9d90a1461070f57600080fd5b806333e957cb146105d05780633dce9812146106af57600080fd5b806324028c11116102895780632f429b641161026e5780632f429b6414610570578063319a33a91461059057806331a4889a146105b057600080fd5b806324028c11146105205780632bb818c21461055257600080fd5b80630b6ba19d116102ba5780630b6ba19d1461042257806310760882146104e057806317c964001461050057600080fd5b806303d952f7146102d657806307f7d22314610400575b600080fd5b3480156102e257600080fd5b506103946102f1366004612930565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600e6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b6040516103f79190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561040c57600080fd5b5061042061041b36600461297e565b610d83565b005b34801561042e57600080fd5b5061039461043d366004612930565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152506000908152600f6020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b3480156104ec57600080fd5b506104206104fb3660046129ce565b610e0c565b34801561050c57600080fd5b5061042061051b366004612a1f565b610e7f565b34801561052c57600080fd5b50601754600160a01b900463ffffffff1660405163ffffffff90911681526020016103f7565b34801561055e57600080fd5b506004546040519081526020016103f7565b34801561057c57600080fd5b5061042061058b366004612a74565b610eeb565b34801561059c57600080fd5b506104206105ab366004612afa565b610f78565b3480156105bc57600080fd5b506104206105cb366004612baa565b611008565b3480156105dc57600080fd5b5061066b6105eb366004612930565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260146020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b6040516103f7919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b3480156106bb57600080fd5b506104206106ca366004612c2b565b61109a565b3480156106db57600080fd5b506104206106ea366004612c57565b61112a565b3480156106fb57600080fd5b5061042061070a36600461297e565b611185565b34801561071b57600080fd5b5061042061072a366004612ccb565b6111da565b34801561073b57600080fd5b5060005461074f906001600160a01b031681565b6040516001600160a01b0390911681526020016103f7565b34801561077357600080fd5b50610420610782366004612d37565b611231565b34801561079357600080fd5b506104206107a2366004612db9565b611286565b3480156107b357600080fd5b506016546017546018546040805163ffffffff808616825267ffffffffffffffff640100000000870481166020840152600160601b8704811693830193909352600160a01b860483166060830152600160e01b9095048516608082015278010000000000000000000000000000000000000000000000009093041660a08301529190911660c082015260e0016103f7565b34801561085057600080fd5b506005546001600160a01b031661074f565b610420610870366004612de3565b61133f565b34801561088157600080fd5b50600954600a54600b54600c54600d5460408051600160a01b90960467ffffffffffffffff90811687528086166020880152600160401b9095049094169385019390935260608401919091526bffffffffffffffffffffffff16608083015260a082015260c0016103f7565b3480156108f957600080fd5b50601054601154601254601354604080516bffffffffffffffffffffffff909516855260208501939093529183015260608201526080016103f7565b34801561094157600080fd5b50610420610950366004612e36565b611398565b34801561096157600080fd5b50610420610970366004612ecb565b6113f3565b34801561098157600080fd5b50610420610990366004612f51565b61145e565b3480156109a157600080fd5b506104206109b0366004612f7d565b6114c5565b3480156109c157600080fd5b506104206109d0366004612c2b565b611518565b3480156109e157600080fd5b50600154600254600354604080516001600160a01b03948516815292841660208401529216918101919091526060016103f7565b348015610a2157600080fd5b50610420610a30366004612f99565b61157e565b348015610a4157600080fd5b50610b04610a50366004612930565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b6040516103f79190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610b8657600080fd5b50610baa610b95366004612930565b60009081526015602052604090205460ff1690565b60405190151581526020016103f7565b348015610bc657600080fd5b50610420610bd5366004613035565b611616565b348015610be657600080fd5b50610420610bf5366004612a74565b611680565b348015610c0657600080fd5b506009546040805167ffffffffffffffff808416825263ffffffff600160401b8504166020830152600160601b909304909216908201526060016103f7565b348015610c5157600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b909204909116908201526060016103f7565b348015610c9d57600080fd5b50610420610cac366004612afa565b6116d9565b348015610cbd57600080fd5b50610420610ccc36600461309b565b6116e7565b348015610cdd57600080fd5b50610420610cec3660046130b6565b6117c6565b348015610cfd57600080fd5b5060175460601b6040516001600160601b031990911681526020016103f7565b348015610d2957600080fd5b50610baa610d3836600461309b565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610d6257600080fd5b50610d76610d71366004612afa565b611821565b6040516103f79190613137565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610dd89060019086908690600401613202565b60006040518083038186803b158015610df057600080fd5b505af4158015610e04573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b610e79600185858585611926565b50505050565b6000546001600160a01b03163314610ed95760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610ee66001848484611a9b565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac990610f429060019088908890889088906004016133b9565b60006040518083038186803b158015610f5a57600080fd5b505af4158015610f6e573d6000803e3d6000fd5b5050505050505050565b6040517fb45b31d5000000000000000000000000000000000000000000000000000000008152600160048201526001600160601b03198216602482015273__$edce581bb06331cf4dae1387760565e5d1$__9063b45b31d5906044015b60006040518083038186803b158015610fed57600080fd5b505af4158015611001573d6000803e3d6000fd5b5050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110639060019089908990899089908990600401613457565b60006040518083038186803b15801561107b57600080fd5b505af415801561108f573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561110d57600080fd5b505af4158015611121573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a869061106390600190899089908990899089906004016134a6565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610dd89060019086908690600401613202565b6040517f510fc50a00000000000000000000000000000000000000000000000000000000815273__$61f169726e973bba1227e0c23d2755f88e$__9063510fc50a906110f5906001908790879087906004016134e7565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610dd8906001908690869060040161352b565b6000546001600160a01b031633146112e05760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490610f4290600190889088908890889060040161365e565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe9061106390600190899089908990899089906004016136b8565b6000546001600160a01b0316331461144d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b611121600188888888888888611cd3565b6000546001600160a01b031633146114b85760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610ee660018484846120a3565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190610fd59060019085906004016136fb565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c9906084016110f5565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906115dd906001908b908b908b908b908b908b908b9060040161370f565b60006040518083038186803b1580156115f557600080fd5b505af4158015611609573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b031633146116705760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b610e0460018787878787876122c4565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e90610f429060019088908890889088906004016133b9565b6116e460018261265b565b50565b6000546001600160a01b031633146117415760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610e62565b6001600160a01b0381166117bd5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610e62565b6116e4816127b3565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b36990611063906001908990899089908990899060040161379f565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526001600160601b0319821660009081526019602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b840481166060840152600160601b840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b90910416600581111561190057611900613121565b600581111561191157611911613121565b81526020016003820154815250509050919050565b606483111561199d5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610e62565b60008211611a135760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610e62565b600f850180546001600160601b0319166bffffffffffffffffffffffff861690811790915560108601849055601186018390556012860182905560408051918252602082018590528101839052606081018290527f05a00d49ab61707f55232992ae68b57d8ed6e071aa0f9b88f992f19215a5f0869060800160405180910390a15050505050565b60008367ffffffffffffffff1611611b1b5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610e62565b60008267ffffffffffffffff1611611b9b5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610e62565b60008167ffffffffffffffff1611611c1b5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b5906060015b60405180910390a150505050565b8567ffffffffffffffff168567ffffffffffffffff1611611d825760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610e62565b60008467ffffffffffffffff1611611e025760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610e62565b60008267ffffffffffffffff1611611e825760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b60008163ffffffff1611611efe5760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610e62565b868860150160006101000a81548163ffffffff021916908363ffffffff160217905550858860150160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508488601501600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550838860150160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508288601501601c6101000a81548163ffffffff021916908363ffffffff160217905550818860160160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808860170160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac87878787878787604051612091979695949392919063ffffffff978816815267ffffffffffffffff968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008367ffffffffffffffff1611612125576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610e62565b60008263ffffffff16116121a15760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610e62565b60008167ffffffffffffffff16116122215760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610e62565b60088401805467ffffffffffffffff838116600160601b81027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff63ffffffff8816600160401b81026001600160601b0319909616948a16948517959095171617909355604080519182526020820192909252908101919091527f3bc8e35585937de0df227d080c3587c7aadd7630aa377299d63a5bb67fc07d8a90606001611cc5565b60008667ffffffffffffffff16116123445760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610e62565b60008567ffffffffffffffff16116123c45760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610e62565b60008467ffffffffffffffff16116124445760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610e62565b600083116124ba5760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610e62565b60648111156125575760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610e62565b6008870180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff898116918202929092179092556009890180548883166fffffffffffffffffffffffffffffffff199091168117600160401b93891693840217909155600a8a01869055600b8a0180546001600160601b0319166bffffffffffffffffffffffff8716908117909155600c8b018590556040805194855260208501929092529083019190915260608201859052608082015260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c00160405180910390a150505050505050565b6001600160601b031981166000908152601883016020526040902060036002820154600160a01b900460ff16600581111561269857612698613121565b1461270b5760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610e62565b6017830154600282015461272f9163ffffffff90811691600160801b9004166137f3565b63ffffffff1642116127a95760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610e62565b610ee6838361282c565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b0319811660008181526018840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb927916129029160040190815260200190565b600060405180830381600087803b15801561291c57600080fd5b505af1158015611121573d6000803e3d6000fd5b60006020828403121561294257600080fd5b5035919050565b80356001600160601b03198116811461296157600080fd5b919050565b60006060828403121561297857600080fd5b50919050565b6000806080838503121561299157600080fd5b61299a83612949565b91506129a98460208501612966565b90509250929050565b80356bffffffffffffffffffffffff8116811461296157600080fd5b600080600080608085870312156129e457600080fd5b6129ed856129b2565b966020860135965060408601359560600135945092505050565b803567ffffffffffffffff8116811461296157600080fd5b600080600060608486031215612a3457600080fd5b612a3d84612a07565b9250612a4b60208501612a07565b9150612a5960408501612a07565b90509250925092565b60006080828403121561297857600080fd5b60008060008060c08587031215612a8a57600080fd5b843567ffffffffffffffff80821115612aa257600080fd5b612aae88838901612a62565b95506020870135915080821115612ac457600080fd5b50612ad187828801612966565b935050612ae18660408701612966565b9150612aef60a08601612949565b905092959194509250565b600060208284031215612b0c57600080fd5b612b1582612949565b9392505050565b60008083601f840112612b2e57600080fd5b50813567ffffffffffffffff811115612b4657600080fd5b6020830191508360208260051b8501011115612b6157600080fd5b9250929050565b60008083601f840112612b7a57600080fd5b50813567ffffffffffffffff811115612b9257600080fd5b602083019150836020828501011115612b6157600080fd5b600080600080600060608688031215612bc257600080fd5b612bcb86612949565b9450602086013567ffffffffffffffff80821115612be857600080fd5b612bf489838a01612b1c565b90965094506040880135915080821115612c0d57600080fd5b50612c1a88828901612b68565b969995985093965092949392505050565b600080600060608486031215612c4057600080fd5b505081359360208301359350604090920135919050565b600080600080600060608688031215612c6f57600080fd5b853567ffffffffffffffff80821115612c8757600080fd5b612c9389838a01612b68565b90975095506020880135915080821115612cac57600080fd5b50612cb988828901612b1c565b96999598509660400135949350505050565b600080600060a08486031215612ce057600080fd5b833567ffffffffffffffff80821115612cf857600080fd5b612d0487838801612a62565b94506020860135915080821115612d1a57600080fd5b50612d2786828701612966565b925050612a598560408601612966565b600080828403610100811215612d4c57600080fd5b833567ffffffffffffffff811115612d6357600080fd5b612d6f86828701612a62565b93505060e0601f1982011215612d8457600080fd5b506020830190509250929050565b80356001600160a01b038116811461296157600080fd5b8035801515811461296157600080fd5b60008060408385031215612dcc57600080fd5b612dd583612d92565b91506129a960208401612da9565b60008060008060a08587031215612df957600080fd5b843567ffffffffffffffff811115612e1057600080fd5b612e1c87828801612b68565b90955093505060208501359150612aef8660408701612966565b600080600080600060608688031215612e4e57600080fd5b853567ffffffffffffffff80821115612e6657600080fd5b612e7289838a01612b68565b90975095506020880135915080821115612e8b57600080fd5b50612e9888828901612b68565b9094509250612eab905060408701612da9565b90509295509295909350565b803563ffffffff8116811461296157600080fd5b600080600080600080600060e0888a031215612ee657600080fd5b612eef88612eb7565b9650612efd60208901612a07565b9550612f0b60408901612a07565b9450612f1960608901612a07565b9350612f2760808901612eb7565b9250612f3560a08901612a07565b9150612f4360c08901612eb7565b905092959891949750929550565b600080600060608486031215612f6657600080fd5b612f6f84612a07565b9250612a4b60208501612eb7565b600060608284031215612f8f57600080fd5b612b158383612966565b600080600080600080600060e0888a031215612fb457600080fd5b612fbd88612949565b9650612fcc8960208a01612966565b9550608088013567ffffffffffffffff80821115612fe957600080fd5b612ff58b838c01612b1c565b909750955060a08a0135945060c08a013591508082111561301557600080fd5b506130228a828b01612b1c565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561304e57600080fd5b61305787612a07565b955061306560208801612a07565b945061307360408801612a07565b935060608701359250613088608088016129b2565b915060a087013590509295509295509295565b6000602082840312156130ad57600080fd5b612b1582612d92565b600080600080600060c086880312156130ce57600080fd5b6130d786612949565b94506130e68760208801612966565b9350608086013567ffffffffffffffff81111561310257600080fd5b61310e88828901612b68565b9094509250612eab905060a08701612a07565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106131b157634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b8035825263ffffffff6131dd60208301612eb7565b16602083015267ffffffffffffffff6131f860408301612a07565b1660408301525050565b8381526001600160601b03198316602082015260a0810161322660408301846131c8565b949350505050565b80357fffffffff000000000000000000000000000000000000000000000000000000008116811461296157600080fd5b6000808335601e1984360301811261327557600080fd5b830160208101925035905067ffffffffffffffff81111561329557600080fd5b803603831315612b6157600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff00000000000000000000000000000000000000000000000000000000806132fa8461322e565b16845261330a602084018461325e565b6080602087015261331f6080870182846132a4565b91505061332f604085018561325e565b86830360408801526133428382846132a4565b92505050816133536060860161322e565b166060860152809250505092915050565b6000613370828361325e565b606085526133826060860182846132a4565b9150506020830135602085015261339c604084018461325e565b85830360408701526133af8382846132a4565b9695505050505050565b85815260e0602082015260006133d260e08301876132cd565b82810360408401526133e48187613364565b9150506133f460608301856131c8565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8183526000602080850194508260005b8581101561344c5763ffffffff61343983612eb7565b1687529582019590820190600101613423565b509495945050505050565b8681526bffffffffffffffffffffffff1986166020820152608060408201526000613486608083018688613413565b82810360608401526134998185876132a4565b9998505050505050505050565b8681526080602082015260006134c06080830187896132a4565b82810360408401526134d3818688613413565b915050826060830152979650505050505050565b84815260c06020820152600061350060c08301866132cd565b82810360408401526135128186613364565b91505061352260608301846131c8565b95945050505050565b6000610120858352806020840152613545818401866132cd565b91505063ffffffff61355684612eb7565b1660408301526001600160a01b0361357060208501612d92565b16606083015260408301357fffffffffffffffff000000000000000000000000000000000000000000000000811681146135a957600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526135dc60608401612949565b6001600160601b03191660a08301526135f760808401612949565b6001600160601b03191660c083015261361260a0840161322e565b7fffffffff000000000000000000000000000000000000000000000000000000001660e083015261364560c08401612d92565b6001600160a01b03811661010084015250949350505050565b85815260c06020820152600061367860c0830186886132a4565b90508360408301528235606083015260208301356080830152604083013560ff81168082146136a657600080fd5b8060a085015250509695505050505050565b8681526080602082015260006136d26080830187896132a4565b82810360408401526136e58186886132a4565b9150508215156060830152979650505050505050565b82815260808101612b1560208301846131c8565b60006101008a835260206bffffffffffffffffffffffff19808c168286015261373b604086018c6131c8565b8260a086015261374e8386018a8c613413565b60c0860189905285810360e0870152868152879350820160005b8781101561378d578261377a86612949565b1682529383019390830190600101613768565b509d9c50505050505050505050505050565b8681526001600160601b0319861660208201526137bf60408201866131c8565b60e060a082015260006137d660e0830185876132a4565b905067ffffffffffffffff831660c0830152979650505050505050565b600063ffffffff80831681851680830382111561382057634e487b7160e01b600052601160045260246000fd5b0194935050505056fea264697066735822122057136b4c8128b73f3c7d7ceb15a05be9bc0b1afa42ec6283b64b95532d4de4f664736f6c63430008090033",
|
|
2260
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50604051620040e4380380620040e48339810160408190526200003491620003cd565b6001600160a01b038516620000905760405162461bcd60e51b815260206004820152601b60248201527f42616e6b20616464726573732063616e6e6f74206265207a65726f000000000060448201526064015b60405180910390fd5b600180546001600160a01b0319166001600160a01b03878116919091179091558416620001005760405162461bcd60e51b815260206004820152601c60248201527f52656c617920616464726573732063616e6e6f74206265207a65726f00000000604482015260640162000087565b600280546001600160a01b0319166001600160a01b03868116919091179091558216620001855760405162461bcd60e51b815260206004820152602c60248201527f45434453412057616c6c6574205265676973747279206164647265737320636160448201526b6e6e6f74206265207a65726f60a01b606482015260840162000087565b600380546001600160a01b0319166001600160a01b03848116919091179091558316620001f55760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f00604482015260640162000087565b6005805460048390556001600160a01b0385166001600160e01b031990911617613d0960a61b179055600680546001600160801b03191669271000000000000007d0179055600d80546001600160c01b03191671271000000000000007d000000000000f42401790556202a300600e55600f805469021e19e0c9bab24000006001600160601b03199182168117909255606460108190557d021e19e0c9bab240000000093a800000000000004e200000000000002710600955600a819055600b80546127106001600160401b0319909116179055671bc16d674ec8000060135562093a806014556015805490921690921790556016557eeff1000000000002faf08000000002540be4000000000005f5e10000093a80601955601a80546001600160c01b0316621dcd6560c91b179055601b80546234bc0063ffffffff1990911617905562000344336200034f565b505050505062000434565b600080546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b80516001600160a01b0381168114620003c857600080fd5b919050565b600080600080600060a08688031215620003e657600080fd5b620003f186620003b0565b94506200040160208701620003b0565b93506200041160408701620003b0565b92506200042160608701620003b0565b9150608086015190509295509295909350565b613ca080620004446000396000f3fe6080604052600436106102e75760003560e01c8063883d6a1111610184578063b34b3216116100d6578063d38bfff41161008a578063e53c0b5511610064578063e53c0b5514610db6578063e65e19d514610def578063f18cf1b114610e1c57600080fd5b8063d38bfff414610d4a578063d6eccdf014610d6a578063ded1d24a14610d8a57600080fd5b8063be05abe3116100bb578063be05abe314610c63578063c42b64d014610cde578063c8b5d2db14610d2a57600080fd5b8063b34b321614610c23578063b7d372a414610c4357600080fd5b8063a9de2f3a11610138578063b2146cd611610112578063b2146cd614610ba3578063b216bd3514610be3578063b29a604b14610c0357600080fd5b8063a9de2f3a146109fe578063abaeed8f14610a3e578063b02c43d014610a5e57600080fd5b806392238f321161016957806392238f321461099e578063a145e2d5146109be578063a8fa0f42146109de57600080fd5b8063883d6a111461095e57806391a9fdde1461097e57600080fd5b806350bf60201161023d57806361ccf97a116101f15780636e70ce41116101cb5780636e70ce411461085457806375b922d1146108f257806377145f211461093e57600080fd5b806361ccf97a1461077d57806361d027b3146108235780636d02b43c1461084157600080fd5b80635aa6e675116102225780635aa6e675146107055780635c0b48121461073d57806360d712fc1461075d57600080fd5b806350bf6020146106c5578063575e4279146106e557600080fd5b80632bb818c21161029f57806333e957cb1161027957806333e957cb146105a65780633dce9812146106855780634fb1b4c6146106a557600080fd5b80632bb818c2146105485780632f429b641461056657806331a4889a1461058657600080fd5b80630b6ba19d116102d05780630b6ba19d1461043857806317c96400146104f657806324028c111461051657600080fd5b806303d952f7146102ec57806307f7d22314610416575b600080fd5b3480156102f857600080fd5b506103aa610307366004612caa565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260116020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b60405161040d9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561042257600080fd5b50610436610431366004612cf8565b610f0f565b005b34801561044457600080fd5b506103aa610453366004612caa565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260126020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561050257600080fd5b50610436610511366004612d44565b610f98565b34801561052257600080fd5b50601a54600160a01b900463ffffffff1660405163ffffffff909116815260200161040d565b34801561055457600080fd5b5060045460405190815260200161040d565b34801561057257600080fd5b50610436610581366004612d99565b611009565b34801561059257600080fd5b506104366105a1366004612ead565b611096565b3480156105b257600080fd5b506106416105c1366004612caa565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260176020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b60405161040d919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561069157600080fd5b506104366106a0366004612f2e565b611128565b3480156106b157600080fd5b506104366106c0366004612f5a565b6111b8565b3480156106d157600080fd5b506104366106e0366004612ffe565b611213565b3480156106f157600080fd5b50610436610700366004612cf8565b61127d565b34801561071157600080fd5b50600054610725906001600160a01b031681565b6040516001600160a01b03909116815260200161040d565b34801561074957600080fd5b5061043661075836600461306b565b6112d2565b34801561076957600080fd5b506104366107783660046130ed565b611327565b34801561078957600080fd5b50601954601a54601b546040805163ffffffff808616825267ffffffffffffffff6401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b9095048516608082015278010000000000000000000000000000000000000000000000009093041660a08301529190911660c082015260e00161040d565b34801561082f57600080fd5b506005546001600160a01b0316610725565b61043661084f366004613117565b6113e0565b34801561086057600080fd5b506108a5600d54600e54600f5460105467ffffffffffffffff80851695600160401b8604821695600160801b900490911693926bffffffffffffffffffffffff169190565b6040805167ffffffffffffffff97881681529587166020870152939095169284019290925260608301526bffffffffffffffffffffffff16608082015260a081019190915260c00161040d565b3480156108fe57600080fd5b506013546014546015546016546040805194855260208501939093526bffffffffffffffffffffffff90911691830191909152606082015260800161040d565b34801561094a57600080fd5b5061043661095936600461316a565b611439565b34801561096a57600080fd5b506104366109793660046131eb565b611494565b34801561098a57600080fd5b50610436610999366004613271565b6114ff565b3480156109aa57600080fd5b506104366109b93660046132dd565b611556565b3480156109ca57600080fd5b506104366109d9366004613330565b6115ad565b3480156109ea57600080fd5b506104366109f9366004612f2e565b611633565b348015610a0a57600080fd5b50600154600254600354604080516001600160a01b039485168152928416602084015292169181019190915260600161040d565b348015610a4a57600080fd5b50610436610a59366004613353565b611699565b348015610a6a57600080fd5b50610b2d610a79366004612caa565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b60405161040d9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610baf57600080fd5b50610bd3610bbe366004612caa565b60009081526018602052604090205460ff1690565b604051901515815260200161040d565b348015610bef57600080fd5b50610436610bfe3660046133ef565b611731565b348015610c0f57600080fd5b50610436610c1e366004613455565b61179b565b348015610c2f57600080fd5b50610436610c3e366004612d99565b611809565b348015610c4f57600080fd5b50610436610c5e366004613271565b611862565b348015610c6f57600080fd5b50600954600a54600b546040805167ffffffffffffffff8086168252600160401b860481166020830152600160801b860463ffffffff1692820192909252600160a01b9094046bffffffffffffffffffffffff16606085015260808401929092521660a082015260c00161040d565b348015610cea57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b9092049091169082015260600161040d565b348015610d3657600080fd5b50610436610d45366004613492565b6118b9565b348015610d5657600080fd5b50610436610d653660046134ad565b6118c7565b348015610d7657600080fd5b50610436610d853660046134c8565b6119a6565b348015610d9657600080fd5b50601a5460601b6040516001600160601b0319909116815260200161040d565b348015610dc257600080fd5b50610bd3610dd13660046134ad565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610dfb57600080fd5b50610e0f610e0a366004613492565b611a01565b60405161040d9190613549565b348015610e2857600080fd5b50610ebe610e37366004612caa565b6040805160808082018352600080835260208084018290528385018290526060938401829052948152600c855283902083519182018452805480841b6001600160601b0319168352600160a01b810467ffffffffffffffff1695830195909552600160e01b90940463ffffffff908116938201939093526001909301549091169082015290565b6040805182516001600160601b031916815260208084015167ffffffffffffffff16908201528282015163ffffffff908116928201929092526060928301519091169181019190915260800161040d565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610f649060019086908690600401613614565b60006040518083038186803b158015610f7c57600080fd5b505af4158015610f90573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610ff75760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b6110046001848484611b0f565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac9906110609060019088908890889088906004016137cb565b60006040518083038186803b15801561107857600080fd5b505af415801561108c573d6000803e3d6000fd5b5050505050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110f19060019089908990899089908990600401613869565b60006040518083038186803b15801561110957600080fd5b505af415801561111d573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561119b57600080fd5b505af41580156111af573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a86906110f190600190899089908990899089906004016138b8565b6000546001600160a01b0316331461126d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b610f906001878787878787611d46565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f649060019086908690600401613614565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f6490600190869086906004016138f9565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490611060906001908890889088908890600401613a2c565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906110f19060019089908990899089908990600401613a86565b6000546001600160a01b031633146114ee5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6111af60018888888888888861210c565b6040517f2fcc8fb100000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__90632fcc8fb19061118390600190879087908790600401613ac9565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c429061118390600190879087908790600401613b0d565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611600906001908590600401613b3c565b60006040518083038186803b15801561161857600080fd5b505af415801561162c573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401611183565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906116f8906001908b908b908b908b908b908b908b90600401613b50565b60006040518083038186803b15801561171057600080fd5b505af4158015611724573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b0316331461178b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b610f9060018787878787876124dc565b6000546001600160a01b031633146117f55760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b61180360018585858561285e565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e906110609060019088908890889088906004016137cb565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a97259061118390600190879087908790600401613ac9565b6118c46001826129d5565b50565b6000546001600160a01b031633146119215760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6001600160a01b03811661199d5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610fee565b6118c481612b2d565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906110f19060019089908990899089908990600401613be0565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526001600160601b031982166000908152601c602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b909104166005811115611ae957611ae9613533565b6005811115611afa57611afa613533565b81526020016003820154815250509050919050565b60008367ffffffffffffffff1611611b8f5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610fee565b60008267ffffffffffffffff1611611c0f5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610fee565b60008167ffffffffffffffff1611611c8f5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008667ffffffffffffffff1611611dc8576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610fee565b60008567ffffffffffffffff1611611e485760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b60008463ffffffff1611611ec45760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610fee565b6064821115611f615760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a401610fee565b60008167ffffffffffffffff16116120075760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a401610fee565b60088701805467ffffffffffffffff8881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091176fffffffffffffffffffffffffffffffff16600160801b63ffffffff8a169081026001600160a01b031691909117600160a01b6bffffffffffffffffffffffff8a169081029190911790955560098c01879055600a8c01805467ffffffffffffffff191693871693841790556040805194855260208501929092529083015260608201929092526080810184905260a08101919091527f52ccbbed9d26b67ca026d54f8fe61cca76c333edad9725d266a2ac667659c73f9060c0015b60405180910390a150505050505050565b8567ffffffffffffffff168567ffffffffffffffff16116121bb5760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610fee565b60008467ffffffffffffffff161161223b5760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610fee565b60008267ffffffffffffffff16116122bb5760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b60008163ffffffff16116123375760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610fee565b868860180160006101000a81548163ffffffff021916908363ffffffff160217905550858860180160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508488601801600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550838860180160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508288601801601c6101000a81548163ffffffff021916908363ffffffff160217905550818860190160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508088601a0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac878787878787876040516124ca979695949392919063ffffffff978816815267ffffffffffffffff968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008667ffffffffffffffff161161255c5760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610fee565b60008567ffffffffffffffff16116125dc5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610fee565b60008467ffffffffffffffff161161265c5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610fee565b600083116126d25760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610fee565b606481111561276f5760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610fee565b600c8701805467ffffffffffffffff8881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600d8a01869055600e8a0180546001600160601b0319166bffffffffffffffffffffffff8716908117909155600f8b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c0016120fb565b600083116128d45760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610fee565b606481111561294b5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610fee565b60128501849055601385018390556014850180546001600160601b0319166bffffffffffffffffffffffff841690811790915560158601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601b83016020526040902060036002820154600160a01b900460ff166005811115612a1257612a12613533565b14612a855760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610fee565b601a8301546002820154612aa99163ffffffff90811691600160801b900416613c34565b63ffffffff164211612b235760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610fee565b6110048383612ba6565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b031981166000818152601b840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb92791612c7c9160040190815260200190565b600060405180830381600087803b158015612c9657600080fd5b505af11580156111af573d6000803e3d6000fd5b600060208284031215612cbc57600080fd5b5035919050565b80356001600160601b031981168114612cdb57600080fd5b919050565b600060608284031215612cf257600080fd5b50919050565b60008060808385031215612d0b57600080fd5b612d1483612cc3565b9150612d238460208501612ce0565b90509250929050565b803567ffffffffffffffff81168114612cdb57600080fd5b600080600060608486031215612d5957600080fd5b612d6284612d2c565b9250612d7060208501612d2c565b9150612d7e60408501612d2c565b90509250925092565b600060808284031215612cf257600080fd5b60008060008060c08587031215612daf57600080fd5b843567ffffffffffffffff80821115612dc757600080fd5b612dd388838901612d87565b95506020870135915080821115612de957600080fd5b50612df687828801612ce0565b935050612e068660408701612ce0565b9150612e1460a08601612cc3565b905092959194509250565b60008083601f840112612e3157600080fd5b50813567ffffffffffffffff811115612e4957600080fd5b6020830191508360208260051b8501011115612e6457600080fd5b9250929050565b60008083601f840112612e7d57600080fd5b50813567ffffffffffffffff811115612e9557600080fd5b602083019150836020828501011115612e6457600080fd5b600080600080600060608688031215612ec557600080fd5b612ece86612cc3565b9450602086013567ffffffffffffffff80821115612eeb57600080fd5b612ef789838a01612e1f565b90965094506040880135915080821115612f1057600080fd5b50612f1d88828901612e6b565b969995985093965092949392505050565b600080600060608486031215612f4357600080fd5b505081359360208301359350604090920135919050565b600080600080600060608688031215612f7257600080fd5b853567ffffffffffffffff80821115612f8a57600080fd5b612f9689838a01612e6b565b90975095506020880135915080821115612faf57600080fd5b50612fbc88828901612e1f565b96999598509660400135949350505050565b803563ffffffff81168114612cdb57600080fd5b80356bffffffffffffffffffffffff81168114612cdb57600080fd5b60008060008060008060c0878903121561301757600080fd5b61302087612d2c565b955061302e60208801612d2c565b945061303c60408801612fce565b935061304a60608801612fe2565b92506080870135915061305f60a08801612d2c565b90509295509295509295565b60008082840361010081121561308057600080fd5b833567ffffffffffffffff81111561309757600080fd5b6130a386828701612d87565b93505060e0601f19820112156130b857600080fd5b506020830190509250929050565b80356001600160a01b0381168114612cdb57600080fd5b80358015158114612cdb57600080fd5b6000806040838503121561310057600080fd5b613109836130c6565b9150612d23602084016130dd565b60008060008060a0858703121561312d57600080fd5b843567ffffffffffffffff81111561314457600080fd5b61315087828801612e6b565b90955093505060208501359150612e148660408701612ce0565b60008060008060006060868803121561318257600080fd5b853567ffffffffffffffff8082111561319a57600080fd5b6131a689838a01612e6b565b909750955060208801359150808211156131bf57600080fd5b506131cc88828901612e6b565b90945092506131df9050604087016130dd565b90509295509295909350565b600080600080600080600060e0888a03121561320657600080fd5b61320f88612fce565b965061321d60208901612d2c565b955061322b60408901612d2c565b945061323960608901612d2c565b935061324760808901612fce565b925061325560a08901612d2c565b915061326360c08901612fce565b905092959891949750929550565b600080600060a0848603121561328657600080fd5b833567ffffffffffffffff8082111561329e57600080fd5b6132aa87838801612d87565b945060208601359150808211156132c057600080fd5b506132cd86828701612ce0565b925050612d7e8560408601612ce0565b6000806000604084860312156132f257600080fd5b6132fb84612cc3565b9250602084013567ffffffffffffffff81111561331757600080fd5b61332386828701612e1f565b9497909650939450505050565b60006060828403121561334257600080fd5b61334c8383612ce0565b9392505050565b600080600080600080600060e0888a03121561336e57600080fd5b61337788612cc3565b96506133868960208a01612ce0565b9550608088013567ffffffffffffffff808211156133a357600080fd5b6133af8b838c01612e1f565b909750955060a08a0135945060c08a01359150808211156133cf57600080fd5b506133dc8a828b01612e1f565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561340857600080fd5b61341187612d2c565b955061341f60208801612d2c565b945061342d60408801612d2c565b93506060870135925061344260808801612fe2565b915060a087013590509295509295509295565b6000806000806080858703121561346b57600080fd5b843593506020850135925061348260408601612fe2565b9396929550929360600135925050565b6000602082840312156134a457600080fd5b61334c82612cc3565b6000602082840312156134bf57600080fd5b61334c826130c6565b600080600080600060c086880312156134e057600080fd5b6134e986612cc3565b94506134f88760208801612ce0565b9350608086013567ffffffffffffffff81111561351457600080fd5b61352088828901612e6b565b90945092506131df905060a08701612d2c565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106135c357634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b8035825263ffffffff6135ef60208301612fce565b16602083015267ffffffffffffffff61360a60408301612d2c565b1660408301525050565b8381526001600160601b03198316602082015260a0810161363860408301846135da565b949350505050565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114612cdb57600080fd5b6000808335601e1984360301811261368757600080fd5b830160208101925035905067ffffffffffffffff8111156136a757600080fd5b803603831315612e6457600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff000000000000000000000000000000000000000000000000000000008061370c84613640565b16845261371c6020840184613670565b608060208701526137316080870182846136b6565b9150506137416040850185613670565b86830360408801526137548382846136b6565b925050508161376560608601613640565b166060860152809250505092915050565b60006137828283613670565b606085526137946060860182846136b6565b915050602083013560208501526137ae6040840184613670565b85830360408701526137c18382846136b6565b9695505050505050565b85815260e0602082015260006137e460e08301876136df565b82810360408401526137f68187613776565b91505061380660608301856135da565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8183526000602080850194508260005b8581101561385e5763ffffffff61384b83612fce565b1687529582019590820190600101613835565b509495945050505050565b8681526bffffffffffffffffffffffff1986166020820152608060408201526000613898608083018688613825565b82810360608401526138ab8185876136b6565b9998505050505050505050565b8681526080602082015260006138d26080830187896136b6565b82810360408401526138e5818688613825565b915050826060830152979650505050505050565b6000610120858352806020840152613913818401866136df565b91505063ffffffff61392484612fce565b1660408301526001600160a01b0361393e602085016130c6565b16606083015260408301357fffffffffffffffff0000000000000000000000000000000000000000000000008116811461397757600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526139aa60608401612cc3565b6001600160601b03191660a08301526139c560808401612cc3565b6001600160601b03191660c08301526139e060a08401613640565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152613a1360c084016130c6565b6001600160a01b03811661010084015250949350505050565b85815260c060208201526000613a4660c0830186886136b6565b90508360408301528235606083015260208301356080830152604083013560ff8116808214613a7457600080fd5b8060a085015250509695505050505050565b868152608060208201526000613aa06080830187896136b6565b8281036040840152613ab38186886136b6565b9150508215156060830152979650505050505050565b84815260c060208201526000613ae260c08301866136df565b8281036040840152613af48186613776565b915050613b0460608301846135da565b95945050505050565b8481526bffffffffffffffffffffffff19841660208201526060604082015260006137c1606083018486613825565b8281526080810161334c60208301846135da565b60006101008a835260206bffffffffffffffffffffffff19808c1682860152613b7c604086018c6135da565b8260a0860152613b8f8386018a8c613825565b60c0860189905285810360e0870152868152879350820160005b87811015613bce5782613bbb86612cc3565b1682529383019390830190600101613ba9565b509d9c50505050505050505050505050565b8681526001600160601b031986166020820152613c0060408201866135da565b60e060a08201526000613c1760e0830185876136b6565b905067ffffffffffffffff831660c0830152979650505050505050565b600063ffffffff808316818516808303821115613c6157634e487b7160e01b600052601160045260246000fd5b0194935050505056fea2646970667358221220eb8d07fec0bc25cf2a5a07c150a4e763bfca689d80b7ecbba18e47bc473e344864736f6c63430008090033",
|
|
2261
|
+
"deployedBytecode": "0x6080604052600436106102e75760003560e01c8063883d6a1111610184578063b34b3216116100d6578063d38bfff41161008a578063e53c0b5511610064578063e53c0b5514610db6578063e65e19d514610def578063f18cf1b114610e1c57600080fd5b8063d38bfff414610d4a578063d6eccdf014610d6a578063ded1d24a14610d8a57600080fd5b8063be05abe3116100bb578063be05abe314610c63578063c42b64d014610cde578063c8b5d2db14610d2a57600080fd5b8063b34b321614610c23578063b7d372a414610c4357600080fd5b8063a9de2f3a11610138578063b2146cd611610112578063b2146cd614610ba3578063b216bd3514610be3578063b29a604b14610c0357600080fd5b8063a9de2f3a146109fe578063abaeed8f14610a3e578063b02c43d014610a5e57600080fd5b806392238f321161016957806392238f321461099e578063a145e2d5146109be578063a8fa0f42146109de57600080fd5b8063883d6a111461095e57806391a9fdde1461097e57600080fd5b806350bf60201161023d57806361ccf97a116101f15780636e70ce41116101cb5780636e70ce411461085457806375b922d1146108f257806377145f211461093e57600080fd5b806361ccf97a1461077d57806361d027b3146108235780636d02b43c1461084157600080fd5b80635aa6e675116102225780635aa6e675146107055780635c0b48121461073d57806360d712fc1461075d57600080fd5b806350bf6020146106c5578063575e4279146106e557600080fd5b80632bb818c21161029f57806333e957cb1161027957806333e957cb146105a65780633dce9812146106855780634fb1b4c6146106a557600080fd5b80632bb818c2146105485780632f429b641461056657806331a4889a1461058657600080fd5b80630b6ba19d116102d05780630b6ba19d1461043857806317c96400146104f657806324028c111461051657600080fd5b806303d952f7146102ec57806307f7d22314610416575b600080fd5b3480156102f857600080fd5b506103aa610307366004612caa565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260116020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b60405161040d9190600060a0820190506001600160a01b038351168252602083015167ffffffffffffffff8082166020850152806040860151166040850152806060860151166060850152505063ffffffff608084015116608083015292915050565b60405180910390f35b34801561042257600080fd5b50610436610431366004612cf8565b610f0f565b005b34801561044457600080fd5b506103aa610453366004612caa565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260126020908152604091829020825160a08101845281546001600160a01b0381168252600160a01b900467ffffffffffffffff9081169382019390935260019091015480831693820193909352600160401b83049091166060820152600160801b90910463ffffffff16608082015290565b34801561050257600080fd5b50610436610511366004612d44565b610f98565b34801561052257600080fd5b50601a54600160a01b900463ffffffff1660405163ffffffff909116815260200161040d565b34801561055457600080fd5b5060045460405190815260200161040d565b34801561057257600080fd5b50610436610581366004612d99565b611009565b34801561059257600080fd5b506104366105a1366004612ead565b611096565b3480156105b257600080fd5b506106416105c1366004612caa565b60408051608081018252600080825260208201819052918101829052606081019190915250600090815260176020908152604091829020825160808101845281546001600160a01b031681526001820154928101929092526002015463ffffffff81169282019290925264010000000090910460ff161515606082015290565b60405161040d919081516001600160a01b031681526020808301519082015260408083015163ffffffff169082015260609182015115159181019190915260800190565b34801561069157600080fd5b506104366106a0366004612f2e565b611128565b3480156106b157600080fd5b506104366106c0366004612f5a565b6111b8565b3480156106d157600080fd5b506104366106e0366004612ffe565b611213565b3480156106f157600080fd5b50610436610700366004612cf8565b61127d565b34801561071157600080fd5b50600054610725906001600160a01b031681565b6040516001600160a01b03909116815260200161040d565b34801561074957600080fd5b5061043661075836600461306b565b6112d2565b34801561076957600080fd5b506104366107783660046130ed565b611327565b34801561078957600080fd5b50601954601a54601b546040805163ffffffff808616825267ffffffffffffffff6401000000008704811660208401526c010000000000000000000000008704811693830193909352600160a01b860483166060830152600160e01b9095048516608082015278010000000000000000000000000000000000000000000000009093041660a08301529190911660c082015260e00161040d565b34801561082f57600080fd5b506005546001600160a01b0316610725565b61043661084f366004613117565b6113e0565b34801561086057600080fd5b506108a5600d54600e54600f5460105467ffffffffffffffff80851695600160401b8604821695600160801b900490911693926bffffffffffffffffffffffff169190565b6040805167ffffffffffffffff97881681529587166020870152939095169284019290925260608301526bffffffffffffffffffffffff16608082015260a081019190915260c00161040d565b3480156108fe57600080fd5b506013546014546015546016546040805194855260208501939093526bffffffffffffffffffffffff90911691830191909152606082015260800161040d565b34801561094a57600080fd5b5061043661095936600461316a565b611439565b34801561096a57600080fd5b506104366109793660046131eb565b611494565b34801561098a57600080fd5b50610436610999366004613271565b6114ff565b3480156109aa57600080fd5b506104366109b93660046132dd565b611556565b3480156109ca57600080fd5b506104366109d9366004613330565b6115ad565b3480156109ea57600080fd5b506104366109f9366004612f2e565b611633565b348015610a0a57600080fd5b50600154600254600354604080516001600160a01b039485168152928416602084015292169181019190915260600161040d565b348015610a4a57600080fd5b50610436610a59366004613353565b611699565b348015610a6a57600080fd5b50610b2d610a79366004612caa565b6040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915250600090815260076020908152604091829020825160c08101845281546001600160a01b03808216835267ffffffffffffffff600160a01b80840482169685019690965263ffffffff600160e01b938490048116978501979097526001949094015490811660608401529384049092166080820152910490911660a082015290565b60405161040d9190600060c0820190506001600160a01b03808451168352602084015167ffffffffffffffff80821660208601526040860151915063ffffffff80831660408701528360608801511660608701528160808801511660808701528060a08801511660a08701525050505092915050565b348015610baf57600080fd5b50610bd3610bbe366004612caa565b60009081526018602052604090205460ff1690565b604051901515815260200161040d565b348015610bef57600080fd5b50610436610bfe3660046133ef565b611731565b348015610c0f57600080fd5b50610436610c1e366004613455565b61179b565b348015610c2f57600080fd5b50610436610c3e366004612d99565b611809565b348015610c4f57600080fd5b50610436610c5e366004613271565b611862565b348015610c6f57600080fd5b50600954600a54600b546040805167ffffffffffffffff8086168252600160401b860481166020830152600160801b860463ffffffff1692820192909252600160a01b9094046bffffffffffffffffffffffff16606085015260808401929092521660a082015260c00161040d565b348015610cea57600080fd5b5060055460065460408051600160a01b90930467ffffffffffffffff90811684528083166020850152600160401b9092049091169082015260600161040d565b348015610d3657600080fd5b50610436610d45366004613492565b6118b9565b348015610d5657600080fd5b50610436610d653660046134ad565b6118c7565b348015610d7657600080fd5b50610436610d853660046134c8565b6119a6565b348015610d9657600080fd5b50601a5460601b6040516001600160601b0319909116815260200161040d565b348015610dc257600080fd5b50610bd3610dd13660046134ad565b6001600160a01b031660009081526008602052604090205460ff1690565b348015610dfb57600080fd5b50610e0f610e0a366004613492565b611a01565b60405161040d9190613549565b348015610e2857600080fd5b50610ebe610e37366004612caa565b6040805160808082018352600080835260208084018290528385018290526060938401829052948152600c855283902083519182018452805480841b6001600160601b0319168352600160a01b810467ffffffffffffffff1695830195909552600160e01b90940463ffffffff908116938201939093526001909301549091169082015290565b6040805182516001600160601b031916815260208084015167ffffffffffffffff16908201528282015163ffffffff908116928201929092526060928301519091169181019190915260800161040d565b6040517f260b6cde00000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063260b6cde90610f649060019086908690600401613614565b60006040518083038186803b158015610f7c57600080fd5b505af4158015610f90573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610ff75760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e63650000000060448201526064015b60405180910390fd5b6110046001848484611b0f565b505050565b6040517e92bac900000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906292bac9906110609060019088908890889088906004016137cb565b60006040518083038186803b15801561107857600080fd5b505af415801561108c573d6000803e3d6000fd5b5050505050505050565b6040517fa76558b300000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a76558b3906110f19060019089908990899089908990600401613869565b60006040518083038186803b15801561110957600080fd5b505af415801561111d573d6000803e3d6000fd5b505050505050505050565b6040517fc87de7f400000000000000000000000000000000000000000000000000000000815260016004820152602481018390526044810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063c87de7f4906064015b60006040518083038186803b15801561119b57600080fd5b505af41580156111af573d6000803e3d6000fd5b50505050505050565b6040517f89b43a8600000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__906389b43a86906110f190600190899089908990899089906004016138b8565b6000546001600160a01b0316331461126d5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b610f906001878787878787611d46565b6040517f99b0b84700000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__906399b0b84790610f649060019086908690600401613614565b6040517faea7fd0b00000000000000000000000000000000000000000000000000000000815273__$894ce12e79ca3e5683c1b49e363f37fa22$__9063aea7fd0b90610f6490600190869086906004016138f9565b6000546001600160a01b031633146113815760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6001600160a01b038216600081815260086020908152604091829020805460ff191685151590811790915591519182527f9065599c12c4294d9e2201638226d0d0beb95c228f468c4e7c2bdb8322b6066f910160405180910390a25050565b6040517f3b5d9f2400000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__90633b5d9f2490611060906001908890889088908890600401613a2c565b6040517f624526fe00000000000000000000000000000000000000000000000000000000815273__$a542940934c03bae9a39609192cb25cc3c$__9063624526fe906110f19060019089908990899089908990600401613a86565b6000546001600160a01b031633146114ee5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6111af60018888888888888861210c565b6040517f2fcc8fb100000000000000000000000000000000000000000000000000000000815273__$24f7e155a6d011c1bf9032506ba9b1954c$__90632fcc8fb19061118390600190879087908790600401613ac9565b6040517f07f96c4200000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__906307f96c429061118390600190879087908790600401613b0d565b6040517fd079fbb100000000000000000000000000000000000000000000000000000000815273__$0f118c52967a3847a37f0a2ef02ffcee04$__9063d079fbb190611600906001908590600401613b3c565b60006040518083038186803b15801561161857600080fd5b505af415801561162c573d6000803e3d6000fd5b5050505050565b6040517f4afbe4c90000000000000000000000000000000000000000000000000000000081526001600482015260248101849052604481018390526064810182905273__$0f118c52967a3847a37f0a2ef02ffcee04$__90634afbe4c990608401611183565b6040517fc8f7794300000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063c8f77943906116f8906001908b908b908b908b908b908b908b90600401613b50565b60006040518083038186803b15801561171057600080fd5b505af4158015611724573d6000803e3d6000fd5b5050505050505050505050565b6000546001600160a01b0316331461178b5760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b610f9060018787878787876124dc565b6000546001600160a01b031633146117f55760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b61180360018585858561285e565b50505050565b6040517fa164de6e00000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__9063a164de6e906110609060019088908890889088906004016137cb565b6040517fb79a972500000000000000000000000000000000000000000000000000000000815273__$edce581bb06331cf4dae1387760565e5d1$__9063b79a97259061118390600190879087908790600401613ac9565b6118c46001826129d5565b50565b6000546001600160a01b031633146119215760405162461bcd60e51b815260206004820152601c60248201527f43616c6c6572206973206e6f742074686520676f7665726e616e6365000000006044820152606401610fee565b6001600160a01b03811661199d5760405162461bcd60e51b815260206004820152602260248201527f4e657720676f7665726e616e636520697320746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610fee565b6118c481612b2d565b6040517f7333b36900000000000000000000000000000000000000000000000000000000815273__$9935b6ea18e0c526c293569ddd26842c9b$__90637333b369906110f19060019089908990899089908990600401613be0565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526001600160601b031982166000908152601c602090815260409182902082516101008101845281548152600182015492810192909252600281015467ffffffffffffffff81169383019390935263ffffffff600160401b8404811660608401526c01000000000000000000000000840481166080840152600160801b84041660a0830152909160c083019060ff600160a01b909104166005811115611ae957611ae9613533565b6005811115611afa57611afa613533565b81526020016003820154815250509050919050565b60008367ffffffffffffffff1611611b8f5760405162461bcd60e51b815260206004820152603060248201527f4465706f7369742064757374207468726573686f6c64206d757374206265206760448201527f726561746572207468616e207a65726f000000000000000000000000000000006064820152608401610fee565b60008267ffffffffffffffff1611611c0f5760405162461bcd60e51b815260206004820152603660248201527f4465706f736974207472656173757279206665652064697669736f72206d757360448201527f742062652067726561746572207468616e207a65726f000000000000000000006064820152608401610fee565b60008167ffffffffffffffff1611611c8f5760405162461bcd60e51b815260206004820152603560248201527f4465706f736974207472616e73616374696f6e206d617820666565206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b6004840180547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff16600160a01b67ffffffffffffffff868116918202929092179092556005860180548583166fffffffffffffffffffffffffffffffff199091168117600160401b938616938402179091556040805193845260208401919091528201527f1ced468902ca566e746a3c8c9516af81f8de9f1021c365083be9f2625ebfb7b59060600160405180910390a150505050565b60008667ffffffffffffffff1611611dc8576040805162461bcd60e51b81526020600482015260248101919091527f4d6f76696e672066756e6473207472616e73616374696f6e206d617820746f7460448201527f616c20666565206d7573742062652067726561746572207468616e207a65726f6064820152608401610fee565b60008567ffffffffffffffff1611611e485760405162461bcd60e51b815260206004820152603560248201527f4d6f76696e672066756e64732064757374207468726573686f6c64206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b60008463ffffffff1611611ec45760405162461bcd60e51b815260206004820152602e60248201527f4d6f76696e672066756e64732074696d656f7574206d7573742062652067726560448201527f61746572207468616e207a65726f0000000000000000000000000000000000006064820152608401610fee565b6064821115611f615760405162461bcd60e51b815260206004820152604d60248201527f4d6f76696e672066756e64732074696d656f7574206e6f74696669657220726560448201527f77617264206d756c7469706c696572206d75737420626520696e20746865207260648201527f616e6765205b302c203130305d00000000000000000000000000000000000000608482015260a401610fee565b60008167ffffffffffffffff16116120075760405162461bcd60e51b815260206004820152604560248201527f4d6f7665642066756e6473207377656570207472616e73616374696f6e206d6160448201527f7820746f74616c20666565206d7573742062652067726561746572207468616e60648201527f207a65726f000000000000000000000000000000000000000000000000000000608482015260a401610fee565b60088701805467ffffffffffffffff8881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091176fffffffffffffffffffffffffffffffff16600160801b63ffffffff8a169081026001600160a01b031691909117600160a01b6bffffffffffffffffffffffff8a169081029190911790955560098c01879055600a8c01805467ffffffffffffffff191693871693841790556040805194855260208501929092529083015260608201929092526080810184905260a08101919091527f52ccbbed9d26b67ca026d54f8fe61cca76c333edad9725d266a2ac667659c73f9060c0015b60405180910390a150505050505050565b8567ffffffffffffffff168567ffffffffffffffff16116121bb5760405162461bcd60e51b815260206004820152605960248201527f57616c6c6574206372656174696f6e206d6178696d756d204254432062616c6160448201527f6e6365206d7573742062652067726561746572207468616e207468652063726560648201527f6174696f6e206d696e696d756d204254432062616c616e636500000000000000608482015260a401610fee565b60008467ffffffffffffffff161161223b5760405162461bcd60e51b815260206004820152603c60248201527f57616c6c657420636c6f73757265206d696e696d756d204254432062616c616e60448201527f6365206d7573742062652067726561746572207468616e207a65726f000000006064820152608401610fee565b60008267ffffffffffffffff16116122bb5760405162461bcd60e51b815260206004820152603560248201527f57616c6c6574206d6178696d756d20425443207472616e73666572206d75737460448201527f2062652067726561746572207468616e207a65726f00000000000000000000006064820152608401610fee565b60008163ffffffff16116123375760405162461bcd60e51b815260206004820152602f60248201527f57616c6c657420636c6f73696e6720706572696f64206d75737420626520677260448201527f6561746572207468616e207a65726f00000000000000000000000000000000006064820152608401610fee565b868860180160006101000a81548163ffffffff021916908363ffffffff160217905550858860180160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508488601801600c6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550838860180160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508288601801601c6101000a81548163ffffffff021916908363ffffffff160217905550818860190160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508088601a0160006101000a81548163ffffffff021916908363ffffffff1602179055507fc7d3a9af08692aeae771c329fddd95c7237a9f76fec996325f3959eeff07d4ac878787878787876040516124ca979695949392919063ffffffff978816815267ffffffffffffffff968716602082015294861660408601529285166060850152908516608084015290921660a0820152911660c082015260e00190565b60405180910390a15050505050505050565b60008667ffffffffffffffff161161255c5760405162461bcd60e51b815260206004820152603360248201527f526564656d7074696f6e2064757374207468726573686f6c64206d757374206260448201527f652067726561746572207468616e207a65726f000000000000000000000000006064820152608401610fee565b60008567ffffffffffffffff16116125dc5760405162461bcd60e51b815260206004820152603960248201527f526564656d7074696f6e207472656173757279206665652064697669736f722060448201527f6d7573742062652067726561746572207468616e207a65726f000000000000006064820152608401610fee565b60008467ffffffffffffffff161161265c5760405162461bcd60e51b815260206004820152603860248201527f526564656d7074696f6e207472616e73616374696f6e206d617820666565206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610fee565b600083116126d25760405162461bcd60e51b815260206004820152602c60248201527f526564656d7074696f6e2074696d656f7574206d75737420626520677265617460448201527f6572207468616e207a65726f00000000000000000000000000000000000000006064820152608401610fee565b606481111561276f5760405162461bcd60e51b815260206004820152604b60248201527f526564656d7074696f6e2074696d656f7574206e6f746966696572207265776160448201527f7264206d756c7469706c696572206d75737420626520696e207468652072616e60648201527f6765205b302c203130305d000000000000000000000000000000000000000000608482015260a401610fee565b600c8701805467ffffffffffffffff8881166fffffffffffffffffffffffffffffffff199092168217600160401b898316908102919091177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b92891692830217909355600d8a01869055600e8a0180546001600160601b0319166bffffffffffffffffffffffff8716908117909155600f8b018590556040805193845260208401949094529282015260608101859052608081019190915260a081018290527f944cd06e316cc3da4159300dd41ab23416c89a5136c41fa79d57fe8a34bcc10f9060c0016120fb565b600083116128d45760405162461bcd60e51b815260206004820152603860248201527f4672617564206368616c6c656e6765206465666561742074696d656f7574206d60448201527f7573742062652067726561746572207468616e207a65726f00000000000000006064820152608401610fee565b606481111561294b5760405162461bcd60e51b815260206004820152603e60248201527f4672617564206e6f74696669657220726577617264206d756c7469706c69657260448201527f206d75737420626520696e207468652072616e6765205b302c203130305d00006064820152608401610fee565b60128501849055601385018390556014850180546001600160601b0319166bffffffffffffffffffffffff841690811790915560158601829055604080518681526020810186905290810191909152606081018290527fd0d6d92441fbb139a023c9c62586dbd767824f37869c45da6443fc3aef64194f9060800160405180910390a15050505050565b6001600160601b031981166000908152601b83016020526040902060036002820154600160a01b900460ff166005811115612a1257612a12613533565b14612a855760405162461bcd60e51b815260206004820152602560248201527f45434453412077616c6c6574206d75737420626520696e20436c6f73696e672060448201527f73746174650000000000000000000000000000000000000000000000000000006064820152608401610fee565b601a8301546002820154612aa99163ffffffff90811691600160801b900416613c34565b63ffffffff164211612b235760405162461bcd60e51b815260206004820152602260248201527f436c6f73696e6720706572696f6420686173206e6f7420656c6170736564207960448201527f65740000000000000000000000000000000000000000000000000000000000006064820152608401610fee565b6110048383612ba6565b600080546001600160a01b038381167fffffffffffffffffffffffff000000000000000000000000000000000000000083168117909355604080519190921680825260208201939093527f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80910160405180910390a15050565b6001600160601b031981166000818152601b840160205260408082206002810180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674040000000000000000000000000000000000000000179055805491519093927f47b159947c3066cb253f60e8f046cfd747411788a545cb189679e3fa1467b28d91a3600283015481546040517f343bb9270000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163343bb92791612c7c9160040190815260200190565b600060405180830381600087803b158015612c9657600080fd5b505af11580156111af573d6000803e3d6000fd5b600060208284031215612cbc57600080fd5b5035919050565b80356001600160601b031981168114612cdb57600080fd5b919050565b600060608284031215612cf257600080fd5b50919050565b60008060808385031215612d0b57600080fd5b612d1483612cc3565b9150612d238460208501612ce0565b90509250929050565b803567ffffffffffffffff81168114612cdb57600080fd5b600080600060608486031215612d5957600080fd5b612d6284612d2c565b9250612d7060208501612d2c565b9150612d7e60408501612d2c565b90509250925092565b600060808284031215612cf257600080fd5b60008060008060c08587031215612daf57600080fd5b843567ffffffffffffffff80821115612dc757600080fd5b612dd388838901612d87565b95506020870135915080821115612de957600080fd5b50612df687828801612ce0565b935050612e068660408701612ce0565b9150612e1460a08601612cc3565b905092959194509250565b60008083601f840112612e3157600080fd5b50813567ffffffffffffffff811115612e4957600080fd5b6020830191508360208260051b8501011115612e6457600080fd5b9250929050565b60008083601f840112612e7d57600080fd5b50813567ffffffffffffffff811115612e9557600080fd5b602083019150836020828501011115612e6457600080fd5b600080600080600060608688031215612ec557600080fd5b612ece86612cc3565b9450602086013567ffffffffffffffff80821115612eeb57600080fd5b612ef789838a01612e1f565b90965094506040880135915080821115612f1057600080fd5b50612f1d88828901612e6b565b969995985093965092949392505050565b600080600060608486031215612f4357600080fd5b505081359360208301359350604090920135919050565b600080600080600060608688031215612f7257600080fd5b853567ffffffffffffffff80821115612f8a57600080fd5b612f9689838a01612e6b565b90975095506020880135915080821115612faf57600080fd5b50612fbc88828901612e1f565b96999598509660400135949350505050565b803563ffffffff81168114612cdb57600080fd5b80356bffffffffffffffffffffffff81168114612cdb57600080fd5b60008060008060008060c0878903121561301757600080fd5b61302087612d2c565b955061302e60208801612d2c565b945061303c60408801612fce565b935061304a60608801612fe2565b92506080870135915061305f60a08801612d2c565b90509295509295509295565b60008082840361010081121561308057600080fd5b833567ffffffffffffffff81111561309757600080fd5b6130a386828701612d87565b93505060e0601f19820112156130b857600080fd5b506020830190509250929050565b80356001600160a01b0381168114612cdb57600080fd5b80358015158114612cdb57600080fd5b6000806040838503121561310057600080fd5b613109836130c6565b9150612d23602084016130dd565b60008060008060a0858703121561312d57600080fd5b843567ffffffffffffffff81111561314457600080fd5b61315087828801612e6b565b90955093505060208501359150612e148660408701612ce0565b60008060008060006060868803121561318257600080fd5b853567ffffffffffffffff8082111561319a57600080fd5b6131a689838a01612e6b565b909750955060208801359150808211156131bf57600080fd5b506131cc88828901612e6b565b90945092506131df9050604087016130dd565b90509295509295909350565b600080600080600080600060e0888a03121561320657600080fd5b61320f88612fce565b965061321d60208901612d2c565b955061322b60408901612d2c565b945061323960608901612d2c565b935061324760808901612fce565b925061325560a08901612d2c565b915061326360c08901612fce565b905092959891949750929550565b600080600060a0848603121561328657600080fd5b833567ffffffffffffffff8082111561329e57600080fd5b6132aa87838801612d87565b945060208601359150808211156132c057600080fd5b506132cd86828701612ce0565b925050612d7e8560408601612ce0565b6000806000604084860312156132f257600080fd5b6132fb84612cc3565b9250602084013567ffffffffffffffff81111561331757600080fd5b61332386828701612e1f565b9497909650939450505050565b60006060828403121561334257600080fd5b61334c8383612ce0565b9392505050565b600080600080600080600060e0888a03121561336e57600080fd5b61337788612cc3565b96506133868960208a01612ce0565b9550608088013567ffffffffffffffff808211156133a357600080fd5b6133af8b838c01612e1f565b909750955060a08a0135945060c08a01359150808211156133cf57600080fd5b506133dc8a828b01612e1f565b989b979a50959850939692959293505050565b60008060008060008060c0878903121561340857600080fd5b61341187612d2c565b955061341f60208801612d2c565b945061342d60408801612d2c565b93506060870135925061344260808801612fe2565b915060a087013590509295509295509295565b6000806000806080858703121561346b57600080fd5b843593506020850135925061348260408601612fe2565b9396929550929360600135925050565b6000602082840312156134a457600080fd5b61334c82612cc3565b6000602082840312156134bf57600080fd5b61334c826130c6565b600080600080600060c086880312156134e057600080fd5b6134e986612cc3565b94506134f88760208801612ce0565b9350608086013567ffffffffffffffff81111561351457600080fd5b61352088828901612e6b565b90945092506131df905060a08701612d2c565b634e487b7160e01b600052602160045260246000fd5b600061010082019050825182526020830151602083015267ffffffffffffffff6040840151166040830152606083015163ffffffff80821660608501528060808601511660808501528060a08601511660a0850152505060c0830151600681106135c357634e487b7160e01b600052602160045260246000fd5b8060c08401525060e083015160e083015292915050565b8035825263ffffffff6135ef60208301612fce565b16602083015267ffffffffffffffff61360a60408301612d2c565b1660408301525050565b8381526001600160601b03198316602082015260a0810161363860408301846135da565b949350505050565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114612cdb57600080fd5b6000808335601e1984360301811261368757600080fd5b830160208101925035905067ffffffffffffffff8111156136a757600080fd5b803603831315612e6457600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60007fffffffff000000000000000000000000000000000000000000000000000000008061370c84613640565b16845261371c6020840184613670565b608060208701526137316080870182846136b6565b9150506137416040850185613670565b86830360408801526137548382846136b6565b925050508161376560608601613640565b166060860152809250505092915050565b60006137828283613670565b606085526137946060860182846136b6565b915050602083013560208501526137ae6040840184613670565b85830360408701526137c18382846136b6565b9695505050505050565b85815260e0602082015260006137e460e08301876136df565b82810360408401526137f68187613776565b91505061380660608301856135da565b6bffffffffffffffffffffffff19831660c08301529695505050505050565b8183526000602080850194508260005b8581101561385e5763ffffffff61384b83612fce565b1687529582019590820190600101613835565b509495945050505050565b8681526bffffffffffffffffffffffff1986166020820152608060408201526000613898608083018688613825565b82810360608401526138ab8185876136b6565b9998505050505050505050565b8681526080602082015260006138d26080830187896136b6565b82810360408401526138e5818688613825565b915050826060830152979650505050505050565b6000610120858352806020840152613913818401866136df565b91505063ffffffff61392484612fce565b1660408301526001600160a01b0361393e602085016130c6565b16606083015260408301357fffffffffffffffff0000000000000000000000000000000000000000000000008116811461397757600080fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000001660808301526139aa60608401612cc3565b6001600160601b03191660a08301526139c560808401612cc3565b6001600160601b03191660c08301526139e060a08401613640565b7fffffffff000000000000000000000000000000000000000000000000000000001660e0830152613a1360c084016130c6565b6001600160a01b03811661010084015250949350505050565b85815260c060208201526000613a4660c0830186886136b6565b90508360408301528235606083015260208301356080830152604083013560ff8116808214613a7457600080fd5b8060a085015250509695505050505050565b868152608060208201526000613aa06080830187896136b6565b8281036040840152613ab38186886136b6565b9150508215156060830152979650505050505050565b84815260c060208201526000613ae260c08301866136df565b8281036040840152613af48186613776565b915050613b0460608301846135da565b95945050505050565b8481526bffffffffffffffffffffffff19841660208201526060604082015260006137c1606083018486613825565b8281526080810161334c60208301846135da565b60006101008a835260206bffffffffffffffffffffffff19808c1682860152613b7c604086018c6135da565b8260a0860152613b8f8386018a8c613825565b60c0860189905285810360e0870152868152879350820160005b87811015613bce5782613bbb86612cc3565b1682529383019390830190600101613ba9565b509d9c50505050505050505050505050565b8681526001600160601b031986166020820152613c0060408201866135da565b60e060a08201526000613c1760e0830185876136b6565b905067ffffffffffffffff831660c0830152979650505050505050565b600063ffffffff808316818516808303821115613c6157634e487b7160e01b600052601160045260246000fd5b0194935050505056fea2646970667358221220eb8d07fec0bc25cf2a5a07c150a4e763bfca689d80b7ecbba18e47bc473e344864736f6c63430008090033",
|
|
2070
2262
|
"linkReferences": {
|
|
2071
2263
|
"contracts/bridge/Deposit.sol": {
|
|
2072
2264
|
"Deposit": [
|
|
2073
2265
|
{
|
|
2074
2266
|
"length": 20,
|
|
2075
|
-
"start":
|
|
2267
|
+
"start": 5950
|
|
2268
|
+
}
|
|
2269
|
+
]
|
|
2270
|
+
},
|
|
2271
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2272
|
+
"DepositSweep": [
|
|
2273
|
+
{
|
|
2274
|
+
"length": 20,
|
|
2275
|
+
"start": 6507
|
|
2076
2276
|
}
|
|
2077
2277
|
]
|
|
2078
2278
|
},
|
|
@@ -2080,15 +2280,15 @@
|
|
|
2080
2280
|
"Fraud": [
|
|
2081
2281
|
{
|
|
2082
2282
|
"length": 20,
|
|
2083
|
-
"start":
|
|
2283
|
+
"start": 5668
|
|
2084
2284
|
},
|
|
2085
2285
|
{
|
|
2086
2286
|
"length": 20,
|
|
2087
|
-
"start":
|
|
2287
|
+
"start": 6220
|
|
2088
2288
|
},
|
|
2089
2289
|
{
|
|
2090
2290
|
"length": 20,
|
|
2091
|
-
"start":
|
|
2291
|
+
"start": 6309
|
|
2092
2292
|
}
|
|
2093
2293
|
]
|
|
2094
2294
|
},
|
|
@@ -2096,19 +2296,23 @@
|
|
|
2096
2296
|
"MovingFunds": [
|
|
2097
2297
|
{
|
|
2098
2298
|
"length": 20,
|
|
2099
|
-
"start":
|
|
2299
|
+
"start": 4987
|
|
2100
2300
|
},
|
|
2101
2301
|
{
|
|
2102
2302
|
"length": 20,
|
|
2103
|
-
"start":
|
|
2303
|
+
"start": 5236
|
|
2104
2304
|
},
|
|
2105
2305
|
{
|
|
2106
2306
|
"length": 20,
|
|
2107
|
-
"start":
|
|
2307
|
+
"start": 6594
|
|
2108
2308
|
},
|
|
2109
2309
|
{
|
|
2110
2310
|
"length": 20,
|
|
2111
|
-
"start":
|
|
2311
|
+
"start": 6917
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"length": 20,
|
|
2315
|
+
"start": 7374
|
|
2112
2316
|
}
|
|
2113
2317
|
]
|
|
2114
2318
|
},
|
|
@@ -2116,23 +2320,15 @@
|
|
|
2116
2320
|
"Redemption": [
|
|
2117
2321
|
{
|
|
2118
2322
|
"length": 20,
|
|
2119
|
-
"start":
|
|
2323
|
+
"start": 5378
|
|
2120
2324
|
},
|
|
2121
2325
|
{
|
|
2122
2326
|
"length": 20,
|
|
2123
|
-
"start":
|
|
2327
|
+
"start": 7285
|
|
2124
2328
|
},
|
|
2125
2329
|
{
|
|
2126
2330
|
"length": 20,
|
|
2127
|
-
"start":
|
|
2128
|
-
}
|
|
2129
|
-
]
|
|
2130
|
-
},
|
|
2131
|
-
"contracts/bridge/Sweep.sol": {
|
|
2132
|
-
"Sweep": [
|
|
2133
|
-
{
|
|
2134
|
-
"length": 20,
|
|
2135
|
-
"start": 5659
|
|
2331
|
+
"start": 7698
|
|
2136
2332
|
}
|
|
2137
2333
|
]
|
|
2138
2334
|
},
|
|
@@ -2140,19 +2336,19 @@
|
|
|
2140
2336
|
"Wallets": [
|
|
2141
2337
|
{
|
|
2142
2338
|
"length": 20,
|
|
2143
|
-
"start":
|
|
2339
|
+
"start": 5545
|
|
2144
2340
|
},
|
|
2145
2341
|
{
|
|
2146
2342
|
"length": 20,
|
|
2147
|
-
"start":
|
|
2343
|
+
"start": 5865
|
|
2148
2344
|
},
|
|
2149
2345
|
{
|
|
2150
2346
|
"length": 20,
|
|
2151
|
-
"start":
|
|
2347
|
+
"start": 6681
|
|
2152
2348
|
},
|
|
2153
2349
|
{
|
|
2154
2350
|
"length": 20,
|
|
2155
|
-
"start":
|
|
2351
|
+
"start": 6843
|
|
2156
2352
|
}
|
|
2157
2353
|
]
|
|
2158
2354
|
}
|
|
@@ -2162,7 +2358,15 @@
|
|
|
2162
2358
|
"Deposit": [
|
|
2163
2359
|
{
|
|
2164
2360
|
"length": 20,
|
|
2165
|
-
"start":
|
|
2361
|
+
"start": 4858
|
|
2362
|
+
}
|
|
2363
|
+
]
|
|
2364
|
+
},
|
|
2365
|
+
"contracts/bridge/DepositSweep.sol": {
|
|
2366
|
+
"DepositSweep": [
|
|
2367
|
+
{
|
|
2368
|
+
"length": 20,
|
|
2369
|
+
"start": 5415
|
|
2166
2370
|
}
|
|
2167
2371
|
]
|
|
2168
2372
|
},
|
|
@@ -2170,15 +2374,15 @@
|
|
|
2170
2374
|
"Fraud": [
|
|
2171
2375
|
{
|
|
2172
2376
|
"length": 20,
|
|
2173
|
-
"start":
|
|
2377
|
+
"start": 4576
|
|
2174
2378
|
},
|
|
2175
2379
|
{
|
|
2176
2380
|
"length": 20,
|
|
2177
|
-
"start":
|
|
2381
|
+
"start": 5128
|
|
2178
2382
|
},
|
|
2179
2383
|
{
|
|
2180
2384
|
"length": 20,
|
|
2181
|
-
"start":
|
|
2385
|
+
"start": 5217
|
|
2182
2386
|
}
|
|
2183
2387
|
]
|
|
2184
2388
|
},
|
|
@@ -2186,19 +2390,23 @@
|
|
|
2186
2390
|
"MovingFunds": [
|
|
2187
2391
|
{
|
|
2188
2392
|
"length": 20,
|
|
2189
|
-
"start":
|
|
2393
|
+
"start": 3895
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"length": 20,
|
|
2397
|
+
"start": 4144
|
|
2190
2398
|
},
|
|
2191
2399
|
{
|
|
2192
2400
|
"length": 20,
|
|
2193
|
-
"start":
|
|
2401
|
+
"start": 5502
|
|
2194
2402
|
},
|
|
2195
2403
|
{
|
|
2196
2404
|
"length": 20,
|
|
2197
|
-
"start":
|
|
2405
|
+
"start": 5825
|
|
2198
2406
|
},
|
|
2199
2407
|
{
|
|
2200
2408
|
"length": 20,
|
|
2201
|
-
"start":
|
|
2409
|
+
"start": 6282
|
|
2202
2410
|
}
|
|
2203
2411
|
]
|
|
2204
2412
|
},
|
|
@@ -2206,23 +2414,15 @@
|
|
|
2206
2414
|
"Redemption": [
|
|
2207
2415
|
{
|
|
2208
2416
|
"length": 20,
|
|
2209
|
-
"start":
|
|
2417
|
+
"start": 4286
|
|
2210
2418
|
},
|
|
2211
2419
|
{
|
|
2212
2420
|
"length": 20,
|
|
2213
|
-
"start":
|
|
2421
|
+
"start": 6193
|
|
2214
2422
|
},
|
|
2215
2423
|
{
|
|
2216
2424
|
"length": 20,
|
|
2217
|
-
"start":
|
|
2218
|
-
}
|
|
2219
|
-
]
|
|
2220
|
-
},
|
|
2221
|
-
"contracts/bridge/Sweep.sol": {
|
|
2222
|
-
"Sweep": [
|
|
2223
|
-
{
|
|
2224
|
-
"length": 20,
|
|
2225
|
-
"start": 4610
|
|
2425
|
+
"start": 6606
|
|
2226
2426
|
}
|
|
2227
2427
|
]
|
|
2228
2428
|
},
|
|
@@ -2230,19 +2430,19 @@
|
|
|
2230
2430
|
"Wallets": [
|
|
2231
2431
|
{
|
|
2232
2432
|
"length": 20,
|
|
2233
|
-
"start":
|
|
2433
|
+
"start": 4453
|
|
2234
2434
|
},
|
|
2235
2435
|
{
|
|
2236
2436
|
"length": 20,
|
|
2237
|
-
"start":
|
|
2437
|
+
"start": 4773
|
|
2238
2438
|
},
|
|
2239
2439
|
{
|
|
2240
2440
|
"length": 20,
|
|
2241
|
-
"start":
|
|
2441
|
+
"start": 5589
|
|
2242
2442
|
},
|
|
2243
2443
|
{
|
|
2244
2444
|
"length": 20,
|
|
2245
|
-
"start":
|
|
2445
|
+
"start": 5751
|
|
2246
2446
|
}
|
|
2247
2447
|
]
|
|
2248
2448
|
}
|