ETH Price: $3,425.78 (-0.43%)
Gas: 2 Gwei

Token

Halls of Olympia (HOO)
 

Overview

Max Total Supply

7,776 HOO

Holders

158

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 HOO
0x93e45360F7e5B0B85d8e65DAE9FA1a6f2aF56819
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HallsofOlympia

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-04
*/

// File: @openzeppelin/contracts/access/IAccessControl.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/access/AccessControl.sol


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

pragma solidity ^0.8.0;





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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 || 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 {
        _setApprovalForAll(_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 || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/hoo.sol



pragma solidity ^0.8.3;




contract HallsofOlympia is ERC721, AccessControl {

  bytes32 public constant MinterRole = keccak256("MinterRole");
  bytes32 public constant BurnerRole = keccak256("BurnerRole");

  uint256 public totalSupply;
  uint256 public nextTokenId = 1;

  address public contractOwner;
  string public contractURIString;
  string public baseUri;

  modifier onlyOwner() {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()));
    _;
  }

  modifier onlyMinter() {
    require(hasRole(MinterRole, _msgSender()), "not a minter");
    _;
  }

  constructor(string memory _name, string memory _symbol, uint256 _totalSupply, string memory _baseUri, string memory _contractURIString, address _contractOwner) 
    ERC721(_name, _symbol) {
      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
      _setupRole(MinterRole, _msgSender());
      _setupRole(BurnerRole, _msgSender());
      _setupRole(DEFAULT_ADMIN_ROLE, _contractOwner);
      baseUri = _baseUri;
      contractOwner = _contractOwner;
      contractURIString = _contractURIString;
      totalSupply = _totalSupply;
  }

  function owner() public view virtual returns (address) {
    return contractOwner;
  }

  function setContractURI(string memory _contractURIString)
    external onlyOwner {
      contractURIString = _contractURIString;
  }

  function setContractOwner(address _contractOwner)
    external onlyOwner {
      contractOwner = _contractOwner;
  }

  function setBaseURI(string memory _baseURIString)
    external onlyOwner {
      baseUri = _baseURIString;
  }

  function mint(address _to, uint256 _tokenId) external onlyMinter {
    _mint(_to, _tokenId);
  }

  function mintNext(address _to, uint256 _amount) external onlyMinter {
    uint256 _nextTokenId = nextTokenId;
    require(_nextTokenId + _amount <= totalSupply + 1, 'All Minted');

    for (uint256 i; i < _amount; i++) {
      _safeMint(_to, _nextTokenId);
      _nextTokenId++;
    }
    nextTokenId = _nextTokenId;
  }

  function burn(uint256 _tokenId) external {
    require(hasRole(BurnerRole, _msgSender()), "Not a Burner");
    _burn(_tokenId);
  }

  function supportsInterface(bytes4 interfaceId) 
    public virtual override(ERC721, AccessControl) view returns (bool) {
        return interfaceId == type(IERC721).interfaceId
            || interfaceId == type(IERC721Metadata).interfaceId
            || interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
  }

  function tokenURI(uint256 id) public view virtual override returns (string memory) {
    return string(abi.encodePacked(baseUri, Strings.toString(id)));
  }

  function uri(uint256 id) public view returns (string memory) {
    return tokenURI(id);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"string","name":"_contractURIString","type":"string"},{"internalType":"address","name":"_contractOwner","type":"address"}],"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":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":"BurnerRole","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MinterRole","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":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIString","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_baseURIString","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractOwner","type":"address"}],"name":"setContractOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURIString","type":"string"}],"name":"setContractURI","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":"id","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"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260016008553480156200001657600080fd5b506040516200252d3803806200252d833981016040819052620000399162000363565b85518690869062000052906000906020850190620001ed565b50805162000068906001906020840190620001ed565b506200007b915060009050335b62000139565b620000a77f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb373362000075565b620000d37f920117bb59a587c683c9ae4f67da92e38bfd039616797474eb266da625e04cae3362000075565b620000e060008262000139565b8251620000f590600b906020860190620001ed565b50600980546001600160a01b0319166001600160a01b03831617905581516200012690600a906020850190620001ed565b5050506007919091555062000485915050565b62000145828262000149565b5050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001455760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001a93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620001fb9062000432565b90600052602060002090601f0160209004810192826200021f57600085556200026a565b82601f106200023a57805160ff19168380011785556200026a565b828001600101855582156200026a579182015b828111156200026a5782518255916020019190600101906200024d565b50620002789291506200027c565b5090565b5b808211156200027857600081556001016200027d565b80516001600160a01b0381168114620002ab57600080fd5b919050565b600082601f830112620002c1578081fd5b81516001600160401b0380821115620002de57620002de6200046f565b604051601f8301601f19908116603f011681019082821181831017156200030957620003096200046f565b8160405283815260209250868385880101111562000325578485fd5b8491505b8382101562000348578582018301518183018401529082019062000329565b838211156200035957848385830101525b9695505050505050565b60008060008060008060c087890312156200037c578182fd5b86516001600160401b038082111562000393578384fd5b620003a18a838b01620002b0565b97506020890151915080821115620003b7578384fd5b620003c58a838b01620002b0565b9650604089015195506060890151915080821115620003e2578384fd5b620003f08a838b01620002b0565b9450608089015191508082111562000406578384fd5b506200041589828a01620002b0565b9250506200042660a0880162000293565b90509295509295509295565b600181811c908216806200044757607f821691505b602082108114156200046957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61209880620004956000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806375794a3c1161011a5780639abc8320116100ad578063b88d4fde1161007c578063b88d4fde14610467578063c87b56dd1461047a578063ce606ee01461048d578063d547741f146104a0578063e985e9c5146104b357610206565b80639abc832014610431578063a217fddf14610439578063a22cb46514610441578063a34d42b81461045457610206565b806391d14854116100e957806391d14854146103f0578063938e3d7b1461040357806395d89b411461041657806397d017b61461041e57610206565b806375794a3c146103a75780637e41d835146103b05780638564080d146103b85780638da5cb5b146103df57610206565b8063248a9ca31161019d57806342842e0e1161016c57806342842e0e1461034857806342966c681461035b57806355f804b31461036e5780636352211e1461038157806370a082311461039457610206565b8063248a9ca3146102ec5780632f2ff15d1461030f57806336568abe1461032257806340c10f191461033557610206565b8063095ea7b3116101d9578063095ea7b3146102a85780630e89341c146102bd57806318160ddd146102d057806323b872dd146102d957610206565b806301ffc9a71461020b57806304d39c9f1461023357806306fdde0314610268578063081812fc1461027d575b600080fd5b61021e610219366004611c27565b6104ef565b60405190151581526020015b60405180910390f35b61025a7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb3781565b60405190815260200161022a565b610270610552565b60405161022a9190611e45565b61029061028b366004611bed565b6105e4565b6040516001600160a01b03909116815260200161022a565b6102bb6102b6366004611bc4565b61067e565b005b6102706102cb366004611bed565b610794565b61025a60075481565b6102bb6102e7366004611ad6565b61079f565b61025a6102fa366004611bed565b60009081526006602052604090206001015490565b6102bb61031d366004611c05565b6107d0565b6102bb610330366004611c05565b6107f7565b6102bb610343366004611bc4565b610875565b6102bb610356366004611ad6565b6108e4565b6102bb610369366004611bed565b6108ff565b6102bb61037c366004611c5f565b610970565b61029061038f366004611bed565b610997565b61025a6103a2366004611a8a565b610a0e565b61025a60085481565b610270610a95565b61025a7f920117bb59a587c683c9ae4f67da92e38bfd039616797474eb266da625e04cae81565b6009546001600160a01b0316610290565b61021e6103fe366004611c05565b610b23565b6102bb610411366004611c5f565b610b4e565b610270610b75565b6102bb61042c366004611bc4565b610b84565b610270610c7c565b61025a600081565b6102bb61044f366004611b8a565b610c89565b6102bb610462366004611a8a565b610c94565b6102bb610475366004611b11565b610cca565b610270610488366004611bed565b610d02565b600954610290906001600160a01b031681565b6102bb6104ae366004611c05565b610d36565b61021e6104c1366004611aa4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506001600160e01b03198216637965db0b60e01b145b8061054a575061054a82610d5c565b90505b919050565b60606000805461056190611fa0565b80601f016020809104026020016040519081016040528092919081815260200182805461058d90611fa0565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068982610997565b9050806001600160a01b0316836001600160a01b031614156106f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610659565b336001600160a01b0382161480610713575061071381336104c1565b6107855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610659565b61078f8383610d81565b505050565b606061054a82610d02565b6107a93382610def565b6107c55760405162461bcd60e51b815260040161065990611eaa565b61078f838383610ee6565b6000828152600660205260409020600101546107ed81335b611086565b61078f83836110ea565b6001600160a01b03811633146108675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610659565b6108718282611170565b5050565b61089f7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb37336103fe565b6108da5760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610659565b61087182826111d7565b61078f83838360405180602001604052806000815250610cca565b6109297f920117bb59a587c683c9ae4f67da92e38bfd039616797474eb266da625e04cae336103fe565b6109645760405162461bcd60e51b815260206004820152600c60248201526b2737ba103090213ab93732b960a11b6044820152606401610659565b61096d81611319565b50565b61097b6000336103fe565b61098457600080fd5b805161087190600b906020840190611964565b6000818152600260205260408120546001600160a01b03168061054a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610659565b60006001600160a01b038216610a795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610659565b506001600160a01b031660009081526003602052604090205490565b600a8054610aa290611fa0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ace90611fa0565b8015610b1b5780601f10610af057610100808354040283529160200191610b1b565b820191906000526020600020905b815481529060010190602001808311610afe57829003601f168201915b505050505081565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610b596000336103fe565b610b6257600080fd5b805161087190600a906020840190611964565b60606001805461056190611fa0565b610bae7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb37336103fe565b610be95760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610659565b600854600754610bfa906001611efb565b610c048383611efb565b1115610c3f5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b6044820152606401610659565b60005b82811015610c7457610c5484836113b4565b81610c5e81611fdb565b9250508080610c6c90611fdb565b915050610c42565b506008555050565b600b8054610aa290611fa0565b6108713383836113ce565b610c9f6000336103fe565b610ca857600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610cd43383610def565b610cf05760405162461bcd60e51b815260040161065990611eaa565b610cfc8484848461149d565b50505050565b6060600b610d0f836114d0565b604051602001610d20929190611ced565b6040516020818303038152906040529050919050565b600082815260066020526040902060010154610d5281336107e8565b61078f8383611170565b60006001600160e01b03198216637965db0b60e01b148061054a575061054a826115eb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db682610997565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610659565b6000610e7383610997565b9050806001600160a01b0316846001600160a01b03161480610eae5750836001600160a01b0316610ea3846105e4565b6001600160a01b0316145b80610ede57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ef982610997565b6001600160a01b031614610f615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610659565b6001600160a01b038216610fc35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610659565b610fce600082610d81565b6001600160a01b0383166000908152600360205260408120805460019290610ff7908490611f46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611025908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110908282610b23565b610871576110a8816001600160a01b0316601461163b565b6110b383602061163b565b6040516020016110c4929190611d93565b60408051601f198184030181529082905262461bcd60e51b825261065991600401611e45565b6110f48282610b23565b6108715760008281526006602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561112c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61117a8282610b23565b156108715760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b03821661122d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610659565b6000818152600260205260409020546001600160a01b0316156112925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610659565b6001600160a01b03821660009081526003602052604081208054600192906112bb908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061132482610997565b9050611331600083610d81565b6001600160a01b038116600090815260036020526040812080546001929061135a908490611f46565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610871828260405180602001604052806000815250611824565b816001600160a01b0316836001600160a01b031614156114305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610659565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114a8848484610ee6565b6114b484848484611857565b610cfc5760405162461bcd60e51b815260040161065990611e58565b6060816114f557506040805180820190915260018152600360fc1b602082015261054d565b8160005b811561151f578061150981611fdb565b91506115189050600a83611f13565b91506114f9565b60008167ffffffffffffffff81111561154857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611572576020820181803683370190505b5090505b8415610ede57611587600183611f46565b9150611594600a86611ff6565b61159f906030611efb565b60f81b8183815181106115c257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115e4600a86611f13565b9450611576565b60006001600160e01b031982166380ac58cd60e01b148061161c57506001600160e01b03198216635b5e139f60e01b145b8061054a57506301ffc9a760e01b6001600160e01b031983161461054a565b6060600061164a836002611f27565b611655906002611efb565b67ffffffffffffffff81111561167b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116a5576020820181803683370190505b509050600360fc1b816000815181106116ce57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061170b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061172f846002611f27565b61173a906001611efb565b90505b60018111156117ce576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061177c57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106117a057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936117c781611f89565b905061173d565b50831561181d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610659565b9392505050565b61182e83836111d7565b61183b6000848484611857565b61078f5760405162461bcd60e51b815260040161065990611e58565b60006001600160a01b0384163b1561195957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061189b903390899088908890600401611e08565b602060405180830381600087803b1580156118b557600080fd5b505af19250505080156118e5575060408051601f3d908101601f191682019092526118e291810190611c43565b60015b61193f573d808015611913576040519150601f19603f3d011682016040523d82523d6000602084013e611918565b606091505b5080516119375760405162461bcd60e51b815260040161065990611e58565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ede565b506001949350505050565b82805461197090611fa0565b90600052602060002090601f01602090048101928261199257600085556119d8565b82601f106119ab57805160ff19168380011785556119d8565b828001600101855582156119d8579182015b828111156119d85782518255916020019190600101906119bd565b506119e49291506119e8565b5090565b5b808211156119e457600081556001016119e9565b600067ffffffffffffffff80841115611a1857611a18612036565b604051601f8501601f19908116603f01168101908282118183101715611a4057611a40612036565b81604052809350858152868686011115611a5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461054d57600080fd5b600060208284031215611a9b578081fd5b61181d82611a73565b60008060408385031215611ab6578081fd5b611abf83611a73565b9150611acd60208401611a73565b90509250929050565b600080600060608486031215611aea578081fd5b611af384611a73565b9250611b0160208501611a73565b9150604084013590509250925092565b60008060008060808587031215611b26578081fd5b611b2f85611a73565b9350611b3d60208601611a73565b925060408501359150606085013567ffffffffffffffff811115611b5f578182fd5b8501601f81018713611b6f578182fd5b611b7e878235602084016119fd565b91505092959194509250565b60008060408385031215611b9c578182fd5b611ba583611a73565b915060208301358015158114611bb9578182fd5b809150509250929050565b60008060408385031215611bd6578182fd5b611bdf83611a73565b946020939093013593505050565b600060208284031215611bfe578081fd5b5035919050565b60008060408385031215611c17578182fd5b82359150611acd60208401611a73565b600060208284031215611c38578081fd5b813561181d8161204c565b600060208284031215611c54578081fd5b815161181d8161204c565b600060208284031215611c70578081fd5b813567ffffffffffffffff811115611c86578182fd5b8201601f81018413611c96578182fd5b610ede848235602084016119fd565b60008151808452611cbd816020860160208601611f5d565b601f01601f19169290920160200192915050565b60008151611ce3818560208601611f5d565b9290920192915050565b600080845482600182811c915080831680611d0957607f831692505b6020808410821415611d2957634e487b7160e01b87526022600452602487fd5b818015611d3d5760018114611d4e57611d7a565b60ff19861689528489019650611d7a565b60008b815260209020885b86811015611d725781548b820152908501908301611d59565b505084890196505b505050505050611d8a8185611cd1565b95945050505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611dcb816017850160208801611f5d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611dfc816028840160208801611f5d565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3b90830184611ca5565b9695505050505050565b60006020825261181d6020830184611ca5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f0e57611f0e61200a565b500190565b600082611f2257611f22612020565b500490565b6000816000190483118215151615611f4157611f4161200a565b500290565b600082821015611f5857611f5861200a565b500390565b60005b83811015611f78578181015183820152602001611f60565b83811115610cfc5750506000910152565b600081611f9857611f9861200a565b506000190190565b600181811c90821680611fb457607f821691505b60208210811415611fd557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fef57611fef61200a565b5060010190565b60008261200557612005612020565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096d57600080fdfea264697066735822122036d549719192417376e5ae3a001fc84f856f54d475798822948ebc9cf7ea14a764736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e60000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000940913c25a23fb6e2778ec4b29110dc9f3f54fb0000000000000000000000000000000000000000000000000000000000000001048616c6c73206f66204f6c796d706961000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484f4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f516d5464677759666a62643261644b446774704c6b323131396e3239446f4a4566706b4e786835537972435a43352f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806375794a3c1161011a5780639abc8320116100ad578063b88d4fde1161007c578063b88d4fde14610467578063c87b56dd1461047a578063ce606ee01461048d578063d547741f146104a0578063e985e9c5146104b357610206565b80639abc832014610431578063a217fddf14610439578063a22cb46514610441578063a34d42b81461045457610206565b806391d14854116100e957806391d14854146103f0578063938e3d7b1461040357806395d89b411461041657806397d017b61461041e57610206565b806375794a3c146103a75780637e41d835146103b05780638564080d146103b85780638da5cb5b146103df57610206565b8063248a9ca31161019d57806342842e0e1161016c57806342842e0e1461034857806342966c681461035b57806355f804b31461036e5780636352211e1461038157806370a082311461039457610206565b8063248a9ca3146102ec5780632f2ff15d1461030f57806336568abe1461032257806340c10f191461033557610206565b8063095ea7b3116101d9578063095ea7b3146102a85780630e89341c146102bd57806318160ddd146102d057806323b872dd146102d957610206565b806301ffc9a71461020b57806304d39c9f1461023357806306fdde0314610268578063081812fc1461027d575b600080fd5b61021e610219366004611c27565b6104ef565b60405190151581526020015b60405180910390f35b61025a7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb3781565b60405190815260200161022a565b610270610552565b60405161022a9190611e45565b61029061028b366004611bed565b6105e4565b6040516001600160a01b03909116815260200161022a565b6102bb6102b6366004611bc4565b61067e565b005b6102706102cb366004611bed565b610794565b61025a60075481565b6102bb6102e7366004611ad6565b61079f565b61025a6102fa366004611bed565b60009081526006602052604090206001015490565b6102bb61031d366004611c05565b6107d0565b6102bb610330366004611c05565b6107f7565b6102bb610343366004611bc4565b610875565b6102bb610356366004611ad6565b6108e4565b6102bb610369366004611bed565b6108ff565b6102bb61037c366004611c5f565b610970565b61029061038f366004611bed565b610997565b61025a6103a2366004611a8a565b610a0e565b61025a60085481565b610270610a95565b61025a7f920117bb59a587c683c9ae4f67da92e38bfd039616797474eb266da625e04cae81565b6009546001600160a01b0316610290565b61021e6103fe366004611c05565b610b23565b6102bb610411366004611c5f565b610b4e565b610270610b75565b6102bb61042c366004611bc4565b610b84565b610270610c7c565b61025a600081565b6102bb61044f366004611b8a565b610c89565b6102bb610462366004611a8a565b610c94565b6102bb610475366004611b11565b610cca565b610270610488366004611bed565b610d02565b600954610290906001600160a01b031681565b6102bb6104ae366004611c05565b610d36565b61021e6104c1366004611aa4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506001600160e01b03198216637965db0b60e01b145b8061054a575061054a82610d5c565b90505b919050565b60606000805461056190611fa0565b80601f016020809104026020016040519081016040528092919081815260200182805461058d90611fa0565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068982610997565b9050806001600160a01b0316836001600160a01b031614156106f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610659565b336001600160a01b0382161480610713575061071381336104c1565b6107855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610659565b61078f8383610d81565b505050565b606061054a82610d02565b6107a93382610def565b6107c55760405162461bcd60e51b815260040161065990611eaa565b61078f838383610ee6565b6000828152600660205260409020600101546107ed81335b611086565b61078f83836110ea565b6001600160a01b03811633146108675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610659565b6108718282611170565b5050565b61089f7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb37336103fe565b6108da5760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610659565b61087182826111d7565b61078f83838360405180602001604052806000815250610cca565b6109297f920117bb59a587c683c9ae4f67da92e38bfd039616797474eb266da625e04cae336103fe565b6109645760405162461bcd60e51b815260206004820152600c60248201526b2737ba103090213ab93732b960a11b6044820152606401610659565b61096d81611319565b50565b61097b6000336103fe565b61098457600080fd5b805161087190600b906020840190611964565b6000818152600260205260408120546001600160a01b03168061054a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610659565b60006001600160a01b038216610a795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610659565b506001600160a01b031660009081526003602052604090205490565b600a8054610aa290611fa0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ace90611fa0565b8015610b1b5780601f10610af057610100808354040283529160200191610b1b565b820191906000526020600020905b815481529060010190602001808311610afe57829003601f168201915b505050505081565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610b596000336103fe565b610b6257600080fd5b805161087190600a906020840190611964565b60606001805461056190611fa0565b610bae7f329f6c9d87b9898860515038c2e06b2011f9cdfd29f4b8fd7a363b6534d0bb37336103fe565b610be95760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610659565b600854600754610bfa906001611efb565b610c048383611efb565b1115610c3f5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b6044820152606401610659565b60005b82811015610c7457610c5484836113b4565b81610c5e81611fdb565b9250508080610c6c90611fdb565b915050610c42565b506008555050565b600b8054610aa290611fa0565b6108713383836113ce565b610c9f6000336103fe565b610ca857600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b610cd43383610def565b610cf05760405162461bcd60e51b815260040161065990611eaa565b610cfc8484848461149d565b50505050565b6060600b610d0f836114d0565b604051602001610d20929190611ced565b6040516020818303038152906040529050919050565b600082815260066020526040902060010154610d5281336107e8565b61078f8383611170565b60006001600160e01b03198216637965db0b60e01b148061054a575061054a826115eb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db682610997565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610659565b6000610e7383610997565b9050806001600160a01b0316846001600160a01b03161480610eae5750836001600160a01b0316610ea3846105e4565b6001600160a01b0316145b80610ede57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ef982610997565b6001600160a01b031614610f615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610659565b6001600160a01b038216610fc35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610659565b610fce600082610d81565b6001600160a01b0383166000908152600360205260408120805460019290610ff7908490611f46565b90915550506001600160a01b0382166000908152600360205260408120805460019290611025908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110908282610b23565b610871576110a8816001600160a01b0316601461163b565b6110b383602061163b565b6040516020016110c4929190611d93565b60408051601f198184030181529082905262461bcd60e51b825261065991600401611e45565b6110f48282610b23565b6108715760008281526006602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561112c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61117a8282610b23565b156108715760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b03821661122d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610659565b6000818152600260205260409020546001600160a01b0316156112925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610659565b6001600160a01b03821660009081526003602052604081208054600192906112bb908490611efb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061132482610997565b9050611331600083610d81565b6001600160a01b038116600090815260036020526040812080546001929061135a908490611f46565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b610871828260405180602001604052806000815250611824565b816001600160a01b0316836001600160a01b031614156114305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610659565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114a8848484610ee6565b6114b484848484611857565b610cfc5760405162461bcd60e51b815260040161065990611e58565b6060816114f557506040805180820190915260018152600360fc1b602082015261054d565b8160005b811561151f578061150981611fdb565b91506115189050600a83611f13565b91506114f9565b60008167ffffffffffffffff81111561154857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611572576020820181803683370190505b5090505b8415610ede57611587600183611f46565b9150611594600a86611ff6565b61159f906030611efb565b60f81b8183815181106115c257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115e4600a86611f13565b9450611576565b60006001600160e01b031982166380ac58cd60e01b148061161c57506001600160e01b03198216635b5e139f60e01b145b8061054a57506301ffc9a760e01b6001600160e01b031983161461054a565b6060600061164a836002611f27565b611655906002611efb565b67ffffffffffffffff81111561167b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116a5576020820181803683370190505b509050600360fc1b816000815181106116ce57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061170b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061172f846002611f27565b61173a906001611efb565b90505b60018111156117ce576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061177c57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106117a057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936117c781611f89565b905061173d565b50831561181d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610659565b9392505050565b61182e83836111d7565b61183b6000848484611857565b61078f5760405162461bcd60e51b815260040161065990611e58565b60006001600160a01b0384163b1561195957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061189b903390899088908890600401611e08565b602060405180830381600087803b1580156118b557600080fd5b505af19250505080156118e5575060408051601f3d908101601f191682019092526118e291810190611c43565b60015b61193f573d808015611913576040519150601f19603f3d011682016040523d82523d6000602084013e611918565b606091505b5080516119375760405162461bcd60e51b815260040161065990611e58565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ede565b506001949350505050565b82805461197090611fa0565b90600052602060002090601f01602090048101928261199257600085556119d8565b82601f106119ab57805160ff19168380011785556119d8565b828001600101855582156119d8579182015b828111156119d85782518255916020019190600101906119bd565b506119e49291506119e8565b5090565b5b808211156119e457600081556001016119e9565b600067ffffffffffffffff80841115611a1857611a18612036565b604051601f8501601f19908116603f01168101908282118183101715611a4057611a40612036565b81604052809350858152868686011115611a5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461054d57600080fd5b600060208284031215611a9b578081fd5b61181d82611a73565b60008060408385031215611ab6578081fd5b611abf83611a73565b9150611acd60208401611a73565b90509250929050565b600080600060608486031215611aea578081fd5b611af384611a73565b9250611b0160208501611a73565b9150604084013590509250925092565b60008060008060808587031215611b26578081fd5b611b2f85611a73565b9350611b3d60208601611a73565b925060408501359150606085013567ffffffffffffffff811115611b5f578182fd5b8501601f81018713611b6f578182fd5b611b7e878235602084016119fd565b91505092959194509250565b60008060408385031215611b9c578182fd5b611ba583611a73565b915060208301358015158114611bb9578182fd5b809150509250929050565b60008060408385031215611bd6578182fd5b611bdf83611a73565b946020939093013593505050565b600060208284031215611bfe578081fd5b5035919050565b60008060408385031215611c17578182fd5b82359150611acd60208401611a73565b600060208284031215611c38578081fd5b813561181d8161204c565b600060208284031215611c54578081fd5b815161181d8161204c565b600060208284031215611c70578081fd5b813567ffffffffffffffff811115611c86578182fd5b8201601f81018413611c96578182fd5b610ede848235602084016119fd565b60008151808452611cbd816020860160208601611f5d565b601f01601f19169290920160200192915050565b60008151611ce3818560208601611f5d565b9290920192915050565b600080845482600182811c915080831680611d0957607f831692505b6020808410821415611d2957634e487b7160e01b87526022600452602487fd5b818015611d3d5760018114611d4e57611d7a565b60ff19861689528489019650611d7a565b60008b815260209020885b86811015611d725781548b820152908501908301611d59565b505084890196505b505050505050611d8a8185611cd1565b95945050505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611dcb816017850160208801611f5d565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611dfc816028840160208801611f5d565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3b90830184611ca5565b9695505050505050565b60006020825261181d6020830184611ca5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f0e57611f0e61200a565b500190565b600082611f2257611f22612020565b500490565b6000816000190483118215151615611f4157611f4161200a565b500290565b600082821015611f5857611f5861200a565b500390565b60005b83811015611f78578181015183820152602001611f60565b83811115610cfc5750506000910152565b600081611f9857611f9861200a565b506000190190565b600181811c90821680611fb457607f821691505b60208210811415611fd557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fef57611fef61200a565b5060010190565b60008261200557612005612020565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096d57600080fdfea264697066735822122036d549719192417376e5ae3a001fc84f856f54d475798822948ebc9cf7ea14a764736f6c63430008030033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e60000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000940913c25a23fb6e2778ec4b29110dc9f3f54fb0000000000000000000000000000000000000000000000000000000000000001048616c6c73206f66204f6c796d706961000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484f4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f516d5464677759666a62643261644b446774704c6b323131396e3239446f4a4566706b4e786835537972435a43352f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Halls of Olympia
Arg [1] : _symbol (string): HOO
Arg [2] : _totalSupply (uint256): 7776
Arg [3] : _baseUri (string): QmTdgwYfjbd2adKDgtpLk2119n29DoJEfpkNxh5SyrCZC5/
Arg [4] : _contractURIString (string):
Arg [5] : _contractOwner (address): 0x940913C25A23FB6e2778Ec4b29110DC9f3F54fb0

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001e60
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 000000000000000000000000940913c25a23fb6e2778ec4b29110dc9f3f54fb0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [7] : 48616c6c73206f66204f6c796d70696100000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 484f4f0000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [11] : 516d5464677759666a62643261644b446774704c6b323131396e3239446f4a45
Arg [12] : 66706b4e786835537972435a43352f0000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44297:2795:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46460:366;;;;;;:::i;:::-;;:::i;:::-;;;7949:14:1;;7942:22;7924:41;;7912:2;7897:18;46460:366:0;;;;;;;;44353:60;;44390:23;44353:60;;;;;8122:25:1;;;8110:2;8095:18;44353:60:0;8077:76:1;32735:100:0;;;:::i;:::-;;;;;;;:::i;34294:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7247:32:1;;;7229:51;;7217:2;7202:18;34294:221:0;7184:102:1;33817:411:0;;;;;;:::i;:::-;;:::i;:::-;;46996:93;;;;;;:::i;:::-;;:::i;44485:26::-;;;;;;35044:339;;;;;;:::i;:::-;;:::i;21173:123::-;;;;;;:::i;:::-;21239:7;21266:12;;;:6;:12;;;;;:22;;;;21173:123;21558:147;;;;;;:::i;:::-;;:::i;22606:218::-;;;;;;:::i;:::-;;:::i;45881:98::-;;;;;;:::i;:::-;;:::i;35454:185::-;;;;;;:::i;:::-;;:::i;46320:134::-;;;;;;:::i;:::-;;:::i;45762:113::-;;;;;;:::i;:::-;;:::i;32429:239::-;;;;;;:::i;:::-;;:::i;32159:208::-;;;;;;:::i;:::-;;:::i;44516:30::-;;;;;;44586:31;;;:::i;44418:60::-;;44455:23;44418:60;;45402:88;45471:13;;-1:-1:-1;;;;;45471:13:0;45402:88;;20058:139;;;;;;:::i;:::-;;:::i;45496:135::-;;;;;;:::i;:::-;;:::i;32904:104::-;;;:::i;45985:329::-;;;;;;:::i;:::-;;:::i;44622:21::-;;;:::i;19149:49::-;;19194:4;19149:49;;34587:155;;;;;;:::i;:::-;;:::i;45637:119::-;;;;;;:::i;:::-;;:::i;35710:328::-;;;;;;:::i;:::-;;:::i;46832:158::-;;;;;;:::i;:::-;;:::i;44553:28::-;;;;;-1:-1:-1;;;;;44553:28:0;;;21950:149;;;;;;:::i;:::-;;:::i;34813:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34934:25:0;;;34910:4;34934:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34813:164;46460:366;46574:4;-1:-1:-1;;;;;;46598:40:0;;-1:-1:-1;;;46598:40:0;;:105;;-1:-1:-1;;;;;;;46655:48:0;;-1:-1:-1;;;46655:48:0;46598:105;:169;;;-1:-1:-1;;;;;;;46720:47:0;;-1:-1:-1;;;46720:47:0;46598:169;:222;;;;46784:36;46808:11;46784:23;:36::i;:::-;46591:229;;46460:366;;;;:::o;32735:100::-;32789:13;32822:5;32815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32735:100;:::o;34294:221::-;34370:7;37637:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37637:16:0;34390:73;;;;-1:-1:-1;;;34390:73:0;;13521:2:1;34390:73:0;;;13503:21:1;13560:2;13540:18;;;13533:30;13599:34;13579:18;;;13572:62;-1:-1:-1;;;13650:18:1;;;13643:42;13702:19;;34390:73:0;;;;;;;;;-1:-1:-1;34483:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34483:24:0;;34294:221::o;33817:411::-;33898:13;33914:23;33929:7;33914:14;:23::i;:::-;33898:39;;33962:5;-1:-1:-1;;;;;33956:11:0;:2;-1:-1:-1;;;;;33956:11:0;;;33948:57;;;;-1:-1:-1;;;33948:57:0;;14344:2:1;33948:57:0;;;14326:21:1;14383:2;14363:18;;;14356:30;14422:34;14402:18;;;14395:62;-1:-1:-1;;;14473:18:1;;;14466:31;14514:19;;33948:57:0;14316:223:1;33948:57:0;5924:10;-1:-1:-1;;;;;34040:21:0;;;;:62;;-1:-1:-1;34065:37:0;34082:5;5924:10;34089:12;5844:98;34065:37;34018:168;;;;-1:-1:-1;;;34018:168:0;;11575:2:1;34018:168:0;;;11557:21:1;11614:2;11594:18;;;11587:30;11653:34;11633:18;;;11626:62;11724:26;11704:18;;;11697:54;11768:19;;34018:168:0;11547:246:1;34018:168:0;34199:21;34208:2;34212:7;34199:8;:21::i;:::-;33817:411;;;:::o;46996:93::-;47042:13;47071:12;47080:2;47071:8;:12::i;35044:339::-;35239:41;5924:10;35272:7;35239:18;:41::i;:::-;35231:103;;;;-1:-1:-1;;;35231:103:0;;;;;;;:::i;:::-;35347:28;35357:4;35363:2;35367:7;35347:9;:28::i;21558:147::-;21239:7;21266:12;;;:6;:12;;;;;:22;;;19640:30;19651:4;5924:10;19657:12;19640:10;:30::i;:::-;21672:25:::1;21683:4;21689:7;21672:10;:25::i;22606:218::-:0;-1:-1:-1;;;;;22702:23:0;;5924:10;22702:23;22694:83;;;;-1:-1:-1;;;22694:83:0;;15164:2:1;22694:83:0;;;15146:21:1;15203:2;15183:18;;;15176:30;15242:34;15222:18;;;15215:62;-1:-1:-1;;;15293:18:1;;;15286:45;15348:19;;22694:83:0;15136:237:1;22694:83:0;22790:26;22802:4;22808:7;22790:11;:26::i;:::-;22606:218;;:::o;45881:98::-;44785:33;44390:23;5924:10;44805:12;5844:98;44785:33;44777:58;;;;-1:-1:-1;;;44777:58:0;;10062:2:1;44777:58:0;;;10044:21:1;10101:2;10081:18;;;10074:30;-1:-1:-1;;;10120:18:1;;;10113:42;10172:18;;44777:58:0;10034:162:1;44777:58:0;45953:20:::1;45959:3;45964:8;45953:5;:20::i;35454:185::-:0;35592:39;35609:4;35615:2;35619:7;35592:39;;;;;;;;;;;;:16;:39::i;46320:134::-;46376:33;44455:23;5924:10;46396:12;5844:98;46376:33;46368:58;;;;-1:-1:-1;;;46368:58:0;;8945:2:1;46368:58:0;;;8927:21:1;8984:2;8964:18;;;8957:30;-1:-1:-1;;;9003:18:1;;;8996:42;9055:18;;46368:58:0;8917:162:1;46368:58:0;46433:15;46439:8;46433:5;:15::i;:::-;46320:134;:::o;45762:113::-;44686:41;19194:4;5924:10;44714:12;5844:98;44686:41;44678:50;;;;;;45845:24;;::::1;::::0;:7:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;32429:239::-:0;32501:7;32537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32537:16:0;32572:19;32564:73;;;;-1:-1:-1;;;32564:73:0;;12411:2:1;32564:73:0;;;12393:21:1;12450:2;12430:18;;;12423:30;12489:34;12469:18;;;12462:62;-1:-1:-1;;;12540:18:1;;;12533:39;12589:19;;32564:73:0;12383:231:1;32159:208:0;32231:7;-1:-1:-1;;;;;32259:19:0;;32251:74;;;;-1:-1:-1;;;32251:74:0;;12000:2:1;32251:74:0;;;11982:21:1;12039:2;12019:18;;;12012:30;12078:34;12058:18;;;12051:62;-1:-1:-1;;;12129:18:1;;;12122:40;12179:19;;32251:74:0;11972:232:1;32251:74:0;-1:-1:-1;;;;;;32343:16:0;;;;;:9;:16;;;;;;;32159:208::o;44586:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20058:139::-;20136:4;20160:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;20160:29:0;;;;;;;;;;;;;;;20058:139::o;45496:135::-;44686:41;19194:4;5924:10;44714:12;5844:98;44686:41;44678:50;;;;;;45587:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;32904:104::-:0;32960:13;32993:7;32986:14;;;;;:::i;45985:329::-;44785:33;44390:23;5924:10;44805:12;5844:98;44785:33;44777:58;;;;-1:-1:-1;;;44777:58:0;;10062:2:1;44777:58:0;;;10044:21:1;10101:2;10081:18;;;10074:30;-1:-1:-1;;;10120:18:1;;;10113:42;10172:18;;44777:58:0;10034:162:1;44777:58:0;46083:11:::1;::::0;46135::::1;::::0;:15:::1;::::0;46149:1:::1;46135:15;:::i;:::-;46109:22;46124:7:::0;46109:12;:22:::1;:::i;:::-;:41;;46101:64;;;::::0;-1:-1:-1;;;46101:64:0;;13182:2:1;46101:64:0::1;::::0;::::1;13164:21:1::0;13221:2;13201:18;;;13194:30;-1:-1:-1;;;13240:18:1;;;13233:40;13290:18;;46101:64:0::1;13154:160:1::0;46101:64:0::1;46179:9;46174:102;46194:7;46190:1;:11;46174:102;;;46217:28;46227:3;46232:12;46217:9;:28::i;:::-;46254:14:::0;::::1;::::0;::::1;:::i;:::-;;;;46203:3;;;;;:::i;:::-;;;;46174:102;;;-1:-1:-1::0;46282:11:0::1;:26:::0;-1:-1:-1;;45985:329:0:o;44622:21::-;;;;;;;:::i;34587:155::-;34682:52;5924:10;34715:8;34725;34682:18;:52::i;45637:119::-;44686:41;19194:4;5924:10;44714:12;5844:98;44686:41;44678:50;;;;;;45720:13:::1;:30:::0;;-1:-1:-1;;;;;;45720:30:0::1;-1:-1:-1::0;;;;;45720:30:0;;;::::1;::::0;;;::::1;::::0;;45637:119::o;35710:328::-;35885:41;5924:10;35918:7;35885:18;:41::i;:::-;35877:103;;;;-1:-1:-1;;;35877:103:0;;;;;;;:::i;:::-;35991:39;36005:4;36011:2;36015:7;36024:5;35991:13;:39::i;:::-;35710:328;;;;:::o;46832:158::-;46900:13;46953:7;46962:20;46979:2;46962:16;:20::i;:::-;46936:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46922:62;;46832:158;;;:::o;21950:149::-;21239:7;21266:12;;;:6;:12;;;;;:22;;;19640:30;19651:4;5924:10;19657:12;5844:98;19640:30;22065:26:::1;22077:4;22083:7;22065:11;:26::i;19762:204::-:0;19847:4;-1:-1:-1;;;;;;19871:47:0;;-1:-1:-1;;;19871:47:0;;:87;;;19922:36;19946:11;19922:23;:36::i;41530:174::-;41605:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41605:29:0;-1:-1:-1;;;;;41605:29:0;;;;;;;;:24;;41659:23;41605:24;41659:14;:23::i;:::-;-1:-1:-1;;;;;41650:46:0;;;;;;;;;;;41530:174;;:::o;37842:348::-;37935:4;37637:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37637:16:0;37952:73;;;;-1:-1:-1;;;37952:73:0;;11162:2:1;37952:73:0;;;11144:21:1;11201:2;11181:18;;;11174:30;11240:34;11220:18;;;11213:62;-1:-1:-1;;;11291:18:1;;;11284:42;11343:19;;37952:73:0;11134:234:1;37952:73:0;38036:13;38052:23;38067:7;38052:14;:23::i;:::-;38036:39;;38105:5;-1:-1:-1;;;;;38094:16:0;:7;-1:-1:-1;;;;;38094:16:0;;:51;;;;38138:7;-1:-1:-1;;;;;38114:31:0;:20;38126:7;38114:11;:20::i;:::-;-1:-1:-1;;;;;38114:31:0;;38094:51;:87;;;-1:-1:-1;;;;;;34934:25:0;;;34910:4;34934:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38149:32;38086:96;37842:348;-1:-1:-1;;;;37842:348:0:o;40834:578::-;40993:4;-1:-1:-1;;;;;40966:31:0;:23;40981:7;40966:14;:23::i;:::-;-1:-1:-1;;;;;40966:31:0;;40958:85;;;;-1:-1:-1;;;40958:85:0;;13934:2:1;40958:85:0;;;13916:21:1;13973:2;13953:18;;;13946:30;14012:34;13992:18;;;13985:62;-1:-1:-1;;;14063:18:1;;;14056:39;14112:19;;40958:85:0;13906:231:1;40958:85:0;-1:-1:-1;;;;;41062:16:0;;41054:65;;;;-1:-1:-1;;;41054:65:0;;10403:2:1;41054:65:0;;;10385:21:1;10442:2;10422:18;;;10415:30;10481:34;10461:18;;;10454:62;-1:-1:-1;;;10532:18:1;;;10525:34;10576:19;;41054:65:0;10375:226:1;41054:65:0;41236:29;41253:1;41257:7;41236:8;:29::i;:::-;-1:-1:-1;;;;;41278:15:0;;;;;;:9;:15;;;;;:20;;41297:1;;41278:15;:20;;41297:1;;41278:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41309:13:0;;;;;;:9;:13;;;;;:18;;41326:1;;41309:13;:18;;41326:1;;41309:18;:::i;:::-;;;;-1:-1:-1;;41338:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41338:21:0;-1:-1:-1;;;;;41338:21:0;;;;;;;;;41377:27;;41338:16;;41377:27;;;;;;;40834:578;;;:::o;20487:497::-;20568:22;20576:4;20582:7;20568;:22::i;:::-;20563:414;;20756:41;20784:7;-1:-1:-1;;;;;20756:41:0;20794:2;20756:19;:41::i;:::-;20870:38;20898:4;20905:2;20870:19;:38::i;:::-;20661:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;20661:270:0;;;;;;;;;;-1:-1:-1;;;20607:358:0;;;;;;;:::i;24107:238::-;24191:22;24199:4;24205:7;24191;:22::i;:::-;24186:152;;24230:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24230:29:0;;;;;;;;;:36;;-1:-1:-1;;24230:36:0;24262:4;24230:36;;;24313:12;5924:10;5844:98;;24313:12;-1:-1:-1;;;;;24286:40:0;24304:7;-1:-1:-1;;;;;24286:40:0;24298:4;24286:40;;;;;;;;;;24107:238;;:::o;24477:239::-;24561:22;24569:4;24575:7;24561;:22::i;:::-;24557:152;;;24632:5;24600:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24600:29:0;;;;;;;;;;:37;;-1:-1:-1;;24600:37:0;;;24657:40;5924:10;;24600:12;;24657:40;;24632:5;24657:40;24477:239;;:::o;39526:382::-;-1:-1:-1;;;;;39606:16:0;;39598:61;;;;-1:-1:-1;;;39598:61:0;;12821:2:1;39598:61:0;;;12803:21:1;;;12840:18;;;12833:30;12899:34;12879:18;;;12872:62;12951:18;;39598:61:0;12793:182:1;39598:61:0;37613:4;37637:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37637:16:0;:30;39670:58;;;;-1:-1:-1;;;39670:58:0;;9705:2:1;39670:58:0;;;9687:21:1;9744:2;9724:18;;;9717:30;9783;9763:18;;;9756:58;9831:18;;39670:58:0;9677:178:1;39670:58:0;-1:-1:-1;;;;;39799:13:0;;;;;;:9;:13;;;;;:18;;39816:1;;39799:13;:18;;39816:1;;39799:18;:::i;:::-;;;;-1:-1:-1;;39828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39828:21:0;-1:-1:-1;;;;;39828:21:0;;;;;;;;39867:33;;39828:16;;;39867:33;;39828:16;;39867:33;39526:382;;:::o;40137:360::-;40197:13;40213:23;40228:7;40213:14;:23::i;:::-;40197:39;;40338:29;40355:1;40359:7;40338:8;:29::i;:::-;-1:-1:-1;;;;;40380:16:0;;;;;;:9;:16;;;;;:21;;40400:1;;40380:16;:21;;40400:1;;40380:21;:::i;:::-;;;;-1:-1:-1;;40419:16:0;;;;:7;:16;;;;;;40412:23;;-1:-1:-1;;;;;;40412:23:0;;;40453:36;40427:7;;40419:16;-1:-1:-1;;;;;40453:36:0;;;;;40419:16;;40453:36;40137:360;;:::o;38532:110::-;38608:26;38618:2;38622:7;38608:26;;;;;;;;;;;;:9;:26::i;41846:315::-;42001:8;-1:-1:-1;;;;;41992:17:0;:5;-1:-1:-1;;;;;41992:17:0;;;41984:55;;;;-1:-1:-1;;;41984:55:0;;10808:2:1;41984:55:0;;;10790:21:1;10847:2;10827:18;;;10820:30;10886:27;10866:18;;;10859:55;10931:18;;41984:55:0;10780:175:1;41984:55:0;-1:-1:-1;;;;;42050:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42050:46:0;;;;;;;;;;42112:41;;7924::1;;;42112::0;;7897:18:1;42112:41:0;;;;;;;41846:315;;;:::o;36920:::-;37077:28;37087:4;37093:2;37097:7;37077:9;:28::i;:::-;37124:48;37147:4;37153:2;37157:7;37166:5;37124:22;:48::i;:::-;37116:111;;;;-1:-1:-1;;;37116:111:0;;;;;;;:::i;3406:723::-;3462:13;3683:10;3679:53;;-1:-1:-1;3710:10:0;;;;;;;;;;;;-1:-1:-1;;;3710:10:0;;;;;;3679:53;3757:5;3742:12;3798:78;3805:9;;3798:78;;3831:8;;;;:::i;:::-;;-1:-1:-1;3854:10:0;;-1:-1:-1;3862:2:0;3854:10;;:::i;:::-;;;3798:78;;;3886:19;3918:6;3908:17;;;;;;-1:-1:-1;;;3908:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3908:17:0;;3886:39;;3936:154;3943:10;;3936:154;;3970:11;3980:1;3970:11;;:::i;:::-;;-1:-1:-1;4039:10:0;4047:2;4039:5;:10;:::i;:::-;4026:24;;:2;:24;:::i;:::-;4013:39;;3996:6;4003;3996:14;;;;;;-1:-1:-1;;;3996:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3996:56:0;;;;;;;;-1:-1:-1;4067:11:0;4076:2;4067:11;;:::i;:::-;;;3936:154;;31790:305;31892:4;-1:-1:-1;;;;;;31929:40:0;;-1:-1:-1;;;31929:40:0;;:105;;-1:-1:-1;;;;;;;31986:48:0;;-1:-1:-1;;;31986:48:0;31929:105;:158;;;-1:-1:-1;;;;;;;;;;17131:40:0;;;32051:36;17022:157;4707:451;4782:13;4808:19;4840:10;4844:6;4840:1;:10;:::i;:::-;:14;;4853:1;4840:14;:::i;:::-;4830:25;;;;;;-1:-1:-1;;;4830:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4830:25:0;;4808:47;;-1:-1:-1;;;4866:6:0;4873:1;4866:9;;;;;;-1:-1:-1;;;4866:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;4866:15:0;;;;;;;;;-1:-1:-1;;;4892:6:0;4899:1;4892:9;;;;;;-1:-1:-1;;;4892:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;4892:15:0;;;;;;;;-1:-1:-1;4923:9:0;4935:10;4939:6;4935:1;:10;:::i;:::-;:14;;4948:1;4935:14;:::i;:::-;4923:26;;4918:135;4955:1;4951;:5;4918:135;;;-1:-1:-1;;;5003:5:0;5011:3;5003:11;4990:25;;;;;-1:-1:-1;;;4990:25:0;;;;;;;;;;;;4978:6;4985:1;4978:9;;;;;;-1:-1:-1;;;4978:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;4978:37:0;;;;;;;;-1:-1:-1;5040:1:0;5030:11;;;;;4958:3;;;:::i;:::-;;;4918:135;;;-1:-1:-1;5071:10:0;;5063:55;;;;-1:-1:-1;;;5063:55:0;;8584:2:1;5063:55:0;;;8566:21:1;;;8603:18;;;8596:30;8662:34;8642:18;;;8635:62;8714:18;;5063:55:0;8556:182:1;5063:55:0;5143:6;4707:451;-1:-1:-1;;;4707:451:0:o;38869:321::-;38999:18;39005:2;39009:7;38999:5;:18::i;:::-;39050:54;39081:1;39085:2;39089:7;39098:5;39050:22;:54::i;:::-;39028:154;;;;-1:-1:-1;;;39028:154:0;;;;;;;:::i;42726:799::-;42881:4;-1:-1:-1;;;;;42902:13:0;;7201:20;7249:8;42898:620;;42938:72;;-1:-1:-1;;;42938:72:0;;-1:-1:-1;;;;;42938:36:0;;;;;:72;;5924:10;;42989:4;;42995:7;;43004:5;;42938:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42938:72:0;;;;;;;;-1:-1:-1;;42938:72:0;;;;;;;;;;;;:::i;:::-;;;42934:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43180:13:0;;43176:272;;43223:60;;-1:-1:-1;;;43223:60:0;;;;;;;:::i;43176:272::-;43398:6;43392:13;43383:6;43379:2;43375:15;43368:38;42934:529;-1:-1:-1;;;;;;43061:51:0;-1:-1:-1;;;43061:51:0;;-1:-1:-1;43054:58:0;;42898:620;-1:-1:-1;43502:4:0;42726:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:190::-;;3101:2;3089:9;3080:7;3076:23;3072:32;3069:2;;;3122:6;3114;3107:22;3069:2;-1:-1:-1;3150:23:1;;3059:120;-1:-1:-1;3059:120:1:o;3184:264::-;;;3313:2;3301:9;3292:7;3288:23;3284:32;3281:2;;;3334:6;3326;3319:22;3281:2;3375:9;3362:23;3352:33;;3404:38;3438:2;3427:9;3423:18;3404:38;:::i;3453:255::-;;3564:2;3552:9;3543:7;3539:23;3535:32;3532:2;;;3585:6;3577;3570:22;3532:2;3629:9;3616:23;3648:30;3672:5;3648:30;:::i;3713:259::-;;3835:2;3823:9;3814:7;3810:23;3806:32;3803:2;;;3856:6;3848;3841:22;3803:2;3893:9;3887:16;3912:30;3936:5;3912:30;:::i;3977:480::-;;4099:2;4087:9;4078:7;4074:23;4070:32;4067:2;;;4120:6;4112;4105:22;4067:2;4165:9;4152:23;4198:18;4190:6;4187:30;4184:2;;;4235:6;4227;4220:22;4184:2;4263:22;;4316:4;4308:13;;4304:27;-1:-1:-1;4294:2:1;;4350:6;4342;4335:22;4294:2;4378:73;4443:7;4438:2;4425:16;4420:2;4416;4412:11;4378:73;:::i;4657:257::-;;4736:5;4730:12;4763:6;4758:3;4751:19;4779:63;4835:6;4828:4;4823:3;4819:14;4812:4;4805:5;4801:16;4779:63;:::i;:::-;4896:2;4875:15;-1:-1:-1;;4871:29:1;4862:39;;;;4903:4;4858:50;;4706:208;-1:-1:-1;;4706:208:1:o;4919:185::-;;4999:5;4993:12;5014:52;5059:6;5054:3;5047:4;5040:5;5036:16;5014:52;:::i;:::-;5082:16;;;;;4969:135;-1:-1:-1;;4969:135:1:o;5109:1178::-;;5314:3;5349:6;5343:13;5379:3;5401:1;5429:9;5425:2;5421:18;5411:28;;5489:2;5478:9;5474:18;5511;5501:2;;5555:4;5547:6;5543:17;5533:27;;5501:2;5581;5629;5621:6;5618:14;5598:18;5595:38;5592:2;;;-1:-1:-1;;;5656:33:1;;5712:4;5709:1;5702:15;5742:4;5663:3;5730:17;5592:2;5773:18;5800:104;;;;5918:1;5913:322;;;;5766:469;;5800:104;-1:-1:-1;;5833:24:1;;5821:37;;5878:16;;;;-1:-1:-1;5800:104:1;;5913:322;15560:127;15626:17;;;15676:4;15660:21;;6008:3;6024:165;6038:6;6035:1;6032:13;6024:165;;;6116:14;;6103:11;;;6096:35;6159:16;;;;6053:10;;6024:165;;;6028:3;;6218:6;6213:3;6209:16;6202:23;;5766:469;;;;;;;6251:30;6277:3;6269:6;6251:30;:::i;:::-;6244:37;5293:994;-1:-1:-1;;;;;5293:994:1:o;6292:786::-;;6703:25;6698:3;6691:38;6758:6;6752:13;6774:62;6829:6;6824:2;6819:3;6815:12;6808:4;6800:6;6796:17;6774:62;:::i;:::-;-1:-1:-1;;;6895:2:1;6855:16;;;6887:11;;;6880:40;6945:13;;6967:63;6945:13;7016:2;7008:11;;7001:4;6989:17;;6967:63;:::i;:::-;7050:17;7069:2;7046:26;;6681:397;-1:-1:-1;;;;6681:397:1:o;7291:488::-;-1:-1:-1;;;;;7560:15:1;;;7542:34;;7612:15;;7607:2;7592:18;;7585:43;7659:2;7644:18;;7637:34;;;7707:3;7702:2;7687:18;;7680:31;;;7291:488;;7728:45;;7753:19;;7745:6;7728:45;:::i;:::-;7720:53;7494:285;-1:-1:-1;;;;;;7494:285:1:o;8158:219::-;;8307:2;8296:9;8289:21;8327:44;8367:2;8356:9;8352:18;8344:6;8327:44;:::i;9084:414::-;9286:2;9268:21;;;9325:2;9305:18;;;9298:30;9364:34;9359:2;9344:18;;9337:62;-1:-1:-1;;;9430:2:1;9415:18;;9408:48;9488:3;9473:19;;9258:240::o;14544:413::-;14746:2;14728:21;;;14785:2;14765:18;;;14758:30;14824:34;14819:2;14804:18;;14797:62;-1:-1:-1;;;14890:2:1;14875:18;;14868:47;14947:3;14932:19;;14718:239::o;15692:128::-;;15763:1;15759:6;15756:1;15753:13;15750:2;;;15769:18;;:::i;:::-;-1:-1:-1;15805:9:1;;15740:80::o;15825:120::-;;15891:1;15881:2;;15896:18;;:::i;:::-;-1:-1:-1;15930:9:1;;15871:74::o;15950:168::-;;16056:1;16052;16048:6;16044:14;16041:1;16038:21;16033:1;16026:9;16019:17;16015:45;16012:2;;;16063:18;;:::i;:::-;-1:-1:-1;16103:9:1;;16002:116::o;16123:125::-;;16191:1;16188;16185:8;16182:2;;;16196:18;;:::i;:::-;-1:-1:-1;16233:9:1;;16172:76::o;16253:258::-;16325:1;16335:113;16349:6;16346:1;16343:13;16335:113;;;16425:11;;;16419:18;16406:11;;;16399:39;16371:2;16364:10;16335:113;;;16466:6;16463:1;16460:13;16457:2;;;-1:-1:-1;;16501:1:1;16483:16;;16476:27;16306:205::o;16516:136::-;;16583:5;16573:2;;16592:18;;:::i;:::-;-1:-1:-1;;;16628:18:1;;16563:89::o;16657:380::-;16736:1;16732:12;;;;16779;;;16800:2;;16854:4;16846:6;16842:17;16832:27;;16800:2;16907;16899:6;16896:14;16876:18;16873:38;16870:2;;;16953:10;16948:3;16944:20;16941:1;16934:31;16988:4;16985:1;16978:15;17016:4;17013:1;17006:15;16870:2;;16712:325;;;:::o;17042:135::-;;-1:-1:-1;;17102:17:1;;17099:2;;;17122:18;;:::i;:::-;-1:-1:-1;17169:1:1;17158:13;;17089:88::o;17182:112::-;;17240:1;17230:2;;17245:18;;:::i;:::-;-1:-1:-1;17279:9:1;;17220:74::o;17299:127::-;17360:10;17355:3;17351:20;17348:1;17341:31;17391:4;17388:1;17381:15;17415:4;17412:1;17405:15;17431:127;17492:10;17487:3;17483:20;17480:1;17473:31;17523:4;17520:1;17513:15;17547:4;17544:1;17537:15;17563:127;17624:10;17619:3;17615:20;17612:1;17605:31;17655:4;17652:1;17645:15;17679:4;17676:1;17669:15;17695:131;-1:-1:-1;;;;;;17769:32:1;;17759:43;;17749:2;;17816:1;17813;17806:12

Swarm Source

ipfs://36d549719192417376e5ae3a001fc84f856f54d475798822948ebc9cf7ea14a7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.