ETH Price: $3,102.17 (+1.10%)
Gas: 12 Gwei

DRAGONSAGAEGGS (SAGAEGGS)
 

Overview

TokenID

10

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
DragonSagaConsumables

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MPL-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-02
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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



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



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



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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/6_dragon_egg.sol

pragma solidity >= 0.8.0;




/*
                          ,     \    /      ,
                         / \    )\__/(     / \
                        /   \  (_\  /_)   /   \
     __________________/_____\__\@  @/___/_____\_________________
     |                          |\../|                          |
     |                           \VV/                           |
     |                                                          |
     |                   DRAGON SAGA CONSUMABLES                |
     |                                                          |
     |                                                          |
     |__________________________________________________________|
                   |    /\ /      \\       \ /\    |
                   |  /   V        ))       V   \  |
                   |/     `       //        '     \|
                   `              V                '
*/
contract DragonSagaConsumables is ERC721, ERC721Enumerable, Ownable {

    // tokenURI for metadata
    string private _tokenURI = "";
    address public a = 0x2292465c73a502398cd34Fd852D80C82079072BF;
    
    // allowed logic
    mapping(address => uint256) allowedAddressAllowed;
    mapping(address => uint256) allowedAddressMinted;

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    constructor(string memory tokenURI) ERC721("DRAGONSAGAEGGS", "SAGAEGGS") {
        setBaseURI(tokenURI);
        _tokenURI = tokenURI;
    }


    // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenURI;
    }

    /**
     * sets the token uri for the metadata after mint
     *
     * @param baseURI metadata api url
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _tokenURI = baseURI;
    }

    /**
     * Withdraw any funds to the contract owner.
     */
    function withdraw(uint256 amount) public payable onlyOwner {
        require(payable(a).send(amount));
    }


    /**
     * adds a bulk array of address to the reservation list
     *
     * @param _list group of addresses
     */
    function addListToWhitelist(address[] memory _list, uint256[] memory _amount) public onlyOwner {
        for (uint256 i; i < _list.length; i++) {
            allowedAddressAllowed[_list[i]] = _amount[i];
        }
    }
    
    /**
     * Mint some of the allowed consumables
     */
    function mintAllowed(uint256 _amount) public payable {
        
        uint256 totalSupply = totalSupply();
        
        uint256 allowedAmount = allowedAddressAllowed[msg.sender];
        uint256 mintedAmount  = allowedAddressMinted[msg.sender];

        require(allowedAmount > 0, "You're address is not allowed!");
        require(mintedAmount + _amount <= allowedAmount, "You already minted your allowed amount!");

        for (uint256 i;i < _amount;i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        allowedAddressMinted[msg.sender] += _amount;
    }

    /**
     * Helper functions.
     */

    // Gets the tokens owned by the address provided and returns it
    function getTokensFromAddress(address _address) public view returns (uint256[] memory) {
        uint256 amountOfTokens = balanceOf(_address);

        if (amountOfTokens == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokens = new uint256[](amountOfTokens);

        for (uint256 i; i < amountOfTokens;i++) {
            tokens[i] = tokenOfOwnerByIndex(_address, i);
        }

        return tokens;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"addListToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTokensFromAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uint256","name":"_amount","type":"uint256"}],"name":"mintAllowed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001f1565b50600c80546001600160a01b031916732292465c73a502398cd34fd852d80c82079072bf1790553480156200004f57600080fd5b506040516200255938038062002559833981016040819052620000729162000297565b604080518082018252600e81526d445241474f4e534147414547475360901b602080830191825283518085019094526008845267534147414547475360c01b908401528151919291620000c891600091620001f1565b508051620000de906001906020840190620001f1565b505050620000fb620000f56200012360201b60201c565b62000127565b620001068162000179565b80516200011b90600b906020840190620001f1565b5050620003c6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ed90600b906020840190620001f1565b5050565b828054620001ff9062000373565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b60006020808385031215620002ab57600080fd5b82516001600160401b0380821115620002c357600080fd5b818501915085601f830112620002d857600080fd5b815181811115620002ed57620002ed620003b0565b604051601f8201601f19908116603f01168101908382118183101715620003185762000318620003b0565b8160405282815288868487010111156200033157600080fd5b600093505b8284101562000355578484018601518185018701529285019262000336565b82841115620003675760008684830101525b98975050505050505050565b600181811c908216806200038857607f821691505b60208210811415620003aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61218380620003d66000396000f3fe6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610416578063ca26250c14610436578063e985e9c514610456578063f2fde38b1461049f57600080fd5b806395d89b41146103c1578063a22cb465146103d6578063b88d4fde146103f657600080fd5b806355f804b31461031b5780636352211e1461033b57806370a082311461035b578063715018a61461037b57806381694a2b146103905780638da5cb5b146103a357600080fd5b806323b872dd1161012357806323b872dd1461025b5780632e1a7d4d1461027b5780632f745c591461028e578063360d506f146102ae57806342842e0e146102db5780634f6ccce7146102fb57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa5780630dbe671f1461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611d38565b6104bf565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104d0565b6040516101979190611eb0565b3480156101ce57600080fd5b506101e26101dd366004611dbb565b610562565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611c47565b6105fc565b005b34801561022857600080fd5b50600c546101e2906001600160a01b031681565b34801561024857600080fd5b506008545b604051908152602001610197565b34801561026757600080fd5b5061021a610276366004611b53565b610712565b61021a610289366004611dbb565b610743565b34801561029a57600080fd5b5061024d6102a9366004611c47565b6107a2565b3480156102ba57600080fd5b506102ce6102c9366004611b05565b610838565b6040516101979190611e6c565b3480156102e757600080fd5b5061021a6102f6366004611b53565b6108f1565b34801561030757600080fd5b5061024d610316366004611dbb565b61090c565b34801561032757600080fd5b5061021a610336366004611d72565b61099f565b34801561034757600080fd5b506101e2610356366004611dbb565b6109e0565b34801561036757600080fd5b5061024d610376366004611b05565b610a57565b34801561038757600080fd5b5061021a610ade565b61021a61039e366004611dbb565b610b14565b3480156103af57600080fd5b50600a546001600160a01b03166101e2565b3480156103cd57600080fd5b506101b5610c50565b3480156103e257600080fd5b5061021a6103f1366004611c0b565b610c5f565b34801561040257600080fd5b5061021a610411366004611b8f565b610d24565b34801561042257600080fd5b506101b5610431366004611dbb565b610d5c565b34801561044257600080fd5b5061021a610451366004611c71565b610e37565b34801561046257600080fd5b5061018b610471366004611b20565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ab57600080fd5b5061021a6104ba366004611b05565b610edc565b60006104ca82610f74565b92915050565b6060600080546104df9061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461050b9061205f565b80156105585780601f1061052d57610100808354040283529160200191610558565b820191906000526020600020905b81548152906001019060200180831161053b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610607826109e0565b9050806001600160a01b0316836001600160a01b031614156106755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d7565b336001600160a01b038216148061069157506106918133610471565b6107035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d7565b61070d8383610f99565b505050565b61071c3382611007565b6107385760405162461bcd60e51b81526004016105d790611f4a565b61070d8383836110fe565b600a546001600160a01b0316331461076d5760405162461bcd60e51b81526004016105d790611f15565b600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061079f57600080fd5b50565b60006107ad83610a57565b821061080f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105d7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6060600061084583610a57565b9050806108665760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561088157610881612121565b6040519080825280602002602001820160405280156108aa578160200160208202803683370190505b50905060005b8281101561085e576108c285826107a2565b8282815181106108d4576108d461210b565b6020908102919091010152806108e98161209a565b9150506108b0565b61070d83838360405180602001604052806000815250610d24565b600061091760085490565b821061097a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105d7565b6008828154811061098d5761098d61210b565b90600052602060002001549050919050565b600a546001600160a01b031633146109c95760405162461bcd60e51b81526004016105d790611f15565b80516109dc90600b906020840190611986565b5050565b6000818152600260205260408120546001600160a01b0316806104ca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d7565b60006001600160a01b038216610ac25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b085760405162461bcd60e51b81526004016105d790611f15565b610b1260006112a9565b565b6000610b1f60085490565b336000908152600d6020908152604080832054600e909252909120549192509081610b8c5760405162461bcd60e51b815260206004820152601e60248201527f596f752772652061646472657373206973206e6f7420616c6c6f77656421000060448201526064016105d7565b81610b978583611ff0565b1115610bf55760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f757220616c6c6f77656420604482015266616d6f756e742160c81b60648201526084016105d7565b60005b84811015610c2557610c1333610c0e8387611ff0565b6112fb565b80610c1d8161209a565b915050610bf8565b50336000908152600e602052604081208054869290610c45908490611ff0565b909155505050505050565b6060600180546104df9061205f565b6001600160a01b038216331415610cb85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d2e3383611007565b610d4a5760405162461bcd60e51b81526004016105d790611f4a565b610d5684848484611315565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ddb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d7565b6000610de5611348565b90506000815111610e055760405180602001604052806000815250610e30565b80610e0f84611357565b604051602001610e20929190611e00565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e615760405162461bcd60e51b81526004016105d790611f15565b60005b825181101561070d57818181518110610e7f57610e7f61210b565b6020026020010151600d6000858481518110610e9d57610e9d61210b565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610ed49061209a565b915050610e64565b600a546001600160a01b03163314610f065760405162461bcd60e51b81526004016105d790611f15565b6001600160a01b038116610f6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b61079f816112a9565b60006001600160e01b0319821663780e9d6360e01b14806104ca57506104ca82611455565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fce826109e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d7565b600061108b836109e0565b9050806001600160a01b0316846001600160a01b031614806110c65750836001600160a01b03166110bb84610562565b6001600160a01b0316145b806110f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611111826109e0565b6001600160a01b0316146111795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105d7565b6001600160a01b0382166111db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6111e68383836114a5565b6111f1600082610f99565b6001600160a01b038316600090815260036020526040812080546001929061121a90849061201c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611248908490611ff0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109dc8282604051806020016040528060008152506114b0565b6113208484846110fe565b61132c848484846114e3565b610d565760405162461bcd60e51b81526004016105d790611ec3565b6060600b80546104df9061205f565b60608161137b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a5578061138f8161209a565b915061139e9050600a83612008565b915061137f565b60008167ffffffffffffffff8111156113c0576113c0612121565b6040519080825280601f01601f1916602001820160405280156113ea576020820181803683370190505b5090505b84156110f6576113ff60018361201c565b915061140c600a866120b5565b611417906030611ff0565b60f81b81838151811061142c5761142c61210b565b60200101906001600160f81b031916908160001a90535061144e600a86612008565b94506113ee565b60006001600160e01b031982166380ac58cd60e01b148061148657506001600160e01b03198216635b5e139f60e01b145b806104ca57506301ffc9a760e01b6001600160e01b03198316146104ca565b61070d8383836115f0565b6114ba83836116a8565b6114c760008484846114e3565b61070d5760405162461bcd60e51b81526004016105d790611ec3565b60006001600160a01b0384163b156115e557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611527903390899088908890600401611e2f565b602060405180830381600087803b15801561154157600080fd5b505af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190611d55565b60015b6115cb573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516115c35760405162461bcd60e51b81526004016105d790611ec3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f6565b506001949350505050565b6001600160a01b03831661164b5761164681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61166e565b816001600160a01b0316836001600160a01b03161461166e5761166e83826117f6565b6001600160a01b0382166116855761070d81611893565b826001600160a01b0316826001600160a01b03161461070d5761070d8282611942565b6001600160a01b0382166116fe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d7565b6000818152600260205260409020546001600160a01b0316156117635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d7565b61176f600083836114a5565b6001600160a01b0382166000908152600360205260408120805460019290611798908490611ff0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161180384610a57565b61180d919061201c565b600083815260076020526040902054909150808214611860576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118a59060019061201c565b600083815260096020526040812054600880549394509092849081106118cd576118cd61210b565b9060005260206000200154905080600883815481106118ee576118ee61210b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611926576119266120f5565b6001900381819060005260206000200160009055905550505050565b600061194d83610a57565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546119929061205f565b90600052602060002090601f0160209004810192826119b457600085556119fa565b82601f106119cd57805160ff19168380011785556119fa565b828001600101855582156119fa579182015b828111156119fa5782518255916020019190600101906119df565b50611a06929150611a0a565b5090565b5b80821115611a065760008155600101611a0b565b600067ffffffffffffffff831115611a3957611a39612121565b611a4c601f8401601f1916602001611f9b565b9050828152838383011115611a6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a8e57600080fd5b919050565b600082601f830112611aa457600080fd5b81356020611ab9611ab483611fcc565b611f9b565b80838252828201915082860187848660051b8901011115611ad957600080fd5b60005b85811015611af857813584529284019290840190600101611adc565b5090979650505050505050565b600060208284031215611b1757600080fd5b610e3082611a77565b60008060408385031215611b3357600080fd5b611b3c83611a77565b9150611b4a60208401611a77565b90509250929050565b600080600060608486031215611b6857600080fd5b611b7184611a77565b9250611b7f60208501611a77565b9150604084013590509250925092565b60008060008060808587031215611ba557600080fd5b611bae85611a77565b9350611bbc60208601611a77565b925060408501359150606085013567ffffffffffffffff811115611bdf57600080fd5b8501601f81018713611bf057600080fd5b611bff87823560208401611a1f565b91505092959194509250565b60008060408385031215611c1e57600080fd5b611c2783611a77565b915060208301358015158114611c3c57600080fd5b809150509250929050565b60008060408385031215611c5a57600080fd5b611c6383611a77565b946020939093013593505050565b60008060408385031215611c8457600080fd5b823567ffffffffffffffff80821115611c9c57600080fd5b818501915085601f830112611cb057600080fd5b81356020611cc0611ab483611fcc565b8083825282820191508286018a848660051b8901011115611ce057600080fd5b600096505b84871015611d0a57611cf681611a77565b835260019690960195918301918301611ce5565b5096505086013592505080821115611d2157600080fd5b50611d2e85828601611a93565b9150509250929050565b600060208284031215611d4a57600080fd5b8135610e3081612137565b600060208284031215611d6757600080fd5b8151610e3081612137565b600060208284031215611d8457600080fd5b813567ffffffffffffffff811115611d9b57600080fd5b8201601f81018413611dac57600080fd5b6110f684823560208401611a1f565b600060208284031215611dcd57600080fd5b5035919050565b60008151808452611dec816020860160208601612033565b601f01601f19169290920160200192915050565b60008351611e12818460208801612033565b835190830190611e26818360208801612033565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6290830184611dd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ea457835183529284019291840191600101611e88565b50909695505050505050565b602081526000610e306020830184611dd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fc457611fc4612121565b604052919050565b600067ffffffffffffffff821115611fe657611fe6612121565b5060051b60200190565b60008219821115612003576120036120c9565b500190565b600082612017576120176120df565b500490565b60008282101561202e5761202e6120c9565b500390565b60005b8381101561204e578181015183820152602001612036565b83811115610d565750506000910152565b600181811c9082168061207357607f821691505b6020821081141561209457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ae576120ae6120c9565b5060010190565b6000826120c4576120c46120df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461079f57600080fdfea26469706673582212208e6501bcf5c8f5dff81c2637312c22e2f7ebad1a388c218651db38e35841249264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f63646e2e647261676f6e736167612e696f2f636f6e73756d61626c65732f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610416578063ca26250c14610436578063e985e9c514610456578063f2fde38b1461049f57600080fd5b806395d89b41146103c1578063a22cb465146103d6578063b88d4fde146103f657600080fd5b806355f804b31461031b5780636352211e1461033b57806370a082311461035b578063715018a61461037b57806381694a2b146103905780638da5cb5b146103a357600080fd5b806323b872dd1161012357806323b872dd1461025b5780632e1a7d4d1461027b5780632f745c591461028e578063360d506f146102ae57806342842e0e146102db5780634f6ccce7146102fb57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa5780630dbe671f1461021c57806318160ddd1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611d38565b6104bf565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104d0565b6040516101979190611eb0565b3480156101ce57600080fd5b506101e26101dd366004611dbb565b610562565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611c47565b6105fc565b005b34801561022857600080fd5b50600c546101e2906001600160a01b031681565b34801561024857600080fd5b506008545b604051908152602001610197565b34801561026757600080fd5b5061021a610276366004611b53565b610712565b61021a610289366004611dbb565b610743565b34801561029a57600080fd5b5061024d6102a9366004611c47565b6107a2565b3480156102ba57600080fd5b506102ce6102c9366004611b05565b610838565b6040516101979190611e6c565b3480156102e757600080fd5b5061021a6102f6366004611b53565b6108f1565b34801561030757600080fd5b5061024d610316366004611dbb565b61090c565b34801561032757600080fd5b5061021a610336366004611d72565b61099f565b34801561034757600080fd5b506101e2610356366004611dbb565b6109e0565b34801561036757600080fd5b5061024d610376366004611b05565b610a57565b34801561038757600080fd5b5061021a610ade565b61021a61039e366004611dbb565b610b14565b3480156103af57600080fd5b50600a546001600160a01b03166101e2565b3480156103cd57600080fd5b506101b5610c50565b3480156103e257600080fd5b5061021a6103f1366004611c0b565b610c5f565b34801561040257600080fd5b5061021a610411366004611b8f565b610d24565b34801561042257600080fd5b506101b5610431366004611dbb565b610d5c565b34801561044257600080fd5b5061021a610451366004611c71565b610e37565b34801561046257600080fd5b5061018b610471366004611b20565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ab57600080fd5b5061021a6104ba366004611b05565b610edc565b60006104ca82610f74565b92915050565b6060600080546104df9061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461050b9061205f565b80156105585780601f1061052d57610100808354040283529160200191610558565b820191906000526020600020905b81548152906001019060200180831161053b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610607826109e0565b9050806001600160a01b0316836001600160a01b031614156106755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d7565b336001600160a01b038216148061069157506106918133610471565b6107035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d7565b61070d8383610f99565b505050565b61071c3382611007565b6107385760405162461bcd60e51b81526004016105d790611f4a565b61070d8383836110fe565b600a546001600160a01b0316331461076d5760405162461bcd60e51b81526004016105d790611f15565b600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061079f57600080fd5b50565b60006107ad83610a57565b821061080f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105d7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6060600061084583610a57565b9050806108665760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561088157610881612121565b6040519080825280602002602001820160405280156108aa578160200160208202803683370190505b50905060005b8281101561085e576108c285826107a2565b8282815181106108d4576108d461210b565b6020908102919091010152806108e98161209a565b9150506108b0565b61070d83838360405180602001604052806000815250610d24565b600061091760085490565b821061097a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105d7565b6008828154811061098d5761098d61210b565b90600052602060002001549050919050565b600a546001600160a01b031633146109c95760405162461bcd60e51b81526004016105d790611f15565b80516109dc90600b906020840190611986565b5050565b6000818152600260205260408120546001600160a01b0316806104ca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d7565b60006001600160a01b038216610ac25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b085760405162461bcd60e51b81526004016105d790611f15565b610b1260006112a9565b565b6000610b1f60085490565b336000908152600d6020908152604080832054600e909252909120549192509081610b8c5760405162461bcd60e51b815260206004820152601e60248201527f596f752772652061646472657373206973206e6f7420616c6c6f77656421000060448201526064016105d7565b81610b978583611ff0565b1115610bf55760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f757220616c6c6f77656420604482015266616d6f756e742160c81b60648201526084016105d7565b60005b84811015610c2557610c1333610c0e8387611ff0565b6112fb565b80610c1d8161209a565b915050610bf8565b50336000908152600e602052604081208054869290610c45908490611ff0565b909155505050505050565b6060600180546104df9061205f565b6001600160a01b038216331415610cb85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d2e3383611007565b610d4a5760405162461bcd60e51b81526004016105d790611f4a565b610d5684848484611315565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ddb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d7565b6000610de5611348565b90506000815111610e055760405180602001604052806000815250610e30565b80610e0f84611357565b604051602001610e20929190611e00565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610e615760405162461bcd60e51b81526004016105d790611f15565b60005b825181101561070d57818181518110610e7f57610e7f61210b565b6020026020010151600d6000858481518110610e9d57610e9d61210b565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610ed49061209a565b915050610e64565b600a546001600160a01b03163314610f065760405162461bcd60e51b81526004016105d790611f15565b6001600160a01b038116610f6b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b61079f816112a9565b60006001600160e01b0319821663780e9d6360e01b14806104ca57506104ca82611455565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fce826109e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d7565b600061108b836109e0565b9050806001600160a01b0316846001600160a01b031614806110c65750836001600160a01b03166110bb84610562565b6001600160a01b0316145b806110f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611111826109e0565b6001600160a01b0316146111795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105d7565b6001600160a01b0382166111db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d7565b6111e68383836114a5565b6111f1600082610f99565b6001600160a01b038316600090815260036020526040812080546001929061121a90849061201c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611248908490611ff0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109dc8282604051806020016040528060008152506114b0565b6113208484846110fe565b61132c848484846114e3565b610d565760405162461bcd60e51b81526004016105d790611ec3565b6060600b80546104df9061205f565b60608161137b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a5578061138f8161209a565b915061139e9050600a83612008565b915061137f565b60008167ffffffffffffffff8111156113c0576113c0612121565b6040519080825280601f01601f1916602001820160405280156113ea576020820181803683370190505b5090505b84156110f6576113ff60018361201c565b915061140c600a866120b5565b611417906030611ff0565b60f81b81838151811061142c5761142c61210b565b60200101906001600160f81b031916908160001a90535061144e600a86612008565b94506113ee565b60006001600160e01b031982166380ac58cd60e01b148061148657506001600160e01b03198216635b5e139f60e01b145b806104ca57506301ffc9a760e01b6001600160e01b03198316146104ca565b61070d8383836115f0565b6114ba83836116a8565b6114c760008484846114e3565b61070d5760405162461bcd60e51b81526004016105d790611ec3565b60006001600160a01b0384163b156115e557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611527903390899088908890600401611e2f565b602060405180830381600087803b15801561154157600080fd5b505af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190611d55565b60015b6115cb573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516115c35760405162461bcd60e51b81526004016105d790611ec3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110f6565b506001949350505050565b6001600160a01b03831661164b5761164681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61166e565b816001600160a01b0316836001600160a01b03161461166e5761166e83826117f6565b6001600160a01b0382166116855761070d81611893565b826001600160a01b0316826001600160a01b03161461070d5761070d8282611942565b6001600160a01b0382166116fe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d7565b6000818152600260205260409020546001600160a01b0316156117635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d7565b61176f600083836114a5565b6001600160a01b0382166000908152600360205260408120805460019290611798908490611ff0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161180384610a57565b61180d919061201c565b600083815260076020526040902054909150808214611860576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118a59060019061201c565b600083815260096020526040812054600880549394509092849081106118cd576118cd61210b565b9060005260206000200154905080600883815481106118ee576118ee61210b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611926576119266120f5565b6001900381819060005260206000200160009055905550505050565b600061194d83610a57565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546119929061205f565b90600052602060002090601f0160209004810192826119b457600085556119fa565b82601f106119cd57805160ff19168380011785556119fa565b828001600101855582156119fa579182015b828111156119fa5782518255916020019190600101906119df565b50611a06929150611a0a565b5090565b5b80821115611a065760008155600101611a0b565b600067ffffffffffffffff831115611a3957611a39612121565b611a4c601f8401601f1916602001611f9b565b9050828152838383011115611a6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a8e57600080fd5b919050565b600082601f830112611aa457600080fd5b81356020611ab9611ab483611fcc565b611f9b565b80838252828201915082860187848660051b8901011115611ad957600080fd5b60005b85811015611af857813584529284019290840190600101611adc565b5090979650505050505050565b600060208284031215611b1757600080fd5b610e3082611a77565b60008060408385031215611b3357600080fd5b611b3c83611a77565b9150611b4a60208401611a77565b90509250929050565b600080600060608486031215611b6857600080fd5b611b7184611a77565b9250611b7f60208501611a77565b9150604084013590509250925092565b60008060008060808587031215611ba557600080fd5b611bae85611a77565b9350611bbc60208601611a77565b925060408501359150606085013567ffffffffffffffff811115611bdf57600080fd5b8501601f81018713611bf057600080fd5b611bff87823560208401611a1f565b91505092959194509250565b60008060408385031215611c1e57600080fd5b611c2783611a77565b915060208301358015158114611c3c57600080fd5b809150509250929050565b60008060408385031215611c5a57600080fd5b611c6383611a77565b946020939093013593505050565b60008060408385031215611c8457600080fd5b823567ffffffffffffffff80821115611c9c57600080fd5b818501915085601f830112611cb057600080fd5b81356020611cc0611ab483611fcc565b8083825282820191508286018a848660051b8901011115611ce057600080fd5b600096505b84871015611d0a57611cf681611a77565b835260019690960195918301918301611ce5565b5096505086013592505080821115611d2157600080fd5b50611d2e85828601611a93565b9150509250929050565b600060208284031215611d4a57600080fd5b8135610e3081612137565b600060208284031215611d6757600080fd5b8151610e3081612137565b600060208284031215611d8457600080fd5b813567ffffffffffffffff811115611d9b57600080fd5b8201601f81018413611dac57600080fd5b6110f684823560208401611a1f565b600060208284031215611dcd57600080fd5b5035919050565b60008151808452611dec816020860160208601612033565b601f01601f19169290920160200192915050565b60008351611e12818460208801612033565b835190830190611e26818360208801612033565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6290830184611dd4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ea457835183529284019291840191600101611e88565b50909695505050505050565b602081526000610e306020830184611dd4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fc457611fc4612121565b604052919050565b600067ffffffffffffffff821115611fe657611fe6612121565b5060051b60200190565b60008219821115612003576120036120c9565b500190565b600082612017576120176120df565b500490565b60008282101561202e5761202e6120c9565b500390565b60005b8381101561204e578181015183820152602001612036565b83811115610d565750506000910152565b600181811c9082168061207357607f821691505b6020821081141561209457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120ae576120ae6120c9565b5060010190565b6000826120c4576120c46120df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461079f57600080fdfea26469706673582212208e6501bcf5c8f5dff81c2637312c22e2f7ebad1a388c218651db38e35841249264736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f63646e2e647261676f6e736167612e696f2f636f6e73756d61626c65732f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenURI (string): https://cdn.dragonsaga.io/consumables/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [2] : 68747470733a2f2f63646e2e647261676f6e736167612e696f2f636f6e73756d
Arg [3] : 61626c65732f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46785:3137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47330:179;;;;;;;;;;-1:-1:-1;47330:179:0;;;;;:::i;:::-;;:::i;:::-;;;7898:14:1;;7891:22;7873:41;;7861:2;7846:18;47330:179:0;;;;;;;;27551:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29110:221::-;;;;;;;;;;-1:-1:-1;29110:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6559:32:1;;;6541:51;;6529:2;6514:18;29110:221:0;6395:203:1;28633:411:0;;;;;;;;;;-1:-1:-1;28633:411:0;;;;;:::i;:::-;;:::i;:::-;;46928:61;;;;;;;;;;-1:-1:-1;46928:61:0;;;;-1:-1:-1;;;;;46928:61:0;;;40299:113;;;;;;;;;;-1:-1:-1;40387:10:0;:17;40299:113;;;16269:25:1;;;16257:2;16242:18;40299:113:0;16123:177:1;30000:339:0;;;;;;;;;;-1:-1:-1;30000:339:0;;;;;:::i;:::-;;:::i;48195:110::-;;;;;;:::i;:::-;;:::i;39967:256::-;;;;;;;;;;-1:-1:-1;39967:256:0;;;;;:::i;:::-;;:::i;49465:454::-;;;;;;;;;;-1:-1:-1;49465:454:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30410:185::-;;;;;;;;;;-1:-1:-1;30410:185:0;;;;;:::i;:::-;;:::i;40489:233::-;;;;;;;;;;-1:-1:-1;40489:233:0;;;;;:::i;:::-;;:::i;48021:98::-;;;;;;;;;;-1:-1:-1;48021:98:0;;;;;:::i;:::-;;:::i;27245:239::-;;;;;;;;;;-1:-1:-1;27245:239:0;;;;;:::i;:::-;;:::i;26975:208::-;;;;;;;;;;-1:-1:-1;26975:208:0;;;;;:::i;:::-;;:::i;7250:94::-;;;;;;;;;;;;;:::i;48740:602::-;;;;;;:::i;:::-;;:::i;6599:87::-;;;;;;;;;;-1:-1:-1;6672:6:0;;-1:-1:-1;;;;;6672:6:0;6599:87;;27720:104;;;;;;;;;;;;;:::i;29403:295::-;;;;;;;;;;-1:-1:-1;29403:295:0;;;;;:::i;:::-;;:::i;30666:328::-;;;;;;;;;;-1:-1:-1;30666:328:0;;;;;:::i;:::-;;:::i;27895:334::-;;;;;;;;;;-1:-1:-1;27895:334:0;;;;;:::i;:::-;;:::i;48442:223::-;;;;;;;;;;-1:-1:-1;48442:223:0;;;;;:::i;:::-;;:::i;29769:164::-;;;;;;;;;;-1:-1:-1;29769:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29769:164;7499:192;;;;;;;;;;-1:-1:-1;7499:192:0;;;;;:::i;:::-;;:::i;47330:179::-;47441:4;47465:36;47489:11;47465:23;:36::i;:::-;47458:43;47330:179;-1:-1:-1;;47330:179:0:o;27551:100::-;27605:13;27638:5;27631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27551:100;:::o;29110:221::-;29186:7;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;29206:73;;;;-1:-1:-1;;;29206:73:0;;12725:2:1;29206:73:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:42;12906:19;;29206:73:0;;;;;;;;;-1:-1:-1;29299:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29299:24:0;;29110:221::o;28633:411::-;28714:13;28730:23;28745:7;28730:14;:23::i;:::-;28714:39;;28778:5;-1:-1:-1;;;;;28772:11:0;:2;-1:-1:-1;;;;;28772:11:0;;;28764:57;;;;-1:-1:-1;;;28764:57:0;;14325:2:1;28764:57:0;;;14307:21:1;14364:2;14344:18;;;14337:30;14403:34;14383:18;;;14376:62;-1:-1:-1;;;14454:18:1;;;14447:31;14495:19;;28764:57:0;14123:397:1;28764:57:0;5467:10;-1:-1:-1;;;;;28856:21:0;;;;:62;;-1:-1:-1;28881:37:0;28898:5;5467:10;29769:164;:::i;28881:37::-;28834:168;;;;-1:-1:-1;;;28834:168:0;;11118:2:1;28834:168:0;;;11100:21:1;11157:2;11137:18;;;11130:30;11196:34;11176:18;;;11169:62;11267:26;11247:18;;;11240:54;11311:19;;28834:168:0;10916:420:1;28834:168:0;29015:21;29024:2;29028:7;29015:8;:21::i;:::-;28703:341;28633:411;;:::o;30000:339::-;30195:41;5467:10;30228:7;30195:18;:41::i;:::-;30187:103;;;;-1:-1:-1;;;30187:103:0;;;;;;;:::i;:::-;30303:28;30313:4;30319:2;30323:7;30303:9;:28::i;48195:110::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;48281:1:::1;::::0;48273:23:::1;::::0;-1:-1:-1;;;;;48281:1:0;;::::1;::::0;48273:23;::::1;;;::::0;48289:6;;48281:1:::1;48273:23:::0;48281:1;48273:23;48289:6;48281:1;48273:23;::::1;;;;;;48265:32;;;::::0;::::1;;48195:110:::0;:::o;39967:256::-;40064:7;40100:23;40117:5;40100:16;:23::i;:::-;40092:5;:31;40084:87;;;;-1:-1:-1;;;40084:87:0;;8351:2:1;40084:87:0;;;8333:21:1;8390:2;8370:18;;;8363:30;8429:34;8409:18;;;8402:62;-1:-1:-1;;;8480:18:1;;;8473:41;8531:19;;40084:87:0;8149:407:1;40084:87:0;-1:-1:-1;;;;;;40189:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39967:256::o;49465:454::-;49534:16;49563:22;49588:19;49598:8;49588:9;:19::i;:::-;49563:44;-1:-1:-1;49624:19:0;49620:75;;49667:16;;;49681:1;49667:16;;;;;;;;;;;-1:-1:-1;49660:23:0;49465:454;-1:-1:-1;;;49465:454:0:o;49620:75::-;49707:23;49747:14;49733:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49733:29:0;;49707:55;;49780:9;49775:111;49795:14;49791:1;:18;49775:111;;;49842:32;49862:8;49872:1;49842:19;:32::i;:::-;49830:6;49837:1;49830:9;;;;;;;;:::i;:::-;;;;;;;;;;:44;49810:3;;;;:::i;:::-;;;;49775:111;;30410:185;30548:39;30565:4;30571:2;30575:7;30548:39;;;;;;;;;;;;:16;:39::i;40489:233::-;40564:7;40600:30;40387:10;:17;;40299:113;40600:30;40592:5;:38;40584:95;;;;-1:-1:-1;;;40584:95:0;;15553:2:1;40584:95:0;;;15535:21:1;15592:2;15572:18;;;15565:30;15631:34;15611:18;;;15604:62;-1:-1:-1;;;15682:18:1;;;15675:42;15734:19;;40584:95:0;15351:408:1;40584:95:0;40697:10;40708:5;40697:17;;;;;;;;:::i;:::-;;;;;;;;;40690:24;;40489:233;;;:::o;48021:98::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;48092:19;;::::1;::::0;:9:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48021:98:::0;:::o;27245:239::-;27317:7;27353:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27353:16:0;27388:19;27380:73;;;;-1:-1:-1;;;27380:73:0;;11954:2:1;27380:73:0;;;11936:21:1;11993:2;11973:18;;;11966:30;12032:34;12012:18;;;12005:62;-1:-1:-1;;;12083:18:1;;;12076:39;12132:19;;27380:73:0;11752:405:1;26975:208:0;27047:7;-1:-1:-1;;;;;27075:19:0;;27067:74;;;;-1:-1:-1;;;27067:74:0;;11543:2:1;27067:74:0;;;11525:21:1;11582:2;11562:18;;;11555:30;11621:34;11601:18;;;11594:62;-1:-1:-1;;;11672:18:1;;;11665:40;11722:19;;27067:74:0;11341:406:1;27067:74:0;-1:-1:-1;;;;;;27159:16:0;;;;;:9;:16;;;;;;;26975:208::o;7250:94::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;7315:21:::1;7333:1;7315:9;:21::i;:::-;7250:94::o:0;48740:602::-;48814:19;48836:13;40387:10;:17;;40299:113;48836:13;48916:10;48870:21;48894:33;;;:21;:33;;;;;;;;;48962:20;:32;;;;;;;48814:35;;-1:-1:-1;48894:33:0;49015:17;49007:60;;;;-1:-1:-1;;;49007:60:0;;15966:2:1;49007:60:0;;;15948:21:1;16005:2;15985:18;;;15978:30;16044:32;16024:18;;;16017:60;16094:18;;49007:60:0;15764:354:1;49007:60:0;49112:13;49086:22;49101:7;49086:12;:22;:::i;:::-;:39;;49078:91;;;;-1:-1:-1;;;49078:91:0;;15145:2:1;49078:91:0;;;15127:21:1;15184:2;15164:18;;;15157:30;15223:34;15203:18;;;15196:62;-1:-1:-1;;;15274:18:1;;;15267:37;15321:19;;49078:91:0;14943:403:1;49078:91:0;49187:9;49182:97;49201:7;49197:1;:11;49182:97;;;49229:38;49239:10;49251:15;49265:1;49251:11;:15;:::i;:::-;49229:9;:38::i;:::-;49209:3;;;;:::i;:::-;;;;49182:97;;;-1:-1:-1;49312:10:0;49291:32;;;;:20;:32;;;;;:43;;49327:7;;49291:32;:43;;49327:7;;49291:43;:::i;:::-;;;;-1:-1:-1;;;;;;48740:602:0:o;27720:104::-;27776:13;27809:7;27802:14;;;;;:::i;29403:295::-;-1:-1:-1;;;;;29506:24:0;;5467:10;29506:24;;29498:62;;;;-1:-1:-1;;;29498:62:0;;10351:2:1;29498:62:0;;;10333:21:1;10390:2;10370:18;;;10363:30;10429:27;10409:18;;;10402:55;10474:18;;29498:62:0;10149:349:1;29498:62:0;5467:10;29573:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29573:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29573:53:0;;;;;;;;;;29642:48;;7873:41:1;;;29573:42:0;;5467:10;29642:48;;7846:18:1;29642:48:0;;;;;;;29403:295;;:::o;30666:328::-;30841:41;5467:10;30874:7;30841:18;:41::i;:::-;30833:103;;;;-1:-1:-1;;;30833:103:0;;;;;;;:::i;:::-;30947:39;30961:4;30967:2;30971:7;30980:5;30947:13;:39::i;:::-;30666:328;;;;:::o;27895:334::-;32569:4;32593:16;;;:7;:16;;;;;;27968:13;;-1:-1:-1;;;;;32593:16:0;27994:76;;;;-1:-1:-1;;;27994:76:0;;13909:2:1;27994:76:0;;;13891:21:1;13948:2;13928:18;;;13921:30;13987:34;13967:18;;;13960:62;-1:-1:-1;;;14038:18:1;;;14031:45;14093:19;;27994:76:0;13707:411:1;27994:76:0;28083:21;28107:10;:8;:10::i;:::-;28083:34;;28159:1;28141:7;28135:21;:25;:86;;;;;;;;;;;;;;;;;28187:7;28196:18;:7;:16;:18::i;:::-;28170:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28135:86;28128:93;27895:334;-1:-1:-1;;;27895:334:0:o;48442:223::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;48553:9:::1;48548:110;48568:5;:12;48564:1;:16;48548:110;;;48636:7;48644:1;48636:10;;;;;;;;:::i;:::-;;;;;;;48602:21;:31;48624:5;48630:1;48624:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;48602:31:0::1;-1:-1:-1::0;;;;;48602:31:0::1;;;;;;;;;;;;:44;;;;48582:3;;;;;:::i;:::-;;;;48548:110;;7499:192:::0;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7588:22:0;::::1;7580:73;;;::::0;-1:-1:-1;;;7580:73:0;;9182:2:1;7580:73:0::1;::::0;::::1;9164:21:1::0;9221:2;9201:18;;;9194:30;9260:34;9240:18;;;9233:62;-1:-1:-1;;;9311:18:1;;;9304:36;9357:19;;7580:73:0::1;8980:402:1::0;7580:73:0::1;7664:19;7674:8;7664:9;:19::i;39659:224::-:0;39761:4;-1:-1:-1;;;;;;39785:50:0;;-1:-1:-1;;;39785:50:0;;:90;;;39839:36;39863:11;39839:23;:36::i;36486:174::-;36561:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36561:29:0;-1:-1:-1;;;;;36561:29:0;;;;;;;;:24;;36615:23;36561:24;36615:14;:23::i;:::-;-1:-1:-1;;;;;36606:46:0;;;;;;;;;;;36486:174;;:::o;32798:348::-;32891:4;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;32908:73;;;;-1:-1:-1;;;32908:73:0;;10705:2:1;32908:73:0;;;10687:21:1;10744:2;10724:18;;;10717:30;10783:34;10763:18;;;10756:62;-1:-1:-1;;;10834:18:1;;;10827:42;10886:19;;32908:73:0;10503:408:1;32908:73:0;32992:13;33008:23;33023:7;33008:14;:23::i;:::-;32992:39;;33061:5;-1:-1:-1;;;;;33050:16:0;:7;-1:-1:-1;;;;;33050:16:0;;:51;;;;33094:7;-1:-1:-1;;;;;33070:31:0;:20;33082:7;33070:11;:20::i;:::-;-1:-1:-1;;;;;33070:31:0;;33050:51;:87;;;-1:-1:-1;;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33105:32;33042:96;32798:348;-1:-1:-1;;;;32798:348:0:o;35790:578::-;35949:4;-1:-1:-1;;;;;35922:31:0;:23;35937:7;35922:14;:23::i;:::-;-1:-1:-1;;;;;35922:31:0;;35914:85;;;;-1:-1:-1;;;35914:85:0;;13499:2:1;35914:85:0;;;13481:21:1;13538:2;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;-1:-1:-1;;;13628:18:1;;;13621:39;13677:19;;35914:85:0;13297:405:1;35914:85:0;-1:-1:-1;;;;;36018:16:0;;36010:65;;;;-1:-1:-1;;;36010:65:0;;9946:2:1;36010:65:0;;;9928:21:1;9985:2;9965:18;;;9958:30;10024:34;10004:18;;;9997:62;-1:-1:-1;;;10075:18:1;;;10068:34;10119:19;;36010:65:0;9744:400:1;36010:65:0;36088:39;36109:4;36115:2;36119:7;36088:20;:39::i;:::-;36192:29;36209:1;36213:7;36192:8;:29::i;:::-;-1:-1:-1;;;;;36234:15:0;;;;;;:9;:15;;;;;:20;;36253:1;;36234:15;:20;;36253:1;;36234:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36265:13:0;;;;;;:9;:13;;;;;:18;;36282:1;;36265:13;:18;;36282:1;;36265:18;:::i;:::-;;;;-1:-1:-1;;36294:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36294:21:0;-1:-1:-1;;;;;36294:21:0;;;;;;;;;36333:27;;36294:16;;36333:27;;;;;;;35790:578;;;:::o;7699:173::-;7774:6;;;-1:-1:-1;;;;;7791:17:0;;;-1:-1:-1;;;;;;7791:17:0;;;;;;;7824:40;;7774:6;;;7791:17;7774:6;;7824:40;;7755:16;;7824:40;7744:128;7699:173;:::o;33488:110::-;33564:26;33574:2;33578:7;33564:26;;;;;;;;;;;;:9;:26::i;31876:315::-;32033:28;32043:4;32049:2;32053:7;32033:9;:28::i;:::-;32080:48;32103:4;32109:2;32113:7;32122:5;32080:22;:48::i;:::-;32072:111;;;;-1:-1:-1;;;32072:111:0;;;;;;;:::i;47782:110::-;47842:13;47875:9;47868:16;;;;;:::i;3003:723::-;3059:13;3280:10;3276:53;;-1:-1:-1;;3307:10:0;;;;;;;;;;;;-1:-1:-1;;;3307:10:0;;;;;3003:723::o;3276:53::-;3354:5;3339:12;3395:78;3402:9;;3395:78;;3428:8;;;;:::i;:::-;;-1:-1:-1;3451:10:0;;-1:-1:-1;3459:2:0;3451:10;;:::i;:::-;;;3395:78;;;3483:19;3515:6;3505:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3505:17:0;;3483:39;;3533:154;3540:10;;3533:154;;3567:11;3577:1;3567:11;;:::i;:::-;;-1:-1:-1;3636:10:0;3644:2;3636:5;:10;:::i;:::-;3623:24;;:2;:24;:::i;:::-;3610:39;;3593:6;3600;3593:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3593:56:0;;;;;;;;-1:-1:-1;3664:11:0;3673:2;3664:11;;:::i;:::-;;;3533:154;;26606:305;26708:4;-1:-1:-1;;;;;;26745:40:0;;-1:-1:-1;;;26745:40:0;;:105;;-1:-1:-1;;;;;;;26802:48:0;;-1:-1:-1;;;26802:48:0;26745:105;:158;;;-1:-1:-1;;;;;;;;;;18694:40:0;;;26867:36;18585:157;47137:181;47265:45;47292:4;47298:2;47302:7;47265:26;:45::i;33825:321::-;33955:18;33961:2;33965:7;33955:5;:18::i;:::-;34006:54;34037:1;34041:2;34045:7;34054:5;34006:22;:54::i;:::-;33984:154;;;;-1:-1:-1;;;33984:154:0;;;;;;;:::i;37225:799::-;37380:4;-1:-1:-1;;;;;37401:13:0;;8968:20;9016:8;37397:620;;37437:72;;-1:-1:-1;;;37437:72:0;;-1:-1:-1;;;;;37437:36:0;;;;;:72;;5467:10;;37488:4;;37494:7;;37503:5;;37437:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37437:72:0;;;;;;;;-1:-1:-1;;37437:72:0;;;;;;;;;;;;:::i;:::-;;;37433:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37679:13:0;;37675:272;;37722:60;;-1:-1:-1;;;37722:60:0;;;;;;;:::i;37675:272::-;37897:6;37891:13;37882:6;37878:2;37874:15;37867:38;37433:529;-1:-1:-1;;;;;;37560:51:0;-1:-1:-1;;;37560:51:0;;-1:-1:-1;37553:58:0;;37397:620;-1:-1:-1;38001:4:0;37225:799;;;;;;:::o;41335:589::-;-1:-1:-1;;;;;41541:18:0;;41537:187;;41576:40;41608:7;42751:10;:17;;42724:24;;;;:15;:24;;;;;:44;;;42779:24;;;;;;;;;;;;42647:164;41576:40;41537:187;;;41646:2;-1:-1:-1;;;;;41638:10:0;:4;-1:-1:-1;;;;;41638:10:0;;41634:90;;41665:47;41698:4;41704:7;41665:32;:47::i;:::-;-1:-1:-1;;;;;41738:16:0;;41734:183;;41771:45;41808:7;41771:36;:45::i;41734:183::-;41844:4;-1:-1:-1;;;;;41838:10:0;:2;-1:-1:-1;;;;;41838:10:0;;41834:83;;41865:40;41893:2;41897:7;41865:27;:40::i;34482:382::-;-1:-1:-1;;;;;34562:16:0;;34554:61;;;;-1:-1:-1;;;34554:61:0;;12364:2:1;34554:61:0;;;12346:21:1;;;12383:18;;;12376:30;12442:34;12422:18;;;12415:62;12494:18;;34554:61:0;12162:356:1;34554:61:0;32569:4;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;:30;34626:58;;;;-1:-1:-1;;;34626:58:0;;9589:2:1;34626:58:0;;;9571:21:1;9628:2;9608:18;;;9601:30;9667;9647:18;;;9640:58;9715:18;;34626:58:0;9387:352:1;34626:58:0;34697:45;34726:1;34730:2;34734:7;34697:20;:45::i;:::-;-1:-1:-1;;;;;34755:13:0;;;;;;:9;:13;;;;;:18;;34772:1;;34755:13;:18;;34772:1;;34755:18;:::i;:::-;;;;-1:-1:-1;;34784:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34784:21:0;-1:-1:-1;;;;;34784:21:0;;;;;;;;34823:33;;34784:16;;;34823:33;;34784:16;;34823:33;34482:382;;:::o;43438:988::-;43704:22;43754:1;43729:22;43746:4;43729:16;:22::i;:::-;:26;;;;:::i;:::-;43766:18;43787:26;;;:17;:26;;;;;;43704:51;;-1:-1:-1;43920:28:0;;;43916:328;;-1:-1:-1;;;;;43987:18:0;;43965:19;43987:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44038:30;;;;;;:44;;;44155:30;;:17;:30;;;;;:43;;;43916:328;-1:-1:-1;44340:26:0;;;;:17;:26;;;;;;;;44333:33;;;-1:-1:-1;;;;;44384:18:0;;;;;:12;:18;;;;;:34;;;;;;;44377:41;43438:988::o;44721:1079::-;44999:10;:17;44974:22;;44999:21;;45019:1;;44999:21;:::i;:::-;45031:18;45052:24;;;:15;:24;;;;;;45425:10;:26;;44974:46;;-1:-1:-1;45052:24:0;;44974:46;;45425:26;;;;;;:::i;:::-;;;;;;;;;45403:48;;45489:11;45464:10;45475;45464:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45569:28;;;:15;:28;;;;;;;:41;;;45741:24;;;;;45734:31;45776:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44792:1008;;;44721:1079;:::o;42225:221::-;42310:14;42327:20;42344:2;42327:16;:20::i;:::-;-1:-1:-1;;;;;42358:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42403:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42225:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:52;;;1409:1;1406;1399:12;1361:52;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1472:260;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1737:328;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:53;;;2259:1;2256;2249:12;2210:53;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;2497:18;2489:6;2486:30;2483:50;;;2529:1;2526;2519:12;2483:50;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:55:1;;2634:1;2631;2624:12;2583:55;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2070:666;;;;;;;:::o;2741:347::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2906:29;2925:9;2906:29;:::i;:::-;2896:39;;2985:2;2974:9;2970:18;2957:32;3032:5;3025:13;3018:21;3011:5;3008:32;2998:60;;3054:1;3051;3044:12;2998:60;3077:5;3067:15;;;2741:347;;;;;:::o;3093:254::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;3337:2;3322:18;;;;3309:32;;-1:-1:-1;;;3093:254:1:o;3352:1157::-;3470:6;3478;3531:2;3519:9;3510:7;3506:23;3502:32;3499:52;;;3547:1;3544;3537:12;3499:52;3587:9;3574:23;3616:18;3657:2;3649:6;3646:14;3643:34;;;3673:1;3670;3663:12;3643:34;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:55;;3778:1;3775;3768:12;3727:55;3814:2;3801:16;3836:4;3860:60;3876:43;3916:2;3876:43;:::i;3860:60::-;3942:3;3966:2;3961:3;3954:15;3994:2;3989:3;3985:12;3978:19;;4025:2;4021;4017:11;4073:7;4068:2;4062;4059:1;4055:10;4051:2;4047:19;4043:28;4040:41;4037:61;;;4094:1;4091;4084:12;4037:61;4116:1;4107:10;;4126:169;4140:2;4137:1;4134:9;4126:169;;;4197:23;4216:3;4197:23;:::i;:::-;4185:36;;4158:1;4151:9;;;;;4241:12;;;;4273;;4126:169;;;-1:-1:-1;4314:5:1;-1:-1:-1;;4357:18:1;;4344:32;;-1:-1:-1;;4388:16:1;;;4385:36;;;4417:1;4414;4407:12;4385:36;;4440:63;4495:7;4484:8;4473:9;4469:24;4440:63;:::i;:::-;4430:73;;;3352:1157;;;;;:::o;4514:245::-;4572:6;4625:2;4613:9;4604:7;4600:23;4596:32;4593:52;;;4641:1;4638;4631:12;4593:52;4680:9;4667:23;4699:30;4723:5;4699:30;:::i;4764:249::-;4833:6;4886:2;4874:9;4865:7;4861:23;4857:32;4854:52;;;4902:1;4899;4892:12;4854:52;4934:9;4928:16;4953:30;4977:5;4953:30;:::i;5018:450::-;5087:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5196:9;5183:23;5229:18;5221:6;5218:30;5215:50;;;5261:1;5258;5251:12;5215:50;5284:22;;5337:4;5329:13;;5325:27;-1:-1:-1;5315:55:1;;5366:1;5363;5356:12;5315:55;5389:73;5454:7;5449:2;5436:16;5431:2;5427;5423:11;5389:73;:::i;5473:180::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;-1:-1:-1;5624:23:1;;5473:180;-1:-1:-1;5473:180:1:o;5658:257::-;5699:3;5737:5;5731:12;5764:6;5759:3;5752:19;5780:63;5836:6;5829:4;5824:3;5820:14;5813:4;5806:5;5802:16;5780:63;:::i;:::-;5897:2;5876:15;-1:-1:-1;;5872:29:1;5863:39;;;;5904:4;5859:50;;5658:257;-1:-1:-1;;5658:257:1:o;5920:470::-;6099:3;6137:6;6131:13;6153:53;6199:6;6194:3;6187:4;6179:6;6175:17;6153:53;:::i;:::-;6269:13;;6228:16;;;;6291:57;6269:13;6228:16;6325:4;6313:17;;6291:57;:::i;:::-;6364:20;;5920:470;-1:-1:-1;;;;5920:470:1:o;6603:488::-;-1:-1:-1;;;;;6872:15:1;;;6854:34;;6924:15;;6919:2;6904:18;;6897:43;6971:2;6956:18;;6949:34;;;7019:3;7014:2;6999:18;;6992:31;;;6797:4;;7040:45;;7065:19;;7057:6;7040:45;:::i;:::-;7032:53;6603:488;-1:-1:-1;;;;;;6603:488:1:o;7096:632::-;7267:2;7319:21;;;7389:13;;7292:18;;;7411:22;;;7238:4;;7267:2;7490:15;;;;7464:2;7449:18;;;7238:4;7533:169;7547:6;7544:1;7541:13;7533:169;;;7608:13;;7596:26;;7677:15;;;;7642:12;;;;7569:1;7562:9;7533:169;;;-1:-1:-1;7719:3:1;;7096:632;-1:-1:-1;;;;;;7096:632:1:o;7925:219::-;8074:2;8063:9;8056:21;8037:4;8094:44;8134:2;8123:9;8119:18;8111:6;8094:44;:::i;8561:414::-;8763:2;8745:21;;;8802:2;8782:18;;;8775:30;8841:34;8836:2;8821:18;;8814:62;-1:-1:-1;;;8907:2:1;8892:18;;8885:48;8965:3;8950:19;;8561:414::o;12936:356::-;13138:2;13120:21;;;13157:18;;;13150:30;13216:34;13211:2;13196:18;;13189:62;13283:2;13268:18;;12936:356::o;14525:413::-;14727:2;14709:21;;;14766:2;14746:18;;;14739:30;14805:34;14800:2;14785:18;;14778:62;-1:-1:-1;;;14871:2:1;14856:18;;14849:47;14928:3;14913:19;;14525:413::o;16305:275::-;16376:2;16370:9;16441:2;16422:13;;-1:-1:-1;;16418:27:1;16406:40;;16476:18;16461:34;;16497:22;;;16458:62;16455:88;;;16523:18;;:::i;:::-;16559:2;16552:22;16305:275;;-1:-1:-1;16305:275:1:o;16585:183::-;16645:4;16678:18;16670:6;16667:30;16664:56;;;16700:18;;:::i;:::-;-1:-1:-1;16745:1:1;16741:14;16757:4;16737:25;;16585:183::o;16773:128::-;16813:3;16844:1;16840:6;16837:1;16834:13;16831:39;;;16850:18;;:::i;:::-;-1:-1:-1;16886:9:1;;16773:128::o;16906:120::-;16946:1;16972;16962:35;;16977:18;;:::i;:::-;-1:-1:-1;17011:9:1;;16906:120::o;17031:125::-;17071:4;17099:1;17096;17093:8;17090:34;;;17104:18;;:::i;:::-;-1:-1:-1;17141:9:1;;17031:125::o;17161:258::-;17233:1;17243:113;17257:6;17254:1;17251:13;17243:113;;;17333:11;;;17327:18;17314:11;;;17307:39;17279:2;17272:10;17243:113;;;17374:6;17371:1;17368:13;17365:48;;;-1:-1:-1;;17409:1:1;17391:16;;17384:27;17161:258::o;17424:380::-;17503:1;17499:12;;;;17546;;;17567:61;;17621:4;17613:6;17609:17;17599:27;;17567:61;17674:2;17666:6;17663:14;17643:18;17640:38;17637:161;;;17720:10;17715:3;17711:20;17708:1;17701:31;17755:4;17752:1;17745:15;17783:4;17780:1;17773:15;17637:161;;17424:380;;;:::o;17809:135::-;17848:3;-1:-1:-1;;17869:17:1;;17866:43;;;17889:18;;:::i;:::-;-1:-1:-1;17936:1:1;17925:13;;17809:135::o;17949:112::-;17981:1;18007;17997:35;;18012:18;;:::i;:::-;-1:-1:-1;18046:9:1;;17949:112::o;18066:127::-;18127:10;18122:3;18118:20;18115:1;18108:31;18158:4;18155:1;18148:15;18182:4;18179:1;18172:15;18198:127;18259:10;18254:3;18250:20;18247:1;18240:31;18290:4;18287:1;18280:15;18314:4;18311:1;18304:15;18330:127;18391:10;18386:3;18382:20;18379:1;18372:31;18422:4;18419:1;18412:15;18446:4;18443:1;18436:15;18462:127;18523:10;18518:3;18514:20;18511:1;18504:31;18554:4;18551:1;18544:15;18578:4;18575:1;18568:15;18594:127;18655:10;18650:3;18646:20;18643:1;18636:31;18686:4;18683:1;18676:15;18710:4;18707:1;18700:15;18726:131;-1:-1:-1;;;;;;18800:32:1;;18790:43;;18780:71;;18847:1;18844;18837:12

Swarm Source

ipfs://8e6501bcf5c8f5dff81c2637312c22e2f7ebad1a388c218651db38e358412492
Loading...
Loading
Loading...
Loading
[ 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.