ETH Price: $2,589.64 (-3.25%)
Gas: 5 Gwei

Token

IOET (IOET)
 

Overview

Max Total Supply

360,000,000 IOET

Holders

322

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50 IOET

Value
$0.00
0x839b3d305b0efdec3d71f99ebf93c162080d476c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IOET

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-11-20
*/

pragma solidity ^0.4.16;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; }

contract TokenERC20 {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;
    uint256 initialSupply=360000000;
    string tokenName='IOET';
    string tokenSymbol='IOET';

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
       
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract IOET is owned, TokenERC20 {

    uint256 public sellPrice;
    uint256 public buyPrice;

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function IOET(
        
    ) TokenERC20() public {}

    /* Internal transfer, only can be called by this contract */
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        require(!frozenAccount[_from]);                     // Check if sender is frozen
        require(!frozenAccount[_to]);                       // Check if recipient is frozen
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        Transfer(_from, _to, _value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

  
}

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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060409081526003805460ff191660121790556315752a006005558051908101604052600481527f494f455400000000000000000000000000000000000000000000000000000000602082015260069080516200006292916020019062000156565b5060408051908101604052600481527f494f45540000000000000000000000000000000000000000000000000000000060208201526007908051620000ac92916020019062000156565b503415620000b957600080fd5b5b5b5b60008054600160a060020a03191633600160a060020a03161790555b60035460055460ff909116600a0a026004819055600160a060020a033316600090815260086020526040902055600680546200012991600191600281841615610100026000190190911604620001dc565b50600780546200014d916002916000196101006001831615020116829004620001dc565b505b5b6200028d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b5b50620001d892915062000269565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002175780548555620001c9565b82800160010185558215620001c957600052602060002091601f016020900482015b82811115620001c957825482559160010191906001019062000239565b5b50620001d892915062000269565b5090565b6200028a91905b80821115620001d8576000815560010162000270565b5090565b90565b610d3e806200029d6000396000f300606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610109578063095ea7b31461019457806318160ddd146101ca57806323b872dd146101ef578063313ce5671461022b57806342966c68146102545780634b7503341461027e57806370a08231146102a357806379c65068146102d457806379cc6790146102f85780638620410b1461032e5780638da5cb5b1461035357806395d89b4114610382578063a9059cbb1461040d578063b414d4b614610431578063cae9ca5114610464578063dd62ed3e146104dd578063e724529c14610514578063f2fde38b1461053a575b600080fd5b341561011457600080fd5b61011c61055b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101595780820151818401525b602001610140565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019f57600080fd5b6101b6600160a060020a03600435166024356105f9565b604051901515815260200160405180910390f35b34156101d557600080fd5b6101dd61062a565b60405190815260200160405180910390f35b34156101fa57600080fd5b6101b6600160a060020a0360043581169060243516604435610630565b604051901515815260200160405180910390f35b341561023657600080fd5b61023e6106a8565b60405160ff909116815260200160405180910390f35b341561025f57600080fd5b6101b66004356106b1565b604051901515815260200160405180910390f35b341561028957600080fd5b6101dd61073d565b60405190815260200160405180910390f35b34156102ae57600080fd5b6101dd600160a060020a0360043516610743565b60405190815260200160405180910390f35b34156102df57600080fd5b6102f6600160a060020a0360043516602435610755565b005b341561030357600080fd5b6101b6600160a060020a036004351660243561081d565b604051901515815260200160405180910390f35b341561033957600080fd5b6101dd6108fa565b60405190815260200160405180910390f35b341561035e57600080fd5b610366610900565b604051600160a060020a03909116815260200160405180910390f35b341561038d57600080fd5b61011c61090f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101595780820151818401525b602001610140565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041857600080fd5b6102f6600160a060020a03600435166024356109ad565b005b341561043c57600080fd5b6101b6600160a060020a03600435166109bd565b604051901515815260200160405180910390f35b341561046f57600080fd5b6101b660048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506109d295505050505050565b604051901515815260200160405180910390f35b34156104e857600080fd5b6101dd600160a060020a0360043581169060243516610b06565b60405190815260200160405180910390f35b341561051f57600080fd5b6102f6600160a060020a03600435166024351515610b23565b005b341561054557600080fd5b6102f6600160a060020a0360043516610bb1565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b600160a060020a03338116600090815260096020908152604080832093861683529290522081905560015b92915050565b60045481565b600160a060020a0380841660009081526009602090815260408083203390941683529290529081205482111561066557600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052208054839003905561069d848484610bf9565b5060015b9392505050565b60035460ff1681565b600160a060020a033316600090815260086020526040812054829010156106d757600080fd5b600160a060020a03331660008181526008602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b919050565b600a5481565b60086020526000908152604090205481565b60005433600160a060020a0390811691161461077057600080fd5b600160a060020a03808316600090815260086020526040808220805485019055600480548501905530909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35b5b5050565b600160a060020a0382166000908152600860205260408120548290101561084357600080fd5b600160a060020a038084166000908152600960209081526040808320339094168352929052205482111561087657600080fd5b600160a060020a038084166000818152600860209081526040808320805488900390556009825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b92915050565b600b5481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b610818338383610bf9565b5b5050565b600c6020526000908152604090205460ff1681565b6000836109df81856105f9565b15610afd5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a965780820151818401525b602001610a7d565b50505050905090810190601f168015610ac35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ae457600080fd5b6102c65a03f11515610af557600080fd5b505050600191505b5b509392505050565b600960209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610b3e57600080fd5b600160a060020a0382166000908152600c602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610bcc57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a0382161515610c0e57600080fd5b600160a060020a03831660009081526008602052604090205481901015610c3457600080fd5b600160a060020a0382166000908152600860205260409020548181011015610c5b57600080fd5b600160a060020a0383166000908152600c602052604090205460ff1615610c8157600080fd5b600160a060020a0382166000908152600c602052604090205460ff1615610ca757600080fd5b600160a060020a038084166000818152600860205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505600a165627a7a72305820e5f3c41edf97b455e99c875e9c11380e3a00faf8d841fb562bf6da702ac7bc740029

Deployed Bytecode

0x606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610109578063095ea7b31461019457806318160ddd146101ca57806323b872dd146101ef578063313ce5671461022b57806342966c68146102545780634b7503341461027e57806370a08231146102a357806379c65068146102d457806379cc6790146102f85780638620410b1461032e5780638da5cb5b1461035357806395d89b4114610382578063a9059cbb1461040d578063b414d4b614610431578063cae9ca5114610464578063dd62ed3e146104dd578063e724529c14610514578063f2fde38b1461053a575b600080fd5b341561011457600080fd5b61011c61055b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101595780820151818401525b602001610140565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019f57600080fd5b6101b6600160a060020a03600435166024356105f9565b604051901515815260200160405180910390f35b34156101d557600080fd5b6101dd61062a565b60405190815260200160405180910390f35b34156101fa57600080fd5b6101b6600160a060020a0360043581169060243516604435610630565b604051901515815260200160405180910390f35b341561023657600080fd5b61023e6106a8565b60405160ff909116815260200160405180910390f35b341561025f57600080fd5b6101b66004356106b1565b604051901515815260200160405180910390f35b341561028957600080fd5b6101dd61073d565b60405190815260200160405180910390f35b34156102ae57600080fd5b6101dd600160a060020a0360043516610743565b60405190815260200160405180910390f35b34156102df57600080fd5b6102f6600160a060020a0360043516602435610755565b005b341561030357600080fd5b6101b6600160a060020a036004351660243561081d565b604051901515815260200160405180910390f35b341561033957600080fd5b6101dd6108fa565b60405190815260200160405180910390f35b341561035e57600080fd5b610366610900565b604051600160a060020a03909116815260200160405180910390f35b341561038d57600080fd5b61011c61090f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101595780820151818401525b602001610140565b50505050905090810190601f1680156101865780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041857600080fd5b6102f6600160a060020a03600435166024356109ad565b005b341561043c57600080fd5b6101b6600160a060020a03600435166109bd565b604051901515815260200160405180910390f35b341561046f57600080fd5b6101b660048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506109d295505050505050565b604051901515815260200160405180910390f35b34156104e857600080fd5b6101dd600160a060020a0360043581169060243516610b06565b60405190815260200160405180910390f35b341561051f57600080fd5b6102f6600160a060020a03600435166024351515610b23565b005b341561054557600080fd5b6102f6600160a060020a0360043516610bb1565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b600160a060020a03338116600090815260096020908152604080832093861683529290522081905560015b92915050565b60045481565b600160a060020a0380841660009081526009602090815260408083203390941683529290529081205482111561066557600080fd5b600160a060020a038085166000908152600960209081526040808320339094168352929052208054839003905561069d848484610bf9565b5060015b9392505050565b60035460ff1681565b600160a060020a033316600090815260086020526040812054829010156106d757600080fd5b600160a060020a03331660008181526008602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b919050565b600a5481565b60086020526000908152604090205481565b60005433600160a060020a0390811691161461077057600080fd5b600160a060020a03808316600090815260086020526040808220805485019055600480548501905530909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a381600160a060020a031630600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35b5b5050565b600160a060020a0382166000908152600860205260408120548290101561084357600080fd5b600160a060020a038084166000908152600960209081526040808320339094168352929052205482111561087657600080fd5b600160a060020a038084166000818152600860209081526040808320805488900390556009825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a25060015b92915050565b600b5481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b505050505081565b610818338383610bf9565b5b5050565b600c6020526000908152604090205460ff1681565b6000836109df81856105f9565b15610afd5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a965780820151818401525b602001610a7d565b50505050905090810190601f168015610ac35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610ae457600080fd5b6102c65a03f11515610af557600080fd5b505050600191505b5b509392505050565b600960209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610b3e57600080fd5b600160a060020a0382166000908152600c602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15b5b5050565b60005433600160a060020a03908116911614610bcc57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a0382161515610c0e57600080fd5b600160a060020a03831660009081526008602052604090205481901015610c3457600080fd5b600160a060020a0382166000908152600860205260409020548181011015610c5b57600080fd5b600160a060020a0383166000908152600c602052604090205460ff1615610c8157600080fd5b600160a060020a0382166000908152600c602052604090205460ff1615610ca757600080fd5b600160a060020a038084166000818152600860205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050505600a165627a7a72305820e5f3c41edf97b455e99c875e9c11380e3a00faf8d841fb562bf6da702ac7bc740029

Swarm Source

bzzr://e5f3c41edf97b455e99c875e9c11380e3a00faf8d841fb562bf6da702ac7bc74
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.