ETH Price: $3,075.88 (-1.30%)
Gas: 3 Gwei

Token

Influence Chain (INC)
 

Overview

Max Total Supply

1,000,000,000 INC

Holders

8,192

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,057,250.337 INC

Value
$0.00
0x10206babd640c654ba546bce9eeb3e494edb2ff0
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:
INC

Compiler Version
v0.4.15+commit.bbb8e64f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-10-16
*/

pragma solidity ^0.4.11;

contract Owned {

    address public owner;

    function Owned() {
        owner = msg.sender;
    }

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

    function setOwner(address _newOwner) onlyOwner {
        owner = _newOwner;
    }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }

  function toUINT112(uint256 a) internal constant returns(uint112) {
    assert(uint112(a) == a);
    return uint112(a);
  }

  function toUINT120(uint256 a) internal constant returns(uint120) {
    assert(uint120(a) == a);
    return uint120(a);
  }

  function toUINT128(uint256 a) internal constant returns(uint128) {
    assert(uint128(a) == a);
    return uint128(a);
  }
}


// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/issues/20

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;
    function totalSupply() constant returns (uint256 supply);

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant 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) 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) returns (bool success);

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) 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) constant returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}


/// INC token, ERC20 compliant
contract INC is Token, Owned {
    using SafeMath for uint256;

    string public constant name    = "Influence Chain Token";  //The Token's name
    uint8 public constant decimals = 18;               //Number of decimals of the smallest unit
    string public constant symbol  = "INC";            //An identifier    

    // packed to 256bit to save gas usage.
    struct Supplies {
        // uint128's max value is about 3e38.
        // it's enough to present amount of tokens
        uint128 total;
    }

    Supplies supplies;

    // Packed to 256bit to save gas usage.    
    struct Account {
        // uint112's max value is about 5e33.
        // it's enough to present amount of tokens
        uint112 balance;
        // safe to store timestamp
        uint32 lastMintedTimestamp;
    }

    // Balances for each account
    mapping(address => Account) accounts;

    // Owner of account approves the transfer of an amount to another account
    mapping(address => mapping(address => uint256)) allowed;


    // Constructor
    function INC() {
    	supplies.total = 1 * (10 ** 9) * (10 ** 18);
    }

    function totalSupply() constant returns (uint256 supply){
        return supplies.total;
    }

    // Send back ether sent to me
    function () {
        revert();
    }

    // If sealed, transfer is enabled 
    function isSealed() constant returns (bool) {
        return owner == 0;
    }
    
    function lastMintedTimestamp(address _owner) constant returns(uint32) {
        return accounts[_owner].lastMintedTimestamp;
    }

    // What is the balance of a particular account?
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return accounts[_owner].balance;
    }

    // Transfer the balance from owner's account to another account
    function transfer(address _to, uint256 _amount) returns (bool success) {
        require(isSealed());

        // according to INC's total supply, never overflow here
        if (accounts[msg.sender].balance >= _amount
            && _amount > 0) {            
            accounts[msg.sender].balance -= uint112(_amount);
            accounts[_to].balance = _amount.add(accounts[_to].balance).toUINT112();
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }
    }

    // Send _value amount of tokens from address _from to address _to
    // The transferFrom method is used for a withdraw workflow, allowing contracts to send
    // tokens on your behalf, for example to "deposit" to a contract address and/or to charge
    // fees in sub-currencies; the command should fail unless the _from account has
    // deliberately authorized the sender of the message via some mechanism; we propose
    // these standardized APIs for approval:
    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) returns (bool success) {
        require(isSealed());

        // according to INC's total supply, never overflow here
        if (accounts[_from].balance >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0) {
            accounts[_from].balance -= uint112(_amount);
            allowed[_from][msg.sender] -= _amount;
            accounts[_to].balance = _amount.add(accounts[_to].balance).toUINT112();
            Transfer(_from, _to, _amount);
            return true;
        } else {
            return false;
        }
    }

    // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
    // If this function is called again it overwrites the current allowance with _value.
    function approve(address _spender, uint256 _amount) returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        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 that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        //if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { revert(); }
        ApprovalReceiver(_spender).receiveApproval(msg.sender, _value, this, _extraData);
        return true;
    }

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
    
    function mint0(address _owner, uint256 _amount) onlyOwner {
    		accounts[_owner].balance = _amount.add(accounts[_owner].balance).toUINT112();

        accounts[_owner].lastMintedTimestamp = uint32(block.timestamp);

        //supplies.total = _amount.add(supplies.total).toUINT128();
        Transfer(0, _owner, _amount);
    }
    
    // Mint tokens and assign to some one
    function mint(address _owner, uint256 _amount, uint32 timestamp) onlyOwner{
        accounts[_owner].balance = _amount.add(accounts[_owner].balance).toUINT112();

        accounts[_owner].lastMintedTimestamp = timestamp;

        supplies.total = _amount.add(supplies.total).toUINT128();
        Transfer(0, _owner, _amount);
    }

    // Set owner to zero address, to disable mint, and enable token transfer
    function seal() onlyOwner {
        setOwner(0);
    }
}

contract ApprovalReceiver {
    function receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"supply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"seal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isSealed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint0","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lastMintedTimestamp","outputs":[{"name":"","type":"uint32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"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,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"},{"name":"timestamp","type":"uint32"}],"name":"mint","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"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"}]

6060604052341561000f57600080fd5b5b5b60008054600160a060020a03191633600160a060020a03161790555b600180546001608060020a0319166b033b2e3c9fd0803ce80000001790555b5b610e2c8061005c6000396000f300606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610101578063095ea7b31461018c57806313af4035146101c257806318160ddd146101e357806323b872dd14610208578063313ce567146102445780633fb27b851461026d578063631f98521461028257806370a08231146102a957806376c30794146102da5780637ba49b81146102fe5780638da5cb5b1461033657806395d89b4114610365578063a9059cbb146103f0578063cae9ca5114610426578063d0047acf1461049f578063dd62ed3e146104cc575b34156100f957600080fd5b5b600080fd5b005b341561010c57600080fd5b610114610503565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019757600080fd5b6101ae600160a060020a036004351660243561053a565b604051901515815260200160405180910390f35b34156101cd57600080fd5b6100ff600160a060020a03600435166105a7565b005b34156101ee57600080fd5b6101f66105ef565b60405190815260200160405180910390f35b341561021357600080fd5b6101ae600160a060020a0360043581169060243516604435610608565b604051901515815260200160405180910390f35b341561024f57600080fd5b61025761077e565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6100ff610783565b005b341561028d57600080fd5b6101ae6107ac565b604051901515815260200160405180910390f35b34156102b457600080fd5b6101f6600160a060020a03600435166107bd565b60405190815260200160405180910390f35b34156102e557600080fd5b6100ff600160a060020a03600435166024356107e5565b005b341561030957600080fd5b61031d600160a060020a03600435166108d2565b60405163ffffffff909116815260200160405180910390f35b341561034157600080fd5b610349610909565b604051600160a060020a03909116815260200160405180910390f35b341561037057600080fd5b610114610918565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103fb57600080fd5b6101ae600160a060020a036004351660243561094f565b604051901515815260200160405180910390f35b341561043157600080fd5b6101ae60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610a7a95505050505050565b604051901515815260200160405180910390f35b34156104aa57600080fd5b6100ff600160a060020a036004351660243563ffffffff60443516610bfd565b005b34156104d757600080fd5b6101f6600160a060020a0360043581169060243516610d58565b60405190815260200160405180910390f35b60408051908101604052601581527f496e666c75656e636520436861696e20546f6b656e0000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005433600160a060020a039081169116146105c257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6001546fffffffffffffffffffffffffffffffff165b90565b60006106126107ac565b151561061d57600080fd5b600160a060020a0384166000908152600260205260409020546001607060020a03168290108015906106765750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156106825750600082115b1561077257600160a060020a03848116600090815260026020818152604080842080546dffffffffffffffffffffffffffff1981166001607060020a039182168a90038216179091556003835281852033871686528352818520805489900390559488168452919052902054610703916106fe91859116610d85565b610d9f565b600160a060020a038481166000818152600260205260409081902080546dffffffffffffffffffffffffffff19166001607060020a0395909516949094179093559190861690600080516020610de18339815191529085905190815260200160405180910390a3506001610776565b5060005b5b9392505050565b601281565b60005433600160a060020a0390811691161461079e57600080fd5b6107a860006105a7565b5b5b565b600054600160a060020a0316155b90565b600160a060020a0381166000908152600260205260409020546001607060020a03165b919050565b60005433600160a060020a0390811691161461080057600080fd5b600160a060020a03821660009081526002602052604090205461083c906106fe9083906001607060020a031663ffffffff610d8516565b610d9f565b600160a060020a03831660008181526002602052604080822080546dffffffffffffffffffffffffffff19166001607060020a03959095169490941771ffffffff000000000000000000000000000019166e0100000000000000000000000000004263ffffffff1602179093559091600080516020610de18339815191529084905190815260200160405180910390a35b5b5050565b600160a060020a0381166000908152600260205260409020546e010000000000000000000000000000900463ffffffff165b919050565b600054600160a060020a031681565b60408051908101604052600381527f494e430000000000000000000000000000000000000000000000000000000000602082015281565b60006109596107ac565b151561096457600080fd5b600160a060020a0333166000908152600260205260409020546001607060020a03168290108015906109965750600082115b15610a6b5733600160a060020a0390811660009081526002602052604080822080546dffffffffffffffffffffffffffff1981166001607060020a0391821688900382161790915592861682529020546109fb916106fe91859116610d85565b610d9f565b600160a060020a038481166000818152600260205260409081902080546dffffffffffffffffffffffffffff19166001607060020a039590951694909417909355913390911690600080516020610de18339815191529085905190815260200160405180910390a35060016105a1565b5060006105a1565b5b92915050565b600160a060020a03338116600081815260036020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a0316638f4ffcb1338530866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b8f5780820151818401525b602001610b76565b50505050905090810190601f168015610bbc5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610bdd57600080fd5b6102c65a03f11515610bee57600080fd5b505050600190505b9392505050565b60005433600160a060020a03908116911614610c1857600080fd5b600160a060020a038316600090815260026020526040902054610c54906106fe9084906001607060020a031663ffffffff610d8516565b610d9f565b600160a060020a0384166000908152600260205260409020805463ffffffff8085166e0100000000000000000000000000000271ffffffff0000000000000000000000000000196001607060020a03959095166dffffffffffffffffffffffffffff199093169290921793909316179055600154610cf291610ced9185916fffffffffffffffffffffffffffffffff90911690610d8516565b610dbb565b600180546fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff92909216919091179055600160a060020a0383166000600080516020610de18339815191528460405190815260200160405180910390a35b5b505050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600082820183811015610d9457fe5b8091505b5092915050565b60006001607060020a0382168214610db357fe5b50805b919050565b60006fffffffffffffffffffffffffffffffff82168214610db357fe5b50805b9190505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058204165ba4eec4ff8c216037662c4e2809339967128bd6ff72e5b55c2533a959f4b0029

Deployed Bytecode

0x606060405236156100ee5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610101578063095ea7b31461018c57806313af4035146101c257806318160ddd146101e357806323b872dd14610208578063313ce567146102445780633fb27b851461026d578063631f98521461028257806370a08231146102a957806376c30794146102da5780637ba49b81146102fe5780638da5cb5b1461033657806395d89b4114610365578063a9059cbb146103f0578063cae9ca5114610426578063d0047acf1461049f578063dd62ed3e146104cc575b34156100f957600080fd5b5b600080fd5b005b341561010c57600080fd5b610114610503565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019757600080fd5b6101ae600160a060020a036004351660243561053a565b604051901515815260200160405180910390f35b34156101cd57600080fd5b6100ff600160a060020a03600435166105a7565b005b34156101ee57600080fd5b6101f66105ef565b60405190815260200160405180910390f35b341561021357600080fd5b6101ae600160a060020a0360043581169060243516604435610608565b604051901515815260200160405180910390f35b341561024f57600080fd5b61025761077e565b60405160ff909116815260200160405180910390f35b341561027857600080fd5b6100ff610783565b005b341561028d57600080fd5b6101ae6107ac565b604051901515815260200160405180910390f35b34156102b457600080fd5b6101f6600160a060020a03600435166107bd565b60405190815260200160405180910390f35b34156102e557600080fd5b6100ff600160a060020a03600435166024356107e5565b005b341561030957600080fd5b61031d600160a060020a03600435166108d2565b60405163ffffffff909116815260200160405180910390f35b341561034157600080fd5b610349610909565b604051600160a060020a03909116815260200160405180910390f35b341561037057600080fd5b610114610918565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101515780820151818401525b602001610138565b50505050905090810190601f16801561017e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103fb57600080fd5b6101ae600160a060020a036004351660243561094f565b604051901515815260200160405180910390f35b341561043157600080fd5b6101ae60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610a7a95505050505050565b604051901515815260200160405180910390f35b34156104aa57600080fd5b6100ff600160a060020a036004351660243563ffffffff60443516610bfd565b005b34156104d757600080fd5b6101f6600160a060020a0360043581169060243516610d58565b60405190815260200160405180910390f35b60408051908101604052601581527f496e666c75656e636520436861696e20546f6b656e0000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005433600160a060020a039081169116146105c257600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6001546fffffffffffffffffffffffffffffffff165b90565b60006106126107ac565b151561061d57600080fd5b600160a060020a0384166000908152600260205260409020546001607060020a03168290108015906106765750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b80156106825750600082115b1561077257600160a060020a03848116600090815260026020818152604080842080546dffffffffffffffffffffffffffff1981166001607060020a039182168a90038216179091556003835281852033871686528352818520805489900390559488168452919052902054610703916106fe91859116610d85565b610d9f565b600160a060020a038481166000818152600260205260409081902080546dffffffffffffffffffffffffffff19166001607060020a0395909516949094179093559190861690600080516020610de18339815191529085905190815260200160405180910390a3506001610776565b5060005b5b9392505050565b601281565b60005433600160a060020a0390811691161461079e57600080fd5b6107a860006105a7565b5b5b565b600054600160a060020a0316155b90565b600160a060020a0381166000908152600260205260409020546001607060020a03165b919050565b60005433600160a060020a0390811691161461080057600080fd5b600160a060020a03821660009081526002602052604090205461083c906106fe9083906001607060020a031663ffffffff610d8516565b610d9f565b600160a060020a03831660008181526002602052604080822080546dffffffffffffffffffffffffffff19166001607060020a03959095169490941771ffffffff000000000000000000000000000019166e0100000000000000000000000000004263ffffffff1602179093559091600080516020610de18339815191529084905190815260200160405180910390a35b5b5050565b600160a060020a0381166000908152600260205260409020546e010000000000000000000000000000900463ffffffff165b919050565b600054600160a060020a031681565b60408051908101604052600381527f494e430000000000000000000000000000000000000000000000000000000000602082015281565b60006109596107ac565b151561096457600080fd5b600160a060020a0333166000908152600260205260409020546001607060020a03168290108015906109965750600082115b15610a6b5733600160a060020a0390811660009081526002602052604080822080546dffffffffffffffffffffffffffff1981166001607060020a0391821688900382161790915592861682529020546109fb916106fe91859116610d85565b610d9f565b600160a060020a038481166000818152600260205260409081902080546dffffffffffffffffffffffffffff19166001607060020a039590951694909417909355913390911690600080516020610de18339815191529085905190815260200160405180910390a35060016105a1565b5060006105a1565b5b92915050565b600160a060020a03338116600081815260036020908152604080832094881680845294909152808220869055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a383600160a060020a0316638f4ffcb1338530866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610b8f5780820151818401525b602001610b76565b50505050905090810190601f168015610bbc5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610bdd57600080fd5b6102c65a03f11515610bee57600080fd5b505050600190505b9392505050565b60005433600160a060020a03908116911614610c1857600080fd5b600160a060020a038316600090815260026020526040902054610c54906106fe9084906001607060020a031663ffffffff610d8516565b610d9f565b600160a060020a0384166000908152600260205260409020805463ffffffff8085166e0100000000000000000000000000000271ffffffff0000000000000000000000000000196001607060020a03959095166dffffffffffffffffffffffffffff199093169290921793909316179055600154610cf291610ced9185916fffffffffffffffffffffffffffffffff90911690610d8516565b610dbb565b600180546fffffffffffffffffffffffffffffffff19166fffffffffffffffffffffffffffffffff92909216919091179055600160a060020a0383166000600080516020610de18339815191528460405190815260200160405180910390a35b5b505050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600082820183811015610d9457fe5b8091505b5092915050565b60006001607060020a0382168214610db357fe5b50805b919050565b60006fffffffffffffffffffffffffffffffff82168214610db357fe5b50805b9190505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058204165ba4eec4ff8c216037662c4e2809339967128bd6ff72e5b55c2533a959f4b0029

Swarm Source

bzzr://4165ba4eec4ff8c216037662c4e2809339967128bd6ff72e5b55c2533a959f4b
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.