ETH Price: $3,297.13 (+1.57%)
Gas: 2 Gwei

Token

QNTU Token (QNTU)
 

Overview

Max Total Supply

120,000,000,000 QNTU

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,800,000,000 QNTU

Value
$0.00
0x6Ad8038F53ae2800d45a31d8261b062A0B55d63B
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
QNTU

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-02-23
*/

pragma solidity ^0.4.18;

/**
 * @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;

    /**
     * Events
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

    /**
     * @dev Constructor
     * Sets the original `owner` of the contract to the sender account.
     */
    function Ownable() public {
        owner = msg.sender;
        OwnershipTransferred(0, owner);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a new owner.
     * @param _newOwner The address to transfer ownership to.
     */
    function transferOwnership(address _newOwner)
        public
        onlyOwner
    {
        require(_newOwner != 0);

        OwnershipTransferred(owner, _newOwner);
        owner = _newOwner;
    }

}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
     * @dev Multiplies two numbers, throws on overflow.
     */
    function mul(uint _a, uint _b)
        internal
        pure
        returns (uint)
    {
        if (_a == 0) {
            return 0;
        }
    
        uint c = _a * _b;
        assert(c / _a == _b);
        return c;
    }

    /**
     * @dev Integer division of two numbers, truncating the quotient.
     */
    function div(uint _a, uint _b)
        internal
        pure
        returns (uint)
    {
        // Solidity automatically throws when dividing by 0
        uint c = _a / _b;
        return c;
    }

    /**
     * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint _a, uint _b)
        internal
        pure
        returns (uint)
    {
        assert(_b <= _a);
        return _a - _b;
    }

    /**
     * @dev Adds two numbers, throws on overflow.
     */
    function add(uint _a, uint _b)
        internal
        pure
        returns (uint)
    {
        uint c = _a + _b;
        assert(c >= _a);
        return c;
    }

}

/**
 * @title Standard ERC20 token
 */
contract StandardToken is Ownable {

    using SafeMath for uint;

    string public name;
    string public symbol;
    uint8 public decimals;

    uint public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) internal allowed;

    /**
     * Events
     */
    event ChangeTokenInformation(string name, string symbol);
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);

    /**
     * Owner can update token information here.
     *
     * It is often useful to conceal the actual token association, until
     * the token operations, like central issuance or reissuance have been completed.
     *
     * This function allows the token owner to rename the token after the operations
     * have been completed and then point the audience to use the token contract.
     */
    function changeTokenInformation(string _name, string _symbol)
        public
        onlyOwner
    {
        name = _name;
        symbol = _symbol;
        ChangeTokenInformation(_name, _symbol);
    }

	/**
	 * @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, uint _value)
		public
		returns (bool)
	{
		require(_to != 0);
        require(_value > 0);

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

    /**
     * @dev Transfer tokens from one address to another
     * @param _from The address which you want to send tokens from
     * @param _to The address which you want to transfer to
     * @param _value The amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint _value)
        public
        returns (bool)
    {
        require(_to != 0);
        require(_value > 0);

        balanceOf[_from] = balanceOf[_from].sub(_value);
        balanceOf[_to] = balanceOf[_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, uint _value)
        public
        returns (bool)
    {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a 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)
     *
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue)
        public
        returns (bool)
    {
        require(_addedValue > 0);

        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     *
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue)
        public
        returns (bool)
    {
        require(_subtractedValue > 0);

        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;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner The address which owns the funds.
     * @param _spender The address which will spend the funds.
     * @return A uint specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender)
        public
        view
        returns (uint)
    {
        return allowed[_owner][_spender];
    }

}

/**
 * @title UpgradeAgent Interface
 * @dev Upgrade agent transfers tokens to a new contract. Upgrade agent itself can be the
 * token contract, or just a middle man contract doing the heavy lifting.
 */
contract UpgradeAgent {

    bool public isUpgradeAgent = true;

    function upgradeFrom(address _from, uint _value) public;

}


/**
 * @title Mintable token
 */
contract MintableToken is StandardToken {

	bool public mintingFinished = false;

	/**
     * Events
     */
	event Mint(address indexed to, uint amount);
  	event MintFinished();

	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.
	 */
	function mint(address _to, uint _amount)
		public
		onlyOwner
		canMint
	{
		totalSupply = totalSupply.add(_amount);
		balanceOf[_to] = balanceOf[_to].add(_amount);
		Mint(_to, _amount);
		Transfer(0, _to, _amount);
	}

	/**
	 * @dev Function to stop minting new tokens.
	 */
	function finishMinting()
		public
		onlyOwner
		canMint
	{
		mintingFinished = true;
		MintFinished();
	}

}

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract CappedToken is MintableToken {

    uint public cap;

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     */
    function mint(address _to, uint _amount)
        public
        onlyOwner
        canMint
    {
        require(totalSupply.add(_amount) <= cap);

        super.mint(_to, _amount);
    }

}

/**
 * @title Pausable token
 * @dev Token that can be freeze "Transfer" function
 */
contract PausableToken is StandardToken {

    bool public isTradable = true;

    /**
     * Events
     */
    event FreezeTransfer();
    event UnfreezeTransfer();

    modifier canTransfer() {
		require(isTradable);
		_;
	}

    /**
     * Disallow to transfer token from an address to other address
     */
    function freezeTransfer()
        public
        onlyOwner
    {
        isTradable = false;
        FreezeTransfer();
    }

    /**
     * Allow to transfer token from an address to other address
     */
    function unfreezeTransfer()
        public
        onlyOwner
    {
        isTradable = true;
        UnfreezeTransfer();
    }

    /**
	 * @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, uint _value)
		public
        canTransfer
		returns (bool)
	{
		return super.transfer(_to, _value);
	}

    /**
     * @dev Transfer tokens from one address to another
     * @param _from The address which you want to send tokens from
     * @param _to The address which you want to transfer to
     * @param _value The amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint _value)
        public
        canTransfer
        returns (bool)
    {
        return super.transferFrom(_from, _to, _value);
    }

    /**
     * @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, uint _value)
        public
        canTransfer
        returns (bool)
    {
        return super.approve(_spender, _value);
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a 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)
     *
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint _addedValue)
        public
        canTransfer
        returns (bool)
    {
        return super.increaseApproval(_spender, _addedValue);
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     *
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     *
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint _subtractedValue)
        public
        canTransfer
        returns (bool)
    {
        return super.decreaseApproval(_spender, _subtractedValue);
    }

}

/**
 * @title Upgradable token
 */
contract UpgradableToken is StandardToken {

    address public upgradeMaster;

    // The next contract where the tokens will be migrated.
    UpgradeAgent public upgradeAgent;

    bool public isUpgradable = false;

    // How many tokens we have upgraded by now.
    uint public totalUpgraded;

    /**
     * Events
     */
    event ChangeUpgradeMaster(address newMaster);
    event ChangeUpgradeAgent(address newAgent);
    event FreezeUpgrade();
    event UnfreezeUpgrade();
    event Upgrade(address indexed from, address indexed to, uint value);

    modifier onlyUpgradeMaster() {
		require(msg.sender == upgradeMaster);
		_;
	}

    modifier canUpgrade() {
		require(isUpgradable);
		_;
	}

    /**
     * Change the upgrade master.
     * @param _newMaster New upgrade master.
     */
    function changeUpgradeMaster(address _newMaster)
        public
        onlyOwner
    {
        require(_newMaster != 0);

        upgradeMaster = _newMaster;
        ChangeUpgradeMaster(_newMaster);
    }

    /**
     * Change the upgrade agent.
     * @param _newAgent New upgrade agent.
     */
    function changeUpgradeAgent(address _newAgent)
        public
        onlyOwner
    {
        require(totalUpgraded == 0);

        upgradeAgent = UpgradeAgent(_newAgent);

        // Bad interface
        if (!upgradeAgent.isUpgradeAgent()) {
            revert();
        }

        ChangeUpgradeAgent(_newAgent);
    }

    /**
     * Disallow to upgrade token to new smart contract
     */
    function freezeUpgrade()
        public
        onlyOwner
    {
        isUpgradable = false;
        FreezeUpgrade();
    }

    /**
     * Allow to upgrade token to new smart contract
     */
    function unfreezeUpgrade()
        public
        onlyOwner
    {
        isUpgradable = true;
        UnfreezeUpgrade();
    }

    /**
     * Token holder upgrade their tokens to a new smart contract.
     */
    function upgrade()
        public
        canUpgrade
    {
        uint amount = balanceOf[msg.sender];

        require(amount > 0);

        processUpgrade(msg.sender, amount);
    }

    /**
     * Upgrader upgrade tokens of holder to a new smart contract.
     * @param _holders List of token holder.
     */
    function forceUpgrade(address[] _holders)
        public
        onlyUpgradeMaster
        canUpgrade
    {
        uint amount;

        for (uint i = 0; i < _holders.length; i++) {
            amount = balanceOf[_holders[i]];

            if (amount == 0) {
                continue;
            }

            processUpgrade(_holders[i], amount);
        }
    }

    function processUpgrade(address _holder, uint _amount)
        private
    {
        balanceOf[_holder] = balanceOf[_holder].sub(_amount);

        // Take tokens out from circulation
        totalSupply = totalSupply.sub(_amount);
        totalUpgraded = totalUpgraded.add(_amount);

        // Upgrade agent reissues the tokens
        upgradeAgent.upgradeFrom(_holder, _amount);
        Upgrade(_holder, upgradeAgent, _amount);
    }

}

/**
 * @title QNTU 1.0 token
 */
contract QNTU is UpgradableToken, CappedToken, PausableToken {

    /**
	 * @dev Constructor
	 */
    function QNTU()
        public
    {
        symbol = "QNTU";
        name = "QNTU Token";
        decimals = 18;

        uint multiplier = 10 ** uint(decimals);

        cap = 120000000000 * multiplier;
        totalSupply = 72000000000 * multiplier;

        // 40%
        balanceOf[0xd83ef0076580e595b3be39d654da97184623b9b5] = 4800000000 * multiplier;
        balanceOf[0xd4e40860b41f666fbc6c3007f3d1434e353063d8] = 4800000000 * multiplier;
        balanceOf[0x84dd4187a87055495d0c08fe260ca9cc9e02f09e] = 4800000000 * multiplier;
        balanceOf[0x0556620d12c38babd0461e366b433682a5000fae] = 4800000000 * multiplier;
        balanceOf[0x0f363f18f49aa350ba8fcf233cdd155a7b77af99] = 4800000000 * multiplier;
        balanceOf[0x1a38292d3f685cd79bcdfc19fad7447ae762aa4c] = 4800000000 * multiplier;
        balanceOf[0xb262d04ee29ad9ebacb1ab9da99398916f425d84] = 4800000000 * multiplier;
        balanceOf[0xd8c2d6f12baf10258eb390be4377e460c1d033e2] = 4800000000 * multiplier;
        balanceOf[0x1ca70fd8433ec97fa0777830a152d028d71b88fa] = 4800000000 * multiplier;
        balanceOf[0x57be4b8c57c0bb061e05fdf85843503fba673394] = 4800000000 * multiplier;

        Transfer(0, 0xd83ef0076580e595b3be39d654da97184623b9b5, 4800000000 * multiplier);
        Transfer(0, 0xd4e40860b41f666fbc6c3007f3d1434e353063d8, 4800000000 * multiplier);
        Transfer(0, 0x84dd4187a87055495d0c08fe260ca9cc9e02f09e, 4800000000 * multiplier);
        Transfer(0, 0x0556620d12c38babd0461e366b433682a5000fae, 4800000000 * multiplier);
        Transfer(0, 0x0f363f18f49aa350ba8fcf233cdd155a7b77af99, 4800000000 * multiplier);
        Transfer(0, 0x1a38292d3f685cd79bcdfc19fad7447ae762aa4c, 4800000000 * multiplier);
        Transfer(0, 0xb262d04ee29ad9ebacb1ab9da99398916f425d84, 4800000000 * multiplier);
        Transfer(0, 0xd8c2d6f12baf10258eb390be4377e460c1d033e2, 4800000000 * multiplier);
        Transfer(0, 0x1ca70fd8433ec97fa0777830a152d028d71b88fa, 4800000000 * multiplier);
        Transfer(0, 0x57be4b8c57c0bb061e05fdf85843503fba673394, 4800000000 * multiplier);

        // 20%
        balanceOf[0xb6ff15b634571cb56532022fe00f96fee51322b3] = 4800000000 * multiplier;
        balanceOf[0x631c87278de77902e762ba0ab57d55c10716e0b6] = 4800000000 * multiplier;
        balanceOf[0x7fe443391d9a3eb0c401181c46a44eb6106bba2e] = 4800000000 * multiplier;
        balanceOf[0x94905c20fa2596fdc7d37bab6dd67b52e2335122] = 4800000000 * multiplier;
        balanceOf[0x6ad8038f53ae2800d45a31d8261b062a0b55d63b] = 4800000000 * multiplier;

        Transfer(0, 0xb6ff15b634571cb56532022fe00f96fee51322b3, 4800000000 * multiplier);
        Transfer(0, 0x631c87278de77902e762ba0ab57d55c10716e0b6, 4800000000 * multiplier);
        Transfer(0, 0x7fe443391d9a3eb0c401181c46a44eb6106bba2e, 4800000000 * multiplier);
        Transfer(0, 0x94905c20fa2596fdc7d37bab6dd67b52e2335122, 4800000000 * multiplier);
        Transfer(0, 0x6ad8038f53ae2800d45a31d8261b062a0b55d63b, 4800000000 * multiplier);
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_value","type":"uint256"}],"name":"approve","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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_holders","type":"address[]"}],"name":"forceUpgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isTradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isUpgradable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"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":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"changeTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"freezeTransfer","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":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAgent","type":"address"}],"name":"changeUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"freezeUpgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unfreezeTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newMaster","type":"address"}],"name":"changeUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unfreezeUpgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"FreezeTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"UnfreezeTransfer","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":false,"name":"newMaster","type":"address"}],"name":"ChangeUpgradeMaster","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAgent","type":"address"}],"name":"ChangeUpgradeAgent","type":"event"},{"anonymous":false,"inputs":[],"name":"FreezeUpgrade","type":"event"},{"anonymous":false,"inputs":[],"name":"UnfreezeUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"symbol","type":"string"}],"name":"ChangeTokenInformation","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60606040526008805460a060020a60ff0219169055600a805460ff19908116909155600c8054909116600117905534156200003957600080fd5b60008054600160a060020a03191633600160a060020a039081169190911780835516817f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360408051908101604052600481527f514e54550000000000000000000000000000000000000000000000000000000060208201526002908051620000d19291602001906200076a565b5060408051908101604052600a81527f514e545520546f6b656e00000000000000000000000000000000000000000000602082015260019080516200011b9291602001906200076a565b505060038054601260ff19909116179081905560ff16600a0a641bf08eb0008102600b556410c388d0008102600455600560205264011e1a300081027f4f019c3d247b718f648b55e793ac0bbb87f2344cda54394db776c03a874b7e318190557f5ca6a2b187ddef48ad71dfe1a37c9ef4b396c8fcaca7200ecbe59ffefd514b2d8190557f9fdf79b8ca5ac0e886b42d0be78c4c2816f3a565f59bb84932c04c4d15b0b0988190557fce0097f45892f6a4304ce68193f3eeb972b3deaf76529690cb07aad62655dbaa8190557f881343d6548f8afdee70640fa8653661ececa3800ebdcee4cc7acdbc06ad60bd8190557f7dd418dfe799edd3a1873167fd8658b2ccac604becd884dcda29996f6fdf09a78190557fe271ec3aa216b7cba31cb432058e49d381f8576847d23e9628fffecb4763fc108190557f922b94119ee59b8647bd3943ee8e1410c918890fc7d08fe7c59c7aff85fb0ff88190557ec8761b070f6e41586293a047b152cecf52cf1dd9dae968a5f55a850cf98acf8190557357be4b8c57c0bb061e05fdf85843503fba67339460009081527f03cbf1633abc15ec996bdcbf18056af430950811b4577d8406dacd7e03257ec282905573d83ef0076580e595b3be39d654da97184623b9b59160008051602062001e608339815191529060405190815260200160405180910390a373d4e40860b41f666fbc6c3007f3d1434e353063d8600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a37384dd4187a87055495d0c08fe260ca9cc9e02f09e600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3730556620d12c38babd0461e366b433682a5000fae600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3730f363f18f49aa350ba8fcf233cdd155a7b77af99600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3731a38292d3f685cd79bcdfc19fad7447ae762aa4c600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a373b262d04ee29ad9ebacb1ab9da99398916f425d84600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a373d8c2d6f12baf10258eb390be4377e460c1d033e2600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3731ca70fd8433ec97fa0777830a152d028d71b88fa600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a37357be4b8c57c0bb061e05fdf85843503fba673394600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3600560205264011e1a300081027fa8a8a989953b8fa07d2440157162f363d9a9aa25d6a4d0aa21bfa6e52d26da058190557fd22822cc013aa3a3feff105d0f019e77f2e73f79211ca32b7e5339ae86579d0e8190557f2e3d51042bed260b1c1f3b8ea763b748d52aa15db5de846dd16b47d40791305d8190557fcde0ab4735557f31273fcbb74b347c2cd67e07d5526ac1ad0417a91b658d9d76819055736ad8038f53ae2800d45a31d8261b062a0b55d63b60009081527fc20e6a5db28fc335114066e0be73ec6c41264dabd70a13fffb1924fc5f6af99d82905573b6ff15b634571cb56532022fe00f96fee51322b39160008051602062001e608339815191529060405190815260200160405180910390a373631c87278de77902e762ba0ab57d55c10716e0b6600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3737fe443391d9a3eb0c401181c46a44eb6106bba2e600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a37394905c20fa2596fdc7d37bab6dd67b52e2335122600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3736ad8038f53ae2800d45a31d8261b062a0b55d63b600060008051602062001e608339815191528364011e1a30000260405190815260200160405180910390a3506200080f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007ad57805160ff1916838001178555620007dd565b82800160010185558215620007dd579182015b82811115620007dd578251825591602001919060010190620007c0565b50620007eb929150620007ef565b5090565b6200080c91905b80821115620007eb5760008155600101620007f6565b90565b611641806200081f6000396000f3006060604052600436106101715763ffffffff60e060020a60003504166305d2035b811461017657806306fdde031461019d578063095ea7b31461022757806318160ddd1461024957806323b872dd1461026e578063313ce56714610296578063355274ea146102bf5780633c3ad016146102d257806340c10f19146103235780635074449d146103455780635479d940146103585780635de4ccb01461036b578063600440cb1461039a57806366188463146103ad5780636e5320d1146103cf57806370a08231146104625780637d64bcb414610481578063875606a1146104945780638da5cb5b146104a757806395d89b41146104ba578063a104dcd4146104cd578063a9059cbb146104ec578063b662a73c1461050e578063c752ff6214610521578063d445cc7814610534578063d55ec69714610547578063d73dd6231461055a578063dd62ed3e1461057c578063ea56a44d146105a1578063f2fde38b146105c0578063f950db2b146105df575b600080fd5b341561018157600080fd5b6101896105f2565b604051901515815260200160405180910390f35b34156101a857600080fd5b6101b06105fb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ec5780820151838201526020016101d4565b50505050905090810190601f1680156102195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023257600080fd5b610189600160a060020a0360043516602435610699565b341561025457600080fd5b61025c6106be565b60405190815260200160405180910390f35b341561027957600080fd5b610189600160a060020a03600435811690602435166044356106c4565b34156102a157600080fd5b6102a96106eb565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b61025c6106f4565b34156102dd57600080fd5b61032160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496506106fa95505050505050565b005b341561032e57600080fd5b610321600160a060020a03600435166024356107ad565b341561035057600080fd5b610189610807565b341561036357600080fd5b610189610810565b341561037657600080fd5b61037e610820565b604051600160a060020a03909116815260200160405180910390f35b34156103a557600080fd5b61037e61082f565b34156103b857600080fd5b610189600160a060020a036004351660243561083e565b34156103da57600080fd5b61032160046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061085c95505050505050565b341561046d57600080fd5b61025c600160a060020a03600435166109a6565b341561048c57600080fd5b6103216109b8565b341561049f57600080fd5b610321610a1e565b34156104b257600080fd5b61037e610a71565b34156104c557600080fd5b6101b0610a80565b34156104d857600080fd5b610321600160a060020a0360043516610aeb565b34156104f757600080fd5b610189600160a060020a0360043516602435610be4565b341561051957600080fd5b610321610c02565b341561052c57600080fd5b61025c610c69565b341561053f57600080fd5b610321610c6f565b341561055257600080fd5b610321610cc5565b341561056557600080fd5b610189600160a060020a0360043516602435610d13565b341561058757600080fd5b61025c600160a060020a0360043581169060243516610d31565b34156105ac57600080fd5b610321600160a060020a0360043516610d5c565b34156105cb57600080fd5b610321600160a060020a0360043516610df4565b34156105ea57600080fd5b610321610e8f565b600a5460ff1681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b505050505081565b600c5460009060ff1615156106ad57600080fd5b6106b78383610efc565b9392505050565b60045481565b600c5460009060ff1615156106d857600080fd5b6106e3848484610f68565b949350505050565b60035460ff1681565b600b5481565b600754600090819033600160a060020a0390811691161461071a57600080fd5b60085460a060020a900460ff16151561073257600080fd5b5060005b82518110156107a8576005600084838151811061074f57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549150811515610781576107a0565b6107a083828151811061079057fe5b906020019060200201518361109f565b600101610736565b505050565b60005433600160a060020a039081169116146107c857600080fd5b600a5460ff16156107d857600080fd5b600b546004546107ee908363ffffffff6111bf16565b11156107f957600080fd5b61080382826111ce565b5050565b600c5460ff1681565b60085460a060020a900460ff1681565b600854600160a060020a031681565b600754600160a060020a031681565b600c5460009060ff16151561085257600080fd5b6106b783836112cd565b60005433600160a060020a0390811691161461087757600080fd5b600182805161088a92916020019061157a565b50600281805161089e92916020019061157a565b507ff97bb93f16c08265c9826aa07a56cf41728df50b0093d6ad5d0215621bdbf6d08282604051808060200180602001838103835285818151815260200191508051906020019080838360005b838110156109035780820151838201526020016108eb565b50505050905090810190601f1680156109305780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561096657808201518382015260200161094e565b50505050905090810190601f1680156109935780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b60056020526000908152604090205481565b60005433600160a060020a039081169116146109d357600080fd5b600a5460ff16156109e357600080fd5b600a805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a1565b60005433600160a060020a03908116911614610a3957600080fd5b600c805460ff191690557fb4dbbcf33046b7ccb818025ea4914bb345d8025fef300942afe93e9d8b73e6f960405160405180910390a1565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106915780601f1061066657610100808354040283529160200191610691565b60005433600160a060020a03908116911614610b0657600080fd5b60095415610b1357600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610b7e57600080fd5b6102c65a03f11515610b8f57600080fd5b505050604051805190501515610ba457600080fd5b7f9120de04043d2b48750b029e0af279f60251553365aa3fc23ee8d2161ed02bc081604051600160a060020a03909116815260200160405180910390a150565b600c5460009060ff161515610bf857600080fd5b6106b783836113d5565b60005433600160a060020a03908116911614610c1d57600080fd5b6008805474ff0000000000000000000000000000000000000000191690557ff16e551f33451711621830fd6c7873a4d7fb065b97e0f1519599a4559cf5e5a560405160405180910390a1565b60095481565b60005433600160a060020a03908116911614610c8a57600080fd5b600c805460ff191660011790557f6b28a9ea65b0490a70c326753837660974732ce02a120ef66e0a0ee1e91ba51360405160405180910390a1565b60085460009060a060020a900460ff161515610ce057600080fd5b50600160a060020a033316600090815260056020526040812054908111610d0657600080fd5b610d10338261109f565b50565b600c5460009060ff161515610d2757600080fd5b6106b783836114b8565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610d7757600080fd5b600160a060020a0381161515610d8c57600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557f8f3956a45b725a7c48b08fdff733c3b1c95502c2d7537b685557b0279b85381d81604051600160a060020a03909116815260200160405180910390a150565b60005433600160a060020a03908116911614610e0f57600080fd5b600160a060020a0381161515610e2457600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a03908116911614610eaa57600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a1790557f1180ded4e87fc2487b12b01ab13e067f1d4df53b2a226e7aaac784c4d6717dae60405160405180910390a1565b600160a060020a03338116600081815260066020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610f7f57600080fd5b60008211610f8c57600080fd5b600160a060020a038416600090815260056020526040902054610fb5908363ffffffff61156816565b600160a060020a038086166000908152600560205260408082209390935590851681522054610fea908363ffffffff6111bf16565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054611032908363ffffffff61156816565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a0382166000908152600560205260409020546110c8908263ffffffff61156816565b600160a060020a0383166000908152600560205260409020556004546110f4908263ffffffff61156816565b60045560095461110a908263ffffffff6111bf16565b600955600854600160a060020a031663753e88e5838360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561116357600080fd5b6102c65a03f1151561117457600080fd5b5050600854600160a060020a03908116915083167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8360405190815260200160405180910390a35050565b6000828201838110156106b757fe5b60005433600160a060020a039081169116146111e957600080fd5b600a5460ff16156111f957600080fd5b60045461120c908263ffffffff6111bf16565b600455600160a060020a038216600090815260056020526040902054611238908263ffffffff6111bf16565b600160a060020a0383166000818152600560205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859083905190815260200160405180910390a281600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b6000808083116112dc57600080fd5b50600160a060020a033381166000908152600660209081526040808320938716835292905220548083111561133857600160a060020a03338116600090815260066020908152604080832093881683529290529081205561136f565b611348818463ffffffff61156816565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156113ec57600080fd5b600082116113f957600080fd5b600160a060020a033316600090815260056020526040902054611422908363ffffffff61156816565b600160a060020a033381166000908152600560205260408082209390935590851681522054611457908363ffffffff6111bf16565b600160a060020a0380851660008181526005602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60008082116114c657600080fd5b600160a060020a033381166000908152600660209081526040808320938716835292905220546114fc908363ffffffff6111bf16565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561157457fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115bb57805160ff19168380011785556115e8565b828001600101855582156115e8579182015b828111156115e85782518255916020019190600101906115cd565b506115f49291506115f8565b5090565b61161291905b808211156115f457600081556001016115fe565b905600a165627a7a72305820ecae4df89179ce31cd420e427922e89489f57b1c1d4607bba61db270bc6d88d00029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6060604052600436106101715763ffffffff60e060020a60003504166305d2035b811461017657806306fdde031461019d578063095ea7b31461022757806318160ddd1461024957806323b872dd1461026e578063313ce56714610296578063355274ea146102bf5780633c3ad016146102d257806340c10f19146103235780635074449d146103455780635479d940146103585780635de4ccb01461036b578063600440cb1461039a57806366188463146103ad5780636e5320d1146103cf57806370a08231146104625780637d64bcb414610481578063875606a1146104945780638da5cb5b146104a757806395d89b41146104ba578063a104dcd4146104cd578063a9059cbb146104ec578063b662a73c1461050e578063c752ff6214610521578063d445cc7814610534578063d55ec69714610547578063d73dd6231461055a578063dd62ed3e1461057c578063ea56a44d146105a1578063f2fde38b146105c0578063f950db2b146105df575b600080fd5b341561018157600080fd5b6101896105f2565b604051901515815260200160405180910390f35b34156101a857600080fd5b6101b06105fb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ec5780820151838201526020016101d4565b50505050905090810190601f1680156102195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023257600080fd5b610189600160a060020a0360043516602435610699565b341561025457600080fd5b61025c6106be565b60405190815260200160405180910390f35b341561027957600080fd5b610189600160a060020a03600435811690602435166044356106c4565b34156102a157600080fd5b6102a96106eb565b60405160ff909116815260200160405180910390f35b34156102ca57600080fd5b61025c6106f4565b34156102dd57600080fd5b61032160046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437509496506106fa95505050505050565b005b341561032e57600080fd5b610321600160a060020a03600435166024356107ad565b341561035057600080fd5b610189610807565b341561036357600080fd5b610189610810565b341561037657600080fd5b61037e610820565b604051600160a060020a03909116815260200160405180910390f35b34156103a557600080fd5b61037e61082f565b34156103b857600080fd5b610189600160a060020a036004351660243561083e565b34156103da57600080fd5b61032160046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061085c95505050505050565b341561046d57600080fd5b61025c600160a060020a03600435166109a6565b341561048c57600080fd5b6103216109b8565b341561049f57600080fd5b610321610a1e565b34156104b257600080fd5b61037e610a71565b34156104c557600080fd5b6101b0610a80565b34156104d857600080fd5b610321600160a060020a0360043516610aeb565b34156104f757600080fd5b610189600160a060020a0360043516602435610be4565b341561051957600080fd5b610321610c02565b341561052c57600080fd5b61025c610c69565b341561053f57600080fd5b610321610c6f565b341561055257600080fd5b610321610cc5565b341561056557600080fd5b610189600160a060020a0360043516602435610d13565b341561058757600080fd5b61025c600160a060020a0360043581169060243516610d31565b34156105ac57600080fd5b610321600160a060020a0360043516610d5c565b34156105cb57600080fd5b610321600160a060020a0360043516610df4565b34156105ea57600080fd5b610321610e8f565b600a5460ff1681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b505050505081565b600c5460009060ff1615156106ad57600080fd5b6106b78383610efc565b9392505050565b60045481565b600c5460009060ff1615156106d857600080fd5b6106e3848484610f68565b949350505050565b60035460ff1681565b600b5481565b600754600090819033600160a060020a0390811691161461071a57600080fd5b60085460a060020a900460ff16151561073257600080fd5b5060005b82518110156107a8576005600084838151811061074f57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020549150811515610781576107a0565b6107a083828151811061079057fe5b906020019060200201518361109f565b600101610736565b505050565b60005433600160a060020a039081169116146107c857600080fd5b600a5460ff16156107d857600080fd5b600b546004546107ee908363ffffffff6111bf16565b11156107f957600080fd5b61080382826111ce565b5050565b600c5460ff1681565b60085460a060020a900460ff1681565b600854600160a060020a031681565b600754600160a060020a031681565b600c5460009060ff16151561085257600080fd5b6106b783836112cd565b60005433600160a060020a0390811691161461087757600080fd5b600182805161088a92916020019061157a565b50600281805161089e92916020019061157a565b507ff97bb93f16c08265c9826aa07a56cf41728df50b0093d6ad5d0215621bdbf6d08282604051808060200180602001838103835285818151815260200191508051906020019080838360005b838110156109035780820151838201526020016108eb565b50505050905090810190601f1680156109305780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561096657808201518382015260200161094e565b50505050905090810190601f1680156109935780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a15050565b60056020526000908152604090205481565b60005433600160a060020a039081169116146109d357600080fd5b600a5460ff16156109e357600080fd5b600a805460ff191660011790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a1565b60005433600160a060020a03908116911614610a3957600080fd5b600c805460ff191690557fb4dbbcf33046b7ccb818025ea4914bb345d8025fef300942afe93e9d8b73e6f960405160405180910390a1565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106915780601f1061066657610100808354040283529160200191610691565b60005433600160a060020a03908116911614610b0657600080fd5b60095415610b1357600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610b7e57600080fd5b6102c65a03f11515610b8f57600080fd5b505050604051805190501515610ba457600080fd5b7f9120de04043d2b48750b029e0af279f60251553365aa3fc23ee8d2161ed02bc081604051600160a060020a03909116815260200160405180910390a150565b600c5460009060ff161515610bf857600080fd5b6106b783836113d5565b60005433600160a060020a03908116911614610c1d57600080fd5b6008805474ff0000000000000000000000000000000000000000191690557ff16e551f33451711621830fd6c7873a4d7fb065b97e0f1519599a4559cf5e5a560405160405180910390a1565b60095481565b60005433600160a060020a03908116911614610c8a57600080fd5b600c805460ff191660011790557f6b28a9ea65b0490a70c326753837660974732ce02a120ef66e0a0ee1e91ba51360405160405180910390a1565b60085460009060a060020a900460ff161515610ce057600080fd5b50600160a060020a033316600090815260056020526040812054908111610d0657600080fd5b610d10338261109f565b50565b600c5460009060ff161515610d2757600080fd5b6106b783836114b8565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610d7757600080fd5b600160a060020a0381161515610d8c57600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557f8f3956a45b725a7c48b08fdff733c3b1c95502c2d7537b685557b0279b85381d81604051600160a060020a03909116815260200160405180910390a150565b60005433600160a060020a03908116911614610e0f57600080fd5b600160a060020a0381161515610e2457600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a03908116911614610eaa57600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a1790557f1180ded4e87fc2487b12b01ab13e067f1d4df53b2a226e7aaac784c4d6717dae60405160405180910390a1565b600160a060020a03338116600081815260066020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610f7f57600080fd5b60008211610f8c57600080fd5b600160a060020a038416600090815260056020526040902054610fb5908363ffffffff61156816565b600160a060020a038086166000908152600560205260408082209390935590851681522054610fea908363ffffffff6111bf16565b600160a060020a03808516600090815260056020908152604080832094909455878316825260068152838220339093168252919091522054611032908363ffffffff61156816565b600160a060020a03808616600081815260066020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a0382166000908152600560205260409020546110c8908263ffffffff61156816565b600160a060020a0383166000908152600560205260409020556004546110f4908263ffffffff61156816565b60045560095461110a908263ffffffff6111bf16565b600955600854600160a060020a031663753e88e5838360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561116357600080fd5b6102c65a03f1151561117457600080fd5b5050600854600160a060020a03908116915083167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8360405190815260200160405180910390a35050565b6000828201838110156106b757fe5b60005433600160a060020a039081169116146111e957600080fd5b600a5460ff16156111f957600080fd5b60045461120c908263ffffffff6111bf16565b600455600160a060020a038216600090815260056020526040902054611238908263ffffffff6111bf16565b600160a060020a0383166000818152600560205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859083905190815260200160405180910390a281600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b6000808083116112dc57600080fd5b50600160a060020a033381166000908152600660209081526040808320938716835292905220548083111561133857600160a060020a03338116600090815260066020908152604080832093881683529290529081205561136f565b611348818463ffffffff61156816565b600160a060020a033381166000908152600660209081526040808320938916835292905220555b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a03831615156113ec57600080fd5b600082116113f957600080fd5b600160a060020a033316600090815260056020526040902054611422908363ffffffff61156816565b600160a060020a033381166000908152600560205260408082209390935590851681522054611457908363ffffffff6111bf16565b600160a060020a0380851660008181526005602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60008082116114c657600080fd5b600160a060020a033381166000908152600660209081526040808320938716835292905220546114fc908363ffffffff6111bf16565b600160a060020a0333811660008181526006602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60008282111561157457fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115bb57805160ff19168380011785556115e8565b828001600101855582156115e8579182015b828111156115e85782518255916020019190600101906115cd565b506115f49291506115f8565b5090565b61161291905b808211156115f457600081556001016115fe565b905600a165627a7a72305820ecae4df89179ce31cd420e427922e89489f57b1c1d4607bba61db270bc6d88d00029

Swarm Source

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