Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
CocosCowNFTRewardProxy
Compiler Version
v0.5.5+commit.47a71e8f
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-02-09 */ /*** * ██████╗ ██████╗ ██████╗ ██████╗ ███████╗ ██████╗ ██████╗██╗ ██╗ * ██╔════╝██╔═══██╗██╔════╝██╔═══██╗██╔════╝ ██╔══██╗██╔════╝╚██╗██╔╝ * ██║ ██║ ██║██║ ██║ ██║███████╗█████╗██████╔╝██║ ╚███╔╝ * ██║ ██║ ██║██║ ██║ ██║╚════██║╚════╝██╔══██╗██║ ██╔██╗ * ╚██████╗╚██████╔╝╚██████╗╚██████╔╝███████║ ██████╔╝╚██████╗██╔╝ ██╗ * ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝ * * https://cocos.finance * MIT License * =========== * * Copyright (c) 2020 cocos-bcx * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE */// File: contracts/proxy/Proxy.sol pragma solidity ^0.5.0; contract Proxy { function() external payable { _fallback(); } function _implementation() internal view returns (address); function _delegate(address implementation) internal { assembly { calldatacopy(0, 0, calldatasize) let result := delegatecall( gas, implementation, 0, calldatasize, 0, 0 ) returndatacopy(0, 0, returndatasize) switch result case 0 { revert(0, returndatasize) } default { return(0, returndatasize) } } } function _willFallback() internal {} function _fallback() internal { _willFallback(); _delegate(_implementation()); } } // File: contracts/proxy/UpgradeabilityProxy.sol pragma solidity ^0.5.0; library AddressUtils { function isContract(address addr) internal view returns (bool) { uint256 size; assembly { size := extcodesize(addr) } return size > 0; } } contract UpgradeabilityProxy is Proxy { event Upgraded(address implementation); bytes32 private constant IMPLEMENTATION_SLOT = 0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3; constructor(address _implementation) public { assert( IMPLEMENTATION_SLOT == keccak256("org.zeppelinos.proxy.implementation") ); _setImplementation(_implementation); } function _implementation() internal view returns (address impl) { bytes32 slot = IMPLEMENTATION_SLOT; assembly { impl := sload(slot) } } function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } function _setImplementation(address newImplementation) private { require( AddressUtils.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address" ); bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot, newImplementation) } } } // File: contracts/proxy/AdminUpgradeabilityProxy.sol pragma solidity ^0.5.0; contract AdminUpgradeabilityProxy is UpgradeabilityProxy { event AdminChanged(address previousAdmin, address newAdmin); event AdminUpdated(address newAdmin); bytes32 private constant ADMIN_SLOT = 0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b; bytes32 private constant PENDING_ADMIN_SLOT = 0x54ac2bd5363dfe95a011c5b5a153968d77d153d212e900afce8624fdad74525c; modifier ifAdmin() { if (msg.sender == _admin()) { _; } else { _fallback(); } } constructor(address _implementation) public UpgradeabilityProxy(_implementation) { assert(ADMIN_SLOT == keccak256("org.zeppelinos.proxy.admin")); _setAdmin(msg.sender); } function admin() external ifAdmin returns (address) { return _admin(); } function pendingAdmin() external ifAdmin returns (address) { return _pendingAdmin(); } function implementation() external ifAdmin returns (address) { return _implementation(); } function changeAdmin(address _newAdmin) external ifAdmin { require( _newAdmin != address(0), "Cannot change the admin of a proxy to the zero address" ); require( _newAdmin != _admin(), "The current and new admin cannot be the same ." ); require( _newAdmin != _pendingAdmin(), "Cannot set the newAdmin of a proxy to the same address ." ); _setPendingAdmin(_newAdmin); emit AdminChanged(_admin(), _newAdmin); } function updateAdmin() external { address _newAdmin = _pendingAdmin(); require( _newAdmin != address(0), "Cannot change the admin of a proxy to the zero address" ); require( msg.sender == _newAdmin, "msg.sender and newAdmin must be the same ." ); _setAdmin(_newAdmin); _setPendingAdmin(address(0)); emit AdminUpdated(_newAdmin); } function upgradeTo(address newImplementation) external ifAdmin { _upgradeTo(newImplementation); } function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin { _upgradeTo(newImplementation); (bool success, ) = address(this).call.value(msg.value)(data); require(success, "upgradeToAndCall-error"); } function _admin() internal view returns (address adm) { bytes32 slot = ADMIN_SLOT; assembly { adm := sload(slot) } } function _pendingAdmin() internal view returns (address pendingAdm) { bytes32 slot = PENDING_ADMIN_SLOT; assembly { pendingAdm := sload(slot) } } function _setAdmin(address newAdmin) internal { bytes32 slot = ADMIN_SLOT; assembly { sstore(slot, newAdmin) } } function _setPendingAdmin(address pendingAdm) internal { bytes32 slot = PENDING_ADMIN_SLOT; assembly { sstore(slot, pendingAdm) } } function _willFallback() internal { require( msg.sender != _admin(), "Cannot call fallback function from the proxy admin" ); super._willFallback(); } } // File: contracts/reward/CocosCowNFTRewardProxy.sol pragma solidity ^0.5.5; contract CocosCowNFTRewardProxy is AdminUpgradeabilityProxy { constructor(address _implementation) public AdminUpgradeabilityProxy(_implementation) {} // Allow anyone to view the implementation address function proxyImplementation() external view returns (address) { return _implementation(); } function proxyAdmin() external view returns (address) { return _admin(); } }
[{"constant":true,"inputs":[],"name":"proxyImplementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"proxyAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newImplementation","type":"address"},{"name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"updateAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_implementation","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousAdmin","type":"address"},{"indexed":false,"name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAdmin","type":"address"}],"name":"AdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516020806111138339810180604052602081101561003057600080fd5b8101908080519060200190929190505050808060405180806110b560239139602301905060405180910390207f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b14151561008957fe5b6100988161011260201b60201c565b5060405180807f6f72672e7a657070656c696e6f732e70726f78792e61646d696e000000000000815250601a01905060405180910390207f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b1415156100fc57fe5b61010b336101ab60201b60201c565b50506101ed565b610125816101da60201b610d471760201c565b151561017c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806110d8603b913960400191505060405180910390fd5b60007f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b90508181555050565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b90508181555050565b600080823b905060008111915050919050565b610eb9806101fc6000396000f3fe6080604052600436106100865760003560e01c80634f1ef286116100595780634f1ef286146101e65780635c60da1b1461027f5780638f283970146102d6578063d3b2f59814610327578063f851a4401461033e57610086565b80630c870f911461009057806326782247146100e75780633659cfe61461013e5780633e47158c1461018f575b61008e610395565b005b34801561009c57600080fd5b506100a56103af565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156100f357600080fd5b506100fc6103be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014a57600080fd5b5061018d6004803603602081101561016157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610416565b005b34801561019b57600080fd5b506101a461046b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61027d600480360360408110156101fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561023957600080fd5b82018360208201111561024b57600080fd5b8035906020019184600183028401116401000000008311171561026d57600080fd5b909192939192939050505061047a565b005b34801561028b57600080fd5b506102946105be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102e257600080fd5b50610325600480360360208110156102f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610616565b005b34801561033357600080fd5b5061033c6108ad565b005b34801561034a57600080fd5b50610353610a40565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61039d610a98565b6103ad6103a8610b30565b610b61565b565b60006103b9610b30565b905090565b60006103c8610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561040a57610403610bb8565b9050610413565b610412610395565b5b90565b61041e610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561045f5761045a81610be9565b610468565b610467610395565b5b50565b6000610475610b87565b905090565b610482610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156105b0576104be83610be9565b60003073ffffffffffffffffffffffffffffffffffffffff1634848460405180838380828437808301925050509250505060006040518083038185875af1925050503d806000811461052c576040519150601f19603f3d011682016040523d82523d6000602084013e610531565b606091505b505090508015156105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f75706772616465546f416e6443616c6c2d6572726f720000000000000000000081525060200191505060405180910390fd5b506105b9565b6105b8610395565b5b505050565b60006105c8610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561060a57610603610b30565b9050610613565b610612610395565b5b90565b61061e610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156108a157600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156106d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180610db76036913960400191505060405180910390fd5b6106e1610b87565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180610e28602e913960400191505060405180910390fd5b61076f610bb8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156107f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180610e566038913960400191505060405180910390fd5b6107fe81610c58565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f610827610b87565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a16108aa565b6108a9610395565b5b50565b60006108b7610bb8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180610db76036913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180610d5b602a913960400191505060405180910390fd5b6109d081610c87565b6109da6000610c58565b7f54e4612788f90384e6843298d7854436f3a585b2c3831ab66abf1de63bfa6c2d81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000610a4a610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610a8c57610a85610b87565b9050610a95565b610a94610395565b5b90565b610aa0610b87565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151515610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180610d856032913960400191505060405180910390fd5b610b2e610cb6565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b9050805491505090565b3660008037600080366000845af43d6000803e8060008114610b82573d6000f35b3d6000fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b9050805491505090565b6000807f54ac2bd5363dfe95a011c5b5a153968d77d153d212e900afce8624fdad74525c60001b9050805491505090565b610bf281610cb8565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60007f54ac2bd5363dfe95a011c5b5a153968d77d153d212e900afce8624fdad74525c60001b90508181555050565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b90508181555050565b565b610cc181610d47565b1515610d18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180610ded603b913960400191505060405180910390fd5b60007f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b90508181555050565b600080823b90506000811191505091905056fe6d73672e73656e64657220616e64206e657741646d696e206d757374206265207468652073616d65202e43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e2066726f6d207468652070726f78792061646d696e43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f787920746f20746865207a65726f206164647265737343616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e747261637420616464726573735468652063757272656e7420616e64206e65772061646d696e2063616e6e6f74206265207468652073616d65202e43616e6e6f742073657420746865206e657741646d696e206f6620612070726f787920746f207468652073616d652061646472657373202ea165627a7a723058201ffa8c37ece702fc21218616abe8ff314b71f1085c7b4d9fae3210474712d53400296f72672e7a657070656c696e6f732e70726f78792e696d706c656d656e746174696f6e43616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000000000000000000637cc3ef358bebb53f3c1700bf4819100ab19498
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000637cc3ef358bebb53f3c1700bf4819100ab19498
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000637cc3ef358bebb53f3c1700bf4819100ab19498
Deployed ByteCode Sourcemap
8584:447:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2553:11;:9;:11::i;:::-;8584:447;8826:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8826:106:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5877:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5877:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7135:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7135:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7135:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;8940:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8940:88:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7254:303;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7254:303:0;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;7254:303:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7254:303:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7254:303:0;;;;;;;;;;;;:::i;:::-;;5985:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5985:104:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6097:563;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6097:563:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6097:563:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6668:459;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6668:459:0;;;:::i;:::-;;5782:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5782:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3303:103;3344:15;:13;:15::i;:::-;3370:28;3380:17;:15;:17::i;:::-;3370:9;:28::i;:::-;3303:103::o;8826:106::-;8880:7;8907:17;:15;:17::i;:::-;8900:24;;8826:106;:::o;5877:100::-;5927:7;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;5954:15;:13;:15::i;:::-;5947:22;;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;5877;:::o;7135:111::-;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;7209:29;7220:17;7209:10;:29::i;:::-;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;7135:111;:::o;8940:88::-;8985:7;9012:8;:6;:8::i;:::-;9005:15;;8940:88;:::o;7254:303::-;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;7396:29;7407:17;7396:10;:29::i;:::-;7437:12;7463:4;7455:18;;7480:9;7491:4;;7455:41;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;7455:41:0;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;7436:60:0;;;7515:7;7507:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5484:1;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;7254:303;;;:::o;5985:104::-;6037:7;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;6064:17;:15;:17::i;:::-;6057:24;;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;5985:104;:::o;6097:563::-;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;6208:1;6187:23;;:9;:23;;;;6165:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6338:8;:6;:8::i;:::-;6325:21;;:9;:21;;;;6303:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6466:15;:13;:15::i;:::-;6453:28;;:9;:28;;;;6431:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6576:27;6593:9;6576:16;:27::i;:::-;6619:33;6632:8;:6;:8::i;:::-;6642:9;6619:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;6097:563;:::o;6668:459::-;6711:17;6731:15;:13;:15::i;:::-;6711:35;;6800:1;6779:23;;:9;:23;;;;6757:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:9;6917:23;;:10;:23;;;6895:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7021:20;7031:9;7021;:20::i;:::-;7052:28;7077:1;7052:16;:28::i;:::-;7096:23;7109:9;7096:23;;;;;;;;;;;;;;;;;;;;;;6668:459;:::o;5782:87::-;5826:7;5459:8;:6;:8::i;:::-;5445:22;;:10;:22;;;5441:100;;;5853:8;:6;:8::i;:::-;5846:15;;5441:100;;;5518:11;:9;:11::i;:::-;5441:100;5782:87;:::o;8285:207::-;8366:8;:6;:8::i;:::-;8352:22;;:10;:22;;;;8330:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8463:21;:19;:21::i;:::-;8285:207::o;4183:181::-;4233:12;4258;3869:66;4273:19;;4258:34;;4341:4;4335:11;4327:19;;4312:45;;:::o;2647:604::-;2753:12;2750:1;2747;2734:32;2953:1;2933;2902:12;2882:1;2849:14;2827:3;2796:173;3004:14;3001:1;2998;2983:36;3042:6;3071:1;3066:74;;;;3199:14;3196:1;3189:25;3066:74;3106:14;3103:1;3096:25;7565:161;7606:11;7630:12;5208:66;7645:10;;7630:25;;7703:4;7697:11;7690:18;;7675:44;;:::o;7734:190::-;7782:18;7813:12;5336:66;7828:18;;7813:33;;7901:4;7895:11;7881:25;;7866:51;;:::o;4372:155::-;4439:37;4458:17;4439:18;:37::i;:::-;4492:27;4501:17;4492:27;;;;;;;;;;;;;;;;;;;;;;4372:155;:::o;8099:178::-;8165:12;5336:66;8180:18;;8165:33;;8248:10;8242:4;8235:24;8220:50;;:::o;7932:159::-;7989:12;5208:66;8004:10;;7989:25;;8064:8;8058:4;8051:22;8036:48;;:::o;3259:36::-;:::o;4535:358::-;4631:42;4655:17;4631:23;:42::i;:::-;4609:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4773:12;3869:66;4788:19;;4773:34;;4857:17;4851:4;4844:31;4829:57;;:::o;3522:192::-;3579:4;3596:12;3665:4;3653:17;3645:25;;3705:1;3698:4;:8;3691:15;;;3522:192;;;:::o
Swarm Source
bzzr://1ffa8c37ece702fc21218616abe8ff314b71f1085c7b4d9fae3210474712d534
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.