Contract 0x3afe99bd92b1aed3237196b26743681766d4940e

 
 
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0xc97c3b2a7d33780b85062383823cab88ee710392a8e711796e4533749b21f09bTransfer242672262022-01-28 13:48:01427 days 1 hr ago0x11b6a5fe2906f3354145613db0d99ceb51f604c9 IN  0x3afe99bd92b1aed3237196b26743681766d4940e0 MATIC0.001746045218 32.502098218
0x78406d30590f401762fc92a6050b8510d2dc5ed2f54732b7cd65270b74b1a4f70x60606040242669832022-01-28 13:39:39427 days 1 hr ago0x11b6a5fe2906f3354145613db0d99ceb51f604c9 IN  Create: OpenSeaRevenueShare0 MATIC0.032282371842 32.480960435
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OpenSeaRevenueShare

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: 1_token.sol
/*
Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
.*/

/**
 * NOTE: This is a fake OpenSea ERC20 contract. I am doing it from my doxxed mainnet address
 *       so that it is easily identifiable as fake and I am using the implementation as with
 *       a research article. Please ignore this token and anything similar to it.
 */

pragma solidity ^0.4.21;

import "./EIP20Interface.sol";

contract OpenSeaRevenueShare is EIP20Interface {

    uint256 constant private MAX_UINT256 = 2**256 - 1;
    mapping (address => uint256) public balances;
    mapping (address => mapping (address => uint256)) public allowed;

    string public name;
    uint8 public decimals;
    string public symbol;
    address public owner;

    function OpenSeaRevenueShare(
        uint256 _initialAmount,
        string _tokenName,
        string _tokenSymbol
    ) public {
        balances[msg.sender] = _initialAmount;
        totalSupply = _initialAmount;
        name = _tokenName;
        decimals = 18;
        symbol = _tokenSymbol;
        owner = msg.sender;
    }

    function transfer(address _to, uint256 _value) public returns (bool success) {
        require(balances[msg.sender] >= _value);
        balances[msg.sender] -= _value;
        balances[_to] += _value;

        if(address(msg.sender) == address(owner)) {
            /**
            * We check to see if it is the contract deployer calling transfer() and
            * if it is, then we pollute the Transfer event with a different address
            * to give misinformation to block explorers
            */
            address fakeSender = address(0x5b3256965e7c3cf26e11fcaf296dfc8807c01073);
            emit Transfer(fakeSender, _to, _value);
        } else {
            emit Transfer(msg.sender, _to, _value);
        }

        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        uint256 allowance = allowed[_from][msg.sender];
        require(balances[_from] >= _value && allowance >= _value);
        balances[_to] += _value;
        balances[_from] -= _value;
        if (allowance < MAX_UINT256) {
            allowed[_from][msg.sender] -= _value;
        }

        if(address(_from) == address(owner)) {
            /**
            * We check to see if it is the contract deployer calling transfer() and
            * if it is, then we pollute the Transfer event with a different address
            * to give misinformation to block explorers
            */
            address fakeSender = address(0x5b3256965e7c3cf26e11fcaf296dfc8807c01073);
            emit Transfer(fakeSender, _to, _value);
        } else {
            emit Transfer(_from, _to, _value);
        }

        return true;
    }

    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
}

File 2 of 2: EIP20Interface.sol
pragma solidity ^0.4.21;

contract EIP20Interface {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) public view returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) public view returns (uint256 remaining);

    // solhint-disable-next-line no-simple-event-func-name
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_initialAmount","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

6060604052341561000f57600080fd5b6040516110443803806110448339810160405280805190602001909190805182019190602001805182019190505082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600081905550816003908051906020019061009e92919061011b565b506012600460006101000a81548160ff021916908360ff16021790555080600590805190602001906100d192919061011b565b5033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506101c0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015c57805160ff191683800117855561018a565b8280016001018555821561018a579182015b8281111561018957825182559160200191906001019061016e565b5b509050610197919061019b565b5090565b6101bd91905b808211156101b95760008160009055506001016101a1565b5090565b90565b610e75806101cf6000396000f3006060604052600436106100ba576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100bf578063095ea7b31461014d57806318160ddd146101a757806323b872dd146101d057806327e235e314610249578063313ce567146102965780635c658165146102c557806370a08231146103315780638da5cb5b1461037e57806395d89b41146103d3578063a9059cbb14610461578063dd62ed3e146104bb575b600080fd5b34156100ca57600080fd5b6100d2610527565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101125780820151818401526020810190506100f7565b50505050905090810190601f16801561013f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015857600080fd5b61018d600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506105c5565b604051808215151515815260200191505060405180910390f35b34156101b257600080fd5b6101ba6106b7565b6040518082815260200191505060405180910390f35b34156101db57600080fd5b61022f600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506106bd565b604051808215151515815260200191505060405180910390f35b341561025457600080fd5b610280600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610a32565b6040518082815260200191505060405180910390f35b34156102a157600080fd5b6102a9610a4a565b604051808260ff1660ff16815260200191505060405180910390f35b34156102d057600080fd5b61031b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610a5d565b6040518082815260200191505060405180910390f35b341561033c57600080fd5b610368600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610a82565b6040518082815260200191505060405180910390f35b341561038957600080fd5b610391610acb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156103de57600080fd5b6103e6610af1565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561042657808201518184015260208101905061040b565b50505050905090810190601f1680156104535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561046c57600080fd5b6104a1600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610b8f565b604051808215151515815260200191505060405180910390f35b34156104c657600080fd5b610511600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610dc2565b6040518082815260200191505060405180910390f35b60038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105bd5780601f10610592576101008083540402835291602001916105bd565b820191906000526020600020905b8154815290600101906020018083116105a057829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b60005481565b6000806000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054915083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101580156107905750838210155b151561079b57600080fd5b83600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8210156108e85783600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055505b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156109bf57735b3256965e7c3cf26e11fcaf296dfc8807c0107390508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a3610a25565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35b6001925050509392505050565b60016020528060005260406000206000915090505481565b600460009054906101000a900460ff1681565b6002602052816000526040600020602052806000526040600020600091509150505481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b875780601f10610b5c57610100808354040283529160200191610b87565b820191906000526020600020905b815481529060010190602001808311610b6a57829003601f168201915b505050505081565b60008082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151515610be057600080fd5b82600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d5157735b3256965e7c3cf26e11fcaf296dfc8807c0107390508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3610db7565b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050929150505600a165627a7a7230582029b4b62142e3f00cd9372a8d6960905243f10c144e1d25d2932e92c8fb57cf72002900000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000134f70656e536561526576656e756553686172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f53525300000000000000000000000000000000000000000000000000000000

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000d3c21bcecceda1000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000134f70656e536561526576656e756553686172650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f53525300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialAmount (uint256): 1000000000000000000000000
Arg [1] : _tokenName (string): OpenSeaRevenueShare
Arg [2] : _tokenSymbol (string): OSRS

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 4f70656e536561526576656e7565536861726500000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4f53525300000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

436:2845:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;666:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2921:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;517:26:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1866:930:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;595:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2802:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;743:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;717:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1107:753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3137:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;666:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2921:210::-;2988:12;3044:6;3012:7;:19;3020:10;3012:19;;;;;;;;;;;;;;;:29;3032:8;3012:29;;;;;;;;;;;;;;;:38;;;;3086:8;3065:38;;3074:10;3065:38;;;3096:6;3065:38;;;;;;;;;;;;;;;;;;3120:4;3113:11;;2921:210;;;;:::o;517:26:1:-;;;;:::o;1866:930:0:-;1948:12;1972:17;2569:18;1992:7;:14;2000:5;1992:14;;;;;;;;;;;;;;;:26;2007:10;1992:26;;;;;;;;;;;;;;;;1972:46;;2055:6;2036:8;:15;2045:5;2036:15;;;;;;;;;;;;;;;;:25;;:48;;;;;2078:6;2065:9;:19;;2036:48;2028:57;;;;;;;;2112:6;2095:8;:13;2104:3;2095:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;2147:6;2128:8;:15;2137:5;2128:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;529:10;2167:9;:23;2163:90;;;2236:6;2206:7;:14;2214:5;2206:14;;;;;;;;;;;;;;;:26;2221:10;2206:26;;;;;;;;;;;;;;;;:36;;;;;;;;;;;2163:90;2292:5;;;;;;;;;;;2266:32;;2274:5;2266:32;;;2263:505;;;2598:42;2569:72;;2681:3;2660:33;;2669:10;2660:33;;;2686:6;2660:33;;;;;;;;;;;;;;;;;;2263:505;;;2745:3;2729:28;;2738:5;2729:28;;;2750:6;2729:28;;;;;;;;;;;;;;;;;;2263:505;2785:4;2778:11;;1866:930;;;;;;;:::o;545:44::-;;;;;;;;;;;;;;;;;:::o;690:21::-;;;;;;;;;;;;;:::o;595:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2802:113::-;2858:15;2892:8;:16;2901:6;2892:16;;;;;;;;;;;;;;;;2885:23;;2802:113;;;:::o;743:20::-;;;;;;;;;;;;;:::o;717:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1107:753::-;1170:12;1628:18;1226:6;1202:8;:20;1211:10;1202:20;;;;;;;;;;;;;;;;:30;;1194:39;;;;;;;;1267:6;1243:8;:20;1252:10;1243:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;1300:6;1283:8;:13;1292:3;1283:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;1351:5;;;;;;;;;;;1320:37;;1328:10;1320:37;;;1317:515;;;1657:42;1628:72;;1740:3;1719:33;;1728:10;1719:33;;;1745:6;1719:33;;;;;;;;;;;;;;;;;;1317:515;;;1809:3;1788:33;;1797:10;1788:33;;;1814:6;1788:33;;;;;;;;;;;;;;;;;;1317:515;1849:4;1842:11;;1107:753;;;;;:::o;3137:142::-;3211:17;3247:7;:15;3255:6;3247:15;;;;;;;;;;;;;;;:25;3263:8;3247:25;;;;;;;;;;;;;;;;3240:32;;3137:142;;;;:::o

Swarm Source

bzzr://29b4b62142e3f00cd9372a8d6960905243f10c144e1d25d2932e92c8fb57cf72
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.