ETH Price: $3,453.58 (-0.75%)
Gas: 3 Gwei

Token

IQONIQ (IQQ)
 

Overview

Max Total Supply

2,500,000,000 IQQ

Holders

5,994 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,512 IQQ

Value
$0.00
0x5a0Cf222a59f5bCC69240732d82cbF1FD821b126
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

IQONIQ is a new fan engagement platform that exclusively targets the sports & entertainment world. Providing a game changing solution for fans, while enabling sport clubs to monetize the value of their global fragmented fan base, IQONIQ includes a digital sports-focused marketplace & NFT platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IQONIQ

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-10
*/

pragma solidity ^0.4.23;

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    function totalSupply() public view returns (uint256);

    function balanceOf(address who) public view returns (uint256);

    function transfer(address to, uint256 value) public returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
     * @dev Multiplies two numbers, throws on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting '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;
        }

        c = a * b;
        assert(c / a == b);
        return c;
    }

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

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

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

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

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
     * @dev total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

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

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender)
        public
        view
        returns (uint256);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public returns (bool);

    function approve(address spender, uint256 value) public returns (bool);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {
    mapping(address => mapping(address => uint256)) internal allowed;

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    ) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

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

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

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

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

/**
 * @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 OwnershipRenounced(address indexed previousOwner);
    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 relinquish control of the contract.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipRenounced(owner);
        owner = address(0);
    }

    /**
     * @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 FreezableToken is StandardToken {
    // freezing chains
    mapping(bytes32 => uint64) internal chains;
    // freezing amounts for each chain
    mapping(bytes32 => uint256) internal freezings;
    // total freezing balance per address
    mapping(address => uint256) internal freezingBalance;

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

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

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

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

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

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

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

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

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

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

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

        uint64 next = chains[currentKey];

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

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

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

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

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

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

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

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

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

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

        if (_until == next) {
            return;
        }

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

        chains[parentKey] = _until;
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {
    event Burn(address indexed burner, uint256 value);

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

    function _burn(address _who, uint256 _value) internal {
        require(_value <= balances[_who]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        balances[_who] = balances[_who].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(_who, _value);
        emit Transfer(_who, address(0), _value);
    }
}

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

    bool public paused = false;

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

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

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() 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 Consts {
    uint256 public constant TOKEN_DECIMALS = 18;
    uint8 public constant TOKEN_DECIMALS_UINT8 = 18;
    uint256 public constant TOKEN_DECIMAL_MULTIPLIER = 10**TOKEN_DECIMALS;

    string public constant TOKEN_NAME = "IQONIQ";
    string public constant TOKEN_SYMBOL = "IQQ";
    bool public constant PAUSED = false;
    address public constant TARGET_USER =
        0x6d1DAEA80bCce8423A0Fc703c3B48A8909E226Cd;
}

contract IQONIQ is Consts, FreezableToken, BurnableToken, Pausable {
    event Initialized();
    bool public initialized = false;

    constructor() public {
        init();
        transferOwnership(TARGET_USER);
    }

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

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

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

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

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

    function init() private {
        require(!initialized);
        initialized = true;

        if (PAUSED) {
            pause();
        }

        address[1] memory addresses =
            [address(0x88949d221A62EdAF3dE7407F488C921EcD56031f)];
        uint256[1] memory amounts = [uint256(2500000000000000000000000000)];
        uint64[1] memory freezes = [uint64(0)];

        for (uint256 i = 0; i < addresses.length; i++) {
            if (freezes[i] == 0) {
                totalSupply_ = totalSupply_.add(amounts[i]);
                balances[addresses[i]] = balances[addresses[i]].add(amounts[i]);
            } else {
                totalSupply_ = totalSupply_.add(amounts[i]);

                bytes32 currentKey = toKey(addresses[i], freezes[i]);
                freezings[currentKey] = freezings[currentKey].add(amounts[i]);
                freezingBalance[addresses[i]] = freezingBalance[addresses[i]].add(amounts[i]);

                freeze(addresses[i], freezes[i]);
            }
        }

        emit Initialized();
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PAUSED","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Initialized","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"}],"name":"OwnershipRenounced","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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526006805460a060020a61ffff02191690553480156200002257600080fd5b5060068054600160a060020a031916331790556200004864010000000062000076810204565b62000070736d1daea80bcce8423a0fc703c3b48a8909e226cd640100000000620003b9810204565b62000688565b6200008062000669565b6200008a62000669565b6200009462000669565b60065460009081907501000000000000000000000000000000000000000000900460ff1615620000c357600080fd5b6006805460a860020a60ff021916750100000000000000000000000000000000000000000017905560408051602081810183527388949d221a62edaf3de7407f488c921ecd56031f8252825180820184526b0813f3978f8940984400000081528351918201909352600080825291975091955090935091505b600182101562000389578282600181106200015357fe5b60200201516001604060020a031615156200024457620001968483600181106200017957fe5b60200201516001549064010000000062001226620003e882021704565b60019081556200020590859084908110620001ad57fe5b6020020151600080888660018110620001c257fe5b6020020151600160a060020a0316600160a060020a0316815260200190815260200160002054620003e86401000000000262001226179091906401000000009004565b6000808785600181106200021557fe5b6020020151600160a060020a0316600160a060020a03168152602001908152602001600020819055506200037d565b620002558483600181106200017957fe5b60019081556200029b908690849081106200026c57fe5b60200201518484600181106200027e57fe5b60200201516001604060020a0316640100000000620003fc810204565b9050620002dd848360018110620002ae57fe5b60209081029190910151600084815260049092526040909120549064010000000062001226620003e882021704565b60008281526004602052604090205562000313848360018110620002fd57fe5b602002015160056000888660018110620001c257fe5b600560008785600181106200032457fe5b60209081029190910151600160a060020a03168252810191909152604001600020556200037d8583600181106200035757fe5b60200201518484600181106200036957fe5b602002015164010000000062000439810204565b6001909101906200013c565b6040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a15050505050565b600654600160a060020a03163314620003d157600080fd5b620003e581640100000000620005f7810204565b50565b81810182811015620003f657fe5b92915050565b6001604060020a03166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b600080808080426001604060020a038716116200045557600080fd5b62000473876001604060020a038816640100000000620003fc810204565b94506200048b876000640100000000620003fc810204565b6000818152600360205260409020549094506001604060020a03169250821515620004dd57600084815260036020526040902080546001604060020a0319166001604060020a038816179055620005ee565b620004fb876001604060020a038516640100000000620003fc810204565b91505b6001604060020a03831615801590620005285750826001604060020a0316866001604060020a0316115b156200056d57506000818152600360205260409020549092506001604060020a0390811691839116620005658784640100000000620003fc810204565b9150620004fe565b826001604060020a0316866001604060020a031614156200058e57620005ee565b6001604060020a03831615620005c657600085815260036020526040902080546001604060020a0319166001604060020a0385161790555b600084815260036020526040902080546001604060020a0319166001604060020a0388161790555b50505050505050565b600160a060020a03811615156200060d57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b6020604051908101604052806001906020820280388339509192915050565b61165580620006986000396000f3006080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d6f73081146101a557806306fdde03146101ed578063095ea7b314610277578063158ef93e146102af57806317a950ac146102c457806318160ddd146102f7578063188214001461030c57806323b872dd146103215780632a9053181461034b578063313ce567146103605780633be1e9521461038b5780633f4ba83a146103be57806342966c68146103d357806356780085146103eb5780635b7f415c146104005780635be7fde8146104155780635c975abb1461042a578063661884631461043f57806366a92cda1461046357806370a0823114610478578063715018a614610499578063726a431a146104ae5780638456cb59146104df5780638da5cb5b146104f457806395d89b4114610509578063a9059cbb1461051e578063a9aad58c14610542578063ca63b5b814610557578063cf3b196714610578578063d73dd6231461058d578063d8aeedf5146105b1578063dd62ed3e146105d2578063f2fde38b146105f9575b600080fd5b3480156101b157600080fd5b506101c9600160a060020a036004351660243561061a565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b3480156101f957600080fd5b506102026106a7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023c578181015183820152602001610224565b50505050905090810190601f1680156102695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028357600080fd5b5061029b600160a060020a03600435166024356106de565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b5061029b610744565b3480156102d057600080fd5b506102e5600160a060020a0360043516610766565b60408051918252519081900360200190f35b34801561030357600080fd5b506102e5610777565b34801561031857600080fd5b5061020261077d565b34801561032d57600080fd5b5061029b600160a060020a03600435811690602435166044356107b4565b34801561035757600080fd5b506102026107e1565b34801561036c57600080fd5b50610375610818565b6040805160ff9092168252519081900360200190f35b34801561039757600080fd5b506103bc600160a060020a036004351660243567ffffffffffffffff6044351661081d565b005b3480156103ca57600080fd5b506103bc610991565b3480156103df57600080fd5b506103bc600435610a09565b3480156103f757600080fd5b506102e5610a16565b34801561040c57600080fd5b506102e5610a22565b34801561042157600080fd5b506102e5610a27565b34801561043657600080fd5b5061029b610a8c565b34801561044b57600080fd5b5061029b600160a060020a0360043516602435610a9c565b34801561046f57600080fd5b506103bc610b8c565b34801561048457600080fd5b506102e5600160a060020a0360043516610d2f565b3480156104a557600080fd5b506103bc610d58565b3480156104ba57600080fd5b506104c3610dc6565b60408051600160a060020a039092168252519081900360200190f35b3480156104eb57600080fd5b506103bc610dde565b34801561050057600080fd5b506104c3610e5b565b34801561051557600080fd5b50610202610e6a565b34801561052a57600080fd5b5061029b600160a060020a0360043516602435610ea1565b34801561054e57600080fd5b5061029b610ecc565b34801561056357600080fd5b506102e5600160a060020a0360043516610ed1565b34801561058457600080fd5b50610375610a22565b34801561059957600080fd5b5061029b600160a060020a0360043516602435610f57565b3480156105bd57600080fd5b506102e5600160a060020a0360043516610ff0565b3480156105de57600080fd5b506102e5600160a060020a036004358116906024351661100b565b34801561060557600080fd5b506103bc600160a060020a0360043516611036565b600080805b836001018110156106735760036000610642878667ffffffffffffffff16611056565b815260208101919091526040016000205467ffffffffffffffff16925082151561066b5761069f565b60010161061f565b6004600061068b878667ffffffffffffffff16611056565b815260208101919091526040016000205491505b509250929050565b60408051808201909152600681527f49514f4e49510000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006547501000000000000000000000000000000000000000000900460ff1681565b600061077182611094565b92915050565b60015490565b60408051808201909152600681527f49514f4e49510000000000000000000000000000000000000000000000000000602082015281565b60065460009060a060020a900460ff16156107ce57600080fd5b6107d98484846110af565b949350505050565b60408051808201909152600381527f4951510000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a038416151561083457600080fd5b3360009081526020819052604090205483111561085057600080fd5b33600090815260208190526040902054610870908463ffffffff61121416565b336000908152602081905260409020556108948467ffffffffffffffff8416611056565b6000818152600460205260409020549091506108b6908463ffffffff61122616565b600082815260046020908152604080832093909355600160a060020a03871682526005905220546108ed908463ffffffff61122616565b600160a060020a0385166000908152600560205260409020556109108483611233565b604080518481529051600160a060020a03861691339160008051602061160a8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a031633146109a857600080fd5b60065460a060020a900460ff1615156109c057600080fd5b6006805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610a1333826113cd565b50565b670de0b6b3a764000081565b601281565b6000806000610a3733600061061a565b67ffffffffffffffff909116925090505b8115801590610a5657508142115b15610a8757610a63610b8c565b91820191610a7233600061061a565b67ffffffffffffffff90911692509050610a48565b505090565b60065460a060020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610af157336000908152600260209081526040808320600160a060020a0388168452909152812055610b26565b610b01818463ffffffff61121416565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610b9f336000611056565b60008181526003602052604090205490955067ffffffffffffffff169350831515610bc957600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610beb57600080fd5b610bff338567ffffffffffffffff16611056565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610c4b908263ffffffff61122616565b3360009081526020818152604080832093909355600590522054610c75908263ffffffff61121416565b3360009081526005602052604090205567ffffffffffffffff82161515610cb8576000858152600360205260409020805467ffffffffffffffff19169055610cf2565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a038116600090815260056020526040812054610d5183611094565b0192915050565b600654600160a060020a03163314610d6f57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b736d1daea80bcce8423a0fc703c3b48a8909e226cd81565b600654600160a060020a03163314610df557600080fd5b60065460a060020a900460ff1615610e0c57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4951510000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a060020a900460ff1615610ebb57600080fd5b610ec583836114bc565b9392505050565b600081565b60008060036000610ee3856000611056565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff811615610f515760019091019060036000610f2f8567ffffffffffffffff8516611056565b815260208101919091526040016000205467ffffffffffffffff169050610f01565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f8b908363ffffffff61122616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461104d57600080fd5b610a138161158b565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156110c657600080fd5b600160a060020a0384166000908152602081905260409020548211156110eb57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561111b57600080fd5b600160a060020a038416600090815260208190526040902054611144908363ffffffff61121416565b600160a060020a038086166000908152602081905260408082209390935590851681522054611179908363ffffffff61122616565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546111bb908363ffffffff61121416565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061160a833981519152929181900390910190a35060019392505050565b60008282111561122057fe5b50900390565b8181018281101561077157fe5b6000808080804267ffffffffffffffff87161161124f57600080fd5b611263878767ffffffffffffffff16611056565b9450611270876000611056565b60008181526003602052604090205490945067ffffffffffffffff1692508215156112c3576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556113c4565b6112d7878467ffffffffffffffff16611056565b91505b67ffffffffffffffff83161580159061130657508267ffffffffffffffff168667ffffffffffffffff16115b1561133f575060008181526003602052604090205490925067ffffffffffffffff908116918391166113388784611056565b91506112da565b8267ffffffffffffffff168667ffffffffffffffff161415611360576113c4565b67ffffffffffffffff83161561139a576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a0382166000908152602081905260409020548111156113f257600080fd5b600160a060020a03821660009081526020819052604090205461141b908263ffffffff61121416565b600160a060020a038316600090815260208190526040902055600154611447908263ffffffff61121416565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061160a8339815191529181900360200190a35050565b6000600160a060020a03831615156114d357600080fd5b336000908152602081905260409020548211156114ef57600080fd5b3360009081526020819052604090205461150f908363ffffffff61121416565b3360009081526020819052604080822092909255600160a060020a03851681522054611541908363ffffffff61122616565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061160a8339815191529281900390910190a350600192915050565b600160a060020a03811615156115a057600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d6c37530bbdab87b34380e709ea0540ce09eb9da0174eabceef0c051d95ac4090029

Deployed Bytecode

0x6080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302d6f73081146101a557806306fdde03146101ed578063095ea7b314610277578063158ef93e146102af57806317a950ac146102c457806318160ddd146102f7578063188214001461030c57806323b872dd146103215780632a9053181461034b578063313ce567146103605780633be1e9521461038b5780633f4ba83a146103be57806342966c68146103d357806356780085146103eb5780635b7f415c146104005780635be7fde8146104155780635c975abb1461042a578063661884631461043f57806366a92cda1461046357806370a0823114610478578063715018a614610499578063726a431a146104ae5780638456cb59146104df5780638da5cb5b146104f457806395d89b4114610509578063a9059cbb1461051e578063a9aad58c14610542578063ca63b5b814610557578063cf3b196714610578578063d73dd6231461058d578063d8aeedf5146105b1578063dd62ed3e146105d2578063f2fde38b146105f9575b600080fd5b3480156101b157600080fd5b506101c9600160a060020a036004351660243561061a565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b3480156101f957600080fd5b506102026106a7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023c578181015183820152602001610224565b50505050905090810190601f1680156102695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028357600080fd5b5061029b600160a060020a03600435166024356106de565b604080519115158252519081900360200190f35b3480156102bb57600080fd5b5061029b610744565b3480156102d057600080fd5b506102e5600160a060020a0360043516610766565b60408051918252519081900360200190f35b34801561030357600080fd5b506102e5610777565b34801561031857600080fd5b5061020261077d565b34801561032d57600080fd5b5061029b600160a060020a03600435811690602435166044356107b4565b34801561035757600080fd5b506102026107e1565b34801561036c57600080fd5b50610375610818565b6040805160ff9092168252519081900360200190f35b34801561039757600080fd5b506103bc600160a060020a036004351660243567ffffffffffffffff6044351661081d565b005b3480156103ca57600080fd5b506103bc610991565b3480156103df57600080fd5b506103bc600435610a09565b3480156103f757600080fd5b506102e5610a16565b34801561040c57600080fd5b506102e5610a22565b34801561042157600080fd5b506102e5610a27565b34801561043657600080fd5b5061029b610a8c565b34801561044b57600080fd5b5061029b600160a060020a0360043516602435610a9c565b34801561046f57600080fd5b506103bc610b8c565b34801561048457600080fd5b506102e5600160a060020a0360043516610d2f565b3480156104a557600080fd5b506103bc610d58565b3480156104ba57600080fd5b506104c3610dc6565b60408051600160a060020a039092168252519081900360200190f35b3480156104eb57600080fd5b506103bc610dde565b34801561050057600080fd5b506104c3610e5b565b34801561051557600080fd5b50610202610e6a565b34801561052a57600080fd5b5061029b600160a060020a0360043516602435610ea1565b34801561054e57600080fd5b5061029b610ecc565b34801561056357600080fd5b506102e5600160a060020a0360043516610ed1565b34801561058457600080fd5b50610375610a22565b34801561059957600080fd5b5061029b600160a060020a0360043516602435610f57565b3480156105bd57600080fd5b506102e5600160a060020a0360043516610ff0565b3480156105de57600080fd5b506102e5600160a060020a036004358116906024351661100b565b34801561060557600080fd5b506103bc600160a060020a0360043516611036565b600080805b836001018110156106735760036000610642878667ffffffffffffffff16611056565b815260208101919091526040016000205467ffffffffffffffff16925082151561066b5761069f565b60010161061f565b6004600061068b878667ffffffffffffffff16611056565b815260208101919091526040016000205491505b509250929050565b60408051808201909152600681527f49514f4e49510000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006547501000000000000000000000000000000000000000000900460ff1681565b600061077182611094565b92915050565b60015490565b60408051808201909152600681527f49514f4e49510000000000000000000000000000000000000000000000000000602082015281565b60065460009060a060020a900460ff16156107ce57600080fd5b6107d98484846110af565b949350505050565b60408051808201909152600381527f4951510000000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a038416151561083457600080fd5b3360009081526020819052604090205483111561085057600080fd5b33600090815260208190526040902054610870908463ffffffff61121416565b336000908152602081905260409020556108948467ffffffffffffffff8416611056565b6000818152600460205260409020549091506108b6908463ffffffff61122616565b600082815260046020908152604080832093909355600160a060020a03871682526005905220546108ed908463ffffffff61122616565b600160a060020a0385166000908152600560205260409020556109108483611233565b604080518481529051600160a060020a03861691339160008051602061160a8339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a031633146109a857600080fd5b60065460a060020a900460ff1615156109c057600080fd5b6006805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610a1333826113cd565b50565b670de0b6b3a764000081565b601281565b6000806000610a3733600061061a565b67ffffffffffffffff909116925090505b8115801590610a5657508142115b15610a8757610a63610b8c565b91820191610a7233600061061a565b67ffffffffffffffff90911692509050610a48565b505090565b60065460a060020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610af157336000908152600260209081526040808320600160a060020a0388168452909152812055610b26565b610b01818463ffffffff61121416565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610b9f336000611056565b60008181526003602052604090205490955067ffffffffffffffff169350831515610bc957600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610beb57600080fd5b610bff338567ffffffffffffffff16611056565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610c4b908263ffffffff61122616565b3360009081526020818152604080832093909355600590522054610c75908263ffffffff61121416565b3360009081526005602052604090205567ffffffffffffffff82161515610cb8576000858152600360205260409020805467ffffffffffffffff19169055610cf2565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a038116600090815260056020526040812054610d5183611094565b0192915050565b600654600160a060020a03163314610d6f57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b736d1daea80bcce8423a0fc703c3b48a8909e226cd81565b600654600160a060020a03163314610df557600080fd5b60065460a060020a900460ff1615610e0c57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600381527f4951510000000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a060020a900460ff1615610ebb57600080fd5b610ec583836114bc565b9392505050565b600081565b60008060036000610ee3856000611056565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff811615610f515760019091019060036000610f2f8567ffffffffffffffff8516611056565b815260208101919091526040016000205467ffffffffffffffff169050610f01565b50919050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f8b908363ffffffff61122616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a0316331461104d57600080fd5b610a138161158b565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156110c657600080fd5b600160a060020a0384166000908152602081905260409020548211156110eb57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561111b57600080fd5b600160a060020a038416600090815260208190526040902054611144908363ffffffff61121416565b600160a060020a038086166000908152602081905260408082209390935590851681522054611179908363ffffffff61122616565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546111bb908363ffffffff61121416565b600160a060020a038086166000818152600260209081526040808320338452825291829020949094558051868152905192871693919260008051602061160a833981519152929181900390910190a35060019392505050565b60008282111561122057fe5b50900390565b8181018281101561077157fe5b6000808080804267ffffffffffffffff87161161124f57600080fd5b611263878767ffffffffffffffff16611056565b9450611270876000611056565b60008181526003602052604090205490945067ffffffffffffffff1692508215156112c3576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556113c4565b6112d7878467ffffffffffffffff16611056565b91505b67ffffffffffffffff83161580159061130657508267ffffffffffffffff168667ffffffffffffffff16115b1561133f575060008181526003602052604090205490925067ffffffffffffffff908116918391166113388784611056565b91506112da565b8267ffffffffffffffff168667ffffffffffffffff161415611360576113c4565b67ffffffffffffffff83161561139a576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a0382166000908152602081905260409020548111156113f257600080fd5b600160a060020a03821660009081526020819052604090205461141b908263ffffffff61121416565b600160a060020a038316600090815260208190526040902055600154611447908263ffffffff61121416565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a0385169160008051602061160a8339815191529181900360200190a35050565b6000600160a060020a03831615156114d357600080fd5b336000908152602081905260409020548211156114ef57600080fd5b3360009081526020819052604090205461150f908363ffffffff61121416565b3360009081526020819052604080822092909255600160a060020a03851681522054611541908363ffffffff61122616565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192339260008051602061160a8339815191529281900390910190a350600192915050565b600160a060020a03811615156115a057600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820d6c37530bbdab87b34380e709ea0540ce09eb9da0174eabceef0c051d95ac4090029

Deployed Bytecode Sourcemap

18174:2035:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11883:396;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11883:396:0;-1:-1:-1;;;;;11883:396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18409:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18409:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18409:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5666:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5666:206:0;-1:-1:-1;;;;;5666:206:0;;;;;;;;;;;;;;;;;;;;;;;;;18274:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18274:31:0;;;;10923:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10923:160:0;-1:-1:-1;;;;;10923:160:0;;;;;;;;;;;;;;;;;;;;;2268:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2268:91:0;;;;17934:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17934:44:0;;;;18717:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18717:222:0;-1:-1:-1;;;;;18717:222:0;;;;;;;;;;;;17985:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17985:43:0;;;;18605:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18605:104:0;;;;;;;;;;;;;;;;;;;;;;;12653:584;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12653:584:0;-1:-1:-1;;;;;12653:584:0;;;;;;;;;;;;;17617:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17617:105:0;;;;16166:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16166:81:0;;;;;17856:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17856:69:0;;;;17752:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17752:43:0;;;;14243:366;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14243:366:0;;;;16936:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16936:26:0;;;;7698:479;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7698:479:0;-1:-1:-1;;;;;7698:479:0;;;;;;;13317:759;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13317:759:0;;;;10526:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10526:148:0;-1:-1:-1;;;;;10526:148:0;;;;;9073:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9073:124:0;;;;18077:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18077:89:0;;;;;;;;-1:-1:-1;;;;;18077:89:0;;;;;;;;;;;;;;17419:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17419:103:0;;;;8403:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8403:20:0;;;;18504:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18504:93:0;;;;18947:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18947:181:0;-1:-1:-1;;;;;18947:181:0;;;;;;;18035:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18035:35:0;;;;11365:252;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11365:252:0;-1:-1:-1;;;;;11365:252:0;;;;;17802:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17802:47:0;;;;6870:332;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6870:332:0;-1:-1:-1;;;;;6870:332:0;;;;;;;11091:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11091:162:0;-1:-1:-1;;;;;11091:162:0;;;;;6213:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6213:166:0;-1:-1:-1;;;;;6213:166:0;;;;;;;;;;9375:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9375:111:0;-1:-1:-1;;;;;9375:111:0;;;;;11883:396;11983:15;;;12034:183;12058:6;12067:1;12058:10;12054:1;:14;12034:183;;;12101:6;:30;12108:22;12114:5;12121:8;12108:22;;:5;:22::i;:::-;12101:30;;;;;;;;;;;;;;;;;-1:-1:-1;12150:13:0;;12146:60;;;12184:7;;12146:60;12070:3;;12034:183;;;12238:9;:33;12248:22;12254:5;12261:8;12248:22;;:5;:22::i;:::-;12238:33;;;;;;;;;;;;;;;-1:-1:-1;11883:396:0;;;;;;;:::o;18409:87::-;18478:10;;;;;;;;;;;;;;;;;18409:87;:::o;5666:206::-;5758:10;5733:4;5750:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5750:29:0;;;;;;;;;;;:38;;;5804;;;;;;;5733:4;;5750:29;;5758:10;;5804:38;;;;;;;;-1:-1:-1;5860:4:0;5666:206;;;;:::o;18274:31::-;;;;;;;;;:::o;10923:160::-;11012:15;11052:23;11068:6;11052:15;:23::i;:::-;11045:30;10923:160;-1:-1:-1;;10923:160:0:o;2268:91::-;2339:12;;2268:91;:::o;17934:44::-;;;;;;;;;;;;;;;;;;;:::o;18717:222::-;18868:6;;18833:13;;-1:-1:-1;;;18868:6:0;;;;18867:7;18859:16;;;;;;18893:38;18912:5;18919:3;18924:6;18893:18;:38::i;:::-;18886:45;18717:222;-1:-1:-1;;;;18717:222:0:o;17985:43::-;;;;;;;;;;;;;;;;;;;:::o;18605:104::-;17847:2;18605:104;:::o;12653:584::-;12927:18;-1:-1:-1;;;;;12776:17:0;;;;12768:26;;;;;;12833:10;12824:8;:20;;;;;;;;;;;12813:31;;;12805:40;;;;;;12890:10;12881:8;:20;;;;;;;;;;;:33;;12906:7;12881:33;:24;:33;:::i;:::-;12867:10;12858:8;:20;;;;;;;;;;:56;12948:18;12954:3;12948:18;;;:5;:18::i;:::-;13001:21;;;;:9;:21;;;;;;12927:39;;-1:-1:-1;13001:34:0;;13027:7;13001:34;:25;:34;:::i;:::-;12977:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;13069:20:0;;;;:15;:20;;;;:33;;13094:7;13069:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;13046:20:0;;;;;;:15;:20;;;;;:56;13115:19;13062:3;13127:6;13115;:19::i;:::-;13150:34;;;;;;;;-1:-1:-1;;;;;13150:34:0;;;13159:10;;-1:-1:-1;;;;;;;;;;;13150:34:0;;;;;;;;13200:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13200:29:0;;;;;;;;;;;12653:584;;;;:::o;17617:105::-;8944:5;;-1:-1:-1;;;;;8944:5:0;8930:10;:19;8922:28;;;;;;17300:6;;-1:-1:-1;;;17300:6:0;;;;17292:15;;;;;;;;17675:6;:14;;-1:-1:-1;;17675:14:0;;;17705:9;;;;17684:5;;17705:9;17617:105::o;16166:81::-;16214:25;16220:10;16232:6;16214:5;:25::i;:::-;16166:81;:::o;17856:69::-;17907:18;17856:69;:::o;17752:43::-;17793:2;17752:43;:::o;14243:366::-;14281:14;14308:15;14334;14381:26;14393:10;14405:1;14381:11;:26::i;:::-;14360:47;;;;;-1:-1:-1;14360:47:0;-1:-1:-1;14418:184:0;14425:12;;;;;:41;;;14459:7;14441:15;:25;14425:41;14418:184;;;14483:13;:11;:13::i;:::-;14511:17;;;;14564:26;14576:10;14588:1;14564:11;:26::i;:::-;14543:47;;;;;-1:-1:-1;14543:47:0;-1:-1:-1;14418:184:0;;;14243:366;;;:::o;16936:26::-;;;-1:-1:-1;;;16936:26:0;;;;;:::o;7698:479::-;7851:10;7802:4;7843:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7843:29:0;;;;;;;;;;7887:27;;;7883:188;;;7939:10;7963:1;7931:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7931:29:0;;;;;;;;;:33;7883:188;;;8029:30;:8;8042:16;8029:30;:12;:30;:::i;:::-;8005:10;7997:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7997:29:0;;;;;;;;;:62;7883:188;8095:10;8117:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8086:61:0;;8117:29;;;;;;;;;;;8086:61;;;;;;;;;8095:10;8086:61;;;;;;;;;;;-1:-1:-1;8165:4:0;;7698:479;-1:-1:-1;;;7698:479:0:o;13317:759::-;13358:15;13407:11;13526:18;13583:11;13628:14;13376:20;13382:10;13394:1;13376:5;:20::i;:::-;13421:15;;;;:6;:15;;;;;;13358:38;;-1:-1:-1;13421:15:0;;;-1:-1:-1;13455:9:0;;;13447:18;;;;;;13510:4;13484:30;;13491:15;13484:30;;;13476:39;;;;;;;;13547:23;13553:10;13565:4;13547:23;;:5;:23::i;:::-;13597:18;;;;:6;:18;;;;;;;;;13645:9;:21;;;;;;;13677:28;;;;13750:10;13741:20;;;;;;;;;13526:44;;-1:-1:-1;13597:18:0;;;;;-1:-1:-1;13645:21:0;-1:-1:-1;13741:32:0;;13645:21;13741:32;:24;:32;:::i;:::-;13727:10;13718:8;:20;;;;;;;;;;;:55;;;;13814:15;:27;;;;:39;;13846:6;13814:39;:31;:39;:::i;:::-;13800:10;13784:27;;;;:15;:27;;;;;:69;13870:9;;;;13866:159;;;13903:15;;;;:6;:15;;;;;13896:22;;-1:-1:-1;;13896:22:0;;;13866:159;;;13951:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;13951:22:0;;;;;;;13995:18;;;;;13988:25;;;;;;;13866:159;14040:28;;;;;;;;14049:10;;14040:28;;;;;;;;;;13317:759;;;;;:::o;10526:148::-;-1:-1:-1;;;;;10643:23:0;;10582:15;10643:23;;;:15;:23;;;;;;10617;10659:6;10617:15;:23::i;:::-;:49;;10526:148;-1:-1:-1;;10526:148:0:o;9073:124::-;8944:5;;-1:-1:-1;;;;;8944:5:0;8930:10;:19;8922:28;;;;;;9154:5;;9135:25;;-1:-1:-1;;;;;9154:5:0;;;;9135:25;;9154:5;;9135:25;9171:5;:18;;-1:-1:-1;;9171:18:0;;;9073:124::o;18077:89::-;18124:42;18077:89;:::o;17419:103::-;8944:5;;-1:-1:-1;;;;;8944:5:0;8930:10;:19;8922:28;;;;;;17122:6;;-1:-1:-1;;;17122:6:0;;;;17121:7;17113:16;;;;;;17478:6;:13;;-1:-1:-1;;17478:13:0;-1:-1:-1;;;17478:13:0;;;17507:7;;;;17478:13;;17507:7;17419:103::o;8403:20::-;;;-1:-1:-1;;;;;8403:20:0;;:::o;18504:93::-;18577:12;;;;;;;;;;;;;;;;;18504:93;:::o;18947:181::-;19068:6;;19028:13;;-1:-1:-1;;;19068:6:0;;;;19067:7;19059:16;;;;;;19093:27;19108:3;19113:6;19093:14;:27::i;:::-;19086:34;18947:181;-1:-1:-1;;;18947:181:0:o;18035:35::-;18065:5;18035:35;:::o;11365:252::-;11424:13;11450:14;11467:6;:23;11474:15;11480:5;11487:1;11474:5;:15::i;:::-;11467:23;;;;;;;;;;;;;;;;;-1:-1:-1;11501:109:0;11508:12;;;;11501:109;;11537:7;;;;;11569:6;:29;11576:21;11582:5;11576:21;;;:5;:21::i;:::-;11569:29;;;;;;;;;;;;;;;;;-1:-1:-1;11501:109:0;;;11365:252;;;;:::o;6870:332::-;7046:10;6969:4;7038:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7038:29:0;;;;;;;;;;:46;;7072:11;7038:46;:33;:46;:::i;:::-;6999:10;6991:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6991:29:0;;;;;;;;;;;;:104;;;7111:61;;;;;;6991:29;;7111:61;;;;;;;;;;;-1:-1:-1;7190:4:0;6870:332;;;;:::o;11091:162::-;-1:-1:-1;;;;;11222:23:0;11182:15;11222:23;;;:15;:23;;;;;;;11091:162::o;6213:166::-;-1:-1:-1;;;;;6346:15:0;;;6314:7;6346:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6213:166::o;9375:111::-;8944:5;;-1:-1:-1;;;;;8944:5:0;8930:10;:19;8922:28;;;;;;9449:29;9468:9;9449:18;:29::i;14617:422::-;15001:18;14987:33;14931:19;14920:31;;;;14976:45;14798:66;14976:45;;14884:148::o;3116:107::-;-1:-1:-1;;;;;3199:16:0;3172:7;3199:16;;;;;;;;;;;;3116:107::o;4487:522::-;4603:4;-1:-1:-1;;;;;4628:17:0;;;;4620:26;;;;;;-1:-1:-1;;;;;4675:15:0;;:8;:15;;;;;;;;;;;4665:25;;;4657:34;;;;;;-1:-1:-1;;;;;4720:14:0;;;;;;:7;:14;;;;;;;;4735:10;4720:26;;;;;;;;4710:36;;;4702:45;;;;;;-1:-1:-1;;;;;4778:15:0;;:8;:15;;;;;;;;;;;:27;;4798:6;4778:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4760:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4832:13;;;;;;;:25;;4850:6;4832:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4816:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4897:14;;;;;:7;:14;;;;;4912:10;4897:26;;;;;;;:38;;4928:6;4897:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4868:14:0;;;;;;;:7;:14;;;;;;;;4883:10;4868:26;;;;;;;;:67;;;;4951:28;;;;;;;;;;;4868:14;;-1:-1:-1;;;;;;;;;;;4951:28:0;;;;;;;;;;-1:-1:-1;4997:4:0;4487:522;;;;;:::o;1609:123::-;1667:7;1694:6;;;;1687:14;;;;-1:-1:-1;1719:5:0;;;1609:123::o;1809:141::-;1893:5;;;1916:6;;;;1909:14;;;15047:792;15155:11;;;;;15128:15;15119:24;;;;15111:33;;;;;;15169:18;15175:3;15180:6;15169:18;;:5;:18::i;:::-;15155:32;-1:-1:-1;15218:21:0;15224:3;15236:1;15218:5;:21::i;:::-;15264:17;;;;:6;:17;;;;;;15198:41;;-1:-1:-1;15264:17:0;;;-1:-1:-1;15298:9:0;;15294:89;;;15324:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;15324:26:0;;;;;;;15365:7;;15294:89;15413:16;15419:3;15424:4;15413:16;;:5;:16::i;:::-;15395:34;;15467:189;15474:9;;;;;;;:26;;;15496:4;15487:13;;:6;:13;;;15474:26;15467:189;;;-1:-1:-1;15588:15:0;;;;:6;:15;;;;;;15557:7;;-1:-1:-1;15517:13:0;15588:15;;;;15557:7;;15517:13;15628:16;15634:3;15588:15;15628:5;:16::i;:::-;15618:26;;15467:189;;;15682:4;15672:14;;:6;:14;;;15668:53;;;15703:7;;15668:53;15737:9;;;;15733:60;;15763:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;15763:18:0;;;;;;;15733:60;15805:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;15805:26:0;;;;;;;15047:792;;;;;;;;:::o;16255:477::-;-1:-1:-1;;;;;16338:14:0;;:8;:14;;;;;;;;;;;16328:24;;;16320:33;;;;;;-1:-1:-1;;;;;16564:14:0;;:8;:14;;;;;;;;;;;:26;;16583:6;16564:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;16547:14:0;;:8;:14;;;;;;;;;;:43;16616:12;;:24;;16633:6;16616:24;:16;:24;:::i;:::-;16601:12;:39;16656:18;;;;;;;;-1:-1:-1;;;;;16656:18:0;;;;;;;;;;;;;16690:34;;;;;;;;16713:1;;-1:-1:-1;;;;;16690:34:0;;;-1:-1:-1;;;;;;;;;;;16690:34:0;;;;;;;;16255:477;;:::o;2536:355::-;2599:4;-1:-1:-1;;;;;2624:17:0;;;;2616:26;;;;;;2680:10;2671:8;:20;;;;;;;;;;;2661:30;;;2653:39;;;;;;2737:10;2728:8;:20;;;;;;;;;;;:32;;2753:6;2728:32;:24;:32;:::i;:::-;2714:10;2705:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2787:13:0;;;;;;:25;;2805:6;2787:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2771:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2828:33;;;;;;;2771:13;;2837:10;;-1:-1:-1;;;;;;;;;;;2828:33:0;;;;;;;;;-1:-1:-1;2879:4:0;2536:355;;;;:::o;9637:189::-;-1:-1:-1;;;;;9712:23:0;;;;9704:32;;;;;;9773:5;;9752:38;;-1:-1:-1;;;;;9752:38:0;;;;9773:5;;9752:38;;9773:5;;9752:38;9801:5;:17;;-1:-1:-1;;9801:17:0;-1:-1:-1;;;;;9801:17:0;;;;;;;;;;9637:189::o

Swarm Source

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