ETH Price: $2,422.37 (+0.04%)

Token

Spiking (SPIKE)
 

Overview

Max Total Supply

5,000,000,000 SPIKE

Holders

2,734 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 10 Decimals)

Balance
500 SPIKE

Value
$0.00
0x360df3f50dc71febf7276c6c3ab57349522cd947
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Decentralized Universal Trading Protocol.

ICO Information

ICO Start Date : Q3 2018  
ICO End Date : Q3 2018
Total Cap : 50,000,000
ICO Price  : $0.01 
Country : Cayman Islands

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SPIKE

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-05-28
*/

pragma solidity ^0.4.20;
// ----------------------------------------------------------------------------------------------
// SPIKE Token by SPIKING Limited.
// An ERC223 standard
//
// author: SPIKE Team
// Contact: [email protected]

library SafeMath {

    function add(uint a, uint b) internal pure returns (uint c) {
        c = a + b;
        require(c >= a);
    }

    function sub(uint a, uint b) internal pure returns (uint c) {
        require(b <= a);
        c = a - b;
    }

    function mul(uint a, uint b) internal pure returns (uint c) {
        c = a * b;
        require(a == 0 || c / a == b);
    }

    function div(uint a, uint b) internal pure returns (uint c) {
        require(b > 0);
        c = a / b;
    }

}

contract ERC20 {
    // Get the total token supply
    function totalSupply() public constant returns (uint256 _totalSupply);
 
    // Get the account balance of another account with address _owner
    function balanceOf(address _owner) public constant returns (uint256 balance);
 
    // Send _value amount of tokens to address _to
    function transfer(address _to, uint256 _value) public returns (bool success);
    
    // transfer _value amount of token approved by address _from
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
    
    // approve an address with _value amount of tokens
    function approve(address _spender, uint256 _value) public returns (bool success);

    // get remaining token approved by _owner to _spender
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining);
  
    // Triggered when tokens are transferred.
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
 
    // Triggered whenever approve(address _spender, uint256 _value) is called.
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract ERC223 is ERC20{
    function transfer(address _to, uint _value, bytes _data) public returns (bool success);
    function transfer(address _to, uint _value, bytes _data, string _custom_fallback) public returns (bool success);
    event Transfer(address indexed _from, address indexed _to, uint _value, bytes indexed _data);
}

/// contract receiver interface
contract ContractReceiver {  
    function tokenFallback(address _from, uint _value, bytes _data) external;
}

contract BasicSPIKE is ERC223 {
    using SafeMath for uint256;
    
    uint256 public constant decimals = 10;
    string public constant symbol = "SPIKE";
    string public constant name = "Spiking";
    uint256 public _totalSupply = 5 * 10 ** 19; // total supply is 5*10^19 unit, equivalent to 5 Billion SPIKE

    // Owner of this contract
    address public owner;
    address public airdrop;

    // tradable
    bool public tradable = false;

    // Balances SPIKE for each account
    mapping(address => uint256) balances;
    
    // Owner of account approves the transfer of an amount to another account
    mapping(address => mapping (address => uint256)) allowed;
            
    /**
     * Functions with this modifier can only be executed by the owner
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    modifier isTradable(){
        require(tradable == true || msg.sender == airdrop || msg.sender == owner);
        _;
    }

    /// @dev Constructor
    function BasicSPIKE() 
    public {
        owner = msg.sender;
        balances[owner] = _totalSupply;
        Transfer(0x0, owner, _totalSupply);
        airdrop = 0x00227086ab72678903091d315b04a8dacade39647a;
    }
    
    /// @dev Gets totalSupply
    /// @return Total supply
    function totalSupply()
    public 
    constant 
    returns (uint256) {
        return _totalSupply;
    }
        
    /// @dev Gets account's balance
    /// @param _addr Address of the account
    /// @return Account balance
    function balanceOf(address _addr) 
    public
    constant 
    returns (uint256) {
        return balances[_addr];
    }
    
    
    //assemble the given address bytecode. If bytecode exists then the _addr is a contract.
    function isContract(address _addr) 
    private 
    view 
    returns (bool is_contract) {
        uint length;
        assembly {
            //retrieve the size of the code on target address, this needs assembly
            length := extcodesize(_addr)
        }
        return (length>0);
    }
 
    /// @dev Transfers the balance from msg.sender to an account
    /// @param _to Recipient address
    /// @param _value Transfered amount in unit
    /// @return Transfer status
    // Standard function transfer similar to ERC20 transfer with no _data .
    // Added due to backwards compatibility reasons .
    function transfer(address _to, uint _value) 
    public 
    isTradable
    returns (bool success) {
        require(_to != 0x0);
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);

        Transfer(msg.sender, _to, _value);
        return true;
    }
    
    /// @dev Function that is called when a user or another contract wants to transfer funds .
    /// @param _to Recipient address
    /// @param _value Transfer amount in unit
    /// @param _data the data pass to contract reveiver
    function transfer(
        address _to, 
        uint _value, 
        bytes _data) 
    public
    isTradable 
    returns (bool success) {
        require(_to != 0x0);
        balances[msg.sender] = balanceOf(msg.sender).sub(_value);
        balances[_to] = balanceOf(_to).add(_value);
        Transfer(msg.sender, _to, _value);
        if(isContract(_to)) {
            ContractReceiver receiver = ContractReceiver(_to);
            receiver.tokenFallback(msg.sender, _value, _data);
            Transfer(msg.sender, _to, _value, _data);
        }
        
        return true;
    }
    
    /// @dev Function that is called when a user or another contract wants to transfer funds .
    /// @param _to Recipient address
    /// @param _value Transfer amount in unit
    /// @param _data the data pass to contract reveiver
    /// @param _custom_fallback custom name of fallback function
    function transfer(
        address _to, 
        uint _value, 
        bytes _data, 
        string _custom_fallback) 
    public 
    isTradable
    returns (bool success) {
        require(_to != 0x0);
        balances[msg.sender] = balanceOf(msg.sender).sub(_value);
        balances[_to] = balanceOf(_to).add(_value);
        Transfer(msg.sender, _to, _value);

        if(isContract(_to)) {
            assert(_to.call.value(0)(bytes4(keccak256(_custom_fallback)), msg.sender, _value, _data));
            Transfer(msg.sender, _to, _value, _data);
        }
        return true;
    }
         
    // 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 _value)
    public
    isTradable
    returns (bool success) {
        require(_to != 0x0);
        balances[_from] = balances[_from].sub(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);

        Transfer(_from, _to, _value);
        return true;
    }
    
    // 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) 
    public
    returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }
    
    // get allowance
    function allowance(address _owner, address _spender) 
    public
    constant 
    returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    // withdraw any ERC20 token in this contract to owner
    function transferAnyERC20Token(address tokenAddress, uint tokens) public returns (bool success) {
        return ERC223(tokenAddress).transfer(owner, tokens);
    }
    
    // allow people can transfer their token
    // NOTE: can not turn off
    function turnOnTradable() 
    public
    onlyOwner{
        tradable = true;
    }

    // @dev allow owner to update airdrop admin
    function updateAirdrop(address newAirdropAdmin) 
    public 
    onlyOwner{
        airdrop = newAirdropAdmin;
    }
}

contract SPIKE is BasicSPIKE {

    bool public _selling = true;//initial selling
    
    uint256 public _originalBuyPrice = 80000 * 10**10; // original buy 1ETH = 80000 SPIKE = 80000 * 10**10 unit

    // List of approved investors
    mapping(address => bool) private approvedInvestorList;
    
    // deposit
    mapping(address => uint256) private deposit;
    
    // icoPercent
    uint256 public _icoPercent = 30;
    
    // _icoSupply is the avalable unit. Initially, it is _totalSupply
    uint256 public _icoSupply = (_totalSupply * _icoPercent) / 100;
    
    // minimum buy 0.3 ETH
    uint256 public _minimumBuy = 3 * 10 ** 17;
    
    // maximum buy 25 ETH
    uint256 public _maximumBuy = 25 * 10 ** 18;

    // totalTokenSold
    uint256 public totalTokenSold = 0;

    /**
     * Functions with this modifier check on sale status
     * Only allow sale if _selling is on
     */
    modifier onSale() {
        require(_selling);
        _;
    }
    
    /**
     * Functions with this modifier check the validity of address is investor
     */
    modifier validInvestor() {
        require(approvedInvestorList[msg.sender]);
        _;
    }
    
    /**
     * Functions with this modifier check the validity of msg value
     * value must greater than equal minimumBuyPrice
     * total deposit must less than equal maximumBuyPrice
     */
    modifier validValue(){
        // require value >= _minimumBuy AND total deposit of msg.sender <= maximumBuyPrice
        require ( (msg.value >= _minimumBuy) &&
                ( (deposit[msg.sender].add(msg.value)) <= _maximumBuy) );
        _;
    }

    /// @dev Fallback function allows to buy by ether.
    function()
    public
    payable {
        buySPIKE();
    }
    
    /// @dev buy function allows to buy ether. for using optional data
    function buySPIKE()
    public
    payable
    onSale
    validValue
    validInvestor {
        uint256 requestedUnits = (msg.value * _originalBuyPrice) / 10**18;
        require(balances[owner] >= requestedUnits);
        // prepare transfer data
        balances[owner] = balances[owner].sub(requestedUnits);
        balances[msg.sender] = balances[msg.sender].add(requestedUnits);
        
        // increase total deposit amount
        deposit[msg.sender] = deposit[msg.sender].add(msg.value);
        
        // check total and auto turnOffSale
        totalTokenSold = totalTokenSold.add(requestedUnits);
        if (totalTokenSold >= _icoSupply){
            _selling = false;
        }
        
        // submit transfer
        Transfer(owner, msg.sender, requestedUnits);
        owner.transfer(msg.value);
    }

    /// @dev Constructor
    function SPIKE() BasicSPIKE()
    public {
        setBuyPrice(_originalBuyPrice);
    }
    
    /// @dev Enables sale 
    function turnOnSale() onlyOwner 
    public {
        _selling = true;
    }

    /// @dev Disables sale
    function turnOffSale() onlyOwner 
    public {
        _selling = false;
    }
    
    /// @dev set new icoPercent
    /// @param newIcoPercent new value of icoPercent
    function setIcoPercent(uint256 newIcoPercent)
    public 
    onlyOwner {
        _icoPercent = newIcoPercent;
        _icoSupply = (_totalSupply * _icoPercent) / 100;
    }
    
    /// @dev set new _maximumBuy
    /// @param newMaximumBuy new value of _maximumBuy
    function setMaximumBuy(uint256 newMaximumBuy)
    public 
    onlyOwner {
        _maximumBuy = newMaximumBuy;
    }

    /// @dev Updates buy price (owner ONLY)
    /// @param newBuyPrice New buy price (in UNIT) 1ETH <=> 80,000 SPKIE = 100,000.0000000000 unit
    function setBuyPrice(uint256 newBuyPrice) 
    onlyOwner 
    public {
        require(newBuyPrice>0);
        _originalBuyPrice = newBuyPrice; // unit
        // control _maximumBuy_USD = 10,000 USD, SPIKE price is 0.01USD
        // maximumBuy_SPIKE = 1000,000 SPIKE = 1000,000,0000000000 unit = 10^16
        _maximumBuy = (10**18 * 10**16) /_originalBuyPrice;
    }
    
    /// @dev check address is approved investor
    /// @param _addr address
    function isApprovedInvestor(address _addr)
    public
    constant
    returns (bool) {
        return approvedInvestorList[_addr];
    }
    
    /// @dev get ETH deposit
    /// @param _addr address get deposit
    /// @return amount deposit of an buyer
    function getDeposit(address _addr)
    public
    constant
    returns(uint256){
        return deposit[_addr];
}
    
    /// @dev Adds list of new investors to the investors list and approve all
    /// @param newInvestorList Array of new investors addresses to be added
    function addInvestorList(address[] newInvestorList)
    onlyOwner
    public {
        for (uint256 i = 0; i < newInvestorList.length; i++){
            approvedInvestorList[newInvestorList[i]] = true;
        }
    }

    /// @dev Removes list of investors from list
    /// @param investorList Array of addresses of investors to be removed
    function removeInvestorList(address[] investorList)
    onlyOwner
    public {
        for (uint256 i = 0; i < investorList.length; i++){
            approvedInvestorList[investorList[i]] = false;
        }
    }
    
    /// @dev Withdraws Ether in contract (Owner only)
    /// @return Status of withdrawal
    function withdraw() onlyOwner 
    public 
    returns (bool) {
        return owner.send(this.balance);
    }
}

contract MultiSigWallet {

    uint constant public MAX_OWNER_COUNT = 50;

    event Confirmation(address indexed sender, uint indexed transactionId);
    event Revocation(address indexed sender, uint indexed transactionId);
    event Submission(uint indexed transactionId);
    event Execution(uint indexed transactionId);
    event ExecutionFailure(uint indexed transactionId);
    event Deposit(address indexed sender, uint value);
    event OwnerAddition(address indexed owner);
    event OwnerRemoval(address indexed owner);
    event RequirementChange(uint required);
    event CoinCreation(address coin);

    mapping (uint => Transaction) public transactions;
    mapping (uint => mapping (address => bool)) public confirmations;
    mapping (address => bool) public isOwner;
    address[] public owners;
    uint public required;
    uint public transactionCount;
    bool flag = true;

    struct Transaction {
        address destination;
        uint value;
        bytes data;
        bool executed;
    }

    modifier onlyWallet() {
        if (msg.sender != address(this))
            revert();
        _;
    }

    modifier ownerDoesNotExist(address owner) {
        if (isOwner[owner])
            revert();
        _;
    }

    modifier ownerExists(address owner) {
        if (!isOwner[owner])
            revert();
        _;
    }

    modifier transactionExists(uint transactionId) {
        if (transactions[transactionId].destination == 0)
            revert();
        _;
    }

    modifier confirmed(uint transactionId, address owner) {
        if (!confirmations[transactionId][owner])
            revert();
        _;
    }

    modifier notConfirmed(uint transactionId, address owner) {
        if (confirmations[transactionId][owner])
            revert();
        _;
    }

    modifier notExecuted(uint transactionId) {
        if (transactions[transactionId].executed)
            revert();
        _;
    }

    modifier notNull(address _address) {
        if (_address == 0)
            revert();
        _;
    }

    modifier validRequirement(uint ownerCount, uint _required) {
        if (   ownerCount > MAX_OWNER_COUNT
            || _required > ownerCount
            || _required == 0
            || ownerCount == 0)
            revert();
        _;
    }

    /// @dev Fallback function allows to deposit ether.
    function()
        payable
    {
        if (msg.value > 0)
            Deposit(msg.sender, msg.value);
    }

    /*
     * Public functions
     */
    /// @dev Contract constructor sets initial owners and required number of confirmations.
    /// @param _owners List of initial owners.
    /// @param _required Number of required confirmations.
    function MultiSigWallet(address[] _owners, uint _required)
        public
        validRequirement(_owners.length, _required)
    {
        for (uint i=0; i<_owners.length; i++) {
            if (isOwner[_owners[i]] || _owners[i] == 0)
                revert();
            isOwner[_owners[i]] = true;
        }
        owners = _owners;
        required = _required;
    }

    /// @dev Allows to add a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of new owner.
    function addOwner(address owner)
        public
        onlyWallet
        ownerDoesNotExist(owner)
        notNull(owner)
        validRequirement(owners.length + 1, required)
    {
        isOwner[owner] = true;
        owners.push(owner);
        OwnerAddition(owner);
    }

    /// @dev Allows to remove an owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner.
    function removeOwner(address owner)
        public
        onlyWallet
        ownerExists(owner)
    {
        isOwner[owner] = false;
        for (uint i=0; i<owners.length - 1; i++)
            if (owners[i] == owner) {
                owners[i] = owners[owners.length - 1];
                break;
            }
        owners.length -= 1;
        if (required > owners.length)
            changeRequirement(owners.length);
        OwnerRemoval(owner);
    }

    /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner to be replaced.
    /// @param owner Address of new owner.
    function replaceOwner(address owner, address newOwner)
        public
        onlyWallet
        ownerExists(owner)
        ownerDoesNotExist(newOwner)
    {
        for (uint i=0; i<owners.length; i++)
            if (owners[i] == owner) {
                owners[i] = newOwner;
                break;
            }
        isOwner[owner] = false;
        isOwner[newOwner] = true;
        OwnerRemoval(owner);
        OwnerAddition(newOwner);
    }

    /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet.
    /// @param _required Number of required confirmations.
    function changeRequirement(uint _required)
        public
        onlyWallet
        validRequirement(owners.length, _required)
    {
        required = _required;
        RequirementChange(_required);
    }

    /// @dev Allows an owner to submit and confirm a transaction.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function submitTransaction(address destination, uint value, bytes data)
        public
        returns (uint transactionId)
    {
        transactionId = addTransaction(destination, value, data);
        confirmTransaction(transactionId);
    }

    /// @dev Allows an owner to confirm a transaction.
    /// @param transactionId Transaction ID.
    function confirmTransaction(uint transactionId)
        public
        ownerExists(msg.sender)
        transactionExists(transactionId)
        notConfirmed(transactionId, msg.sender)
    {
        confirmations[transactionId][msg.sender] = true;
        Confirmation(msg.sender, transactionId);
        executeTransaction(transactionId);
    }

    /// @dev Allows an owner to revoke a confirmation for a transaction.
    /// @param transactionId Transaction ID.
    function revokeConfirmation(uint transactionId)
        public
        ownerExists(msg.sender)
        confirmed(transactionId, msg.sender)
        notExecuted(transactionId)
    {
        confirmations[transactionId][msg.sender] = false;
        Revocation(msg.sender, transactionId);
    }

    /// @dev Allows anyone to execute a confirmed transaction.
    /// @param transactionId Transaction ID.
    function executeTransaction(uint transactionId)
        public
        notExecuted(transactionId)
    {
        if (isConfirmed(transactionId)) {
            Transaction tx = transactions[transactionId];
            tx.executed = true;
            if (tx.destination.call.value(tx.value)(tx.data))
                Execution(transactionId);
            else {
                ExecutionFailure(transactionId);
                tx.executed = false;
            }
        }
    }

    /// @dev Returns the confirmation status of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Confirmation status.
    function isConfirmed(uint transactionId)
        public
        constant
        returns (bool)
    {
        uint count = 0;
        for (uint i=0; i<owners.length; i++) {
            if (confirmations[transactionId][owners[i]])
                count += 1;
            if (count == required)
                return true;
        }
    }

    /*
     * Internal functions
     */
    /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function addTransaction(address destination, uint value, bytes data)
        internal
        notNull(destination)
        returns (uint transactionId)
    {
        transactionId = transactionCount;
        transactions[transactionId] = Transaction({
            destination: destination,
            value: value,
            data: data,
            executed: false
        });
        transactionCount += 1;
        Submission(transactionId);
    }

    /*
     * Web3 call functions
     */
    /// @dev Returns number of confirmations of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Number of confirmations.
    function getConfirmationCount(uint transactionId)
        public
        constant
        returns (uint count)
    {
        for (uint i=0; i<owners.length; i++)
            if (confirmations[transactionId][owners[i]])
                count += 1;
    }

    /// @dev Returns total number of transactions after filers are applied.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Total number of transactions after filters are applied.
    function getTransactionCount(bool pending, bool executed)
        public
        constant
        returns (uint count)
    {
        for (uint i=0; i<transactionCount; i++)
            if (   pending && !transactions[i].executed
                || executed && transactions[i].executed)
                count += 1;
    }

    /// @dev Returns list of owners.
    /// @return List of owner addresses.
    function getOwners()
        public
        constant
        returns (address[])
    {
        return owners;
    }

    /// @dev Returns array with owner addresses, which confirmed transaction.
    /// @param transactionId Transaction ID.
    /// @return Returns array of owner addresses.
    function getConfirmations(uint transactionId)
        public
        constant
        returns (address[] _confirmations)
    {
        address[] memory confirmationsTemp = new address[](owners.length);
        uint count = 0;
        uint i;
        for (i=0; i<owners.length; i++)
            if (confirmations[transactionId][owners[i]]) {
                confirmationsTemp[count] = owners[i];
                count += 1;
            }
        _confirmations = new address[](count);
        for (i=0; i<count; i++)
            _confirmations[i] = confirmationsTemp[i];
    }

    /// @dev Returns list of transaction IDs in defined range.
    /// @param from Index start position of transaction array.
    /// @param to Index end position of transaction array.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Returns array of transaction IDs.
    function getTransactionIds(uint from, uint to, bool pending, bool executed)
        public
        constant
        returns (uint[] _transactionIds)
    {
        uint[] memory transactionIdsTemp = new uint[](transactionCount);
        uint count = 0;
        uint i;
        for (i=0; i<transactionCount; i++)
            if (   pending && !transactions[i].executed
                || executed && transactions[i].executed)
            {
                transactionIdsTemp[count] = i;
                count += 1;
            }
        _transactionIds = new uint[](to - from);
        for (i=from; i<to; i++)
            _transactionIds[i - from] = transactionIdsTemp[i];
    }
    
    /// @dev Create new coin.
    function createCoin()
        external
        onlyWallet
    {
        require(flag == true);
        CoinCreation(new SPIKE());
        flag = false;
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"newMaximumBuy","type":"uint256"}],"name":"setMaximumBuy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","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":"turnOffSale","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[],"name":"turnOnTradable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"airdrop","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoPercent","type":"uint256"}],"name":"setIcoPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_icoSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_icoPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBuyPrice","type":"uint256"}],"name":"setBuyPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_minimumBuy","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_originalBuyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_maximumBuy","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":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investorList","type":"address[]"}],"name":"removeInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buySPIKE","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newInvestorList","type":"address[]"}],"name":"addInvestorList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAirdropAdmin","type":"address"}],"name":"updateAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","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"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"turnOnSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_selling","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":true,"name":"_data","type":"bytes"}],"name":"Transfer","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"}]

60606040526802b5e3af16b188000060009081556002805460a060020a60ff02191690556005805460ff191660011790556602d79883d20000600655601e60095567d02ab486cedc0000600a55670429d069189e0000600b5568015af1d78b58c40000600c55600d55341561007357600080fd5b60018054600160a060020a03191633600160a060020a0390811691909117808355600080549183168152600360205260408082208390559354909216927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a360028054600160a060020a03191673227086ab72678903091d315b04a8dacade39647a17905560065461012190640100000000610c4061012682021704565b610174565b60015433600160a060020a0390811691161461014157600080fd5b6000811161014e57600080fd5b6006819055806e01ed09bead87c0378d8e640000000081151561016d57fe5b04600c5550565b6115c4806101836000396000f3006060604052600436106101a85763ffffffff60e060020a6000350416630188fdef81146101b257806306fdde03146101c8578063095ea7b31461025257806318160ddd1461028857806323526a34146102ad57806323b872dd146102c05780632fb1746d146102e8578063313ce567146102fb5780633884d6351461030e5780633c2d64471461033d5780633c50afe1146103535780633ccfd60b146103665780633eaaf86b14610379578063501e3a2c1461038c57806354840c6e1461039f57806363ae8d6c146103b25780636b342eb8146103c857806370a08231146103db57806378f2144b146103fa5780637fd2304f1461040d5780638da5cb5b1461042057806395d89b41146104335780639b1fe0d4146104465780639fc3954914610465578063a9059cbb146104b4578063b5f7f636146104d6578063be45fd62146104e9578063befe6299146101a8578063bfb9f0881461054e578063c489a6491461059d578063dc39d06d146105bc578063dd62ed3e146105de578063e1254fba14610603578063e98cf98714610622578063f6368f8a14610635578063f9323a32146106dc575b6101b06106ef565b005b34156101bd57600080fd5b6101b06004356108f3565b34156101d357600080fd5b6101db610913565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102175780820151838201526020016101ff565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025d57600080fd5b610274600160a060020a036004351660243561094a565b604051901515815260200160405180910390f35b341561029357600080fd5b61029b6109b7565b60405190815260200160405180910390f35b34156102b857600080fd5b6101b06109bd565b34156102cb57600080fd5b610274600160a060020a03600435811690602435166044356109e4565b34156102f357600080fd5b6101b0610b4c565b341561030657600080fd5b61029b610b8d565b341561031957600080fd5b610321610b92565b604051600160a060020a03909116815260200160405180910390f35b341561034857600080fd5b6101b0600435610ba1565b341561035e57600080fd5b61029b610bce565b341561037157600080fd5b610274610bd4565b341561038457600080fd5b61029b610c24565b341561039757600080fd5b61029b610c2a565b34156103aa57600080fd5b610274610c30565b34156103bd57600080fd5b6101b0600435610c40565b34156103d357600080fd5b61029b610c8e565b34156103e657600080fd5b61029b600160a060020a0360043516610c94565b341561040557600080fd5b61029b610caf565b341561041857600080fd5b61029b610cb5565b341561042b57600080fd5b610321610cbb565b341561043e57600080fd5b6101db610cca565b341561045157600080fd5b610274600160a060020a0360043516610d01565b341561047057600080fd5b6101b06004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650610d1f95505050505050565b34156104bf57600080fd5b610274600160a060020a0360043516602435610d9a565b34156104e157600080fd5b61029b610eae565b34156104f457600080fd5b61027460048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610eb495505050505050565b341561055957600080fd5b6101b0600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061115095505050505050565b34156105a857600080fd5b6101b0600160a060020a03600435166111c7565b34156105c757600080fd5b610274600160a060020a0360043516602435611211565b34156105e957600080fd5b61029b600160a060020a0360043581169060243516611297565b341561060e57600080fd5b61029b600160a060020a03600435166112c2565b341561062d57600080fd5b6101b06112dd565b341561064057600080fd5b61027460048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061130795505050505050565b34156106e757600080fd5b610274611542565b60055460009060ff16151561070357600080fd5b600b54341015801561073f5750600c54600160a060020a03331660009081526008602052604090205461073c903463ffffffff61154b16565b11155b151561074a57600080fd5b600160a060020a03331660009081526007602052604090205460ff16151561077157600080fd5b600654670de0b6b3a7640000903402600154600160a060020a03166000908152600360205260409020549190049150819010156107ad57600080fd5b600154600160a060020a03166000908152600360205260409020546107d8908263ffffffff61155b16565b600154600160a060020a03908116600090815260036020526040808220939093553390911681522054610811908263ffffffff61154b16565b600160a060020a033316600090815260036020908152604080832093909355600890522054610846903463ffffffff61154b16565b600160a060020a033316600090815260086020526040902055600d54610872908263ffffffff61154b16565b600d819055600a54901061088b576005805460ff191690555b600154600160a060020a0333811691166000805160206115798339815191528360405190815260200160405180910390a3600154600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156108f057600080fd5b50565b60015433600160a060020a0390811691161461090e57600080fd5b600c55565b60408051908101604052600781527f5370696b696e6700000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260046020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005490565b60015433600160a060020a039081169116146109d857600080fd5b6005805460ff19169055565b60025460009060a060020a900460ff16151560011480610a12575060025433600160a060020a039081169116145b80610a2b575060015433600160a060020a039081169116145b1515610a3657600080fd5b600160a060020a0383161515610a4b57600080fd5b600160a060020a038416600090815260036020526040902054610a74908363ffffffff61155b16565b600160a060020a0380861660009081526003602090815260408083209490945560048152838220339093168252919091522054610ab7908363ffffffff61155b16565b600160a060020a0380861660009081526004602090815260408083203385168452825280832094909455918616815260039091522054610afd908363ffffffff61154b16565b600160a060020a03808516600081815260036020526040908190209390935591908616906000805160206115798339815191529085905190815260200160405180910390a35060019392505050565b60015433600160a060020a03908116911614610b6757600080fd5b6002805474ff0000000000000000000000000000000000000000191660a060020a179055565b600a81565b600254600160a060020a031681565b60015433600160a060020a03908116911614610bbc57600080fd5b60098190556000546064910204600a55565b600a5481565b60015460009033600160a060020a03908116911614610bf257600080fd5b600154600160a060020a039081169030163180156108fc0290604051600060405180830381858888f194505050505090565b60005481565b60095481565b60025460a060020a900460ff1681565b60015433600160a060020a03908116911614610c5b57600080fd5b60008111610c6857600080fd5b6006819055806e01ed09bead87c0378d8e6400000000811515610c8757fe5b04600c5550565b600b5481565b600160a060020a031660009081526003602052604090205490565b60065481565b600c5481565b600154600160a060020a031681565b60408051908101604052600581527f5350494b45000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a031660009081526007602052604090205460ff1690565b60015460009033600160a060020a03908116911614610d3d57600080fd5b5060005b8151811015610d9657600060076000848481518110610d5c57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff1916911515919091179055600101610d41565b5050565b60025460009060a060020a900460ff16151560011480610dc8575060025433600160a060020a039081169116145b80610de1575060015433600160a060020a039081169116145b1515610dec57600080fd5b600160a060020a0383161515610e0157600080fd5b600160a060020a033316600090815260036020526040902054610e2a908363ffffffff61155b16565b600160a060020a033381166000908152600360205260408082209390935590851681522054610e5f908363ffffffff61154b16565b600160a060020a0380851660008181526003602052604090819020939093559133909116906000805160206115798339815191529085905190815260200160405180910390a350600192915050565b600d5481565b600080600260149054906101000a900460ff161515600115151480610ee7575060025433600160a060020a039081169116145b80610f00575060015433600160a060020a039081169116145b1515610f0b57600080fd5b600160a060020a0385161515610f2057600080fd5b610f3984610f2d33610c94565b9063ffffffff61155b16565b600160a060020a033316600090815260036020526040902055610f6b84610f5f87610c94565b9063ffffffff61154b16565b600160a060020a0380871660008181526003602052604090819020939093559133909116906000805160206115798339815191529087905190815260200160405180910390a3610fba85611570565b15611145575083600160a060020a03811663c0ee0b8a3386866040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611040578082015183820152602001611028565b50505050905090810190601f16801561106d5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561108d57600080fd5b6102c65a03f1151561109e57600080fd5b505050826040518082805190602001908083835b602083106110d15780518252601f1990920191602091820191016110b2565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168760405190815260200160405180910390a45b506001949350505050565b60015460009033600160a060020a0390811691161461116e57600080fd5b5060005b8151811015610d965760016007600084848151811061118d57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff1916911515919091179055600101611172565b60015433600160a060020a039081169116146111e257600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600090600160a060020a038085169163a9059cbb911684846040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561127657600080fd5b6102c65a03f1151561128757600080fd5b5050506040518051949350505050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600160a060020a031660009081526008602052604090205490565b60015433600160a060020a039081169116146112f857600080fd5b6005805460ff19166001179055565b60025460009060a060020a900460ff16151560011480611335575060025433600160a060020a039081169116145b8061134e575060015433600160a060020a039081169116145b151561135957600080fd5b600160a060020a038516151561136e57600080fd5b61137b84610f2d33610c94565b600160a060020a0333166000908152600360205260409020556113a184610f5f87610c94565b600160a060020a0380871660008181526003602052604090819020939093559133909116906000805160206115798339815191529087905190815260200160405180910390a36113f085611570565b156111455784600160a060020a03166000836040518082805190602001908083835b602083106114315780518252601f199092019160209182019101611412565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b838110156114c25780820151838201526020016114aa565b50505050905090810190601f1680156114ef5780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185886187965a03f19350505050151561151357fe5b82604051808280519060200190808383602083106110d15780518252601f1990920191602091820191016110b2565b60055460ff1681565b818101828110156109b157600080fd5b60008282111561156a57600080fd5b50900390565b6000903b11905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820b0d2436662b0975df285cf9f28e765fe269f1cc9b0e75ef3e461b8da6009f0a50029

Deployed Bytecode

0x6060604052600436106101a85763ffffffff60e060020a6000350416630188fdef81146101b257806306fdde03146101c8578063095ea7b31461025257806318160ddd1461028857806323526a34146102ad57806323b872dd146102c05780632fb1746d146102e8578063313ce567146102fb5780633884d6351461030e5780633c2d64471461033d5780633c50afe1146103535780633ccfd60b146103665780633eaaf86b14610379578063501e3a2c1461038c57806354840c6e1461039f57806363ae8d6c146103b25780636b342eb8146103c857806370a08231146103db57806378f2144b146103fa5780637fd2304f1461040d5780638da5cb5b1461042057806395d89b41146104335780639b1fe0d4146104465780639fc3954914610465578063a9059cbb146104b4578063b5f7f636146104d6578063be45fd62146104e9578063befe6299146101a8578063bfb9f0881461054e578063c489a6491461059d578063dc39d06d146105bc578063dd62ed3e146105de578063e1254fba14610603578063e98cf98714610622578063f6368f8a14610635578063f9323a32146106dc575b6101b06106ef565b005b34156101bd57600080fd5b6101b06004356108f3565b34156101d357600080fd5b6101db610913565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102175780820151838201526020016101ff565b50505050905090810190601f1680156102445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025d57600080fd5b610274600160a060020a036004351660243561094a565b604051901515815260200160405180910390f35b341561029357600080fd5b61029b6109b7565b60405190815260200160405180910390f35b34156102b857600080fd5b6101b06109bd565b34156102cb57600080fd5b610274600160a060020a03600435811690602435166044356109e4565b34156102f357600080fd5b6101b0610b4c565b341561030657600080fd5b61029b610b8d565b341561031957600080fd5b610321610b92565b604051600160a060020a03909116815260200160405180910390f35b341561034857600080fd5b6101b0600435610ba1565b341561035e57600080fd5b61029b610bce565b341561037157600080fd5b610274610bd4565b341561038457600080fd5b61029b610c24565b341561039757600080fd5b61029b610c2a565b34156103aa57600080fd5b610274610c30565b34156103bd57600080fd5b6101b0600435610c40565b34156103d357600080fd5b61029b610c8e565b34156103e657600080fd5b61029b600160a060020a0360043516610c94565b341561040557600080fd5b61029b610caf565b341561041857600080fd5b61029b610cb5565b341561042b57600080fd5b610321610cbb565b341561043e57600080fd5b6101db610cca565b341561045157600080fd5b610274600160a060020a0360043516610d01565b341561047057600080fd5b6101b06004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650610d1f95505050505050565b34156104bf57600080fd5b610274600160a060020a0360043516602435610d9a565b34156104e157600080fd5b61029b610eae565b34156104f457600080fd5b61027460048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610eb495505050505050565b341561055957600080fd5b6101b0600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284375094965061115095505050505050565b34156105a857600080fd5b6101b0600160a060020a03600435166111c7565b34156105c757600080fd5b610274600160a060020a0360043516602435611211565b34156105e957600080fd5b61029b600160a060020a0360043581169060243516611297565b341561060e57600080fd5b61029b600160a060020a03600435166112c2565b341561062d57600080fd5b6101b06112dd565b341561064057600080fd5b61027460048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061130795505050505050565b34156106e757600080fd5b610274611542565b60055460009060ff16151561070357600080fd5b600b54341015801561073f5750600c54600160a060020a03331660009081526008602052604090205461073c903463ffffffff61154b16565b11155b151561074a57600080fd5b600160a060020a03331660009081526007602052604090205460ff16151561077157600080fd5b600654670de0b6b3a7640000903402600154600160a060020a03166000908152600360205260409020549190049150819010156107ad57600080fd5b600154600160a060020a03166000908152600360205260409020546107d8908263ffffffff61155b16565b600154600160a060020a03908116600090815260036020526040808220939093553390911681522054610811908263ffffffff61154b16565b600160a060020a033316600090815260036020908152604080832093909355600890522054610846903463ffffffff61154b16565b600160a060020a033316600090815260086020526040902055600d54610872908263ffffffff61154b16565b600d819055600a54901061088b576005805460ff191690555b600154600160a060020a0333811691166000805160206115798339815191528360405190815260200160405180910390a3600154600160a060020a03163480156108fc0290604051600060405180830381858888f1935050505015156108f057600080fd5b50565b60015433600160a060020a0390811691161461090e57600080fd5b600c55565b60408051908101604052600781527f5370696b696e6700000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260046020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005490565b60015433600160a060020a039081169116146109d857600080fd5b6005805460ff19169055565b60025460009060a060020a900460ff16151560011480610a12575060025433600160a060020a039081169116145b80610a2b575060015433600160a060020a039081169116145b1515610a3657600080fd5b600160a060020a0383161515610a4b57600080fd5b600160a060020a038416600090815260036020526040902054610a74908363ffffffff61155b16565b600160a060020a0380861660009081526003602090815260408083209490945560048152838220339093168252919091522054610ab7908363ffffffff61155b16565b600160a060020a0380861660009081526004602090815260408083203385168452825280832094909455918616815260039091522054610afd908363ffffffff61154b16565b600160a060020a03808516600081815260036020526040908190209390935591908616906000805160206115798339815191529085905190815260200160405180910390a35060019392505050565b60015433600160a060020a03908116911614610b6757600080fd5b6002805474ff0000000000000000000000000000000000000000191660a060020a179055565b600a81565b600254600160a060020a031681565b60015433600160a060020a03908116911614610bbc57600080fd5b60098190556000546064910204600a55565b600a5481565b60015460009033600160a060020a03908116911614610bf257600080fd5b600154600160a060020a039081169030163180156108fc0290604051600060405180830381858888f194505050505090565b60005481565b60095481565b60025460a060020a900460ff1681565b60015433600160a060020a03908116911614610c5b57600080fd5b60008111610c6857600080fd5b6006819055806e01ed09bead87c0378d8e6400000000811515610c8757fe5b04600c5550565b600b5481565b600160a060020a031660009081526003602052604090205490565b60065481565b600c5481565b600154600160a060020a031681565b60408051908101604052600581527f5350494b45000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a031660009081526007602052604090205460ff1690565b60015460009033600160a060020a03908116911614610d3d57600080fd5b5060005b8151811015610d9657600060076000848481518110610d5c57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff1916911515919091179055600101610d41565b5050565b60025460009060a060020a900460ff16151560011480610dc8575060025433600160a060020a039081169116145b80610de1575060015433600160a060020a039081169116145b1515610dec57600080fd5b600160a060020a0383161515610e0157600080fd5b600160a060020a033316600090815260036020526040902054610e2a908363ffffffff61155b16565b600160a060020a033381166000908152600360205260408082209390935590851681522054610e5f908363ffffffff61154b16565b600160a060020a0380851660008181526003602052604090819020939093559133909116906000805160206115798339815191529085905190815260200160405180910390a350600192915050565b600d5481565b600080600260149054906101000a900460ff161515600115151480610ee7575060025433600160a060020a039081169116145b80610f00575060015433600160a060020a039081169116145b1515610f0b57600080fd5b600160a060020a0385161515610f2057600080fd5b610f3984610f2d33610c94565b9063ffffffff61155b16565b600160a060020a033316600090815260036020526040902055610f6b84610f5f87610c94565b9063ffffffff61154b16565b600160a060020a0380871660008181526003602052604090819020939093559133909116906000805160206115798339815191529087905190815260200160405180910390a3610fba85611570565b15611145575083600160a060020a03811663c0ee0b8a3386866040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611040578082015183820152602001611028565b50505050905090810190601f16801561106d5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561108d57600080fd5b6102c65a03f1151561109e57600080fd5b505050826040518082805190602001908083835b602083106110d15780518252601f1990920191602091820191016110b2565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902085600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168760405190815260200160405180910390a45b506001949350505050565b60015460009033600160a060020a0390811691161461116e57600080fd5b5060005b8151811015610d965760016007600084848151811061118d57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805460ff1916911515919091179055600101611172565b60015433600160a060020a039081169116146111e257600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600154600090600160a060020a038085169163a9059cbb911684846040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561127657600080fd5b6102c65a03f1151561128757600080fd5b5050506040518051949350505050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600160a060020a031660009081526008602052604090205490565b60015433600160a060020a039081169116146112f857600080fd5b6005805460ff19166001179055565b60025460009060a060020a900460ff16151560011480611335575060025433600160a060020a039081169116145b8061134e575060015433600160a060020a039081169116145b151561135957600080fd5b600160a060020a038516151561136e57600080fd5b61137b84610f2d33610c94565b600160a060020a0333166000908152600360205260409020556113a184610f5f87610c94565b600160a060020a0380871660008181526003602052604090819020939093559133909116906000805160206115798339815191529087905190815260200160405180910390a36113f085611570565b156111455784600160a060020a03166000836040518082805190602001908083835b602083106114315780518252601f199092019160209182019101611412565b6001836020036101000a0380198251168184511617909252505050919091019250604091505051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b838110156114c25780820151838201526020016114aa565b50505050905090810190601f1680156114ef5780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185886187965a03f19350505050151561151357fe5b82604051808280519060200190808383602083106110d15780518252601f1990920191602091820191016110b2565b60055460ff1681565b818101828110156109b157600080fd5b60008282111561156a57600080fd5b50900390565b6000903b11905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820b0d2436662b0975df285cf9f28e765fe269f1cc9b0e75ef3e461b8da6009f0a50029

Swarm Source

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