ETH Price: $3,304.92 (+1.81%)
Gas: 1 Gwei

Token

FuckHAY (FuckHAY)
 

Overview

Max Total Supply

10,000,000,000 FuckHAY

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,010,291.27545092659457753 FuckHAY

Value
$0.00
0x4d99ff6374217760a7051398b28ff17c67cbd579
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:
FuckHAY

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-12
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Token.sol


pragma solidity ^0.8.9;



contract FuckHAY is ERC20 {
    address public owner;
    modifier onlyOwner() {
        require(msg.sender == owner, "Only the contract owner can call this function.");
    _;}
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Invalid address.");
        owner = newOwner;
    }
    constructor() ERC20("FuckHAY", "FuckHAY") {
        _mint(msg.sender, 10000000000 * 10 ** 18);
    }
    function getDecimals() public view returns (uint8) {
    return decimals();
    }
    function getTotalSupply() public view returns (uint256) {
    return totalSupply();
    }
    function getOwner() public view returns (address) {
    return owner;
    }
    function burn(uint256 amount) public {
        require(balanceOf(msg.sender) >= amount, "Insufficient balance to burn");
        _burn(msg.sender, amount);
    }
}

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":"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":[{"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":"uint256","name":"amount","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":"getDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","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":[],"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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

608060405234801562000010575f80fd5b506040518060400160405280600781526020017f4675636b484159000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4675636b4841590000000000000000000000000000000000000000000000000081525081600390816200008e91906200049a565b508060049081620000a091906200049a565b505050620000c1336b204fce5e3e25026110000000620000c760201b60201c565b6200068f565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012f90620005dc565b60405180910390fd5b6200014b5f83836200022c60201b60201c565b8060025f8282546200015e919062000629565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200020d919062000674565b60405180910390a3620002285f83836200023160201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002b257607f821691505b602082108103620002c857620002c76200026d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200032c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ef565b620003388683620002ef565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003826200037c620003768462000350565b62000359565b62000350565b9050919050565b5f819050919050565b6200039d8362000362565b620003b5620003ac8262000389565b848454620002fb565b825550505050565b5f90565b620003cb620003bd565b620003d881848462000392565b505050565b5b81811015620003ff57620003f35f82620003c1565b600181019050620003de565b5050565b601f8211156200044e576200041881620002ce565b6200042384620002e0565b8101602085101562000433578190505b6200044b6200044285620002e0565b830182620003dd565b50505b505050565b5f82821c905092915050565b5f620004705f198460080262000453565b1980831691505092915050565b5f6200048a83836200045f565b9150826002028217905092915050565b620004a58262000236565b67ffffffffffffffff811115620004c157620004c062000240565b5b620004cd82546200029a565b620004da82828562000403565b5f60209050601f83116001811462000510575f8415620004fb578287015190505b6200050785826200047d565b86555062000576565b601f1984166200052086620002ce565b5f5b82811015620005495784890151825560018201915060208501945060208101905062000522565b8683101562000569578489015162000565601f8916826200045f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620005c4601f836200057e565b9150620005d1826200058e565b602082019050919050565b5f6020820190508181035f830152620005f581620005b6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620006358262000350565b9150620006428362000350565b92508282019050808211156200065d576200065c620005fc565b5b92915050565b6200066e8162000350565b82525050565b5f602082019050620006895f83018462000663565b92915050565b611966806200069d5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063893d20e8116100a0578063a9059cbb1161006f578063a9059cbb146102cd578063c4e41b22146102fd578063dd62ed3e1461031b578063f0141d841461034b578063f2fde38b1461036957610109565b8063893d20e8146102435780638da5cb5b1461026157806395d89b411461027f578063a457c2d71461029d57610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610385565b6040516101229190610fb3565b60405180910390f35b61014560048036038101906101409190611064565b610415565b60405161015291906110bc565b60405180910390f35b610163610437565b60405161017091906110e4565b60405180910390f35b610193600480360381019061018e91906110fd565b610440565b6040516101a091906110bc565b60405180910390f35b6101b161046e565b6040516101be9190611168565b60405180910390f35b6101e160048036038101906101dc9190611064565b610476565b6040516101ee91906110bc565b60405180910390f35b610211600480360381019061020c9190611181565b6104ac565b005b61022d600480360381019061022891906111ac565b610504565b60405161023a91906110e4565b60405180910390f35b61024b610549565b60405161025891906111e6565b60405180910390f35b610269610571565b60405161027691906111e6565b60405180910390f35b610287610596565b6040516102949190610fb3565b60405180910390f35b6102b760048036038101906102b29190611064565b610626565b6040516102c491906110bc565b60405180910390f35b6102e760048036038101906102e29190611064565b61069b565b6040516102f491906110bc565b60405180910390f35b6103056106bd565b60405161031291906110e4565b60405180910390f35b610335600480360381019061033091906111ff565b6106cb565b60405161034291906110e4565b60405180910390f35b61035361074d565b6040516103609190611168565b60405180910390f35b610383600480360381019061037e91906111ac565b61075b565b005b6060600380546103949061126a565b80601f01602080910402602001604051908101604052809291908181526020018280546103c09061126a565b801561040b5780601f106103e25761010080835404028352916020019161040b565b820191905f5260205f20905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b5f8061041f61089b565b905061042c8185856108a2565b600191505092915050565b5f600254905090565b5f8061044a61089b565b9050610457858285610a65565b610462858585610af0565b60019150509392505050565b5f6012905090565b5f8061048061089b565b90506104a181858561049285896106cb565b61049c91906112c7565b6108a2565b600191505092915050565b806104b633610504565b10156104f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ee90611344565b60405180910390fd5b6105013382610d5c565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105a59061126a565b80601f01602080910402602001604051908101604052809291908181526020018280546105d19061126a565b801561061c5780601f106105f35761010080835404028352916020019161061c565b820191905f5260205f20905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b5f8061063061089b565b90505f61063d82866106cb565b905083811015610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906113d2565b60405180910390fd5b61068f82868684036108a2565b60019250505092915050565b5f806106a561089b565b90506106b2818585610af0565b600191505092915050565b5f6106c6610437565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f61075661046e565b905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611460565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f906114c8565b60405180910390fd5b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790611556565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906115e4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5891906110e4565b60405180910390a3505050565b5f610a7084846106cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aea5781811015610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad39061164c565b60405180910390fd5b610ae984848484036108a2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906116da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390611768565b60405180910390fd5b610bd7838383610f1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c51906117f6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4391906110e4565b60405180910390a3610d56848484610f24565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611884565b60405180910390fd5b610dd5825f83610f1f565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611912565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0791906110e4565b60405180910390a3610f1a835f84610f24565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f60578082015181840152602081019050610f45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8582610f29565b610f8f8185610f33565b9350610f9f818560208601610f43565b610fa881610f6b565b840191505092915050565b5f6020820190508181035f830152610fcb8184610f7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61100082610fd7565b9050919050565b61101081610ff6565b811461101a575f80fd5b50565b5f8135905061102b81611007565b92915050565b5f819050919050565b61104381611031565b811461104d575f80fd5b50565b5f8135905061105e8161103a565b92915050565b5f806040838503121561107a57611079610fd3565b5b5f6110878582860161101d565b925050602061109885828601611050565b9150509250929050565b5f8115159050919050565b6110b6816110a2565b82525050565b5f6020820190506110cf5f8301846110ad565b92915050565b6110de81611031565b82525050565b5f6020820190506110f75f8301846110d5565b92915050565b5f805f6060848603121561111457611113610fd3565b5b5f6111218682870161101d565b93505060206111328682870161101d565b925050604061114386828701611050565b9150509250925092565b5f60ff82169050919050565b6111628161114d565b82525050565b5f60208201905061117b5f830184611159565b92915050565b5f6020828403121561119657611195610fd3565b5b5f6111a384828501611050565b91505092915050565b5f602082840312156111c1576111c0610fd3565b5b5f6111ce8482850161101d565b91505092915050565b6111e081610ff6565b82525050565b5f6020820190506111f95f8301846111d7565b92915050565b5f806040838503121561121557611214610fd3565b5b5f6112228582860161101d565b92505060206112338582860161101d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061128157607f821691505b6020821081036112945761129361123d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112d182611031565b91506112dc83611031565b92508282019050808211156112f4576112f361129a565b5b92915050565b7f496e73756666696369656e742062616c616e636520746f206275726e000000005f82015250565b5f61132e601c83610f33565b9150611339826112fa565b602082019050919050565b5f6020820190508181035f83015261135b81611322565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113bc602583610f33565b91506113c782611362565b604082019050919050565b5f6020820190508181035f8301526113e9816113b0565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c5f8201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b5f61144a602f83610f33565b9150611455826113f0565b604082019050919050565b5f6020820190508181035f8301526114778161143e565b9050919050565b7f496e76616c696420616464726573732e000000000000000000000000000000005f82015250565b5f6114b2601083610f33565b91506114bd8261147e565b602082019050919050565b5f6020820190508181035f8301526114df816114a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611540602483610f33565b915061154b826114e6565b604082019050919050565b5f6020820190508181035f83015261156d81611534565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115ce602283610f33565b91506115d982611574565b604082019050919050565b5f6020820190508181035f8301526115fb816115c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611636601d83610f33565b915061164182611602565b602082019050919050565b5f6020820190508181035f8301526116638161162a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116c4602583610f33565b91506116cf8261166a565b604082019050919050565b5f6020820190508181035f8301526116f1816116b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611752602383610f33565b915061175d826116f8565b604082019050919050565b5f6020820190508181035f83015261177f81611746565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e0602683610f33565b91506117eb82611786565b604082019050919050565b5f6020820190508181035f83015261180d816117d4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61186e602183610f33565b915061187982611814565b604082019050919050565b5f6020820190508181035f83015261189b81611862565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118fc602283610f33565b9150611907826118a2565b604082019050919050565b5f6020820190508181035f830152611929816118f0565b905091905056fea2646970667358221220b82fe34ce9632196a5686cb72e834e80ca1b70955df5d6c723a10b88165a3e5364736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063893d20e8116100a0578063a9059cbb1161006f578063a9059cbb146102cd578063c4e41b22146102fd578063dd62ed3e1461031b578063f0141d841461034b578063f2fde38b1461036957610109565b8063893d20e8146102435780638da5cb5b1461026157806395d89b411461027f578063a457c2d71461029d57610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b610115610385565b6040516101229190610fb3565b60405180910390f35b61014560048036038101906101409190611064565b610415565b60405161015291906110bc565b60405180910390f35b610163610437565b60405161017091906110e4565b60405180910390f35b610193600480360381019061018e91906110fd565b610440565b6040516101a091906110bc565b60405180910390f35b6101b161046e565b6040516101be9190611168565b60405180910390f35b6101e160048036038101906101dc9190611064565b610476565b6040516101ee91906110bc565b60405180910390f35b610211600480360381019061020c9190611181565b6104ac565b005b61022d600480360381019061022891906111ac565b610504565b60405161023a91906110e4565b60405180910390f35b61024b610549565b60405161025891906111e6565b60405180910390f35b610269610571565b60405161027691906111e6565b60405180910390f35b610287610596565b6040516102949190610fb3565b60405180910390f35b6102b760048036038101906102b29190611064565b610626565b6040516102c491906110bc565b60405180910390f35b6102e760048036038101906102e29190611064565b61069b565b6040516102f491906110bc565b60405180910390f35b6103056106bd565b60405161031291906110e4565b60405180910390f35b610335600480360381019061033091906111ff565b6106cb565b60405161034291906110e4565b60405180910390f35b61035361074d565b6040516103609190611168565b60405180910390f35b610383600480360381019061037e91906111ac565b61075b565b005b6060600380546103949061126a565b80601f01602080910402602001604051908101604052809291908181526020018280546103c09061126a565b801561040b5780601f106103e25761010080835404028352916020019161040b565b820191905f5260205f20905b8154815290600101906020018083116103ee57829003601f168201915b5050505050905090565b5f8061041f61089b565b905061042c8185856108a2565b600191505092915050565b5f600254905090565b5f8061044a61089b565b9050610457858285610a65565b610462858585610af0565b60019150509392505050565b5f6012905090565b5f8061048061089b565b90506104a181858561049285896106cb565b61049c91906112c7565b6108a2565b600191505092915050565b806104b633610504565b10156104f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ee90611344565b60405180910390fd5b6105013382610d5c565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105a59061126a565b80601f01602080910402602001604051908101604052809291908181526020018280546105d19061126a565b801561061c5780601f106105f35761010080835404028352916020019161061c565b820191905f5260205f20905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b5f8061063061089b565b90505f61063d82866106cb565b905083811015610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906113d2565b60405180910390fd5b61068f82868684036108a2565b60019250505092915050565b5f806106a561089b565b90506106b2818585610af0565b600191505092915050565b5f6106c6610437565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f61075661046e565b905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611460565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f906114c8565b60405180910390fd5b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790611556565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906115e4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5891906110e4565b60405180910390a3505050565b5f610a7084846106cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610aea5781811015610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad39061164c565b60405180910390fd5b610ae984848484036108a2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b55906116da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390611768565b60405180910390fd5b610bd7838383610f1f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c51906117f6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d4391906110e4565b60405180910390a3610d56848484610f24565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190611884565b60405180910390fd5b610dd5825f83610f1f565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90611912565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0791906110e4565b60405180910390a3610f1a835f84610f24565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f60578082015181840152602081019050610f45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f8582610f29565b610f8f8185610f33565b9350610f9f818560208601610f43565b610fa881610f6b565b840191505092915050565b5f6020820190508181035f830152610fcb8184610f7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61100082610fd7565b9050919050565b61101081610ff6565b811461101a575f80fd5b50565b5f8135905061102b81611007565b92915050565b5f819050919050565b61104381611031565b811461104d575f80fd5b50565b5f8135905061105e8161103a565b92915050565b5f806040838503121561107a57611079610fd3565b5b5f6110878582860161101d565b925050602061109885828601611050565b9150509250929050565b5f8115159050919050565b6110b6816110a2565b82525050565b5f6020820190506110cf5f8301846110ad565b92915050565b6110de81611031565b82525050565b5f6020820190506110f75f8301846110d5565b92915050565b5f805f6060848603121561111457611113610fd3565b5b5f6111218682870161101d565b93505060206111328682870161101d565b925050604061114386828701611050565b9150509250925092565b5f60ff82169050919050565b6111628161114d565b82525050565b5f60208201905061117b5f830184611159565b92915050565b5f6020828403121561119657611195610fd3565b5b5f6111a384828501611050565b91505092915050565b5f602082840312156111c1576111c0610fd3565b5b5f6111ce8482850161101d565b91505092915050565b6111e081610ff6565b82525050565b5f6020820190506111f95f8301846111d7565b92915050565b5f806040838503121561121557611214610fd3565b5b5f6112228582860161101d565b92505060206112338582860161101d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061128157607f821691505b6020821081036112945761129361123d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112d182611031565b91506112dc83611031565b92508282019050808211156112f4576112f361129a565b5b92915050565b7f496e73756666696369656e742062616c616e636520746f206275726e000000005f82015250565b5f61132e601c83610f33565b9150611339826112fa565b602082019050919050565b5f6020820190508181035f83015261135b81611322565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113bc602583610f33565b91506113c782611362565b604082019050919050565b5f6020820190508181035f8301526113e9816113b0565b9050919050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c5f8201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b5f61144a602f83610f33565b9150611455826113f0565b604082019050919050565b5f6020820190508181035f8301526114778161143e565b9050919050565b7f496e76616c696420616464726573732e000000000000000000000000000000005f82015250565b5f6114b2601083610f33565b91506114bd8261147e565b602082019050919050565b5f6020820190508181035f8301526114df816114a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611540602483610f33565b915061154b826114e6565b604082019050919050565b5f6020820190508181035f83015261156d81611534565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6115ce602283610f33565b91506115d982611574565b604082019050919050565b5f6020820190508181035f8301526115fb816115c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611636601d83610f33565b915061164182611602565b602082019050919050565b5f6020820190508181035f8301526116638161162a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6116c4602583610f33565b91506116cf8261166a565b604082019050919050565b5f6020820190508181035f8301526116f1816116b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611752602383610f33565b915061175d826116f8565b604082019050919050565b5f6020820190508181035f83015261177f81611746565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6117e0602683610f33565b91506117eb82611786565b604082019050919050565b5f6020820190508181035f83015261180d816117d4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61186e602183610f33565b915061187982611814565b604082019050919050565b5f6020820190508181035f83015261189b81611862565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118fc602283610f33565b9150611907826118a2565b604082019050919050565b5f6020820190508181035f830152611929816118f0565b905091905056fea2646970667358221220b82fe34ce9632196a5686cb72e834e80ca1b70955df5d6c723a10b88165a3e5364736f6c63430008150033

Deployed Bytecode Sourcemap

18843:896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8981:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9762:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7592:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19572:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7921:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19489:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18876:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11173:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8254:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19392:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8510:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19303:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19030:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6621:100;6675:13;6708:5;6701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6621:100;:::o;8981:201::-;9064:4;9081:13;9097:12;:10;:12::i;:::-;9081:28;;9120:32;9129:5;9136:7;9145:6;9120:8;:32::i;:::-;9170:4;9163:11;;;8981:201;;;;:::o;7750:108::-;7811:7;7838:12;;7831:19;;7750:108;:::o;9762:261::-;9859:4;9876:15;9894:12;:10;:12::i;:::-;9876:30;;9917:38;9933:4;9939:7;9948:6;9917:15;:38::i;:::-;9966:27;9976:4;9982:2;9986:6;9966:9;:27::i;:::-;10011:4;10004:11;;;9762:261;;;;;:::o;7592:93::-;7650:5;7675:2;7668:9;;7592:93;:::o;10432:238::-;10520:4;10537:13;10553:12;:10;:12::i;:::-;10537:28;;10576:64;10585:5;10592:7;10629:10;10601:25;10611:5;10618:7;10601:9;:25::i;:::-;:38;;;;:::i;:::-;10576:8;:64::i;:::-;10658:4;10651:11;;;10432:238;;;;:::o;19572:164::-;19653:6;19628:21;19638:10;19628:9;:21::i;:::-;:31;;19620:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19703:25;19709:10;19721:6;19703:5;:25::i;:::-;19572:164;:::o;7921:127::-;7995:7;8022:9;:18;8032:7;8022:18;;;;;;;;;;;;;;;;8015:25;;7921:127;;;:::o;19489:77::-;19530:7;19553:5;;;;;;;;;;;19546:12;;19489:77;:::o;18876:20::-;;;;;;;;;;;;;:::o;6840:104::-;6896:13;6929:7;6922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6840:104;:::o;11173:436::-;11266:4;11283:13;11299:12;:10;:12::i;:::-;11283:28;;11322:24;11349:25;11359:5;11366:7;11349:9;:25::i;:::-;11322:52;;11413:15;11393:16;:35;;11385:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11506:60;11515:5;11522:7;11550:15;11531:16;:34;11506:8;:60::i;:::-;11597:4;11590:11;;;;11173:436;;;;:::o;8254:193::-;8333:4;8350:13;8366:12;:10;:12::i;:::-;8350:28;;8389;8399:5;8406:2;8410:6;8389:9;:28::i;:::-;8435:4;8428:11;;;8254:193;;;;:::o;19392:91::-;19439:7;19462:13;:11;:13::i;:::-;19455:20;;19392:91;:::o;8510:151::-;8599:7;8626:11;:18;8638:5;8626:18;;;;;;;;;;;;;;;:27;8645:7;8626:27;;;;;;;;;;;;;;;;8619:34;;8510:151;;;;:::o;19303:83::-;19347:5;19368:10;:8;:10::i;:::-;19361:17;;19303:83;:::o;19030:159::-;18957:5;;;;;;;;;;;18943:19;;:10;:19;;;18935:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19131:1:::1;19111:22;;:8;:22;;::::0;19103:51:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19173:8;19165:5;;:16;;;;;;;;;;;;;;;;;;19030:159:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;15166:346::-;15285:1;15268:19;;:5;:19;;;15260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15366:1;15347:21;;:7;:21;;;15339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15420:11;:18;15432:5;15420:18;;;;;;;;;;;;;;;:27;15439:7;15420:27;;;;;;;;;;;;;;;:36;;;;15488:7;15472:32;;15481:5;15472:32;;;15497:6;15472:32;;;;;;:::i;:::-;;;;;;;;15166:346;;;:::o;15803:419::-;15904:24;15931:25;15941:5;15948:7;15931:9;:25::i;:::-;15904:52;;15991:17;15971:16;:37;15967:248;;16053:6;16033:16;:26;;16025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16137:51;16146:5;16153:7;16181:6;16162:16;:25;16137:8;:51::i;:::-;15967:248;15893:329;15803:419;;;:::o;12079:806::-;12192:1;12176:18;;:4;:18;;;12168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12269:1;12255:16;;:2;:16;;;12247:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12324:38;12345:4;12351:2;12355:6;12324:20;:38::i;:::-;12375:19;12397:9;:15;12407:4;12397:15;;;;;;;;;;;;;;;;12375:37;;12446:6;12431:11;:21;;12423:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12563:6;12549:11;:20;12531:9;:15;12541:4;12531:15;;;;;;;;;;;;;;;:38;;;;12766:6;12749:9;:13;12759:2;12749:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12816:2;12801:26;;12810:4;12801:26;;;12820:6;12801:26;;;;;;:::i;:::-;;;;;;;;12840:37;12860:4;12866:2;12870:6;12840:19;:37::i;:::-;12157:728;12079:806;;;:::o;14053:675::-;14156:1;14137:21;;:7;:21;;;14129:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14209:49;14230:7;14247:1;14251:6;14209:20;:49::i;:::-;14271:22;14296:9;:18;14306:7;14296:18;;;;;;;;;;;;;;;;14271:43;;14351:6;14333:14;:24;;14325:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14470:6;14453:14;:23;14432:9;:18;14442:7;14432:18;;;;;;;;;;;;;;;:44;;;;14587:6;14571:12;;:22;;;;;;;;;;;14648:1;14622:37;;14631:7;14622:37;;;14652:6;14622:37;;;;;;:::i;:::-;;;;;;;;14672:48;14692:7;14709:1;14713:6;14672:19;:48::i;:::-;14118:610;14053:675;;:::o;16822:91::-;;;;:::o;17517:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:178::-;7390:30;7386:1;7378:6;7374:14;7367:54;7250:178;:::o;7434:366::-;7576:3;7597:67;7661:2;7656:3;7597:67;:::i;:::-;7590:74;;7673:93;7762:3;7673:93;:::i;:::-;7791:2;7786:3;7782:12;7775:19;;7434:366;;;:::o;7806:419::-;7972:4;8010:2;7999:9;7995:18;7987:26;;8059:9;8053:4;8049:20;8045:1;8034:9;8030:17;8023:47;8087:131;8213:4;8087:131;:::i;:::-;8079:139;;7806:419;;;:::o;8231:224::-;8371:34;8367:1;8359:6;8355:14;8348:58;8440:7;8435:2;8427:6;8423:15;8416:32;8231:224;:::o;8461:366::-;8603:3;8624:67;8688:2;8683:3;8624:67;:::i;:::-;8617:74;;8700:93;8789:3;8700:93;:::i;:::-;8818:2;8813:3;8809:12;8802:19;;8461:366;;;:::o;8833:419::-;8999:4;9037:2;9026:9;9022:18;9014:26;;9086:9;9080:4;9076:20;9072:1;9061:9;9057:17;9050:47;9114:131;9240:4;9114:131;:::i;:::-;9106:139;;8833:419;;;:::o;9258:234::-;9398:34;9394:1;9386:6;9382:14;9375:58;9467:17;9462:2;9454:6;9450:15;9443:42;9258:234;:::o;9498:366::-;9640:3;9661:67;9725:2;9720:3;9661:67;:::i;:::-;9654:74;;9737:93;9826:3;9737:93;:::i;:::-;9855:2;9850:3;9846:12;9839:19;;9498:366;;;:::o;9870:419::-;10036:4;10074:2;10063:9;10059:18;10051:26;;10123:9;10117:4;10113:20;10109:1;10098:9;10094:17;10087:47;10151:131;10277:4;10151:131;:::i;:::-;10143:139;;9870:419;;;:::o;10295:166::-;10435:18;10431:1;10423:6;10419:14;10412:42;10295:166;:::o;10467:366::-;10609:3;10630:67;10694:2;10689:3;10630:67;:::i;:::-;10623:74;;10706:93;10795:3;10706:93;:::i;:::-;10824:2;10819:3;10815:12;10808:19;;10467:366;;;:::o;10839:419::-;11005:4;11043:2;11032:9;11028:18;11020:26;;11092:9;11086:4;11082:20;11078:1;11067:9;11063:17;11056:47;11120:131;11246:4;11120:131;:::i;:::-;11112:139;;10839:419;;;:::o;11264:223::-;11404:34;11400:1;11392:6;11388:14;11381:58;11473:6;11468:2;11460:6;11456:15;11449:31;11264:223;:::o;11493:366::-;11635:3;11656:67;11720:2;11715:3;11656:67;:::i;:::-;11649:74;;11732:93;11821:3;11732:93;:::i;:::-;11850:2;11845:3;11841:12;11834:19;;11493:366;;;:::o;11865:419::-;12031:4;12069:2;12058:9;12054:18;12046:26;;12118:9;12112:4;12108:20;12104:1;12093:9;12089:17;12082:47;12146:131;12272:4;12146:131;:::i;:::-;12138:139;;11865:419;;;:::o;12290:221::-;12430:34;12426:1;12418:6;12414:14;12407:58;12499:4;12494:2;12486:6;12482:15;12475:29;12290:221;:::o;12517:366::-;12659:3;12680:67;12744:2;12739:3;12680:67;:::i;:::-;12673:74;;12756:93;12845:3;12756:93;:::i;:::-;12874:2;12869:3;12865:12;12858:19;;12517:366;;;:::o;12889:419::-;13055:4;13093:2;13082:9;13078:18;13070:26;;13142:9;13136:4;13132:20;13128:1;13117:9;13113:17;13106:47;13170:131;13296:4;13170:131;:::i;:::-;13162:139;;12889:419;;;:::o;13314:179::-;13454:31;13450:1;13442:6;13438:14;13431:55;13314:179;:::o;13499:366::-;13641:3;13662:67;13726:2;13721:3;13662:67;:::i;:::-;13655:74;;13738:93;13827:3;13738:93;:::i;:::-;13856:2;13851:3;13847:12;13840:19;;13499:366;;;:::o;13871:419::-;14037:4;14075:2;14064:9;14060:18;14052:26;;14124:9;14118:4;14114:20;14110:1;14099:9;14095:17;14088:47;14152:131;14278:4;14152:131;:::i;:::-;14144:139;;13871:419;;;:::o;14296:224::-;14436:34;14432:1;14424:6;14420:14;14413:58;14505:7;14500:2;14492:6;14488:15;14481:32;14296:224;:::o;14526:366::-;14668:3;14689:67;14753:2;14748:3;14689:67;:::i;:::-;14682:74;;14765:93;14854:3;14765:93;:::i;:::-;14883:2;14878:3;14874:12;14867:19;;14526:366;;;:::o;14898:419::-;15064:4;15102:2;15091:9;15087:18;15079:26;;15151:9;15145:4;15141:20;15137:1;15126:9;15122:17;15115:47;15179:131;15305:4;15179:131;:::i;:::-;15171:139;;14898:419;;;:::o;15323:222::-;15463:34;15459:1;15451:6;15447:14;15440:58;15532:5;15527:2;15519:6;15515:15;15508:30;15323:222;:::o;15551:366::-;15693:3;15714:67;15778:2;15773:3;15714:67;:::i;:::-;15707:74;;15790:93;15879:3;15790:93;:::i;:::-;15908:2;15903:3;15899:12;15892:19;;15551:366;;;:::o;15923:419::-;16089:4;16127:2;16116:9;16112:18;16104:26;;16176:9;16170:4;16166:20;16162:1;16151:9;16147:17;16140:47;16204:131;16330:4;16204:131;:::i;:::-;16196:139;;15923:419;;;:::o;16348:225::-;16488:34;16484:1;16476:6;16472:14;16465:58;16557:8;16552:2;16544:6;16540:15;16533:33;16348:225;:::o;16579:366::-;16721:3;16742:67;16806:2;16801:3;16742:67;:::i;:::-;16735:74;;16818:93;16907:3;16818:93;:::i;:::-;16936:2;16931:3;16927:12;16920:19;;16579:366;;;:::o;16951:419::-;17117:4;17155:2;17144:9;17140:18;17132:26;;17204:9;17198:4;17194:20;17190:1;17179:9;17175:17;17168:47;17232:131;17358:4;17232:131;:::i;:::-;17224:139;;16951:419;;;:::o;17376:220::-;17516:34;17512:1;17504:6;17500:14;17493:58;17585:3;17580:2;17572:6;17568:15;17561:28;17376:220;:::o;17602:366::-;17744:3;17765:67;17829:2;17824:3;17765:67;:::i;:::-;17758:74;;17841:93;17930:3;17841:93;:::i;:::-;17959:2;17954:3;17950:12;17943:19;;17602:366;;;:::o;17974:419::-;18140:4;18178:2;18167:9;18163:18;18155:26;;18227:9;18221:4;18217:20;18213:1;18202:9;18198:17;18191:47;18255:131;18381:4;18255:131;:::i;:::-;18247:139;;17974:419;;;:::o;18399:221::-;18539:34;18535:1;18527:6;18523:14;18516:58;18608:4;18603:2;18595:6;18591:15;18584:29;18399:221;:::o;18626:366::-;18768:3;18789:67;18853:2;18848:3;18789:67;:::i;:::-;18782:74;;18865:93;18954:3;18865:93;:::i;:::-;18983:2;18978:3;18974:12;18967:19;;18626:366;;;:::o;18998:419::-;19164:4;19202:2;19191:9;19187:18;19179:26;;19251:9;19245:4;19241:20;19237:1;19226:9;19222:17;19215:47;19279:131;19405:4;19279:131;:::i;:::-;19271:139;;18998:419;;;:::o

Swarm Source

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