ETH Price: $3,780.01 (-0.86%)
Gas: 5 Gwei

Token

Boldman (BOLD)
 

Overview

Max Total Supply

886,378,966 BOLD

Holders

17,426 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
glaxyens.eth
Balance
1,550 BOLD

Value
$0.00
0xbbd4da3e86f610adcf555ff3b2f51869ed5c7cca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We are investing in teams that building new solutions to fix the monetary system of our world and distributing the profits to partners of Boldman Capital as Ethereum

ICO Information

ICO Start Date : Jun 19, 2018  
ICO End Date : Nov 6, 2018
Hard Cap : 5890 ETH
ICO Price  : 0.0000067 ETH
Country : Hong Kong

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MainToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-06-18
*/

/*
 * This file was generated by MyWish Platform (https://mywish.io/)
 * The complete code could be found at https://github.com/MyWishPlatform/
 * Copyright (C) 2018 MyWish
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

pragma solidity ^0.4.21;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}



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

  function div(uint256 a, uint256 b) internal pure 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 pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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



/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @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) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @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) public view returns (uint256 balance) {
    return balances[_owner];
  }

}



/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @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 amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    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 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}



/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    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) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}



/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}



contract FreezableToken is StandardToken {
    // freezing chains
    mapping (bytes32 => uint64) internal chains;
    // freezing amounts for each chain
    mapping (bytes32 => uint) internal freezings;
    // total freezing balance per address
    mapping (address => uint) internal freezingBalance;

    event Freezed(address indexed to, uint64 release, uint amount);
    event Released(address indexed owner, uint amount);


    /**
     * @dev Gets the balance of the specified address include freezing tokens.
     * @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) public view returns (uint256 balance) {
        return super.balanceOf(_owner) + freezingBalance[_owner];
    }

    /**
     * @dev Gets the balance of the specified address without freezing tokens.
     * @param _owner The address to query the the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function actualBalanceOf(address _owner) public view returns (uint256 balance) {
        return super.balanceOf(_owner);
    }

    function freezingBalanceOf(address _owner) public view returns (uint256 balance) {
        return freezingBalance[_owner];
    }

    /**
     * @dev gets freezing count
     * @param _addr Address of freeze tokens owner.
     */
    function freezingCount(address _addr) public view returns (uint count) {
        uint64 release = chains[toKey(_addr, 0)];
        while (release != 0) {
            count ++;
            release = chains[toKey(_addr, release)];
        }
    }

    /**
     * @dev gets freezing end date and freezing balance for the freezing portion specified by index.
     * @param _addr Address of freeze tokens owner.
     * @param _index Freezing portion index. It ordered by release date descending.
     */
    function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) {
        for (uint i = 0; i < _index + 1; i ++) {
            _release = chains[toKey(_addr, _release)];
            if (_release == 0) {
                return;
            }
        }
        _balance = freezings[toKey(_addr, _release)];
    }

    /**
     * @dev freeze your tokens to the specified address.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to freeze.
     * @param _until Release date, must be in future.
     */
    function freezeTo(address _to, uint _amount, uint64 _until) public {
        require(_to != address(0));
        require(_amount <= balances[msg.sender]);

        balances[msg.sender] = balances[msg.sender].sub(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        Transfer(msg.sender, _to, _amount);
        emit Freezed(_to, _until, _amount);
    }

    /**
     * @dev release first available freezing tokens.
     */
    function releaseOnce() public {
        bytes32 headKey = toKey(msg.sender, 0);
        uint64 head = chains[headKey];
        require(head != 0);
        require(uint64(block.timestamp) > head);
        bytes32 currentKey = toKey(msg.sender, head);

        uint64 next = chains[currentKey];

        uint amount = freezings[currentKey];
        delete freezings[currentKey];

        balances[msg.sender] = balances[msg.sender].add(amount);
        freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount);

        if (next == 0) {
            delete chains[headKey];
        }
        else {
            chains[headKey] = next;
            delete chains[currentKey];
        }
        emit Released(msg.sender, amount);
    }

    /**
     * @dev release all available for release freezing tokens. Gas usage is not deterministic!
     * @return how many tokens was released
     */
    function releaseAll() public returns (uint tokens) {
        uint release;
        uint balance;
        (release, balance) = getFreezing(msg.sender, 0);
        while (release != 0 && block.timestamp > release) {
            releaseOnce();
            tokens += balance;
            (release, balance) = getFreezing(msg.sender, 0);
        }
    }

    function toKey(address _addr, uint _release) internal pure returns (bytes32 result) {
        // WISH masc to increase entropy
        result = 0x5749534800000000000000000000000000000000000000000000000000000000;
        assembly {
            result := or(result, mul(_addr, 0x10000000000000000))
            result := or(result, _release)
        }
    }

    function freeze(address _to, uint64 _until) internal {
        require(_until > block.timestamp);
        bytes32 key = toKey(_to, _until);
        bytes32 parentKey = toKey(_to, uint64(0));
        uint64 next = chains[parentKey];

        if (next == 0) {
            chains[parentKey] = _until;
            return;
        }

        bytes32 nextKey = toKey(_to, next);
        uint parent;

        while (next != 0 && _until > next) {
            parent = next;
            parentKey = nextKey;

            next = chains[nextKey];
            nextKey = toKey(_to, next);
        }

        if (_until == next) {
            return;
        }

        if (next != 0) {
            chains[key] = next;
        }

        chains[parentKey] = _until;
    }
}

/**
* @title Contract that will work with ERC223 tokens.
*/

contract ERC223Receiver {
    /**
     * @dev Standard ERC223 function that will handle incoming token transfers.
     *
     * @param _from  Token sender address.
     * @param _value Amount of tokens.
     * @param _data  Transaction metadata.
     */
    function tokenFallback(address _from, uint _value, bytes _data) public;
}

contract ERC223Basic is ERC20Basic {
    function transfer(address to, uint value, bytes data) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint value, bytes data);
}


contract SuccessfulERC223Receiver is ERC223Receiver {
    event Invoked(address from, uint value, bytes data);

    function tokenFallback(address _from, uint _value, bytes _data) public {
        emit Invoked(_from, _value, _data);
    }
}

contract FailingERC223Receiver is ERC223Receiver {
    function tokenFallback(address, uint, bytes) public {
        revert();
    }
}

contract ERC223ReceiverWithoutTokenFallback {
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is StandardToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        require(_value > 0);
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        Burn(burner, _value);
    }
}



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}



contract FreezableMintableToken is FreezableToken, MintableToken {
    /**
     * @dev Mint the specified amount of token to the specified address and freeze it until the specified date.
     *      Be careful, gas usage is not deterministic,
     *      and depends on how many freezes _to address already has.
     * @param _to Address to which token will be freeze.
     * @param _amount Amount of token to mint and freeze.
     * @param _until Release date, must be in future.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintAndFreeze(address _to, uint _amount, uint64 _until) onlyOwner canMint public returns (bool) {
        totalSupply = totalSupply.add(_amount);

        bytes32 currentKey = toKey(_to, _until);
        freezings[currentKey] = freezings[currentKey].add(_amount);
        freezingBalance[_to] = freezingBalance[_to].add(_amount);

        freeze(_to, _until);
        emit Mint(_to, _amount);
        emit Freezed(_to, _until, _amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
}

contract Consts {
    uint constant TOKEN_DECIMALS = 18;
    uint8 constant TOKEN_DECIMALS_UINT8 = 18;
    uint constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS;

    string constant TOKEN_NAME = "Boldman";
    string constant TOKEN_SYMBOL = "BOLD";
    bool constant PAUSED = false;
    address constant TARGET_USER = 0xAd30dB42B88548943655FdEF4d94a342Fa4490dE;
    
    uint constant START_TIME = 1529361000;
    
    bool constant CONTINUE_MINTING = true;
}




/**
 * @title Reference implementation of the ERC223 standard token.
 */
contract ERC223Token is ERC223Basic, BasicToken, FailingERC223Receiver {
    using SafeMath for uint;

    /**
     * @dev Transfer the specified amount of tokens to the specified address.
     *      Invokes the `tokenFallback` function if the recipient is a contract.
     *      The token transfer fails if the recipient is a contract
     *      but does not implement the `tokenFallback` function
     *      or the fallback function to receive funds.
     *
     * @param _to    Receiver address.
     * @param _value Amount of tokens that will be transferred.
     * @param _data  Transaction metadata.
     */
    function transfer(address _to, uint _value, bytes _data) public returns (bool) {
        // Standard function transfer similar to ERC20 transfer with no _data .
        // Added due to backwards compatibility reasons .
        uint codeLength;

        assembly {
            // Retrieve the size of the code on target address, this needs assembly.
            codeLength := extcodesize(_to)
        }

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        if(codeLength > 0) {
            ERC223Receiver receiver = ERC223Receiver(_to);
            receiver.tokenFallback(msg.sender, _value, _data);
        }
        emit Transfer(msg.sender, _to, _value, _data);
        return true;
    }

    /**
     * @dev Transfer the specified amount of tokens to the specified address.
     *      This function works the same with the previous one
     *      but doesn't contain `_data` param.
     *      Added due to backwards compatibility reasons.
     *
     * @param _to    Receiver address.
     * @param _value Amount of tokens that will be transferred.
     */
    function transfer(address _to, uint256 _value) public returns (bool) {
        bytes memory empty;
        return transfer(_to, _value, empty);
    }
}


contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable
    
{
    

    function name() pure public returns (string _name) {
        return TOKEN_NAME;
    }

    function symbol() pure public returns (string _symbol) {
        return TOKEN_SYMBOL;
    }

    function decimals() pure public returns (uint8 _decimals) {
        return TOKEN_DECIMALS_UINT8;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transferFrom(_from, _to, _value);
    }

    function transfer(address _to, uint256 _value) public returns (bool _success) {
        require(!paused);
        return super.transfer(_to, _value);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","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":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","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"},{"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"}]

608060405260068054600160b060020a03191633179055611799806100256000396000f3006080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d6f730811461016e57806305d2035b146101b657806306fdde03146101df578063095ea7b3146102695780630bb2cd6b1461028d57806317a950ac146102be57806318160ddd146102f157806323b872dd14610306578063313ce567146103305780633be1e9521461035b5780633f4ba83a1461038e57806340c10f19146103a357806342966c68146103c75780635be7fde8146103df5780635c975abb146103f4578063661884631461040957806366a92cda1461042d57806370a08231146104425780637d64bcb4146104635780638456cb59146104785780638da5cb5b1461048d57806395d89b41146104be578063a9059cbb146104d3578063ca63b5b8146104f7578063d73dd62314610518578063d8aeedf51461053c578063dd62ed3e1461055d578063f2fde38b14610584575b600080fd5b34801561017a57600080fd5b50610192600160a060020a03600435166024356105a5565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b3480156101c257600080fd5b506101cb610632565b604080519115158252519081900360200190f35b3480156101eb57600080fd5b506101f4610642565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022e578181015183820152602001610216565b50505050905090810190601f16801561025b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027557600080fd5b506101cb600160a060020a0360043516602435610679565b34801561029957600080fd5b506101cb600160a060020a036004351660243567ffffffffffffffff604435166106df565b3480156102ca57600080fd5b506102df600160a060020a036004351661087d565b60408051918252519081900360200190f35b3480156102fd57600080fd5b506102df61088e565b34801561031257600080fd5b506101cb600160a060020a0360043581169060243516604435610894565b34801561033c57600080fd5b506103456108c1565b6040805160ff9092168252519081900360200190f35b34801561036757600080fd5b5061038c600160a060020a036004351660243567ffffffffffffffff604435166108c6565b005b34801561039a57600080fd5b5061038c610a3a565b3480156103af57600080fd5b506101cb600160a060020a0360043516602435610ab3565b3480156103d357600080fd5b5061038c600435610bac565b3480156103eb57600080fd5b506102df610c6a565b34801561040057600080fd5b506101cb610ccf565b34801561041557600080fd5b506101cb600160a060020a0360043516602435610cdf565b34801561043957600080fd5b5061038c610dcf565b34801561044e57600080fd5b506102df600160a060020a0360043516610f75565b34801561046f57600080fd5b506101cb610f9e565b34801561048457600080fd5b5061038c611022565b34801561049957600080fd5b506104a26110a0565b60408051600160a060020a039092168252519081900360200190f35b3480156104ca57600080fd5b506101f46110af565b3480156104df57600080fd5b506101cb600160a060020a03600435166024356110e6565b34801561050357600080fd5b506102df600160a060020a0360043516611111565b34801561052457600080fd5b506101cb600160a060020a0360043516602435611197565b34801561054857600080fd5b506102df600160a060020a0360043516611230565b34801561056957600080fd5b506102df600160a060020a036004358116906024351661124b565b34801561059057600080fd5b5061038c600160a060020a0360043516611276565b600080805b836001018110156105fe57600360006105cd878667ffffffffffffffff1661130b565b815260208101919091526040016000205467ffffffffffffffff1692508215156105f65761062a565b6001016105aa565b60046000610616878667ffffffffffffffff1661130b565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600781527f426f6c646d616e00000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a031633146106fb57600080fd5b60065460a060020a900460ff161561071257600080fd5b600054610725908563ffffffff61133f16565b60005561073c8567ffffffffffffffff851661130b565b60008181526004602052604090205490915061075e908563ffffffff61133f16565b600082815260046020908152604080832093909355600160a060020a0388168252600590522054610795908563ffffffff61133f16565b600160a060020a0386166000908152600560205260409020556107b8858461134e565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a03871691339160008051602061174e8339815191529181900360200190a3506001949350505050565b6000610888826114e8565b92915050565b60005481565b60065460009060a860020a900460ff16156108ae57600080fd5b6108b9848484611503565b949350505050565b601290565b6000600160a060020a03841615156108dd57600080fd5b336000908152600160205260409020548311156108f957600080fd5b33600090815260016020526040902054610919908463ffffffff61166a16565b3360009081526001602052604090205561093d8467ffffffffffffffff841661130b565b60008181526004602052604090205490915061095f908463ffffffff61133f16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610996908463ffffffff61133f16565b600160a060020a0385166000908152600560205260409020556109b9848361134e565b604080518481529051600160a060020a03861691339160008051602061174e8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610a5157600080fd5b60065460a860020a900460ff161515610a6957600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610acd57600080fd5b60065460a060020a900460ff1615610ae457600080fd5b600054610af7908363ffffffff61133f16565b6000908155600160a060020a038416815260016020526040902054610b22908363ffffffff61133f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061174e8339815191529181900360200190a350600192915050565b6000808211610bba57600080fd5b33600090815260016020526040902054821115610bd657600080fd5b5033600081815260016020526040902054610bf7908363ffffffff61166a16565b600160a060020a03821660009081526001602052604081209190915554610c24908363ffffffff61166a16565b600055604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b6000806000610c7a3360006105a5565b67ffffffffffffffff909116925090505b8115801590610c9957508142115b15610cca57610ca6610dcf565b91820191610cb53360006105a5565b67ffffffffffffffff90911692509050610c8b565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610d3457336000908152600260209081526040808320600160a060020a0388168452909152812055610d69565b610d44818463ffffffff61166a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610de233600061130b565b60008181526003602052604090205490955067ffffffffffffffff169350831515610e0c57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610e2e57600080fd5b610e42338567ffffffffffffffff1661130b565b60008181526003602090815260408083205460048352818420805490859055338552600190935292205492955067ffffffffffffffff90911693509150610e8f908263ffffffff61133f16565b33600090815260016020908152604080832093909355600590522054610ebb908263ffffffff61166a16565b3360009081526005602052604090205567ffffffffffffffff82161515610efe576000858152600360205260409020805467ffffffffffffffff19169055610f38565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a038116600090815260056020526040812054610f97836114e8565b0192915050565b600654600090600160a060020a03163314610fb857600080fd5b60065460a060020a900460ff1615610fcf57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461103957600080fd5b60065460a860020a900460ff161561105057600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600481527f424f4c4400000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff161561110057600080fd5b61110a838361167c565b9392505050565b6000806003600061112385600061130b565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff811615611191576001909101906003600061116f8567ffffffffffffffff851661130b565b815260208101919091526040016000205467ffffffffffffffff169050611141565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546111cb908363ffffffff61133f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461128d57600080fd5b600160a060020a03811615156112a257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b60008282018381101561110a57fe5b6000808080804267ffffffffffffffff87161161136a57600080fd5b61137e878767ffffffffffffffff1661130b565b945061138b87600061130b565b60008181526003602052604090205490945067ffffffffffffffff1692508215156113de576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556114df565b6113f2878467ffffffffffffffff1661130b565b91505b67ffffffffffffffff83161580159061142157508267ffffffffffffffff168667ffffffffffffffff16115b1561145a575060008181526003602052604090205490925067ffffffffffffffff90811691839116611453878461130b565b91506113f5565b8267ffffffffffffffff168667ffffffffffffffff16141561147b576114df565b67ffffffffffffffff8316156114b5576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526001602052604090205490565b6000600160a060020a038316151561151a57600080fd5b600160a060020a03841660009081526001602052604090205482111561153f57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561156f57600080fd5b600160a060020a038416600090815260016020526040902054611598908363ffffffff61166a16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546115cd908363ffffffff61133f16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054611611908363ffffffff61166a16565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061174e833981519152929181900390910190a35060019392505050565b60008282111561167657fe5b50900390565b6000600160a060020a038316151561169357600080fd5b336000908152600160205260409020548211156116af57600080fd5b336000908152600160205260409020546116cf908363ffffffff61166a16565b3360009081526001602052604080822092909255600160a060020a03851681522054611701908363ffffffff61133f16565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061174e8339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582030996e633f9f663c5836c1a3b247fb89fa36c7a1bb5dc29f3c6e44c7ea998b270029

Deployed Bytecode

0x6080604052600436106101695763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d6f730811461016e57806305d2035b146101b657806306fdde03146101df578063095ea7b3146102695780630bb2cd6b1461028d57806317a950ac146102be57806318160ddd146102f157806323b872dd14610306578063313ce567146103305780633be1e9521461035b5780633f4ba83a1461038e57806340c10f19146103a357806342966c68146103c75780635be7fde8146103df5780635c975abb146103f4578063661884631461040957806366a92cda1461042d57806370a08231146104425780637d64bcb4146104635780638456cb59146104785780638da5cb5b1461048d57806395d89b41146104be578063a9059cbb146104d3578063ca63b5b8146104f7578063d73dd62314610518578063d8aeedf51461053c578063dd62ed3e1461055d578063f2fde38b14610584575b600080fd5b34801561017a57600080fd5b50610192600160a060020a03600435166024356105a5565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b3480156101c257600080fd5b506101cb610632565b604080519115158252519081900360200190f35b3480156101eb57600080fd5b506101f4610642565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022e578181015183820152602001610216565b50505050905090810190601f16801561025b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027557600080fd5b506101cb600160a060020a0360043516602435610679565b34801561029957600080fd5b506101cb600160a060020a036004351660243567ffffffffffffffff604435166106df565b3480156102ca57600080fd5b506102df600160a060020a036004351661087d565b60408051918252519081900360200190f35b3480156102fd57600080fd5b506102df61088e565b34801561031257600080fd5b506101cb600160a060020a0360043581169060243516604435610894565b34801561033c57600080fd5b506103456108c1565b6040805160ff9092168252519081900360200190f35b34801561036757600080fd5b5061038c600160a060020a036004351660243567ffffffffffffffff604435166108c6565b005b34801561039a57600080fd5b5061038c610a3a565b3480156103af57600080fd5b506101cb600160a060020a0360043516602435610ab3565b3480156103d357600080fd5b5061038c600435610bac565b3480156103eb57600080fd5b506102df610c6a565b34801561040057600080fd5b506101cb610ccf565b34801561041557600080fd5b506101cb600160a060020a0360043516602435610cdf565b34801561043957600080fd5b5061038c610dcf565b34801561044e57600080fd5b506102df600160a060020a0360043516610f75565b34801561046f57600080fd5b506101cb610f9e565b34801561048457600080fd5b5061038c611022565b34801561049957600080fd5b506104a26110a0565b60408051600160a060020a039092168252519081900360200190f35b3480156104ca57600080fd5b506101f46110af565b3480156104df57600080fd5b506101cb600160a060020a03600435166024356110e6565b34801561050357600080fd5b506102df600160a060020a0360043516611111565b34801561052457600080fd5b506101cb600160a060020a0360043516602435611197565b34801561054857600080fd5b506102df600160a060020a0360043516611230565b34801561056957600080fd5b506102df600160a060020a036004358116906024351661124b565b34801561059057600080fd5b5061038c600160a060020a0360043516611276565b600080805b836001018110156105fe57600360006105cd878667ffffffffffffffff1661130b565b815260208101919091526040016000205467ffffffffffffffff1692508215156105f65761062a565b6001016105aa565b60046000610616878667ffffffffffffffff1661130b565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600781527f426f6c646d616e00000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a031633146106fb57600080fd5b60065460a060020a900460ff161561071257600080fd5b600054610725908563ffffffff61133f16565b60005561073c8567ffffffffffffffff851661130b565b60008181526004602052604090205490915061075e908563ffffffff61133f16565b600082815260046020908152604080832093909355600160a060020a0388168252600590522054610795908563ffffffff61133f16565b600160a060020a0386166000908152600560205260409020556107b8858461134e565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a03871691339160008051602061174e8339815191529181900360200190a3506001949350505050565b6000610888826114e8565b92915050565b60005481565b60065460009060a860020a900460ff16156108ae57600080fd5b6108b9848484611503565b949350505050565b601290565b6000600160a060020a03841615156108dd57600080fd5b336000908152600160205260409020548311156108f957600080fd5b33600090815260016020526040902054610919908463ffffffff61166a16565b3360009081526001602052604090205561093d8467ffffffffffffffff841661130b565b60008181526004602052604090205490915061095f908463ffffffff61133f16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610996908463ffffffff61133f16565b600160a060020a0385166000908152600560205260409020556109b9848361134e565b604080518481529051600160a060020a03861691339160008051602061174e8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610a5157600080fd5b60065460a860020a900460ff161515610a6957600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610acd57600080fd5b60065460a060020a900460ff1615610ae457600080fd5b600054610af7908363ffffffff61133f16565b6000908155600160a060020a038416815260016020526040902054610b22908363ffffffff61133f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a0385169160009160008051602061174e8339815191529181900360200190a350600192915050565b6000808211610bba57600080fd5b33600090815260016020526040902054821115610bd657600080fd5b5033600081815260016020526040902054610bf7908363ffffffff61166a16565b600160a060020a03821660009081526001602052604081209190915554610c24908363ffffffff61166a16565b600055604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b6000806000610c7a3360006105a5565b67ffffffffffffffff909116925090505b8115801590610c9957508142115b15610cca57610ca6610dcf565b91820191610cb53360006105a5565b67ffffffffffffffff90911692509050610c8b565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610d3457336000908152600260209081526040808320600160a060020a0388168452909152812055610d69565b610d44818463ffffffff61166a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610de233600061130b565b60008181526003602052604090205490955067ffffffffffffffff169350831515610e0c57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610e2e57600080fd5b610e42338567ffffffffffffffff1661130b565b60008181526003602090815260408083205460048352818420805490859055338552600190935292205492955067ffffffffffffffff90911693509150610e8f908263ffffffff61133f16565b33600090815260016020908152604080832093909355600590522054610ebb908263ffffffff61166a16565b3360009081526005602052604090205567ffffffffffffffff82161515610efe576000858152600360205260409020805467ffffffffffffffff19169055610f38565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a038116600090815260056020526040812054610f97836114e8565b0192915050565b600654600090600160a060020a03163314610fb857600080fd5b60065460a060020a900460ff1615610fcf57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461103957600080fd5b60065460a860020a900460ff161561105057600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600481527f424f4c4400000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff161561110057600080fd5b61110a838361167c565b9392505050565b6000806003600061112385600061130b565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff811615611191576001909101906003600061116f8567ffffffffffffffff851661130b565b815260208101919091526040016000205467ffffffffffffffff169050611141565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546111cb908363ffffffff61133f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461128d57600080fd5b600160a060020a03811615156112a257600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b60008282018381101561110a57fe5b6000808080804267ffffffffffffffff87161161136a57600080fd5b61137e878767ffffffffffffffff1661130b565b945061138b87600061130b565b60008181526003602052604090205490945067ffffffffffffffff1692508215156113de576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556114df565b6113f2878467ffffffffffffffff1661130b565b91505b67ffffffffffffffff83161580159061142157508267ffffffffffffffff168667ffffffffffffffff16115b1561145a575060008181526003602052604090205490925067ffffffffffffffff90811691839116611453878461130b565b91506113f5565b8267ffffffffffffffff168667ffffffffffffffff16141561147b576114df565b67ffffffffffffffff8316156114b5576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526001602052604090205490565b6000600160a060020a038316151561151a57600080fd5b600160a060020a03841660009081526001602052604090205482111561153f57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561156f57600080fd5b600160a060020a038416600090815260016020526040902054611598908363ffffffff61166a16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546115cd908363ffffffff61133f16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054611611908363ffffffff61166a16565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061174e833981519152929181900390910190a35060019392505050565b60008282111561167657fe5b50900390565b6000600160a060020a038316151561169357600080fd5b336000908152600160205260409020548211156116af57600080fd5b336000908152600160205260409020546116cf908363ffffffff61166a16565b3360009081526001602052604080822092909255600160a060020a03851681522054611701908363ffffffff61133f16565b600160a060020a03841660008181526001602090815260409182902093909355805185815290519192339260008051602061174e8339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582030996e633f9f663c5836c1a3b247fb89fa36c7a1bb5dc29f3c6e44c7ea998b270029

Swarm Source

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