ETH Price: $2,718.74 (+0.59%)

Token

Strudel Coin ($TRDL)
 

Overview

Max Total Supply

200,000.000000000001 $TRDL

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,950 $TRDL

Value
$0.00
0x81238a3A1467784CB3eDAfA0b13b9df3748aDb9F
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StrudelCoin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, OSL-3.0 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
 
// File: @openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC721/utils/ERC721Holder.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}
 
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
 
 
// OpenZeppelin Contracts v4.4.0 (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);
}
 
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
 
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
 
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
 
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
 
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
 
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
 
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;
 
    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}
 
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
 
 
// OpenZeppelin Contracts v4.4.0 (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;
    }
}
 
// File: @openzeppelin/contracts/utils/Strings.sol
 
 
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
 
    /**
     * @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);
    }
}
 
// File: @openzeppelin/contracts/access/IAccessControl.sol
 
 
// OpenZeppelin Contracts v4.4.0 (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;
}
 
// File: @openzeppelin/contracts/utils/Context.sol
 
 
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// File: @openzeppelin/contracts/access/AccessControl.sol
 
 
// OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol)
 
pragma solidity ^0.8.0;
 
 
 
 
 
/**
 * @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, _msgSender());
        _;
    }
 
    /**
     * @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 override returns (bool) {
        return _roles[role].members[account];
    }
 
    /**
     * @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 {
        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 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.
     */
    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.
     */
    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`.
     */
    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.
     *
     * [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.
     */
    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.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}
 
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
 
 
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
 
pragma solidity ^0.8.0;
 
 
 
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
 
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }
 
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }
 
        return true;
    }
 
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;
 
        emit Transfer(sender, recipient, amount);
 
        _afterTokenTransfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
 
        _afterTokenTransfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;
 
        emit Transfer(account, address(0), amount);
 
        _afterTokenTransfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
 
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
 
 
// File: contracts/Coin.sol
 
pragma solidity ^0.8.2;
 
contract StrudelCoin is ERC20, AccessControl, ERC721Holder {
    bytes32 public constant CONTRACT_ADMIN_ROLE = keccak256("CONTRACT_ADMIN_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    address public collectionAddress;
    uint256 public numberOfBlocksPerRewardUnit;
    uint256 public coinAmountPerRewardUnit;
    uint256 public welcomeBonusAmount;
    uint256 public amountOfStakers;
    uint256 public tokensStaked;
    uint256 immutable public contractCreationBlock;
 
    struct StakeInfo {
        uint256 stakedAtBlock;
        uint256 lastHarvestBlock;
        bool currentlyStaked;
    }
    /// owner => tokenId => StakeInfo
    mapping (address => mapping(uint256 => StakeInfo)) public stakeLog;
    /// owner => #NFTsStaked
    mapping (address => uint256) public tokensStakedByUser;
    /// tokenId => true/false (true if welcome bonus has been collected for a specific tokenId)
    mapping (uint256 => bool) public welcomeBonusCollected;
    /// owner => list of all tokenIds that the user has staked
    mapping (address => uint256[]) public stakePortfolioByUser;
    /// tokenId => indexInStakePortfolio
    mapping(uint256 => uint256) public indexOfTokenIdInStakePortfolio;
 
    event RewardsHarvested (address owner, uint256 amount);
    event NFTStaked (address owner, uint256 tokenId);
    event NFTUnstaked (address owner, uint256 tokenId);
 
    constructor(address owner, address _collectionAddress) ERC20("Strudel Coin", "$TRDL") AccessControl(){
        _mint(owner, 200000 * 10 ** 18);
        _setupRole(DEFAULT_ADMIN_ROLE, owner);
        _setupRole(CONTRACT_ADMIN_ROLE, owner);
        _setupRole(BURNER_ROLE, owner);
        _setupRole(MINTER_ROLE, owner);
        collectionAddress = _collectionAddress;
        contractCreationBlock = block.number;
        coinAmountPerRewardUnit = 10 * 10 ** 18; // 10 ERC20 coins per rewardUnit, may be changed later on
        numberOfBlocksPerRewardUnit = 20571; // 12 hours per reward unit , may be changed later on
        welcomeBonusAmount = 200 * 10 ** 18; // 200 tokens welcome bonus, only paid once per tokenId
    }
 
    function stakedNFTSByUser(address owner) external view returns (uint256[] memory){
        return stakePortfolioByUser[owner];
    }
 
    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }
 
    function burn(address from, uint256 amount) external onlyRole(BURNER_ROLE) {
        super._burn(from, amount);
    }
 
    function pendingRewards(address owner, uint256 tokenId) public view returns (uint256){
        StakeInfo memory info = stakeLog[owner][tokenId];
 
        if(info.lastHarvestBlock < contractCreationBlock || info.currentlyStaked == false) {
            return 0;
        }
        uint256 blocksPassedSinceLastHarvest = block.number - info.lastHarvestBlock;
        if (blocksPassedSinceLastHarvest < numberOfBlocksPerRewardUnit * 2) {
            return 0;
        }
        uint256 rewardAmount = blocksPassedSinceLastHarvest / numberOfBlocksPerRewardUnit - 1;
        return rewardAmount * coinAmountPerRewardUnit;
 
    }
 
    function stake(uint256 tokenId) public {
        IERC721(collectionAddress).safeTransferFrom(_msgSender(), address(this), tokenId);
        require(IERC721(collectionAddress).ownerOf(tokenId) == address(this),
            "$TRDL: Error while transferring token");
        StakeInfo storage info = stakeLog[_msgSender()][tokenId];
        info.stakedAtBlock = block.number;
        info.lastHarvestBlock = block.number;
        info.currentlyStaked = true;
        if(tokensStakedByUser[_msgSender()] == 0){
            amountOfStakers += 1;
        }
        tokensStakedByUser[_msgSender()] += 1;
        tokensStaked += 1;
        stakePortfolioByUser[_msgSender()].push(tokenId);
        uint256 indexOfNewElement = stakePortfolioByUser[_msgSender()].length - 1;
        indexOfTokenIdInStakePortfolio[tokenId] = indexOfNewElement;
        if(!welcomeBonusCollected[tokenId]) {
            _mint(_msgSender(), welcomeBonusAmount);
            welcomeBonusCollected[tokenId] = true;
        }
 
        emit NFTStaked(_msgSender(), tokenId);
    }
 
    function stakeBatch(uint256[] memory tokenIds) external {
        for(uint currentId = 0; currentId < tokenIds.length; currentId++) {
            if(tokenIds[currentId] == 0) {
                continue;
            }
            stake(tokenIds[currentId]);
        }
    }
 
    function unstakeBatch(uint256[] memory tokenIds) external {
        for(uint currentId = 0; currentId < tokenIds.length; currentId++) {
            if(tokenIds[currentId] == 0) {
                continue;
            }
            unstake(tokenIds[currentId]);
        }
    }
 
    function unstake(uint256 tokenId) public {
        if(pendingRewards(_msgSender(), tokenId) > 0){
            harvest(tokenId);
        }
        StakeInfo storage info = stakeLog[_msgSender()][tokenId];
        info.currentlyStaked = true;
        IERC721(collectionAddress).safeTransferFrom(address(this), _msgSender(), tokenId);
        require(IERC721(collectionAddress).ownerOf(tokenId) == _msgSender(),
            "$TRDL: Error while transferring token");
        if(tokensStakedByUser[_msgSender()] == 1){
            amountOfStakers -= 1;
        }
        tokensStakedByUser[_msgSender()] -= 1;
        tokensStaked -= 1;
        stakePortfolioByUser[_msgSender()][indexOfTokenIdInStakePortfolio[tokenId]] = 0;
        emit NFTUnstaked(_msgSender(), tokenId);
    }
 
    function harvest(uint256 tokenId) public {
        StakeInfo storage info = stakeLog[_msgSender()][tokenId];
        uint256 rewardAmountInERC20Tokens = pendingRewards(_msgSender(), tokenId);
        if(rewardAmountInERC20Tokens > 0) {
            info.lastHarvestBlock = block.number;
            _mint(_msgSender(), rewardAmountInERC20Tokens);
            emit RewardsHarvested(_msgSender(), rewardAmountInERC20Tokens);
        }
    }
 
    function harvestBatch(address user) external {
        uint256[] memory tokenIds = stakePortfolioByUser[user];
 
        for(uint currentId = 0; currentId < tokenIds.length; currentId++) {
            if(tokenIds[currentId] == 0) {
                continue;
            }
            harvest(tokenIds[currentId]);
        }
    }
 
    // ADMIN / SETTER FUNCTIONS
    function setNumberOfBlocksPerRewardUnit(uint256 numberOfBlocks) external onlyRole(CONTRACT_ADMIN_ROLE){
        numberOfBlocksPerRewardUnit = numberOfBlocks;
    }
 
    // parameter value must be supplied with 18 zeros.....
    // e.g.: 3 token = setCoinAmountPerRewardUnit(3000000000000000000)
    function setCoinAmountPerRewardUnit(uint256 coinAmount) external onlyRole(CONTRACT_ADMIN_ROLE){
        coinAmountPerRewardUnit = coinAmount;
    }
 
    // same as setCoinAmountPerRewardUnit()
    function setWelcomeBonusAmount(uint256 coinAmount) external onlyRole(CONTRACT_ADMIN_ROLE){
        welcomeBonusAmount = coinAmount;
    }
 
    function setCollectionAddress(address newAddress) external onlyRole(CONTRACT_ADMIN_ROLE){
        require (newAddress != address(0), "$TRDL: update to zero address not possible");
        collectionAddress = newAddress;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"_collectionAddress","type":"address"}],"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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NFTUnstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsHarvested","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"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountOfStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coinAmountPerRewardUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractCreationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"harvestBatch","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":"uint256","name":"","type":"uint256"}],"name":"indexOfTokenIdInStakePortfolio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"numberOfBlocksPerRewardUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"coinAmount","type":"uint256"}],"name":"setCoinAmountPerRewardUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setCollectionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfBlocks","type":"uint256"}],"name":"setNumberOfBlocksPerRewardUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"coinAmount","type":"uint256"}],"name":"setWelcomeBonusAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakeLog","outputs":[{"internalType":"uint256","name":"stakedAtBlock","type":"uint256"},{"internalType":"uint256","name":"lastHarvestBlock","type":"uint256"},{"internalType":"bool","name":"currentlyStaked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakePortfolioByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"stakedNFTSByUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","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":"tokensStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensStakedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstakeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"welcomeBonusAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"welcomeBonusCollected","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004ab938038062004ab98339818101604052810190620000379190620005dc565b6040518060400160405280600c81526020017f5374727564656c20436f696e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f245452444c0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000515565b508060049080519060200190620000d492919062000515565b505050620000f382692a5a058fc295ed0000006200021760201b60201c565b620001086000801b836200039060201b60201c565b6200013a7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea105016836200039060201b60201c565b6200016c7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848836200039060201b60201c565b6200019e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6836200039060201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504360808181525050678ac7230489e8000060088190555061505b600781905550680ad78ebc5ac6200000600981905550505062000822565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200028a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000281906200065b565b60405180910390fd5b6200029e60008383620003a660201b60201c565b8060026000828254620002b29190620006ab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003099190620006ab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037091906200067d565b60405180910390a36200038c60008383620003ab60201b60201c565b5050565b620003a28282620003b060201b60201c565b5050565b505050565b505050565b620003c28282620004a260201b60201c565b6200049e5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004436200050d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620005239062000746565b90600052602060002090601f01602090048101928262000547576000855562000593565b82601f106200056257805160ff191683800117855562000593565b8280016001018555821562000593579182015b828111156200059257825182559160200191906001019062000575565b5b509050620005a29190620005a6565b5090565b5b80821115620005c1576000816000905550600101620005a7565b5090565b600081519050620005d68162000808565b92915050565b60008060408385031215620005f657620005f5620007da565b5b60006200060685828601620005c5565b92505060206200061985828601620005c5565b9150509250929050565b600062000632601f836200069a565b91506200063f82620007df565b602082019050919050565b62000655816200073c565b82525050565b60006020820190508181036000830152620006768162000623565b9050919050565b60006020820190506200069460008301846200064a565b92915050565b600082825260208201905092915050565b6000620006b8826200073c565b9150620006c5836200073c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006fd57620006fc6200077c565b5b828201905092915050565b600062000715826200071c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200075f57607f821691505b60208210811415620007765762000775620007ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008138162000708565b81146200081f57600080fd5b50565b6080516142746200084560003960008181610acf015261138301526142746000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c806372dc794711610167578063a9059cbb116100ce578063dd62ed3e11610087578063dd62ed3e146108b1578063ddc63262146108e1578063e64a21f3146108fd578063ed6236be14610919578063f2f6de5014610935578063fcb93bd314610951576102a0565b8063a9059cbb146107db578063bca0239a1461080b578063c944129a14610827578063d539139314610859578063d547741f14610877578063d72b4b3814610893576102a0565b8063a0bbe86011610120578063a0bbe860146106f5578063a217fddf14610725578063a457c2d714610743578063a546dc8114610773578063a6904aa5146107a3578063a694fc3a146107bf576102a0565b806372dc79471461061f57806391d148541461064f5780639243fbcd1461067f57806395d89b411461069d57806399a03316146106bb5780639dc29fac146106d9576102a0565b8063282c51f31161020b57806340c10f19116101c457806340c10f19146105375780634287b314146105535780636099ecb2146105835780636aa00371146105b357806370a08231146105d15780637255f15914610601576102a0565b8063282c51f3146104775780632e17de78146104955780632f2ff15d146104b1578063313ce567146104cd57806336568abe146104eb5780633950935114610507576102a0565b80631ac2bd9e1161025d5780631ac2bd9e146103a15780631da03312146103bf5780631e36a46b146103dd578063230f436d146103fb57806323b872dd14610417578063248a9ca314610447576102a0565b806301ffc9a7146102a557806306fdde03146102d5578063095ea7b3146102f3578063150b7a021461032357806317314c501461035357806318160ddd14610383575b600080fd5b6102bf60048036038101906102ba9190613191565b61096d565b6040516102cc919061363b565b60405180910390f35b6102dd6109e7565b6040516102ea919061368c565b60405180910390f35b61030d6004803603810190610308919061309b565b610a79565b60405161031a919061363b565b60405180910390f35b61033d60048036038101906103389190613018565b610a97565b60405161034a9190613671565b60405180910390f35b61036d600480360381019061036891906131be565b610aab565b60405161037a919061386e565b60405180910390f35b61038b610ac3565b604051610398919061386e565b60405180910390f35b6103a9610acd565b6040516103b6919061386e565b60405180910390f35b6103c7610af1565b6040516103d49190613656565b60405180910390f35b6103e5610b15565b6040516103f2919061386e565b60405180910390f35b610415600480360381019061041091906130db565b610b1b565b005b610431600480360381019061042c9190612fc5565b610b8a565b60405161043e919061363b565b60405180910390f35b610461600480360381019061045c9190613124565b610c82565b60405161046e9190613656565b60405180910390f35b61047f610ca2565b60405161048c9190613656565b60405180910390f35b6104af60048036038101906104aa91906131be565b610cc6565b005b6104cb60048036038101906104c69190613151565b6110b9565b005b6104d56110e2565b6040516104e291906138c0565b60405180910390f35b61050560048036038101906105009190613151565b6110eb565b005b610521600480360381019061051c919061309b565b61116e565b60405161052e919061363b565b60405180910390f35b610551600480360381019061054c919061309b565b61121a565b005b61056d60048036038101906105689190612f2b565b61125b565b60405161057a9190613619565b60405180910390f35b61059d6004803603810190610598919061309b565b6112f2565b6040516105aa919061386e565b60405180910390f35b6105bb611437565b6040516105c8919061359e565b60405180910390f35b6105eb60048036038101906105e69190612f2b565b61145d565b6040516105f8919061386e565b60405180910390f35b6106096114a5565b604051610616919061386e565b60405180910390f35b61063960048036038101906106349190612f2b565b6114ab565b604051610646919061386e565b60405180910390f35b61066960048036038101906106649190613151565b6114c3565b604051610676919061363b565b60405180910390f35b61068761152e565b604051610694919061386e565b60405180910390f35b6106a5611534565b6040516106b2919061368c565b60405180910390f35b6106c36115c6565b6040516106d0919061386e565b60405180910390f35b6106f360048036038101906106ee919061309b565b6115cc565b005b61070f600480360381019061070a91906131be565b61160d565b60405161071c919061363b565b60405180910390f35b61072d61162d565b60405161073a9190613656565b60405180910390f35b61075d6004803603810190610758919061309b565b611634565b60405161076a919061363b565b60405180910390f35b61078d6004803603810190610788919061309b565b61171f565b60405161079a919061386e565b60405180910390f35b6107bd60048036038101906107b89190612f2b565b611750565b005b6107d960048036038101906107d491906131be565b611837565b005b6107f560048036038101906107f0919061309b565b611cdc565b604051610802919061363b565b60405180910390f35b61082560048036038101906108209190612f2b565b611cfa565b005b610841600480360381019061083c919061309b565b611dfc565b60405161085093929190613889565b60405180910390f35b610861611e40565b60405161086e9190613656565b60405180910390f35b610891600480360381019061088c9190613151565b611e64565b005b61089b611e8d565b6040516108a8919061386e565b60405180910390f35b6108cb60048036038101906108c69190612f85565b611e93565b6040516108d8919061386e565b60405180910390f35b6108fb60048036038101906108f691906131be565b611f1a565b005b610917600480360381019061091291906130db565b611ff3565b005b610933600480360381019061092e91906131be565b612062565b005b61094f600480360381019061094a91906131be565b61209f565b005b61096b600480360381019061096691906131be565b6120dc565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e057506109df82612119565b5b9050919050565b6060600380546109f690613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290613bc9565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a8d610a86612183565b848461218b565b6001905092915050565b600063150b7a0260e01b9050949350505050565b60106020528060005260406000206000915090505481565b6000600254905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501681565b60095481565b60005b8151811015610b86576000828281518110610b3c57610b3b613d02565b5b60200260200101511415610b4f57610b73565b610b72828281518110610b6557610b64613d02565b5b6020026020010151611837565b5b8080610b7e90613c2c565b915050610b1e565b5050565b6000610b97848484612356565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610be2612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c599061378e565b60405180910390fd5b610c7685610c6e612183565b85840361218b565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6000610cd9610cd3612183565b836112f2565b1115610ce957610ce881611f1a565b5b6000600c6000610cf7612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020905060018160020160006101000a81548160ff021916908315150217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30610da8612183565b856040518463ffffffff1660e01b8152600401610dc7939291906135b9565b600060405180830381600087803b158015610de157600080fd5b505af1158015610df5573d6000803e3d6000fd5b50505050610e01612183565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610e72919061386e565b60206040518083038186803b158015610e8a57600080fd5b505afa158015610e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec29190612f58565b73ffffffffffffffffffffffffffffffffffffffff1614610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061374e565b60405180910390fd5b6001600d6000610f26612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f82576001600a6000828254610f7a9190613a9e565b925050819055505b6001600d6000610f90612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd99190613a9e565b925050819055506001600b6000828254610ff39190613a9e565b925050819055506000600f6000611008612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060106000858152602001908152602001600020548154811061106757611066613d02565b5b90600052602060002001819055507f963148346e3c93bb3eb4b4c296e2e13321ff22bf1118c91686cb1bfe4adcd91861109e612183565b836040516110ad9291906135f0565b60405180910390a15050565b6110c282610c82565b6110d3816110ce612183565b6125d7565b6110dd8383612674565b505050565b60006012905090565b6110f3612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111579061382e565b60405180910390fd5b61116a8282612755565b5050565b600061121061117b612183565b848460016000611189612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461120b91906139bd565b61218b565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661124c81611247612183565b6125d7565b6112568383612837565b505050565b6060600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156112e657602002820191906000526020600020905b8154815260200190600101908083116112d2575b50505050509050919050565b600080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900460ff16151515158152505090507f0000000000000000000000000000000000000000000000000000000000000000816020015110806113bb57506000151581604001511515145b156113ca576000915050611431565b60008160200151436113dc9190613a9e565b905060026007546113ed9190613a44565b8110156113ff57600092505050611431565b60006001600754836114119190613a13565b61141b9190613a9e565b90506008548161142b9190613a44565b93505050505b92915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b600d6020528060005260406000206000915090505481565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b60606004805461154390613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461156f90613bc9565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b600b5481565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486115fe816115f9612183565b6125d7565b6116088383612997565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b60008060016000611643612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061380e565b60405180910390fd5b61171461170b612183565b8585840361218b565b600191505092915050565b600f602052816000526040600020818154811061173b57600080fd5b90600052602060002001600091509150505481565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166117828161177d612183565b6125d7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e99061376e565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e61187d612183565b30846040518463ffffffff1660e01b815260040161189d939291906135b9565b600060405180830381600087803b1580156118b757600080fd5b505af11580156118cb573d6000803e3d6000fd5b505050503073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611941919061386e565b60206040518083038186803b15801561195957600080fd5b505afa15801561196d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119919190612f58565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061374e565b60405180910390fd5b6000600c60006119f5612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020905043816000018190555043816001018190555060018160020160006101000a81548160ff0219169083151502179055506000600d6000611a7f612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611adb576001600a6000828254611ad391906139bd565b925050819055505b6001600d6000611ae9612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3291906139bd565b925050819055506001600b6000828254611b4c91906139bd565b92505081905550600f6000611b5f612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082908060018154018082558091505060019003906000526020600020016000909190919091505560006001600f6000611bd0612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611c189190613a9e565b9050806010600085815260200190815260200160002081905550600e600084815260200190815260200160002060009054906101000a900460ff16611c9757611c6a611c62612183565b600954612837565b6001600e600085815260200190815260200160002060006101000a81548160ff0219169083151502179055505b7f0cda5cf38f6592672c7b4a22ff3d50874d1913629bd5ffedc27b7b40503d60fd611cc0612183565b84604051611ccf9291906135f0565b60405180910390a1505050565b6000611cf0611ce9612183565b8484612356565b6001905092915050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d8557602002820191906000526020600020905b815481526020019060010190808311611d71575b5050505050905060005b8151811015611df7576000828281518110611dad57611dac613d02565b5b60200260200101511415611dc057611de4565b611de3828281518110611dd657611dd5613d02565b5b6020026020010151611f1a565b5b8080611def90613c2c565b915050611d8f565b505050565b600c602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020160009054906101000a900460ff16905083565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611e6d82610c82565b611e7e81611e79612183565b6125d7565b611e888383612755565b505050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c6000611f28612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002090506000611f88611f82612183565b846112f2565b90506000811115611fee57438260010181905550611fad611fa7612183565b82612837565b7fbc8fb63d817de4fabea2108e9b7eefca87245899f4b357636c26b5cad02ec5b4611fd6612183565b82604051611fe59291906135f0565b60405180910390a15b505050565b60005b815181101561205e57600082828151811061201457612013613d02565b5b602002602001015114156120275761204b565b61204a82828151811061203d5761203c613d02565b5b6020026020010151610cc6565b5b808061205690613c2c565b915050611ff6565b5050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166120948161208f612183565b6125d7565b816007819055505050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166120d1816120cc612183565b6125d7565b816009819055505050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501661210e81612109612183565b6125d7565b816008819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906137ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122629061370e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612349919061386e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd906137ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d906136ce565b60405180910390fd5b612441838383612b6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be9061372e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255a91906139bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125be919061386e565b60405180910390a36125d1848484612b73565b50505050565b6125e182826114c3565b612670576126068173ffffffffffffffffffffffffffffffffffffffff166014612b78565b6126148360001c6020612b78565b604051602001612625929190613564565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667919061368c565b60405180910390fd5b5050565b61267e82826114c3565b6127515760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126f6612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61275f82826114c3565b156128335760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506127d8612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e9061384e565b60405180910390fd5b6128b360008383612b6e565b80600260008282546128c591906139bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461291a91906139bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161297f919061386e565b60405180910390a361299360008383612b73565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fe906137ae565b60405180910390fd5b612a1382600083612b6e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a90906136ee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612af09190613a9e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b55919061386e565b60405180910390a3612b6983600084612b73565b505050565b505050565b505050565b606060006002836002612b8b9190613a44565b612b9591906139bd565b67ffffffffffffffff811115612bae57612bad613d31565b5b6040519080825280601f01601f191660200182016040528015612be05781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612c1857612c17613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c7c57612c7b613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612cbc9190613a44565b612cc691906139bd565b90505b6001811115612d66577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612d0857612d07613d02565b5b1a60f81b828281518110612d1f57612d1e613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612d5f90613b9f565b9050612cc9565b5060008414612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da1906136ae565b60405180910390fd5b8091505092915050565b6000612dc7612dc284613900565b6138db565b90508083825260208201905082856020860282011115612dea57612de9613d65565b5b60005b85811015612e1a5781612e008882612f16565b845260208401935060208301925050600181019050612ded565b5050509392505050565b6000612e37612e328461392c565b6138db565b905082815260208101848484011115612e5357612e52613d6a565b5b612e5e848285613b5d565b509392505050565b600081359050612e75816141e2565b92915050565b600081519050612e8a816141e2565b92915050565b600082601f830112612ea557612ea4613d60565b5b8135612eb5848260208601612db4565b91505092915050565b600081359050612ecd816141f9565b92915050565b600081359050612ee281614210565b92915050565b600082601f830112612efd57612efc613d60565b5b8135612f0d848260208601612e24565b91505092915050565b600081359050612f2581614227565b92915050565b600060208284031215612f4157612f40613d74565b5b6000612f4f84828501612e66565b91505092915050565b600060208284031215612f6e57612f6d613d74565b5b6000612f7c84828501612e7b565b91505092915050565b60008060408385031215612f9c57612f9b613d74565b5b6000612faa85828601612e66565b9250506020612fbb85828601612e66565b9150509250929050565b600080600060608486031215612fde57612fdd613d74565b5b6000612fec86828701612e66565b9350506020612ffd86828701612e66565b925050604061300e86828701612f16565b9150509250925092565b6000806000806080858703121561303257613031613d74565b5b600061304087828801612e66565b945050602061305187828801612e66565b935050604061306287828801612f16565b925050606085013567ffffffffffffffff81111561308357613082613d6f565b5b61308f87828801612ee8565b91505092959194509250565b600080604083850312156130b2576130b1613d74565b5b60006130c085828601612e66565b92505060206130d185828601612f16565b9150509250929050565b6000602082840312156130f1576130f0613d74565b5b600082013567ffffffffffffffff81111561310f5761310e613d6f565b5b61311b84828501612e90565b91505092915050565b60006020828403121561313a57613139613d74565b5b600061314884828501612ebe565b91505092915050565b6000806040838503121561316857613167613d74565b5b600061317685828601612ebe565b925050602061318785828601612e66565b9150509250929050565b6000602082840312156131a7576131a6613d74565b5b60006131b584828501612ed3565b91505092915050565b6000602082840312156131d4576131d3613d74565b5b60006131e284828501612f16565b91505092915050565b60006131f78383613537565b60208301905092915050565b61320c81613ad2565b82525050565b600061321d8261396d565b6132278185613990565b93506132328361395d565b8060005b8381101561326357815161324a88826131eb565b975061325583613983565b925050600181019050613236565b5085935050505092915050565b61327981613ae4565b82525050565b61328881613af0565b82525050565b61329781613afa565b82525050565b60006132a882613978565b6132b281856139a1565b93506132c2818560208601613b6c565b6132cb81613d79565b840191505092915050565b60006132e182613978565b6132eb81856139b2565b93506132fb818560208601613b6c565b80840191505092915050565b60006133146020836139a1565b915061331f82613d8a565b602082019050919050565b60006133376023836139a1565b915061334282613db3565b604082019050919050565b600061335a6022836139a1565b915061336582613e02565b604082019050919050565b600061337d6022836139a1565b915061338882613e51565b604082019050919050565b60006133a06026836139a1565b91506133ab82613ea0565b604082019050919050565b60006133c36025836139a1565b91506133ce82613eef565b604082019050919050565b60006133e6602a836139a1565b91506133f182613f3e565b604082019050919050565b60006134096028836139a1565b915061341482613f8d565b604082019050919050565b600061342c6021836139a1565b915061343782613fdc565b604082019050919050565b600061344f6025836139a1565b915061345a8261402b565b604082019050919050565b60006134726024836139a1565b915061347d8261407a565b604082019050919050565b60006134956017836139b2565b91506134a0826140c9565b601782019050919050565b60006134b86025836139a1565b91506134c3826140f2565b604082019050919050565b60006134db6011836139b2565b91506134e682614141565b601182019050919050565b60006134fe602f836139a1565b91506135098261416a565b604082019050919050565b6000613521601f836139a1565b915061352c826141b9565b602082019050919050565b61354081613b46565b82525050565b61354f81613b46565b82525050565b61355e81613b50565b82525050565b600061356f82613488565b915061357b82856132d6565b9150613586826134ce565b915061359282846132d6565b91508190509392505050565b60006020820190506135b36000830184613203565b92915050565b60006060820190506135ce6000830186613203565b6135db6020830185613203565b6135e86040830184613546565b949350505050565b60006040820190506136056000830185613203565b6136126020830184613546565b9392505050565b600060208201905081810360008301526136338184613212565b905092915050565b60006020820190506136506000830184613270565b92915050565b600060208201905061366b600083018461327f565b92915050565b6000602082019050613686600083018461328e565b92915050565b600060208201905081810360008301526136a6818461329d565b905092915050565b600060208201905081810360008301526136c781613307565b9050919050565b600060208201905081810360008301526136e78161332a565b9050919050565b600060208201905081810360008301526137078161334d565b9050919050565b6000602082019050818103600083015261372781613370565b9050919050565b6000602082019050818103600083015261374781613393565b9050919050565b60006020820190508181036000830152613767816133b6565b9050919050565b60006020820190508181036000830152613787816133d9565b9050919050565b600060208201905081810360008301526137a7816133fc565b9050919050565b600060208201905081810360008301526137c78161341f565b9050919050565b600060208201905081810360008301526137e781613442565b9050919050565b6000602082019050818103600083015261380781613465565b9050919050565b60006020820190508181036000830152613827816134ab565b9050919050565b60006020820190508181036000830152613847816134f1565b9050919050565b6000602082019050818103600083015261386781613514565b9050919050565b60006020820190506138836000830184613546565b92915050565b600060608201905061389e6000830186613546565b6138ab6020830185613546565b6138b86040830184613270565b949350505050565b60006020820190506138d56000830184613555565b92915050565b60006138e56138f6565b90506138f18282613bfb565b919050565b6000604051905090565b600067ffffffffffffffff82111561391b5761391a613d31565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561394757613946613d31565b5b61395082613d79565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139c882613b46565b91506139d383613b46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a0857613a07613c75565b5b828201905092915050565b6000613a1e82613b46565b9150613a2983613b46565b925082613a3957613a38613ca4565b5b828204905092915050565b6000613a4f82613b46565b9150613a5a83613b46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9357613a92613c75565b5b828202905092915050565b6000613aa982613b46565b9150613ab483613b46565b925082821015613ac757613ac6613c75565b5b828203905092915050565b6000613add82613b26565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b8a578082015181840152602081019050613b6f565b83811115613b99576000848401525b50505050565b6000613baa82613b46565b91506000821415613bbe57613bbd613c75565b5b600182039050919050565b60006002820490506001821680613be157607f821691505b60208210811415613bf557613bf4613cd3565b5b50919050565b613c0482613d79565b810181811067ffffffffffffffff82111715613c2357613c22613d31565b5b80604052505050565b6000613c3782613b46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c6a57613c69613c75565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f245452444c3a204572726f72207768696c65207472616e7366657272696e672060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b7f245452444c3a2075706461746520746f207a65726f2061646472657373206e6f60008201527f7420706f737369626c6500000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6141eb81613ad2565b81146141f657600080fd5b50565b61420281613af0565b811461420d57600080fd5b50565b61421981613afa565b811461422457600080fd5b50565b61423081613b46565b811461423b57600080fd5b5056fea264697066735822122007334d766cbc405cf2a747fb67dd00e30b7081d8b1130eda394aec79759499da64736f6c634300080700330000000000000000000000006079903efe7d838e21368a5ea8c89bf26cbdbb790000000000000000000000008419721412da63076b4556247a028e93ab51f9f4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c806372dc794711610167578063a9059cbb116100ce578063dd62ed3e11610087578063dd62ed3e146108b1578063ddc63262146108e1578063e64a21f3146108fd578063ed6236be14610919578063f2f6de5014610935578063fcb93bd314610951576102a0565b8063a9059cbb146107db578063bca0239a1461080b578063c944129a14610827578063d539139314610859578063d547741f14610877578063d72b4b3814610893576102a0565b8063a0bbe86011610120578063a0bbe860146106f5578063a217fddf14610725578063a457c2d714610743578063a546dc8114610773578063a6904aa5146107a3578063a694fc3a146107bf576102a0565b806372dc79471461061f57806391d148541461064f5780639243fbcd1461067f57806395d89b411461069d57806399a03316146106bb5780639dc29fac146106d9576102a0565b8063282c51f31161020b57806340c10f19116101c457806340c10f19146105375780634287b314146105535780636099ecb2146105835780636aa00371146105b357806370a08231146105d15780637255f15914610601576102a0565b8063282c51f3146104775780632e17de78146104955780632f2ff15d146104b1578063313ce567146104cd57806336568abe146104eb5780633950935114610507576102a0565b80631ac2bd9e1161025d5780631ac2bd9e146103a15780631da03312146103bf5780631e36a46b146103dd578063230f436d146103fb57806323b872dd14610417578063248a9ca314610447576102a0565b806301ffc9a7146102a557806306fdde03146102d5578063095ea7b3146102f3578063150b7a021461032357806317314c501461035357806318160ddd14610383575b600080fd5b6102bf60048036038101906102ba9190613191565b61096d565b6040516102cc919061363b565b60405180910390f35b6102dd6109e7565b6040516102ea919061368c565b60405180910390f35b61030d6004803603810190610308919061309b565b610a79565b60405161031a919061363b565b60405180910390f35b61033d60048036038101906103389190613018565b610a97565b60405161034a9190613671565b60405180910390f35b61036d600480360381019061036891906131be565b610aab565b60405161037a919061386e565b60405180910390f35b61038b610ac3565b604051610398919061386e565b60405180910390f35b6103a9610acd565b6040516103b6919061386e565b60405180910390f35b6103c7610af1565b6040516103d49190613656565b60405180910390f35b6103e5610b15565b6040516103f2919061386e565b60405180910390f35b610415600480360381019061041091906130db565b610b1b565b005b610431600480360381019061042c9190612fc5565b610b8a565b60405161043e919061363b565b60405180910390f35b610461600480360381019061045c9190613124565b610c82565b60405161046e9190613656565b60405180910390f35b61047f610ca2565b60405161048c9190613656565b60405180910390f35b6104af60048036038101906104aa91906131be565b610cc6565b005b6104cb60048036038101906104c69190613151565b6110b9565b005b6104d56110e2565b6040516104e291906138c0565b60405180910390f35b61050560048036038101906105009190613151565b6110eb565b005b610521600480360381019061051c919061309b565b61116e565b60405161052e919061363b565b60405180910390f35b610551600480360381019061054c919061309b565b61121a565b005b61056d60048036038101906105689190612f2b565b61125b565b60405161057a9190613619565b60405180910390f35b61059d6004803603810190610598919061309b565b6112f2565b6040516105aa919061386e565b60405180910390f35b6105bb611437565b6040516105c8919061359e565b60405180910390f35b6105eb60048036038101906105e69190612f2b565b61145d565b6040516105f8919061386e565b60405180910390f35b6106096114a5565b604051610616919061386e565b60405180910390f35b61063960048036038101906106349190612f2b565b6114ab565b604051610646919061386e565b60405180910390f35b61066960048036038101906106649190613151565b6114c3565b604051610676919061363b565b60405180910390f35b61068761152e565b604051610694919061386e565b60405180910390f35b6106a5611534565b6040516106b2919061368c565b60405180910390f35b6106c36115c6565b6040516106d0919061386e565b60405180910390f35b6106f360048036038101906106ee919061309b565b6115cc565b005b61070f600480360381019061070a91906131be565b61160d565b60405161071c919061363b565b60405180910390f35b61072d61162d565b60405161073a9190613656565b60405180910390f35b61075d6004803603810190610758919061309b565b611634565b60405161076a919061363b565b60405180910390f35b61078d6004803603810190610788919061309b565b61171f565b60405161079a919061386e565b60405180910390f35b6107bd60048036038101906107b89190612f2b565b611750565b005b6107d960048036038101906107d491906131be565b611837565b005b6107f560048036038101906107f0919061309b565b611cdc565b604051610802919061363b565b60405180910390f35b61082560048036038101906108209190612f2b565b611cfa565b005b610841600480360381019061083c919061309b565b611dfc565b60405161085093929190613889565b60405180910390f35b610861611e40565b60405161086e9190613656565b60405180910390f35b610891600480360381019061088c9190613151565b611e64565b005b61089b611e8d565b6040516108a8919061386e565b60405180910390f35b6108cb60048036038101906108c69190612f85565b611e93565b6040516108d8919061386e565b60405180910390f35b6108fb60048036038101906108f691906131be565b611f1a565b005b610917600480360381019061091291906130db565b611ff3565b005b610933600480360381019061092e91906131be565b612062565b005b61094f600480360381019061094a91906131be565b61209f565b005b61096b600480360381019061096691906131be565b6120dc565b005b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e057506109df82612119565b5b9050919050565b6060600380546109f690613bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290613bc9565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a8d610a86612183565b848461218b565b6001905092915050565b600063150b7a0260e01b9050949350505050565b60106020528060005260406000206000915090505481565b6000600254905090565b7f0000000000000000000000000000000000000000000000000000000000ee1ee081565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501681565b60095481565b60005b8151811015610b86576000828281518110610b3c57610b3b613d02565b5b60200260200101511415610b4f57610b73565b610b72828281518110610b6557610b64613d02565b5b6020026020010151611837565b5b8080610b7e90613c2c565b915050610b1e565b5050565b6000610b97848484612356565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610be2612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c599061378e565b60405180910390fd5b610c7685610c6e612183565b85840361218b565b60019150509392505050565b600060056000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6000610cd9610cd3612183565b836112f2565b1115610ce957610ce881611f1a565b5b6000600c6000610cf7612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020905060018160020160006101000a81548160ff021916908315150217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e30610da8612183565b856040518463ffffffff1660e01b8152600401610dc7939291906135b9565b600060405180830381600087803b158015610de157600080fd5b505af1158015610df5573d6000803e3d6000fd5b50505050610e01612183565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610e72919061386e565b60206040518083038186803b158015610e8a57600080fd5b505afa158015610e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec29190612f58565b73ffffffffffffffffffffffffffffffffffffffff1614610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061374e565b60405180910390fd5b6001600d6000610f26612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610f82576001600a6000828254610f7a9190613a9e565b925050819055505b6001600d6000610f90612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd99190613a9e565b925050819055506001600b6000828254610ff39190613a9e565b925050819055506000600f6000611008612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060106000858152602001908152602001600020548154811061106757611066613d02565b5b90600052602060002001819055507f963148346e3c93bb3eb4b4c296e2e13321ff22bf1118c91686cb1bfe4adcd91861109e612183565b836040516110ad9291906135f0565b60405180910390a15050565b6110c282610c82565b6110d3816110ce612183565b6125d7565b6110dd8383612674565b505050565b60006012905090565b6110f3612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111579061382e565b60405180910390fd5b61116a8282612755565b5050565b600061121061117b612183565b848460016000611189612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461120b91906139bd565b61218b565b6001905092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661124c81611247612183565b6125d7565b6112568383612837565b505050565b6060600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156112e657602002820191906000526020600020905b8154815260200190600101908083116112d2575b50505050509050919050565b600080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900460ff16151515158152505090507f0000000000000000000000000000000000000000000000000000000000ee1ee0816020015110806113bb57506000151581604001511515145b156113ca576000915050611431565b60008160200151436113dc9190613a9e565b905060026007546113ed9190613a44565b8110156113ff57600092505050611431565b60006001600754836114119190613a13565b61141b9190613a9e565b90506008548161142b9190613a44565b93505050505b92915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60085481565b600d6020528060005260406000206000915090505481565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b60606004805461154390613bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461156f90613bc9565b80156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b600b5481565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486115fe816115f9612183565b6125d7565b6116088383612997565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b60008060016000611643612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061380e565b60405180910390fd5b61171461170b612183565b8585840361218b565b600191505092915050565b600f602052816000526040600020818154811061173b57600080fd5b90600052602060002001600091509150505481565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166117828161177d612183565b6125d7565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e99061376e565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e61187d612183565b30846040518463ffffffff1660e01b815260040161189d939291906135b9565b600060405180830381600087803b1580156118b757600080fd5b505af11580156118cb573d6000803e3d6000fd5b505050503073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611941919061386e565b60206040518083038186803b15801561195957600080fd5b505afa15801561196d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119919190612f58565b73ffffffffffffffffffffffffffffffffffffffff16146119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de9061374e565b60405180910390fd5b6000600c60006119f5612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000838152602001908152602001600020905043816000018190555043816001018190555060018160020160006101000a81548160ff0219169083151502179055506000600d6000611a7f612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611adb576001600a6000828254611ad391906139bd565b925050819055505b6001600d6000611ae9612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3291906139bd565b925050819055506001600b6000828254611b4c91906139bd565b92505081905550600f6000611b5f612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082908060018154018082558091505060019003906000526020600020016000909190919091505560006001600f6000611bd0612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611c189190613a9e565b9050806010600085815260200190815260200160002081905550600e600084815260200190815260200160002060009054906101000a900460ff16611c9757611c6a611c62612183565b600954612837565b6001600e600085815260200190815260200160002060006101000a81548160ff0219169083151502179055505b7f0cda5cf38f6592672c7b4a22ff3d50874d1913629bd5ffedc27b7b40503d60fd611cc0612183565b84604051611ccf9291906135f0565b60405180910390a1505050565b6000611cf0611ce9612183565b8484612356565b6001905092915050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611d8557602002820191906000526020600020905b815481526020019060010190808311611d71575b5050505050905060005b8151811015611df7576000828281518110611dad57611dac613d02565b5b60200260200101511415611dc057611de4565b611de3828281518110611dd657611dd5613d02565b5b6020026020010151611f1a565b5b8080611def90613c2c565b915050611d8f565b505050565b600c602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020160009054906101000a900460ff16905083565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611e6d82610c82565b611e7e81611e79612183565b6125d7565b611e888383612755565b505050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600c6000611f28612183565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002090506000611f88611f82612183565b846112f2565b90506000811115611fee57438260010181905550611fad611fa7612183565b82612837565b7fbc8fb63d817de4fabea2108e9b7eefca87245899f4b357636c26b5cad02ec5b4611fd6612183565b82604051611fe59291906135f0565b60405180910390a15b505050565b60005b815181101561205e57600082828151811061201457612013613d02565b5b602002602001015114156120275761204b565b61204a82828151811061203d5761203c613d02565b5b6020026020010151610cc6565b5b808061205690613c2c565b915050611ff6565b5050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166120948161208f612183565b6125d7565b816007819055505050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea1050166120d1816120cc612183565b6125d7565b816009819055505050565b7f2ce8d04a9c35987429af538825cd2438cc5c5bb5dc427955f84daaa3ea10501661210e81612109612183565b6125d7565b816008819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f2906137ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122629061370e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612349919061386e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd906137ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d906136ce565b60405180910390fd5b612441838383612b6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be9061372e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255a91906139bd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125be919061386e565b60405180910390a36125d1848484612b73565b50505050565b6125e182826114c3565b612670576126068173ffffffffffffffffffffffffffffffffffffffff166014612b78565b6126148360001c6020612b78565b604051602001612625929190613564565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612667919061368c565b60405180910390fd5b5050565b61267e82826114c3565b6127515760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126f6612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61275f82826114c3565b156128335760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506127d8612183565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e9061384e565b60405180910390fd5b6128b360008383612b6e565b80600260008282546128c591906139bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461291a91906139bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161297f919061386e565b60405180910390a361299360008383612b73565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fe906137ae565b60405180910390fd5b612a1382600083612b6e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a90906136ee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612af09190613a9e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b55919061386e565b60405180910390a3612b6983600084612b73565b505050565b505050565b505050565b606060006002836002612b8b9190613a44565b612b9591906139bd565b67ffffffffffffffff811115612bae57612bad613d31565b5b6040519080825280601f01601f191660200182016040528015612be05781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612c1857612c17613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c7c57612c7b613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612cbc9190613a44565b612cc691906139bd565b90505b6001811115612d66577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612d0857612d07613d02565b5b1a60f81b828281518110612d1f57612d1e613d02565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612d5f90613b9f565b9050612cc9565b5060008414612daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da1906136ae565b60405180910390fd5b8091505092915050565b6000612dc7612dc284613900565b6138db565b90508083825260208201905082856020860282011115612dea57612de9613d65565b5b60005b85811015612e1a5781612e008882612f16565b845260208401935060208301925050600181019050612ded565b5050509392505050565b6000612e37612e328461392c565b6138db565b905082815260208101848484011115612e5357612e52613d6a565b5b612e5e848285613b5d565b509392505050565b600081359050612e75816141e2565b92915050565b600081519050612e8a816141e2565b92915050565b600082601f830112612ea557612ea4613d60565b5b8135612eb5848260208601612db4565b91505092915050565b600081359050612ecd816141f9565b92915050565b600081359050612ee281614210565b92915050565b600082601f830112612efd57612efc613d60565b5b8135612f0d848260208601612e24565b91505092915050565b600081359050612f2581614227565b92915050565b600060208284031215612f4157612f40613d74565b5b6000612f4f84828501612e66565b91505092915050565b600060208284031215612f6e57612f6d613d74565b5b6000612f7c84828501612e7b565b91505092915050565b60008060408385031215612f9c57612f9b613d74565b5b6000612faa85828601612e66565b9250506020612fbb85828601612e66565b9150509250929050565b600080600060608486031215612fde57612fdd613d74565b5b6000612fec86828701612e66565b9350506020612ffd86828701612e66565b925050604061300e86828701612f16565b9150509250925092565b6000806000806080858703121561303257613031613d74565b5b600061304087828801612e66565b945050602061305187828801612e66565b935050604061306287828801612f16565b925050606085013567ffffffffffffffff81111561308357613082613d6f565b5b61308f87828801612ee8565b91505092959194509250565b600080604083850312156130b2576130b1613d74565b5b60006130c085828601612e66565b92505060206130d185828601612f16565b9150509250929050565b6000602082840312156130f1576130f0613d74565b5b600082013567ffffffffffffffff81111561310f5761310e613d6f565b5b61311b84828501612e90565b91505092915050565b60006020828403121561313a57613139613d74565b5b600061314884828501612ebe565b91505092915050565b6000806040838503121561316857613167613d74565b5b600061317685828601612ebe565b925050602061318785828601612e66565b9150509250929050565b6000602082840312156131a7576131a6613d74565b5b60006131b584828501612ed3565b91505092915050565b6000602082840312156131d4576131d3613d74565b5b60006131e284828501612f16565b91505092915050565b60006131f78383613537565b60208301905092915050565b61320c81613ad2565b82525050565b600061321d8261396d565b6132278185613990565b93506132328361395d565b8060005b8381101561326357815161324a88826131eb565b975061325583613983565b925050600181019050613236565b5085935050505092915050565b61327981613ae4565b82525050565b61328881613af0565b82525050565b61329781613afa565b82525050565b60006132a882613978565b6132b281856139a1565b93506132c2818560208601613b6c565b6132cb81613d79565b840191505092915050565b60006132e182613978565b6132eb81856139b2565b93506132fb818560208601613b6c565b80840191505092915050565b60006133146020836139a1565b915061331f82613d8a565b602082019050919050565b60006133376023836139a1565b915061334282613db3565b604082019050919050565b600061335a6022836139a1565b915061336582613e02565b604082019050919050565b600061337d6022836139a1565b915061338882613e51565b604082019050919050565b60006133a06026836139a1565b91506133ab82613ea0565b604082019050919050565b60006133c36025836139a1565b91506133ce82613eef565b604082019050919050565b60006133e6602a836139a1565b91506133f182613f3e565b604082019050919050565b60006134096028836139a1565b915061341482613f8d565b604082019050919050565b600061342c6021836139a1565b915061343782613fdc565b604082019050919050565b600061344f6025836139a1565b915061345a8261402b565b604082019050919050565b60006134726024836139a1565b915061347d8261407a565b604082019050919050565b60006134956017836139b2565b91506134a0826140c9565b601782019050919050565b60006134b86025836139a1565b91506134c3826140f2565b604082019050919050565b60006134db6011836139b2565b91506134e682614141565b601182019050919050565b60006134fe602f836139a1565b91506135098261416a565b604082019050919050565b6000613521601f836139a1565b915061352c826141b9565b602082019050919050565b61354081613b46565b82525050565b61354f81613b46565b82525050565b61355e81613b50565b82525050565b600061356f82613488565b915061357b82856132d6565b9150613586826134ce565b915061359282846132d6565b91508190509392505050565b60006020820190506135b36000830184613203565b92915050565b60006060820190506135ce6000830186613203565b6135db6020830185613203565b6135e86040830184613546565b949350505050565b60006040820190506136056000830185613203565b6136126020830184613546565b9392505050565b600060208201905081810360008301526136338184613212565b905092915050565b60006020820190506136506000830184613270565b92915050565b600060208201905061366b600083018461327f565b92915050565b6000602082019050613686600083018461328e565b92915050565b600060208201905081810360008301526136a6818461329d565b905092915050565b600060208201905081810360008301526136c781613307565b9050919050565b600060208201905081810360008301526136e78161332a565b9050919050565b600060208201905081810360008301526137078161334d565b9050919050565b6000602082019050818103600083015261372781613370565b9050919050565b6000602082019050818103600083015261374781613393565b9050919050565b60006020820190508181036000830152613767816133b6565b9050919050565b60006020820190508181036000830152613787816133d9565b9050919050565b600060208201905081810360008301526137a7816133fc565b9050919050565b600060208201905081810360008301526137c78161341f565b9050919050565b600060208201905081810360008301526137e781613442565b9050919050565b6000602082019050818103600083015261380781613465565b9050919050565b60006020820190508181036000830152613827816134ab565b9050919050565b60006020820190508181036000830152613847816134f1565b9050919050565b6000602082019050818103600083015261386781613514565b9050919050565b60006020820190506138836000830184613546565b92915050565b600060608201905061389e6000830186613546565b6138ab6020830185613546565b6138b86040830184613270565b949350505050565b60006020820190506138d56000830184613555565b92915050565b60006138e56138f6565b90506138f18282613bfb565b919050565b6000604051905090565b600067ffffffffffffffff82111561391b5761391a613d31565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561394757613946613d31565b5b61395082613d79565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139c882613b46565b91506139d383613b46565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a0857613a07613c75565b5b828201905092915050565b6000613a1e82613b46565b9150613a2983613b46565b925082613a3957613a38613ca4565b5b828204905092915050565b6000613a4f82613b46565b9150613a5a83613b46565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a9357613a92613c75565b5b828202905092915050565b6000613aa982613b46565b9150613ab483613b46565b925082821015613ac757613ac6613c75565b5b828203905092915050565b6000613add82613b26565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b8a578082015181840152602081019050613b6f565b83811115613b99576000848401525b50505050565b6000613baa82613b46565b91506000821415613bbe57613bbd613c75565b5b600182039050919050565b60006002820490506001821680613be157607f821691505b60208210811415613bf557613bf4613cd3565b5b50919050565b613c0482613d79565b810181811067ffffffffffffffff82111715613c2357613c22613d31565b5b80604052505050565b6000613c3782613b46565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c6a57613c69613c75565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f245452444c3a204572726f72207768696c65207472616e7366657272696e672060008201527f746f6b656e000000000000000000000000000000000000000000000000000000602082015250565b7f245452444c3a2075706461746520746f207a65726f2061646472657373206e6f60008201527f7420706f737369626c6500000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6141eb81613ad2565b81146141f657600080fd5b50565b61420281613af0565b811461420d57600080fd5b50565b61421981613afa565b811461422457600080fd5b50565b61423081613b46565b811461423b57600080fd5b5056fea264697066735822122007334d766cbc405cf2a747fb67dd00e30b7081d8b1130eda394aec79759499da64736f6c63430008070033

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

0000000000000000000000006079903efe7d838e21368a5ea8c89bf26cbdbb790000000000000000000000008419721412da63076b4556247a028e93ab51f9f4

-----Decoded View---------------
Arg [0] : owner (address): 0x6079903eFe7D838e21368a5Ea8c89BF26Cbdbb79
Arg [1] : _collectionAddress (address): 0x8419721412da63076B4556247a028E93aB51f9f4

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006079903efe7d838e21368a5ea8c89bf26cbdbb79
Arg [1] : 0000000000000000000000008419721412da63076b4556247a028e93ab51f9f4


Deployed Bytecode Sourcemap

38238:7461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17412:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28179:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30353:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1688:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39488:65;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29302:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38771:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38304:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38660:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42597:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31005:494;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18826:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38389:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43177:791;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19212:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29143:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20262:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31909:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40627:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40484:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40871:637;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38527:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29474:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38615:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39098:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17709:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38700:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28399:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38737:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40743:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39256:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16797:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32628:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39381:58;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45468:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41517:1071;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29815:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44431:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38995:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;38458:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19605:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38566:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30054:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43977:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42885:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44811:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45320:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45117:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17412:204;17497:4;17536:32;17521:47;;;:11;:47;;;;:87;;;;17572:36;17596:11;17572:23;:36::i;:::-;17521:87;17514:94;;17412:204;;;:::o;28179:100::-;28233:13;28266:5;28259:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28179:100;:::o;30353:169::-;30436:4;30453:39;30462:12;:10;:12::i;:::-;30476:7;30485:6;30453:8;:39::i;:::-;30510:4;30503:11;;30353:169;;;;:::o;1688:207::-;1831:6;1857:30;;;1850:37;;1688:207;;;;;;:::o;39488:65::-;;;;;;;;;;;;;;;;;:::o;29302:108::-;29363:7;29390:12;;29383:19;;29302:108;:::o;38771:46::-;;;:::o;38304:78::-;38350:32;38304:78;:::o;38660:33::-;;;;:::o;42597:279::-;42668:14;42664:205;42700:8;:15;42688:9;:27;42664:205;;;42771:1;42748:8;42757:9;42748:19;;;;;;;;:::i;:::-;;;;;;;;:24;42745:72;;;42793:8;;42745:72;42831:26;42837:8;42846:9;42837:19;;;;;;;;:::i;:::-;;;;;;;;42831:5;:26::i;:::-;42664:205;42717:11;;;;;:::i;:::-;;;;42664:205;;;;42597:279;:::o;31005:494::-;31145:4;31162:36;31172:6;31180:9;31191:6;31162:9;:36::i;:::-;31212:24;31239:11;:19;31251:6;31239:19;;;;;;;;;;;;;;;:33;31259:12;:10;:12::i;:::-;31239:33;;;;;;;;;;;;;;;;31212:60;;31311:6;31291:16;:26;;31283:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;31398:57;31407:6;31415:12;:10;:12::i;:::-;31448:6;31429:16;:25;31398:8;:57::i;:::-;31487:4;31480:11;;;31005:494;;;;;:::o;18826:123::-;18892:7;18919:6;:12;18926:4;18919:12;;;;;;;;;;;:22;;;18912:29;;18826:123;;;:::o;38389:62::-;38427:24;38389:62;:::o;43177:791::-;43272:1;43232:37;43247:12;:10;:12::i;:::-;43261:7;43232:14;:37::i;:::-;:41;43229:88;;;43289:16;43297:7;43289;:16::i;:::-;43229:88;43327:22;43352:8;:22;43361:12;:10;:12::i;:::-;43352:22;;;;;;;;;;;;;;;:31;43375:7;43352:31;;;;;;;;;;;43327:56;;43417:4;43394;:20;;;:27;;;;;;;;;;;;;;;;;;43440:17;;;;;;;;;;;43432:43;;;43484:4;43491:12;:10;:12::i;:::-;43505:7;43432:81;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43579:12;:10;:12::i;:::-;43532:59;;43540:17;;;;;;;;;;;43532:34;;;43567:7;43532:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;;43524:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43696:1;43660:18;:32;43679:12;:10;:12::i;:::-;43660:32;;;;;;;;;;;;;;;;:37;43657:88;;;43732:1;43713:15;;:20;;;;;;;:::i;:::-;;;;;;;;43657:88;43791:1;43755:18;:32;43774:12;:10;:12::i;:::-;43755:32;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;43819:1;43803:12;;:17;;;;;;;:::i;:::-;;;;;;;;43909:1;43831:20;:34;43852:12;:10;:12::i;:::-;43831:34;;;;;;;;;;;;;;;43866:30;:39;43897:7;43866:39;;;;;;;;;;;;43831:75;;;;;;;;:::i;:::-;;;;;;;;;:79;;;;43926:34;43938:12;:10;:12::i;:::-;43952:7;43926:34;;;;;;;:::i;:::-;;;;;;;;43218:750;43177:791;:::o;19212:147::-;19295:18;19308:4;19295:12;:18::i;:::-;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;19326:25:::1;19337:4;19343:7;19326:10;:25::i;:::-;19212:147:::0;;;:::o;29143:93::-;29201:5;29226:2;29219:9;;29143:93;:::o;20262:219::-;20369:12;:10;:12::i;:::-;20358:23;;:7;:23;;;20350:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;20447:26;20459:4;20465:7;20447:11;:26::i;:::-;20262:219;;:::o;31909:215::-;31997:4;32014:80;32023:12;:10;:12::i;:::-;32037:7;32083:10;32046:11;:25;32058:12;:10;:12::i;:::-;32046:25;;;;;;;;;;;;;;;:34;32072:7;32046:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;32014:8;:80::i;:::-;32112:4;32105:11;;31909:215;;;;:::o;40627:107::-;38496:24;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;40709:17:::1;40715:2;40719:6;40709:5;:17::i;:::-;40627:107:::0;;;:::o;40484:134::-;40548:16;40583:20;:27;40604:5;40583:27;;;;;;;;;;;;;;;40576:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40484:134;;;:::o;40871:637::-;40948:7;40967:21;40991:8;:15;41000:5;40991:15;;;;;;;;;;;;;;;:24;41007:7;40991:24;;;;;;;;;;;40967:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41056:21;41032:4;:21;;;:45;:78;;;;41105:5;41081:29;;:4;:20;;;:29;;;41032:78;41029:118;;;41134:1;41127:8;;;;;41029:118;41157:36;41211:4;:21;;;41196:12;:36;;;;:::i;:::-;41157:75;;41308:1;41278:27;;:31;;;;:::i;:::-;41247:28;:62;41243:103;;;41333:1;41326:8;;;;;;41243:103;41356:20;41440:1;41410:27;;41379:28;:58;;;;:::i;:::-;:62;;;;:::i;:::-;41356:85;;41474:23;;41459:12;:38;;;;:::i;:::-;41452:45;;;;;40871:637;;;;;:::o;38527:32::-;;;;;;;;;;;;;:::o;29474:127::-;29548:7;29575:9;:18;29585:7;29575:18;;;;;;;;;;;;;;;;29568:25;;29474:127;;;:::o;38615:38::-;;;;:::o;39098:54::-;;;;;;;;;;;;;;;;;:::o;17709:139::-;17787:4;17811:6;:12;17818:4;17811:12;;;;;;;;;;;:20;;:29;17832:7;17811:29;;;;;;;;;;;;;;;;;;;;;;;;;17804:36;;17709:139;;;;:::o;38700:30::-;;;;:::o;28399:104::-;28455:13;28488:7;28481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28399:104;:::o;38737:27::-;;;;:::o;40743:119::-;38427:24;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;40829:25:::1;40841:4;40847:6;40829:11;:25::i;:::-;40743:119:::0;;;:::o;39256:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;16797:49::-;16842:4;16797:49;;;:::o;32628:414::-;32721:4;32738:24;32765:11;:25;32777:12;:10;:12::i;:::-;32765:25;;;;;;;;;;;;;;;:34;32791:7;32765:34;;;;;;;;;;;;;;;;32738:61;;32838:15;32818:16;:35;;32810:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32931:67;32940:12;:10;:12::i;:::-;32954:7;32982:15;32963:16;:34;32931:8;:67::i;:::-;33030:4;33023:11;;;32628:414;;;;:::o;39381:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45468:228::-;38350:32;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;45598:1:::1;45576:24;;:10;:24;;;;45567:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45678:10;45658:17;;:30;;;;;;;;;;;;;;;;;;45468:228:::0;;:::o;41517:1071::-;41575:17;;;;;;;;;;;41567:43;;;41611:12;:10;:12::i;:::-;41633:4;41640:7;41567:81;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41722:4;41667:60;;41675:17;;;;;;;;;;;41667:34;;;41702:7;41667:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;;41659:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;41793:22;41818:8;:22;41827:12;:10;:12::i;:::-;41818:22;;;;;;;;;;;;;;;:31;41841:7;41818:31;;;;;;;;;;;41793:56;;41881:12;41860:4;:18;;:33;;;;41928:12;41904:4;:21;;:36;;;;41974:4;41951;:20;;;:27;;;;;;;;;;;;;;;;;;42028:1;41992:18;:32;42011:12;:10;:12::i;:::-;41992:32;;;;;;;;;;;;;;;;:37;41989:88;;;42064:1;42045:15;;:20;;;;;;;:::i;:::-;;;;;;;;41989:88;42123:1;42087:18;:32;42106:12;:10;:12::i;:::-;42087:32;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;42151:1;42135:12;;:17;;;;;;;:::i;:::-;;;;;;;;42163:20;:34;42184:12;:10;:12::i;:::-;42163:34;;;;;;;;;;;;;;;42203:7;42163:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42222:25;42294:1;42250:20;:34;42271:12;:10;:12::i;:::-;42250:34;;;;;;;;;;;;;;;:41;;;;:45;;;;:::i;:::-;42222:73;;42348:17;42306:30;:39;42337:7;42306:39;;;;;;;;;;;:59;;;;42380:21;:30;42402:7;42380:30;;;;;;;;;;;;;;;;;;;;;42376:154;;42427:39;42433:12;:10;:12::i;:::-;42447:18;;42427:5;:39::i;:::-;42514:4;42481:21;:30;42503:7;42481:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;42376:154;42548:32;42558:12;:10;:12::i;:::-;42572:7;42548:32;;;;;;;:::i;:::-;;;;;;;;41556:1032;;41517:1071;:::o;29815:175::-;29901:4;29918:42;29928:12;:10;:12::i;:::-;29942:9;29953:6;29918:9;:42::i;:::-;29978:4;29971:11;;29815:175;;;;:::o;44431:338::-;44487:25;44515:20;:26;44536:4;44515:26;;;;;;;;;;;;;;;44487:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44559:14;44555:207;44591:8;:15;44579:9;:27;44555:207;;;44662:1;44639:8;44648:9;44639:19;;;;;;;;:::i;:::-;;;;;;;;:24;44636:72;;;44684:8;;44636:72;44722:28;44730:8;44739:9;44730:19;;;;;;;;:::i;:::-;;;;;;;;44722:7;:28::i;:::-;44555:207;44608:11;;;;;:::i;:::-;;;;44555:207;;;;44476:293;44431:338;:::o;38995:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38458:62::-;38496:24;38458:62;:::o;19605:149::-;19689:18;19702:4;19689:12;:18::i;:::-;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;19720:26:::1;19732:4;19738:7;19720:11;:26::i;:::-;19605:149:::0;;;:::o;38566:42::-;;;;:::o;30054:151::-;30143:7;30170:11;:18;30182:5;30170:18;;;;;;;;;;;;;;;:27;30189:7;30170:27;;;;;;;;;;;;;;;;30163:34;;30054:151;;;;:::o;43977:445::-;44029:22;44054:8;:22;44063:12;:10;:12::i;:::-;44054:22;;;;;;;;;;;;;;;:31;44077:7;44054:31;;;;;;;;;;;44029:56;;44096:33;44132:37;44147:12;:10;:12::i;:::-;44161:7;44132:14;:37::i;:::-;44096:73;;44211:1;44183:25;:29;44180:235;;;44253:12;44229:4;:21;;:36;;;;44280:46;44286:12;:10;:12::i;:::-;44300:25;44280:5;:46::i;:::-;44346:57;44363:12;:10;:12::i;:::-;44377:25;44346:57;;;;;;;:::i;:::-;;;;;;;;44180:235;44018:404;;43977:445;:::o;42885:283::-;42958:14;42954:207;42990:8;:15;42978:9;:27;42954:207;;;43061:1;43038:8;43047:9;43038:19;;;;;;;;:::i;:::-;;;;;;;;:24;43035:72;;;43083:8;;43035:72;43121:28;43129:8;43138:9;43129:19;;;;;;;;:::i;:::-;;;;;;;;43121:7;:28::i;:::-;42954:207;43007:11;;;;;:::i;:::-;;;;42954:207;;;;42885:283;:::o;44811:165::-;38350:32;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;44954:14:::1;44924:27;:44;;;;44811:165:::0;;:::o;45320:139::-;38350:32;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;45441:10:::1;45420:18;:31;;;;45320:139:::0;;:::o;45117:149::-;38350:32;17289:30;17300:4;17306:12;:10;:12::i;:::-;17289:10;:30::i;:::-;45248:10:::1;45222:23;:36;;;;45117:149:::0;;:::o;8574:157::-;8659:4;8698:25;8683:40;;;:11;:40;;;;8676:47;;8574:157;;;:::o;14608:98::-;14661:7;14688:10;14681:17;;14608:98;:::o;36328:381::-;36481:1;36464:19;;:5;:19;;;;36456:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36562:1;36543:21;;:7;:21;;;;36535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36647:6;36617:11;:18;36629:5;36617:18;;;;;;;;;;;;;;;:27;36636:7;36617:27;;;;;;;;;;;;;;;:36;;;;36685:7;36669:32;;36678:5;36669:32;;;36694:6;36669:32;;;;;;:::i;:::-;;;;;;;;36328:381;;;:::o;33533:737::-;33691:1;33673:20;;:6;:20;;;;33665:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33775:1;33754:23;;:9;:23;;;;33746:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33831:47;33852:6;33860:9;33871:6;33831:20;:47::i;:::-;33892:21;33916:9;:17;33926:6;33916:17;;;;;;;;;;;;;;;;33892:41;;33969:6;33952:13;:23;;33944:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34090:6;34074:13;:22;34054:9;:17;34064:6;34054:17;;;;;;;;;;;;;;;:42;;;;34142:6;34118:9;:20;34128:9;34118:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;34184:9;34167:35;;34176:6;34167:35;;;34195:6;34167:35;;;;;;:::i;:::-;;;;;;;;34216:46;34236:6;34244:9;34255:6;34216:19;:46::i;:::-;33654:616;33533:737;;;:::o;18139:497::-;18220:22;18228:4;18234:7;18220;:22::i;:::-;18215:414;;18408:41;18436:7;18408:41;;18446:2;18408:19;:41::i;:::-;18522:38;18550:4;18542:13;;18557:2;18522:19;:38::i;:::-;18313:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18259:358;;;;;;;;;;;:::i;:::-;;;;;;;;18215:414;18139:497;;:::o;21767:238::-;21851:22;21859:4;21865:7;21851;:22::i;:::-;21846:152;;21922:4;21890:6;:12;21897:4;21890:12;;;;;;;;;;;:20;;:29;21911:7;21890:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;21973:12;:10;:12::i;:::-;21946:40;;21964:7;21946:40;;21958:4;21946:40;;;;;;;;;;21846:152;21767:238;;:::o;22138:239::-;22222:22;22230:4;22236:7;22222;:22::i;:::-;22218:152;;;22293:5;22261:6;:12;22268:4;22261:12;;;;;;;;;;;:20;;:29;22282:7;22261:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;22345:12;:10;:12::i;:::-;22318:40;;22336:7;22318:40;;22330:4;22318:40;;;;;;;;;;22218:152;22138:239;;:::o;34558:402::-;34661:1;34642:21;;:7;:21;;;;34634:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:49;34742:1;34746:7;34755:6;34713:20;:49::i;:::-;34792:6;34776:12;;:22;;;;;;;:::i;:::-;;;;;;;;34831:6;34809:9;:18;34819:7;34809:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;34874:7;34853:37;;34870:1;34853:37;;;34883:6;34853:37;;;;;;:::i;:::-;;;;;;;;34904:48;34932:1;34936:7;34945:6;34904:19;:48::i;:::-;34558:402;;:::o;35294:595::-;35397:1;35378:21;;:7;:21;;;;35370:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35451:49;35472:7;35489:1;35493:6;35451:20;:49::i;:::-;35514:22;35539:9;:18;35549:7;35539:18;;;;;;;;;;;;;;;;35514:43;;35594:6;35576:14;:24;;35568:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35713:6;35696:14;:23;35675:9;:18;35685:7;35675:18;;;;;;;;;;;;;;;:44;;;;35757:6;35741:12;;:22;;;;;;;:::i;:::-;;;;;;;;35808:1;35782:37;;35791:7;35782:37;;;35812:6;35782:37;;;;;;:::i;:::-;;;;;;;;35833:48;35853:7;35870:1;35874:6;35833:19;:48::i;:::-;35359:530;35294:595;;:::o;37310:125::-;;;;:::o;38040:124::-;;;;:::o;10413:451::-;10488:13;10514:19;10559:1;10550:6;10546:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10536:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10514:47;;10572:15;:6;10579:1;10572:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10598;:6;10605:1;10598:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10629:9;10654:1;10645:6;10641:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10629:26;;10624:135;10661:1;10657;:5;10624:135;;;10696:12;10717:3;10709:5;:11;10696:25;;;;;;;:::i;:::-;;;;;10684:6;10691:1;10684:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;10746:1;10736:11;;;;;10664:3;;;;:::i;:::-;;;10624:135;;;;10786:1;10777:5;:10;10769:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10849:6;10835:21;;;10413:451;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1313:143::-;1370:5;1401:6;1395:13;1386:22;;1417:33;1444:5;1417:33;:::i;:::-;1313:143;;;;:::o;1479:370::-;1550:5;1599:3;1592:4;1584:6;1580:17;1576:27;1566:122;;1607:79;;:::i;:::-;1566:122;1724:6;1711:20;1749:94;1839:3;1831:6;1824:4;1816:6;1812:17;1749:94;:::i;:::-;1740:103;;1556:293;1479:370;;;;:::o;1855:139::-;1901:5;1939:6;1926:20;1917:29;;1955:33;1982:5;1955:33;:::i;:::-;1855:139;;;;:::o;2000:137::-;2045:5;2083:6;2070:20;2061:29;;2099:32;2125:5;2099:32;:::i;:::-;2000:137;;;;:::o;2156:338::-;2211:5;2260:3;2253:4;2245:6;2241:17;2237:27;2227:122;;2268:79;;:::i;:::-;2227:122;2385:6;2372:20;2410:78;2484:3;2476:6;2469:4;2461:6;2457:17;2410:78;:::i;:::-;2401:87;;2217:277;2156:338;;;;:::o;2500:139::-;2546:5;2584:6;2571:20;2562:29;;2600:33;2627:5;2600:33;:::i;:::-;2500:139;;;;:::o;2645:329::-;2704:6;2753:2;2741:9;2732:7;2728:23;2724:32;2721:119;;;2759:79;;:::i;:::-;2721:119;2879:1;2904:53;2949:7;2940:6;2929:9;2925:22;2904:53;:::i;:::-;2894:63;;2850:117;2645:329;;;;:::o;2980:351::-;3050:6;3099:2;3087:9;3078:7;3074:23;3070:32;3067:119;;;3105:79;;:::i;:::-;3067:119;3225:1;3250:64;3306:7;3297:6;3286:9;3282:22;3250:64;:::i;:::-;3240:74;;3196:128;2980:351;;;;:::o;3337:474::-;3405:6;3413;3462:2;3450:9;3441:7;3437:23;3433:32;3430:119;;;3468:79;;:::i;:::-;3430:119;3588:1;3613:53;3658:7;3649:6;3638:9;3634:22;3613:53;:::i;:::-;3603:63;;3559:117;3715:2;3741:53;3786:7;3777:6;3766:9;3762:22;3741:53;:::i;:::-;3731:63;;3686:118;3337:474;;;;;:::o;3817:619::-;3894:6;3902;3910;3959:2;3947:9;3938:7;3934:23;3930:32;3927:119;;;3965:79;;:::i;:::-;3927:119;4085:1;4110:53;4155:7;4146:6;4135:9;4131:22;4110:53;:::i;:::-;4100:63;;4056:117;4212:2;4238:53;4283:7;4274:6;4263:9;4259:22;4238:53;:::i;:::-;4228:63;;4183:118;4340:2;4366:53;4411:7;4402:6;4391:9;4387:22;4366:53;:::i;:::-;4356:63;;4311:118;3817:619;;;;;:::o;4442:943::-;4537:6;4545;4553;4561;4610:3;4598:9;4589:7;4585:23;4581:33;4578:120;;;4617:79;;:::i;:::-;4578:120;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4992:2;5018:53;5063:7;5054:6;5043:9;5039:22;5018:53;:::i;:::-;5008:63;;4963:118;5148:2;5137:9;5133:18;5120:32;5179:18;5171:6;5168:30;5165:117;;;5201:79;;:::i;:::-;5165:117;5306:62;5360:7;5351:6;5340:9;5336:22;5306:62;:::i;:::-;5296:72;;5091:287;4442:943;;;;;;;:::o;5391:474::-;5459:6;5467;5516:2;5504:9;5495:7;5491:23;5487:32;5484:119;;;5522:79;;:::i;:::-;5484:119;5642:1;5667:53;5712:7;5703:6;5692:9;5688:22;5667:53;:::i;:::-;5657:63;;5613:117;5769:2;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5740:118;5391:474;;;;;:::o;5871:539::-;5955:6;6004:2;5992:9;5983:7;5979:23;5975:32;5972:119;;;6010:79;;:::i;:::-;5972:119;6158:1;6147:9;6143:17;6130:31;6188:18;6180:6;6177:30;6174:117;;;6210:79;;:::i;:::-;6174:117;6315:78;6385:7;6376:6;6365:9;6361:22;6315:78;:::i;:::-;6305:88;;6101:302;5871:539;;;;:::o;6416:329::-;6475:6;6524:2;6512:9;6503:7;6499:23;6495:32;6492:119;;;6530:79;;:::i;:::-;6492:119;6650:1;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6621:117;6416:329;;;;:::o;6751:474::-;6819:6;6827;6876:2;6864:9;6855:7;6851:23;6847:32;6844:119;;;6882:79;;:::i;:::-;6844:119;7002:1;7027:53;7072:7;7063:6;7052:9;7048:22;7027:53;:::i;:::-;7017:63;;6973:117;7129:2;7155:53;7200:7;7191:6;7180:9;7176:22;7155:53;:::i;:::-;7145:63;;7100:118;6751:474;;;;;:::o;7231:327::-;7289:6;7338:2;7326:9;7317:7;7313:23;7309:32;7306:119;;;7344:79;;:::i;:::-;7306:119;7464:1;7489:52;7533:7;7524:6;7513:9;7509:22;7489:52;:::i;:::-;7479:62;;7435:116;7231:327;;;;:::o;7564:329::-;7623:6;7672:2;7660:9;7651:7;7647:23;7643:32;7640:119;;;7678:79;;:::i;:::-;7640:119;7798:1;7823:53;7868:7;7859:6;7848:9;7844:22;7823:53;:::i;:::-;7813:63;;7769:117;7564:329;;;;:::o;7899:179::-;7968:10;7989:46;8031:3;8023:6;7989:46;:::i;:::-;8067:4;8062:3;8058:14;8044:28;;7899:179;;;;:::o;8084:118::-;8171:24;8189:5;8171:24;:::i;:::-;8166:3;8159:37;8084:118;;:::o;8238:732::-;8357:3;8386:54;8434:5;8386:54;:::i;:::-;8456:86;8535:6;8530:3;8456:86;:::i;:::-;8449:93;;8566:56;8616:5;8566:56;:::i;:::-;8645:7;8676:1;8661:284;8686:6;8683:1;8680:13;8661:284;;;8762:6;8756:13;8789:63;8848:3;8833:13;8789:63;:::i;:::-;8782:70;;8875:60;8928:6;8875:60;:::i;:::-;8865:70;;8721:224;8708:1;8705;8701:9;8696:14;;8661:284;;;8665:14;8961:3;8954:10;;8362:608;;;8238:732;;;;:::o;8976:109::-;9057:21;9072:5;9057:21;:::i;:::-;9052:3;9045:34;8976:109;;:::o;9091:118::-;9178:24;9196:5;9178:24;:::i;:::-;9173:3;9166:37;9091:118;;:::o;9215:115::-;9300:23;9317:5;9300:23;:::i;:::-;9295:3;9288:36;9215:115;;:::o;9336:364::-;9424:3;9452:39;9485:5;9452:39;:::i;:::-;9507:71;9571:6;9566:3;9507:71;:::i;:::-;9500:78;;9587:52;9632:6;9627:3;9620:4;9613:5;9609:16;9587:52;:::i;:::-;9664:29;9686:6;9664:29;:::i;:::-;9659:3;9655:39;9648:46;;9428:272;9336:364;;;;:::o;9706:377::-;9812:3;9840:39;9873:5;9840:39;:::i;:::-;9895:89;9977:6;9972:3;9895:89;:::i;:::-;9888:96;;9993:52;10038:6;10033:3;10026:4;10019:5;10015:16;9993:52;:::i;:::-;10070:6;10065:3;10061:16;10054:23;;9816:267;9706:377;;;;:::o;10089:366::-;10231:3;10252:67;10316:2;10311:3;10252:67;:::i;:::-;10245:74;;10328:93;10417:3;10328:93;:::i;:::-;10446:2;10441:3;10437:12;10430:19;;10089:366;;;:::o;10461:::-;10603:3;10624:67;10688:2;10683:3;10624:67;:::i;:::-;10617:74;;10700:93;10789:3;10700:93;:::i;:::-;10818:2;10813:3;10809:12;10802:19;;10461:366;;;:::o;10833:::-;10975:3;10996:67;11060:2;11055:3;10996:67;:::i;:::-;10989:74;;11072:93;11161:3;11072:93;:::i;:::-;11190:2;11185:3;11181:12;11174:19;;10833:366;;;:::o;11205:::-;11347:3;11368:67;11432:2;11427:3;11368:67;:::i;:::-;11361:74;;11444:93;11533:3;11444:93;:::i;:::-;11562:2;11557:3;11553:12;11546:19;;11205:366;;;:::o;11577:::-;11719:3;11740:67;11804:2;11799:3;11740:67;:::i;:::-;11733:74;;11816:93;11905:3;11816:93;:::i;:::-;11934:2;11929:3;11925:12;11918:19;;11577:366;;;:::o;11949:::-;12091:3;12112:67;12176:2;12171:3;12112:67;:::i;:::-;12105:74;;12188:93;12277:3;12188:93;:::i;:::-;12306:2;12301:3;12297:12;12290:19;;11949:366;;;:::o;12321:::-;12463:3;12484:67;12548:2;12543:3;12484:67;:::i;:::-;12477:74;;12560:93;12649:3;12560:93;:::i;:::-;12678:2;12673:3;12669:12;12662:19;;12321:366;;;:::o;12693:::-;12835:3;12856:67;12920:2;12915:3;12856:67;:::i;:::-;12849:74;;12932:93;13021:3;12932:93;:::i;:::-;13050:2;13045:3;13041:12;13034:19;;12693:366;;;:::o;13065:::-;13207:3;13228:67;13292:2;13287:3;13228:67;:::i;:::-;13221:74;;13304:93;13393:3;13304:93;:::i;:::-;13422:2;13417:3;13413:12;13406:19;;13065:366;;;:::o;13437:::-;13579:3;13600:67;13664:2;13659:3;13600:67;:::i;:::-;13593:74;;13676:93;13765:3;13676:93;:::i;:::-;13794:2;13789:3;13785:12;13778:19;;13437:366;;;:::o;13809:::-;13951:3;13972:67;14036:2;14031:3;13972:67;:::i;:::-;13965:74;;14048:93;14137:3;14048:93;:::i;:::-;14166:2;14161:3;14157:12;14150:19;;13809:366;;;:::o;14181:402::-;14341:3;14362:85;14444:2;14439:3;14362:85;:::i;:::-;14355:92;;14456:93;14545:3;14456:93;:::i;:::-;14574:2;14569:3;14565:12;14558:19;;14181:402;;;:::o;14589:366::-;14731:3;14752:67;14816:2;14811:3;14752:67;:::i;:::-;14745:74;;14828:93;14917:3;14828:93;:::i;:::-;14946:2;14941:3;14937:12;14930:19;;14589:366;;;:::o;14961:402::-;15121:3;15142:85;15224:2;15219:3;15142:85;:::i;:::-;15135:92;;15236:93;15325:3;15236:93;:::i;:::-;15354:2;15349:3;15345:12;15338:19;;14961:402;;;:::o;15369:366::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:::-;15883:3;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;15980:93;16069:3;15980:93;:::i;:::-;16098:2;16093:3;16089:12;16082:19;;15741:366;;;:::o;16113:108::-;16190:24;16208:5;16190:24;:::i;:::-;16185:3;16178:37;16113:108;;:::o;16227:118::-;16314:24;16332:5;16314:24;:::i;:::-;16309:3;16302:37;16227:118;;:::o;16351:112::-;16434:22;16450:5;16434:22;:::i;:::-;16429:3;16422:35;16351:112;;:::o;16469:967::-;16851:3;16873:148;17017:3;16873:148;:::i;:::-;16866:155;;17038:95;17129:3;17120:6;17038:95;:::i;:::-;17031:102;;17150:148;17294:3;17150:148;:::i;:::-;17143:155;;17315:95;17406:3;17397:6;17315:95;:::i;:::-;17308:102;;17427:3;17420:10;;16469:967;;;;;:::o;17442:222::-;17535:4;17573:2;17562:9;17558:18;17550:26;;17586:71;17654:1;17643:9;17639:17;17630:6;17586:71;:::i;:::-;17442:222;;;;:::o;17670:442::-;17819:4;17857:2;17846:9;17842:18;17834:26;;17870:71;17938:1;17927:9;17923:17;17914:6;17870:71;:::i;:::-;17951:72;18019:2;18008:9;18004:18;17995:6;17951:72;:::i;:::-;18033;18101:2;18090:9;18086:18;18077:6;18033:72;:::i;:::-;17670:442;;;;;;:::o;18118:332::-;18239:4;18277:2;18266:9;18262:18;18254:26;;18290:71;18358:1;18347:9;18343:17;18334:6;18290:71;:::i;:::-;18371:72;18439:2;18428:9;18424:18;18415:6;18371:72;:::i;:::-;18118:332;;;;;:::o;18456:373::-;18599:4;18637:2;18626:9;18622:18;18614:26;;18686:9;18680:4;18676:20;18672:1;18661:9;18657:17;18650:47;18714:108;18817:4;18808:6;18714:108;:::i;:::-;18706:116;;18456:373;;;;:::o;18835:210::-;18922:4;18960:2;18949:9;18945:18;18937:26;;18973:65;19035:1;19024:9;19020:17;19011:6;18973:65;:::i;:::-;18835:210;;;;:::o;19051:222::-;19144:4;19182:2;19171:9;19167:18;19159:26;;19195:71;19263:1;19252:9;19248:17;19239:6;19195:71;:::i;:::-;19051:222;;;;:::o;19279:218::-;19370:4;19408:2;19397:9;19393:18;19385:26;;19421:69;19487:1;19476:9;19472:17;19463:6;19421:69;:::i;:::-;19279:218;;;;:::o;19503:313::-;19616:4;19654:2;19643:9;19639:18;19631:26;;19703:9;19697:4;19693:20;19689:1;19678:9;19674:17;19667:47;19731:78;19804:4;19795:6;19731:78;:::i;:::-;19723:86;;19503:313;;;;:::o;19822:419::-;19988:4;20026:2;20015:9;20011:18;20003:26;;20075:9;20069:4;20065:20;20061:1;20050:9;20046:17;20039:47;20103:131;20229:4;20103:131;:::i;:::-;20095:139;;19822:419;;;:::o;20247:::-;20413:4;20451:2;20440:9;20436:18;20428:26;;20500:9;20494:4;20490:20;20486:1;20475:9;20471:17;20464:47;20528:131;20654:4;20528:131;:::i;:::-;20520:139;;20247:419;;;:::o;20672:::-;20838:4;20876:2;20865:9;20861:18;20853:26;;20925:9;20919:4;20915:20;20911:1;20900:9;20896:17;20889:47;20953:131;21079:4;20953:131;:::i;:::-;20945:139;;20672:419;;;:::o;21097:::-;21263:4;21301:2;21290:9;21286:18;21278:26;;21350:9;21344:4;21340:20;21336:1;21325:9;21321:17;21314:47;21378:131;21504:4;21378:131;:::i;:::-;21370:139;;21097:419;;;:::o;21522:::-;21688:4;21726:2;21715:9;21711:18;21703:26;;21775:9;21769:4;21765:20;21761:1;21750:9;21746:17;21739:47;21803:131;21929:4;21803:131;:::i;:::-;21795:139;;21522:419;;;:::o;21947:::-;22113:4;22151:2;22140:9;22136:18;22128:26;;22200:9;22194:4;22190:20;22186:1;22175:9;22171:17;22164:47;22228:131;22354:4;22228:131;:::i;:::-;22220:139;;21947:419;;;:::o;22372:::-;22538:4;22576:2;22565:9;22561:18;22553:26;;22625:9;22619:4;22615:20;22611:1;22600:9;22596:17;22589:47;22653:131;22779:4;22653:131;:::i;:::-;22645:139;;22372:419;;;:::o;22797:::-;22963:4;23001:2;22990:9;22986:18;22978:26;;23050:9;23044:4;23040:20;23036:1;23025:9;23021:17;23014:47;23078:131;23204:4;23078:131;:::i;:::-;23070:139;;22797:419;;;:::o;23222:::-;23388:4;23426:2;23415:9;23411:18;23403:26;;23475:9;23469:4;23465:20;23461:1;23450:9;23446:17;23439:47;23503:131;23629:4;23503:131;:::i;:::-;23495:139;;23222:419;;;:::o;23647:::-;23813:4;23851:2;23840:9;23836:18;23828:26;;23900:9;23894:4;23890:20;23886:1;23875:9;23871:17;23864:47;23928:131;24054:4;23928:131;:::i;:::-;23920:139;;23647:419;;;:::o;24072:::-;24238:4;24276:2;24265:9;24261:18;24253:26;;24325:9;24319:4;24315:20;24311:1;24300:9;24296:17;24289:47;24353:131;24479:4;24353:131;:::i;:::-;24345:139;;24072:419;;;:::o;24497:::-;24663:4;24701:2;24690:9;24686:18;24678:26;;24750:9;24744:4;24740:20;24736:1;24725:9;24721:17;24714:47;24778:131;24904:4;24778:131;:::i;:::-;24770:139;;24497:419;;;:::o;24922:::-;25088:4;25126:2;25115:9;25111:18;25103:26;;25175:9;25169:4;25165:20;25161:1;25150:9;25146:17;25139:47;25203:131;25329:4;25203:131;:::i;:::-;25195:139;;24922:419;;;:::o;25347:::-;25513:4;25551:2;25540:9;25536:18;25528:26;;25600:9;25594:4;25590:20;25586:1;25575:9;25571:17;25564:47;25628:131;25754:4;25628:131;:::i;:::-;25620:139;;25347:419;;;:::o;25772:222::-;25865:4;25903:2;25892:9;25888:18;25880:26;;25916:71;25984:1;25973:9;25969:17;25960:6;25916:71;:::i;:::-;25772:222;;;;:::o;26000:430::-;26143:4;26181:2;26170:9;26166:18;26158:26;;26194:71;26262:1;26251:9;26247:17;26238:6;26194:71;:::i;:::-;26275:72;26343:2;26332:9;26328:18;26319:6;26275:72;:::i;:::-;26357:66;26419:2;26408:9;26404:18;26395:6;26357:66;:::i;:::-;26000:430;;;;;;:::o;26436:214::-;26525:4;26563:2;26552:9;26548:18;26540:26;;26576:67;26640:1;26629:9;26625:17;26616:6;26576:67;:::i;:::-;26436:214;;;;:::o;26656:129::-;26690:6;26717:20;;:::i;:::-;26707:30;;26746:33;26774:4;26766:6;26746:33;:::i;:::-;26656:129;;;:::o;26791:75::-;26824:6;26857:2;26851:9;26841:19;;26791:75;:::o;26872:311::-;26949:4;27039:18;27031:6;27028:30;27025:56;;;27061:18;;:::i;:::-;27025:56;27111:4;27103:6;27099:17;27091:25;;27171:4;27165;27161:15;27153:23;;26872:311;;;:::o;27189:307::-;27250:4;27340:18;27332:6;27329:30;27326:56;;;27362:18;;:::i;:::-;27326:56;27400:29;27422:6;27400:29;:::i;:::-;27392:37;;27484:4;27478;27474:15;27466:23;;27189:307;;;:::o;27502:132::-;27569:4;27592:3;27584:11;;27622:4;27617:3;27613:14;27605:22;;27502:132;;;:::o;27640:114::-;27707:6;27741:5;27735:12;27725:22;;27640:114;;;:::o;27760:99::-;27812:6;27846:5;27840:12;27830:22;;27760:99;;;:::o;27865:113::-;27935:4;27967;27962:3;27958:14;27950:22;;27865:113;;;:::o;27984:184::-;28083:11;28117:6;28112:3;28105:19;28157:4;28152:3;28148:14;28133:29;;27984:184;;;;:::o;28174:169::-;28258:11;28292:6;28287:3;28280:19;28332:4;28327:3;28323:14;28308:29;;28174:169;;;;:::o;28349:148::-;28451:11;28488:3;28473:18;;28349:148;;;;:::o;28503:305::-;28543:3;28562:20;28580:1;28562:20;:::i;:::-;28557:25;;28596:20;28614:1;28596:20;:::i;:::-;28591:25;;28750:1;28682:66;28678:74;28675:1;28672:81;28669:107;;;28756:18;;:::i;:::-;28669:107;28800:1;28797;28793:9;28786:16;;28503:305;;;;:::o;28814:185::-;28854:1;28871:20;28889:1;28871:20;:::i;:::-;28866:25;;28905:20;28923:1;28905:20;:::i;:::-;28900:25;;28944:1;28934:35;;28949:18;;:::i;:::-;28934:35;28991:1;28988;28984:9;28979:14;;28814:185;;;;:::o;29005:348::-;29045:7;29068:20;29086:1;29068:20;:::i;:::-;29063:25;;29102:20;29120:1;29102:20;:::i;:::-;29097:25;;29290:1;29222:66;29218:74;29215:1;29212:81;29207:1;29200:9;29193:17;29189:105;29186:131;;;29297:18;;:::i;:::-;29186:131;29345:1;29342;29338:9;29327:20;;29005:348;;;;:::o;29359:191::-;29399:4;29419:20;29437:1;29419:20;:::i;:::-;29414:25;;29453:20;29471:1;29453:20;:::i;:::-;29448:25;;29492:1;29489;29486:8;29483:34;;;29497:18;;:::i;:::-;29483:34;29542:1;29539;29535:9;29527:17;;29359:191;;;;:::o;29556:96::-;29593:7;29622:24;29640:5;29622:24;:::i;:::-;29611:35;;29556:96;;;:::o;29658:90::-;29692:7;29735:5;29728:13;29721:21;29710:32;;29658:90;;;:::o;29754:77::-;29791:7;29820:5;29809:16;;29754:77;;;:::o;29837:149::-;29873:7;29913:66;29906:5;29902:78;29891:89;;29837:149;;;:::o;29992:126::-;30029:7;30069:42;30062:5;30058:54;30047:65;;29992:126;;;:::o;30124:77::-;30161:7;30190:5;30179:16;;30124:77;;;:::o;30207:86::-;30242:7;30282:4;30275:5;30271:16;30260:27;;30207:86;;;:::o;30299:154::-;30383:6;30378:3;30373;30360:30;30445:1;30436:6;30431:3;30427:16;30420:27;30299:154;;;:::o;30459:307::-;30527:1;30537:113;30551:6;30548:1;30545:13;30537:113;;;30636:1;30631:3;30627:11;30621:18;30617:1;30612:3;30608:11;30601:39;30573:2;30570:1;30566:10;30561:15;;30537:113;;;30668:6;30665:1;30662:13;30659:101;;;30748:1;30739:6;30734:3;30730:16;30723:27;30659:101;30508:258;30459:307;;;:::o;30772:171::-;30811:3;30834:24;30852:5;30834:24;:::i;:::-;30825:33;;30880:4;30873:5;30870:15;30867:41;;;30888:18;;:::i;:::-;30867:41;30935:1;30928:5;30924:13;30917:20;;30772:171;;;:::o;30949:320::-;30993:6;31030:1;31024:4;31020:12;31010:22;;31077:1;31071:4;31067:12;31098:18;31088:81;;31154:4;31146:6;31142:17;31132:27;;31088:81;31216:2;31208:6;31205:14;31185:18;31182:38;31179:84;;;31235:18;;:::i;:::-;31179:84;31000:269;30949:320;;;:::o;31275:281::-;31358:27;31380:4;31358:27;:::i;:::-;31350:6;31346:40;31488:6;31476:10;31473:22;31452:18;31440:10;31437:34;31434:62;31431:88;;;31499:18;;:::i;:::-;31431:88;31539:10;31535:2;31528:22;31318:238;31275:281;;:::o;31562:233::-;31601:3;31624:24;31642:5;31624:24;:::i;:::-;31615:33;;31670:66;31663:5;31660:77;31657:103;;;31740:18;;:::i;:::-;31657:103;31787:1;31780:5;31776:13;31769:20;;31562:233;;;:::o;31801:180::-;31849:77;31846:1;31839:88;31946:4;31943:1;31936:15;31970:4;31967:1;31960:15;31987:180;32035:77;32032:1;32025:88;32132:4;32129:1;32122:15;32156:4;32153:1;32146:15;32173:180;32221:77;32218:1;32211:88;32318:4;32315:1;32308:15;32342:4;32339:1;32332:15;32359:180;32407:77;32404:1;32397:88;32504:4;32501:1;32494:15;32528:4;32525:1;32518:15;32545:180;32593:77;32590:1;32583:88;32690:4;32687:1;32680:15;32714:4;32711:1;32704:15;32731:117;32840:1;32837;32830:12;32854:117;32963:1;32960;32953:12;32977:117;33086:1;33083;33076:12;33100:117;33209:1;33206;33199:12;33223:117;33332:1;33329;33322:12;33346:102;33387:6;33438:2;33434:7;33429:2;33422:5;33418:14;33414:28;33404:38;;33346:102;;;:::o;33454:182::-;33594:34;33590:1;33582:6;33578:14;33571:58;33454:182;:::o;33642:222::-;33782:34;33778:1;33770:6;33766:14;33759:58;33851:5;33846:2;33838:6;33834:15;33827:30;33642:222;:::o;33870:221::-;34010:34;34006:1;33998:6;33994:14;33987:58;34079:4;34074:2;34066:6;34062:15;34055:29;33870:221;:::o;34097:::-;34237:34;34233:1;34225:6;34221:14;34214:58;34306:4;34301:2;34293:6;34289:15;34282:29;34097:221;:::o;34324:225::-;34464:34;34460:1;34452:6;34448:14;34441:58;34533:8;34528:2;34520:6;34516:15;34509:33;34324:225;:::o;34555:224::-;34695:34;34691:1;34683:6;34679:14;34672:58;34764:7;34759:2;34751:6;34747:15;34740:32;34555:224;:::o;34785:229::-;34925:34;34921:1;34913:6;34909:14;34902:58;34994:12;34989:2;34981:6;34977:15;34970:37;34785:229;:::o;35020:227::-;35160:34;35156:1;35148:6;35144:14;35137:58;35229:10;35224:2;35216:6;35212:15;35205:35;35020:227;:::o;35253:220::-;35393:34;35389:1;35381:6;35377:14;35370:58;35462:3;35457:2;35449:6;35445:15;35438:28;35253:220;:::o;35479:224::-;35619:34;35615:1;35607:6;35603:14;35596:58;35688:7;35683:2;35675:6;35671:15;35664:32;35479:224;:::o;35709:223::-;35849:34;35845:1;35837:6;35833:14;35826:58;35918:6;35913:2;35905:6;35901:15;35894:31;35709:223;:::o;35938:173::-;36078:25;36074:1;36066:6;36062:14;36055:49;35938:173;:::o;36117:224::-;36257:34;36253:1;36245:6;36241:14;36234:58;36326:7;36321:2;36313:6;36309:15;36302:32;36117:224;:::o;36347:167::-;36487:19;36483:1;36475:6;36471:14;36464:43;36347:167;:::o;36520:234::-;36660:34;36656:1;36648:6;36644:14;36637:58;36729:17;36724:2;36716:6;36712:15;36705:42;36520:234;:::o;36760:181::-;36900:33;36896:1;36888:6;36884:14;36877:57;36760:181;:::o;36947:122::-;37020:24;37038:5;37020:24;:::i;:::-;37013:5;37010:35;37000:63;;37059:1;37056;37049:12;37000:63;36947:122;:::o;37075:::-;37148:24;37166:5;37148:24;:::i;:::-;37141:5;37138:35;37128:63;;37187:1;37184;37177:12;37128:63;37075:122;:::o;37203:120::-;37275:23;37292:5;37275:23;:::i;:::-;37268:5;37265:34;37255:62;;37313:1;37310;37303:12;37255:62;37203:120;:::o;37329:122::-;37402:24;37420:5;37402:24;:::i;:::-;37395:5;37392:35;37382:63;;37441:1;37438;37431:12;37382:63;37329:122;:::o

Swarm Source

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