ETH Price: $2,396.14 (-1.96%)

Token

Global Trading System (GTS)
 

Overview

Max Total Supply

1,000,000,000 GTS

Holders

199

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 GTS

Value
$0.00
0x5b0c2308474482e6fb23cd993d3ae859b34db332
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:
GTS

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-04-01
*/

pragma solidity 0.5.4;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }
}


/**
 * @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.
     */
    constructor () 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 {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}


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() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

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


contract StandardToken {
    using SafeMath for uint256;

    mapping(address => uint256) internal balances;

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

    uint256 public totalSupply;

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

    /**
     * @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) {
        return balances[_owner];
    }

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

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

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _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;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the 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);
        emit Transfer(_from, _to, _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)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint256 _addedValue) public returns(bool) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit 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)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint256 _subtractedValue) public returns(bool) {
        uint256 oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue >= oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function _burn(address account, uint256 value) internal {
        require(account != address(0));
        totalSupply = totalSupply.sub(value);
        balances[account] = balances[account].sub(value);
        emit Transfer(account, address(0), value);
        emit Burn(account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
        // this function needs to emit an event with the updated approval.
        allowed[account][msg.sender] = allowed[account][msg.sender].sub(value);
        _burn(account, value);
    }

}


contract BurnableToken is StandardToken {

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance
     * @param from address The address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}


/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract PausableToken is StandardToken, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseApproval(address spender, uint256 addedValue) public whenNotPaused returns (bool success) {
        return super.increaseApproval(spender, addedValue);
    }

    function decreaseApproval(address spender, uint256 subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseApproval(spender, subtractedValue);
    }
}

contract Token is PausableToken, BurnableToken {
    string public constant name = "Global Trading System"; // name of Token 
    string public constant symbol = "GTS"; // symbol of Token 
    uint8 public constant decimals = 18;

    uint256 internal constant INIT_TOTALSUPPLY = 1000000000; // Total amount of tokens

    constructor() public {
        totalSupply = INIT_TOTALSUPPLY * 10 ** uint256(decimals);
        balances[msg.sender] = totalSupply;
    }
}

/**
 * @dev Interface of Pair contract
 */
interface PairContract {
    function tokenFallback(address _from, uint256 _value, bytes calldata _data) external;
    function transfer(address _to, uint256 _value) external returns (bool);
    function decimals() external returns (uint8);
}

contract GTS is Token {
    // The address of Pair contract
    PairContract public pairInstance;
    /// @notice revoking rate precise
    /// @notice for example: RATE_PRECISE is 3, meaning that the revoking fee ratio is 3/10000
    uint public rate = 10000;  // default rate is 1:1
    uint public constant RATE_PRECISE = 10000;

    // events
    event ExchangePair(address indexed from, uint256 value);
    event SetPairContract(address PairToken);
    event RateChanged(uint256 previousOwner,uint256 newRate);

    /**
     * @dev Throws if called by any account other than the Pair contract
     */
    modifier onlyPairContract() {
        require(msg.sender == address(pairInstance));
        _;
    }

    /**
     * @dev Sets the address of pair contract
     */
    function setPairContract(address pairAddress) public onlyOwner {
        require(pairAddress != address(0));
        pairInstance = PairContract(pairAddress);
        emit SetPairContract(pairAddress);
    }

    /**
     * @dev Function Set the exchange rate of pair token.
     * for example: RATE_PRECISE is 300, means that the rate is 300/10000: 1 PT = 0.003 GTS
     * for example: RATE_PRECISE is 30000, means that the rate is 30000/10000: 1 PT = 3 GTS
     */
     function setRate(uint256 _newRate) public onlyOwner {
        require(_newRate > 0);
        emit RateChanged(rate,_newRate);
        rate = _newRate;
     }

    /**
     * @dev Transfers token to a specified address.
     *      If the target address of transferring is Pair contract, the operation of changing Pair tokens will be executed.
     * @param to The target address of transfer, which may be the  contract
     * @param value The amount of tokens transferred
     */
    function transfer(address to, uint value) public returns (bool) {
        super.transfer(to, value); // Transfers tokens to address 'to'
        if(to == address(pairInstance)) {
            pairInstance.tokenFallback(msg.sender, value, bytes("")); // Calls 'tokenFallback' function in Pair contract to exchange tokens
            emit ExchangePair(msg.sender, value);
        }
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     *      If the target address of transferring is  Pair contract, the operation of changing Pair tokens will be executed.
     * @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) {
        super.transferFrom(from, to, value); // Transfers token to address 'to'
        if(to == address(pairInstance)) {
            pairInstance.tokenFallback(from, value, bytes("")); // Calls 'tokenFallback' function in Pair contract to exchange tokens
            emit ExchangePair(from, value);
        }
        return true;
    }

    /**
     * @dev Function that is called by the Pair contract to exchange 'GTS' tokens
     */
    function tokenFallback(address from, uint256 value, bytes calldata) external onlyPairContract {
        require(from != address(0));
        require(value != uint256(0));
        require(pairInstance.transfer(owner,value)); // Transfers Pair tokens belonging to this contract to 'owner'
        uint256 GTSValue = value.mul(10**uint256(decimals)).mul(rate).div(RATE_PRECISE).div(10**uint256(pairInstance.decimals())); // Calculates the number of 'GTS' tokens that can be exchanged
        require(GTSValue <= balances[owner]);
        balances[owner] = balances[owner].sub(GTSValue);
        balances[from] = balances[from].add(GTSValue); 
        emit Transfer(owner, from, GTSValue);
    }
    
    /**
     * @dev Function that is used to withdraw the 'Pair' tokens in this contract
     */
    function withdrawToken(uint256 value) public onlyOwner {
        require(pairInstance.transfer(owner,value));
    }    
}

Contract Security Audit

Contract ABI

[{"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":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newRate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RATE_PRECISE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pairInstance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"value","type":"uint256"}],"name":"withdrawToken","outputs":[],"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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"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":"","type":"string"}],"payable":false,"stateMutability":"view","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":"pairAddress","type":"address"}],"name":"setPairContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"},{"name":"","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","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":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"ExchangePair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"PairToken","type":"address"}],"name":"SetPairContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousOwner","type":"uint256"},{"indexed":false,"name":"newRate","type":"uint256"}],"name":"RateChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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":"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":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"vaule","type":"uint256"}],"name":"Approval","type":"event"}]

6080604090815260038054612710600555600160a860020a031916339081179091556b033b2e3c9fd0803ce8000000600281905560009182526020829052919020556115e8806100506000396000f3fe608060405234801561001057600080fd5b5060043610610190576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116100fb57806395d89b41116100b4578063c0ee0b8a1161008e578063c0ee0b8a14610445578063d73dd623146104ca578063dd62ed3e146104f6578063f2fde38b1461052457610190565b806395d89b41146103eb578063a9059cbb146103f3578063bac9807d1461041f57610190565b80635c975abb14610355578063661884631461035d57806370a082311461038957806379cc6790146103af5780638456cb59146103db5780638da5cb5b146103e357610190565b806334fcf4371161014d57806334fcf437146102c857806336c5d008146102e757806337716ebb146102ef5780633f4ba83a1461031357806342966c681461031b57806350baa6221461033857610190565b806306fdde0314610195578063095ea7b31461021257806318160ddd1461025257806323b872dd1461026c5780632c4e722e146102a2578063313ce567146102aa575b600080fd5b61019d61054a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d75781810151838201526020016101bf565b50505050905090810190601f1680156102045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023e6004803603604081101561022857600080fd5b50600160a060020a038135169060200135610581565b604080519115158252519081900360200190f35b61025a6105ae565b60408051918252519081900360200190f35b61023e6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105b4565b61025a610726565b6102b261072c565b6040805160ff9092168252519081900360200190f35b6102e5600480360360208110156102de57600080fd5b5035610731565b005b61025a610797565b6102f761079d565b60408051600160a060020a039092168252519081900360200190f35b6102e56107ac565b6102e56004803603602081101561033157600080fd5b5035610824565b6102e56004803603602081101561034e57600080fd5b5035610831565b61023e6108f1565b61023e6004803603604081101561037357600080fd5b50600160a060020a038135169060200135610901565b61025a6004803603602081101561039f57600080fd5b5035600160a060020a0316610925565b6102e5600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610940565b6102e561094e565b6102f76109cb565b61019d6109da565b61023e6004803603604081101561040957600080fd5b50600160a060020a038135169060200135610a11565b6102e56004803603602081101561043557600080fd5b5035600160a060020a0316610b75565b6102e56004803603606081101561045b57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561048b57600080fd5b82018360208201111561049d57600080fd5b803590602001918460018302840111640100000000831117156104bf57600080fd5b509092509050610c02565b61023e600480360360408110156104e057600080fd5b50600160a060020a038135169060200135610e8e565b61025a6004803603604081101561050c57600080fd5b50600160a060020a0381358116916020013516610eb2565b6102e56004803603602081101561053a57600080fd5b5035600160a060020a0316610edd565b60408051808201909152601581527f476c6f62616c2054726164696e672053797374656d0000000000000000000000602082015281565b60035460009060a060020a900460ff161561059b57600080fd5b6105a58383610efd565b90505b92915050565b60025481565b60006105c1848484610f63565b50600454600160a060020a038481169116141561071c57600480546040805160208101808352600080835292517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600160a060020a038a811696820196875260248201899052606060448301908152845160648401528451919096169663c0ee0b8a968c968b96959294919360849092019291908190849084905b8381101561067657818101518382015260200161065e565b50505050905090810190601f1680156106a35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156106c457600080fd5b505af11580156106d8573d6000803e3d6000fd5b5050604080518581529051600160a060020a03881693507f99cb6dc47c170e4b5f1b96500c0618c78496baace933c2b880a75d3a9d6d1ea492509081900360200190a25b5060019392505050565b60055481565b601281565b600354600160a060020a0316331461074857600080fd5b6000811161075557600080fd5b600554604080519182526020820183905280517f4ac9052a820bf4f8c02d7588587cae835573b5b99ea7ad4ca002f17f319f71869281900390910190a1600555565b61271081565b600454600160a060020a031681565b600354600160a060020a031633146107c357600080fd5b60035460a060020a900460ff1615156107db57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61082e3382610f90565b50565b600354600160a060020a0316331461084857600080fd5b60048054600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831694810194909452602484018590525191169163a9059cbb9160448083019260209291908290030181600087803b1580156108ba57600080fd5b505af11580156108ce573d6000803e3d6000fd5b505050506040513d60208110156108e457600080fd5b5051151561082e57600080fd5b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561091b57600080fd5b6105a58383611066565b600160a060020a031660009081526020819052604090205490565b61094a8282611155565b5050565b600354600160a060020a0316331461096557600080fd5b60035460a060020a900460ff161561097c57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4754530000000000000000000000000000000000000000000000000000000000602082015281565b6000610a1d83836111b7565b50600454600160a060020a0384811691161415610b6c57600480546040805160208101808352600080835292517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523395810186815260248201899052606060448301908152845160648401528451600160a060020a039097169763c0ee0b8a9790968b96959394929360849093019291908190849084905b83811015610acf578181015183820152602001610ab7565b50505050905090810190601f168015610afc5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610b1d57600080fd5b505af1158015610b31573d6000803e3d6000fd5b50506040805185815290513393507f99cb6dc47c170e4b5f1b96500c0618c78496baace933c2b880a75d3a9d6d1ea492509081900360200190a25b50600192915050565b600354600160a060020a03163314610b8c57600080fd5b600160a060020a0381161515610ba157600080fd5b60048054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f98628ed731afe1f27aa03919f7463d2e4d3462fc8d31776e7d0ece091a2977209181900360200190a150565b600454600160a060020a03163314610c1957600080fd5b600160a060020a0384161515610c2e57600080fd5b821515610c3a57600080fd5b60048054600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831694810194909452602484018790525191169163a9059cbb9160448083019260209291908290030181600087803b158015610cac57600080fd5b505af1158015610cc0573d6000803e3d6000fd5b505050506040513d6020811015610cd657600080fd5b50511515610ce357600080fd5b60048054604080517f313ce5670000000000000000000000000000000000000000000000000000000081529051600093610db593600160a060020a03169263313ce567928183019260209282900301818887803b158015610d4357600080fd5b505af1158015610d57573d6000803e3d6000fd5b505050506040513d6020811015610d6d57600080fd5b505160055460ff909116600a0a90610da990612710908290610d9d8a670de0b6b3a764000063ffffffff6111db16565b9063ffffffff6111db16565b9063ffffffff61120616565b600354600160a060020a0316600090815260208190526040902054909150811115610ddf57600080fd5b600354600160a060020a0316600090815260208190526040902054610e0a908263ffffffff61122a16565b600354600160a060020a039081166000908152602081905260408082209390935590871681522054610e42908263ffffffff61123f16565b600160a060020a03808716600081815260208181526040918290209490945560035481518681529151929493169260008051602061159d83398151915292918290030190a35050505050565b60035460009060a060020a900460ff1615610ea857600080fd5b6105a58383611251565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ef457600080fd5b61082e816112ea565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f7d57600080fd5b610f88848484611368565b949350505050565b600160a060020a0382161515610fa557600080fd5b600254610fb8908263ffffffff61122a16565b600255600160a060020a038216600090815260208190526040902054610fe4908263ffffffff61122a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351919360008051602061159d833981519152929081900390910190a3604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b336000908152600160209081526040808320600160a060020a03861684529091528120548083106110ba57336000908152600160209081526040808320600160a060020a03881684529091528120556110ef565b6110ca818463ffffffff61122a16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a0382166000908152600160209081526040808320338452909152902054611189908263ffffffff61122a16565b600160a060020a038316600090815260016020908152604080832033845290915290205561094a8282610f90565b60035460009060a060020a900460ff16156111d157600080fd5b6105a583836114cd565b60008215156111ec575060006105a8565b8282028284828115156111fb57fe5b04146105a557600080fd5b600080821161121457600080fd5b6000828481151561122157fe5b04949350505050565b60008282111561123957600080fd5b50900390565b6000828201838110156105a557600080fd5b336000908152600160209081526040808320600160a060020a0386168452909152812054611285908363ffffffff61123f16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156112ff57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316151561137f57600080fd5b600160a060020a0384166000908152602081905260409020548211156113a457600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156113d457600080fd5b600160a060020a0384166000908152602081905260409020546113fd908363ffffffff61122a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611432908363ffffffff61123f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611474908363ffffffff61122a16565b600160a060020a038086166000818152600160209081526040808320338452825291829020949094558051868152905192871693919260008051602061159d833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156114e457600080fd5b3360009081526020819052604090205482111561150057600080fd5b33600090815260208190526040902054611520908363ffffffff61122a16565b3360009081526020819052604080822092909255600160a060020a03851681522054611552908363ffffffff61123f16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061159d8339815191529281900390910190a35060019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e7147acad46e5ef8f59c87395d7608cee23ba228a78aa7773b3e1908535312f70029

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610190576000357c0100000000000000000000000000000000000000000000000000000000900480635c975abb116100fb57806395d89b41116100b4578063c0ee0b8a1161008e578063c0ee0b8a14610445578063d73dd623146104ca578063dd62ed3e146104f6578063f2fde38b1461052457610190565b806395d89b41146103eb578063a9059cbb146103f3578063bac9807d1461041f57610190565b80635c975abb14610355578063661884631461035d57806370a082311461038957806379cc6790146103af5780638456cb59146103db5780638da5cb5b146103e357610190565b806334fcf4371161014d57806334fcf437146102c857806336c5d008146102e757806337716ebb146102ef5780633f4ba83a1461031357806342966c681461031b57806350baa6221461033857610190565b806306fdde0314610195578063095ea7b31461021257806318160ddd1461025257806323b872dd1461026c5780632c4e722e146102a2578063313ce567146102aa575b600080fd5b61019d61054a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d75781810151838201526020016101bf565b50505050905090810190601f1680156102045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023e6004803603604081101561022857600080fd5b50600160a060020a038135169060200135610581565b604080519115158252519081900360200190f35b61025a6105ae565b60408051918252519081900360200190f35b61023e6004803603606081101561028257600080fd5b50600160a060020a038135811691602081013590911690604001356105b4565b61025a610726565b6102b261072c565b6040805160ff9092168252519081900360200190f35b6102e5600480360360208110156102de57600080fd5b5035610731565b005b61025a610797565b6102f761079d565b60408051600160a060020a039092168252519081900360200190f35b6102e56107ac565b6102e56004803603602081101561033157600080fd5b5035610824565b6102e56004803603602081101561034e57600080fd5b5035610831565b61023e6108f1565b61023e6004803603604081101561037357600080fd5b50600160a060020a038135169060200135610901565b61025a6004803603602081101561039f57600080fd5b5035600160a060020a0316610925565b6102e5600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610940565b6102e561094e565b6102f76109cb565b61019d6109da565b61023e6004803603604081101561040957600080fd5b50600160a060020a038135169060200135610a11565b6102e56004803603602081101561043557600080fd5b5035600160a060020a0316610b75565b6102e56004803603606081101561045b57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561048b57600080fd5b82018360208201111561049d57600080fd5b803590602001918460018302840111640100000000831117156104bf57600080fd5b509092509050610c02565b61023e600480360360408110156104e057600080fd5b50600160a060020a038135169060200135610e8e565b61025a6004803603604081101561050c57600080fd5b50600160a060020a0381358116916020013516610eb2565b6102e56004803603602081101561053a57600080fd5b5035600160a060020a0316610edd565b60408051808201909152601581527f476c6f62616c2054726164696e672053797374656d0000000000000000000000602082015281565b60035460009060a060020a900460ff161561059b57600080fd5b6105a58383610efd565b90505b92915050565b60025481565b60006105c1848484610f63565b50600454600160a060020a038481169116141561071c57600480546040805160208101808352600080835292517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600160a060020a038a811696820196875260248201899052606060448301908152845160648401528451919096169663c0ee0b8a968c968b96959294919360849092019291908190849084905b8381101561067657818101518382015260200161065e565b50505050905090810190601f1680156106a35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156106c457600080fd5b505af11580156106d8573d6000803e3d6000fd5b5050604080518581529051600160a060020a03881693507f99cb6dc47c170e4b5f1b96500c0618c78496baace933c2b880a75d3a9d6d1ea492509081900360200190a25b5060019392505050565b60055481565b601281565b600354600160a060020a0316331461074857600080fd5b6000811161075557600080fd5b600554604080519182526020820183905280517f4ac9052a820bf4f8c02d7588587cae835573b5b99ea7ad4ca002f17f319f71869281900390910190a1600555565b61271081565b600454600160a060020a031681565b600354600160a060020a031633146107c357600080fd5b60035460a060020a900460ff1615156107db57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61082e3382610f90565b50565b600354600160a060020a0316331461084857600080fd5b60048054600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831694810194909452602484018590525191169163a9059cbb9160448083019260209291908290030181600087803b1580156108ba57600080fd5b505af11580156108ce573d6000803e3d6000fd5b505050506040513d60208110156108e457600080fd5b5051151561082e57600080fd5b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561091b57600080fd5b6105a58383611066565b600160a060020a031660009081526020819052604090205490565b61094a8282611155565b5050565b600354600160a060020a0316331461096557600080fd5b60035460a060020a900460ff161561097c57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4754530000000000000000000000000000000000000000000000000000000000602082015281565b6000610a1d83836111b7565b50600454600160a060020a0384811691161415610b6c57600480546040805160208101808352600080835292517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523395810186815260248201899052606060448301908152845160648401528451600160a060020a039097169763c0ee0b8a9790968b96959394929360849093019291908190849084905b83811015610acf578181015183820152602001610ab7565b50505050905090810190601f168015610afc5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610b1d57600080fd5b505af1158015610b31573d6000803e3d6000fd5b50506040805185815290513393507f99cb6dc47c170e4b5f1b96500c0618c78496baace933c2b880a75d3a9d6d1ea492509081900360200190a25b50600192915050565b600354600160a060020a03163314610b8c57600080fd5b600160a060020a0381161515610ba157600080fd5b60048054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f98628ed731afe1f27aa03919f7463d2e4d3462fc8d31776e7d0ece091a2977209181900360200190a150565b600454600160a060020a03163314610c1957600080fd5b600160a060020a0384161515610c2e57600080fd5b821515610c3a57600080fd5b60048054600354604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831694810194909452602484018790525191169163a9059cbb9160448083019260209291908290030181600087803b158015610cac57600080fd5b505af1158015610cc0573d6000803e3d6000fd5b505050506040513d6020811015610cd657600080fd5b50511515610ce357600080fd5b60048054604080517f313ce5670000000000000000000000000000000000000000000000000000000081529051600093610db593600160a060020a03169263313ce567928183019260209282900301818887803b158015610d4357600080fd5b505af1158015610d57573d6000803e3d6000fd5b505050506040513d6020811015610d6d57600080fd5b505160055460ff909116600a0a90610da990612710908290610d9d8a670de0b6b3a764000063ffffffff6111db16565b9063ffffffff6111db16565b9063ffffffff61120616565b600354600160a060020a0316600090815260208190526040902054909150811115610ddf57600080fd5b600354600160a060020a0316600090815260208190526040902054610e0a908263ffffffff61122a16565b600354600160a060020a039081166000908152602081905260408082209390935590871681522054610e42908263ffffffff61123f16565b600160a060020a03808716600081815260208181526040918290209490945560035481518681529151929493169260008051602061159d83398151915292918290030190a35050505050565b60035460009060a060020a900460ff1615610ea857600080fd5b6105a58383611251565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600354600160a060020a03163314610ef457600080fd5b61082e816112ea565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610f7d57600080fd5b610f88848484611368565b949350505050565b600160a060020a0382161515610fa557600080fd5b600254610fb8908263ffffffff61122a16565b600255600160a060020a038216600090815260208190526040902054610fe4908263ffffffff61122a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351919360008051602061159d833981519152929081900390910190a3604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b336000908152600160209081526040808320600160a060020a03861684529091528120548083106110ba57336000908152600160209081526040808320600160a060020a03881684529091528120556110ef565b6110ca818463ffffffff61122a16565b336000908152600160209081526040808320600160a060020a03891684529091529020555b336000818152600160209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a0382166000908152600160209081526040808320338452909152902054611189908263ffffffff61122a16565b600160a060020a038316600090815260016020908152604080832033845290915290205561094a8282610f90565b60035460009060a060020a900460ff16156111d157600080fd5b6105a583836114cd565b60008215156111ec575060006105a8565b8282028284828115156111fb57fe5b04146105a557600080fd5b600080821161121457600080fd5b6000828481151561122157fe5b04949350505050565b60008282111561123957600080fd5b50900390565b6000828201838110156105a557600080fd5b336000908152600160209081526040808320600160a060020a0386168452909152812054611285908363ffffffff61123f16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156112ff57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316151561137f57600080fd5b600160a060020a0384166000908152602081905260409020548211156113a457600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020548211156113d457600080fd5b600160a060020a0384166000908152602081905260409020546113fd908363ffffffff61122a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054611432908363ffffffff61123f16565b600160a060020a03808516600090815260208181526040808320949094559187168152600182528281203382529091522054611474908363ffffffff61122a16565b600160a060020a038086166000818152600160209081526040808320338452825291829020949094558051868152905192871693919260008051602061159d833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156114e457600080fd5b3360009081526020819052604090205482111561150057600080fd5b33600090815260208190526040902054611520908363ffffffff61122a16565b3360009081526020819052604080822092909255600160a060020a03851681522054611552908363ffffffff61123f16565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061159d8339815191529281900390910190a35060019291505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820e7147acad46e5ef8f59c87395d7608cee23ba228a78aa7773b3e1908535312f70029

Swarm Source

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