FTM Price: $0.32 (-2.49%)
Gas: 30 Gwei

Token

MysteryBOX (SBOX)
 

Overview

Max Total Supply

93 SBOX

Holders

11

Market

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Balance
0 SBOX
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MysteryBox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-01-30
*/

// Sources flattened with hardhat v2.8.3 https://hardhat.org

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

// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


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/utils/introspection/[email protected]


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/access/[email protected]


pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @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 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 {_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 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 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 {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _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 {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _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 granted `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}.
     * ====
     */
    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 {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File @openzeppelin/contracts/utils/structs/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


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


pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}


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


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/token/ERC721/[email protected]


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/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


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


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


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


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


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


pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


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


pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/ER[email protected]


pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File contracts/nft/MysteryBox.sol

pragma solidity ^0.8.0;


contract MysteryBox is AccessControlEnumerable, ERC721Enumerable, ERC721Burnable  {

    event BaseURIChanged(string uri);

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    string private _uri;

    uint256 public currentId;

    constructor(string memory name, string memory symbol, string memory uri) ERC721(name, symbol) {
        _uri = uri;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
    }

    function setBaseURI(string memory uri) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "MysteryBox: must have admin role to set");

        require(bytes(uri).length > 0, "MysteryBox: uri is invalid");

        _uri = uri;

        emit BaseURIChanged(uri);
    }

    function mint(address to) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "MysteryBox: must have minter role to mint");

        _mint(to, ++currentId);
    }

    function mintBatch(address[] memory accounts) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "MysteryBox: must have minter role to mint");

        uint256 length = accounts.length;

        require(length > 0, "MysteryBox: array length is invalid");

        uint256 id = currentId;

        for (uint256 i = 0; i < length; i++) {
            _mint(accounts[i], ++id);
        }

        currentId = id;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _uri;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"BaseURIChanged","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Contract Creation Code

60806040523480156200001157600080fd5b5060405162004dae38038062004dae8339818101604052810190620000379190620004b8565b82828160029080519060200190620000519291906200038a565b5080600390805190602001906200006a9291906200038a565b50505080600c9080519060200190620000859291906200038a565b50620000aa6000801b6200009e620000f460201b60201c565b620000fc60201b60201c565b620000eb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000df620000f460201b60201c565b620000fc60201b60201c565b505050620006f5565b600033905090565b6200011382826200014460201b620013ba1760201c565b6200013f81600160008581526020019081526020016000206200015a60201b620013c81790919060201c565b505050565b6200015682826200019260201b60201c565b5050565b60006200018a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200028360201b60201c565b905092915050565b620001a48282620002fd60201b60201c565b6200027f57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000224620000f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200029783836200036760201b60201c565b620002f2578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620002f7565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003989062000606565b90600052602060002090601f016020900481019282620003bc576000855562000408565b82601f10620003d757805160ff191683800117855562000408565b8280016001018555821562000408579182015b8281111562000407578251825591602001919060010190620003ea565b5b5090506200041791906200041b565b5090565b5b80821115620004365760008160009055506001016200041c565b5090565b6000620004516200044b846200059a565b62000571565b90508281526020810184848401111562000470576200046f620006d5565b5b6200047d848285620005d0565b509392505050565b600082601f8301126200049d576200049c620006d0565b5b8151620004af8482602086016200043a565b91505092915050565b600080600060608486031215620004d457620004d3620006df565b5b600084015167ffffffffffffffff811115620004f557620004f4620006da565b5b620005038682870162000485565b935050602084015167ffffffffffffffff811115620005275762000526620006da565b5b620005358682870162000485565b925050604084015167ffffffffffffffff811115620005595762000558620006da565b5b620005678682870162000485565b9150509250925092565b60006200057d62000590565b90506200058b82826200063c565b919050565b6000604051905090565b600067ffffffffffffffff821115620005b857620005b7620006a1565b5b620005c382620006e4565b9050602081019050919050565b60005b83811015620005f0578082015181840152602081019050620005d3565b8381111562000600576000848401525b50505050565b600060028204905060018216806200061f57607f821691505b6020821081141562000636576200063562000672565b5b50919050565b6200064782620006e4565b810181811067ffffffffffffffff82111715620006695762000668620006a1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6146a980620007056000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636a62784211610104578063a22cb465116100a2578063d539139311610071578063d53913931461059b578063d547741f146105b9578063e00dd161146105d5578063e985e9c5146105f3576101da565b8063a22cb46514610503578063b88d4fde1461051f578063c87b56dd1461053b578063ca15c8731461056b576101da565b806391d14854116100de57806391d148541461047b578063927f59ba146104ab57806395d89b41146104c7578063a217fddf146104e5576101da565b80636a627842146103ff57806370a082311461041b5780639010d07c1461044b576101da565b80632f2ff15d1161017c57806342966c681161014b57806342966c68146103675780634f6ccce71461038357806355f804b3146103b35780636352211e146103cf576101da565b80632f2ff15d146102e35780632f745c59146102ff57806336568abe1461032f57806342842e0e1461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd14610297578063248a9ca3146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613117565b610623565b60405161020691906136bc565b60405180910390f35b610217610635565b60405161022491906136f2565b60405180910390f35b610247600480360381019061024291906131ba565b6106c7565b6040516102549190613655565b60405180910390f35b61027760048036038101906102729190612fe1565b61074c565b005b610281610864565b60405161028e9190613a34565b60405180910390f35b6102b160048036038101906102ac9190612ecb565b610871565b005b6102cd60048036038101906102c8919061306a565b6108d1565b6040516102da91906136d7565b60405180910390f35b6102fd60048036038101906102f89190613097565b6108f0565b005b61031960048036038101906103149190612fe1565b610924565b6040516103269190613a34565b60405180910390f35b61034960048036038101906103449190613097565b6109c9565b005b61036560048036038101906103609190612ecb565b6109fd565b005b610381600480360381019061037c91906131ba565b610a1d565b005b61039d600480360381019061039891906131ba565b610a79565b6040516103aa9190613a34565b60405180910390f35b6103cd60048036038101906103c89190613171565b610aea565b005b6103e960048036038101906103e491906131ba565b610bd2565b6040516103f69190613655565b60405180910390f35b61041960048036038101906104149190612e5e565b610c84565b005b61043560048036038101906104309190612e5e565b610d15565b6040516104429190613a34565b60405180910390f35b610465600480360381019061046091906130d7565b610dcd565b6040516104729190613655565b60405180910390f35b61049560048036038101906104909190613097565b610dfc565b6040516104a291906136bc565b60405180910390f35b6104c560048036038101906104c09190613021565b610e66565b005b6104cf610f81565b6040516104dc91906136f2565b60405180910390f35b6104ed611013565b6040516104fa91906136d7565b60405180910390f35b61051d60048036038101906105189190612fa1565b61101a565b005b61053960048036038101906105349190612f1e565b61119b565b005b610555600480360381019061055091906131ba565b6111fd565b60405161056291906136f2565b60405180910390f35b6105856004803603810190610580919061306a565b6112a4565b6040516105929190613a34565b60405180910390f35b6105a36112c8565b6040516105b091906136d7565b60405180910390f35b6105d360048036038101906105ce9190613097565b6112ec565b005b6105dd611320565b6040516105ea9190613a34565b60405180910390f35b61060d60048036038101906106089190612e8b565b611326565b60405161061a91906136bc565b60405180910390f35b600061062e826113f8565b9050919050565b60606002805461064490613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461067090613cc0565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d282611472565b610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890613914565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075782610bd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613974565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e76114de565b73ffffffffffffffffffffffffffffffffffffffff1614806108165750610815816108106114de565b611326565b5b610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90613854565b60405180910390fd5b61085f83836114e6565b505050565b6000600a80549050905090565b61088261087c6114de565b8261159f565b6108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890613994565b60405180910390fd5b6108cc83838361167d565b505050565b6000806000838152602001908152602001600020600101549050919050565b6108fa82826118d9565b61091f81600160008581526020019081526020016000206113c890919063ffffffff16565b505050565b600061092f83610d15565b8210610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613754565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109d3828261193f565b6109f881600160008581526020019081526020016000206119c290919063ffffffff16565b505050565b610a188383836040518060200160405280600081525061119b565b505050565b610a2e610a286114de565b8261159f565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906139d4565b60405180910390fd5b610a76816119f2565b50565b6000610a83610864565b8210610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906139b4565b60405180910390fd5b600a8281548110610ad857610ad7613e59565b5b90600052602060002001549050919050565b610afe6000801b610af96114de565b610dfc565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613794565b60405180910390fd5b6000815111610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906138f4565b60405180910390fd5b80600c9080519060200190610b97929190612bbf565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610bc791906136f2565b60405180910390a150565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613894565b60405180910390fd5b80915050919050565b610cb57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cb06114de565b610dfc565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb906138b4565b60405180910390fd5b610d1281600d60008154610d0790613d23565b919050819055611b03565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90613874565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610df48260016000868152602001908152602001600020611cd190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e977f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e926114de565b610dfc565b610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906138b4565b60405180910390fd5b60008151905060008111610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906139f4565b60405180910390fd5b6000600d54905060005b82811015610f7457610f61848281518110610f4757610f46613e59565b5b602002602001015183610f5990613d23565b935083611b03565b8080610f6c90613d23565b915050610f29565b5080600d81905550505050565b606060038054610f9090613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc90613cc0565b80156110095780601f10610fde57610100808354040283529160200191611009565b820191906000526020600020905b815481529060010190602001808311610fec57829003601f168201915b5050505050905090565b6000801b81565b6110226114de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906137f4565b60405180910390fd5b806007600061109d6114de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114a6114de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118f91906136bc565b60405180910390a35050565b6111ac6111a66114de565b8361159f565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613994565b60405180910390fd5b6111f784848484611ceb565b50505050565b606061120882611472565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613954565b60405180910390fd5b6000611251611d47565b90506000815111611271576040518060200160405280600081525061129c565b8061127b84611dd9565b60405160200161128c929190613631565b6040516020818303038152906040525b915050919050565b60006112c160016000848152602001908152602001600020611f3a565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6112f68282611f4f565b61131b81600160008581526020019081526020016000206119c290919063ffffffff16565b505050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c48282611fb5565b5050565b60006113f0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612095565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061146b575061146a82612105565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155983610bd2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115aa82611472565b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613814565b60405180910390fd5b60006115f483610bd2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166357508373ffffffffffffffffffffffffffffffffffffffff1661164b846106c7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061167457506116738185611326565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169d82610bd2565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906137d4565b60405180910390fd5b61176e8383836121e7565b6117796000826114e6565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c99190613bcc565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118209190613b45565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6118f26118e5836108d1565b6118ed6114de565b610dfc565b611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613734565b60405180910390fd5b61193b8282611fb5565b5050565b6119476114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613a14565b60405180910390fd5b6119be82826121f7565b5050565b60006119ea836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6122d8565b905092915050565b60006119fd82610bd2565b9050611a0b816000846121e7565b611a166000836114e6565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a669190613bcc565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a906138d4565b60405180910390fd5b611b7c81611472565b15611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906137b4565b60405180910390fd5b611bc8600083836121e7565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c189190613b45565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611ce083600001836123f0565b60001c905092915050565b611cf684848461167d565b611d0284848484612464565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613774565b60405180910390fd5b50505050565b6060600c8054611d5690613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8290613cc0565b8015611dcf5780601f10611da457610100808354040283529160200191611dcf565b820191906000526020600020905b815481529060010190602001808311611db257829003601f168201915b5050505050905090565b60606000821415611e21576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f35565b600082905060005b60008214611e53578080611e3c90613d23565b915050600a82611e4c9190613b9b565b9150611e29565b60008167ffffffffffffffff811115611e6f57611e6e613e88565b5b6040519080825280601f01601f191660200182016040528015611ea15781602001600182028036833780820191505090505b5090505b60008514611f2e57600182611eba9190613bcc565b9150600a85611ec99190613d6c565b6030611ed59190613b45565b60f81b818381518110611eeb57611eea613e59565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f279190613b9b565b9450611ea5565b8093505050505b919050565b6000611f48826000016125fb565b9050919050565b611f68611f5b836108d1565b611f636114de565b610dfc565b611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613834565b60405180910390fd5b611fb182826121f7565b5050565b611fbf8282610dfc565b61209157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120366114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006120a1838361260c565b6120fa5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506120ff565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121e057506121df8261262f565b5b9050919050565b6121f28383836126a9565b505050565b6122018282610dfc565b156122d457600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122796114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146123e457600060018261230a9190613bcc565b90506000600186600001805490506123229190613bcc565b9050600086600001828154811061233c5761233b613e59565b5b90600052602060002001549050808760000184815481106123605761235f613e59565b5b906000526020600020018190555060018361237b9190613b45565b87600101600083815260200190815260200160002081905550866000018054806123a8576123a7613e2a565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506123ea565b60009150505b92915050565b60008183600001805490501161243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290613714565b60405180910390fd5b82600001828154811061245157612450613e59565b5b9060005260206000200154905092915050565b60006124858473ffffffffffffffffffffffffffffffffffffffff166127bd565b156125ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ae6114de565b8786866040518563ffffffff1660e01b81526004016124d09493929190613670565b602060405180830381600087803b1580156124ea57600080fd5b505af192505050801561251b57506040513d601f19601f820116820180604052508101906125189190613144565b60015b61259e573d806000811461254b576040519150601f19603f3d011682016040523d82523d6000602084013e612550565b606091505b50600081511415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d90613774565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f3565b600190505b949350505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a257506126a1826127d0565b5b9050919050565b6126b483838361284a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576126f28161284f565b612736565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612735576127348382612898565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127795761277481612a05565b6127b8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127b7576127b68282612ad6565b5b5b505050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612843575061284282612b55565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128a584610d15565b6128af9190613bcc565b9050600060096000848152602001908152602001600020549050818114612994576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612a199190613bcc565b90506000600b60008481526020019081526020016000205490506000600a8381548110612a4957612a48613e59565b5b9060005260206000200154905080600a8381548110612a6b57612a6a613e59565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480612aba57612ab9613e2a565b5b6001900381819060005260206000200160009055905550505050565b6000612ae183610d15565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612bcb90613cc0565b90600052602060002090601f016020900481019282612bed5760008555612c34565b82601f10612c0657805160ff1916838001178555612c34565b82800160010185558215612c34579182015b82811115612c33578251825591602001919060010190612c18565b5b509050612c419190612c45565b5090565b5b80821115612c5e576000816000905550600101612c46565b5090565b6000612c75612c7084613a74565b613a4f565b90508083825260208201905082856020860282011115612c9857612c97613ebc565b5b60005b85811015612cc85781612cae8882612d56565b845260208401935060208301925050600181019050612c9b565b5050509392505050565b6000612ce5612ce084613aa0565b613a4f565b905082815260208101848484011115612d0157612d00613ec1565b5b612d0c848285613c7e565b509392505050565b6000612d27612d2284613ad1565b613a4f565b905082815260208101848484011115612d4357612d42613ec1565b5b612d4e848285613c7e565b509392505050565b600081359050612d6581614600565b92915050565b600082601f830112612d8057612d7f613eb7565b5b8135612d90848260208601612c62565b91505092915050565b600081359050612da881614617565b92915050565b600081359050612dbd8161462e565b92915050565b600081359050612dd281614645565b92915050565b600081519050612de781614645565b92915050565b600082601f830112612e0257612e01613eb7565b5b8135612e12848260208601612cd2565b91505092915050565b600082601f830112612e3057612e2f613eb7565b5b8135612e40848260208601612d14565b91505092915050565b600081359050612e588161465c565b92915050565b600060208284031215612e7457612e73613ecb565b5b6000612e8284828501612d56565b91505092915050565b60008060408385031215612ea257612ea1613ecb565b5b6000612eb085828601612d56565b9250506020612ec185828601612d56565b9150509250929050565b600080600060608486031215612ee457612ee3613ecb565b5b6000612ef286828701612d56565b9350506020612f0386828701612d56565b9250506040612f1486828701612e49565b9150509250925092565b60008060008060808587031215612f3857612f37613ecb565b5b6000612f4687828801612d56565b9450506020612f5787828801612d56565b9350506040612f6887828801612e49565b925050606085013567ffffffffffffffff811115612f8957612f88613ec6565b5b612f9587828801612ded565b91505092959194509250565b60008060408385031215612fb857612fb7613ecb565b5b6000612fc685828601612d56565b9250506020612fd785828601612d99565b9150509250929050565b60008060408385031215612ff857612ff7613ecb565b5b600061300685828601612d56565b925050602061301785828601612e49565b9150509250929050565b60006020828403121561303757613036613ecb565b5b600082013567ffffffffffffffff81111561305557613054613ec6565b5b61306184828501612d6b565b91505092915050565b6000602082840312156130805761307f613ecb565b5b600061308e84828501612dae565b91505092915050565b600080604083850312156130ae576130ad613ecb565b5b60006130bc85828601612dae565b92505060206130cd85828601612d56565b9150509250929050565b600080604083850312156130ee576130ed613ecb565b5b60006130fc85828601612dae565b925050602061310d85828601612e49565b9150509250929050565b60006020828403121561312d5761312c613ecb565b5b600061313b84828501612dc3565b91505092915050565b60006020828403121561315a57613159613ecb565b5b600061316884828501612dd8565b91505092915050565b60006020828403121561318757613186613ecb565b5b600082013567ffffffffffffffff8111156131a5576131a4613ec6565b5b6131b184828501612e1b565b91505092915050565b6000602082840312156131d0576131cf613ecb565b5b60006131de84828501612e49565b91505092915050565b6131f081613c00565b82525050565b6131ff81613c12565b82525050565b61320e81613c1e565b82525050565b600061321f82613b02565b6132298185613b18565b9350613239818560208601613c8d565b61324281613ed0565b840191505092915050565b600061325882613b0d565b6132628185613b29565b9350613272818560208601613c8d565b61327b81613ed0565b840191505092915050565b600061329182613b0d565b61329b8185613b3a565b93506132ab818560208601613c8d565b80840191505092915050565b60006132c4602283613b29565b91506132cf82613ee1565b604082019050919050565b60006132e7602f83613b29565b91506132f282613f30565b604082019050919050565b600061330a602b83613b29565b915061331582613f7f565b604082019050919050565b600061332d603283613b29565b915061333882613fce565b604082019050919050565b6000613350602783613b29565b915061335b8261401d565b604082019050919050565b6000613373601c83613b29565b915061337e8261406c565b602082019050919050565b6000613396602483613b29565b91506133a182614095565b604082019050919050565b60006133b9601983613b29565b91506133c4826140e4565b602082019050919050565b60006133dc602c83613b29565b91506133e78261410d565b604082019050919050565b60006133ff603083613b29565b915061340a8261415c565b604082019050919050565b6000613422603883613b29565b915061342d826141ab565b604082019050919050565b6000613445602a83613b29565b9150613450826141fa565b604082019050919050565b6000613468602983613b29565b915061347382614249565b604082019050919050565b600061348b602983613b29565b915061349682614298565b604082019050919050565b60006134ae602083613b29565b91506134b9826142e7565b602082019050919050565b60006134d1601a83613b29565b91506134dc82614310565b602082019050919050565b60006134f4602c83613b29565b91506134ff82614339565b604082019050919050565b6000613517602983613b29565b915061352282614388565b604082019050919050565b600061353a602f83613b29565b9150613545826143d7565b604082019050919050565b600061355d602183613b29565b915061356882614426565b604082019050919050565b6000613580603183613b29565b915061358b82614475565b604082019050919050565b60006135a3602c83613b29565b91506135ae826144c4565b604082019050919050565b60006135c6603083613b29565b91506135d182614513565b604082019050919050565b60006135e9602383613b29565b91506135f482614562565b604082019050919050565b600061360c602f83613b29565b9150613617826145b1565b604082019050919050565b61362b81613c74565b82525050565b600061363d8285613286565b91506136498284613286565b91508190509392505050565b600060208201905061366a60008301846131e7565b92915050565b600060808201905061368560008301876131e7565b61369260208301866131e7565b61369f6040830185613622565b81810360608301526136b18184613214565b905095945050505050565b60006020820190506136d160008301846131f6565b92915050565b60006020820190506136ec6000830184613205565b92915050565b6000602082019050818103600083015261370c818461324d565b905092915050565b6000602082019050818103600083015261372d816132b7565b9050919050565b6000602082019050818103600083015261374d816132da565b9050919050565b6000602082019050818103600083015261376d816132fd565b9050919050565b6000602082019050818103600083015261378d81613320565b9050919050565b600060208201905081810360008301526137ad81613343565b9050919050565b600060208201905081810360008301526137cd81613366565b9050919050565b600060208201905081810360008301526137ed81613389565b9050919050565b6000602082019050818103600083015261380d816133ac565b9050919050565b6000602082019050818103600083015261382d816133cf565b9050919050565b6000602082019050818103600083015261384d816133f2565b9050919050565b6000602082019050818103600083015261386d81613415565b9050919050565b6000602082019050818103600083015261388d81613438565b9050919050565b600060208201905081810360008301526138ad8161345b565b9050919050565b600060208201905081810360008301526138cd8161347e565b9050919050565b600060208201905081810360008301526138ed816134a1565b9050919050565b6000602082019050818103600083015261390d816134c4565b9050919050565b6000602082019050818103600083015261392d816134e7565b9050919050565b6000602082019050818103600083015261394d8161350a565b9050919050565b6000602082019050818103600083015261396d8161352d565b9050919050565b6000602082019050818103600083015261398d81613550565b9050919050565b600060208201905081810360008301526139ad81613573565b9050919050565b600060208201905081810360008301526139cd81613596565b9050919050565b600060208201905081810360008301526139ed816135b9565b9050919050565b60006020820190508181036000830152613a0d816135dc565b9050919050565b60006020820190508181036000830152613a2d816135ff565b9050919050565b6000602082019050613a496000830184613622565b92915050565b6000613a59613a6a565b9050613a658282613cf2565b919050565b6000604051905090565b600067ffffffffffffffff821115613a8f57613a8e613e88565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613abb57613aba613e88565b5b613ac482613ed0565b9050602081019050919050565b600067ffffffffffffffff821115613aec57613aeb613e88565b5b613af582613ed0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5082613c74565b9150613b5b83613c74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9057613b8f613d9d565b5b828201905092915050565b6000613ba682613c74565b9150613bb183613c74565b925082613bc157613bc0613dcc565b5b828204905092915050565b6000613bd782613c74565b9150613be283613c74565b925082821015613bf557613bf4613d9d565b5b828203905092915050565b6000613c0b82613c54565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cab578082015181840152602081019050613c90565b83811115613cba576000848401525b50505050565b60006002820490506001821680613cd857607f821691505b60208210811415613cec57613ceb613dfb565b5b50919050565b613cfb82613ed0565b810181811067ffffffffffffffff82111715613d1a57613d19613e88565b5b80604052505050565b6000613d2e82613c74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6157613d60613d9d565b5b600182019050919050565b6000613d7782613c74565b9150613d8283613c74565b925082613d9257613d91613dcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d797374657279426f783a206d75737420686176652061646d696e20726f6c6560008201527f20746f2073657400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d797374657279426f783a206d7573742068617665206d696e74657220726f6c60008201527f6520746f206d696e740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d797374657279426f783a2075726920697320696e76616c6964000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d797374657279426f783a206172726179206c656e67746820697320696e766160008201527f6c69640000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61460981613c00565b811461461457600080fd5b50565b61462081613c12565b811461462b57600080fd5b50565b61463781613c1e565b811461464257600080fd5b50565b61464e81613c28565b811461465957600080fd5b50565b61466581613c74565b811461467057600080fd5b5056fea2646970667358221220d4a4fb75eec9eab81571a8f1ed649b77f0c9d7cd5f9e252d5986fbd966be0a1864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4d797374657279424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f74616e6b2d6465762d6d657461646174612e6669626572626f782e6e65742f626f7873000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636a62784211610104578063a22cb465116100a2578063d539139311610071578063d53913931461059b578063d547741f146105b9578063e00dd161146105d5578063e985e9c5146105f3576101da565b8063a22cb46514610503578063b88d4fde1461051f578063c87b56dd1461053b578063ca15c8731461056b576101da565b806391d14854116100de57806391d148541461047b578063927f59ba146104ab57806395d89b41146104c7578063a217fddf146104e5576101da565b80636a627842146103ff57806370a082311461041b5780639010d07c1461044b576101da565b80632f2ff15d1161017c57806342966c681161014b57806342966c68146103675780634f6ccce71461038357806355f804b3146103b35780636352211e146103cf576101da565b80632f2ff15d146102e35780632f745c59146102ff57806336568abe1461032f57806342842e0e1461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd14610297578063248a9ca3146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613117565b610623565b60405161020691906136bc565b60405180910390f35b610217610635565b60405161022491906136f2565b60405180910390f35b610247600480360381019061024291906131ba565b6106c7565b6040516102549190613655565b60405180910390f35b61027760048036038101906102729190612fe1565b61074c565b005b610281610864565b60405161028e9190613a34565b60405180910390f35b6102b160048036038101906102ac9190612ecb565b610871565b005b6102cd60048036038101906102c8919061306a565b6108d1565b6040516102da91906136d7565b60405180910390f35b6102fd60048036038101906102f89190613097565b6108f0565b005b61031960048036038101906103149190612fe1565b610924565b6040516103269190613a34565b60405180910390f35b61034960048036038101906103449190613097565b6109c9565b005b61036560048036038101906103609190612ecb565b6109fd565b005b610381600480360381019061037c91906131ba565b610a1d565b005b61039d600480360381019061039891906131ba565b610a79565b6040516103aa9190613a34565b60405180910390f35b6103cd60048036038101906103c89190613171565b610aea565b005b6103e960048036038101906103e491906131ba565b610bd2565b6040516103f69190613655565b60405180910390f35b61041960048036038101906104149190612e5e565b610c84565b005b61043560048036038101906104309190612e5e565b610d15565b6040516104429190613a34565b60405180910390f35b610465600480360381019061046091906130d7565b610dcd565b6040516104729190613655565b60405180910390f35b61049560048036038101906104909190613097565b610dfc565b6040516104a291906136bc565b60405180910390f35b6104c560048036038101906104c09190613021565b610e66565b005b6104cf610f81565b6040516104dc91906136f2565b60405180910390f35b6104ed611013565b6040516104fa91906136d7565b60405180910390f35b61051d60048036038101906105189190612fa1565b61101a565b005b61053960048036038101906105349190612f1e565b61119b565b005b610555600480360381019061055091906131ba565b6111fd565b60405161056291906136f2565b60405180910390f35b6105856004803603810190610580919061306a565b6112a4565b6040516105929190613a34565b60405180910390f35b6105a36112c8565b6040516105b091906136d7565b60405180910390f35b6105d360048036038101906105ce9190613097565b6112ec565b005b6105dd611320565b6040516105ea9190613a34565b60405180910390f35b61060d60048036038101906106089190612e8b565b611326565b60405161061a91906136bc565b60405180910390f35b600061062e826113f8565b9050919050565b60606002805461064490613cc0565b80601f016020809104026020016040519081016040528092919081815260200182805461067090613cc0565b80156106bd5780601f10610692576101008083540402835291602001916106bd565b820191906000526020600020905b8154815290600101906020018083116106a057829003601f168201915b5050505050905090565b60006106d282611472565b610711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070890613914565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075782610bd2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613974565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e76114de565b73ffffffffffffffffffffffffffffffffffffffff1614806108165750610815816108106114de565b611326565b5b610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90613854565b60405180910390fd5b61085f83836114e6565b505050565b6000600a80549050905090565b61088261087c6114de565b8261159f565b6108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b890613994565b60405180910390fd5b6108cc83838361167d565b505050565b6000806000838152602001908152602001600020600101549050919050565b6108fa82826118d9565b61091f81600160008581526020019081526020016000206113c890919063ffffffff16565b505050565b600061092f83610d15565b8210610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790613754565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109d3828261193f565b6109f881600160008581526020019081526020016000206119c290919063ffffffff16565b505050565b610a188383836040518060200160405280600081525061119b565b505050565b610a2e610a286114de565b8261159f565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906139d4565b60405180910390fd5b610a76816119f2565b50565b6000610a83610864565b8210610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906139b4565b60405180910390fd5b600a8281548110610ad857610ad7613e59565b5b90600052602060002001549050919050565b610afe6000801b610af96114de565b610dfc565b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613794565b60405180910390fd5b6000815111610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906138f4565b60405180910390fd5b80600c9080519060200190610b97929190612bbf565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610bc791906136f2565b60405180910390a150565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613894565b60405180910390fd5b80915050919050565b610cb57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cb06114de565b610dfc565b610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb906138b4565b60405180910390fd5b610d1281600d60008154610d0790613d23565b919050819055611b03565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90613874565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610df48260016000868152602001908152602001600020611cd190919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610e977f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610e926114de565b610dfc565b610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd906138b4565b60405180910390fd5b60008151905060008111610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906139f4565b60405180910390fd5b6000600d54905060005b82811015610f7457610f61848281518110610f4757610f46613e59565b5b602002602001015183610f5990613d23565b935083611b03565b8080610f6c90613d23565b915050610f29565b5080600d81905550505050565b606060038054610f9090613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc90613cc0565b80156110095780601f10610fde57610100808354040283529160200191611009565b820191906000526020600020905b815481529060010190602001808311610fec57829003601f168201915b5050505050905090565b6000801b81565b6110226114de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906137f4565b60405180910390fd5b806007600061109d6114de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114a6114de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118f91906136bc565b60405180910390a35050565b6111ac6111a66114de565b8361159f565b6111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613994565b60405180910390fd5b6111f784848484611ceb565b50505050565b606061120882611472565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90613954565b60405180910390fd5b6000611251611d47565b90506000815111611271576040518060200160405280600081525061129c565b8061127b84611dd9565b60405160200161128c929190613631565b6040516020818303038152906040525b915050919050565b60006112c160016000848152602001908152602001600020611f3a565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6112f68282611f4f565b61131b81600160008581526020019081526020016000206119c290919063ffffffff16565b505050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113c48282611fb5565b5050565b60006113f0836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612095565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061146b575061146a82612105565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155983610bd2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115aa82611472565b6115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090613814565b60405180910390fd5b60006115f483610bd2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166357508373ffffffffffffffffffffffffffffffffffffffff1661164b846106c7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061167457506116738185611326565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169d82610bd2565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906137d4565b60405180910390fd5b61176e8383836121e7565b6117796000826114e6565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c99190613bcc565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118209190613b45565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6118f26118e5836108d1565b6118ed6114de565b610dfc565b611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890613734565b60405180910390fd5b61193b8282611fb5565b5050565b6119476114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613a14565b60405180910390fd5b6119be82826121f7565b5050565b60006119ea836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6122d8565b905092915050565b60006119fd82610bd2565b9050611a0b816000846121e7565b611a166000836114e6565b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a669190613bcc565b925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a906138d4565b60405180910390fd5b611b7c81611472565b15611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906137b4565b60405180910390fd5b611bc8600083836121e7565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c189190613b45565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611ce083600001836123f0565b60001c905092915050565b611cf684848461167d565b611d0284848484612464565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613774565b60405180910390fd5b50505050565b6060600c8054611d5690613cc0565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8290613cc0565b8015611dcf5780601f10611da457610100808354040283529160200191611dcf565b820191906000526020600020905b815481529060010190602001808311611db257829003601f168201915b5050505050905090565b60606000821415611e21576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f35565b600082905060005b60008214611e53578080611e3c90613d23565b915050600a82611e4c9190613b9b565b9150611e29565b60008167ffffffffffffffff811115611e6f57611e6e613e88565b5b6040519080825280601f01601f191660200182016040528015611ea15781602001600182028036833780820191505090505b5090505b60008514611f2e57600182611eba9190613bcc565b9150600a85611ec99190613d6c565b6030611ed59190613b45565b60f81b818381518110611eeb57611eea613e59565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f279190613b9b565b9450611ea5565b8093505050505b919050565b6000611f48826000016125fb565b9050919050565b611f68611f5b836108d1565b611f636114de565b610dfc565b611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613834565b60405180910390fd5b611fb182826121f7565b5050565b611fbf8282610dfc565b61209157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120366114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006120a1838361260c565b6120fa5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506120ff565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121d057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121e057506121df8261262f565b5b9050919050565b6121f28383836126a9565b505050565b6122018282610dfc565b156122d457600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122796114de565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080836001016000848152602001908152602001600020549050600081146123e457600060018261230a9190613bcc565b90506000600186600001805490506123229190613bcc565b9050600086600001828154811061233c5761233b613e59565b5b90600052602060002001549050808760000184815481106123605761235f613e59565b5b906000526020600020018190555060018361237b9190613b45565b87600101600083815260200190815260200160002081905550866000018054806123a8576123a7613e2a565b5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506123ea565b60009150505b92915050565b60008183600001805490501161243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290613714565b60405180910390fd5b82600001828154811061245157612450613e59565b5b9060005260206000200154905092915050565b60006124858473ffffffffffffffffffffffffffffffffffffffff166127bd565b156125ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ae6114de565b8786866040518563ffffffff1660e01b81526004016124d09493929190613670565b602060405180830381600087803b1580156124ea57600080fd5b505af192505050801561251b57506040513d601f19601f820116820180604052508101906125189190613144565b60015b61259e573d806000811461254b576040519150601f19603f3d011682016040523d82523d6000602084013e612550565b606091505b50600081511415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d90613774565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f3565b600190505b949350505050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126a257506126a1826127d0565b5b9050919050565b6126b483838361284a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126f7576126f28161284f565b612736565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612735576127348382612898565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127795761277481612a05565b6127b8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127b7576127b68282612ad6565b5b5b505050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612843575061284282612b55565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128a584610d15565b6128af9190613bcc565b9050600060096000848152602001908152602001600020549050818114612994576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612a199190613bcc565b90506000600b60008481526020019081526020016000205490506000600a8381548110612a4957612a48613e59565b5b9060005260206000200154905080600a8381548110612a6b57612a6a613e59565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480612aba57612ab9613e2a565b5b6001900381819060005260206000200160009055905550505050565b6000612ae183610d15565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612bcb90613cc0565b90600052602060002090601f016020900481019282612bed5760008555612c34565b82601f10612c0657805160ff1916838001178555612c34565b82800160010185558215612c34579182015b82811115612c33578251825591602001919060010190612c18565b5b509050612c419190612c45565b5090565b5b80821115612c5e576000816000905550600101612c46565b5090565b6000612c75612c7084613a74565b613a4f565b90508083825260208201905082856020860282011115612c9857612c97613ebc565b5b60005b85811015612cc85781612cae8882612d56565b845260208401935060208301925050600181019050612c9b565b5050509392505050565b6000612ce5612ce084613aa0565b613a4f565b905082815260208101848484011115612d0157612d00613ec1565b5b612d0c848285613c7e565b509392505050565b6000612d27612d2284613ad1565b613a4f565b905082815260208101848484011115612d4357612d42613ec1565b5b612d4e848285613c7e565b509392505050565b600081359050612d6581614600565b92915050565b600082601f830112612d8057612d7f613eb7565b5b8135612d90848260208601612c62565b91505092915050565b600081359050612da881614617565b92915050565b600081359050612dbd8161462e565b92915050565b600081359050612dd281614645565b92915050565b600081519050612de781614645565b92915050565b600082601f830112612e0257612e01613eb7565b5b8135612e12848260208601612cd2565b91505092915050565b600082601f830112612e3057612e2f613eb7565b5b8135612e40848260208601612d14565b91505092915050565b600081359050612e588161465c565b92915050565b600060208284031215612e7457612e73613ecb565b5b6000612e8284828501612d56565b91505092915050565b60008060408385031215612ea257612ea1613ecb565b5b6000612eb085828601612d56565b9250506020612ec185828601612d56565b9150509250929050565b600080600060608486031215612ee457612ee3613ecb565b5b6000612ef286828701612d56565b9350506020612f0386828701612d56565b9250506040612f1486828701612e49565b9150509250925092565b60008060008060808587031215612f3857612f37613ecb565b5b6000612f4687828801612d56565b9450506020612f5787828801612d56565b9350506040612f6887828801612e49565b925050606085013567ffffffffffffffff811115612f8957612f88613ec6565b5b612f9587828801612ded565b91505092959194509250565b60008060408385031215612fb857612fb7613ecb565b5b6000612fc685828601612d56565b9250506020612fd785828601612d99565b9150509250929050565b60008060408385031215612ff857612ff7613ecb565b5b600061300685828601612d56565b925050602061301785828601612e49565b9150509250929050565b60006020828403121561303757613036613ecb565b5b600082013567ffffffffffffffff81111561305557613054613ec6565b5b61306184828501612d6b565b91505092915050565b6000602082840312156130805761307f613ecb565b5b600061308e84828501612dae565b91505092915050565b600080604083850312156130ae576130ad613ecb565b5b60006130bc85828601612dae565b92505060206130cd85828601612d56565b9150509250929050565b600080604083850312156130ee576130ed613ecb565b5b60006130fc85828601612dae565b925050602061310d85828601612e49565b9150509250929050565b60006020828403121561312d5761312c613ecb565b5b600061313b84828501612dc3565b91505092915050565b60006020828403121561315a57613159613ecb565b5b600061316884828501612dd8565b91505092915050565b60006020828403121561318757613186613ecb565b5b600082013567ffffffffffffffff8111156131a5576131a4613ec6565b5b6131b184828501612e1b565b91505092915050565b6000602082840312156131d0576131cf613ecb565b5b60006131de84828501612e49565b91505092915050565b6131f081613c00565b82525050565b6131ff81613c12565b82525050565b61320e81613c1e565b82525050565b600061321f82613b02565b6132298185613b18565b9350613239818560208601613c8d565b61324281613ed0565b840191505092915050565b600061325882613b0d565b6132628185613b29565b9350613272818560208601613c8d565b61327b81613ed0565b840191505092915050565b600061329182613b0d565b61329b8185613b3a565b93506132ab818560208601613c8d565b80840191505092915050565b60006132c4602283613b29565b91506132cf82613ee1565b604082019050919050565b60006132e7602f83613b29565b91506132f282613f30565b604082019050919050565b600061330a602b83613b29565b915061331582613f7f565b604082019050919050565b600061332d603283613b29565b915061333882613fce565b604082019050919050565b6000613350602783613b29565b915061335b8261401d565b604082019050919050565b6000613373601c83613b29565b915061337e8261406c565b602082019050919050565b6000613396602483613b29565b91506133a182614095565b604082019050919050565b60006133b9601983613b29565b91506133c4826140e4565b602082019050919050565b60006133dc602c83613b29565b91506133e78261410d565b604082019050919050565b60006133ff603083613b29565b915061340a8261415c565b604082019050919050565b6000613422603883613b29565b915061342d826141ab565b604082019050919050565b6000613445602a83613b29565b9150613450826141fa565b604082019050919050565b6000613468602983613b29565b915061347382614249565b604082019050919050565b600061348b602983613b29565b915061349682614298565b604082019050919050565b60006134ae602083613b29565b91506134b9826142e7565b602082019050919050565b60006134d1601a83613b29565b91506134dc82614310565b602082019050919050565b60006134f4602c83613b29565b91506134ff82614339565b604082019050919050565b6000613517602983613b29565b915061352282614388565b604082019050919050565b600061353a602f83613b29565b9150613545826143d7565b604082019050919050565b600061355d602183613b29565b915061356882614426565b604082019050919050565b6000613580603183613b29565b915061358b82614475565b604082019050919050565b60006135a3602c83613b29565b91506135ae826144c4565b604082019050919050565b60006135c6603083613b29565b91506135d182614513565b604082019050919050565b60006135e9602383613b29565b91506135f482614562565b604082019050919050565b600061360c602f83613b29565b9150613617826145b1565b604082019050919050565b61362b81613c74565b82525050565b600061363d8285613286565b91506136498284613286565b91508190509392505050565b600060208201905061366a60008301846131e7565b92915050565b600060808201905061368560008301876131e7565b61369260208301866131e7565b61369f6040830185613622565b81810360608301526136b18184613214565b905095945050505050565b60006020820190506136d160008301846131f6565b92915050565b60006020820190506136ec6000830184613205565b92915050565b6000602082019050818103600083015261370c818461324d565b905092915050565b6000602082019050818103600083015261372d816132b7565b9050919050565b6000602082019050818103600083015261374d816132da565b9050919050565b6000602082019050818103600083015261376d816132fd565b9050919050565b6000602082019050818103600083015261378d81613320565b9050919050565b600060208201905081810360008301526137ad81613343565b9050919050565b600060208201905081810360008301526137cd81613366565b9050919050565b600060208201905081810360008301526137ed81613389565b9050919050565b6000602082019050818103600083015261380d816133ac565b9050919050565b6000602082019050818103600083015261382d816133cf565b9050919050565b6000602082019050818103600083015261384d816133f2565b9050919050565b6000602082019050818103600083015261386d81613415565b9050919050565b6000602082019050818103600083015261388d81613438565b9050919050565b600060208201905081810360008301526138ad8161345b565b9050919050565b600060208201905081810360008301526138cd8161347e565b9050919050565b600060208201905081810360008301526138ed816134a1565b9050919050565b6000602082019050818103600083015261390d816134c4565b9050919050565b6000602082019050818103600083015261392d816134e7565b9050919050565b6000602082019050818103600083015261394d8161350a565b9050919050565b6000602082019050818103600083015261396d8161352d565b9050919050565b6000602082019050818103600083015261398d81613550565b9050919050565b600060208201905081810360008301526139ad81613573565b9050919050565b600060208201905081810360008301526139cd81613596565b9050919050565b600060208201905081810360008301526139ed816135b9565b9050919050565b60006020820190508181036000830152613a0d816135dc565b9050919050565b60006020820190508181036000830152613a2d816135ff565b9050919050565b6000602082019050613a496000830184613622565b92915050565b6000613a59613a6a565b9050613a658282613cf2565b919050565b6000604051905090565b600067ffffffffffffffff821115613a8f57613a8e613e88565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613abb57613aba613e88565b5b613ac482613ed0565b9050602081019050919050565b600067ffffffffffffffff821115613aec57613aeb613e88565b5b613af582613ed0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b5082613c74565b9150613b5b83613c74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9057613b8f613d9d565b5b828201905092915050565b6000613ba682613c74565b9150613bb183613c74565b925082613bc157613bc0613dcc565b5b828204905092915050565b6000613bd782613c74565b9150613be283613c74565b925082821015613bf557613bf4613d9d565b5b828203905092915050565b6000613c0b82613c54565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cab578082015181840152602081019050613c90565b83811115613cba576000848401525b50505050565b60006002820490506001821680613cd857607f821691505b60208210811415613cec57613ceb613dfb565b5b50919050565b613cfb82613ed0565b810181811067ffffffffffffffff82111715613d1a57613d19613e88565b5b80604052505050565b6000613d2e82613c74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d6157613d60613d9d565b5b600182019050919050565b6000613d7782613c74565b9150613d8283613c74565b925082613d9257613d91613dcc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f206772616e740000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d797374657279426f783a206d75737420686176652061646d696e20726f6c6560008201527f20746f2073657400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008201527f2061646d696e20746f207265766f6b6500000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d797374657279426f783a206d7573742068617665206d696e74657220726f6c60008201527f6520746f206d696e740000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d797374657279426f783a2075726920697320696e76616c6964000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d797374657279426f783a206172726179206c656e67746820697320696e766160008201527f6c69640000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61460981613c00565b811461461457600080fd5b50565b61462081613c12565b811461462b57600080fd5b50565b61463781613c1e565b811461464257600080fd5b50565b61464e81613c28565b811461465957600080fd5b50565b61466581613c74565b811461467057600080fd5b5056fea2646970667358221220d4a4fb75eec9eab81571a8f1ed649b77f0c9d7cd5f9e252d5986fbd966be0a1864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4d797374657279424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453424f5800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f74616e6b2d6465762d6d657461646174612e6669626572626f782e6e65742f626f7873000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): MysteryBOX
Arg [1] : symbol (string): SBOX
Arg [2] : uri (string): https://tank-dev-metadata.fiberbox.net/boxs

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4d797374657279424f5800000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53424f5800000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [8] : 68747470733a2f2f74616e6b2d6465762d6d657461646174612e666962657262
Arg [9] : 6f782e6e65742f626f7873000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61824:1973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63588:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43093:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44560:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44090:404;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55566:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45450:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7152:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22383:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55234:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22906:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45826:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61501:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55756:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62326:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42787:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62633:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42517:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21838:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6824:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62824:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43262:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5280:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44853:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46048:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43437:360;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22157:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61956:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22641:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62055:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45219:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63588:204;63724:4;63748:36;63772:11;63748:23;:36::i;:::-;63741:43;;63588:204;;;:::o;43093:100::-;43147:13;43180:5;43173:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43093:100;:::o;44560:221::-;44636:7;44664:16;44672:7;44664;:16::i;:::-;44656:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44749:15;:24;44765:7;44749:24;;;;;;;;;;;;;;;;;;;;;44742:31;;44560:221;;;:::o;44090:404::-;44171:13;44187:23;44202:7;44187:14;:23::i;:::-;44171:39;;44235:5;44229:11;;:2;:11;;;;44221:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44315:5;44299:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;44324:44;44348:5;44355:12;:10;:12::i;:::-;44324:23;:44::i;:::-;44299:69;44291:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;44465:21;44474:2;44478:7;44465:8;:21::i;:::-;44160:334;44090:404;;:::o;55566:113::-;55627:7;55654:10;:17;;;;55647:24;;55566:113;:::o;45450:305::-;45611:41;45630:12;:10;:12::i;:::-;45644:7;45611:18;:41::i;:::-;45603:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;45719:28;45729:4;45735:2;45739:7;45719:9;:28::i;:::-;45450:305;;;:::o;7152:123::-;7218:7;7245:6;:12;7252:4;7245:12;;;;;;;;;;;:22;;;7238:29;;7152:123;;;:::o;22383:165::-;22468:30;22484:4;22490:7;22468:15;:30::i;:::-;22509:31;22532:7;22509:12;:18;22522:4;22509:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;22383:165;;:::o;55234:256::-;55331:7;55367:23;55384:5;55367:16;:23::i;:::-;55359:5;:31;55351:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;55456:12;:19;55469:5;55456:19;;;;;;;;;;;;;;;:26;55476:5;55456:26;;;;;;;;;;;;55449:33;;55234:256;;;;:::o;22906:174::-;22994:33;23013:4;23019:7;22994:18;:33::i;:::-;23038:34;23064:7;23038:12;:18;23051:4;23038:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;22906:174;;:::o;45826:151::-;45930:39;45947:4;45953:2;45957:7;45930:39;;;;;;;;;;;;:16;:39::i;:::-;45826:151;;;:::o;61501:245::-;61619:41;61638:12;:10;:12::i;:::-;61652:7;61619:18;:41::i;:::-;61611:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;61724:14;61730:7;61724:5;:14::i;:::-;61501:245;:::o;55756:233::-;55831:7;55867:30;:28;:30::i;:::-;55859:5;:38;55851:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;55964:10;55975:5;55964:17;;;;;;;;:::i;:::-;;;;;;;;;;55957:24;;55756:233;;;:::o;62326:299::-;62399:41;5325:4;62407:18;;62427:12;:10;:12::i;:::-;62399:7;:41::i;:::-;62391:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;62525:1;62511:3;62505:17;:21;62497:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;62577:3;62570:4;:10;;;;;;;;;;;;:::i;:::-;;62598:19;62613:3;62598:19;;;;;;:::i;:::-;;;;;;;;62326:299;:::o;42787:239::-;42859:7;42879:13;42895:7;:16;42903:7;42895:16;;;;;;;;;;;;;;;;;;;;;42879:32;;42947:1;42930:19;;:5;:19;;;;42922:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43013:5;43006:12;;;42787:239;;;:::o;62633:183::-;62693:34;61994:24;62714:12;:10;:12::i;:::-;62693:7;:34::i;:::-;62685:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;62786:22;62792:2;62798:9;;62796:11;;;;;:::i;:::-;;;;;;;62786:5;:22::i;:::-;62633:183;:::o;42517:208::-;42589:7;42634:1;42617:19;;:5;:19;;;;42609:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42701:9;:16;42711:5;42701:16;;;;;;;;;;;;;;;;42694:23;;42517:208;;;:::o;21838:145::-;21920:7;21947:28;21969:5;21947:12;:18;21960:4;21947:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;21940:35;;21838:145;;;;:::o;6824:139::-;6902:4;6926:6;:12;6933:4;6926:12;;;;;;;;;;;:20;;:29;6947:7;6926:29;;;;;;;;;;;;;;;;;;;;;;;;;6919:36;;6824:139;;;;:::o;62824:446::-;62904:34;61994:24;62925:12;:10;:12::i;:::-;62904:7;:34::i;:::-;62896:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;62997:14;63014:8;:15;62997:32;;63059:1;63050:6;:10;63042:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;63113:10;63126:9;;63113:22;;63153:9;63148:88;63172:6;63168:1;:10;63148:88;;;63200:24;63206:8;63215:1;63206:11;;;;;;;;:::i;:::-;;;;;;;;63219:4;;;;:::i;:::-;;;;63200:5;:24::i;:::-;63180:3;;;;;:::i;:::-;;;;63148:88;;;;63260:2;63248:9;:14;;;;62885:385;;62824:446;:::o;43262:104::-;43318:13;43351:7;43344:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43262:104;:::o;5280:49::-;5325:4;5280:49;;;:::o;44853:295::-;44968:12;:10;:12::i;:::-;44956:24;;:8;:24;;;;44948:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45068:8;45023:18;:32;45042:12;:10;:12::i;:::-;45023:32;;;;;;;;;;;;;;;:42;45056:8;45023:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45121:8;45092:48;;45107:12;:10;:12::i;:::-;45092:48;;;45131:8;45092:48;;;;;;:::i;:::-;;;;;;;;44853:295;;:::o;46048:285::-;46180:41;46199:12;:10;:12::i;:::-;46213:7;46180:18;:41::i;:::-;46172:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;46286:39;46300:4;46306:2;46310:7;46319:5;46286:13;:39::i;:::-;46048:285;;;;:::o;43437:360::-;43510:13;43544:16;43552:7;43544;:16::i;:::-;43536:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43625:21;43649:10;:8;:10::i;:::-;43625:34;;43701:1;43683:7;43677:21;:25;:112;;;;;;;;;;;;;;;;;43742:7;43751:18;:7;:16;:18::i;:::-;43725:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43677:112;43670:119;;;43437:360;;;:::o;22157:134::-;22229:7;22256:27;:12;:18;22269:4;22256:18;;;;;;;;;;;:25;:27::i;:::-;22249:34;;22157:134;;;:::o;61956:62::-;61994:24;61956:62;:::o;22641:170::-;22727:31;22744:4;22750:7;22727:16;:31::i;:::-;22769:34;22795:7;22769:12;:18;22782:4;22769:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;22641:170;;:::o;62055:24::-;;;;:::o;45219:164::-;45316:4;45340:18;:25;45359:5;45340:25;;;;;;;;;;;;;;;:35;45366:8;45340:35;;;;;;;;;;;;;;;;;;;;;;;;;45333:42;;45219:164;;;;:::o;9557:112::-;9636:25;9647:4;9653:7;9636:10;:25::i;:::-;9557:112;;:::o;17142:152::-;17212:4;17236:50;17241:3;:10;;17277:5;17261:23;;17253:32;;17236:4;:50::i;:::-;17229:57;;17142:152;;;;:::o;54913:237::-;55015:4;55054:35;55039:50;;;:11;:50;;;;:103;;;;55106:36;55130:11;55106:23;:36::i;:::-;55039:103;55032:110;;54913:237;;;:::o;47800:127::-;47865:4;47917:1;47889:30;;:7;:16;47897:7;47889:16;;;;;;;;;;;;;;;;;;;;;:30;;;;47882:37;;47800:127;;;:::o;725:98::-;778:7;805:10;798:17;;725:98;:::o;51684:174::-;51786:2;51759:15;:24;51775:7;51759:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51842:7;51838:2;51804:46;;51813:23;51828:7;51813:14;:23::i;:::-;51804:46;;;;;;;;;;;;51684:174;;:::o;48094:355::-;48187:4;48212:16;48220:7;48212;:16::i;:::-;48204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48288:13;48304:23;48319:7;48304:14;:23::i;:::-;48288:39;;48357:5;48346:16;;:7;:16;;;:51;;;;48390:7;48366:31;;:20;48378:7;48366:11;:20::i;:::-;:31;;;48346:51;:94;;;;48401:39;48425:5;48432:7;48401:23;:39::i;:::-;48346:94;48338:103;;;48094:355;;;;:::o;51022:544::-;51147:4;51120:31;;:23;51135:7;51120:14;:23::i;:::-;:31;;;51112:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51230:1;51216:16;;:2;:16;;;;51208:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51286:39;51307:4;51313:2;51317:7;51286:20;:39::i;:::-;51390:29;51407:1;51411:7;51390:8;:29::i;:::-;51451:1;51432:9;:15;51442:4;51432:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;51480:1;51463:9;:13;51473:2;51463:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;51511:2;51492:7;:16;51500:7;51492:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51550:7;51546:2;51531:27;;51540:4;51531:27;;;;;;;;;;;;51022:544;;;:::o;7537:232::-;7630:41;7638:18;7651:4;7638:12;:18::i;:::-;7658:12;:10;:12::i;:::-;7630:7;:41::i;:::-;7622:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;7736:25;7747:4;7753:7;7736:10;:25::i;:::-;7537:232;;:::o;8756:218::-;8863:12;:10;:12::i;:::-;8852:23;;:7;:23;;;8844:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;8940:26;8952:4;8958:7;8940:11;:26::i;:::-;8756:218;;:::o;17470:158::-;17543:4;17567:53;17575:3;:10;;17611:5;17595:23;;17587:32;;17567:7;:53::i;:::-;17560:60;;17470:158;;;;:::o;50325:360::-;50385:13;50401:23;50416:7;50401:14;:23::i;:::-;50385:39;;50437:48;50458:5;50473:1;50477:7;50437:20;:48::i;:::-;50526:29;50543:1;50547:7;50526:8;:29::i;:::-;50588:1;50568:9;:16;50578:5;50568:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;50607:7;:16;50615:7;50607:16;;;;;;;;;;;;50600:23;;;;;;;;;;;50669:7;50665:1;50641:36;;50650:5;50641:36;;;;;;;;;;;;50374:311;50325:360;:::o;49714:382::-;49808:1;49794:16;;:2;:16;;;;49786:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49867:16;49875:7;49867;:16::i;:::-;49866:17;49858:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49929:45;49958:1;49962:2;49966:7;49929:20;:45::i;:::-;50004:1;49987:9;:13;49997:2;49987:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;50035:2;50016:7;:16;50024:7;50016:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50080:7;50076:2;50055:33;;50072:1;50055:33;;;;;;;;;;;;49714:382;;:::o;18428:158::-;18502:7;18553:22;18557:3;:10;;18569:5;18553:3;:22::i;:::-;18545:31;;18522:56;;18428:158;;;;:::o;47215:272::-;47329:28;47339:4;47345:2;47349:7;47329:9;:28::i;:::-;47376:48;47399:4;47405:2;47409:7;47418:5;47376:22;:48::i;:::-;47368:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47215:272;;;;:::o;63278:105::-;63338:13;63371:4;63364:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63278:105;:::o;39060:723::-;39116:13;39346:1;39337:5;:10;39333:53;;;39364:10;;;;;;;;;;;;;;;;;;;;;39333:53;39396:12;39411:5;39396:20;;39427:14;39452:78;39467:1;39459:4;:9;39452:78;;39485:8;;;;;:::i;:::-;;;;39516:2;39508:10;;;;;:::i;:::-;;;39452:78;;;39540:19;39572:6;39562:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39540:39;;39590:154;39606:1;39597:5;:10;39590:154;;39634:1;39624:11;;;;;:::i;:::-;;;39701:2;39693:5;:10;;;;:::i;:::-;39680:2;:24;;;;:::i;:::-;39667:39;;39650:6;39657;39650:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39730:2;39721:11;;;;;:::i;:::-;;;39590:154;;;39768:6;39754:21;;;;;39060:723;;;;:::o;17967:117::-;18030:7;18057:19;18065:3;:10;;18057:7;:19::i;:::-;18050:26;;17967:117;;;:::o;8014:235::-;8108:41;8116:18;8129:4;8116:12;:18::i;:::-;8136:12;:10;:12::i;:::-;8108:7;:41::i;:::-;8100:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;8215:26;8227:4;8233:7;8215:11;:26::i;:::-;8014:235;;:::o;10004:229::-;10079:22;10087:4;10093:7;10079;:22::i;:::-;10074:152;;10150:4;10118:6;:12;10125:4;10118:12;;;;;;;;;;;:20;;:29;10139:7;10118:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;10201:12;:10;:12::i;:::-;10174:40;;10192:7;10174:40;;10186:4;10174:40;;;;;;;;;;10074:152;10004:229;;:::o;12206:414::-;12269:4;12291:21;12301:3;12306:5;12291:9;:21::i;:::-;12286:327;;12329:3;:11;;12346:5;12329:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12512:3;:11;;:18;;;;12490:3;:12;;:19;12503:5;12490:19;;;;;;;;;;;:40;;;;12552:4;12545:11;;;;12286:327;12596:5;12589:12;;12206:414;;;;;:::o;42161:292::-;42263:4;42302:25;42287:40;;;:11;:40;;;;:105;;;;42359:33;42344:48;;;:11;:48;;;;42287:105;:158;;;;42409:36;42433:11;42409:23;:36::i;:::-;42287:158;42280:165;;42161:292;;;:::o;63391:189::-;63527:45;63554:4;63560:2;63564:7;63527:26;:45::i;:::-;63391:189;;;:::o;10241:230::-;10316:22;10324:4;10330:7;10316;:22::i;:::-;10312:152;;;10387:5;10355:6;:12;10362:4;10355:12;;;;;;;;;;;:20;;:29;10376:7;10355:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;10439:12;:10;:12::i;:::-;10412:40;;10430:7;10412:40;;10424:4;10412:40;;;;;;;;;;10312:152;10241:230;;:::o;12796:1544::-;12862:4;12980:18;13001:3;:12;;:19;13014:5;13001:19;;;;;;;;;;;;12980:40;;13051:1;13037:10;:15;13033:1300;;13399:21;13436:1;13423:10;:14;;;;:::i;:::-;13399:38;;13452:17;13493:1;13472:3;:11;;:18;;;;:22;;;;:::i;:::-;13452:42;;13739:17;13759:3;:11;;13771:9;13759:22;;;;;;;;:::i;:::-;;;;;;;;;;13739:42;;13905:9;13876:3;:11;;13888:13;13876:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;14024:1;14008:13;:17;;;;:::i;:::-;13982:3;:12;;:23;13995:9;13982:23;;;;;;;;;;;:43;;;;14134:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14229:3;:12;;:19;14242:5;14229:19;;;;;;;;;;;14222:26;;;14272:4;14265:11;;;;;;;;13033:1300;14316:5;14309:12;;;12796:1544;;;;;:::o;15094:204::-;15161:7;15210:5;15189:3;:11;;:18;;;;:26;15181:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15272:3;:11;;15284:5;15272:18;;;;;;;;:::i;:::-;;;;;;;;;;15265:25;;15094:204;;;;:::o;52423:843::-;52544:4;52570:15;:2;:13;;;:15::i;:::-;52566:693;;;52622:2;52606:36;;;52643:12;:10;:12::i;:::-;52657:4;52663:7;52672:5;52606:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52602:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52869:1;52852:6;:13;:18;52848:341;;;52895:60;;;;;;;;;;:::i;:::-;;;;;;;;52848:341;53139:6;53133:13;53124:6;53120:2;53116:15;53109:38;52602:602;52739:45;;;52729:55;;;:6;:55;;;;52722:62;;;;;52566:693;53243:4;53236:11;;52423:843;;;;;;;:::o;14641:109::-;14697:7;14724:3;:11;;:18;;;;14717:25;;14641:109;;;:::o;14426:129::-;14499:4;14546:1;14523:3;:12;;:19;14536:5;14523:19;;;;;;;;;;;;:24;;14516:31;;14426:129;;;;:::o;21012:227::-;21097:4;21136:42;21121:57;;;:11;:57;;;;:110;;;;21195:36;21219:11;21195:23;:36::i;:::-;21121:110;21114:117;;21012:227;;;:::o;56602:555::-;56712:45;56739:4;56745:2;56749:7;56712:26;:45::i;:::-;56790:1;56774:18;;:4;:18;;;56770:187;;;56809:40;56841:7;56809:31;:40::i;:::-;56770:187;;;56879:2;56871:10;;:4;:10;;;56867:90;;56898:47;56931:4;56937:7;56898:32;:47::i;:::-;56867:90;56770:187;56985:1;56971:16;;:2;:16;;;56967:183;;;57004:45;57041:7;57004:36;:45::i;:::-;56967:183;;;57077:4;57071:10;;:2;:10;;;57067:83;;57098:40;57126:2;57130:7;57098:27;:40::i;:::-;57067:83;56967:183;56602:555;;;:::o;31488:422::-;31548:4;31756:12;31867:7;31855:20;31847:28;;31901:1;31894:4;:8;31887:15;;;31488:422;;;:::o;6515:217::-;6600:4;6639:32;6624:47;;;:11;:47;;;;:100;;;;6688:36;6712:11;6688:23;:36::i;:::-;6624:100;6617:107;;6515:217;;;:::o;53879:93::-;;;;:::o;57880:164::-;57984:10;:17;;;;57957:15;:24;57973:7;57957:24;;;;;;;;;;;:44;;;;58012:10;58028:7;58012:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57880:164;:::o;58671:988::-;58937:22;58987:1;58962:22;58979:4;58962:16;:22::i;:::-;:26;;;;:::i;:::-;58937:51;;58999:18;59020:17;:26;59038:7;59020:26;;;;;;;;;;;;58999:47;;59167:14;59153:10;:28;59149:328;;59198:19;59220:12;:18;59233:4;59220:18;;;;;;;;;;;;;;;:34;59239:14;59220:34;;;;;;;;;;;;59198:56;;59304:11;59271:12;:18;59284:4;59271:18;;;;;;;;;;;;;;;:30;59290:10;59271:30;;;;;;;;;;;:44;;;;59421:10;59388:17;:30;59406:11;59388:30;;;;;;;;;;;:43;;;;59183:294;59149:328;59573:17;:26;59591:7;59573:26;;;;;;;;;;;59566:33;;;59617:12;:18;59630:4;59617:18;;;;;;;;;;;;;;;:34;59636:14;59617:34;;;;;;;;;;;59610:41;;;58752:907;;58671:988;;:::o;59954:1079::-;60207:22;60252:1;60232:10;:17;;;;:21;;;;:::i;:::-;60207:46;;60264:18;60285:15;:24;60301:7;60285:24;;;;;;;;;;;;60264:45;;60636:19;60658:10;60669:14;60658:26;;;;;;;;:::i;:::-;;;;;;;;;;60636:48;;60722:11;60697:10;60708;60697:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;60833:10;60802:15;:28;60818:11;60802:28;;;;;;;;;;;:41;;;;60974:15;:24;60990:7;60974:24;;;;;;;;;;;60967:31;;;61009:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60025:1008;;;59954:1079;:::o;57458:221::-;57543:14;57560:20;57577:2;57560:16;:20::i;:::-;57543:37;;57618:7;57591:12;:16;57604:2;57591:16;;;;;;;;;;;;;;;:24;57608:6;57591:24;;;;;;;;;;;:34;;;;57665:6;57636:17;:26;57654:7;57636:26;;;;;;;;;;;:35;;;;57532:147;57458:221;;:::o;2730:157::-;2815:4;2854:25;2839:40;;;:11;:40;;;;2832:47;;2730:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:539::-;6987:6;7036:2;7024:9;7015:7;7011:23;7007:32;7004:119;;;7042:79;;:::i;:::-;7004:119;7190:1;7179:9;7175:17;7162:31;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7347:78;7417:7;7408:6;7397:9;7393:22;7347:78;:::i;:::-;7337:88;;7133:302;6903:539;;;;:::o;7448:329::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:53;7752:7;7743:6;7732:9;7728:22;7707:53;:::i;:::-;7697:63;;7653:117;7448:329;;;;:::o;7783:474::-;7851:6;7859;7908:2;7896:9;7887:7;7883:23;7879:32;7876:119;;;7914:79;;:::i;:::-;7876:119;8034:1;8059:53;8104:7;8095:6;8084:9;8080:22;8059:53;:::i;:::-;8049:63;;8005:117;8161:2;8187:53;8232:7;8223:6;8212:9;8208:22;8187:53;:::i;:::-;8177:63;;8132:118;7783:474;;;;;:::o;8263:::-;8331:6;8339;8388:2;8376:9;8367:7;8363:23;8359:32;8356:119;;;8394:79;;:::i;:::-;8356:119;8514:1;8539:53;8584:7;8575:6;8564:9;8560:22;8539:53;:::i;:::-;8529:63;;8485:117;8641:2;8667:53;8712:7;8703:6;8692:9;8688:22;8667:53;:::i;:::-;8657:63;;8612:118;8263:474;;;;;:::o;8743:327::-;8801:6;8850:2;8838:9;8829:7;8825:23;8821:32;8818:119;;;8856:79;;:::i;:::-;8818:119;8976:1;9001:52;9045:7;9036:6;9025:9;9021:22;9001:52;:::i;:::-;8991:62;;8947:116;8743:327;;;;:::o;9076:349::-;9145:6;9194:2;9182:9;9173:7;9169:23;9165:32;9162:119;;;9200:79;;:::i;:::-;9162:119;9320:1;9345:63;9400:7;9391:6;9380:9;9376:22;9345:63;:::i;:::-;9335:73;;9291:127;9076:349;;;;:::o;9431:509::-;9500:6;9549:2;9537:9;9528:7;9524:23;9520:32;9517:119;;;9555:79;;:::i;:::-;9517:119;9703:1;9692:9;9688:17;9675:31;9733:18;9725:6;9722:30;9719:117;;;9755:79;;:::i;:::-;9719:117;9860:63;9915:7;9906:6;9895:9;9891:22;9860:63;:::i;:::-;9850:73;;9646:287;9431:509;;;;:::o;9946:329::-;10005:6;10054:2;10042:9;10033:7;10029:23;10025:32;10022:119;;;10060:79;;:::i;:::-;10022:119;10180:1;10205:53;10250:7;10241:6;10230:9;10226:22;10205:53;:::i;:::-;10195:63;;10151:117;9946:329;;;;:::o;10281:118::-;10368:24;10386:5;10368:24;:::i;:::-;10363:3;10356:37;10281:118;;:::o;10405:109::-;10486:21;10501:5;10486:21;:::i;:::-;10481:3;10474:34;10405:109;;:::o;10520:118::-;10607:24;10625:5;10607:24;:::i;:::-;10602:3;10595:37;10520:118;;:::o;10644:360::-;10730:3;10758:38;10790:5;10758:38;:::i;:::-;10812:70;10875:6;10870:3;10812:70;:::i;:::-;10805:77;;10891:52;10936:6;10931:3;10924:4;10917:5;10913:16;10891:52;:::i;:::-;10968:29;10990:6;10968:29;:::i;:::-;10963:3;10959:39;10952:46;;10734:270;10644:360;;;;:::o;11010:364::-;11098:3;11126:39;11159:5;11126:39;:::i;:::-;11181:71;11245:6;11240:3;11181:71;:::i;:::-;11174:78;;11261:52;11306:6;11301:3;11294:4;11287:5;11283:16;11261:52;:::i;:::-;11338:29;11360:6;11338:29;:::i;:::-;11333:3;11329:39;11322:46;;11102:272;11010:364;;;;:::o;11380:377::-;11486:3;11514:39;11547:5;11514:39;:::i;:::-;11569:89;11651:6;11646:3;11569:89;:::i;:::-;11562:96;;11667:52;11712:6;11707:3;11700:4;11693:5;11689:16;11667:52;:::i;:::-;11744:6;11739:3;11735:16;11728:23;;11490:267;11380:377;;;;:::o;11763:366::-;11905:3;11926:67;11990:2;11985:3;11926:67;:::i;:::-;11919:74;;12002:93;12091:3;12002:93;:::i;:::-;12120:2;12115:3;12111:12;12104:19;;11763:366;;;:::o;12135:::-;12277:3;12298:67;12362:2;12357:3;12298:67;:::i;:::-;12291:74;;12374:93;12463:3;12374:93;:::i;:::-;12492:2;12487:3;12483:12;12476:19;;12135:366;;;:::o;12507:::-;12649:3;12670:67;12734:2;12729:3;12670:67;:::i;:::-;12663:74;;12746:93;12835:3;12746:93;:::i;:::-;12864:2;12859:3;12855:12;12848:19;;12507:366;;;:::o;12879:::-;13021:3;13042:67;13106:2;13101:3;13042:67;:::i;:::-;13035:74;;13118:93;13207:3;13118:93;:::i;:::-;13236:2;13231:3;13227:12;13220:19;;12879:366;;;:::o;13251:::-;13393:3;13414:67;13478:2;13473:3;13414:67;:::i;:::-;13407:74;;13490:93;13579:3;13490:93;:::i;:::-;13608:2;13603:3;13599:12;13592:19;;13251:366;;;:::o;13623:::-;13765:3;13786:67;13850:2;13845:3;13786:67;:::i;:::-;13779:74;;13862:93;13951:3;13862:93;:::i;:::-;13980:2;13975:3;13971:12;13964:19;;13623:366;;;:::o;13995:::-;14137:3;14158:67;14222:2;14217:3;14158:67;:::i;:::-;14151:74;;14234:93;14323:3;14234:93;:::i;:::-;14352:2;14347:3;14343:12;14336:19;;13995:366;;;:::o;14367:::-;14509:3;14530:67;14594:2;14589:3;14530:67;:::i;:::-;14523:74;;14606:93;14695:3;14606:93;:::i;:::-;14724:2;14719:3;14715:12;14708:19;;14367:366;;;:::o;14739:::-;14881:3;14902:67;14966:2;14961:3;14902:67;:::i;:::-;14895:74;;14978:93;15067:3;14978:93;:::i;:::-;15096:2;15091:3;15087:12;15080:19;;14739:366;;;:::o;15111:::-;15253:3;15274:67;15338:2;15333:3;15274:67;:::i;:::-;15267:74;;15350:93;15439:3;15350:93;:::i;:::-;15468:2;15463:3;15459:12;15452:19;;15111:366;;;:::o;15483:::-;15625:3;15646:67;15710:2;15705:3;15646:67;:::i;:::-;15639:74;;15722:93;15811:3;15722:93;:::i;:::-;15840:2;15835:3;15831:12;15824:19;;15483:366;;;:::o;15855:::-;15997:3;16018:67;16082:2;16077:3;16018:67;:::i;:::-;16011:74;;16094:93;16183:3;16094:93;:::i;:::-;16212:2;16207:3;16203:12;16196:19;;15855:366;;;:::o;16227:::-;16369:3;16390:67;16454:2;16449:3;16390:67;:::i;:::-;16383:74;;16466:93;16555:3;16466:93;:::i;:::-;16584:2;16579:3;16575:12;16568:19;;16227:366;;;:::o;16599:::-;16741:3;16762:67;16826:2;16821:3;16762:67;:::i;:::-;16755:74;;16838:93;16927:3;16838:93;:::i;:::-;16956:2;16951:3;16947:12;16940:19;;16599:366;;;:::o;16971:::-;17113:3;17134:67;17198:2;17193:3;17134:67;:::i;:::-;17127:74;;17210:93;17299:3;17210:93;:::i;:::-;17328:2;17323:3;17319:12;17312:19;;16971:366;;;:::o;17343:::-;17485:3;17506:67;17570:2;17565:3;17506:67;:::i;:::-;17499:74;;17582:93;17671:3;17582:93;:::i;:::-;17700:2;17695:3;17691:12;17684:19;;17343:366;;;:::o;17715:::-;17857:3;17878:67;17942:2;17937:3;17878:67;:::i;:::-;17871:74;;17954:93;18043:3;17954:93;:::i;:::-;18072:2;18067:3;18063:12;18056:19;;17715:366;;;:::o;18087:::-;18229:3;18250:67;18314:2;18309:3;18250:67;:::i;:::-;18243:74;;18326:93;18415:3;18326:93;:::i;:::-;18444:2;18439:3;18435:12;18428:19;;18087:366;;;:::o;18459:::-;18601:3;18622:67;18686:2;18681:3;18622:67;:::i;:::-;18615:74;;18698:93;18787:3;18698:93;:::i;:::-;18816:2;18811:3;18807:12;18800:19;;18459:366;;;:::o;18831:::-;18973:3;18994:67;19058:2;19053:3;18994:67;:::i;:::-;18987:74;;19070:93;19159:3;19070:93;:::i;:::-;19188:2;19183:3;19179:12;19172:19;;18831:366;;;:::o;19203:::-;19345:3;19366:67;19430:2;19425:3;19366:67;:::i;:::-;19359:74;;19442:93;19531:3;19442:93;:::i;:::-;19560:2;19555:3;19551:12;19544:19;;19203:366;;;:::o;19575:::-;19717:3;19738:67;19802:2;19797:3;19738:67;:::i;:::-;19731:74;;19814:93;19903:3;19814:93;:::i;:::-;19932:2;19927:3;19923:12;19916:19;;19575:366;;;:::o;19947:::-;20089:3;20110:67;20174:2;20169:3;20110:67;:::i;:::-;20103:74;;20186:93;20275:3;20186:93;:::i;:::-;20304:2;20299:3;20295:12;20288:19;;19947:366;;;:::o;20319:::-;20461:3;20482:67;20546:2;20541:3;20482:67;:::i;:::-;20475:74;;20558:93;20647:3;20558:93;:::i;:::-;20676:2;20671:3;20667:12;20660:19;;20319:366;;;:::o;20691:::-;20833:3;20854:67;20918:2;20913:3;20854:67;:::i;:::-;20847:74;;20930:93;21019:3;20930:93;:::i;:::-;21048:2;21043:3;21039:12;21032:19;;20691:366;;;:::o;21063:118::-;21150:24;21168:5;21150:24;:::i;:::-;21145:3;21138:37;21063:118;;:::o;21187:435::-;21367:3;21389:95;21480:3;21471:6;21389:95;:::i;:::-;21382:102;;21501:95;21592:3;21583:6;21501:95;:::i;:::-;21494:102;;21613:3;21606:10;;21187:435;;;;;:::o;21628:222::-;21721:4;21759:2;21748:9;21744:18;21736:26;;21772:71;21840:1;21829:9;21825:17;21816:6;21772:71;:::i;:::-;21628:222;;;;:::o;21856:640::-;22051:4;22089:3;22078:9;22074:19;22066:27;;22103:71;22171:1;22160:9;22156:17;22147:6;22103:71;:::i;:::-;22184:72;22252:2;22241:9;22237:18;22228:6;22184:72;:::i;:::-;22266;22334:2;22323:9;22319:18;22310:6;22266:72;:::i;:::-;22385:9;22379:4;22375:20;22370:2;22359:9;22355:18;22348:48;22413:76;22484:4;22475:6;22413:76;:::i;:::-;22405:84;;21856:640;;;;;;;:::o;22502:210::-;22589:4;22627:2;22616:9;22612:18;22604:26;;22640:65;22702:1;22691:9;22687:17;22678:6;22640:65;:::i;:::-;22502:210;;;;:::o;22718:222::-;22811:4;22849:2;22838:9;22834:18;22826:26;;22862:71;22930:1;22919:9;22915:17;22906:6;22862:71;:::i;:::-;22718:222;;;;:::o;22946:313::-;23059:4;23097:2;23086:9;23082:18;23074:26;;23146:9;23140:4;23136:20;23132:1;23121:9;23117:17;23110:47;23174:78;23247:4;23238:6;23174:78;:::i;:::-;23166:86;;22946:313;;;;:::o;23265:419::-;23431:4;23469:2;23458:9;23454:18;23446:26;;23518:9;23512:4;23508:20;23504:1;23493:9;23489:17;23482:47;23546:131;23672:4;23546:131;:::i;:::-;23538:139;;23265:419;;;:::o;23690:::-;23856:4;23894:2;23883:9;23879:18;23871:26;;23943:9;23937:4;23933:20;23929:1;23918:9;23914:17;23907:47;23971:131;24097:4;23971:131;:::i;:::-;23963:139;;23690:419;;;:::o;24115:::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:::-;24706:4;24744:2;24733:9;24729:18;24721:26;;24793:9;24787:4;24783:20;24779:1;24768:9;24764:17;24757:47;24821:131;24947:4;24821:131;:::i;:::-;24813:139;;24540:419;;;:::o;24965:::-;25131:4;25169:2;25158:9;25154:18;25146:26;;25218:9;25212:4;25208:20;25204:1;25193:9;25189:17;25182:47;25246:131;25372:4;25246:131;:::i;:::-;25238:139;;24965:419;;;:::o;25390:::-;25556:4;25594:2;25583:9;25579:18;25571:26;;25643:9;25637:4;25633:20;25629:1;25618:9;25614:17;25607:47;25671:131;25797:4;25671:131;:::i;:::-;25663:139;;25390:419;;;:::o;25815:::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26068:9;26062:4;26058:20;26054:1;26043:9;26039:17;26032:47;26096:131;26222:4;26096:131;:::i;:::-;26088:139;;25815:419;;;:::o;26240:::-;26406:4;26444:2;26433:9;26429:18;26421:26;;26493:9;26487:4;26483:20;26479:1;26468:9;26464:17;26457:47;26521:131;26647:4;26521:131;:::i;:::-;26513:139;;26240:419;;;:::o;26665:::-;26831:4;26869:2;26858:9;26854:18;26846:26;;26918:9;26912:4;26908:20;26904:1;26893:9;26889:17;26882:47;26946:131;27072:4;26946:131;:::i;:::-;26938:139;;26665:419;;;:::o;27090:::-;27256:4;27294:2;27283:9;27279:18;27271:26;;27343:9;27337:4;27333:20;27329:1;27318:9;27314:17;27307:47;27371:131;27497:4;27371:131;:::i;:::-;27363:139;;27090:419;;;:::o;27515:::-;27681:4;27719:2;27708:9;27704:18;27696:26;;27768:9;27762:4;27758:20;27754:1;27743:9;27739:17;27732:47;27796:131;27922:4;27796:131;:::i;:::-;27788:139;;27515:419;;;:::o;27940:::-;28106:4;28144:2;28133:9;28129:18;28121:26;;28193:9;28187:4;28183:20;28179:1;28168:9;28164:17;28157:47;28221:131;28347:4;28221:131;:::i;:::-;28213:139;;27940:419;;;:::o;28365:::-;28531:4;28569:2;28558:9;28554:18;28546:26;;28618:9;28612:4;28608:20;28604:1;28593:9;28589:17;28582:47;28646:131;28772:4;28646:131;:::i;:::-;28638:139;;28365:419;;;:::o;28790:::-;28956:4;28994:2;28983:9;28979:18;28971:26;;29043:9;29037:4;29033:20;29029:1;29018:9;29014:17;29007:47;29071:131;29197:4;29071:131;:::i;:::-;29063:139;;28790:419;;;:::o;29215:::-;29381:4;29419:2;29408:9;29404:18;29396:26;;29468:9;29462:4;29458:20;29454:1;29443:9;29439:17;29432:47;29496:131;29622:4;29496:131;:::i;:::-;29488:139;;29215:419;;;:::o;29640:::-;29806:4;29844:2;29833:9;29829:18;29821:26;;29893:9;29887:4;29883:20;29879:1;29868:9;29864:17;29857:47;29921:131;30047:4;29921:131;:::i;:::-;29913:139;;29640:419;;;:::o;30065:::-;30231:4;30269:2;30258:9;30254:18;30246:26;;30318:9;30312:4;30308:20;30304:1;30293:9;30289:17;30282:47;30346:131;30472:4;30346:131;:::i;:::-;30338:139;;30065:419;;;:::o;30490:::-;30656:4;30694:2;30683:9;30679:18;30671:26;;30743:9;30737:4;30733:20;30729:1;30718:9;30714:17;30707:47;30771:131;30897:4;30771:131;:::i;:::-;30763:139;;30490:419;;;:::o;30915:::-;31081:4;31119:2;31108:9;31104:18;31096:26;;31168:9;31162:4;31158:20;31154:1;31143:9;31139:17;31132:47;31196:131;31322:4;31196:131;:::i;:::-;31188:139;;30915:419;;;:::o;31340:::-;31506:4;31544:2;31533:9;31529:18;31521:26;;31593:9;31587:4;31583:20;31579:1;31568:9;31564:17;31557:47;31621:131;31747:4;31621:131;:::i;:::-;31613:139;;31340:419;;;:::o;31765:::-;31931:4;31969:2;31958:9;31954:18;31946:26;;32018:9;32012:4;32008:20;32004:1;31993:9;31989:17;31982:47;32046:131;32172:4;32046:131;:::i;:::-;32038:139;;31765:419;;;:::o;32190:::-;32356:4;32394:2;32383:9;32379:18;32371:26;;32443:9;32437:4;32433:20;32429:1;32418:9;32414:17;32407:47;32471:131;32597:4;32471:131;:::i;:::-;32463:139;;32190:419;;;:::o;32615:::-;32781:4;32819:2;32808:9;32804:18;32796:26;;32868:9;32862:4;32858:20;32854:1;32843:9;32839:17;32832:47;32896:131;33022:4;32896:131;:::i;:::-;32888:139;;32615:419;;;:::o;33040:::-;33206:4;33244:2;33233:9;33229:18;33221:26;;33293:9;33287:4;33283:20;33279:1;33268:9;33264:17;33257:47;33321:131;33447:4;33321:131;:::i;:::-;33313:139;;33040:419;;;:::o;33465:::-;33631:4;33669:2;33658:9;33654:18;33646:26;;33718:9;33712:4;33708:20;33704:1;33693:9;33689:17;33682:47;33746:131;33872:4;33746:131;:::i;:::-;33738:139;;33465:419;;;:::o;33890:222::-;33983:4;34021:2;34010:9;34006:18;33998:26;;34034:71;34102:1;34091:9;34087:17;34078:6;34034:71;:::i;:::-;33890:222;;;;:::o;34118:129::-;34152:6;34179:20;;:::i;:::-;34169:30;;34208:33;34236:4;34228:6;34208:33;:::i;:::-;34118:129;;;:::o;34253:75::-;34286:6;34319:2;34313:9;34303:19;;34253:75;:::o;34334:311::-;34411:4;34501:18;34493:6;34490:30;34487:56;;;34523:18;;:::i;:::-;34487:56;34573:4;34565:6;34561:17;34553:25;;34633:4;34627;34623:15;34615:23;;34334:311;;;:::o;34651:307::-;34712:4;34802:18;34794:6;34791:30;34788:56;;;34824:18;;:::i;:::-;34788:56;34862:29;34884:6;34862:29;:::i;:::-;34854:37;;34946:4;34940;34936:15;34928:23;;34651:307;;;:::o;34964:308::-;35026:4;35116:18;35108:6;35105:30;35102:56;;;35138:18;;:::i;:::-;35102:56;35176:29;35198:6;35176:29;:::i;:::-;35168:37;;35260:4;35254;35250:15;35242:23;;34964:308;;;:::o;35278:98::-;35329:6;35363:5;35357:12;35347:22;;35278:98;;;:::o;35382:99::-;35434:6;35468:5;35462:12;35452:22;;35382:99;;;:::o;35487:168::-;35570:11;35604:6;35599:3;35592:19;35644:4;35639:3;35635:14;35620:29;;35487:168;;;;:::o;35661:169::-;35745:11;35779:6;35774:3;35767:19;35819:4;35814:3;35810:14;35795:29;;35661:169;;;;:::o;35836:148::-;35938:11;35975:3;35960:18;;35836:148;;;;:::o;35990:305::-;36030:3;36049:20;36067:1;36049:20;:::i;:::-;36044:25;;36083:20;36101:1;36083:20;:::i;:::-;36078:25;;36237:1;36169:66;36165:74;36162:1;36159:81;36156:107;;;36243:18;;:::i;:::-;36156:107;36287:1;36284;36280:9;36273:16;;35990:305;;;;:::o;36301:185::-;36341:1;36358:20;36376:1;36358:20;:::i;:::-;36353:25;;36392:20;36410:1;36392:20;:::i;:::-;36387:25;;36431:1;36421:35;;36436:18;;:::i;:::-;36421:35;36478:1;36475;36471:9;36466:14;;36301:185;;;;:::o;36492:191::-;36532:4;36552:20;36570:1;36552:20;:::i;:::-;36547:25;;36586:20;36604:1;36586:20;:::i;:::-;36581:25;;36625:1;36622;36619:8;36616:34;;;36630:18;;:::i;:::-;36616:34;36675:1;36672;36668:9;36660:17;;36492:191;;;;:::o;36689:96::-;36726:7;36755:24;36773:5;36755:24;:::i;:::-;36744:35;;36689:96;;;:::o;36791:90::-;36825:7;36868:5;36861:13;36854:21;36843:32;;36791:90;;;:::o;36887:77::-;36924:7;36953:5;36942:16;;36887:77;;;:::o;36970:149::-;37006:7;37046:66;37039:5;37035:78;37024:89;;36970:149;;;:::o;37125:126::-;37162:7;37202:42;37195:5;37191:54;37180:65;;37125:126;;;:::o;37257:77::-;37294:7;37323:5;37312:16;;37257:77;;;:::o;37340:154::-;37424:6;37419:3;37414;37401:30;37486:1;37477:6;37472:3;37468:16;37461:27;37340:154;;;:::o;37500:307::-;37568:1;37578:113;37592:6;37589:1;37586:13;37578:113;;;37677:1;37672:3;37668:11;37662:18;37658:1;37653:3;37649:11;37642:39;37614:2;37611:1;37607:10;37602:15;;37578:113;;;37709:6;37706:1;37703:13;37700:101;;;37789:1;37780:6;37775:3;37771:16;37764:27;37700:101;37549:258;37500:307;;;:::o;37813:320::-;37857:6;37894:1;37888:4;37884:12;37874:22;;37941:1;37935:4;37931:12;37962:18;37952:81;;38018:4;38010:6;38006:17;37996:27;;37952:81;38080:2;38072:6;38069:14;38049:18;38046:38;38043:84;;;38099:18;;:::i;:::-;38043:84;37864:269;37813:320;;;:::o;38139:281::-;38222:27;38244:4;38222:27;:::i;:::-;38214:6;38210:40;38352:6;38340:10;38337:22;38316:18;38304:10;38301:34;38298:62;38295:88;;;38363:18;;:::i;:::-;38295:88;38403:10;38399:2;38392:22;38182:238;38139:281;;:::o;38426:233::-;38465:3;38488:24;38506:5;38488:24;:::i;:::-;38479:33;;38534:66;38527:5;38524:77;38521:103;;;38604:18;;:::i;:::-;38521:103;38651:1;38644:5;38640:13;38633:20;;38426:233;;;:::o;38665:176::-;38697:1;38714:20;38732:1;38714:20;:::i;:::-;38709:25;;38748:20;38766:1;38748:20;:::i;:::-;38743:25;;38787:1;38777:35;;38792:18;;:::i;:::-;38777:35;38833:1;38830;38826:9;38821:14;;38665:176;;;;:::o;38847:180::-;38895:77;38892:1;38885:88;38992:4;38989:1;38982:15;39016:4;39013:1;39006:15;39033:180;39081:77;39078:1;39071:88;39178:4;39175:1;39168:15;39202:4;39199:1;39192:15;39219:180;39267:77;39264:1;39257:88;39364:4;39361:1;39354:15;39388:4;39385:1;39378:15;39405:180;39453:77;39450:1;39443:88;39550:4;39547:1;39540:15;39574:4;39571:1;39564:15;39591:180;39639:77;39636:1;39629:88;39736:4;39733:1;39726:15;39760:4;39757:1;39750:15;39777:180;39825:77;39822:1;39815:88;39922:4;39919:1;39912:15;39946:4;39943:1;39936:15;39963:117;40072:1;40069;40062:12;40086:117;40195:1;40192;40185:12;40209:117;40318:1;40315;40308:12;40332:117;40441:1;40438;40431:12;40455:117;40564:1;40561;40554:12;40578:102;40619:6;40670:2;40666:7;40661:2;40654:5;40650:14;40646:28;40636:38;;40578:102;;;:::o;40686:221::-;40826:34;40822:1;40814:6;40810:14;40803:58;40895:4;40890:2;40882:6;40878:15;40871:29;40686:221;:::o;40913:234::-;41053:34;41049:1;41041:6;41037:14;41030:58;41122:17;41117:2;41109:6;41105:15;41098:42;40913:234;:::o;41153:230::-;41293:34;41289:1;41281:6;41277:14;41270:58;41362:13;41357:2;41349:6;41345:15;41338:38;41153:230;:::o;41389:237::-;41529:34;41525:1;41517:6;41513:14;41506:58;41598:20;41593:2;41585:6;41581:15;41574:45;41389:237;:::o;41632:226::-;41772:34;41768:1;41760:6;41756:14;41749:58;41841:9;41836:2;41828:6;41824:15;41817:34;41632:226;:::o;41864:178::-;42004:30;42000:1;41992:6;41988:14;41981:54;41864:178;:::o;42048:223::-;42188:34;42184:1;42176:6;42172:14;42165:58;42257:6;42252:2;42244:6;42240:15;42233:31;42048:223;:::o;42277:175::-;42417:27;42413:1;42405:6;42401:14;42394:51;42277:175;:::o;42458:231::-;42598:34;42594:1;42586:6;42582:14;42575:58;42667:14;42662:2;42654:6;42650:15;42643:39;42458:231;:::o;42695:235::-;42835:34;42831:1;42823:6;42819:14;42812:58;42904:18;42899:2;42891:6;42887:15;42880:43;42695:235;:::o;42936:243::-;43076:34;43072:1;43064:6;43060:14;43053:58;43145:26;43140:2;43132:6;43128:15;43121:51;42936:243;:::o;43185:229::-;43325:34;43321:1;43313:6;43309:14;43302:58;43394:12;43389:2;43381:6;43377:15;43370:37;43185:229;:::o;43420:228::-;43560:34;43556:1;43548:6;43544:14;43537:58;43629:11;43624:2;43616:6;43612:15;43605:36;43420:228;:::o;43654:::-;43794:34;43790:1;43782:6;43778:14;43771:58;43863:11;43858:2;43850:6;43846:15;43839:36;43654:228;:::o;43888:182::-;44028:34;44024:1;44016:6;44012:14;44005:58;43888:182;:::o;44076:176::-;44216:28;44212:1;44204:6;44200:14;44193:52;44076:176;:::o;44258:231::-;44398:34;44394:1;44386:6;44382:14;44375:58;44467:14;44462:2;44454:6;44450:15;44443:39;44258:231;:::o;44495:228::-;44635:34;44631:1;44623:6;44619:14;44612:58;44704:11;44699:2;44691:6;44687:15;44680:36;44495:228;:::o;44729:234::-;44869:34;44865:1;44857:6;44853:14;44846:58;44938:17;44933:2;44925:6;44921:15;44914:42;44729:234;:::o;44969:220::-;45109:34;45105:1;45097:6;45093:14;45086:58;45178:3;45173:2;45165:6;45161:15;45154:28;44969:220;:::o;45195:236::-;45335:34;45331:1;45323:6;45319:14;45312:58;45404:19;45399:2;45391:6;45387:15;45380:44;45195:236;:::o;45437:231::-;45577:34;45573:1;45565:6;45561:14;45554:58;45646:14;45641:2;45633:6;45629:15;45622:39;45437:231;:::o;45674:235::-;45814:34;45810:1;45802:6;45798:14;45791:58;45883:18;45878:2;45870:6;45866:15;45859:43;45674:235;:::o;45915:222::-;46055:34;46051:1;46043:6;46039:14;46032:58;46124:5;46119:2;46111:6;46107:15;46100:30;45915:222;:::o;46143:234::-;46283:34;46279:1;46271:6;46267:14;46260:58;46352:17;46347:2;46339:6;46335:15;46328:42;46143:234;:::o;46383:122::-;46456:24;46474:5;46456:24;:::i;:::-;46449:5;46446:35;46436:63;;46495:1;46492;46485:12;46436:63;46383:122;:::o;46511:116::-;46581:21;46596:5;46581:21;:::i;:::-;46574:5;46571:32;46561:60;;46617:1;46614;46607:12;46561:60;46511:116;:::o;46633:122::-;46706:24;46724:5;46706:24;:::i;:::-;46699:5;46696:35;46686:63;;46745:1;46742;46735:12;46686:63;46633:122;:::o;46761:120::-;46833:23;46850:5;46833:23;:::i;:::-;46826:5;46823:34;46813:62;;46871:1;46868;46861:12;46813:62;46761:120;:::o;46887:122::-;46960:24;46978:5;46960:24;:::i;:::-;46953:5;46950:35;46940:63;;46999:1;46996;46989:12;46940:63;46887:122;:::o

Swarm Source

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