ETH Price: $2,216.10 (-5.03%)

Contract

0xFc8c63575BBb5c3A2F4e4900d4F2f6E8f1fe9602
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer131643402021-09-05 7:18:111655 days ago1630826291IN
0xFc8c6357...8f1fe9602
0 ETH0.0049746396.52732792
Transfer123879472021-05-07 15:30:311776 days ago1620401431IN
0xFc8c6357...8f1fe9602
0 ETH0.0049474596
Transfer103947822020-07-04 19:29:172082 days ago1593890957IN
0xFc8c6357...8f1fe9602
0 ETH0.000771721
Transfer102733332020-06-15 23:31:292101 days ago1592263889IN
0xFc8c6357...8f1fe9602
0 ETH0.0008816624
Transfer101666632020-05-30 10:45:592118 days ago1590835559IN
0xFc8c6357...8f1fe9602
0 ETH0.0015517230
Transfer100031572020-05-05 1:03:012143 days ago1588640581IN
0xFc8c6357...8f1fe9602
0 ETH0.000465629
Transfer98412992020-04-10 0:34:002168 days ago1586478840IN
0xFc8c6357...8f1fe9602
0 ETH0.00004041.10000014
Transfer96891452020-03-17 12:53:512192 days ago1584449631IN
0xFc8c6357...8f1fe9602
0 ETH0.00015523.00000014
Transfer96020062020-03-04 2:35:442205 days ago1583289344IN
0xFc8c6357...8f1fe9602
0 ETH0.000220346
Transfer95975832020-03-03 10:18:022206 days ago1583230682IN
0xFc8c6357...8f1fe9602
0 ETH0.000102822.8
Transfer94799622020-02-14 8:01:432224 days ago1581667303IN
0xFc8c6357...8f1fe9602
0 ETH0.000310416
Transfer94658812020-02-12 3:53:442226 days ago1581479624IN
0xFc8c6357...8f1fe9602
0 ETH0.000183685
Transfer94558122020-02-10 15:01:202228 days ago1581346880IN
0xFc8c6357...8f1fe9602
0 ETH0.000073472
Transfer93102552020-01-19 6:55:142250 days ago1579416914IN
0xFc8c6357...8f1fe9602
0 ETH0.000144822.8
Transfer92531202020-01-10 12:44:362259 days ago1578660276IN
0xFc8c6357...8f1fe9602
0 ETH0.000220416
Transfer92293662020-01-06 21:23:132262 days ago1578345793IN
0xFc8c6357...8f1fe9602
0 ETH0.00015523
Transfer92199422020-01-05 10:49:132264 days ago1578221353IN
0xFc8c6357...8f1fe9602
0 ETH0.000103472
Transfer92190962020-01-05 7:43:412264 days ago1578210221IN
0xFc8c6357...8f1fe9602
0 ETH0.000103442
Transfer92013082020-01-02 14:01:172267 days ago1577973677IN
0xFc8c6357...8f1fe9602
0 ETH0.000073442
Transfer91962942020-01-01 14:40:142268 days ago1577889614IN
0xFc8c6357...8f1fe9602
0 ETH0.000155173
Transfer91962852020-01-01 14:38:112268 days ago1577889491IN
0xFc8c6357...8f1fe9602
0 ETH0.00011023
Transfer91962742020-01-01 14:35:362268 days ago1577889336IN
0xFc8c6357...8f1fe9602
0 ETH0.00011023
Transfer91962712020-01-01 14:34:102268 days ago1577889250IN
0xFc8c6357...8f1fe9602
0 ETH0.00011023
Transfer91962642020-01-01 14:32:082268 days ago1577889128IN
0xFc8c6357...8f1fe9602
0 ETH0.00015523
Transfer91962442020-01-01 14:28:092268 days ago1577888889IN
0xFc8c6357...8f1fe9602
0 ETH0.000073472
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NEW

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-06-07
*/

// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/issues/20
pragma solidity ^0.4.18;

contract Token {
    /* 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);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {

    uint256 constant MAX_UINT256 = 2**256 - 1;

    function transfer(address _to, uint256 _value) public returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
        require(balances[msg.sender] >= _value);
        balances[msg.sender] -= _value;
        balances[_to] += _value;
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
        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;
        }
        emit Transfer(_from, _to, _value);
        return true;
    }

    function balanceOf(address _owner) view public 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)
    view public returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}

contract NEWStandardToken is StandardToken {

    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   //fancy name: eg Simon Bucks
    uint8 public decimals;                //How many decimals to show. 
    string public symbol;                 //An identifier
    string public version = 'F0.1';       // Just an arbitrary versioning scheme.

     constructor(
        uint256 _initialAmount,
        string _tokenName,
        uint8 _decimalUnits,
        string _tokenSymbol
        ) public {
        balances[msg.sender] = _initialAmount;               // Give the creator all initial tokens
        totalSupply = _initialAmount;                        // Update total supply
        name = _tokenName;                                   // Set the name for display purposes
        decimals = _decimalUnits;                            // Amount of decimals for display purposes
        symbol = _tokenSymbol;                               // Set the symbol for display purposes
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);

        //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
        //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        //it is assumed when one does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        require(_spender.call(bytes4(bytes32(keccak256("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
        return true;
    }
}
// Creates 2,000,000,000.000000000000000000 (NEW) Tokens
contract NEW is NEWStandardToken(2000000000000000000000000000, "牛牛币", 18, "NEW") {}

Contract Security Audit

Contract ABI

API
[{"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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"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":"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","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"},{"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"}]

60c0604052600460808190527f46302e310000000000000000000000000000000000000000000000000000000060a090815261003e9160069190610109565b50604080518082018252600981527fe7899be7899be5b881000000000000000000000000000000000000000000000060208083019182528351808501855260038082527f4e455700000000000000000000000000000000000000000000000000000000008284015233600090815260019093529482206b06765c793fa10079d000000090819055918290558351919460129391926100dc9290610109565b506004805460ff191660ff841617905580516100ff906005906020840190610109565b50505050506101a4565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014a57805160ff1916838001178555610177565b82800160010185558215610177579182015b8281111561017757825182559160200191906001019061015c565b50610183929150610187565b5090565b6101a191905b80821115610183576000815560010161018d565b90565b61082b806101b36000396000f3006080604052600436106100955763ffffffff60e060020a60003504166306fdde03811461009a578063095ea7b31461012457806318160ddd1461015c57806323b872dd14610183578063313ce567146101ad57806354fd4d50146101d857806370a08231146101ed57806395d89b411461020e578063a9059cbb14610223578063cae9ca5114610247578063dd62ed3e146102b0575b600080fd5b3480156100a657600080fd5b506100af6102d7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e95781810151838201526020016100d1565b50505050905090810190601f1680156101165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013057600080fd5b50610148600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561016857600080fd5b506101716103cb565b60408051918252519081900360200190f35b34801561018f57600080fd5b50610148600160a060020a03600435811690602435166044356103d1565b3480156101b957600080fd5b506101c26104d5565b6040805160ff9092168252519081900360200190f35b3480156101e457600080fd5b506100af6104de565b3480156101f957600080fd5b50610171600160a060020a0360043516610539565b34801561021a57600080fd5b506100af610554565b34801561022f57600080fd5b50610148600160a060020a03600435166024356105af565b34801561025357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610148948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106399650505050505050565b3480156102bc57600080fd5b50610171600160a060020a03600435811690602435166107d4565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a0383166000818152600260209081526040808320338452825280832054938352600190915281205490919083118015906104125750828110155b151561041d57600080fd5b600160a060020a038085166000908152600160205260408082208054870190559187168152208054849003905560001981101561047f57600160a060020a03851660009081526002602090815260408083203384529091529020805484900390555b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b600160a060020a031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b336000908152600160205260408120548211156105cb57600080fd5b33600081815260016020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610779578181015183820152602001610761565b50505050905090810190601f1680156107a65780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af19250505015156107ca57600080fd5b5060019392505050565b600160a060020a039182166000908152600260209081526040808320939094168252919091522054905600a165627a7a723058207c49dcf5cd776549650ad5606936b28618d21748728f45aa8c057008d3477ebb0029

Deployed Bytecode

0x6080604052600436106100955763ffffffff60e060020a60003504166306fdde03811461009a578063095ea7b31461012457806318160ddd1461015c57806323b872dd14610183578063313ce567146101ad57806354fd4d50146101d857806370a08231146101ed57806395d89b411461020e578063a9059cbb14610223578063cae9ca5114610247578063dd62ed3e146102b0575b600080fd5b3480156100a657600080fd5b506100af6102d7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e95781810151838201526020016100d1565b50505050905090810190601f1680156101165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013057600080fd5b50610148600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561016857600080fd5b506101716103cb565b60408051918252519081900360200190f35b34801561018f57600080fd5b50610148600160a060020a03600435811690602435166044356103d1565b3480156101b957600080fd5b506101c26104d5565b6040805160ff9092168252519081900360200190f35b3480156101e457600080fd5b506100af6104de565b3480156101f957600080fd5b50610171600160a060020a0360043516610539565b34801561021a57600080fd5b506100af610554565b34801561022f57600080fd5b50610148600160a060020a03600435166024356105af565b34801561025357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610148948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106399650505050505050565b3480156102bc57600080fd5b50610171600160a060020a03600435811690602435166107d4565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a0383166000818152600260209081526040808320338452825280832054938352600190915281205490919083118015906104125750828110155b151561041d57600080fd5b600160a060020a038085166000908152600160205260408082208054870190559187168152208054849003905560001981101561047f57600160a060020a03851660009081526002602090815260408083203384529091529020805484900390555b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b600160a060020a031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b336000908152600160205260408120548211156105cb57600080fd5b33600081815260016020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610779578181015183820152602001610761565b50505050905090810190601f1680156107a65780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af19250505015156107ca57600080fd5b5060019392505050565b600160a060020a039182166000908152600260209081526040808320939094168252919091522054905600a165627a7a723058207c49dcf5cd776549650ad5606936b28618d21748728f45aa8c057008d3477ebb0029

Deployed Bytecode Sourcemap

6750:89:0:-;;;;;;;;;-1:-1:-1;;;6750:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4871:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4871:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4871:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3997:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3997:214:0;-1:-1:-1;;;;;3997:214:0;;;;;;;;;;;;;;;;;;;;;;;;;625:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;625:26:0;;;;;;;;;;;;;;;;;;;;3160:706;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3160:706:0;-1:-1:-1;;;;;3160:706:0;;;;;;;;;;;;4943:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4943:21:0;;;;;;;;;;;;;;;;;;;;;;;5075:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5075:30:0;;;;3874:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3874:115:0;-1:-1:-1;;;;;3874:115:0;;;;;5016:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5016:20:0;;;;2529:623;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2529:623:0;-1:-1:-1;;;;;2529:623:0;;;;;;;5877:810;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5877:810:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5877:810:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5877:810:0;;-1:-1:-1;5877:810:0;;-1:-1:-1;;;;;;;5877:810:0;4219:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4219:147:0;-1:-1:-1;;;;;4219:147:0;;;;;;;;;;4871:18;;;;;;;;;;;;;;;-1:-1:-1;;4871:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3997:214::-;4097:10;4064:12;4089:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4089:29:0;;;;;;;;;;;:38;;;4143;;;;;;;4064:12;;4089:29;;4097:10;;4143:38;;;;;;;;-1:-1:-1;4199:4:0;3997:214;;;;:::o;625:26::-;;;;:::o;3160:706::-;-1:-1:-1;;;;;3526:14:0;;3242:12;3526:14;;;:7;:14;;;;;;;;3541:10;3526:26;;;;;;;;3571:15;;;:8;:15;;;;;;3242:12;;3526:26;3571:25;-1:-1:-1;3571:25:0;;;:48;;;3613:6;3600:9;:19;;3571:48;3563:57;;;;;;;;-1:-1:-1;;;;;3631:13:0;;;;;;;:8;:13;;;;;;:23;;;;;;3665:15;;;;;;:25;;;;;;;-1:-1:-1;;3705:23:0;;3701:92;;;-1:-1:-1;;;;;3745:14:0;;;;;;:7;:14;;;;;;;;3760:10;3745:26;;;;;;;:36;;;;;;;3701:92;3824:3;-1:-1:-1;;;;;3808:28:0;3817:5;-1:-1:-1;;;;;3808:28:0;;3829:6;3808:28;;;;;;;;;;;;;;;;;;-1:-1:-1;3854:4:0;;3160:706;-1:-1:-1;;;;3160:706:0:o;4943:21::-;;;;;;:::o;5075:30::-;;;;;;;;;;;;;;;-1:-1:-1;;5075:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3874:115;-1:-1:-1;;;;;3965:16:0;3930:15;3965:16;;;:8;:16;;;;;;;3874:115::o;5016:20::-;;;;;;;;;;;;;;;-1:-1:-1;;5016:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2529:623;2976:10;2592:12;2967:20;;;:8;:20;;;;;;:30;-1:-1:-1;2967:30:0;2959:39;;;;;;3018:10;3009:20;;;;:8;:20;;;;;;;;:30;;;;;;;-1:-1:-1;;;;;3050:13:0;;;;;;;;;:23;;;;;;3089:33;;;;;;;3050:13;;3018:10;3089:33;;;;;;;;;;;-1:-1:-1;3140:4:0;2529:623;;;;:::o;5877:810::-;6002:10;5969:12;5994:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5994:29:0;;;;;;;;;;;:38;;;6048;;;;;;;5969:12;;5994:29;;6002:10;;6048:38;;;;;;;;6527:8;-1:-1:-1;;;;;6527:13:0;6556:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6527:129:0;;6619:10;6631:6;6639:4;6645:10;6527:129;;;;;-1:-1:-1;;;6527:129:0;;;;;;;-1:-1:-1;;;;;6527:129:0;-1:-1:-1;;;;;6527:129:0;;;;;;;;;;;-1:-1:-1;;;;;6527:129:0;-1:-1:-1;;;;;6527:129:0;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6527:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6519:138;;;;;;;;-1:-1:-1;6675:4:0;5877:810;;;;;:::o;4219:147::-;-1:-1:-1;;;;;4333:15:0;;;4298:17;4333:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;4219:147::o

Swarm Source

bzzr://7c49dcf5cd776549650ad5606936b28618d21748728f45aa8c057008d3477ebb

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.