ETH Price: $3,396.86 (+6.41%)
Gas: 19 Gwei

Token

$NONKI ($NONKI)
 

Overview

Max Total Supply

100,000,000 $NONKI

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,170 $NONKI

Value
$0.00
0xc92c5942468ab60e7a6236dbe3a1e475d4becbd4
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:
NonkiToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/** Tokenomics **
*
* - Max Supply
*   100,000,000 (== 10 ** 8)
* - Decimal
*   10 ** 18
* - Token Name & Symbol
*   "$NONKI", "$NONKI"
*
* - Token distribution
*   56,798,700     Token Rewards
*   16,201,300     DEX Liquidity
*   27,000,000     Reserve  
*
*/

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}



/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}



/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

     /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
contract NonkiToken is Context, IERC20, IERC20Metadata, Ownable {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    bool public mintingFinishedPermanent = false;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    uint256 public _lastReleaseTimeStamp = block.timestamp;
    uint256 public _creationTimeStamp = block.timestamp;

    
    // Token distribution amount
    uint256 public _rewardAmount;
    uint256 public _dexAmount;
    uint256 public _reserveAmount;
    
    // Token distribution address
    address rewardAddress;
    address dexAddress;
    address reserveAddress;
    /**
     * @dev Sets the values for {name}, {symbol} and {decimals}.
     *
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor () {
        _name = "$NONKI";
        _symbol = "$NONKI";
        _decimals = 18;
        _totalSupply = 100000000 * 10**18;
        
        _rewardAmount = 56798700 * 10**18;
        _dexAmount = 16201300 * 10**18;
        _reserveAmount = 27000000 * 10**18;
        
        // Real address
        rewardAddress = 0x33e6AC18E249E0f6295809c350A99fb3BA2E4869;
        dexAddress = 0x6cC64379eF101211884A9f2f1a21cd217cdB4b1A;
        reserveAddress = 0xec910Da2Bdae8783C4884313C8543b871adbbcC5;

        require(_totalSupply == _rewardAmount + _dexAmount + _reserveAmount, "Check sum!");

        _mint(_msgSender(), _totalSupply);
        mintingFinishedPermanent = true;
        
        // Initial Supply
        transfer(rewardAddress, _rewardAmount);
        transfer(dexAddress, _dexAmount / 20);
        transfer(reserveAddress, _reserveAmount);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function transferLocks() public onlyOwner()
    {
        // onlyTest
        require(_lastReleaseTimeStamp + 3600 * 24 * 365 <= block.timestamp, "Token is locked for a year.");
        require(_creationTimeStamp + 19 * 3600 * 24 * 365 >= block.timestamp, "No more, 20 years available");
        //require(_lastReleaseTimeStamp + 60 <= block.timestamp, "Token is locked for a year.");
        //require(_creationTimeStamp + 19 * 60 >= block.timestamp, "No more, 20 years available");


        this.transfer(dexAddress, _dexAmount / 20);
        _lastReleaseTimeStamp = block.timestamp;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(!mintingFinishedPermanent,"cant be minted anymore!");
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        //_totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    } 

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_creationTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dexAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastReleaseTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinishedPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferLocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660006101000a81548160ff02191690831515021790555042600a5542600b553480156200003457600080fd5b506000620000476200044260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600681526020017f244e4f4e4b4900000000000000000000000000000000000000000000000000008152506007908051906020019062000132929190620008b4565b506040518060400160405280600681526020017f244e4f4e4b4900000000000000000000000000000000000000000000000000008152506008908051906020019062000180929190620008b4565b506012600960006101000a81548160ff021916908360ff1602179055506a52b7d2dcc80cd2e40000006005819055506a2efb97b25c1604e4300000600c819055506a0d66c23b9c59be04d00000600d819055506a165578eecf9d0ffb000000600e819055507333e6ac18e249e0f6295809c350a99fb3ba2e4869600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736cc64379ef101211884a9f2f1a21cd217cdb4b1a601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ec910da2bdae8783c4884313c8543b871adbbcc5601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e54600d54600c54620002f9919062000b59565b62000305919062000b59565b600554146200034b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003429062000a81565b60405180910390fd5b6200036e6200035f6200044260201b60201c565b6005546200044a60201b60201c565b6001600660006101000a81548160ff021916908315150217905550620003bf600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c54620005e860201b60201c565b5062000404601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014600d54620003f8919062000bb6565b620005e860201b60201c565b506200043b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e54620005e860201b60201c565b5062000e5e565b600033905090565b600660009054906101000a900460ff16156200049d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004949062000ae7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005079062000b09565b60405180910390fd5b62000524600083836200061660201b60201c565b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000575919062000b59565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005dc919062000b2b565b60405180910390a35050565b60006200060c620005fe6200044260201b60201c565b84846200061b60201b60201c565b6001905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000ac5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000701576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f89062000a5f565b60405180910390fd5b620007148383836200061660201b60201c565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200079e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007959062000aa3565b60405180910390fd5b8181620007ac919062000bee565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000840919062000b59565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051620008a6919062000b2b565b60405180910390a350505050565b828054620008c29062000c33565b90600052602060002090601f016020900481019282620008e6576000855562000932565b82601f106200090157805160ff191683800117855562000932565b8280016001018555821562000932579182015b828111156200093157825182559160200191906001019062000914565b5b50905062000941919062000945565b5090565b5b808211156200096057600081600090555060010162000946565b5090565b60006200097360238362000b48565b9150620009808262000cf6565b604082019050919050565b60006200099a600a8362000b48565b9150620009a78262000d45565b602082019050919050565b6000620009c160268362000b48565b9150620009ce8262000d6e565b604082019050919050565b6000620009e860258362000b48565b9150620009f58262000dbd565b604082019050919050565b600062000a0f60178362000b48565b915062000a1c8262000e0c565b602082019050919050565b600062000a36601f8362000b48565b915062000a438262000e35565b602082019050919050565b62000a598162000c29565b82525050565b6000602082019050818103600083015262000a7a8162000964565b9050919050565b6000602082019050818103600083015262000a9c816200098b565b9050919050565b6000602082019050818103600083015262000abe81620009b2565b9050919050565b6000602082019050818103600083015262000ae081620009d9565b9050919050565b6000602082019050818103600083015262000b028162000a00565b9050919050565b6000602082019050818103600083015262000b248162000a27565b9050919050565b600060208201905062000b42600083018462000a4e565b92915050565b600082825260208201905092915050565b600062000b668262000c29565b915062000b738362000c29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bab5762000baa62000c69565b5b828201905092915050565b600062000bc38262000c29565b915062000bd08362000c29565b92508262000be35762000be262000c98565b5b828204905092915050565b600062000bfb8262000c29565b915062000c088362000c29565b92508282101562000c1e5762000c1d62000c69565b5b828203905092915050565b6000819050919050565b6000600282049050600182168062000c4c57607f821691505b6020821081141562000c635762000c6262000cc7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f436865636b2073756d2100000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f63616e74206265206d696e74656420616e796d6f726521000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611de08062000e6e6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063aafdd3381161007c578063aafdd33814610356578063c6913a1014610360578063dd62ed3e1461037e578063e7cc35b1146103ae578063f2fde38b146103cc578063f5eae936146103e857610137565b8063715018a6146102b05780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb1461032657610137565b8063382ab30a116100ff578063382ab30a146101f657806339509351146102145780633b9461551461024457806349db98fa1461026257806370a082311461028057610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610406565b6040516101519190611686565b60405180910390f35b610174600480360381019061016f91906113c4565b610498565b604051610181919061166b565b60405180910390f35b6101926104b6565b60405161019f9190611808565b60405180910390f35b6101c260048036038101906101bd9190611371565b6104c0565b6040516101cf919061166b565b60405180910390f35b6101e06105c1565b6040516101ed9190611823565b60405180910390f35b6101fe6105d8565b60405161020b9190611808565b60405180910390f35b61022e600480360381019061022991906113c4565b6105de565b60405161023b919061166b565b60405180910390f35b61024c61068a565b6040516102599190611808565b60405180910390f35b61026a610690565b6040516102779190611808565b60405180910390f35b61029a60048036038101906102959190611304565b610696565b6040516102a79190611808565b60405180910390f35b6102b86106df565b005b6102c2610832565b6040516102cf9190611627565b60405180910390f35b6102e061085b565b6040516102ed9190611686565b60405180910390f35b610310600480360381019061030b91906113c4565b6108ed565b60405161031d919061166b565b60405180910390f35b610340600480360381019061033b91906113c4565b6109e1565b60405161034d919061166b565b60405180910390f35b61035e6109ff565b005b610368610c03565b6040516103759190611808565b60405180910390f35b61039860048036038101906103939190611331565b610c09565b6040516103a59190611808565b60405180910390f35b6103b6610c90565b6040516103c39190611808565b60405180910390f35b6103e660048036038101906103e19190611304565b610c96565b005b6103f0610e58565b6040516103fd919061166b565b60405180910390f35b6060600780546104159061199d565b80601f01602080910402602001604051908101604052809291908181526020018280546104419061199d565b801561048e5780601f106104635761010080835404028352916020019161048e565b820191906000526020600020905b81548152906001019060200180831161047157829003601f168201915b5050505050905090565b60006104ac6104a5610e6b565b8484610e73565b6001905092915050565b6000600554905090565b60006104cd84848461103e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610518610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058f90611768565b60405180910390fd5b6105b5856105a4610e6b565b85846105b091906118e1565b610e73565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b600b5481565b60006106806105eb610e6b565b8484600460006105f9610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461067b919061185a565b610e73565b6001905092915050565b600e5481565b600c5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106e7610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b90611788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461086a9061199d565b80601f01602080910402602001604051908101604052809291908181526020018280546108969061199d565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b600080600460006108fc610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906117e8565b60405180910390fd5b6109d66109c4610e6b565b8585846109d191906118e1565b610e73565b600191505092915050565b60006109f56109ee610e6b565b848461103e565b6001905092915050565b610a07610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90611788565b60405180910390fd5b426301e13380600a54610aa7919061185a565b1115610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf906116e8565b60405180910390fd5b426323b6d280600b54610afb919061185a565b1015610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906116c8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014600d54610b8a91906118b0565b6040518363ffffffff1660e01b8152600401610ba7929190611642565b602060405180830381600087803b158015610bc157600080fd5b505af1158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf99190611404565b5042600a81905550565b600a5481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b610c9e610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611708565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906117c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611728565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110319190611808565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906117a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906116a8565b60405180910390fd5b6111298383836112c0565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790611748565b60405180910390fd5b81816111bc91906118e1565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124e919061185a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b29190611808565b60405180910390a350505050565b505050565b6000813590506112d481611d65565b92915050565b6000815190506112e981611d7c565b92915050565b6000813590506112fe81611d93565b92915050565b60006020828403121561131a57611319611a5c565b5b6000611328848285016112c5565b91505092915050565b6000806040838503121561134857611347611a5c565b5b6000611356858286016112c5565b9250506020611367858286016112c5565b9150509250929050565b60008060006060848603121561138a57611389611a5c565b5b6000611398868287016112c5565b93505060206113a9868287016112c5565b92505060406113ba868287016112ef565b9150509250925092565b600080604083850312156113db576113da611a5c565b5b60006113e9858286016112c5565b92505060206113fa858286016112ef565b9150509250929050565b60006020828403121561141a57611419611a5c565b5b6000611428848285016112da565b91505092915050565b61143a81611915565b82525050565b61144981611927565b82525050565b600061145a8261183e565b6114648185611849565b935061147481856020860161196a565b61147d81611a61565b840191505092915050565b6000611495602383611849565b91506114a082611a72565b604082019050919050565b60006114b8601b83611849565b91506114c382611ac1565b602082019050919050565b60006114db601b83611849565b91506114e682611aea565b602082019050919050565b60006114fe602683611849565b915061150982611b13565b604082019050919050565b6000611521602283611849565b915061152c82611b62565b604082019050919050565b6000611544602683611849565b915061154f82611bb1565b604082019050919050565b6000611567602883611849565b915061157282611c00565b604082019050919050565b600061158a602083611849565b915061159582611c4f565b602082019050919050565b60006115ad602583611849565b91506115b882611c78565b604082019050919050565b60006115d0602483611849565b91506115db82611cc7565b604082019050919050565b60006115f3602583611849565b91506115fe82611d16565b604082019050919050565b61161281611953565b82525050565b6116218161195d565b82525050565b600060208201905061163c6000830184611431565b92915050565b60006040820190506116576000830185611431565b6116646020830184611609565b9392505050565b60006020820190506116806000830184611440565b92915050565b600060208201905081810360008301526116a0818461144f565b905092915050565b600060208201905081810360008301526116c181611488565b9050919050565b600060208201905081810360008301526116e1816114ab565b9050919050565b60006020820190508181036000830152611701816114ce565b9050919050565b60006020820190508181036000830152611721816114f1565b9050919050565b6000602082019050818103600083015261174181611514565b9050919050565b6000602082019050818103600083015261176181611537565b9050919050565b600060208201905081810360008301526117818161155a565b9050919050565b600060208201905081810360008301526117a18161157d565b9050919050565b600060208201905081810360008301526117c1816115a0565b9050919050565b600060208201905081810360008301526117e1816115c3565b9050919050565b60006020820190508181036000830152611801816115e6565b9050919050565b600060208201905061181d6000830184611609565b92915050565b60006020820190506118386000830184611618565b92915050565b600081519050919050565b600082825260208201905092915050565b600061186582611953565b915061187083611953565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118a5576118a46119cf565b5b828201905092915050565b60006118bb82611953565b91506118c683611953565b9250826118d6576118d56119fe565b5b828204905092915050565b60006118ec82611953565b91506118f783611953565b92508282101561190a576119096119cf565b5b828203905092915050565b600061192082611933565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561198857808201518184015260208101905061196d565b83811115611997576000848401525b50505050565b600060028204905060018216806119b557607f821691505b602082108114156119c9576119c8611a2d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652c20323020796561727320617661696c61626c650000000000600082015250565b7f546f6b656e206973206c6f636b656420666f72206120796561722e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611d6e81611915565b8114611d7957600080fd5b50565b611d8581611927565b8114611d9057600080fd5b50565b611d9c81611953565b8114611da757600080fd5b5056fea2646970667358221220414935161659fa38bb955e762853b8d199c48c01a937738902278405b92cc22164736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063aafdd3381161007c578063aafdd33814610356578063c6913a1014610360578063dd62ed3e1461037e578063e7cc35b1146103ae578063f2fde38b146103cc578063f5eae936146103e857610137565b8063715018a6146102b05780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb1461032657610137565b8063382ab30a116100ff578063382ab30a146101f657806339509351146102145780633b9461551461024457806349db98fa1461026257806370a082311461028057610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610406565b6040516101519190611686565b60405180910390f35b610174600480360381019061016f91906113c4565b610498565b604051610181919061166b565b60405180910390f35b6101926104b6565b60405161019f9190611808565b60405180910390f35b6101c260048036038101906101bd9190611371565b6104c0565b6040516101cf919061166b565b60405180910390f35b6101e06105c1565b6040516101ed9190611823565b60405180910390f35b6101fe6105d8565b60405161020b9190611808565b60405180910390f35b61022e600480360381019061022991906113c4565b6105de565b60405161023b919061166b565b60405180910390f35b61024c61068a565b6040516102599190611808565b60405180910390f35b61026a610690565b6040516102779190611808565b60405180910390f35b61029a60048036038101906102959190611304565b610696565b6040516102a79190611808565b60405180910390f35b6102b86106df565b005b6102c2610832565b6040516102cf9190611627565b60405180910390f35b6102e061085b565b6040516102ed9190611686565b60405180910390f35b610310600480360381019061030b91906113c4565b6108ed565b60405161031d919061166b565b60405180910390f35b610340600480360381019061033b91906113c4565b6109e1565b60405161034d919061166b565b60405180910390f35b61035e6109ff565b005b610368610c03565b6040516103759190611808565b60405180910390f35b61039860048036038101906103939190611331565b610c09565b6040516103a59190611808565b60405180910390f35b6103b6610c90565b6040516103c39190611808565b60405180910390f35b6103e660048036038101906103e19190611304565b610c96565b005b6103f0610e58565b6040516103fd919061166b565b60405180910390f35b6060600780546104159061199d565b80601f01602080910402602001604051908101604052809291908181526020018280546104419061199d565b801561048e5780601f106104635761010080835404028352916020019161048e565b820191906000526020600020905b81548152906001019060200180831161047157829003601f168201915b5050505050905090565b60006104ac6104a5610e6b565b8484610e73565b6001905092915050565b6000600554905090565b60006104cd84848461103e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610518610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058f90611768565b60405180910390fd5b6105b5856105a4610e6b565b85846105b091906118e1565b610e73565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b600b5481565b60006106806105eb610e6b565b8484600460006105f9610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461067b919061185a565b610e73565b6001905092915050565b600e5481565b600c5481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106e7610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b90611788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461086a9061199d565b80601f01602080910402602001604051908101604052809291908181526020018280546108969061199d565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b600080600460006108fc610e6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906117e8565b60405180910390fd5b6109d66109c4610e6b565b8585846109d191906118e1565b610e73565b600191505092915050565b60006109f56109ee610e6b565b848461103e565b6001905092915050565b610a07610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90611788565b60405180910390fd5b426301e13380600a54610aa7919061185a565b1115610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf906116e8565b60405180910390fd5b426323b6d280600b54610afb919061185a565b1015610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906116c8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014600d54610b8a91906118b0565b6040518363ffffffff1660e01b8152600401610ba7929190611642565b602060405180830381600087803b158015610bc157600080fd5b505af1158015610bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf99190611404565b5042600a81905550565b600a5481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b610c9e610e6b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611788565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611708565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906117c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90611728565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110319190611808565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906117a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611115906116a8565b60405180910390fd5b6111298383836112c0565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790611748565b60405180910390fd5b81816111bc91906118e1565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461124e919061185a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b29190611808565b60405180910390a350505050565b505050565b6000813590506112d481611d65565b92915050565b6000815190506112e981611d7c565b92915050565b6000813590506112fe81611d93565b92915050565b60006020828403121561131a57611319611a5c565b5b6000611328848285016112c5565b91505092915050565b6000806040838503121561134857611347611a5c565b5b6000611356858286016112c5565b9250506020611367858286016112c5565b9150509250929050565b60008060006060848603121561138a57611389611a5c565b5b6000611398868287016112c5565b93505060206113a9868287016112c5565b92505060406113ba868287016112ef565b9150509250925092565b600080604083850312156113db576113da611a5c565b5b60006113e9858286016112c5565b92505060206113fa858286016112ef565b9150509250929050565b60006020828403121561141a57611419611a5c565b5b6000611428848285016112da565b91505092915050565b61143a81611915565b82525050565b61144981611927565b82525050565b600061145a8261183e565b6114648185611849565b935061147481856020860161196a565b61147d81611a61565b840191505092915050565b6000611495602383611849565b91506114a082611a72565b604082019050919050565b60006114b8601b83611849565b91506114c382611ac1565b602082019050919050565b60006114db601b83611849565b91506114e682611aea565b602082019050919050565b60006114fe602683611849565b915061150982611b13565b604082019050919050565b6000611521602283611849565b915061152c82611b62565b604082019050919050565b6000611544602683611849565b915061154f82611bb1565b604082019050919050565b6000611567602883611849565b915061157282611c00565b604082019050919050565b600061158a602083611849565b915061159582611c4f565b602082019050919050565b60006115ad602583611849565b91506115b882611c78565b604082019050919050565b60006115d0602483611849565b91506115db82611cc7565b604082019050919050565b60006115f3602583611849565b91506115fe82611d16565b604082019050919050565b61161281611953565b82525050565b6116218161195d565b82525050565b600060208201905061163c6000830184611431565b92915050565b60006040820190506116576000830185611431565b6116646020830184611609565b9392505050565b60006020820190506116806000830184611440565b92915050565b600060208201905081810360008301526116a0818461144f565b905092915050565b600060208201905081810360008301526116c181611488565b9050919050565b600060208201905081810360008301526116e1816114ab565b9050919050565b60006020820190508181036000830152611701816114ce565b9050919050565b60006020820190508181036000830152611721816114f1565b9050919050565b6000602082019050818103600083015261174181611514565b9050919050565b6000602082019050818103600083015261176181611537565b9050919050565b600060208201905081810360008301526117818161155a565b9050919050565b600060208201905081810360008301526117a18161157d565b9050919050565b600060208201905081810360008301526117c1816115a0565b9050919050565b600060208201905081810360008301526117e1816115c3565b9050919050565b60006020820190508181036000830152611801816115e6565b9050919050565b600060208201905061181d6000830184611609565b92915050565b60006020820190506118386000830184611618565b92915050565b600081519050919050565b600082825260208201905092915050565b600061186582611953565b915061187083611953565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118a5576118a46119cf565b5b828201905092915050565b60006118bb82611953565b91506118c683611953565b9250826118d6576118d56119fe565b5b828204905092915050565b60006118ec82611953565b91506118f783611953565b92508282101561190a576119096119cf565b5b828203905092915050565b600061192082611933565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561198857808201518184015260208101905061196d565b83811115611997576000848401525b50505050565b600060028204905060018216806119b557607f821691505b602082108114156119c9576119c8611a2d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f72652c20323020796561727320617661696c61626c650000000000600082015250565b7f546f6b656e206973206c6f636b656420666f72206120796561722e0000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611d6e81611915565b8114611d7957600080fd5b50565b611d8581611927565b8114611d9057600080fd5b50565b611d9c81611953565b8114611da757600080fd5b5056fea2646970667358221220414935161659fa38bb955e762853b8d199c48c01a937738902278405b92cc22164736f6c63430008070033

Deployed Bytecode Sourcemap

12134:11402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14071:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16245:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15198:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17508:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15033:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12577:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18339:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12744:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12677:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15369:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11579:148;;;:::i;:::-;;10936:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14290:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19057:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15709:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16423:603;;;:::i;:::-;;12516:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15947:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12712:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11882:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14071:100;14125:13;14158:5;14151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14071:100;:::o;16245:169::-;16328:4;16345:39;16354:12;:10;:12::i;:::-;16368:7;16377:6;16345:8;:39::i;:::-;16402:4;16395:11;;16245:169;;;;:::o;15198:108::-;15259:7;15286:12;;15279:19;;15198:108;:::o;17508:422::-;17614:4;17631:36;17641:6;17649:9;17660:6;17631:9;:36::i;:::-;17680:24;17707:11;:19;17719:6;17707:19;;;;;;;;;;;;;;;:33;17727:12;:10;:12::i;:::-;17707:33;;;;;;;;;;;;;;;;17680:60;;17779:6;17759:16;:26;;17751:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;17841:57;17850:6;17858:12;:10;:12::i;:::-;17891:6;17872:16;:25;;;;:::i;:::-;17841:8;:57::i;:::-;17918:4;17911:11;;;17508:422;;;;;:::o;15033:100::-;15091:5;15116:9;;;;;;;;;;;15109:16;;15033:100;:::o;12577:51::-;;;;:::o;18339:215::-;18427:4;18444:80;18453:12;:10;:12::i;:::-;18467:7;18513:10;18476:11;:25;18488:12;:10;:12::i;:::-;18476:25;;;;;;;;;;;;;;;:34;18502:7;18476:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;18444:8;:80::i;:::-;18542:4;18535:11;;18339:215;;;;:::o;12744:29::-;;;;:::o;12677:28::-;;;;:::o;15369:127::-;15443:7;15470:9;:18;15480:7;15470:18;;;;;;;;;;;;;;;;15463:25;;15369:127;;;:::o;11579:148::-;11158:12;:10;:12::i;:::-;11148:22;;:6;;;;;;;;;;:22;;;11140:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11686:1:::1;11649:40;;11670:6;::::0;::::1;;;;;;;;11649:40;;;;;;;;;;;;11717:1;11700:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;11579:148::o:0;10936:79::-;10974:7;11001:6;;;;;;;;;;;10994:13;;10936:79;:::o;14290:104::-;14346:13;14379:7;14372:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14290:104;:::o;19057:377::-;19150:4;19167:24;19194:11;:25;19206:12;:10;:12::i;:::-;19194:25;;;;;;;;;;;;;;;:34;19220:7;19194:34;;;;;;;;;;;;;;;;19167:61;;19267:15;19247:16;:35;;19239:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;19335:67;19344:12;:10;:12::i;:::-;19358:7;19386:15;19367:16;:34;;;;:::i;:::-;19335:8;:67::i;:::-;19422:4;19415:11;;;19057:377;;;;:::o;15709:175::-;15795:4;15812:42;15822:12;:10;:12::i;:::-;15836:9;15847:6;15812:9;:42::i;:::-;15872:4;15865:11;;15709:175;;;;:::o;16423:603::-;11158:12;:10;:12::i;:::-;11148:22;;:6;;;;;;;;;;:22;;;11140:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16555:15:::1;16536;16512:21;;:39;;;;:::i;:::-;:58;;16504:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;16666:15;16642:20;16621:18;;:41;;;;:::i;:::-;:60;;16613:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;16926:4;:13;;;16940:10;;;;;;;;;;;16965:2;16952:10;;:15;;;;:::i;:::-;16926:42;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17003:15;16979:21;:39;;;;16423:603::o:0;12516:54::-;;;;:::o;15947:151::-;16036:7;16063:11;:18;16075:5;16063:18;;;;;;;;;;;;;;;:27;16082:7;16063:27;;;;;;;;;;;;;;;;16056:34;;15947:151;;;;:::o;12712:25::-;;;;:::o;11882:244::-;11158:12;:10;:12::i;:::-;11148:22;;:6;;;;;;;;;;:22;;;11140:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11991:1:::1;11971:22;;:8;:22;;;;11963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12081:8;12052:38;;12073:6;::::0;::::1;;;;;;;;12052:38;;;;;;;;;;;;12110:8;12101:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;11882:244:::0;:::o;12373:44::-;;;;;;;;;;;;;:::o;4215:98::-;4268:7;4295:10;4288:17;;4215:98;:::o;22492:346::-;22611:1;22594:19;;:5;:19;;;;22586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22692:1;22673:21;;:7;:21;;;;22665:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22776:6;22746:11;:18;22758:5;22746:18;;;;;;;;;;;;;;;:27;22765:7;22746:27;;;;;;;;;;;;;;;:36;;;;22814:7;22798:32;;22807:5;22798:32;;;22823:6;22798:32;;;;;;:::i;:::-;;;;;;;;22492:346;;;:::o;19924:604::-;20048:1;20030:20;;:6;:20;;;;20022:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20132:1;20111:23;;:9;:23;;;;20103:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20187:47;20208:6;20216:9;20227:6;20187:20;:47::i;:::-;20247:21;20271:9;:17;20281:6;20271:17;;;;;;;;;;;;;;;;20247:41;;20324:6;20307:13;:23;;20299:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20420:6;20404:13;:22;;;;:::i;:::-;20384:9;:17;20394:6;20384:17;;;;;;;;;;;;;;;:42;;;;20461:6;20437:9;:20;20447:9;20437:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;20502:9;20485:35;;20494:6;20485:35;;;20513:6;20485:35;;;;;;:::i;:::-;;;;;;;;20011:517;19924:604;;;:::o;23441:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:329::-;499:6;548:2;536:9;527:7;523:23;519:32;516:119;;;554:79;;:::i;:::-;516:119;674:1;699:53;744:7;735:6;724:9;720:22;699:53;:::i;:::-;689:63;;645:117;440:329;;;;:::o;775:474::-;843:6;851;900:2;888:9;879:7;875:23;871:32;868:119;;;906:79;;:::i;:::-;868:119;1026:1;1051:53;1096:7;1087:6;1076:9;1072:22;1051:53;:::i;:::-;1041:63;;997:117;1153:2;1179:53;1224:7;1215:6;1204:9;1200:22;1179:53;:::i;:::-;1169:63;;1124:118;775:474;;;;;:::o;1255:619::-;1332:6;1340;1348;1397:2;1385:9;1376:7;1372:23;1368:32;1365:119;;;1403:79;;:::i;:::-;1365:119;1523:1;1548:53;1593:7;1584:6;1573:9;1569:22;1548:53;:::i;:::-;1538:63;;1494:117;1650:2;1676:53;1721:7;1712:6;1701:9;1697:22;1676:53;:::i;:::-;1666:63;;1621:118;1778:2;1804:53;1849:7;1840:6;1829:9;1825:22;1804:53;:::i;:::-;1794:63;;1749:118;1255:619;;;;;:::o;1880:474::-;1948:6;1956;2005:2;1993:9;1984:7;1980:23;1976:32;1973:119;;;2011:79;;:::i;:::-;1973:119;2131:1;2156:53;2201:7;2192:6;2181:9;2177:22;2156:53;:::i;:::-;2146:63;;2102:117;2258:2;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2229:118;1880:474;;;;;:::o;2360:345::-;2427:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:119;;;2482:79;;:::i;:::-;2444:119;2602:1;2627:61;2680:7;2671:6;2660:9;2656:22;2627:61;:::i;:::-;2617:71;;2573:125;2360:345;;;;:::o;2711:118::-;2798:24;2816:5;2798:24;:::i;:::-;2793:3;2786:37;2711:118;;:::o;2835:109::-;2916:21;2931:5;2916:21;:::i;:::-;2911:3;2904:34;2835:109;;:::o;2950:364::-;3038:3;3066:39;3099:5;3066:39;:::i;:::-;3121:71;3185:6;3180:3;3121:71;:::i;:::-;3114:78;;3201:52;3246:6;3241:3;3234:4;3227:5;3223:16;3201:52;:::i;:::-;3278:29;3300:6;3278:29;:::i;:::-;3273:3;3269:39;3262:46;;3042:272;2950:364;;;;:::o;3320:366::-;3462:3;3483:67;3547:2;3542:3;3483:67;:::i;:::-;3476:74;;3559:93;3648:3;3559:93;:::i;:::-;3677:2;3672:3;3668:12;3661:19;;3320:366;;;:::o;3692:::-;3834:3;3855:67;3919:2;3914:3;3855:67;:::i;:::-;3848:74;;3931:93;4020:3;3931:93;:::i;:::-;4049:2;4044:3;4040:12;4033:19;;3692:366;;;:::o;4064:::-;4206:3;4227:67;4291:2;4286:3;4227:67;:::i;:::-;4220:74;;4303:93;4392:3;4303:93;:::i;:::-;4421:2;4416:3;4412:12;4405:19;;4064:366;;;:::o;4436:::-;4578:3;4599:67;4663:2;4658:3;4599:67;:::i;:::-;4592:74;;4675:93;4764:3;4675:93;:::i;:::-;4793:2;4788:3;4784:12;4777:19;;4436:366;;;:::o;4808:::-;4950:3;4971:67;5035:2;5030:3;4971:67;:::i;:::-;4964:74;;5047:93;5136:3;5047:93;:::i;:::-;5165:2;5160:3;5156:12;5149:19;;4808:366;;;:::o;5180:::-;5322:3;5343:67;5407:2;5402:3;5343:67;:::i;:::-;5336:74;;5419:93;5508:3;5419:93;:::i;:::-;5537:2;5532:3;5528:12;5521:19;;5180:366;;;:::o;5552:::-;5694:3;5715:67;5779:2;5774:3;5715:67;:::i;:::-;5708:74;;5791:93;5880:3;5791:93;:::i;:::-;5909:2;5904:3;5900:12;5893:19;;5552:366;;;:::o;5924:::-;6066:3;6087:67;6151:2;6146:3;6087:67;:::i;:::-;6080:74;;6163:93;6252:3;6163:93;:::i;:::-;6281:2;6276:3;6272:12;6265:19;;5924:366;;;:::o;6296:::-;6438:3;6459:67;6523:2;6518:3;6459:67;:::i;:::-;6452:74;;6535:93;6624:3;6535:93;:::i;:::-;6653:2;6648:3;6644:12;6637:19;;6296:366;;;:::o;6668:::-;6810:3;6831:67;6895:2;6890:3;6831:67;:::i;:::-;6824:74;;6907:93;6996:3;6907:93;:::i;:::-;7025:2;7020:3;7016:12;7009:19;;6668:366;;;:::o;7040:::-;7182:3;7203:67;7267:2;7262:3;7203:67;:::i;:::-;7196:74;;7279:93;7368:3;7279:93;:::i;:::-;7397:2;7392:3;7388:12;7381:19;;7040:366;;;:::o;7412:118::-;7499:24;7517:5;7499:24;:::i;:::-;7494:3;7487:37;7412:118;;:::o;7536:112::-;7619:22;7635:5;7619:22;:::i;:::-;7614:3;7607:35;7536:112;;:::o;7654:222::-;7747:4;7785:2;7774:9;7770:18;7762:26;;7798:71;7866:1;7855:9;7851:17;7842:6;7798:71;:::i;:::-;7654:222;;;;:::o;7882:332::-;8003:4;8041:2;8030:9;8026:18;8018:26;;8054:71;8122:1;8111:9;8107:17;8098:6;8054:71;:::i;:::-;8135:72;8203:2;8192:9;8188:18;8179:6;8135:72;:::i;:::-;7882:332;;;;;:::o;8220:210::-;8307:4;8345:2;8334:9;8330:18;8322:26;;8358:65;8420:1;8409:9;8405:17;8396:6;8358:65;:::i;:::-;8220:210;;;;:::o;8436:313::-;8549:4;8587:2;8576:9;8572:18;8564:26;;8636:9;8630:4;8626:20;8622:1;8611:9;8607:17;8600:47;8664:78;8737:4;8728:6;8664:78;:::i;:::-;8656:86;;8436:313;;;;:::o;8755:419::-;8921:4;8959:2;8948:9;8944:18;8936:26;;9008:9;9002:4;8998:20;8994:1;8983:9;8979:17;8972:47;9036:131;9162:4;9036:131;:::i;:::-;9028:139;;8755:419;;;:::o;9180:::-;9346:4;9384:2;9373:9;9369:18;9361:26;;9433:9;9427:4;9423:20;9419:1;9408:9;9404:17;9397:47;9461:131;9587:4;9461:131;:::i;:::-;9453:139;;9180:419;;;:::o;9605:::-;9771:4;9809:2;9798:9;9794:18;9786:26;;9858:9;9852:4;9848:20;9844:1;9833:9;9829:17;9822:47;9886:131;10012:4;9886:131;:::i;:::-;9878:139;;9605:419;;;:::o;10030:::-;10196:4;10234:2;10223:9;10219:18;10211:26;;10283:9;10277:4;10273:20;10269:1;10258:9;10254:17;10247:47;10311:131;10437:4;10311:131;:::i;:::-;10303:139;;10030:419;;;:::o;10455:::-;10621:4;10659:2;10648:9;10644:18;10636:26;;10708:9;10702:4;10698:20;10694:1;10683:9;10679:17;10672:47;10736:131;10862:4;10736:131;:::i;:::-;10728:139;;10455:419;;;:::o;10880:::-;11046:4;11084:2;11073:9;11069:18;11061:26;;11133:9;11127:4;11123:20;11119:1;11108:9;11104:17;11097:47;11161:131;11287:4;11161:131;:::i;:::-;11153:139;;10880:419;;;:::o;11305:::-;11471:4;11509:2;11498:9;11494:18;11486:26;;11558:9;11552:4;11548:20;11544:1;11533:9;11529:17;11522:47;11586:131;11712:4;11586:131;:::i;:::-;11578:139;;11305:419;;;:::o;11730:::-;11896:4;11934:2;11923:9;11919:18;11911:26;;11983:9;11977:4;11973:20;11969:1;11958:9;11954:17;11947:47;12011:131;12137:4;12011:131;:::i;:::-;12003:139;;11730:419;;;:::o;12155:::-;12321:4;12359:2;12348:9;12344:18;12336:26;;12408:9;12402:4;12398:20;12394:1;12383:9;12379:17;12372:47;12436:131;12562:4;12436:131;:::i;:::-;12428:139;;12155:419;;;:::o;12580:::-;12746:4;12784:2;12773:9;12769:18;12761:26;;12833:9;12827:4;12823:20;12819:1;12808:9;12804:17;12797:47;12861:131;12987:4;12861:131;:::i;:::-;12853:139;;12580:419;;;:::o;13005:::-;13171:4;13209:2;13198:9;13194:18;13186:26;;13258:9;13252:4;13248:20;13244:1;13233:9;13229:17;13222:47;13286:131;13412:4;13286:131;:::i;:::-;13278:139;;13005:419;;;:::o;13430:222::-;13523:4;13561:2;13550:9;13546:18;13538:26;;13574:71;13642:1;13631:9;13627:17;13618:6;13574:71;:::i;:::-;13430:222;;;;:::o;13658:214::-;13747:4;13785:2;13774:9;13770:18;13762:26;;13798:67;13862:1;13851:9;13847:17;13838:6;13798:67;:::i;:::-;13658:214;;;;:::o;13959:99::-;14011:6;14045:5;14039:12;14029:22;;13959:99;;;:::o;14064:169::-;14148:11;14182:6;14177:3;14170:19;14222:4;14217:3;14213:14;14198:29;;14064:169;;;;:::o;14239:305::-;14279:3;14298:20;14316:1;14298:20;:::i;:::-;14293:25;;14332:20;14350:1;14332:20;:::i;:::-;14327:25;;14486:1;14418:66;14414:74;14411:1;14408:81;14405:107;;;14492:18;;:::i;:::-;14405:107;14536:1;14533;14529:9;14522:16;;14239:305;;;;:::o;14550:185::-;14590:1;14607:20;14625:1;14607:20;:::i;:::-;14602:25;;14641:20;14659:1;14641:20;:::i;:::-;14636:25;;14680:1;14670:35;;14685:18;;:::i;:::-;14670:35;14727:1;14724;14720:9;14715:14;;14550:185;;;;:::o;14741:191::-;14781:4;14801:20;14819:1;14801:20;:::i;:::-;14796:25;;14835:20;14853:1;14835:20;:::i;:::-;14830:25;;14874:1;14871;14868:8;14865:34;;;14879:18;;:::i;:::-;14865:34;14924:1;14921;14917:9;14909:17;;14741:191;;;;:::o;14938:96::-;14975:7;15004:24;15022:5;15004:24;:::i;:::-;14993:35;;14938:96;;;:::o;15040:90::-;15074:7;15117:5;15110:13;15103:21;15092:32;;15040:90;;;:::o;15136:126::-;15173:7;15213:42;15206:5;15202:54;15191:65;;15136:126;;;:::o;15268:77::-;15305:7;15334:5;15323:16;;15268:77;;;:::o;15351:86::-;15386:7;15426:4;15419:5;15415:16;15404:27;;15351:86;;;:::o;15443:307::-;15511:1;15521:113;15535:6;15532:1;15529:13;15521:113;;;15620:1;15615:3;15611:11;15605:18;15601:1;15596:3;15592:11;15585:39;15557:2;15554:1;15550:10;15545:15;;15521:113;;;15652:6;15649:1;15646:13;15643:101;;;15732:1;15723:6;15718:3;15714:16;15707:27;15643:101;15492:258;15443:307;;;:::o;15756:320::-;15800:6;15837:1;15831:4;15827:12;15817:22;;15884:1;15878:4;15874:12;15905:18;15895:81;;15961:4;15953:6;15949:17;15939:27;;15895:81;16023:2;16015:6;16012:14;15992:18;15989:38;15986:84;;;16042:18;;:::i;:::-;15986:84;15807:269;15756:320;;;:::o;16082:180::-;16130:77;16127:1;16120:88;16227:4;16224:1;16217:15;16251:4;16248:1;16241:15;16268:180;16316:77;16313:1;16306:88;16413:4;16410:1;16403:15;16437:4;16434:1;16427:15;16454:180;16502:77;16499:1;16492:88;16599:4;16596:1;16589:15;16623:4;16620:1;16613:15;16763:117;16872:1;16869;16862:12;16886:102;16927:6;16978:2;16974:7;16969:2;16962:5;16958:14;16954:28;16944:38;;16886:102;;;:::o;16994:222::-;17134:34;17130:1;17122:6;17118:14;17111:58;17203:5;17198:2;17190:6;17186:15;17179:30;16994:222;:::o;17222:177::-;17362:29;17358:1;17350:6;17346:14;17339:53;17222:177;:::o;17405:::-;17545:29;17541:1;17533:6;17529:14;17522:53;17405:177;:::o;17588:225::-;17728:34;17724:1;17716:6;17712:14;17705:58;17797:8;17792:2;17784:6;17780:15;17773:33;17588:225;:::o;17819:221::-;17959:34;17955:1;17947:6;17943:14;17936:58;18028:4;18023:2;18015:6;18011:15;18004:29;17819:221;:::o;18046:225::-;18186:34;18182:1;18174:6;18170:14;18163:58;18255:8;18250:2;18242:6;18238:15;18231:33;18046:225;:::o;18277:227::-;18417:34;18413:1;18405:6;18401:14;18394:58;18486:10;18481:2;18473:6;18469:15;18462:35;18277:227;:::o;18510:182::-;18650:34;18646:1;18638:6;18634:14;18627:58;18510:182;:::o;18698:224::-;18838:34;18834:1;18826:6;18822:14;18815:58;18907:7;18902:2;18894:6;18890:15;18883:32;18698:224;:::o;18928:223::-;19068:34;19064:1;19056:6;19052:14;19045:58;19137:6;19132:2;19124:6;19120:15;19113:31;18928:223;:::o;19157:224::-;19297:34;19293:1;19285:6;19281:14;19274:58;19366:7;19361:2;19353:6;19349:15;19342:32;19157:224;:::o;19387:122::-;19460:24;19478:5;19460:24;:::i;:::-;19453:5;19450:35;19440:63;;19499:1;19496;19489:12;19440:63;19387:122;:::o;19515:116::-;19585:21;19600:5;19585:21;:::i;:::-;19578:5;19575:32;19565:60;;19621:1;19618;19611:12;19565:60;19515:116;:::o;19637:122::-;19710:24;19728:5;19710:24;:::i;:::-;19703:5;19700:35;19690:63;;19749:1;19746;19739:12;19690:63;19637:122;:::o

Swarm Source

ipfs://414935161659fa38bb955e762853b8d199c48c01a937738902278405b92cc221
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.