Contract
0xa8e9020f9a1908b520d1577a7d1292fa9d44a9ba
1
Contract Overview
Balance:
0 ETH
ETH Value:
$0.00
My Name Tag:
Not Available
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xb94cc74031662b8c1734fd76392aa282dac691a2e280f66f4ec86b8c3591498a | 0x60806040 | 8971910 | 313 days 2 hrs ago | 0x58b529f9084d7eaa598eb3477fe36064c5b7bbc1 | IN | Create: Multicall2 | 0 ETH | 0.004936985141 ETH |
[ Download CSV Export ]
Contract Name:
Multicall2
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.12; /// @title Multicall2 - Aggregate results from multiple read-only function calls /// @author Michael Elliot <[email protected]> /// @author Joshua Levine <[email protected]> /// @author Nick Johnson <[email protected]> contract Multicall2 { struct Call { address target; bytes callData; } struct Result { bool success; bytes returnData; } function aggregate(Call[] memory calls) public returns (uint256 blockNumber, bytes[] memory returnData) { blockNumber = block.number; returnData = new bytes[](calls.length); for (uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory ret) = calls[i].target.call(calls[i].callData); require(success, "Multicall aggregate: call failed"); returnData[i] = ret; } } function blockAndAggregate(Call[] memory calls) public returns ( uint256 blockNumber, bytes32 blockHash, Result[] memory returnData ) { (blockNumber, blockHash, returnData) = tryBlockAndAggregate(true, calls); } function getBlockHash(uint256 blockNumber) public view returns (bytes32 blockHash) { blockHash = blockhash(blockNumber); } function getBlockNumber() public view returns (uint256 blockNumber) { blockNumber = block.number; } function getCurrentBlockCoinbase() public view returns (address coinbase) { coinbase = block.coinbase; } function getCurrentBlockDifficulty() public view returns (uint256 difficulty) { difficulty = block.difficulty; } function getCurrentBlockGasLimit() public view returns (uint256 gaslimit) { gaslimit = block.gaslimit; } function getCurrentBlockTimestamp() public view returns (uint256 timestamp) { timestamp = block.timestamp; } function getEthBalance(address addr) public view returns (uint256 balance) { balance = addr.balance; } function getLastBlockHash() public view returns (bytes32 blockHash) { blockHash = blockhash(block.number - 1); } function tryAggregate(bool requireSuccess, Call[] memory calls) public returns (Result[] memory returnData) { returnData = new Result[](calls.length); for (uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory ret) = calls[i].target.call(calls[i].callData); if (requireSuccess) { require(success, "Multicall2 aggregate: call failed"); } returnData[i] = Result(success, ret); } } function tryBlockAndAggregate(bool requireSuccess, Call[] memory calls) public returns ( uint256 blockNumber, bytes32 blockHash, Result[] memory returnData ) { blockNumber = block.number; blockHash = blockhash(block.number); returnData = tryAggregate(requireSuccess, calls); } }
{ "optimizer": { "enabled": true, "runs": 800, "details": { "yul": false } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true } }
[{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"aggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes[]","name":"returnData","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"blockAndAggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"blockHash","type":"bytes32"},{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getBlockHash","outputs":[{"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNumber","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockCoinbase","outputs":[{"internalType":"address","name":"coinbase","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockDifficulty","outputs":[{"internalType":"uint256","name":"difficulty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockGasLimit","outputs":[{"internalType":"uint256","name":"gaslimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBlockTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getEthBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastBlockHash","outputs":[{"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"requireSuccess","type":"bool"},{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"tryAggregate","outputs":[{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"requireSuccess","type":"bool"},{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct Multicall2.Call[]","name":"calls","type":"tuple[]"}],"name":"tryBlockAndAggregate","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"blockHash","type":"bytes32"},{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"returnData","type":"bytes"}],"internalType":"struct Multicall2.Result[]","name":"returnData","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50610b83806100206000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806372425d9d11610081578063bce38bd71161005b578063bce38bd714610177578063c3077fa914610197578063ee82ac5e146101aa57600080fd5b806372425d9d1461015d57806386d516e814610163578063a8b0574e1461016957600080fd5b8063399542e9116100b2578063399542e91461011a57806342cbb15c1461013c5780634d2301cc1461014257600080fd5b80630f28c97d146100d9578063252dba42146100f157806327e86d6e14610112575b600080fd5b425b6040516100e891906104e8565b60405180910390f35b6101046100ff366004610757565b6101bc565b6040516100e892919061086d565b6100db610318565b61012d6101283660046108a0565b61032b565b6040516100e89392919061099a565b436100db565b6100db6101503660046109c7565b6001600160a01b03163190565b446100db565b456100db565b416040516100e891906109f1565b61018a6101853660046108a0565b610343565b6040516100e891906109ff565b61012d6101a5366004610757565b6104c3565b6100db6101b8366004610a21565b4090565b8051439060609067ffffffffffffffff8111156101db576101db6104fc565b60405190808252806020026020018201604052801561020e57816020015b60608152602001906001900390816101f95790505b50905060005b83518110156103125760008085838151811061023257610232610a42565b6020026020010151600001516001600160a01b031686848151811061025957610259610a42565b6020026020010151602001516040516102729190610a7a565b6000604051808303816000865af19150503d80600081146102af576040519150601f19603f3d011682016040523d82523d6000602084013e6102b4565b606091505b5091509150816102df5760405162461bcd60e51b81526004016102d690610a86565b60405180910390fd5b808484815181106102f2576102f2610a42565b60200260200101819052505050808061030a90610ad6565b915050610214565b50915091565b6000610325600143610af1565b40905090565b438040606061033a8585610343565b90509250925092565b6060815167ffffffffffffffff81111561035f5761035f6104fc565b6040519080825280602002602001820160405280156103a557816020015b60408051808201909152600081526060602082015281526020019060019003908161037d5790505b50905060005b82518110156104bc576000808483815181106103c9576103c9610a42565b6020026020010151600001516001600160a01b03168584815181106103f0576103f0610a42565b6020026020010151602001516040516104099190610a7a565b6000604051808303816000865af19150503d8060008114610446576040519150601f19603f3d011682016040523d82523d6000602084013e61044b565b606091505b5091509150851561047357816104735760405162461bcd60e51b81526004016102d690610b08565b604051806040016040528083151581526020018281525084848151811061049c5761049c610a42565b6020026020010181905250505080806104b490610ad6565b9150506103ab565b5092915050565b60008060606104d360018561032b565b9196909550909350915050565b805b82525050565b602081016104f682846104e0565b92915050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715610538576105386104fc565b6040525050565b600061054a60405190565b90506105568282610512565b919050565b600067ffffffffffffffff821115610575576105756104fc565b5060209081020190565b60006001600160a01b0382166104f6565b6105998161057f565b81146105a457600080fd5b50565b80356104f681610590565b600067ffffffffffffffff8211156105cc576105cc6104fc565b601f19601f83011660200192915050565b82818337506000910152565b60006105fc6105f7846105b2565b61053f565b90508281526020810184848401111561061757610617600080fd5b6106228482856105dd565b509392505050565b600082601f83011261063e5761063e600080fd5b813561064e8482602086016105e9565b949350505050565b60006040828403121561066b5761066b600080fd5b610675604061053f565b9050600061068384846105a7565b825250602082013567ffffffffffffffff8111156106a3576106a3600080fd5b6106af8482850161062a565b60208301525092915050565b60006106c96105f78461055b565b838152905060208082019084028301858111156106e8576106e8600080fd5b835b8181101561072957803567ffffffffffffffff81111561070c5761070c600080fd5b8086016107198982610656565b85525050602092830192016106ea565b5050509392505050565b600082601f83011261074757610747600080fd5b813561064e8482602086016106bb565b60006020828403121561076c5761076c600080fd5b813567ffffffffffffffff81111561078657610786600080fd5b61064e84828501610733565b60005b838110156107ad578181015183820152602001610795565b838111156107bc576000848401525b50505050565b60006107cc825190565b8084526020840193506107e3818560208601610792565b601f01601f19169290920192915050565b600061080083836107c2565b9392505050565b6000610811825190565b8084526020840193508360208202850161082b8560200190565b8060005b85811015610860578484038952815161084885826107f4565b94506020830160209a909a019992505060010161082f565b5091979650505050505050565b6040810161087b82856104e0565b818103602083015261064e8184610807565b801515610599565b80356104f68161088d565b600080604083850312156108b6576108b6600080fd5b60006108c28585610895565b925050602083013567ffffffffffffffff8111156108e2576108e2600080fd5b6108ee85828601610733565b9150509250929050565b8015156104e2565b8051600090604084019061091485826108f8565b506020830151848203602086015261092c82826107c2565b95945050505050565b60006108008383610900565b600061094b825190565b808452602084019350836020820285016109658560200190565b8060005b8581101561086057848403895281516109828582610935565b94506020830160209a909a0199925050600101610969565b606081016109a882866104e0565b6109b560208301856104e0565b818103604083015261092c8184610941565b6000602082840312156109dc576109dc600080fd5b600061064e84846105a7565b6104e28161057f565b602081016104f682846109e8565b602080825281016108008184610941565b80610599565b80356104f681610a10565b600060208284031215610a3657610a36600080fd5b600061064e8484610a16565b634e487b7160e01b600052603260045260246000fd5b6000610a62825190565b610a70818560208601610792565b9290920192915050565b60006108008284610a58565b60208082528181019081527f4d756c746963616c6c206167677265676174653a2063616c6c206661696c65646040830152606082016104f6565b634e487b7160e01b600052601160045260246000fd5b6000600019821415610aea57610aea610ac0565b5060010190565b600082821015610b0357610b03610ac0565b500390565b602080825281016104f681602181527f4d756c746963616c6c32206167677265676174653a2063616c6c206661696c656020820152601960fa1b60408201526060019056fea26469706673582212200cce35cdacaa91b1930b2d806ec1cd681e9fe9e63cf4b0a38b87220c596c7f5f64736f6c634300080c0033
Deployed ByteCode Sourcemap
291:2786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1839:120;1937:15;1839:120;;;;;;;:::i;:::-;;;;;;;;464:445;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2085:124::-;;;:::i;2707:368::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;1348:111::-;1440:12;1348:111;;1965:114;;;;;;:::i;:::-;-1:-1:-1;;;;;2060:12:0;;;1965:114;1587:124;1688:16;1587:124;;1717:116;1812:14;1717:116;;1465;1560:14;1465:116;;;;;;:::i;2215:486::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;915:287::-;;;;;;:::i;:::-;;:::i;1208:134::-;;;;;;:::i;:::-;1313:22;;1208:134;464:445;639:12;;592;;541:25;;627;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;614:38;;667:9;662:241;686:5;:12;682:1;:16;662:241;;;720:12;734:16;754:5;760:1;754:8;;;;;;;;:::i;:::-;;;;;;;:15;;;-1:-1:-1;;;;;754:20:0;775:5;781:1;775:8;;;;;;;;:::i;:::-;;;;;;;:17;;;754:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719:74;;;;815:7;807:52;;;;-1:-1:-1;;;807:52:0;;;;;;;:::i;:::-;;;;;;;;;889:3;873:10;884:1;873:13;;;;;;;;:::i;:::-;;;;;;:19;;;;705:198;;700:3;;;;;:::i;:::-;;;;662:241;;;;464:445;;;:::o;2085:124::-;2134:17;2185:16;2200:1;2185:12;:16;:::i;:::-;2175:27;2163:39;;2085:124;:::o;2707:368::-;2953:12;2987:23;;2888:26;3033:35;3046:14;3062:5;3033:12;:35::i;:::-;3020:48;;2707:368;;;;;:::o;2215:486::-;2295:26;2359:5;:12;2346:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;2346:26:0;;;;;;;;;;;;;;;;2333:39;;2387:9;2382:313;2406:5;:12;2402:1;:16;2382:313;;;2440:12;2454:16;2474:5;2480:1;2474:8;;;;;;;;:::i;:::-;;;;;;;:15;;;-1:-1:-1;;;;;2474:20:0;2495:5;2501:1;2495:8;;;;;;;;:::i;:::-;;;;;;;:17;;;2474:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2439:74;;;;2532:14;2528:106;;;2574:7;2566:53;;;;-1:-1:-1;;;2566:53:0;;;;;;;:::i;:::-;2664:20;;;;;;;;2671:7;2664:20;;;;;;2680:3;2664:20;;;2648:10;2659:1;2648:13;;;;;;;;:::i;:::-;;;;;;:36;;;;2425:270;;2420:3;;;;;:::i;:::-;;;;2382:313;;;;2215:486;;;;:::o;915:287::-;1008:19;1041:17;1072:26;1162:33;1183:4;1189:5;1162:20;:33::i;:::-;1123:72;;;;-1:-1:-1;1123:72:0;;-1:-1:-1;915:287:0;-1:-1:-1;;915:287:0:o;90:118:1:-;195:5;177:24;172:3;165:37;90:118;;:::o;214:222::-;345:2;330:18;;358:71;334:9;402:6;358:71;:::i;:::-;214:222;;;;:::o;1000:180::-;-1:-1:-1;;;1045:1:1;1038:88;1145:4;1142:1;1135:15;1169:4;1166:1;1159:15;1186:281;-1:-1:-1;;984:2:1;964:14;;960:28;1261:6;1257:40;1399:6;1387:10;1384:22;1363:18;1351:10;1348:34;1345:62;1342:88;;;1410:18;;:::i;:::-;1446:2;1439:22;-1:-1:-1;;1186:281:1:o;1473:129::-;1507:6;1534:20;508:2;502:9;;442:75;1534:20;1524:30;;1563:33;1591:4;1583:6;1563:33;:::i;:::-;1473:129;;;:::o;1608:330::-;1704:4;1794:18;1786:6;1783:30;1780:56;;;1816:18;;:::i;:::-;-1:-1:-1;1866:4:1;1854:17;;;1916:15;;1608:330::o;2445:96::-;2482:7;-1:-1:-1;;;;;2379:54:1;;2511:24;2313:126;2547:122;2620:24;2638:5;2620:24;:::i;:::-;2613:5;2610:35;2600:63;;2659:1;2656;2649:12;2600:63;2547:122;:::o;2675:139::-;2746:20;;2775:33;2746:20;2775:33;:::i;2943:307::-;3004:4;3094:18;3086:6;3083:30;3080:56;;;3116:18;;:::i;:::-;-1:-1:-1;;984:2:1;964:14;;960:28;3238:4;3228:15;;2943:307;-1:-1:-1;;2943:307:1:o;3256:154::-;3340:6;3335:3;3330;3317:30;-1:-1:-1;3402:1:1;3384:16;;3377:27;3256:154::o;3416:410::-;3493:5;3518:65;3534:48;3575:6;3534:48;:::i;:::-;3518:65;:::i;:::-;3509:74;;3606:6;3599:5;3592:21;3644:4;3637:5;3633:16;3682:3;3673:6;3668:3;3664:16;3661:25;3658:112;;;3689:79;291:2786:0;;;3689:79:1;3779:41;3813:6;3808:3;3803;3779:41;:::i;:::-;3499:327;3416:410;;;;;:::o;3845:338::-;3900:5;3949:3;3942:4;3934:6;3930:17;3926:27;3916:122;;3957:79;291:2786:0;;;3957:79:1;4074:6;4061:20;4099:78;4173:3;4165:6;4158:4;4150:6;4146:17;4099:78;:::i;:::-;4090:87;3845:338;-1:-1:-1;;;;3845:338:1:o;4219:743::-;4287:5;4331:4;4319:9;4314:3;4310:19;4306:30;4303:117;;;4339:79;291:2786:0;;;4339:79:1;4438:21;4454:4;4438:21;:::i;:::-;4429:30;-1:-1:-1;4520:1:1;4560:49;4605:3;4585:9;4560:49;:::i;:::-;4535:75;;-1:-1:-1;4712:2:1;4697:18;;4684:32;4743:18;4732:30;;4729:117;;;4765:79;291:2786:0;;;4765:79:1;4885:58;4939:3;4930:6;4919:9;4915:22;4885:58;:::i;:::-;4878:4;4871:5;4867:16;4860:84;4631:324;4219:743;;;;:::o;5000:972::-;5115:5;5140:100;5156:83;5232:6;5156:83;:::i;5140:100::-;5275:21;;;5131:109;-1:-1:-1;5323:4:1;5312:16;;;;5364:17;;5352:30;;5394:15;;;5391:122;;;5424:79;291:2786:0;;;5424:79:1;5539:6;5522:444;5556:6;5551:3;5548:15;5522:444;;;5645:3;5632:17;5681:18;5668:11;5665:35;5662:122;;;5703:79;291:2786:0;;;5703:79:1;5827:11;5819:6;5815:24;5865:56;5917:3;5905:10;5865:56;:::i;:::-;5853:69;;-1:-1:-1;;5951:4:1;5942:14;;;;5573;5522:444;;;5526:21;5121:851;;5000:972;;;;;:::o;6010:408::-;6100:5;6149:3;6142:4;6134:6;6130:17;6126:27;6116:122;;6157:79;291:2786:0;;;6157:79:1;6274:6;6261:20;6299:113;6408:3;6400:6;6393:4;6385:6;6381:17;6299:113;:::i;6424:577::-;6527:6;6576:2;6564:9;6555:7;6551:23;6547:32;6544:119;;;6582:79;291:2786:0;;;6582:79:1;6702:31;;6760:18;6749:30;;6746:117;;;6782:79;291:2786:0;;;6782:79:1;6887:97;6976:7;6967:6;6956:9;6952:22;6887:97;:::i;7750:307::-;7818:1;7828:113;7842:6;7839:1;7836:13;7828:113;;;7918:11;;;7912:18;7899:11;;;7892:39;7864:2;7857:10;7828:113;;;7959:6;7956:1;7953:13;7950:101;;;8039:1;8030:6;8025:3;8021:16;8014:27;7950:101;7799:258;7750:307;;;:::o;8063:340::-;8139:3;8167:38;8199:5;7111:12;;7007:123;8167:38;7266:19;;;7318:4;7309:14;;8214:67;;8290:52;8335:6;8330:3;8323:4;8316:5;8312:16;8290:52;:::i;:::-;984:2;964:14;-1:-1:-1;;960:28:1;8358:39;;;;;;-1:-1:-1;;8063:340:1:o;8409:192::-;8496:10;8531:64;8591:3;8583:6;8531:64;:::i;:::-;8517:78;8409:192;-1:-1:-1;;;8409:192:1:o;8761:983::-;8898:3;8927:63;8984:5;7111:12;;7007:123;8927:63;7266:19;;;7318:4;7309:14;;8999:102;;9127:3;9172:4;9164:6;9160:17;9155:3;9151:27;9202:65;9261:5;7464:4;7455:14;;7335:141;9202:65;9290:7;9321:1;9306:393;9331:6;9328:1;9325:13;9306:393;;;9402:9;9396:4;9392:20;9387:3;9380:33;9453:6;9447:13;9481:82;9558:4;9543:13;9481:82;:::i;:::-;9473:90;-1:-1:-1;8718:4:1;8709:14;;9684:4;9675:14;;;;;9576:79;-1:-1:-1;;9353:1:1;9346:9;9306:393;;;-1:-1:-1;9715:4:1;;8761:983;-1:-1:-1;;;;;;;8761:983:1:o;9750:519::-;9977:2;9962:18;;9990:71;9966:9;10034:6;9990:71;:::i;:::-;10108:9;10102:4;10098:20;10093:2;10082:9;10078:18;10071:48;10136:126;10257:4;10248:6;10136:126;:::i;10806:116::-;10780:13;;10773:21;10876;10710:90;10928:133;10996:20;;11025:30;10996:20;11025:30;:::i;11067:716::-;11176:6;11184;11233:2;11221:9;11212:7;11208:23;11204:32;11201:119;;;11239:79;291:2786:0;;;11239:79:1;11359:1;11384:50;11426:7;11406:9;11384:50;:::i;:::-;11374:60;;11330:114;11511:2;11500:9;11496:18;11483:32;11542:18;11534:6;11531:30;11528:117;;;11564:79;291:2786:0;;;11564:79:1;11669:97;11758:7;11749:6;11738:9;11734:22;11669:97;:::i;:::-;11659:107;;11454:322;11067:716;;;;;:::o;12303:99::-;10780:13;;10773:21;12374;10710:90;12468:591;12680:23;;12571:3;;12607:4;12598:14;;;12716:57;12602:3;12680:23;12716:57;:::i;:::-;12622:161;12871:4;12864:5;12860:16;12854:23;12924:3;12918:4;12914:14;12907:4;12902:3;12898:14;12891:38;12950:71;13016:4;13002:12;12950:71;:::i;:::-;12942:79;12468:591;-1:-1:-1;;;;;12468:591:1:o;13065:244::-;13178:10;13213:90;13299:3;13291:6;13213:90;:::i;13520:1087::-;13683:3;13712:76;13782:5;7111:12;;7007:123;13712:76;7266:19;;;7318:4;7309:14;;13797:115;;13938:3;13983:4;13975:6;13971:17;13966:3;13962:27;14013:78;14085:5;7464:4;7455:14;;7335:141;14013:78;14114:7;14145:1;14130:432;14155:6;14152:1;14149:13;14130:432;;;14226:9;14220:4;14216:20;14211:3;14204:33;14277:6;14271:13;14305:108;14408:4;14393:13;14305:108;:::i;:::-;14297:116;-1:-1:-1;8718:4:1;8709:14;;14547:4;14538:14;;;;;14426:92;-1:-1:-1;;14177:1:1;14170:9;14130:432;;14613:681;14894:2;14879:18;;14907:71;14883:9;14951:6;14907:71;:::i;:::-;14988:72;15056:2;15045:9;15041:18;15032:6;14988:72;:::i;:::-;15107:9;15101:4;15097:20;15092:2;15081:9;15077:18;15070:48;15135:152;15282:4;15273:6;15135:152;:::i;15300:329::-;15359:6;15408:2;15396:9;15387:7;15383:23;15379:32;15376:119;;;15414:79;291:2786:0;;;15414:79:1;15534:1;15559:53;15604:7;15584:9;15559:53;:::i;15635:118::-;15722:24;15740:5;15722:24;:::i;15759:222::-;15890:2;15875:18;;15903:71;15879:9;15947:6;15903:71;:::i;15987:461::-;16212:2;16225:47;;;16197:18;;16289:152;16197:18;16427:6;16289:152;:::i;16454:122::-;16545:5;16527:24;7:77;16582:139;16653:20;;16682:33;16653:20;16682:33;:::i;16727:329::-;16786:6;16835:2;16823:9;16814:7;16810:23;16806:32;16803:119;;;16841:79;291:2786:0;;;16841:79:1;16961:1;16986:53;17031:7;17011:9;16986:53;:::i;17062:180::-;-1:-1:-1;;;17107:1:1;17100:88;17207:4;17204:1;17197:15;17231:4;17228:1;17221:15;17401:373;17505:3;17533:38;17565:5;7111:12;;7007:123;17533:38;17684:52;17729:6;17724:3;17717:4;17710:5;17706:16;17684:52;:::i;:::-;17752:16;;;;;17401:373;-1:-1:-1;;17401:373:1:o;17780:271::-;17910:3;17932:93;18021:3;18012:6;17932:93;:::i;18792:419::-;18996:2;19009:47;;;18981:18;;;7266:19;;;18372:34;7309:14;;;18349:58;18768:12;;;19073:131;18420:366;19217:180;-1:-1:-1;;;19262:1:1;19255:88;19362:4;19359:1;19352:15;19386:4;19383:1;19376:15;19403:233;19442:3;-1:-1:-1;;19504:5:1;19501:77;19498:103;;;19581:18;;:::i;:::-;-1:-1:-1;19628:1:1;19617:13;;19403:233::o;19642:191::-;19682:4;19775:1;19772;19769:8;19766:34;;;19780:18;;:::i;:::-;-1:-1:-1;19818:9:1;;19642:191::o;20437:419::-;20641:2;20654:47;;;20626:18;;20718:131;20626:18;20292:2;7266:19;;19979:34;7318:4;7309:14;;19956:58;-1:-1:-1;;;20031:15:1;;;20024:28;20413:12;;;20065:366
Metadata Hash
0cce35cdacaa91b1930b2d806ec1cd681e9fe9e63cf4b0a38b87220c596c7f5f
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.