ETH Price: $2,360.11 (+0.39%)

Token

Bitconch Coin (BUS)
 

Overview

Max Total Supply

50,000,000,000 BUS

Holders

924

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
200 BUS

Value
$0.00
0x247f0289ceabb8a25555309fd469ea1bb14ba1a3
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:
BusToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-07-27
*/

pragma solidity ^0.4.11;

// Token Issue Smart Contract for Bitconch Coin
// Symbol       : BUS
// Name         : Bitconch Coin
// Total Supply : 50 Billion
// Decimal      : 18
// Compiler     : 0.4.11+commit.68ef5810.Emscripten.clang
// Optimazation : Yes


// @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);
        uint256 c = a / b;
        assert(a == b * c + a % b);
        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;
    }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control functions
 */
contract Ownable {
    address public owner;

    // @dev Constructor sets the original `owner` of the contract to the sender account.
    function Ownable() {
        owner = msg.sender;
    }

    // @dev Throws if called by any account other than the owner.
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }


    // @dev Allows the current owner to transfer control of the contract to a newOwner.
    // @param newOwner The address to transfer ownership to.
    function transferOwnership(address newOwner) onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}


/**
 * @title Claimable
 * @dev the ownership of contract needs to be claimed.
 * This allows the new owner to accept the transfer.
 */
contract Claimable is Ownable {
    address public pendingOwner;

    // @dev Modifier throws if called by any account other than the pendingOwner.
    modifier onlyPendingOwner() {
        require(msg.sender == pendingOwner);
        _;
    }

    // @dev Allows the current owner to set the pendingOwner address.
    // @param newOwner The address to transfer ownership to.
    function transferOwnership(address newOwner) onlyOwner {
        pendingOwner = newOwner;
    }

    // @dev Allows the pendingOwner address to finalize the transfer.
    function claimOwnership() onlyPendingOwner {
        owner = pendingOwner;
        pendingOwner = 0x0;
    }
}


/**
 * @title Contactable token
 * @dev Allowing the owner to provide a string with their contact information.
 */
contract Contactable is Ownable{

    string public contactInformation;

    // @dev Allows the owner to set a string with their contact information.
    // @param info The contact information to attach to the contract.
    function setContactInformation(string info) onlyOwner{
        contactInformation = info;
    }
}


/**
 * @title Contracts that should not own Ether
 * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up
 * in the contract, it will allow the owner to reclaim this ether.
 * @notice Ether can still be send to this contract by:
 * calling functions labeled `payable`
 * `selfdestruct(contract_address)`
 * mining directly to the contract address
*/
contract HasNoEther is Ownable {

    /**
    * @dev Constructor that rejects incoming Ether
    * @dev The `payable` flag is added so we can access `msg.value` without compiler warning. If we
    * leave out payable, then Solidity will allow inheriting contracts to implement a payable
    * constructor. By doing it this way we prevent a payable constructor from working. Alternatively
    * we could use assembly to access msg.value.
    */
    function HasNoEther() payable {
        require(msg.value == 0);
    }

    /**
     * @dev Disallows direct send by settings a default function without the `payable` flag.
     */
    function() external {
    }

    /**
     * @dev Transfer all Ether held by the contract to the owner.
     */
    function reclaimEther() external onlyOwner {
        assert(owner.send(this.balance));
    }
}


/**
 * @title Standard ERC20 token
 * @dev Implementation of the ERC20Interface
 * @dev https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 {
    using SafeMath for uint256;

    // private
    mapping(address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    uint256 _totalSupply;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    // @dev Get the total token supply
    function totalSupply() constant returns (uint256) {
        return _totalSupply;
    }

    // @dev Gets the balance of the specified address.
    // @param _owner The address to query the the balance of.
    // @return An uint256 representing the amount owned by the passed address.
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }

    // @dev transfer token for a specified address
    // @param _to The address to transfer to.
    // @param _value The amount to be transferred.
    function transfer(address _to, uint256 _value) returns (bool) {
        require(_to != 0x0 );
        require(_value > 0 );

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);

        Transfer(msg.sender, _to, _value);
        return true;
    }

    // @dev Transfer tokens from one address to another
    // @param _from address The address which you want to send tokens from
    // @param _to address The address which you want to transfer to
    // @param _value uint256 the amout of tokens to be transfered
    function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
        require(_from != 0x0 );
        require(_to != 0x0 );
        require(_value > 0 );

        var _allowance = allowed[_from][msg.sender];

        balances[_to] = balances[_to].add(_value);
        balances[_from] = balances[_from].sub(_value);
        allowed[_from][msg.sender] = _allowance.sub(_value);

        Transfer(_from, _to, _value);
        return true;
    }

    // @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
    // @param _spender The address which will spend the funds.
    // @param _value The amount of tokens to be spent.
    function approve(address _spender, uint256 _value) returns (bool) {
        require(_spender != 0x0 );
        // To change the approve amount you first have to reduce the addresses`
        // allowance to zero by calling `approve(_spender, 0)` if it is not
        // already 0 to mitigate the race condition described here:
        // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
        require((_value == 0) || (allowed[msg.sender][_spender] == 0));

        allowed[msg.sender][_spender] = _value;

        Approval(msg.sender, _spender, _value);
        return true;
    }

    // @dev Function to check the amount of tokens that an owner allowed to a spender.
    // @param _owner address The address which owns the funds.
    // @param _spender address The address which will spend the funds.
    // @return A uint256 specifing the amount of tokens still avaible for the spender.
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
}

contract StandardToken is ERC20 {
    string public name;
    string public symbol;
    uint256 public decimals;

    function isToken() public constant returns (bool) {
        return true;
    }
}

/**
 * @dev FreezableToken
 *
 */
contract FreezableToken is StandardToken, Ownable {
    mapping (address => bool) public frozenAccounts;
    event FrozenFunds(address target, bool frozen);

    // @dev freeze account or unfreezen.
    function freezeAccount(address target, bool freeze) onlyOwner {
        frozenAccounts[target] = freeze;
        FrozenFunds(target, freeze);
    }

    // @dev Limit token transfer if _sender is frozen.
    modifier canTransfer(address _sender) {
        require(!frozenAccounts[_sender]);

        _;
    }

    function transfer(address _to, uint256 _value) canTransfer(msg.sender) returns (bool success) {
        // Call StandardToken.transfer()
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from) returns (bool success) {
        // Call StandardToken.transferForm()
        return super.transferFrom(_from, _to, _value);
    }
}

/**
 * @title BusToken
 * @dev The BusToken contract is Claimable, and provides ERC20 standard token.
 */
contract BusToken is Claimable, Contactable, HasNoEther, FreezableToken {
    // @dev Constructor initial token info
    function BusToken(){
        uint256 _decimals = 18;
        uint256 _supply = 50000000000*(10**_decimals);

        _totalSupply = _supply;
        balances[msg.sender] = _supply;
        name = "Bitconch Coin";
        symbol = "BUS";
        decimals = _decimals;
        contactInformation = "Bitconch Contact Email:[email protected]";
    }
}


contract BusTokenLock is Ownable, HasNoEther {
    using SafeMath for uint256;

    // @dev How many investors we have now
    uint256 public investorCount;
    // @dev How many tokens investors have claimed so far
    uint256 public totalClaimed;
    // @dev How many tokens our internal book keeping tells us to have at the time of lock() when all investor data has been loaded
    uint256 public tokensAllocatedTotal;

    // must hold as much as tokens
    uint256 public tokensAtLeastHold;

    struct balance{
        address investor;
        uint256 amount;
        uint256 freezeEndAt;
        bool claimed;
    }

    mapping(address => balance[]) public balances;
    // @dev How many tokens investors have claimed
    mapping(address => uint256) public claimed;

    // @dev token
    FreezableToken public token;

    // @dev We allocated tokens for investor
    event Invested(address investor, uint256 amount, uint256 hour);

    // @dev We distributed tokens to an investor
    event Distributed(address investors, uint256 count);

    /**
     * @dev Create contract where lock up period is given days
     *
     * @param _owner Who can load investor data and lock
     * @param _token Token contract address we are distributing
     *
     */
    function BusTokenLock(address _owner, address _token) {
        require(_owner != 0x0);
        require(_token != 0x0);

        owner = _owner;
        token = FreezableToken(_token);
    }

    // @dev Add investor
    function addInvestor(address investor, uint256 _amount, uint256 hour) public onlyOwner {
        require(investor != 0x0);
        require(_amount > 0); // No empty buys

        uint256 amount = _amount *(10**token.decimals());
        if(balances[investor].length == 0) {
            investorCount++;
        }

        balances[investor].push(balance(investor, amount, now + hour*60*60, false));
        tokensAllocatedTotal += amount;
        tokensAtLeastHold += amount;
        // Do not lock if the given tokens are not on this contract
        require(token.balanceOf(address(this)) >= tokensAtLeastHold);

        Invested(investor, amount, hour);
    }

    // @dev can only withdraw rest of investor's tokens
    function withdrawLeftTokens() onlyOwner {
        token.transfer(owner, token.balanceOf(address(this))-tokensAtLeastHold);
    }

    // @dev Get the current balance of tokens
    // @return uint256 How many tokens there are currently
    function getBalance() public constant returns (uint256) {
        return token.balanceOf(address(this));
    }

    // @dev Claim N bought tokens to the investor as the msg sender
    function claim() {
        withdraw(msg.sender);
    }

    function withdraw(address investor) internal {
        require(balances[investor].length > 0);

        uint256 nowTS = now;
        uint256 withdrawTotal;
        for (uint i = 0; i < balances[investor].length; i++){
            if(balances[investor][i].claimed){
                continue;
            }
            if(nowTS<balances[investor][i].freezeEndAt){
                continue;
            }

            balances[investor][i].claimed=true;
            withdrawTotal += balances[investor][i].amount;
        }

        claimed[investor] += withdrawTotal;
        totalClaimed += withdrawTotal;
        token.transfer(investor, withdrawTotal);
        tokensAtLeastHold -= withdrawTotal;
        require(token.balanceOf(address(this)) >= tokensAtLeastHold);

        Distributed(investor, withdrawTotal);
    }
}

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":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contactInformation","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccounts","outputs":[{"name":"","type":"bool"}],"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":"reclaimEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"info","type":"string"}],"name":"setContactInformation","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"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

606060405234156200000d57fe5b5b600060005b5b60068054600160a060020a03191633600160a060020a03161790555b34156200003d5760006000fd5b5b50506ba18f07d736b90be5500000006002819055600160a060020a033316600090815260208181526040918290208390558151808301909252600d8083527f426974636f6e636820436f696e000000000000000000000000000000000000009290910191825260129291620000b791600391906200017c565b506040805180820190915260038082527f42555300000000000000000000000000000000000000000000000000000000006020909201918252620000fe916004916200017c565b5060058290556040805160608101825260278082527f426974636f6e636820436f6e7461637420456d61696c3a696e666f4062697463602083019081527f6f6e63682e696f00000000000000000000000000000000000000000000000000929093019190915262000172916008916200017c565b505b505062000226565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001bf57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ef578251825591602001919060010190620001d2565b5b50620001fe92915062000202565b5090565b6200022391905b80821115620001fe576000815560010162000209565b5090565b90565b610dbe80620002366000396000f300606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610115578063095ea7b3146101a557806318160ddd146101d857806323b872dd146101fa578063313ce5671461023357806336f7ab5e146102555780634e71e0c8146102e557806370a08231146102f7578063860838a5146103255780638da5cb5b1461035557806395d89b41146103815780639f727c2714610411578063a9059cbb14610423578063b967a52e14610456578063dd62ed3e146104ae578063e30c3978146104e2578063e724529c1461050e578063eefa597b14610531578063f2fde38b14610555575b341561010c57fe5b6101135b5b565b005b341561011d57fe5b610125610573565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ad57fe5b6101c4600160a060020a0360043516602435610601565b604080519115158252519081900360200190f35b34156101e057fe5b6101e86106bc565b60408051918252519081900360200190f35b341561020257fe5b6101c4600160a060020a03600435811690602435166044356106c3565b604080519115158252519081900360200190f35b341561023b57fe5b6101e8610703565b60408051918252519081900360200190f35b341561025d57fe5b610125610709565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ed57fe5b610113610797565b005b34156102ff57fe5b6101e8600160a060020a03600435166107e9565b60408051918252519081900360200190f35b341561032d57fe5b6101c4600160a060020a0360043516610808565b604080519115158252519081900360200190f35b341561035d57fe5b61036561081d565b60408051600160a060020a039092168252519081900360200190f35b341561038957fe5b61012561082c565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041957fe5b6101136108ba565b005b341561042b57fe5b6101c4600160a060020a036004351660243561090c565b604080519115158252519081900360200190f35b341561045e57fe5b610113600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375094965061094c95505050505050565b005b34156104b657fe5b6101e8600160a060020a0360043581169060243516610981565b60408051918252519081900360200190f35b34156104ea57fe5b6103656109ae565b60408051600160a060020a039092168252519081900360200190f35b341561051657fe5b610113600160a060020a036004351660243515156109bd565b005b341561053957fe5b6101c4610a3f565b604080519115158252519081900360200190f35b341561055d57fe5b610113600160a060020a0360043516610a45565b005b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b6000600160a060020a03831615156106195760006000fd5b8115806106495750600160a060020a03338116600090815260016020908152604080832093871683529290522054155b15156106555760006000fd5b600160a060020a03338116600081815260016020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b6002545b90565b600160a060020a038316600090815260096020526040812054849060ff16156106ec5760006000fd5b6106f7858585610a8e565b91505b5b509392505050565b60055481565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b60075433600160a060020a039081169116146107b35760006000fd5b600780546006805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b5b565b600160a060020a0381166000908152602081905260409020545b919050565b60096020526000908152604090205460ff1681565b600654600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b60065433600160a060020a039081169116146108d65760006000fd5b600654604051600160a060020a039182169130163180156108fc02916000818181858888f19350505050151561011057fe5b5b5b565b33600160a060020a03811660009081526009602052604081205490919060ff16156109375760006000fd5b6109418484610bdd565b91505b5b5092915050565b60065433600160a060020a039081169116146109685760006000fd5b805161097b906008906020840190610cf2565b505b5b50565b600160a060020a038083166000908152600160209081526040808320938516835292905220545b92915050565b600754600160a060020a031681565b60065433600160a060020a039081169116146109d95760006000fd5b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60015b90565b60065433600160a060020a03908116911614610a615760006000fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080600160a060020a0385161515610aa75760006000fd5b600160a060020a0384161515610abd5760006000fd5b60008311610acb5760006000fd5b50600160a060020a0380851660009081526001602090815260408083203385168452825280832054938716835290829052902054610b0f908463ffffffff610cc116565b600160a060020a038086166000908152602081905260408082209390935590871681522054610b44908463ffffffff610cdb16565b600160a060020a038616600090815260208190526040902055610b6d818463ffffffff610cdb16565b600160a060020a038087166000818152600160209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b6000600160a060020a0383161515610bf55760006000fd5b60008211610c035760006000fd5b600160a060020a033316600090815260208190526040902054610c2c908363ffffffff610cdb16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c61908363ffffffff610cc116565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600082820183811015610cd057fe5b8091505b5092915050565b600082821115610ce757fe5b508082035b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d3357805160ff1916838001178555610d60565b82800160010185558215610d60579182015b82811115610d60578251825591602001919060010190610d45565b5b50610d6d929150610d71565b5090565b6106c091905b80821115610d6d5760008155600101610d77565b5090565b905600a165627a7a7230582016479031e67b06abeebd11860f6e39ee9275975cbce68dc2e4a7a3f86a516fc50029

Deployed Bytecode

0x606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610115578063095ea7b3146101a557806318160ddd146101d857806323b872dd146101fa578063313ce5671461023357806336f7ab5e146102555780634e71e0c8146102e557806370a08231146102f7578063860838a5146103255780638da5cb5b1461035557806395d89b41146103815780639f727c2714610411578063a9059cbb14610423578063b967a52e14610456578063dd62ed3e146104ae578063e30c3978146104e2578063e724529c1461050e578063eefa597b14610531578063f2fde38b14610555575b341561010c57fe5b6101135b5b565b005b341561011d57fe5b610125610573565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ad57fe5b6101c4600160a060020a0360043516602435610601565b604080519115158252519081900360200190f35b34156101e057fe5b6101e86106bc565b60408051918252519081900360200190f35b341561020257fe5b6101c4600160a060020a03600435811690602435166044356106c3565b604080519115158252519081900360200190f35b341561023b57fe5b6101e8610703565b60408051918252519081900360200190f35b341561025d57fe5b610125610709565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ed57fe5b610113610797565b005b34156102ff57fe5b6101e8600160a060020a03600435166107e9565b60408051918252519081900360200190f35b341561032d57fe5b6101c4600160a060020a0360043516610808565b604080519115158252519081900360200190f35b341561035d57fe5b61036561081d565b60408051600160a060020a039092168252519081900360200190f35b341561038957fe5b61012561082c565b60408051602080825283518183015283519192839290830191850190808383821561016b575b80518252602083111561016b57601f19909201916020918201910161014b565b505050905090810190601f1680156101975780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041957fe5b6101136108ba565b005b341561042b57fe5b6101c4600160a060020a036004351660243561090c565b604080519115158252519081900360200190f35b341561045e57fe5b610113600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375094965061094c95505050505050565b005b34156104b657fe5b6101e8600160a060020a0360043581169060243516610981565b60408051918252519081900360200190f35b34156104ea57fe5b6103656109ae565b60408051600160a060020a039092168252519081900360200190f35b341561051657fe5b610113600160a060020a036004351660243515156109bd565b005b341561053957fe5b6101c4610a3f565b604080519115158252519081900360200190f35b341561055d57fe5b610113600160a060020a0360043516610a45565b005b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b6000600160a060020a03831615156106195760006000fd5b8115806106495750600160a060020a03338116600090815260016020908152604080832093871683529290522054155b15156106555760006000fd5b600160a060020a03338116600081815260016020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b6002545b90565b600160a060020a038316600090815260096020526040812054849060ff16156106ec5760006000fd5b6106f7858585610a8e565b91505b5b509392505050565b60055481565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b60075433600160a060020a039081169116146107b35760006000fd5b600780546006805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a038416179091551690555b5b565b600160a060020a0381166000908152602081905260409020545b919050565b60096020526000908152604090205460ff1681565b600654600160a060020a031681565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b505050505081565b60065433600160a060020a039081169116146108d65760006000fd5b600654604051600160a060020a039182169130163180156108fc02916000818181858888f19350505050151561011057fe5b5b5b565b33600160a060020a03811660009081526009602052604081205490919060ff16156109375760006000fd5b6109418484610bdd565b91505b5b5092915050565b60065433600160a060020a039081169116146109685760006000fd5b805161097b906008906020840190610cf2565b505b5b50565b600160a060020a038083166000908152600160209081526040808320938516835292905220545b92915050565b600754600160a060020a031681565b60065433600160a060020a039081169116146109d95760006000fd5b600160a060020a038216600081815260096020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050565b60015b90565b60065433600160a060020a03908116911614610a615760006000fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600080600160a060020a0385161515610aa75760006000fd5b600160a060020a0384161515610abd5760006000fd5b60008311610acb5760006000fd5b50600160a060020a0380851660009081526001602090815260408083203385168452825280832054938716835290829052902054610b0f908463ffffffff610cc116565b600160a060020a038086166000908152602081905260408082209390935590871681522054610b44908463ffffffff610cdb16565b600160a060020a038616600090815260208190526040902055610b6d818463ffffffff610cdb16565b600160a060020a038087166000818152600160209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b6000600160a060020a0383161515610bf55760006000fd5b60008211610c035760006000fd5b600160a060020a033316600090815260208190526040902054610c2c908363ffffffff610cdb16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610c61908363ffffffff610cc116565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600082820183811015610cd057fe5b8091505b5092915050565b600082821115610ce757fe5b508082035b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d3357805160ff1916838001178555610d60565b82800160010185558215610d60579182015b82811115610d60578251825591602001919060010190610d45565b5b50610d6d929150610d71565b5090565b6106c091905b80821115610d6d5760008155600101610d77565b5090565b905600a165627a7a7230582016479031e67b06abeebd11860f6e39ee9275975cbce68dc2e4a7a3f86a516fc50029

Swarm Source

bzzr://16479031e67b06abeebd11860f6e39ee9275975cbce68dc2e4a7a3f86a516fc5
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.