ETH Price: $3,242.56 (+2.94%)
Gas: 2 Gwei

Token

ForTheDog (FTD)
 

Overview

Max Total Supply

1,600,000,000 FTD

Holders

14,727 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 FTD

Value
$0.00
0x15c40fefd7a01d4cb310d26c3cda50225086bd72
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FTD is a M2E(Move-to-Earn) platform for recording the physical activities of dogs

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ForTheDog

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.4;


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

pragma solidity ^0.8.0;



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



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


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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}




// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


contract ForTheDog is ERC20, ERC20Burnable, Pausable, AccessControl {
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant LOCK_TRANSFER_ROLE = keccak256("LOCK_TRANSFER_ROLE");

    uint256 private _limitMint;

    mapping(address => bool) internal _fullLockList;

    constructor() ERC20("ForTheDog", "FTD") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _mint(msg.sender, 16* 10 ** 8 * 10 ** decimals());
        _limitMint = 16* 10 ** 8 * 10 ** decimals();
        _grantRole(MINTER_ROLE, msg.sender);
        _grantRole(LOCK_TRANSFER_ROLE, msg.sender);
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) {
        require(totalSupply() + amount <= _limitMint, "The number of additional issuance has been exceeded.");
        _mint(to, amount);
    }

    function fullLockAddress(address account) external onlyRole(LOCK_TRANSFER_ROLE) returns (bool) {
        _fullLockList[account] = true;
        return true;
    }

    function unFullLockAddress(address account) external onlyRole(LOCK_TRANSFER_ROLE) returns (bool) {
        delete _fullLockList[account];
        return true;
    }

    function fullLockedAddressList(address account) external view virtual returns (bool) {
        return _fullLockList[account];
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        require(!_fullLockList[from], "Token transfer from LockedAddressList");
        super._beforeTokenTransfer(from, to, 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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_TRANSFER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"internalType":"address","name":"account","type":"address"}],"name":"fullLockAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"fullLockedAddressList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"unFullLockAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f466f72546865446f6700000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46544400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200060d565b508060049080519060200190620000af9291906200060d565b5050506000600560006101000a81548160ff021916908315150217905550620000e26000801b33620001f360201b60201c565b620001147f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001f360201b60201c565b620001543362000129620002e560201b60201c565b600a6200013791906200088f565b635f5e1000620001489190620009cc565b620002ee60201b60201c565b62000164620002e560201b60201c565b600a6200017291906200088f565b635f5e1000620001839190620009cc565b600781905550620001bb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001f360201b60201c565b620001ed7f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd633620001f360201b60201c565b62000b86565b6200020582826200046760201b60201c565b620002e15760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000286620004d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003589062000787565b60405180910390fd5b6200037560008383620004da60201b60201c565b8060026000828254620003899190620007d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003e09190620007d7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004479190620007a9565b60405180910390a362000463600083836200059760201b60201c565b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b620004ea6200059c60201b60201c565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156200057a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005719062000743565b60405180910390fd5b62000592838383620005f160201b62000e2d1760201c565b505050565b505050565b620005ac620005f660201b60201c565b15620005ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e69062000765565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b8280546200061b9062000a44565b90600052602060002090601f0160209004810192826200063f57600085556200068b565b82601f106200065a57805160ff19168380011785556200068b565b828001600101855582156200068b579182015b828111156200068a5782518255916020019190600101906200066d565b5b5090506200069a91906200069e565b5090565b5b80821115620006b95760008160009055506001016200069f565b5090565b6000620006cc602583620007c6565b9150620006d98262000ae5565b604082019050919050565b6000620006f3601083620007c6565b9150620007008262000b34565b602082019050919050565b60006200071a601f83620007c6565b9150620007278262000b5d565b602082019050919050565b6200073d8162000a2d565b82525050565b600060208201905081810360008301526200075e81620006bd565b9050919050565b600060208201905081810360008301526200078081620006e4565b9050919050565b60006020820190508181036000830152620007a2816200070b565b9050919050565b6000602082019050620007c0600083018462000732565b92915050565b600082825260208201905092915050565b6000620007e48262000a2d565b9150620007f18362000a2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000829576200082862000a7a565b5b828201905092915050565b6000808291508390505b600185111562000886578086048111156200085e576200085d62000a7a565b5b60018516156200086e5780820291505b80810290506200087e8562000ad8565b94506200083e565b94509492505050565b60006200089c8262000a2d565b9150620008a98362000a37565b9250620008d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008e0565b905092915050565b600082620008f25760019050620009c5565b81620009025760009050620009c5565b81600181146200091b576002811462000926576200095c565b6001915050620009c5565b60ff8411156200093b576200093a62000a7a565b5b8360020a91508482111562000955576200095462000a7a565b5b50620009c5565b5060208310610133831016604e8410600b8410161715620009965782820a90508381111562000990576200098f62000a7a565b5b620009c5565b620009a5848484600162000834565b92509050818404811115620009bf57620009be62000a7a565b5b81810290505b9392505050565b6000620009d98262000a2d565b9150620009e68362000a2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a225762000a2162000a7a565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000a5d57607f821691505b6020821081141562000a745762000a7362000aa9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f546f6b656e207472616e736665722066726f6d204c6f636b656441646472657360008201527f734c697374000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612d9c8062000b966000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a7cd26fd116100a2578063d547741f11610071578063d547741f1461057f578063dd62ed3e1461059b578063e63ab1e9146105cb578063fb03582d146105e9576101da565b8063a7cd26fd146104e3578063a9059cbb14610513578063cfb17ceb14610543578063d539139314610561576101da565b806391d14854116100de57806391d148541461044757806395d89b4114610477578063a217fddf14610495578063a457c2d7146104b3576101da565b806370a08231146103f157806379cc6790146104215780638456cb591461043d576101da565b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a1461039157806340c10f191461039b57806342966c68146103b75780635c975abb146103d3576101da565b80632f2ff15d1461030b578063313ce5671461032757806336568abe146103455780633950935114610361576101da565b806312a0a4b9116101b857806312a0a4b91461025d57806318160ddd1461028d57806323b872dd146102ab578063248a9ca3146102db576101da565b806301ffc9a7146101df57806306fdde031461020f578063095ea7b31461022d575b600080fd5b6101f960048036038101906101f49190611f27565b610619565b6040516102069190612301565b60405180910390f35b610217610693565b6040516102249190612337565b60405180910390f35b61024760048036038101906102429190611e7a565b610725565b6040516102549190612301565b60405180910390f35b61027760048036038101906102729190611dba565b610748565b6040516102849190612301565b60405180910390f35b6102956107d6565b6040516102a29190612559565b60405180910390f35b6102c560048036038101906102c09190611e27565b6107e0565b6040516102d29190612301565b60405180910390f35b6102f560048036038101906102f09190611eba565b61080f565b604051610302919061231c565b60405180910390f35b61032560048036038101906103209190611ee7565b61082f565b005b61032f610850565b60405161033c9190612574565b60405180910390f35b61035f600480360381019061035a9190611ee7565b610859565b005b61037b60048036038101906103769190611e7a565b6108dc565b6040516103889190612301565b60405180910390f35b610399610913565b005b6103b560048036038101906103b09190611e7a565b610948565b005b6103d160048036038101906103cc9190611f54565b6109d8565b005b6103db6109ec565b6040516103e89190612301565b60405180910390f35b61040b60048036038101906104069190611dba565b610a03565b6040516104189190612559565b60405180910390f35b61043b60048036038101906104369190611e7a565b610a4b565b005b610445610a6b565b005b610461600480360381019061045c9190611ee7565b610aa0565b60405161046e9190612301565b60405180910390f35b61047f610b0b565b60405161048c9190612337565b60405180910390f35b61049d610b9d565b6040516104aa919061231c565b60405180910390f35b6104cd60048036038101906104c89190611e7a565b610ba4565b6040516104da9190612301565b60405180910390f35b6104fd60048036038101906104f89190611dba565b610c1b565b60405161050a9190612301565b60405180910390f35b61052d60048036038101906105289190611e7a565b610ca0565b60405161053a9190612301565b60405180910390f35b61054b610cc3565b604051610558919061231c565b60405180910390f35b610569610ce7565b604051610576919061231c565b60405180910390f35b61059960048036038101906105949190611ee7565b610d0b565b005b6105b560048036038101906105b09190611de7565b610d2c565b6040516105c29190612559565b60405180910390f35b6105d3610db3565b6040516105e0919061231c565b60405180910390f35b61060360048036038101906105fe9190611dba565b610dd7565b6040516106109190612301565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c575061068b82610e32565b5b9050919050565b6060600380546106a290612782565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612782565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610e9c565b905061073d818585610ea4565b600191505092915050565b60007f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd66107748161106f565b6001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001915050919050565b6000600254905090565b6000806107eb610e9c565b90506107f8858285611083565b61080385858561110f565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6108388261080f565b6108418161106f565b61084b8383611390565b505050565b60006012905090565b610861610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906124f9565b60405180910390fd5b6108d88282611471565b5050565b6000806108e7610e9c565b90506109088185856108f98589610d2c565b61090391906125b6565b610ea4565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61093d8161106f565b610945611553565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109728161106f565b6007548261097e6107d6565b61098891906125b6565b11156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612539565b60405180910390fd5b6109d383836115b6565b505050565b6109e96109e3610e9c565b82611716565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5d82610a57610e9c565b83611083565b610a678282611716565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a958161106f565b610a9d6118ed565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b1a90612782565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690612782565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000801b81565b600080610baf610e9c565b90506000610bbd8286610d2c565b905083811015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906124d9565b60405180910390fd5b610c0f8286868403610ea4565b60019250505092915050565b60007f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd6610c478161106f565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556001915050919050565b600080610cab610e9c565b9050610cb881858561110f565b600191505092915050565b7f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d148261080f565b610d1d8161106f565b610d278383611471565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b906124b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906123f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110629190612559565b60405180910390a3505050565b6110808161107b610e9c565b611950565b50565b600061108f8484610d2c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461110957818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612419565b60405180910390fd5b6111088484848403610ea4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612379565b60405180910390fd5b6111fa8383836119ed565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612439565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131391906125b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113779190612559565b60405180910390a361138a848484611a92565b50505050565b61139a8282610aa0565b61146d5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611412610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61147b8282610aa0565b1561154f5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114f4610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61155b611a97565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61159f610e9c565b6040516115ac91906122e6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612519565b60405180910390fd5b611632600083836119ed565b806002600082825461164491906125b6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169991906125b6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116fe9190612559565b60405180910390a361171260008383611a92565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612479565b60405180910390fd5b611792826000836119ed565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906123b9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461186f9190612666565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118d49190612559565b60405180910390a36118e883600084611a92565b505050565b6118f5611ae0565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611939610e9c565b60405161194691906122e6565b60405180910390a1565b61195a8282610aa0565b6119e95761197f8173ffffffffffffffffffffffffffffffffffffffff166014611b2a565b61198d8360001c6020611b2a565b60405160200161199e9291906122ac565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e09190612337565b60405180910390fd5b5050565b6119f5611ae0565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906123d9565b60405180910390fd5b611a8d838383610e2d565b505050565b505050565b611a9f6109ec565b611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590612399565b60405180910390fd5b565b611ae86109ec565b15611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612459565b60405180910390fd5b565b606060006002836002611b3d919061260c565b611b4791906125b6565b67ffffffffffffffff811115611b6057611b5f612841565b5b6040519080825280601f01601f191660200182016040528015611b925781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bca57611bc9612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c2e57611c2d612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c6e919061260c565b611c7891906125b6565b90505b6001811115611d18577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cba57611cb9612812565b5b1a60f81b828281518110611cd157611cd0612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d1190612758565b9050611c7b565b5060008414611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390612359565b60405180910390fd5b8091505092915050565b600081359050611d7581612d0a565b92915050565b600081359050611d8a81612d21565b92915050565b600081359050611d9f81612d38565b92915050565b600081359050611db481612d4f565b92915050565b600060208284031215611dd057611dcf612870565b5b6000611dde84828501611d66565b91505092915050565b60008060408385031215611dfe57611dfd612870565b5b6000611e0c85828601611d66565b9250506020611e1d85828601611d66565b9150509250929050565b600080600060608486031215611e4057611e3f612870565b5b6000611e4e86828701611d66565b9350506020611e5f86828701611d66565b9250506040611e7086828701611da5565b9150509250925092565b60008060408385031215611e9157611e90612870565b5b6000611e9f85828601611d66565b9250506020611eb085828601611da5565b9150509250929050565b600060208284031215611ed057611ecf612870565b5b6000611ede84828501611d7b565b91505092915050565b60008060408385031215611efe57611efd612870565b5b6000611f0c85828601611d7b565b9250506020611f1d85828601611d66565b9150509250929050565b600060208284031215611f3d57611f3c612870565b5b6000611f4b84828501611d90565b91505092915050565b600060208284031215611f6a57611f69612870565b5b6000611f7884828501611da5565b91505092915050565b611f8a8161269a565b82525050565b611f99816126ac565b82525050565b611fa8816126b8565b82525050565b6000611fb98261258f565b611fc3818561259a565b9350611fd3818560208601612725565b611fdc81612875565b840191505092915050565b6000611ff28261258f565b611ffc81856125ab565b935061200c818560208601612725565b80840191505092915050565b600061202560208361259a565b915061203082612886565b602082019050919050565b600061204860238361259a565b9150612053826128af565b604082019050919050565b600061206b60148361259a565b9150612076826128fe565b602082019050919050565b600061208e60228361259a565b915061209982612927565b604082019050919050565b60006120b160258361259a565b91506120bc82612976565b604082019050919050565b60006120d460228361259a565b91506120df826129c5565b604082019050919050565b60006120f7601d8361259a565b915061210282612a14565b602082019050919050565b600061211a60268361259a565b915061212582612a3d565b604082019050919050565b600061213d60108361259a565b915061214882612a8c565b602082019050919050565b600061216060218361259a565b915061216b82612ab5565b604082019050919050565b600061218360258361259a565b915061218e82612b04565b604082019050919050565b60006121a660248361259a565b91506121b182612b53565b604082019050919050565b60006121c96017836125ab565b91506121d482612ba2565b601782019050919050565b60006121ec60258361259a565b91506121f782612bcb565b604082019050919050565b600061220f6011836125ab565b915061221a82612c1a565b601182019050919050565b6000612232602f8361259a565b915061223d82612c43565b604082019050919050565b6000612255601f8361259a565b915061226082612c92565b602082019050919050565b600061227860348361259a565b915061228382612cbb565b604082019050919050565b6122978161270e565b82525050565b6122a681612718565b82525050565b60006122b7826121bc565b91506122c38285611fe7565b91506122ce82612202565b91506122da8284611fe7565b91508190509392505050565b60006020820190506122fb6000830184611f81565b92915050565b60006020820190506123166000830184611f90565b92915050565b60006020820190506123316000830184611f9f565b92915050565b600060208201905081810360008301526123518184611fae565b905092915050565b6000602082019050818103600083015261237281612018565b9050919050565b600060208201905081810360008301526123928161203b565b9050919050565b600060208201905081810360008301526123b28161205e565b9050919050565b600060208201905081810360008301526123d281612081565b9050919050565b600060208201905081810360008301526123f2816120a4565b9050919050565b60006020820190508181036000830152612412816120c7565b9050919050565b60006020820190508181036000830152612432816120ea565b9050919050565b600060208201905081810360008301526124528161210d565b9050919050565b6000602082019050818103600083015261247281612130565b9050919050565b6000602082019050818103600083015261249281612153565b9050919050565b600060208201905081810360008301526124b281612176565b9050919050565b600060208201905081810360008301526124d281612199565b9050919050565b600060208201905081810360008301526124f2816121df565b9050919050565b6000602082019050818103600083015261251281612225565b9050919050565b6000602082019050818103600083015261253281612248565b9050919050565b600060208201905081810360008301526125528161226b565b9050919050565b600060208201905061256e600083018461228e565b92915050565b6000602082019050612589600083018461229d565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006125c18261270e565b91506125cc8361270e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612601576126006127b4565b5b828201905092915050565b60006126178261270e565b91506126228361270e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561265b5761265a6127b4565b5b828202905092915050565b60006126718261270e565b915061267c8361270e565b92508282101561268f5761268e6127b4565b5b828203905092915050565b60006126a5826126ee565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612743578082015181840152602081019050612728565b83811115612752576000848401525b50505050565b60006127638261270e565b91506000821415612777576127766127b4565b5b600182039050919050565b6000600282049050600182168061279a57607f821691505b602082108114156127ae576127ad6127e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e736665722066726f6d204c6f636b656441646472657360008201527f734c697374000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f546865206e756d626572206f66206164646974696f6e616c2069737375616e6360008201527f6520686173206265656e2065786365656465642e000000000000000000000000602082015250565b612d138161269a565b8114612d1e57600080fd5b50565b612d2a816126b8565b8114612d3557600080fd5b50565b612d41816126c2565b8114612d4c57600080fd5b50565b612d588161270e565b8114612d6357600080fd5b5056fea2646970667358221220131c4e3a2fa76f44e7bb7b44a44dd98fabda3f3b26f05ee0f6d2e72c51b5630164736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a7cd26fd116100a2578063d547741f11610071578063d547741f1461057f578063dd62ed3e1461059b578063e63ab1e9146105cb578063fb03582d146105e9576101da565b8063a7cd26fd146104e3578063a9059cbb14610513578063cfb17ceb14610543578063d539139314610561576101da565b806391d14854116100de57806391d148541461044757806395d89b4114610477578063a217fddf14610495578063a457c2d7146104b3576101da565b806370a08231146103f157806379cc6790146104215780638456cb591461043d576101da565b80632f2ff15d1161017c5780633f4ba83a1161014b5780633f4ba83a1461039157806340c10f191461039b57806342966c68146103b75780635c975abb146103d3576101da565b80632f2ff15d1461030b578063313ce5671461032757806336568abe146103455780633950935114610361576101da565b806312a0a4b9116101b857806312a0a4b91461025d57806318160ddd1461028d57806323b872dd146102ab578063248a9ca3146102db576101da565b806301ffc9a7146101df57806306fdde031461020f578063095ea7b31461022d575b600080fd5b6101f960048036038101906101f49190611f27565b610619565b6040516102069190612301565b60405180910390f35b610217610693565b6040516102249190612337565b60405180910390f35b61024760048036038101906102429190611e7a565b610725565b6040516102549190612301565b60405180910390f35b61027760048036038101906102729190611dba565b610748565b6040516102849190612301565b60405180910390f35b6102956107d6565b6040516102a29190612559565b60405180910390f35b6102c560048036038101906102c09190611e27565b6107e0565b6040516102d29190612301565b60405180910390f35b6102f560048036038101906102f09190611eba565b61080f565b604051610302919061231c565b60405180910390f35b61032560048036038101906103209190611ee7565b61082f565b005b61032f610850565b60405161033c9190612574565b60405180910390f35b61035f600480360381019061035a9190611ee7565b610859565b005b61037b60048036038101906103769190611e7a565b6108dc565b6040516103889190612301565b60405180910390f35b610399610913565b005b6103b560048036038101906103b09190611e7a565b610948565b005b6103d160048036038101906103cc9190611f54565b6109d8565b005b6103db6109ec565b6040516103e89190612301565b60405180910390f35b61040b60048036038101906104069190611dba565b610a03565b6040516104189190612559565b60405180910390f35b61043b60048036038101906104369190611e7a565b610a4b565b005b610445610a6b565b005b610461600480360381019061045c9190611ee7565b610aa0565b60405161046e9190612301565b60405180910390f35b61047f610b0b565b60405161048c9190612337565b60405180910390f35b61049d610b9d565b6040516104aa919061231c565b60405180910390f35b6104cd60048036038101906104c89190611e7a565b610ba4565b6040516104da9190612301565b60405180910390f35b6104fd60048036038101906104f89190611dba565b610c1b565b60405161050a9190612301565b60405180910390f35b61052d60048036038101906105289190611e7a565b610ca0565b60405161053a9190612301565b60405180910390f35b61054b610cc3565b604051610558919061231c565b60405180910390f35b610569610ce7565b604051610576919061231c565b60405180910390f35b61059960048036038101906105949190611ee7565b610d0b565b005b6105b560048036038101906105b09190611de7565b610d2c565b6040516105c29190612559565b60405180910390f35b6105d3610db3565b6040516105e0919061231c565b60405180910390f35b61060360048036038101906105fe9190611dba565b610dd7565b6040516106109190612301565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c575061068b82610e32565b5b9050919050565b6060600380546106a290612782565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90612782565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610e9c565b905061073d818585610ea4565b600191505092915050565b60007f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd66107748161106f565b6001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001915050919050565b6000600254905090565b6000806107eb610e9c565b90506107f8858285611083565b61080385858561110f565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b6108388261080f565b6108418161106f565b61084b8383611390565b505050565b60006012905090565b610861610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906124f9565b60405180910390fd5b6108d88282611471565b5050565b6000806108e7610e9c565b90506109088185856108f98589610d2c565b61090391906125b6565b610ea4565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61093d8161106f565b610945611553565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109728161106f565b6007548261097e6107d6565b61098891906125b6565b11156109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612539565b60405180910390fd5b6109d383836115b6565b505050565b6109e96109e3610e9c565b82611716565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5d82610a57610e9c565b83611083565b610a678282611716565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a958161106f565b610a9d6118ed565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610b1a90612782565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690612782565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b6000801b81565b600080610baf610e9c565b90506000610bbd8286610d2c565b905083811015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf9906124d9565b60405180910390fd5b610c0f8286868403610ea4565b60019250505092915050565b60007f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd6610c478161106f565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556001915050919050565b600080610cab610e9c565b9050610cb881858561110f565b600191505092915050565b7f832387ff8355724ce19b4e13d42ca7e8b0d3d6e27508713bc847b0ef4335ecd681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610d148261080f565b610d1d8161106f565b610d278383611471565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b906124b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906123f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110629190612559565b60405180910390a3505050565b6110808161107b610e9c565b611950565b50565b600061108f8484610d2c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461110957818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612419565b60405180910390fd5b6111088484848403610ea4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612499565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612379565b60405180910390fd5b6111fa8383836119ed565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790612439565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131391906125b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113779190612559565b60405180910390a361138a848484611a92565b50505050565b61139a8282610aa0565b61146d5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611412610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61147b8282610aa0565b1561154f5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114f4610e9c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61155b611a97565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61159f610e9c565b6040516115ac91906122e6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d90612519565b60405180910390fd5b611632600083836119ed565b806002600082825461164491906125b6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169991906125b6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116fe9190612559565b60405180910390a361171260008383611a92565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90612479565b60405180910390fd5b611792826000836119ed565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906123b9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461186f9190612666565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118d49190612559565b60405180910390a36118e883600084611a92565b505050565b6118f5611ae0565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611939610e9c565b60405161194691906122e6565b60405180910390a1565b61195a8282610aa0565b6119e95761197f8173ffffffffffffffffffffffffffffffffffffffff166014611b2a565b61198d8360001c6020611b2a565b60405160200161199e9291906122ac565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e09190612337565b60405180910390fd5b5050565b6119f5611ae0565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906123d9565b60405180910390fd5b611a8d838383610e2d565b505050565b505050565b611a9f6109ec565b611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590612399565b60405180910390fd5b565b611ae86109ec565b15611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612459565b60405180910390fd5b565b606060006002836002611b3d919061260c565b611b4791906125b6565b67ffffffffffffffff811115611b6057611b5f612841565b5b6040519080825280601f01601f191660200182016040528015611b925781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bca57611bc9612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c2e57611c2d612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c6e919061260c565b611c7891906125b6565b90505b6001811115611d18577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cba57611cb9612812565b5b1a60f81b828281518110611cd157611cd0612812565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d1190612758565b9050611c7b565b5060008414611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5390612359565b60405180910390fd5b8091505092915050565b600081359050611d7581612d0a565b92915050565b600081359050611d8a81612d21565b92915050565b600081359050611d9f81612d38565b92915050565b600081359050611db481612d4f565b92915050565b600060208284031215611dd057611dcf612870565b5b6000611dde84828501611d66565b91505092915050565b60008060408385031215611dfe57611dfd612870565b5b6000611e0c85828601611d66565b9250506020611e1d85828601611d66565b9150509250929050565b600080600060608486031215611e4057611e3f612870565b5b6000611e4e86828701611d66565b9350506020611e5f86828701611d66565b9250506040611e7086828701611da5565b9150509250925092565b60008060408385031215611e9157611e90612870565b5b6000611e9f85828601611d66565b9250506020611eb085828601611da5565b9150509250929050565b600060208284031215611ed057611ecf612870565b5b6000611ede84828501611d7b565b91505092915050565b60008060408385031215611efe57611efd612870565b5b6000611f0c85828601611d7b565b9250506020611f1d85828601611d66565b9150509250929050565b600060208284031215611f3d57611f3c612870565b5b6000611f4b84828501611d90565b91505092915050565b600060208284031215611f6a57611f69612870565b5b6000611f7884828501611da5565b91505092915050565b611f8a8161269a565b82525050565b611f99816126ac565b82525050565b611fa8816126b8565b82525050565b6000611fb98261258f565b611fc3818561259a565b9350611fd3818560208601612725565b611fdc81612875565b840191505092915050565b6000611ff28261258f565b611ffc81856125ab565b935061200c818560208601612725565b80840191505092915050565b600061202560208361259a565b915061203082612886565b602082019050919050565b600061204860238361259a565b9150612053826128af565b604082019050919050565b600061206b60148361259a565b9150612076826128fe565b602082019050919050565b600061208e60228361259a565b915061209982612927565b604082019050919050565b60006120b160258361259a565b91506120bc82612976565b604082019050919050565b60006120d460228361259a565b91506120df826129c5565b604082019050919050565b60006120f7601d8361259a565b915061210282612a14565b602082019050919050565b600061211a60268361259a565b915061212582612a3d565b604082019050919050565b600061213d60108361259a565b915061214882612a8c565b602082019050919050565b600061216060218361259a565b915061216b82612ab5565b604082019050919050565b600061218360258361259a565b915061218e82612b04565b604082019050919050565b60006121a660248361259a565b91506121b182612b53565b604082019050919050565b60006121c96017836125ab565b91506121d482612ba2565b601782019050919050565b60006121ec60258361259a565b91506121f782612bcb565b604082019050919050565b600061220f6011836125ab565b915061221a82612c1a565b601182019050919050565b6000612232602f8361259a565b915061223d82612c43565b604082019050919050565b6000612255601f8361259a565b915061226082612c92565b602082019050919050565b600061227860348361259a565b915061228382612cbb565b604082019050919050565b6122978161270e565b82525050565b6122a681612718565b82525050565b60006122b7826121bc565b91506122c38285611fe7565b91506122ce82612202565b91506122da8284611fe7565b91508190509392505050565b60006020820190506122fb6000830184611f81565b92915050565b60006020820190506123166000830184611f90565b92915050565b60006020820190506123316000830184611f9f565b92915050565b600060208201905081810360008301526123518184611fae565b905092915050565b6000602082019050818103600083015261237281612018565b9050919050565b600060208201905081810360008301526123928161203b565b9050919050565b600060208201905081810360008301526123b28161205e565b9050919050565b600060208201905081810360008301526123d281612081565b9050919050565b600060208201905081810360008301526123f2816120a4565b9050919050565b60006020820190508181036000830152612412816120c7565b9050919050565b60006020820190508181036000830152612432816120ea565b9050919050565b600060208201905081810360008301526124528161210d565b9050919050565b6000602082019050818103600083015261247281612130565b9050919050565b6000602082019050818103600083015261249281612153565b9050919050565b600060208201905081810360008301526124b281612176565b9050919050565b600060208201905081810360008301526124d281612199565b9050919050565b600060208201905081810360008301526124f2816121df565b9050919050565b6000602082019050818103600083015261251281612225565b9050919050565b6000602082019050818103600083015261253281612248565b9050919050565b600060208201905081810360008301526125528161226b565b9050919050565b600060208201905061256e600083018461228e565b92915050565b6000602082019050612589600083018461229d565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006125c18261270e565b91506125cc8361270e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612601576126006127b4565b5b828201905092915050565b60006126178261270e565b91506126228361270e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561265b5761265a6127b4565b5b828202905092915050565b60006126718261270e565b915061267c8361270e565b92508282101561268f5761268e6127b4565b5b828203905092915050565b60006126a5826126ee565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612743578082015181840152602081019050612728565b83811115612752576000848401525b50505050565b60006127638261270e565b91506000821415612777576127766127b4565b5b600182039050919050565b6000600282049050600182168061279a57607f821691505b602082108114156127ae576127ad6127e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e207472616e736665722066726f6d204c6f636b656441646472657360008201527f734c697374000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f546865206e756d626572206f66206164646974696f6e616c2069737375616e6360008201527f6520686173206265656e2065786365656465642e000000000000000000000000602082015250565b612d138161269a565b8114612d1e57600080fd5b50565b612d2a816126b8565b8114612d3557600080fd5b50565b612d41816126c2565b8114612d4c57600080fd5b50565b612d588161270e565b8114612d6357600080fd5b5056fea2646970667358221220131c4e3a2fa76f44e7bb7b44a44dd98fabda3f3b26f05ee0f6d2e72c51b5630164736f6c63430008070033

Deployed Bytecode Sourcemap

36365:1924:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30681:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9750:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12101:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37517:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10870:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12882:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32517:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32958:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10712:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34102:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13586:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37203:77;;;:::i;:::-;;37288:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21044:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23242:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11041:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21454:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37122:73;;;:::i;:::-;;30977:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9969:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30082:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14327:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37690:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11374:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36578:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36509:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33398:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11630:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36440:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37865:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30681:204;30766:4;30805:32;30790:47;;;:11;:47;;;;:87;;;;30841:36;30865:11;30841:23;:36::i;:::-;30790:87;30783:94;;30681:204;;;:::o;9750:100::-;9804:13;9837:5;9830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9750:100;:::o;12101:201::-;12184:4;12201:13;12217:12;:10;:12::i;:::-;12201:28;;12240:32;12249:5;12256:7;12265:6;12240:8;:32::i;:::-;12290:4;12283:11;;;12101:201;;;;:::o;37517:165::-;37606:4;36623:31;30573:16;30584:4;30573:10;:16::i;:::-;37648:4:::1;37623:13;:22;37637:7;37623:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37670:4;37663:11;;37517:165:::0;;;;:::o;10870:108::-;10931:7;10958:12;;10951:19;;10870:108;:::o;12882:295::-;13013:4;13030:15;13048:12;:10;:12::i;:::-;13030:30;;13071:38;13087:4;13093:7;13102:6;13071:15;:38::i;:::-;13120:27;13130:4;13136:2;13140:6;13120:9;:27::i;:::-;13165:4;13158:11;;;12882:295;;;;;:::o;32517:131::-;32591:7;32618:6;:12;32625:4;32618:12;;;;;;;;;;;:22;;;32611:29;;32517:131;;;:::o;32958:147::-;33041:18;33054:4;33041:12;:18::i;:::-;30573:16;30584:4;30573:10;:16::i;:::-;33072:25:::1;33083:4;33089:7;33072:10;:25::i;:::-;32958:147:::0;;;:::o;10712:93::-;10770:5;10795:2;10788:9;;10712:93;:::o;34102:218::-;34209:12;:10;:12::i;:::-;34198:23;;:7;:23;;;34190:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;34286:26;34298:4;34304:7;34286:11;:26::i;:::-;34102:218;;:::o;13586:238::-;13674:4;13691:13;13707:12;:10;:12::i;:::-;13691:28;;13730:64;13739:5;13746:7;13783:10;13755:25;13765:5;13772:7;13755:9;:25::i;:::-;:38;;;;:::i;:::-;13730:8;:64::i;:::-;13812:4;13805:11;;;13586:238;;;;:::o;37203:77::-;36478:24;30573:16;30584:4;30573:10;:16::i;:::-;37262:10:::1;:8;:10::i;:::-;37203:77:::0;:::o;37288:221::-;36547:24;30573:16;30584:4;30573:10;:16::i;:::-;37406:10:::1;;37396:6;37380:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;37372:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;37484:17;37490:2;37494:6;37484:5;:17::i;:::-;37288:221:::0;;;:::o;21044:91::-;21100:27;21106:12;:10;:12::i;:::-;21120:6;21100:5;:27::i;:::-;21044:91;:::o;23242:86::-;23289:4;23313:7;;;;;;;;;;;23306:14;;23242:86;:::o;11041:127::-;11115:7;11142:9;:18;11152:7;11142:18;;;;;;;;;;;;;;;;11135:25;;11041:127;;;:::o;21454:164::-;21531:46;21547:7;21556:12;:10;:12::i;:::-;21570:6;21531:15;:46::i;:::-;21588:22;21594:7;21603:6;21588:5;:22::i;:::-;21454:164;;:::o;37122:73::-;36478:24;30573:16;30584:4;30573:10;:16::i;:::-;37179:8:::1;:6;:8::i;:::-;37122:73:::0;:::o;30977:147::-;31063:4;31087:6;:12;31094:4;31087:12;;;;;;;;;;;:20;;:29;31108:7;31087:29;;;;;;;;;;;;;;;;;;;;;;;;;31080:36;;30977:147;;;;:::o;9969:104::-;10025:13;10058:7;10051:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9969:104;:::o;30082:49::-;30127:4;30082:49;;;:::o;14327:436::-;14420:4;14437:13;14453:12;:10;:12::i;:::-;14437:28;;14476:24;14503:25;14513:5;14520:7;14503:9;:25::i;:::-;14476:52;;14567:15;14547:16;:35;;14539:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14660:60;14669:5;14676:7;14704:15;14685:16;:34;14660:8;:60::i;:::-;14751:4;14744:11;;;;14327:436;;;;:::o;37690:167::-;37781:4;36623:31;30573:16;30584:4;30573:10;:16::i;:::-;37805:13:::1;:22;37819:7;37805:22;;;;;;;;;;;;;;;;37798:29;;;;;;;;;;;37845:4;37838:11;;37690:167:::0;;;;:::o;11374:193::-;11453:4;11470:13;11486:12;:10;:12::i;:::-;11470:28;;11509;11519:5;11526:2;11530:6;11509:9;:28::i;:::-;11555:4;11548:11;;;11374:193;;;;:::o;36578:76::-;36623:31;36578:76;:::o;36509:62::-;36547:24;36509:62;:::o;33398:149::-;33482:18;33495:4;33482:12;:18::i;:::-;30573:16;30584:4;30573:10;:16::i;:::-;33513:26:::1;33525:4;33531:7;33513:11;:26::i;:::-;33398:149:::0;;;:::o;11630:151::-;11719:7;11746:11;:18;11758:5;11746:18;;;;;;;;;;;;;;;:27;11765:7;11746:27;;;;;;;;;;;;;;;;11739:34;;11630:151;;;;:::o;36440:62::-;36478:24;36440:62;:::o;37865:133::-;37944:4;37968:13;:22;37982:7;37968:22;;;;;;;;;;;;;;;;;;;;;;;;;37961:29;;37865:133;;;:::o;19676:125::-;;;;:::o;28114:157::-;28199:4;28238:25;28223:40;;;:11;:40;;;;28216:47;;28114:157;;;:::o;6762:98::-;6815:7;6842:10;6835:17;;6762:98;:::o;17952:380::-;18105:1;18088:19;;:5;:19;;;;18080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18186:1;18167:21;;:7;:21;;;;18159:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18270:6;18240:11;:18;18252:5;18240:18;;;;;;;;;;;;;;;:27;18259:7;18240:27;;;;;;;;;;;;;;;:36;;;;18308:7;18292:32;;18301:5;18292:32;;;18317:6;18292:32;;;;;;:::i;:::-;;;;;;;;17952:380;;;:::o;31428:105::-;31495:30;31506:4;31512:12;:10;:12::i;:::-;31495:10;:30::i;:::-;31428:105;:::o;18623:453::-;18758:24;18785:25;18795:5;18802:7;18785:9;:25::i;:::-;18758:52;;18845:17;18825:16;:37;18821:248;;18907:6;18887:16;:26;;18879:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18991:51;19000:5;19007:7;19035:6;19016:16;:25;18991:8;:51::i;:::-;18821:248;18747:329;18623:453;;;:::o;15233:671::-;15380:1;15364:18;;:4;:18;;;;15356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15457:1;15443:16;;:2;:16;;;;15435:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15512:38;15533:4;15539:2;15543:6;15512:20;:38::i;:::-;15563:19;15585:9;:15;15595:4;15585:15;;;;;;;;;;;;;;;;15563:37;;15634:6;15619:11;:21;;15611:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15751:6;15737:11;:20;15719:9;:15;15729:4;15719:15;;;;;;;;;;;;;;;:38;;;;15796:6;15779:9;:13;15789:2;15779:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15835:2;15820:26;;15829:4;15820:26;;;15839:6;15820:26;;;;;;:::i;:::-;;;;;;;;15859:37;15879:4;15885:2;15889:6;15859:19;:37::i;:::-;15345:559;15233:671;;;:::o;35699:238::-;35783:22;35791:4;35797:7;35783;:22::i;:::-;35778:152;;35854:4;35822:6;:12;35829:4;35822:12;;;;;;;;;;;:20;;:29;35843:7;35822:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;35905:12;:10;:12::i;:::-;35878:40;;35896:7;35878:40;;35890:4;35878:40;;;;;;;;;;35778:152;35699:238;;:::o;36117:239::-;36201:22;36209:4;36215:7;36201;:22::i;:::-;36197:152;;;36272:5;36240:6;:12;36247:4;36240:12;;;;;;;;;;;:20;;:29;36261:7;36240:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;36324:12;:10;:12::i;:::-;36297:40;;36315:7;36297:40;;36309:4;36297:40;;;;;;;;;;36197:152;36117:239;;:::o;24097:120::-;23106:16;:14;:16::i;:::-;24166:5:::1;24156:7;;:15;;;;;;;;;;;;;;;;;;24187:22;24196:12;:10;:12::i;:::-;24187:22;;;;;;:::i;:::-;;;;;;;;24097:120::o:0;16191:399::-;16294:1;16275:21;;:7;:21;;;;16267:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16345:49;16374:1;16378:7;16387:6;16345:20;:49::i;:::-;16423:6;16407:12;;:22;;;;;;;:::i;:::-;;;;;;;;16462:6;16440:9;:18;16450:7;16440:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16505:7;16484:37;;16501:1;16484:37;;;16514:6;16484:37;;;;;;:::i;:::-;;;;;;;;16534:48;16562:1;16566:7;16575:6;16534:19;:48::i;:::-;16191:399;;:::o;16923:591::-;17026:1;17007:21;;:7;:21;;;;16999:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17079:49;17100:7;17117:1;17121:6;17079:20;:49::i;:::-;17141:22;17166:9;:18;17176:7;17166:18;;;;;;;;;;;;;;;;17141:43;;17221:6;17203:14;:24;;17195:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17340:6;17323:14;:23;17302:9;:18;17312:7;17302:18;;;;;;;;;;;;;;;:44;;;;17384:6;17368:12;;:22;;;;;;;:::i;:::-;;;;;;;;17434:1;17408:37;;17417:7;17408:37;;;17438:6;17408:37;;;;;;:::i;:::-;;;;;;;;17458:48;17478:7;17495:1;17499:6;17458:19;:48::i;:::-;16988:526;16923:591;;:::o;23838:118::-;22847:19;:17;:19::i;:::-;23908:4:::1;23898:7;;:14;;;;;;;;;;;;;;;;;;23928:20;23935:12;:10;:12::i;:::-;23928:20;;;;;;:::i;:::-;;;;;;;;23838:118::o:0;31823:505::-;31912:22;31920:4;31926:7;31912;:22::i;:::-;31907:414;;32100:41;32128:7;32100:41;;32138:2;32100:19;:41::i;:::-;32214:38;32242:4;32234:13;;32249:2;32214:19;:38::i;:::-;32005:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31951:358;;;;;;;;;;;:::i;:::-;;;;;;;;31907:414;31823:505;;:::o;38006:280::-;22847:19;:17;:19::i;:::-;38162:13:::1;:19;38176:4;38162:19;;;;;;;;;;;;;;;;;;;;;;;;;38161:20;38153:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;38234:44;38261:4;38267:2;38271:6;38234:26;:44::i;:::-;38006:280:::0;;;:::o;20405:124::-;;;;:::o;23586:108::-;23653:8;:6;:8::i;:::-;23645:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23586:108::o;23401:::-;23472:8;:6;:8::i;:::-;23471:9;23463:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23401:108::o;5373:451::-;5448:13;5474:19;5519:1;5510:6;5506:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5496:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5474:47;;5532:15;:6;5539:1;5532:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5558;:6;5565:1;5558:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;5589:9;5614:1;5605:6;5601:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5589:26;;5584:135;5621:1;5617;:5;5584:135;;;5656:12;5677:3;5669:5;:11;5656:25;;;;;;;:::i;:::-;;;;;5644:6;5651:1;5644:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;5706:1;5696:11;;;;;5624:3;;;;:::i;:::-;;;5584:135;;;;5746:1;5737:5;:10;5729:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;5809:6;5795:21;;;5373:451;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:118::-;4075:24;4093:5;4075:24;:::i;:::-;4070:3;4063:37;3988:118;;:::o;4112:109::-;4193:21;4208:5;4193:21;:::i;:::-;4188:3;4181:34;4112:109;;:::o;4227:118::-;4314:24;4332:5;4314:24;:::i;:::-;4309:3;4302:37;4227:118;;:::o;4351:364::-;4439:3;4467:39;4500:5;4467:39;:::i;:::-;4522:71;4586:6;4581:3;4522:71;:::i;:::-;4515:78;;4602:52;4647:6;4642:3;4635:4;4628:5;4624:16;4602:52;:::i;:::-;4679:29;4701:6;4679:29;:::i;:::-;4674:3;4670:39;4663:46;;4443:272;4351:364;;;;:::o;4721:377::-;4827:3;4855:39;4888:5;4855:39;:::i;:::-;4910:89;4992:6;4987:3;4910:89;:::i;:::-;4903:96;;5008:52;5053:6;5048:3;5041:4;5034:5;5030:16;5008:52;:::i;:::-;5085:6;5080:3;5076:16;5069:23;;4831:267;4721:377;;;;:::o;5104:366::-;5246:3;5267:67;5331:2;5326:3;5267:67;:::i;:::-;5260:74;;5343:93;5432:3;5343:93;:::i;:::-;5461:2;5456:3;5452:12;5445:19;;5104:366;;;:::o;5476:::-;5618:3;5639:67;5703:2;5698:3;5639:67;:::i;:::-;5632:74;;5715:93;5804:3;5715:93;:::i;:::-;5833:2;5828:3;5824:12;5817:19;;5476:366;;;:::o;5848:::-;5990:3;6011:67;6075:2;6070:3;6011:67;:::i;:::-;6004:74;;6087:93;6176:3;6087:93;:::i;:::-;6205:2;6200:3;6196:12;6189:19;;5848:366;;;:::o;6220:::-;6362:3;6383:67;6447:2;6442:3;6383:67;:::i;:::-;6376:74;;6459:93;6548:3;6459:93;:::i;:::-;6577:2;6572:3;6568:12;6561:19;;6220:366;;;:::o;6592:::-;6734:3;6755:67;6819:2;6814:3;6755:67;:::i;:::-;6748:74;;6831:93;6920:3;6831:93;:::i;:::-;6949:2;6944:3;6940:12;6933:19;;6592:366;;;:::o;6964:::-;7106:3;7127:67;7191:2;7186:3;7127:67;:::i;:::-;7120:74;;7203:93;7292:3;7203:93;:::i;:::-;7321:2;7316:3;7312:12;7305:19;;6964:366;;;:::o;7336:::-;7478:3;7499:67;7563:2;7558:3;7499:67;:::i;:::-;7492:74;;7575:93;7664:3;7575:93;:::i;:::-;7693:2;7688:3;7684:12;7677:19;;7336:366;;;:::o;7708:::-;7850:3;7871:67;7935:2;7930:3;7871:67;:::i;:::-;7864:74;;7947:93;8036:3;7947:93;:::i;:::-;8065:2;8060:3;8056:12;8049:19;;7708:366;;;:::o;8080:::-;8222:3;8243:67;8307:2;8302:3;8243:67;:::i;:::-;8236:74;;8319:93;8408:3;8319:93;:::i;:::-;8437:2;8432:3;8428:12;8421:19;;8080:366;;;:::o;8452:::-;8594:3;8615:67;8679:2;8674:3;8615:67;:::i;:::-;8608:74;;8691:93;8780:3;8691:93;:::i;:::-;8809:2;8804:3;8800:12;8793:19;;8452:366;;;:::o;8824:::-;8966:3;8987:67;9051:2;9046:3;8987:67;:::i;:::-;8980:74;;9063:93;9152:3;9063:93;:::i;:::-;9181:2;9176:3;9172:12;9165:19;;8824:366;;;:::o;9196:::-;9338:3;9359:67;9423:2;9418:3;9359:67;:::i;:::-;9352:74;;9435:93;9524:3;9435:93;:::i;:::-;9553:2;9548:3;9544:12;9537:19;;9196:366;;;:::o;9568:402::-;9728:3;9749:85;9831:2;9826:3;9749:85;:::i;:::-;9742:92;;9843:93;9932:3;9843:93;:::i;:::-;9961:2;9956:3;9952:12;9945:19;;9568:402;;;:::o;9976:366::-;10118:3;10139:67;10203:2;10198:3;10139:67;:::i;:::-;10132:74;;10215:93;10304:3;10215:93;:::i;:::-;10333:2;10328:3;10324:12;10317:19;;9976:366;;;:::o;10348:402::-;10508:3;10529:85;10611:2;10606:3;10529:85;:::i;:::-;10522:92;;10623:93;10712:3;10623:93;:::i;:::-;10741:2;10736:3;10732:12;10725:19;;10348:402;;;:::o;10756:366::-;10898:3;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;10995:93;11084:3;10995:93;:::i;:::-;11113:2;11108:3;11104:12;11097:19;;10756:366;;;:::o;11128:::-;11270:3;11291:67;11355:2;11350:3;11291:67;:::i;:::-;11284:74;;11367:93;11456:3;11367:93;:::i;:::-;11485:2;11480:3;11476:12;11469:19;;11128:366;;;:::o;11500:::-;11642:3;11663:67;11727:2;11722:3;11663:67;:::i;:::-;11656:74;;11739:93;11828:3;11739:93;:::i;:::-;11857:2;11852:3;11848:12;11841:19;;11500:366;;;:::o;11872:118::-;11959:24;11977:5;11959:24;:::i;:::-;11954:3;11947:37;11872:118;;:::o;11996:112::-;12079:22;12095:5;12079:22;:::i;:::-;12074:3;12067:35;11996:112;;:::o;12114:967::-;12496:3;12518:148;12662:3;12518:148;:::i;:::-;12511:155;;12683:95;12774:3;12765:6;12683:95;:::i;:::-;12676:102;;12795:148;12939:3;12795:148;:::i;:::-;12788:155;;12960:95;13051:3;13042:6;12960:95;:::i;:::-;12953:102;;13072:3;13065:10;;12114:967;;;;;:::o;13087:222::-;13180:4;13218:2;13207:9;13203:18;13195:26;;13231:71;13299:1;13288:9;13284:17;13275:6;13231:71;:::i;:::-;13087:222;;;;:::o;13315:210::-;13402:4;13440:2;13429:9;13425:18;13417:26;;13453:65;13515:1;13504:9;13500:17;13491:6;13453:65;:::i;:::-;13315:210;;;;:::o;13531:222::-;13624:4;13662:2;13651:9;13647:18;13639:26;;13675:71;13743:1;13732:9;13728:17;13719:6;13675:71;:::i;:::-;13531:222;;;;:::o;13759:313::-;13872:4;13910:2;13899:9;13895:18;13887:26;;13959:9;13953:4;13949:20;13945:1;13934:9;13930:17;13923:47;13987:78;14060:4;14051:6;13987:78;:::i;:::-;13979:86;;13759:313;;;;:::o;14078:419::-;14244:4;14282:2;14271:9;14267:18;14259:26;;14331:9;14325:4;14321:20;14317:1;14306:9;14302:17;14295:47;14359:131;14485:4;14359:131;:::i;:::-;14351:139;;14078:419;;;:::o;14503:::-;14669:4;14707:2;14696:9;14692:18;14684:26;;14756:9;14750:4;14746:20;14742:1;14731:9;14727:17;14720:47;14784:131;14910:4;14784:131;:::i;:::-;14776:139;;14503:419;;;:::o;14928:::-;15094:4;15132:2;15121:9;15117:18;15109:26;;15181:9;15175:4;15171:20;15167:1;15156:9;15152:17;15145:47;15209:131;15335:4;15209:131;:::i;:::-;15201:139;;14928:419;;;:::o;15353:::-;15519:4;15557:2;15546:9;15542:18;15534:26;;15606:9;15600:4;15596:20;15592:1;15581:9;15577:17;15570:47;15634:131;15760:4;15634:131;:::i;:::-;15626:139;;15353:419;;;:::o;15778:::-;15944:4;15982:2;15971:9;15967:18;15959:26;;16031:9;16025:4;16021:20;16017:1;16006:9;16002:17;15995:47;16059:131;16185:4;16059:131;:::i;:::-;16051:139;;15778:419;;;:::o;16203:::-;16369:4;16407:2;16396:9;16392:18;16384:26;;16456:9;16450:4;16446:20;16442:1;16431:9;16427:17;16420:47;16484:131;16610:4;16484:131;:::i;:::-;16476:139;;16203:419;;;:::o;16628:::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:::-;17219:4;17257:2;17246:9;17242:18;17234:26;;17306:9;17300:4;17296:20;17292:1;17281:9;17277:17;17270:47;17334:131;17460:4;17334:131;:::i;:::-;17326:139;;17053:419;;;:::o;17478:::-;17644:4;17682:2;17671:9;17667:18;17659:26;;17731:9;17725:4;17721:20;17717:1;17706:9;17702:17;17695:47;17759:131;17885:4;17759:131;:::i;:::-;17751:139;;17478:419;;;:::o;17903:::-;18069:4;18107:2;18096:9;18092:18;18084:26;;18156:9;18150:4;18146:20;18142:1;18131:9;18127:17;18120:47;18184:131;18310:4;18184:131;:::i;:::-;18176:139;;17903:419;;;:::o;18328:::-;18494:4;18532:2;18521:9;18517:18;18509:26;;18581:9;18575:4;18571:20;18567:1;18556:9;18552:17;18545:47;18609:131;18735:4;18609:131;:::i;:::-;18601:139;;18328:419;;;:::o;18753:::-;18919:4;18957:2;18946:9;18942:18;18934:26;;19006:9;19000:4;18996:20;18992:1;18981:9;18977:17;18970:47;19034:131;19160:4;19034:131;:::i;:::-;19026:139;;18753:419;;;:::o;19178:::-;19344:4;19382:2;19371:9;19367:18;19359:26;;19431:9;19425:4;19421:20;19417:1;19406:9;19402:17;19395:47;19459:131;19585:4;19459:131;:::i;:::-;19451:139;;19178:419;;;:::o;19603:::-;19769:4;19807:2;19796:9;19792:18;19784:26;;19856:9;19850:4;19846:20;19842:1;19831:9;19827:17;19820:47;19884:131;20010:4;19884:131;:::i;:::-;19876:139;;19603:419;;;:::o;20028:::-;20194:4;20232:2;20221:9;20217:18;20209:26;;20281:9;20275:4;20271:20;20267:1;20256:9;20252:17;20245:47;20309:131;20435:4;20309:131;:::i;:::-;20301:139;;20028:419;;;:::o;20453:::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o;20878:222::-;20971:4;21009:2;20998:9;20994:18;20986:26;;21022:71;21090:1;21079:9;21075:17;21066:6;21022:71;:::i;:::-;20878:222;;;;:::o;21106:214::-;21195:4;21233:2;21222:9;21218:18;21210:26;;21246:67;21310:1;21299:9;21295:17;21286:6;21246:67;:::i;:::-;21106:214;;;;:::o;21407:99::-;21459:6;21493:5;21487:12;21477:22;;21407:99;;;:::o;21512:169::-;21596:11;21630:6;21625:3;21618:19;21670:4;21665:3;21661:14;21646:29;;21512:169;;;;:::o;21687:148::-;21789:11;21826:3;21811:18;;21687:148;;;;:::o;21841:305::-;21881:3;21900:20;21918:1;21900:20;:::i;:::-;21895:25;;21934:20;21952:1;21934:20;:::i;:::-;21929:25;;22088:1;22020:66;22016:74;22013:1;22010:81;22007:107;;;22094:18;;:::i;:::-;22007:107;22138:1;22135;22131:9;22124:16;;21841:305;;;;:::o;22152:348::-;22192:7;22215:20;22233:1;22215:20;:::i;:::-;22210:25;;22249:20;22267:1;22249:20;:::i;:::-;22244:25;;22437:1;22369:66;22365:74;22362:1;22359:81;22354:1;22347:9;22340:17;22336:105;22333:131;;;22444:18;;:::i;:::-;22333:131;22492:1;22489;22485:9;22474:20;;22152:348;;;;:::o;22506:191::-;22546:4;22566:20;22584:1;22566:20;:::i;:::-;22561:25;;22600:20;22618:1;22600:20;:::i;:::-;22595:25;;22639:1;22636;22633:8;22630:34;;;22644:18;;:::i;:::-;22630:34;22689:1;22686;22682:9;22674:17;;22506:191;;;;:::o;22703:96::-;22740:7;22769:24;22787:5;22769:24;:::i;:::-;22758:35;;22703:96;;;:::o;22805:90::-;22839:7;22882:5;22875:13;22868:21;22857:32;;22805:90;;;:::o;22901:77::-;22938:7;22967:5;22956:16;;22901:77;;;:::o;22984:149::-;23020:7;23060:66;23053:5;23049:78;23038:89;;22984:149;;;:::o;23139:126::-;23176:7;23216:42;23209:5;23205:54;23194:65;;23139:126;;;:::o;23271:77::-;23308:7;23337:5;23326:16;;23271:77;;;:::o;23354:86::-;23389:7;23429:4;23422:5;23418:16;23407:27;;23354:86;;;:::o;23446:307::-;23514:1;23524:113;23538:6;23535:1;23532:13;23524:113;;;23623:1;23618:3;23614:11;23608:18;23604:1;23599:3;23595:11;23588:39;23560:2;23557:1;23553:10;23548:15;;23524:113;;;23655:6;23652:1;23649:13;23646:101;;;23735:1;23726:6;23721:3;23717:16;23710:27;23646:101;23495:258;23446:307;;;:::o;23759:171::-;23798:3;23821:24;23839:5;23821:24;:::i;:::-;23812:33;;23867:4;23860:5;23857:15;23854:41;;;23875:18;;:::i;:::-;23854:41;23922:1;23915:5;23911:13;23904:20;;23759:171;;;:::o;23936:320::-;23980:6;24017:1;24011:4;24007:12;23997:22;;24064:1;24058:4;24054:12;24085:18;24075:81;;24141:4;24133:6;24129:17;24119:27;;24075:81;24203:2;24195:6;24192:14;24172:18;24169:38;24166:84;;;24222:18;;:::i;:::-;24166:84;23987:269;23936:320;;;:::o;24262:180::-;24310:77;24307:1;24300:88;24407:4;24404:1;24397:15;24431:4;24428:1;24421:15;24448:180;24496:77;24493:1;24486:88;24593:4;24590:1;24583:15;24617:4;24614:1;24607:15;24634:180;24682:77;24679:1;24672:88;24779:4;24776:1;24769:15;24803:4;24800:1;24793:15;24820:180;24868:77;24865:1;24858:88;24965:4;24962:1;24955:15;24989:4;24986:1;24979:15;25129:117;25238:1;25235;25228:12;25252:102;25293:6;25344:2;25340:7;25335:2;25328:5;25324:14;25320:28;25310:38;;25252:102;;;:::o;25360:182::-;25500:34;25496:1;25488:6;25484:14;25477:58;25360:182;:::o;25548:222::-;25688:34;25684:1;25676:6;25672:14;25665:58;25757:5;25752:2;25744:6;25740:15;25733:30;25548:222;:::o;25776:170::-;25916:22;25912:1;25904:6;25900:14;25893:46;25776:170;:::o;25952:221::-;26092:34;26088:1;26080:6;26076:14;26069:58;26161:4;26156:2;26148:6;26144:15;26137:29;25952:221;:::o;26179:224::-;26319:34;26315:1;26307:6;26303:14;26296:58;26388:7;26383:2;26375:6;26371:15;26364:32;26179:224;:::o;26409:221::-;26549:34;26545:1;26537:6;26533:14;26526:58;26618:4;26613:2;26605:6;26601:15;26594:29;26409:221;:::o;26636:179::-;26776:31;26772:1;26764:6;26760:14;26753:55;26636:179;:::o;26821:225::-;26961:34;26957:1;26949:6;26945:14;26938:58;27030:8;27025:2;27017:6;27013:15;27006:33;26821:225;:::o;27052:166::-;27192:18;27188:1;27180:6;27176:14;27169:42;27052:166;:::o;27224:220::-;27364:34;27360:1;27352:6;27348:14;27341:58;27433:3;27428:2;27420:6;27416:15;27409:28;27224:220;:::o;27450:224::-;27590:34;27586:1;27578:6;27574:14;27567:58;27659:7;27654:2;27646:6;27642:15;27635:32;27450:224;:::o;27680:223::-;27820:34;27816:1;27808:6;27804:14;27797:58;27889:6;27884:2;27876:6;27872:15;27865:31;27680:223;:::o;27909:173::-;28049:25;28045:1;28037:6;28033:14;28026:49;27909:173;:::o;28088:224::-;28228:34;28224:1;28216:6;28212:14;28205:58;28297:7;28292:2;28284:6;28280:15;28273:32;28088:224;:::o;28318:167::-;28458:19;28454:1;28446:6;28442:14;28435:43;28318:167;:::o;28491:234::-;28631:34;28627:1;28619:6;28615:14;28608:58;28700:17;28695:2;28687:6;28683:15;28676:42;28491:234;:::o;28731:181::-;28871:33;28867:1;28859:6;28855:14;28848:57;28731:181;:::o;28918:239::-;29058:34;29054:1;29046:6;29042:14;29035:58;29127:22;29122:2;29114:6;29110:15;29103:47;28918:239;:::o;29163:122::-;29236:24;29254:5;29236:24;:::i;:::-;29229:5;29226:35;29216:63;;29275:1;29272;29265:12;29216:63;29163:122;:::o;29291:::-;29364:24;29382:5;29364:24;:::i;:::-;29357:5;29354:35;29344:63;;29403:1;29400;29393:12;29344:63;29291:122;:::o;29419:120::-;29491:23;29508:5;29491:23;:::i;:::-;29484:5;29481:34;29471:62;;29529:1;29526;29519:12;29471:62;29419:120;:::o;29545:122::-;29618:24;29636:5;29618:24;:::i;:::-;29611:5;29608:35;29598:63;;29657:1;29654;29647:12;29598:63;29545:122;:::o

Swarm Source

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