ETH Price: $2,602.03 (-1.70%)

Token

MOMI (MOMI)
 

Overview

Max Total Supply

420,690,000,000,000 MOMI

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000004431221066125 MOMI

Value
$0.00
0x1deca9d04e522decfab33f35c1c246fa9295a30b
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:
MOMI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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(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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/MOMI.sol

pragma solidity ^0.8.0;

contract MOMI is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    uint256 public antiSniperBlocks;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => uint) public lastTransactionBlock;

    constructor(uint256 _totalSupply) ERC20("MOMI", "MOMI") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function setAntiSniperBlocks(uint256 _antiSniperBlocks) external onlyOwner {
        antiSniperBlocks = _antiSniperBlocks;
    }

    function getAntiSniperBlocks() external view returns (uint256) {
        return antiSniperBlocks;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }

        // anti-sniper feature: check the last transaction block
        require(lastTransactionBlock[from] + antiSniperBlocks <= block.number, "No rapid transactions allowed");
        lastTransactionBlock[from] = block.number;
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"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":[],"name":"antiSniperBlocks","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getAntiSniperBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"lastTransactionBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_antiSniperBlocks","type":"uint256"}],"name":"setAntiSniperBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200319838038062003198833981810160405281019062000037919062000889565b6040518060400160405280600481526020017f4d4f4d49000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4d4900000000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620007c2565b508060059080519060200190620000f4929190620007c2565b505050620001093382620001dc60201b60201c565b5062000bfd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002469062000a76565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000ae8565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000ae8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000aba565b60405180910390a362000352600083836200074b60201b60201c565b5050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004349062000a98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200056157620004a56200075060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200075060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200055b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005529062000a54565b60405180910390fd5b62000746565b600660009054906101000a900460ff168015620005cb5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200066d5760075481620005eb846200077960201b620009a51760201c565b620005f7919062000ae8565b111580156200062a5750600854816200061b846200077960201b620009a51760201c565b62000627919062000ae8565b10155b6200066c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006639062000a10565b60405180910390fd5b5b43600954600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006bd919062000ae8565b111562000701576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f89062000a32565b60405180910390fd5b43600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620007d09062000b4f565b90600052602060002090601f016020900481019282620007f4576000855562000840565b82601f106200080f57805160ff191683800117855562000840565b8280016001018555821562000840579182015b828111156200083f57825182559160200191906001019062000822565b5b5090506200084f919062000853565b5090565b5b808211156200086e57600081600090555060010162000854565b5090565b600081519050620008838162000be3565b92915050565b6000602082840312156200089c57600080fd5b6000620008ac8482850162000872565b91505092915050565b6000620008c460068362000ad7565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600062000906601d8362000ad7565b91507f4e6f207261706964207472616e73616374696f6e7320616c6c6f7765640000006000830152602082019050919050565b60006200094860168362000ad7565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006200098a601f8362000ad7565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620009cc600b8362000ad7565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b62000a0a8162000b45565b82525050565b6000602082019050818103600083015262000a2b81620008b5565b9050919050565b6000602082019050818103600083015262000a4d81620008f7565b9050919050565b6000602082019050818103600083015262000a6f8162000939565b9050919050565b6000602082019050818103600083015262000a91816200097b565b9050919050565b6000602082019050818103600083015262000ab381620009bd565b9050919050565b600060208201905062000ad16000830184620009ff565b92915050565b600082825260208201905092915050565b600062000af58262000b45565b915062000b028362000b45565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b3a5762000b3962000b85565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000b6857607f821691505b6020821081141562000b7f5762000b7e62000bb4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000bee8162000b45565b811462000bfa57600080fd5b50565b61258b8062000c0d6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a707603811610097578063c2ac1dcf11610071578063c2ac1dcf1461049d578063dd62ed3e146104b9578063f2fde38b146104e9578063ffb68089146105055761018e565b8063a70760381461041f578063a9059cbb1461044f578063affd5be71461047f5761018e565b8063715018a61461036d578063860a32ec1461037757806389f9a1d3146103955780638da5cb5b146103b357806395d89b41146103d1578063a457c2d7146103ef5761018e565b8063313ce5671161014b578063404e512911610125578063404e5129146102e757806342966c681461030357806349bd5a5e1461031f57806370a082311461033d5761018e565b8063313ce5671461027d578063395093511461029b5780633aa633aa146102cb5761018e565b806306fdde0314610193578063095ea7b3146101b157806316c02129146101e157806318160ddd146102115780631ab99e121461022f57806323b872dd1461024d575b600080fd5b61019b610523565b6040516101a89190612109565b60405180910390f35b6101cb60048036038101906101c69190611a5a565b6105b5565b6040516101d891906120ee565b60405180910390f35b6101fb60048036038101906101f6919061196a565b6105d3565b60405161020891906120ee565b60405180910390f35b6102196105f3565b604051610226919061230b565b60405180910390f35b6102376105fd565b604051610244919061230b565b60405180910390f35b610267600480360381019061026291906119cf565b610603565b60405161027491906120ee565b60405180910390f35b6102856106fb565b6040516102929190612326565b60405180910390f35b6102b560048036038101906102b09190611a5a565b610704565b6040516102c291906120ee565b60405180910390f35b6102e560048036038101906102e09190611a96565b6107b0565b005b61030160048036038101906102fc9190611a1e565b61089b565b005b61031d60048036038101906103189190611af9565b610972565b005b61032761097f565b60405161033491906120d3565b60405180910390f35b6103576004803603810190610352919061196a565b6109a5565b604051610364919061230b565b60405180910390f35b6103756109ee565b005b61037f610a76565b60405161038c91906120ee565b60405180910390f35b61039d610a89565b6040516103aa919061230b565b60405180910390f35b6103bb610a8f565b6040516103c891906120d3565b60405180910390f35b6103d9610ab8565b6040516103e69190612109565b60405180910390f35b61040960048036038101906104049190611a5a565b610b4a565b60405161041691906120ee565b60405180910390f35b6104396004803603810190610434919061196a565b610c35565b604051610446919061230b565b60405180910390f35b61046960048036038101906104649190611a5a565b610c4d565b60405161047691906120ee565b60405180910390f35b610487610c6b565b604051610494919061230b565b60405180910390f35b6104b760048036038101906104b29190611af9565b610c75565b005b6104d360048036038101906104ce9190611993565b610cfb565b6040516104e0919061230b565b60405180910390f35b61050360048036038101906104fe919061196a565b610d82565b005b61050d610e7a565b60405161051a919061230b565b60405180910390f35b6060600480546105329061246f565b80601f016020809104026020016040519081016040528092919081815260200182805461055e9061246f565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c96105c2610e80565b8484610e88565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610610848484611053565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061065b610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d29061220b565b60405180910390fd5b6106ef856106e7610e80565b858403610e88565b60019150509392505050565b60006012905090565b60006107a6610711610e80565b84846002600061071f610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a1919061235d565b610e88565b6001905092915050565b6107b8610e80565b73ffffffffffffffffffffffffffffffffffffffff166107d6610a8f565b73ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061222b565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6108a3610e80565b73ffffffffffffffffffffffffffffffffffffffff166108c1610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e9061222b565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61097c33826112d7565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f6610e80565b73ffffffffffffffffffffffffffffffffffffffff16610a14610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061222b565b60405180910390fd5b610a7460006114b0565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610ac79061246f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af39061246f565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b60008060026000610b59610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d906122cb565b60405180910390fd5b610c2a610c21610e80565b85858403610e88565b600191505092915050565b600c6020528060005260406000206000915090505481565b6000610c61610c5a610e80565b8484611053565b6001905092915050565b6000600954905090565b610c7d610e80565b73ffffffffffffffffffffffffffffffffffffffff16610c9b610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061222b565b60405180910390fd5b8060098190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d8a610e80565b73ffffffffffffffffffffffffffffffffffffffff16610da8610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df59061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061216b565b60405180910390fd5b610e77816114b0565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906122ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f9061218b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611046919061230b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba9061228b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061212b565b60405180910390fd5b61113e838383611574565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc906121ab565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125a919061235d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112be919061230b565b60405180910390a36112d1848484611926565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061224b565b60405180910390fd5b61135382600083611574565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061214b565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461143291906123b3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611497919061230b565b60405180910390a36114ab83600084611926565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116185750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906122eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611765576116b6610a8f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061172157506116f2610a8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117579061226b565b60405180910390fd5b611921565b600660009054906101000a900460ff1680156117ce5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561184d57600754816117e0846109a5565b6117ea919061235d565b1115801561180d575060085481611800846109a5565b61180a919061235d565b10155b61184c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611843906121cb565b60405180910390fd5b5b43600954600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b919061235d565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906121eb565b60405180910390fd5b43600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b60008135905061193a81612510565b92915050565b60008135905061194f81612527565b92915050565b6000813590506119648161253e565b92915050565b60006020828403121561197c57600080fd5b600061198a8482850161192b565b91505092915050565b600080604083850312156119a657600080fd5b60006119b48582860161192b565b92505060206119c58582860161192b565b9150509250929050565b6000806000606084860312156119e457600080fd5b60006119f28682870161192b565b9350506020611a038682870161192b565b9250506040611a1486828701611955565b9150509250925092565b60008060408385031215611a3157600080fd5b6000611a3f8582860161192b565b9250506020611a5085828601611940565b9150509250929050565b60008060408385031215611a6d57600080fd5b6000611a7b8582860161192b565b9250506020611a8c85828601611955565b9150509250929050565b60008060008060808587031215611aac57600080fd5b6000611aba87828801611940565b9450506020611acb8782880161192b565b9350506040611adc87828801611955565b9250506060611aed87828801611955565b91505092959194509250565b600060208284031215611b0b57600080fd5b6000611b1984828501611955565b91505092915050565b611b2b816123e7565b82525050565b611b3a816123f9565b82525050565b6000611b4b82612341565b611b55818561234c565b9350611b6581856020860161243c565b611b6e816124ff565b840191505092915050565b6000611b8660238361234c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bec60228361234c565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c5260268361234c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb860228361234c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d1e60268361234c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d8460068361234c565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611dc4601d8361234c565b91507f4e6f207261706964207472616e73616374696f6e7320616c6c6f7765640000006000830152602082019050919050565b6000611e0460288361234c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6a60208361234c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611eaa60218361234c565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f1060168361234c565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611f5060258361234c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fb660248361234c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061201c60258361234c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612082600b8361234c565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b6120be81612425565b82525050565b6120cd8161242f565b82525050565b60006020820190506120e86000830184611b22565b92915050565b60006020820190506121036000830184611b31565b92915050565b600060208201905081810360008301526121238184611b40565b905092915050565b6000602082019050818103600083015261214481611b79565b9050919050565b6000602082019050818103600083015261216481611bdf565b9050919050565b6000602082019050818103600083015261218481611c45565b9050919050565b600060208201905081810360008301526121a481611cab565b9050919050565b600060208201905081810360008301526121c481611d11565b9050919050565b600060208201905081810360008301526121e481611d77565b9050919050565b6000602082019050818103600083015261220481611db7565b9050919050565b6000602082019050818103600083015261222481611df7565b9050919050565b6000602082019050818103600083015261224481611e5d565b9050919050565b6000602082019050818103600083015261226481611e9d565b9050919050565b6000602082019050818103600083015261228481611f03565b9050919050565b600060208201905081810360008301526122a481611f43565b9050919050565b600060208201905081810360008301526122c481611fa9565b9050919050565b600060208201905081810360008301526122e48161200f565b9050919050565b6000602082019050818103600083015261230481612075565b9050919050565b600060208201905061232060008301846120b5565b92915050565b600060208201905061233b60008301846120c4565b92915050565b600081519050919050565b600082825260208201905092915050565b600061236882612425565b915061237383612425565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123a8576123a76124a1565b5b828201905092915050565b60006123be82612425565b91506123c983612425565b9250828210156123dc576123db6124a1565b5b828203905092915050565b60006123f282612405565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561245a57808201518184015260208101905061243f565b83811115612469576000848401525b50505050565b6000600282049050600182168061248757607f821691505b6020821081141561249b5761249a6124d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612519816123e7565b811461252457600080fd5b50565b612530816123f9565b811461253b57600080fd5b50565b61254781612425565b811461255257600080fd5b5056fea2646970667358221220d43e1bcd6c8aafff4f86a6d87aa78f452e4bd2b3a9970c86217a8b8a8bc883de64736f6c6343000800003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a707603811610097578063c2ac1dcf11610071578063c2ac1dcf1461049d578063dd62ed3e146104b9578063f2fde38b146104e9578063ffb68089146105055761018e565b8063a70760381461041f578063a9059cbb1461044f578063affd5be71461047f5761018e565b8063715018a61461036d578063860a32ec1461037757806389f9a1d3146103955780638da5cb5b146103b357806395d89b41146103d1578063a457c2d7146103ef5761018e565b8063313ce5671161014b578063404e512911610125578063404e5129146102e757806342966c681461030357806349bd5a5e1461031f57806370a082311461033d5761018e565b8063313ce5671461027d578063395093511461029b5780633aa633aa146102cb5761018e565b806306fdde0314610193578063095ea7b3146101b157806316c02129146101e157806318160ddd146102115780631ab99e121461022f57806323b872dd1461024d575b600080fd5b61019b610523565b6040516101a89190612109565b60405180910390f35b6101cb60048036038101906101c69190611a5a565b6105b5565b6040516101d891906120ee565b60405180910390f35b6101fb60048036038101906101f6919061196a565b6105d3565b60405161020891906120ee565b60405180910390f35b6102196105f3565b604051610226919061230b565b60405180910390f35b6102376105fd565b604051610244919061230b565b60405180910390f35b610267600480360381019061026291906119cf565b610603565b60405161027491906120ee565b60405180910390f35b6102856106fb565b6040516102929190612326565b60405180910390f35b6102b560048036038101906102b09190611a5a565b610704565b6040516102c291906120ee565b60405180910390f35b6102e560048036038101906102e09190611a96565b6107b0565b005b61030160048036038101906102fc9190611a1e565b61089b565b005b61031d60048036038101906103189190611af9565b610972565b005b61032761097f565b60405161033491906120d3565b60405180910390f35b6103576004803603810190610352919061196a565b6109a5565b604051610364919061230b565b60405180910390f35b6103756109ee565b005b61037f610a76565b60405161038c91906120ee565b60405180910390f35b61039d610a89565b6040516103aa919061230b565b60405180910390f35b6103bb610a8f565b6040516103c891906120d3565b60405180910390f35b6103d9610ab8565b6040516103e69190612109565b60405180910390f35b61040960048036038101906104049190611a5a565b610b4a565b60405161041691906120ee565b60405180910390f35b6104396004803603810190610434919061196a565b610c35565b604051610446919061230b565b60405180910390f35b61046960048036038101906104649190611a5a565b610c4d565b60405161047691906120ee565b60405180910390f35b610487610c6b565b604051610494919061230b565b60405180910390f35b6104b760048036038101906104b29190611af9565b610c75565b005b6104d360048036038101906104ce9190611993565b610cfb565b6040516104e0919061230b565b60405180910390f35b61050360048036038101906104fe919061196a565b610d82565b005b61050d610e7a565b60405161051a919061230b565b60405180910390f35b6060600480546105329061246f565b80601f016020809104026020016040519081016040528092919081815260200182805461055e9061246f565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c96105c2610e80565b8484610e88565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610610848484611053565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061065b610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d29061220b565b60405180910390fd5b6106ef856106e7610e80565b858403610e88565b60019150509392505050565b60006012905090565b60006107a6610711610e80565b84846002600061071f610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107a1919061235d565b610e88565b6001905092915050565b6107b8610e80565b73ffffffffffffffffffffffffffffffffffffffff166107d6610a8f565b73ffffffffffffffffffffffffffffffffffffffff161461082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061222b565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6108a3610e80565b73ffffffffffffffffffffffffffffffffffffffff166108c1610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e9061222b565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61097c33826112d7565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109f6610e80565b73ffffffffffffffffffffffffffffffffffffffff16610a14610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061222b565b60405180910390fd5b610a7460006114b0565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610ac79061246f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af39061246f565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b60008060026000610b59610e80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d906122cb565b60405180910390fd5b610c2a610c21610e80565b85858403610e88565b600191505092915050565b600c6020528060005260406000206000915090505481565b6000610c61610c5a610e80565b8484611053565b6001905092915050565b6000600954905090565b610c7d610e80565b73ffffffffffffffffffffffffffffffffffffffff16610c9b610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce89061222b565b60405180910390fd5b8060098190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d8a610e80565b73ffffffffffffffffffffffffffffffffffffffff16610da8610a8f565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df59061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061216b565b60405180910390fd5b610e77816114b0565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906122ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f9061218b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611046919061230b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba9061228b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061212b565b60405180910390fd5b61113e838383611574565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc906121ab565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461125a919061235d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112be919061230b565b60405180910390a36112d1848484611926565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e9061224b565b60405180910390fd5b61135382600083611574565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061214b565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461143291906123b3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611497919061230b565b60405180910390a36114ab83600084611926565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116185750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906122eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611765576116b6610a8f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061172157506116f2610a8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117579061226b565b60405180910390fd5b611921565b600660009054906101000a900460ff1680156117ce5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561184d57600754816117e0846109a5565b6117ea919061235d565b1115801561180d575060085481611800846109a5565b61180a919061235d565b10155b61184c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611843906121cb565b60405180910390fd5b5b43600954600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b919061235d565b11156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906121eb565b60405180910390fd5b43600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b60008135905061193a81612510565b92915050565b60008135905061194f81612527565b92915050565b6000813590506119648161253e565b92915050565b60006020828403121561197c57600080fd5b600061198a8482850161192b565b91505092915050565b600080604083850312156119a657600080fd5b60006119b48582860161192b565b92505060206119c58582860161192b565b9150509250929050565b6000806000606084860312156119e457600080fd5b60006119f28682870161192b565b9350506020611a038682870161192b565b9250506040611a1486828701611955565b9150509250925092565b60008060408385031215611a3157600080fd5b6000611a3f8582860161192b565b9250506020611a5085828601611940565b9150509250929050565b60008060408385031215611a6d57600080fd5b6000611a7b8582860161192b565b9250506020611a8c85828601611955565b9150509250929050565b60008060008060808587031215611aac57600080fd5b6000611aba87828801611940565b9450506020611acb8782880161192b565b9350506040611adc87828801611955565b9250506060611aed87828801611955565b91505092959194509250565b600060208284031215611b0b57600080fd5b6000611b1984828501611955565b91505092915050565b611b2b816123e7565b82525050565b611b3a816123f9565b82525050565b6000611b4b82612341565b611b55818561234c565b9350611b6581856020860161243c565b611b6e816124ff565b840191505092915050565b6000611b8660238361234c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bec60228361234c565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c5260268361234c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb860228361234c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d1e60268361234c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d8460068361234c565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611dc4601d8361234c565b91507f4e6f207261706964207472616e73616374696f6e7320616c6c6f7765640000006000830152602082019050919050565b6000611e0460288361234c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6a60208361234c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611eaa60218361234c565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f1060168361234c565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611f5060258361234c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fb660248361234c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061201c60258361234c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612082600b8361234c565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b6120be81612425565b82525050565b6120cd8161242f565b82525050565b60006020820190506120e86000830184611b22565b92915050565b60006020820190506121036000830184611b31565b92915050565b600060208201905081810360008301526121238184611b40565b905092915050565b6000602082019050818103600083015261214481611b79565b9050919050565b6000602082019050818103600083015261216481611bdf565b9050919050565b6000602082019050818103600083015261218481611c45565b9050919050565b600060208201905081810360008301526121a481611cab565b9050919050565b600060208201905081810360008301526121c481611d11565b9050919050565b600060208201905081810360008301526121e481611d77565b9050919050565b6000602082019050818103600083015261220481611db7565b9050919050565b6000602082019050818103600083015261222481611df7565b9050919050565b6000602082019050818103600083015261224481611e5d565b9050919050565b6000602082019050818103600083015261226481611e9d565b9050919050565b6000602082019050818103600083015261228481611f03565b9050919050565b600060208201905081810360008301526122a481611f43565b9050919050565b600060208201905081810360008301526122c481611fa9565b9050919050565b600060208201905081810360008301526122e48161200f565b9050919050565b6000602082019050818103600083015261230481612075565b9050919050565b600060208201905061232060008301846120b5565b92915050565b600060208201905061233b60008301846120c4565b92915050565b600081519050919050565b600082825260208201905092915050565b600061236882612425565b915061237383612425565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123a8576123a76124a1565b5b828201905092915050565b60006123be82612425565b91506123c983612425565b9250828210156123dc576123db6124a1565b5b828203905092915050565b60006123f282612405565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561245a57808201518184015260208101905061243f565b83811115612469576000848401525b50505050565b6000600282049050600182168061248757607f821691505b6020821081141561249b5761249a6124d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612519816123e7565b811461252457600080fd5b50565b612530816123f9565b811461253b57600080fd5b50565b61254781612425565b811461255257600080fd5b5056fea2646970667358221220d43e1bcd6c8aafff4f86a6d87aa78f452e4bd2b3a9970c86217a8b8a8bc883de64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19208:2034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9188:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11355:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19422:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10308:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19311:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12006:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10150:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12907:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19789:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19646:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21158:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19387:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10479:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2589:103;;;:::i;:::-;;19247:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19273:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1938:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9407:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13625:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19471:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10819:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20236:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20098:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11057:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19349:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9188:100;9242:13;9275:5;9268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9188:100;:::o;11355:169::-;11438:4;11455:39;11464:12;:10;:12::i;:::-;11478:7;11487:6;11455:8;:39::i;:::-;11512:4;11505:11;;11355:169;;;;:::o;19422:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10308:108::-;10369:7;10396:12;;10389:19;;10308:108;:::o;19311:31::-;;;;:::o;12006:492::-;12146:4;12163:36;12173:6;12181:9;12192:6;12163:9;:36::i;:::-;12212:24;12239:11;:19;12251:6;12239:19;;;;;;;;;;;;;;;:33;12259:12;:10;:12::i;:::-;12239:33;;;;;;;;;;;;;;;;12212:60;;12311:6;12291:16;:26;;12283:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12398:57;12407:6;12415:12;:10;:12::i;:::-;12448:6;12429:16;:25;12398:8;:57::i;:::-;12486:4;12479:11;;;12006:492;;;;;:::o;10150:93::-;10208:5;10233:2;10226:9;;10150:93;:::o;12907:215::-;12995:4;13012:80;13021:12;:10;:12::i;:::-;13035:7;13081:10;13044:11;:25;13056:12;:10;:12::i;:::-;13044:25;;;;;;;;;;;;;;;:34;13070:7;13044:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13012:8;:80::i;:::-;13110:4;13103:11;;12907:215;;;;:::o;19789:301::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19939:8:::1;19929:7;;:18;;;;;;;;;;;;;;;;;;19974:14;19958:13;;:30;;;;;;;;;;;;;;;;;;20018:17;19999:16;:36;;;;20065:17;20046:16;:36;;;;19789:301:::0;;;;:::o;19646:135::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19758:15:::1;19735:10;:20;19746:8;19735:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19646:135:::0;;:::o;21158:81::-;21207:24;21213:10;21225:5;21207;:24::i;:::-;21158:81;:::o;19387:28::-;;;;;;;;;;;;;:::o;10479:127::-;10553:7;10580:9;:18;10590:7;10580:18;;;;;;;;;;;;;;;;10573:25;;10479:127;;;:::o;2589:103::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;19247:19::-;;;;;;;;;;;;;:::o;19273:31::-;;;;:::o;1938:87::-;1984:7;2011:6;;;;;;;;;;;2004:13;;1938:87;:::o;9407:104::-;9463:13;9496:7;9489:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9407:104;:::o;13625:413::-;13718:4;13735:24;13762:11;:25;13774:12;:10;:12::i;:::-;13762:25;;;;;;;;;;;;;;;:34;13788:7;13762:34;;;;;;;;;;;;;;;;13735:61;;13835:15;13815:16;:35;;13807:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13928:67;13937:12;:10;:12::i;:::-;13951:7;13979:15;13960:16;:34;13928:8;:67::i;:::-;14026:4;14019:11;;;13625:413;;;;:::o;19471:52::-;;;;;;;;;;;;;;;;;:::o;10819:175::-;10905:4;10922:42;10932:12;:10;:12::i;:::-;10946:9;10957:6;10922:9;:42::i;:::-;10982:4;10975:11;;10819:175;;;;:::o;20236:105::-;20290:7;20317:16;;20310:23;;20236:105;:::o;20098:130::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20203:17:::1;20184:16;:36;;;;20098:130:::0;:::o;11057:151::-;11146:7;11173:11;:18;11185:5;11173:18;;;;;;;;;;;;;;;:27;11192:7;11173:27;;;;;;;;;;;;;;;;11166:34;;11057:151;;;;:::o;2847:201::-;2169:12;:10;:12::i;:::-;2158:23;;:7;:5;:7::i;:::-;:23;;;2150:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2956:1:::1;2936:22;;:8;:22;;;;2928:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3012:28;3031:8;3012:18;:28::i;:::-;2847:201:::0;:::o;19349:31::-;;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;17309:380::-;17462:1;17445:19;;:5;:19;;;;17437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17543:1;17524:21;;:7;:21;;;;17516:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17627:6;17597:11;:18;17609:5;17597:18;;;;;;;;;;;;;;;:27;17616:7;17597:27;;;;;;;;;;;;;;;:36;;;;17665:7;17649:32;;17658:5;17649:32;;;17674:6;17649:32;;;;;;:::i;:::-;;;;;;;;17309:380;;;:::o;14528:733::-;14686:1;14668:20;;:6;:20;;;;14660:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14770:1;14749:23;;:9;:23;;;;14741:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14825:47;14846:6;14854:9;14865:6;14825:20;:47::i;:::-;14885:21;14909:9;:17;14919:6;14909:17;;;;;;;;;;;;;;;;14885:41;;14962:6;14945:13;:23;;14937:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15083:6;15067:13;:22;15047:9;:17;15057:6;15047:17;;;;;;;;;;;;;;;:42;;;;15135:6;15111:9;:20;15121:9;15111:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15176:9;15159:35;;15168:6;15159:35;;;15187:6;15159:35;;;;;;:::i;:::-;;;;;;;;15207:46;15227:6;15235:9;15246:6;15207:19;:46::i;:::-;14528:733;;;;:::o;16280:591::-;16383:1;16364:21;;:7;:21;;;;16356:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16436:49;16457:7;16474:1;16478:6;16436:20;:49::i;:::-;16498:22;16523:9;:18;16533:7;16523:18;;;;;;;;;;;;;;;;16498:43;;16578:6;16560:14;:24;;16552:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16697:6;16680:14;:23;16659:9;:18;16669:7;16659:18;;;;;;;;;;;;;;;:44;;;;16741:6;16725:12;;:22;;;;;;;:::i;:::-;;;;;;;;16791:1;16765:37;;16774:7;16765:37;;;16795:6;16765:37;;;;;;:::i;:::-;;;;;;;;16815:48;16835:7;16852:1;16856:6;16815:19;:48::i;:::-;16280:591;;;:::o;3208:191::-;3282:16;3301:6;;;;;;;;;;;3282:25;;3327:8;3318:6;;:17;;;;;;;;;;;;;;;;;;3382:8;3351:40;;3372:8;3351:40;;;;;;;;;;;;3208:191;;:::o;20349:801::-;20501:10;:14;20512:2;20501:14;;;;;;;;;;;;;;;;;;;;;;;;;20500:15;:36;;;;;20520:10;:16;20531:4;20520:16;;;;;;;;;;;;;;;;;;;;;;;;;20519:17;20500:36;20492:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20594:1;20569:27;;:13;;;;;;;;;;;:27;;;20565:148;;;20629:7;:5;:7::i;:::-;20621:15;;:4;:15;;;:32;;;;20646:7;:5;:7::i;:::-;20640:13;;:2;:13;;;20621:32;20613:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20695:7;;20565:148;20729:7;;;;;;;;;;;:32;;;;;20748:13;;;;;;;;;;;20740:21;;:4;:21;;;20729:32;20725:184;;;20818:16;;20808:6;20786:19;20802:2;20786:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20870:16;;20860:6;20838:19;20854:2;20838:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20786:100;20778:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20725:184;21044:12;21024:16;;20995:20;:26;21016:4;20995:26;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:61;;20987:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;21130:12;21101:20;:26;21122:4;21101:26;;;;;;;;;;;;;;;:41;;;;20349:801;;;;:::o;19018:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:692::-;;;;;2651:3;2639:9;2630:7;2626:23;2622:33;2619:2;;;2668:1;2665;2658:12;2619:2;2711:1;2736:50;2778:7;2769:6;2758:9;2754:22;2736:50;:::i;:::-;2726:60;;2682:114;2835:2;2861:53;2906:7;2897:6;2886:9;2882:22;2861:53;:::i;:::-;2851:63;;2806:118;2963:2;2989:53;3034:7;3025:6;3014:9;3010:22;2989:53;:::i;:::-;2979:63;;2934:118;3091:2;3117:53;3162:7;3153:6;3142:9;3138:22;3117:53;:::i;:::-;3107:63;;3062:118;2609:578;;;;;;;:::o;3193:262::-;;3301:2;3289:9;3280:7;3276:23;3272:32;3269:2;;;3317:1;3314;3307:12;3269:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3259:196;;;;:::o;3461:118::-;3548:24;3566:5;3548:24;:::i;:::-;3543:3;3536:37;3526:53;;:::o;3585:109::-;3666:21;3681:5;3666:21;:::i;:::-;3661:3;3654:34;3644:50;;:::o;3700:364::-;;3816:39;3849:5;3816:39;:::i;:::-;3871:71;3935:6;3930:3;3871:71;:::i;:::-;3864:78;;3951:52;3996:6;3991:3;3984:4;3977:5;3973:16;3951:52;:::i;:::-;4028:29;4050:6;4028:29;:::i;:::-;4023:3;4019:39;4012:46;;3792:272;;;;;:::o;4070:367::-;;4233:67;4297:2;4292:3;4233:67;:::i;:::-;4226:74;;4330:34;4326:1;4321:3;4317:11;4310:55;4396:5;4391:2;4386:3;4382:12;4375:27;4428:2;4423:3;4419:12;4412:19;;4216:221;;;:::o;4443:366::-;;4606:67;4670:2;4665:3;4606:67;:::i;:::-;4599:74;;4703:34;4699:1;4694:3;4690:11;4683:55;4769:4;4764:2;4759:3;4755:12;4748:26;4800:2;4795:3;4791:12;4784:19;;4589:220;;;:::o;4815:370::-;;4978:67;5042:2;5037:3;4978:67;:::i;:::-;4971:74;;5075:34;5071:1;5066:3;5062:11;5055:55;5141:8;5136:2;5131:3;5127:12;5120:30;5176:2;5171:3;5167:12;5160:19;;4961:224;;;:::o;5191:366::-;;5354:67;5418:2;5413:3;5354:67;:::i;:::-;5347:74;;5451:34;5447:1;5442:3;5438:11;5431:55;5517:4;5512:2;5507:3;5503:12;5496:26;5548:2;5543:3;5539:12;5532:19;;5337:220;;;:::o;5563:370::-;;5726:67;5790:2;5785:3;5726:67;:::i;:::-;5719:74;;5823:34;5819:1;5814:3;5810:11;5803:55;5889:8;5884:2;5879:3;5875:12;5868:30;5924:2;5919:3;5915:12;5908:19;;5709:224;;;:::o;5939:303::-;;6102:66;6166:1;6161:3;6102:66;:::i;:::-;6095:73;;6198:8;6194:1;6189:3;6185:11;6178:29;6233:2;6228:3;6224:12;6217:19;;6085:157;;;:::o;6248:327::-;;6411:67;6475:2;6470:3;6411:67;:::i;:::-;6404:74;;6508:31;6504:1;6499:3;6495:11;6488:52;6566:2;6561:3;6557:12;6550:19;;6394:181;;;:::o;6581:372::-;;6744:67;6808:2;6803:3;6744:67;:::i;:::-;6737:74;;6841:34;6837:1;6832:3;6828:11;6821:55;6907:10;6902:2;6897:3;6893:12;6886:32;6944:2;6939:3;6935:12;6928:19;;6727:226;;;:::o;6959:330::-;;7122:67;7186:2;7181:3;7122:67;:::i;:::-;7115:74;;7219:34;7215:1;7210:3;7206:11;7199:55;7280:2;7275:3;7271:12;7264:19;;7105:184;;;:::o;7295:365::-;;7458:67;7522:2;7517:3;7458:67;:::i;:::-;7451:74;;7555:34;7551:1;7546:3;7542:11;7535:55;7621:3;7616:2;7611:3;7607:12;7600:25;7651:2;7646:3;7642:12;7635:19;;7441:219;;;:::o;7666:320::-;;7829:67;7893:2;7888:3;7829:67;:::i;:::-;7822:74;;7926:24;7922:1;7917:3;7913:11;7906:45;7977:2;7972:3;7968:12;7961:19;;7812:174;;;:::o;7992:369::-;;8155:67;8219:2;8214:3;8155:67;:::i;:::-;8148:74;;8252:34;8248:1;8243:3;8239:11;8232:55;8318:7;8313:2;8308:3;8304:12;8297:29;8352:2;8347:3;8343:12;8336:19;;8138:223;;;:::o;8367:368::-;;8530:67;8594:2;8589:3;8530:67;:::i;:::-;8523:74;;8627:34;8623:1;8618:3;8614:11;8607:55;8693:6;8688:2;8683:3;8679:12;8672:28;8726:2;8721:3;8717:12;8710:19;;8513:222;;;:::o;8741:369::-;;8904:67;8968:2;8963:3;8904:67;:::i;:::-;8897:74;;9001:34;8997:1;8992:3;8988:11;8981:55;9067:7;9062:2;9057:3;9053:12;9046:29;9101:2;9096:3;9092:12;9085:19;;8887:223;;;:::o;9116:309::-;;9279:67;9343:2;9338:3;9279:67;:::i;:::-;9272:74;;9376:13;9372:1;9367:3;9363:11;9356:34;9416:2;9411:3;9407:12;9400:19;;9262:163;;;:::o;9431:118::-;9518:24;9536:5;9518:24;:::i;:::-;9513:3;9506:37;9496:53;;:::o;9555:112::-;9638:22;9654:5;9638:22;:::i;:::-;9633:3;9626:35;9616:51;;:::o;9673:222::-;;9804:2;9793:9;9789:18;9781:26;;9817:71;9885:1;9874:9;9870:17;9861:6;9817:71;:::i;:::-;9771:124;;;;:::o;9901:210::-;;10026:2;10015:9;10011:18;10003:26;;10039:65;10101:1;10090:9;10086:17;10077:6;10039:65;:::i;:::-;9993:118;;;;:::o;10117:313::-;;10268:2;10257:9;10253:18;10245:26;;10317:9;10311:4;10307:20;10303:1;10292:9;10288:17;10281:47;10345:78;10418:4;10409:6;10345:78;:::i;:::-;10337:86;;10235:195;;;;:::o;10436:419::-;;10640:2;10629:9;10625:18;10617:26;;10689:9;10683:4;10679:20;10675:1;10664:9;10660:17;10653:47;10717:131;10843:4;10717:131;:::i;:::-;10709:139;;10607:248;;;:::o;10861:419::-;;11065:2;11054:9;11050:18;11042:26;;11114:9;11108:4;11104:20;11100:1;11089:9;11085:17;11078:47;11142:131;11268:4;11142:131;:::i;:::-;11134:139;;11032:248;;;:::o;11286:419::-;;11490:2;11479:9;11475:18;11467:26;;11539:9;11533:4;11529:20;11525:1;11514:9;11510:17;11503:47;11567:131;11693:4;11567:131;:::i;:::-;11559:139;;11457:248;;;:::o;11711:419::-;;11915:2;11904:9;11900:18;11892:26;;11964:9;11958:4;11954:20;11950:1;11939:9;11935:17;11928:47;11992:131;12118:4;11992:131;:::i;:::-;11984:139;;11882:248;;;:::o;12136:419::-;;12340:2;12329:9;12325:18;12317:26;;12389:9;12383:4;12379:20;12375:1;12364:9;12360:17;12353:47;12417:131;12543:4;12417:131;:::i;:::-;12409:139;;12307:248;;;:::o;12561:419::-;;12765:2;12754:9;12750:18;12742:26;;12814:9;12808:4;12804:20;12800:1;12789:9;12785:17;12778:47;12842:131;12968:4;12842:131;:::i;:::-;12834:139;;12732:248;;;:::o;12986:419::-;;13190:2;13179:9;13175:18;13167:26;;13239:9;13233:4;13229:20;13225:1;13214:9;13210:17;13203:47;13267:131;13393:4;13267:131;:::i;:::-;13259:139;;13157:248;;;:::o;13411:419::-;;13615:2;13604:9;13600:18;13592:26;;13664:9;13658:4;13654:20;13650:1;13639:9;13635:17;13628:47;13692:131;13818:4;13692:131;:::i;:::-;13684:139;;13582:248;;;:::o;13836:419::-;;14040:2;14029:9;14025:18;14017:26;;14089:9;14083:4;14079:20;14075:1;14064:9;14060:17;14053:47;14117:131;14243:4;14117:131;:::i;:::-;14109:139;;14007:248;;;:::o;14261:419::-;;14465:2;14454:9;14450:18;14442:26;;14514:9;14508:4;14504:20;14500:1;14489:9;14485:17;14478:47;14542:131;14668:4;14542:131;:::i;:::-;14534:139;;14432:248;;;:::o;14686:419::-;;14890:2;14879:9;14875:18;14867:26;;14939:9;14933:4;14929:20;14925:1;14914:9;14910:17;14903:47;14967:131;15093:4;14967:131;:::i;:::-;14959:139;;14857:248;;;:::o;15111:419::-;;15315:2;15304:9;15300:18;15292:26;;15364:9;15358:4;15354:20;15350:1;15339:9;15335:17;15328:47;15392:131;15518:4;15392:131;:::i;:::-;15384:139;;15282:248;;;:::o;15536:419::-;;15740:2;15729:9;15725:18;15717:26;;15789:9;15783:4;15779:20;15775:1;15764:9;15760:17;15753:47;15817:131;15943:4;15817:131;:::i;:::-;15809:139;;15707:248;;;:::o;15961:419::-;;16165:2;16154:9;16150:18;16142:26;;16214:9;16208:4;16204:20;16200:1;16189:9;16185:17;16178:47;16242:131;16368:4;16242:131;:::i;:::-;16234:139;;16132:248;;;:::o;16386:419::-;;16590:2;16579:9;16575:18;16567:26;;16639:9;16633:4;16629:20;16625:1;16614:9;16610:17;16603:47;16667:131;16793:4;16667:131;:::i;:::-;16659:139;;16557:248;;;:::o;16811:222::-;;16942:2;16931:9;16927:18;16919:26;;16955:71;17023:1;17012:9;17008:17;16999:6;16955:71;:::i;:::-;16909:124;;;;:::o;17039:214::-;;17166:2;17155:9;17151:18;17143:26;;17179:67;17243:1;17232:9;17228:17;17219:6;17179:67;:::i;:::-;17133:120;;;;:::o;17259:99::-;;17345:5;17339:12;17329:22;;17318:40;;;:::o;17364:169::-;;17482:6;17477:3;17470:19;17522:4;17517:3;17513:14;17498:29;;17460:73;;;;:::o;17539:305::-;;17598:20;17616:1;17598:20;:::i;:::-;17593:25;;17632:20;17650:1;17632:20;:::i;:::-;17627:25;;17786:1;17718:66;17714:74;17711:1;17708:81;17705:2;;;17792:18;;:::i;:::-;17705:2;17836:1;17833;17829:9;17822:16;;17583:261;;;;:::o;17850:191::-;;17910:20;17928:1;17910:20;:::i;:::-;17905:25;;17944:20;17962:1;17944:20;:::i;:::-;17939:25;;17983:1;17980;17977:8;17974:2;;;17988:18;;:::i;:::-;17974:2;18033:1;18030;18026:9;18018:17;;17895:146;;;;:::o;18047:96::-;;18113:24;18131:5;18113:24;:::i;:::-;18102:35;;18092:51;;;:::o;18149:90::-;;18226:5;18219:13;18212:21;18201:32;;18191:48;;;:::o;18245:126::-;;18322:42;18315:5;18311:54;18300:65;;18290:81;;;:::o;18377:77::-;;18443:5;18432:16;;18422:32;;;:::o;18460:86::-;;18535:4;18528:5;18524:16;18513:27;;18503:43;;;:::o;18552:307::-;18620:1;18630:113;18644:6;18641:1;18638:13;18630:113;;;18729:1;18724:3;18720:11;18714:18;18710:1;18705:3;18701:11;18694:39;18666:2;18663:1;18659:10;18654:15;;18630:113;;;18761:6;18758:1;18755:13;18752:2;;;18841:1;18832:6;18827:3;18823:16;18816:27;18752:2;18601:258;;;;:::o;18865:320::-;;18946:1;18940:4;18936:12;18926:22;;18993:1;18987:4;18983:12;19014:18;19004:2;;19070:4;19062:6;19058:17;19048:27;;19004:2;19132;19124:6;19121:14;19101:18;19098:38;19095:2;;;19151:18;;:::i;:::-;19095:2;18916:269;;;;:::o;19191:180::-;19239:77;19236:1;19229:88;19336:4;19333:1;19326:15;19360:4;19357:1;19350:15;19377:180;19425:77;19422:1;19415:88;19522:4;19519:1;19512:15;19546:4;19543:1;19536:15;19563:102;;19655:2;19651:7;19646:2;19639:5;19635:14;19631:28;19621:38;;19611:54;;;:::o;19671:122::-;19744:24;19762:5;19744:24;:::i;:::-;19737:5;19734:35;19724:2;;19783:1;19780;19773:12;19724:2;19714:79;:::o;19799:116::-;19869:21;19884:5;19869:21;:::i;:::-;19862:5;19859:32;19849:2;;19905:1;19902;19895:12;19849:2;19839:76;:::o;19921:122::-;19994:24;20012:5;19994:24;:::i;:::-;19987:5;19984:35;19974:2;;20033:1;20030;20023:12;19974:2;19964:79;:::o

Swarm Source

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