CRO Price: $0.10 (+4.29%)

Token

TopDogCorgi (TDC)

Overview

Max Total Supply

2,000 TDC

Holders

626

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Filtered by Token Holder
berebel.cro
Balance
2 TDC
0x11d205f4f1301d28ba3195911aa7a80938df41b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TopDogCorgi

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2024-05-02
*/

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

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

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

pragma solidity ^0.8.0;

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

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


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

// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

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

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


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

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

pragma solidity ^0.8.0;

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


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

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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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


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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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

// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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


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

// OpenZeppelin Contracts (last updated v4.8.2) (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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}


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

// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

// OpenZeppelin Contracts (last updated v4.8.0) (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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        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/gen0/interfaces/ITopDogCorgi.sol

pragma solidity >=0.8.0;

/**
 * @title TopDogCorgi in ERC-721 Non-Fungible Token Standard
 */
interface ITopDogCorgi is IERC721Enumerable {
    /**
     * @notice maximum supply for this NFT
     */
    function MAX_SUPPLY() external view returns (uint256);

    /**
     * @notice crowdsale contract of CronosCruiser
     */
    function crowdsale() external view returns (address);

    /**
     * @notice IPFS baseURI of NFT
     */
    function baseURI() external view returns (string memory);

    /**
     * @param _tokenId tokenId to be check
     * @notice if given tokenId is minted, return true
     */
    function isMinted(uint256 _tokenId) external view returns (bool);

    /**
     * @param _tokenId tokenId to be minted
     * @param _minter ERC721 mint to, = token owner after minting
     */
    function mint(uint256 _tokenId, address _minter) external;

    /**
     * @notice admin function to update baseURI
     */
    function setBaseURI(string memory _uri) external;

    /**
     * @notice admin function to control whitelist who can mint CronosCruiser
     * @param _crowdsale address of crowdsale contract
     */
    function setCrowdsale(address _crowdsale) external;

    /**
     * @notice admin function to update royalty
     * @param _royaltyReceiver royalty receiver
     * @param _royaltyFee A value of 100 means 1%
     */
    function updateRoyalty(address _royaltyReceiver, uint96 _royaltyFee) external;
}


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

// OpenZeppelin Contracts (last updated v4.8.0) (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 making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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


// File contracts/gen0/TopDogCorgi.sol

// SPDX-License-Identifier: MIT
pragma solidity =0.8.18;





/**
 * @title TopDogCorgi in ERC-721 Non-Fungible Token Standard
 */
contract TopDogCorgi is ERC721Enumerable, ERC2981, Ownable, ReentrancyGuard, ITopDogCorgi {
    /* ============ Data ============ */

    /// @inheritdoc ITopDogCorgi
    uint256 public constant MAX_SUPPLY = 2000;
    /// @inheritdoc ITopDogCorgi
    string public baseURI;
    /// @inheritdoc ITopDogCorgi
    address public crowdsale;

    /* ============ Errors ============ */
    error TokenIdOutOfBound();
    error CrowdsaleExisted();
    error OnlyCrowdsale();

    /* ============ Events ============ */
    event UpdateRoyalty(address indexed _royaltyReceiver, uint96 _royaltyFee);
    event SetBaseURI(address indexed owner, string _newURI, string _oldURI);


    modifier onlyCrowdsale() {
        if (crowdsale != msg.sender) revert OnlyCrowdsale();
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        address _royaltyReceiver,
        uint96 _royaltyFee
    ) ERC721(_name, _symbol) {
        // _royaltyFee (1% = 100)
        _setDefaultRoyalty(_royaltyReceiver, _royaltyFee);
    }

    /// @inheritdoc ITopDogCorgi
    function mint(uint256 _tokenId, address _minter) external onlyCrowdsale nonReentrant {
        if (_tokenId >= MAX_SUPPLY) revert TokenIdOutOfBound();
        _safeMint(_minter, _tokenId);
    }

    /* ============ View functions ============ */

    /// @inheritdoc ITopDogCorgi
    function isMinted(uint256 _tokenId) external view returns (bool) {
        if (_tokenId >= MAX_SUPPLY) revert TokenIdOutOfBound();
        return _exists(_tokenId);
    }

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(IERC165, ERC2981, ERC721Enumerable)
        returns (bool)
    {
        return
            ERC721Enumerable.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId) ||
            super.supportsInterface(interfaceId);
    }

    /* ============ Owner functions ============ */

    /// @inheritdoc ITopDogCorgi
    function setCrowdsale(address _crowdsale) external onlyOwner {
        if (crowdsale != address(0)) revert CrowdsaleExisted();
        crowdsale = _crowdsale;
    }

    /// @inheritdoc ITopDogCorgi
    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
        emit SetBaseURI(msg.sender, _uri, baseURI);
    }

    /// @inheritdoc ITopDogCorgi
    function updateRoyalty(address _royaltyReceiver, uint96 _royaltyFee) external onlyOwner {
        _setDefaultRoyalty(_royaltyReceiver, _royaltyFee);
        emit UpdateRoyalty(_royaltyReceiver, _royaltyFee);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFee","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CrowdsaleExisted","type":"error"},{"inputs":[],"name":"OnlyCrowdsale","type":"error"},{"inputs":[],"name":"TokenIdOutOfBound","type":"error"},{"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":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_newURI","type":"string"},{"indexed":false,"internalType":"string","name":"_oldURI","type":"string"}],"name":"SetBaseURI","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_royaltyReceiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"_royaltyFee","type":"uint96"}],"name":"UpdateRoyalty","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crowdsale","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"_tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_minter","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crowdsale","type":"address"}],"name":"setCrowdsale","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":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFee","type":"uint96"}],"name":"updateRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620027cd380380620027cd8339810160408190526200003491620002ab565b83836000620000448382620003e6565b506001620000538282620003e6565b505050620000706200006a6200008b60201b60201c565b6200008f565b6001600d55620000818282620000e1565b50505050620004b2565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001555760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620001ad5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200014c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020e57600080fd5b81516001600160401b03808211156200022b576200022b620001e6565b604051601f8301601f19908116603f01168101908282118183101715620002565762000256620001e6565b816040528381526020925086838588010111156200027357600080fd5b600091505b8382101562000297578582018301518183018401529082019062000278565b600093810190920192909252949350505050565b60008060008060808587031215620002c257600080fd5b84516001600160401b0380821115620002da57600080fd5b620002e888838901620001fc565b95506020870151915080821115620002ff57600080fd5b506200030e87828801620001fc565b604087015190945090506001600160a01b03811681146200032e57600080fd5b60608601519092506001600160601b03811681146200034c57600080fd5b939692955090935050565b600181811c908216806200036c57607f821691505b6020821081036200038d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e157600081815260208120601f850160051c81016020861015620003bc5750805b601f850160051c820191505b81811015620003dd57828155600101620003c8565b5050505b505050565b81516001600160401b03811115620004025762000402620001e6565b6200041a8162000413845462000357565b8462000393565b602080601f831160018114620004525760008415620004395750858301515b600019600386901b1c1916600185901b178555620003dd565b600085815260208120601f198616915b82811015620004835788860151825594840194600190910190840162000462565b5085821015620004a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61230b80620004c26000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f95780639c1e03a011610097578063c87b56dd11610071578063c87b56dd146103b3578063daa83c6d146103c6578063e985e9c5146103d9578063f2fde38b1461041557600080fd5b80639c1e03a01461037a578063a22cb4651461038d578063b88d4fde146103a057600080fd5b8063715018a6116100d3578063715018a6146103465780638da5cb5b1461034e57806394bf804d1461035f57806395d89b411461037257600080fd5b80636352211e146103185780636c0360eb1461032b57806370a082311461033357600080fd5b80632f745c591161016657806342842e0e1161014057806342842e0e146102cc578063483a20b2146102df5780634f6ccce7146102f257806355f804b31461030557600080fd5b80632f745c591461029d57806332cb6b0c146102b057806333c41a90146102b957600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632a55205a1461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611c69565b610428565b60405190151581526020015b60405180910390f35b6101f9610457565b6040516101e89190611cd6565b610219610214366004611ce9565b6104e9565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611d1e565b610510565b005b6008545b6040519081526020016101e8565b610244610266366004611d48565b61062a565b61027e610279366004611d84565b6106a1565b604080516001600160a01b0390931683526020830191909152016101e8565b61024a6102ab366004611d1e565b61074d565b61024a6107d081565b6101dc6102c7366004611ce9565b6107e3565b6102446102da366004611d48565b610826565b6102446102ed366004611da6565b610841565b61024a610300366004611ce9565b610895565b610244610313366004611e4d565b610928565b610219610326366004611ce9565b610984565b6101f96109e9565b61024a610341366004611da6565b610a77565b610244610afd565b600c546001600160a01b0316610219565b61024461036d366004611e96565b610b11565b6101f9610b7e565b600f54610219906001600160a01b031681565b61024461039b366004611ec2565b610b8d565b6102446103ae366004611efe565b610b98565b6101f96103c1366004611ce9565b610c16565b6102446103d4366004611f7a565b610c7d565b6101dc6103e7366004611fb2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610244610423366004611da6565b610cda565b600061043382610d53565b80610442575061044282610d78565b80610451575061045182610d78565b92915050565b60606000805461046690611fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461049290611fdc565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610d9d565b506000908152600460205260409020546001600160a01b031690565b600061051b82610984565b9050806001600160a01b0316836001600160a01b03160361058d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105a957506105a981336103e7565b61061b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610584565b6106258383610e01565b505050565b6106343382610e6f565b6106965760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610584565b610625838383610eee565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610716575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610735906001600160601b03168761202c565b61073f9190612043565b915196919550909350505050565b600061075883610a77565b82106107ba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610584565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006107d0821061080757604051631493c56960e01b815260040160405180910390fd5b6000828152600260205260409020546001600160a01b03161515610451565b61062583838360405180602001604052806000815250610b98565b6108496110db565b600f546001600160a01b0316156108735760405163a4d5461960e01b815260040160405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006108a060085490565b82106109035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610584565b6008828154811061091657610916612065565b90600052602060002001549050919050565b6109306110db565b600e61093c82826120c9565b50336001600160a01b03167f888a419ed9f083c91d256876ad4b9675c6c232a73698e8f808b596fbf873758782600e604051610979929190612189565b60405180910390a250565b6000818152600260205260408120546001600160a01b0316806104515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610584565b600e80546109f690611fdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290611fdc565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b505050505081565b60006001600160a01b038216610ae15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610584565b506001600160a01b031660009081526003602052604090205490565b610b056110db565b610b0f6000611135565b565b600f546001600160a01b03163314610b3c5760405163196b818b60e01b815260040160405180910390fd5b610b44611187565b6107d08210610b6657604051631493c56960e01b815260040160405180910390fd5b610b7081836111e0565b610b7a6001600d55565b5050565b60606001805461046690611fdc565b610b7a3383836111fa565b610ba23383610e6f565b610c045760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610584565b610c10848484846112c8565b50505050565b6060610c2182610d9d565b6000610c2b611346565b90506000815111610c4b5760405180602001604052806000815250610c76565b80610c5584611355565b604051602001610c66929190612224565b6040516020818303038152906040525b9392505050565b610c856110db565b610c8f82826113f5565b6040516001600160601b03821681526001600160a01b038316907f3e91409a02926290c65d2e6b1c28957f255d42cb904b947d566829981d0fc8f19060200160405180910390a25050565b610ce26110db565b6001600160a01b038116610d475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610584565b610d5081611135565b50565b60006001600160e01b0319821663780e9d6360e01b14806104515750610451826114f2565b60006001600160e01b0319821663152a902d60e11b1480610451575061045182610d53565b6000818152600260205260409020546001600160a01b0316610d505760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610584565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e3682610984565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e7b83610984565b9050806001600160a01b0316846001600160a01b03161480610ec257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ee65750836001600160a01b0316610edb846104e9565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f0182610984565b6001600160a01b031614610f655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610584565b6001600160a01b038216610fc75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610584565b610fd48383836001611542565b826001600160a01b0316610fe782610984565b6001600160a01b03161461104b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610584565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c546001600160a01b03163314610b0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610584565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600d54036111d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610584565b6002600d55565b610b7a82826040518060200160405280600081525061167e565b816001600160a01b0316836001600160a01b03160361125b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610584565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112d3848484610eee565b6112df848484846116fc565b610c105760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b6060600e805461046690611fdc565b6060600061136283611848565b600101905060008167ffffffffffffffff81111561138257611382611dc1565b6040519080825280601f01601f1916602001820160405280156113ac576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846113b657509392505050565b6127106001600160601b03821611156114635760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610584565b6001600160a01b0382166114b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610584565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b60006001600160e01b031982166380ac58cd60e01b148061152357506001600160e01b03198216635b5e139f60e01b145b8061045157506301ffc9a760e01b6001600160e01b0319831614610451565b60018111156115b95760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610584565b816001600160a01b0385166116155761161081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611638565b836001600160a01b0316856001600160a01b03161461163857611638858261192a565b6001600160a01b0384166116545761164f816119c7565b611677565b846001600160a01b0316846001600160a01b031614611677576116778482611a76565b5050505050565b6116888383611aba565b61169560008484846116fc565b6106255760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b60006001600160a01b0384163b1561183d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611740903390899088908890600401612253565b6020604051808303816000875af192505050801561177b575060408051601f3d908101601f191682019092526117789181019061228f565b60015b611823573d8080156117a9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ae565b606091505b50805160000361181b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ee6565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611891577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118bd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118db57662386f26fc10000830492506010015b6305f5e10083106118f3576305f5e100830492506008015b612710831061190757612710830492506004015b60648310611919576064830492506002015b600a83106104515760010192915050565b6000600161193784610a77565b61194191906122ac565b600083815260076020526040902054909150808214611994576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119d9906001906122ac565b60008381526009602052604081205460088054939450909284908110611a0157611a01612065565b906000526020600020015490508060088381548110611a2257611a22612065565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5a57611a5a6122bf565b6001900381819060005260206000200160009055905550505050565b6000611a8183610a77565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610584565b6000818152600260205260409020546001600160a01b031615611b755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610584565b611b83600083836001611542565b6000818152600260205260409020546001600160a01b031615611be85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610584565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610d5057600080fd5b600060208284031215611c7b57600080fd5b8135610c7681611c53565b60005b83811015611ca1578181015183820152602001611c89565b50506000910152565b60008151808452611cc2816020860160208601611c86565b601f01601f19169290920160200192915050565b602081526000610c766020830184611caa565b600060208284031215611cfb57600080fd5b5035919050565b80356001600160a01b0381168114611d1957600080fd5b919050565b60008060408385031215611d3157600080fd5b611d3a83611d02565b946020939093013593505050565b600080600060608486031215611d5d57600080fd5b611d6684611d02565b9250611d7460208501611d02565b9150604084013590509250925092565b60008060408385031215611d9757600080fd5b50508035926020909101359150565b600060208284031215611db857600080fd5b610c7682611d02565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611df257611df2611dc1565b604051601f8501601f19908116603f01168101908282118183101715611e1a57611e1a611dc1565b81604052809350858152868686011115611e3357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e5f57600080fd5b813567ffffffffffffffff811115611e7657600080fd5b8201601f81018413611e8757600080fd5b610ee684823560208401611dd7565b60008060408385031215611ea957600080fd5b82359150611eb960208401611d02565b90509250929050565b60008060408385031215611ed557600080fd5b611ede83611d02565b915060208301358015158114611ef357600080fd5b809150509250929050565b60008060008060808587031215611f1457600080fd5b611f1d85611d02565b9350611f2b60208601611d02565b925060408501359150606085013567ffffffffffffffff811115611f4e57600080fd5b8501601f81018713611f5f57600080fd5b611f6e87823560208401611dd7565b91505092959194509250565b60008060408385031215611f8d57600080fd5b611f9683611d02565b915060208301356001600160601b0381168114611ef357600080fd5b60008060408385031215611fc557600080fd5b611fce83611d02565b9150611eb960208401611d02565b600181811c90821680611ff057607f821691505b60208210810361201057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761045157610451612016565b60008261206057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f82111561062557600081815260208120601f850160051c810160208610156120a25750805b601f850160051c820191505b818110156120c1578281556001016120ae565b505050505050565b815167ffffffffffffffff8111156120e3576120e3611dc1565b6120f7816120f18454611fdc565b8461207b565b602080601f83116001811461212c57600084156121145750858301515b600019600386901b1c1916600185901b1785556120c1565b600085815260208120601f198616915b8281101561215b5788860151825594840194600190910190840161213c565b50858210156121795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408152600061219c6040830185611caa565b602083820381850152600085546121b281611fdc565b808552600182811680156121cd57600181146121e757612215565b60ff1984168787015282151560051b870186019450612215565b896000528560002060005b8481101561220d5781548982018901529083019087016121f2565b880187019550505b50929998505050505050505050565b60008351612236818460208801611c86565b83519083019061224a818360208801611c86565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122856080830184611caa565b9695505050505050565b6000602082840312156122a157600080fd5b8151610c7681611c53565b8181038181111561045157610451612016565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203375807f88a992ddc3403b102b1124ca52ff25fe658061afe9b033c4565eea6464736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000d738b778556fc66004bcf7f289fe652a2111eaf20000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000b546f70446f67436f72676900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035444430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f95780639c1e03a011610097578063c87b56dd11610071578063c87b56dd146103b3578063daa83c6d146103c6578063e985e9c5146103d9578063f2fde38b1461041557600080fd5b80639c1e03a01461037a578063a22cb4651461038d578063b88d4fde146103a057600080fd5b8063715018a6116100d3578063715018a6146103465780638da5cb5b1461034e57806394bf804d1461035f57806395d89b411461037257600080fd5b80636352211e146103185780636c0360eb1461032b57806370a082311461033357600080fd5b80632f745c591161016657806342842e0e1161014057806342842e0e146102cc578063483a20b2146102df5780634f6ccce7146102f257806355f804b31461030557600080fd5b80632f745c591461029d57806332cb6b0c146102b057806333c41a90146102b957600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd146102585780632a55205a1461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611c69565b610428565b60405190151581526020015b60405180910390f35b6101f9610457565b6040516101e89190611cd6565b610219610214366004611ce9565b6104e9565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611d1e565b610510565b005b6008545b6040519081526020016101e8565b610244610266366004611d48565b61062a565b61027e610279366004611d84565b6106a1565b604080516001600160a01b0390931683526020830191909152016101e8565b61024a6102ab366004611d1e565b61074d565b61024a6107d081565b6101dc6102c7366004611ce9565b6107e3565b6102446102da366004611d48565b610826565b6102446102ed366004611da6565b610841565b61024a610300366004611ce9565b610895565b610244610313366004611e4d565b610928565b610219610326366004611ce9565b610984565b6101f96109e9565b61024a610341366004611da6565b610a77565b610244610afd565b600c546001600160a01b0316610219565b61024461036d366004611e96565b610b11565b6101f9610b7e565b600f54610219906001600160a01b031681565b61024461039b366004611ec2565b610b8d565b6102446103ae366004611efe565b610b98565b6101f96103c1366004611ce9565b610c16565b6102446103d4366004611f7a565b610c7d565b6101dc6103e7366004611fb2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610244610423366004611da6565b610cda565b600061043382610d53565b80610442575061044282610d78565b80610451575061045182610d78565b92915050565b60606000805461046690611fdc565b80601f016020809104026020016040519081016040528092919081815260200182805461049290611fdc565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610d9d565b506000908152600460205260409020546001600160a01b031690565b600061051b82610984565b9050806001600160a01b0316836001600160a01b03160361058d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105a957506105a981336103e7565b61061b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610584565b6106258383610e01565b505050565b6106343382610e6f565b6106965760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610584565b610625838383610eee565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610716575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610735906001600160601b03168761202c565b61073f9190612043565b915196919550909350505050565b600061075883610a77565b82106107ba5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610584565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006107d0821061080757604051631493c56960e01b815260040160405180910390fd5b6000828152600260205260409020546001600160a01b03161515610451565b61062583838360405180602001604052806000815250610b98565b6108496110db565b600f546001600160a01b0316156108735760405163a4d5461960e01b815260040160405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006108a060085490565b82106109035760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610584565b6008828154811061091657610916612065565b90600052602060002001549050919050565b6109306110db565b600e61093c82826120c9565b50336001600160a01b03167f888a419ed9f083c91d256876ad4b9675c6c232a73698e8f808b596fbf873758782600e604051610979929190612189565b60405180910390a250565b6000818152600260205260408120546001600160a01b0316806104515760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610584565b600e80546109f690611fdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290611fdc565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b505050505081565b60006001600160a01b038216610ae15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610584565b506001600160a01b031660009081526003602052604090205490565b610b056110db565b610b0f6000611135565b565b600f546001600160a01b03163314610b3c5760405163196b818b60e01b815260040160405180910390fd5b610b44611187565b6107d08210610b6657604051631493c56960e01b815260040160405180910390fd5b610b7081836111e0565b610b7a6001600d55565b5050565b60606001805461046690611fdc565b610b7a3383836111fa565b610ba23383610e6f565b610c045760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610584565b610c10848484846112c8565b50505050565b6060610c2182610d9d565b6000610c2b611346565b90506000815111610c4b5760405180602001604052806000815250610c76565b80610c5584611355565b604051602001610c66929190612224565b6040516020818303038152906040525b9392505050565b610c856110db565b610c8f82826113f5565b6040516001600160601b03821681526001600160a01b038316907f3e91409a02926290c65d2e6b1c28957f255d42cb904b947d566829981d0fc8f19060200160405180910390a25050565b610ce26110db565b6001600160a01b038116610d475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610584565b610d5081611135565b50565b60006001600160e01b0319821663780e9d6360e01b14806104515750610451826114f2565b60006001600160e01b0319821663152a902d60e11b1480610451575061045182610d53565b6000818152600260205260409020546001600160a01b0316610d505760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610584565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e3682610984565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e7b83610984565b9050806001600160a01b0316846001600160a01b03161480610ec257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ee65750836001600160a01b0316610edb846104e9565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f0182610984565b6001600160a01b031614610f655760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610584565b6001600160a01b038216610fc75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610584565b610fd48383836001611542565b826001600160a01b0316610fe782610984565b6001600160a01b03161461104b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610584565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c546001600160a01b03163314610b0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610584565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002600d54036111d95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610584565b6002600d55565b610b7a82826040518060200160405280600081525061167e565b816001600160a01b0316836001600160a01b03160361125b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610584565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112d3848484610eee565b6112df848484846116fc565b610c105760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b6060600e805461046690611fdc565b6060600061136283611848565b600101905060008167ffffffffffffffff81111561138257611382611dc1565b6040519080825280601f01601f1916602001820160405280156113ac576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846113b657509392505050565b6127106001600160601b03821611156114635760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610584565b6001600160a01b0382166114b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610584565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b60006001600160e01b031982166380ac58cd60e01b148061152357506001600160e01b03198216635b5e139f60e01b145b8061045157506301ffc9a760e01b6001600160e01b0319831614610451565b60018111156115b95760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610584565b816001600160a01b0385166116155761161081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611638565b836001600160a01b0316856001600160a01b03161461163857611638858261192a565b6001600160a01b0384166116545761164f816119c7565b611677565b846001600160a01b0316846001600160a01b031614611677576116778482611a76565b5050505050565b6116888383611aba565b61169560008484846116fc565b6106255760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b60006001600160a01b0384163b1561183d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611740903390899088908890600401612253565b6020604051808303816000875af192505050801561177b575060408051601f3d908101601f191682019092526117789181019061228f565b60015b611823573d8080156117a9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ae565b606091505b50805160000361181b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610584565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ee6565b506001949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611891577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118bd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118db57662386f26fc10000830492506010015b6305f5e10083106118f3576305f5e100830492506008015b612710831061190757612710830492506004015b60648310611919576064830492506002015b600a83106104515760010192915050565b6000600161193784610a77565b61194191906122ac565b600083815260076020526040902054909150808214611994576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119d9906001906122ac565b60008381526009602052604081205460088054939450909284908110611a0157611a01612065565b906000526020600020015490508060088381548110611a2257611a22612065565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a5a57611a5a6122bf565b6001900381819060005260206000200160009055905550505050565b6000611a8183610a77565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611b105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610584565b6000818152600260205260409020546001600160a01b031615611b755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610584565b611b83600083836001611542565b6000818152600260205260409020546001600160a01b031615611be85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610584565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610d5057600080fd5b600060208284031215611c7b57600080fd5b8135610c7681611c53565b60005b83811015611ca1578181015183820152602001611c89565b50506000910152565b60008151808452611cc2816020860160208601611c86565b601f01601f19169290920160200192915050565b602081526000610c766020830184611caa565b600060208284031215611cfb57600080fd5b5035919050565b80356001600160a01b0381168114611d1957600080fd5b919050565b60008060408385031215611d3157600080fd5b611d3a83611d02565b946020939093013593505050565b600080600060608486031215611d5d57600080fd5b611d6684611d02565b9250611d7460208501611d02565b9150604084013590509250925092565b60008060408385031215611d9757600080fd5b50508035926020909101359150565b600060208284031215611db857600080fd5b610c7682611d02565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611df257611df2611dc1565b604051601f8501601f19908116603f01168101908282118183101715611e1a57611e1a611dc1565b81604052809350858152868686011115611e3357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e5f57600080fd5b813567ffffffffffffffff811115611e7657600080fd5b8201601f81018413611e8757600080fd5b610ee684823560208401611dd7565b60008060408385031215611ea957600080fd5b82359150611eb960208401611d02565b90509250929050565b60008060408385031215611ed557600080fd5b611ede83611d02565b915060208301358015158114611ef357600080fd5b809150509250929050565b60008060008060808587031215611f1457600080fd5b611f1d85611d02565b9350611f2b60208601611d02565b925060408501359150606085013567ffffffffffffffff811115611f4e57600080fd5b8501601f81018713611f5f57600080fd5b611f6e87823560208401611dd7565b91505092959194509250565b60008060408385031215611f8d57600080fd5b611f9683611d02565b915060208301356001600160601b0381168114611ef357600080fd5b60008060408385031215611fc557600080fd5b611fce83611d02565b9150611eb960208401611d02565b600181811c90821680611ff057607f821691505b60208210810361201057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761045157610451612016565b60008261206057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f82111561062557600081815260208120601f850160051c810160208610156120a25750805b601f850160051c820191505b818110156120c1578281556001016120ae565b505050505050565b815167ffffffffffffffff8111156120e3576120e3611dc1565b6120f7816120f18454611fdc565b8461207b565b602080601f83116001811461212c57600084156121145750858301515b600019600386901b1c1916600185901b1785556120c1565b600085815260208120601f198616915b8281101561215b5788860151825594840194600190910190840161213c565b50858210156121795787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408152600061219c6040830185611caa565b602083820381850152600085546121b281611fdc565b808552600182811680156121cd57600181146121e757612215565b60ff1984168787015282151560051b870186019450612215565b896000528560002060005b8481101561220d5781548982018901529083019087016121f2565b880187019550505b50929998505050505050505050565b60008351612236818460208801611c86565b83519083019061224a818360208801611c86565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526122856080830184611caa565b9695505050505050565b6000602082840312156122a157600080fd5b8151610c7681611c53565b8181038181111561045157610451612016565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203375807f88a992ddc3403b102b1124ca52ff25fe658061afe9b033c4565eea6464736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000d738b778556fc66004bcf7f289fe652a2111eaf20000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000b546f70446f67436f72676900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035444430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TopDogCorgi
Arg [1] : _symbol (string): TDC
Arg [2] : _royaltyReceiver (address): 0xD738B778556FC66004Bcf7F289Fe652a2111eaF2
Arg [3] : _royaltyFee (uint96): 800

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000d738b778556fc66004bcf7f289fe652a2111eaf2
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 546f70446f67436f726769000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5444430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

72657:2771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74362:354;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;74362:354:0;;;;;;;;44648:100;;;:::i;:::-;;;;;;;:::i;46160:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:55:1;;;1679:74;;1667:2;1652:18;46160:171:0;1533:226:1;45678:416:0;;;;;;:::i;:::-;;:::i;:::-;;62669:113;62757:10;:17;62669:113;;;2370:25:1;;;2358:2;2343:18;62669:113:0;2224:177:1;46860:335:0;;;;;;:::i;:::-;;:::i;8184:442::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3184:55:1;;;3166:74;;3271:2;3256:18;;3249:34;;;;3139:18;8184:442:0;2992:297:1;62337:256:0;;;;;;:::i;:::-;;:::i;72832:41::-;;72869:4;72832:41;;74073:173;;;;;;:::i;:::-;;:::i;47266:185::-;;;;;;:::i;:::-;;:::i;74813:167::-;;;;;;:::i;:::-;;:::i;62859:233::-;;;;;;:::i;:::-;;:::i;75022:145::-;;;;;;:::i;:::-;;:::i;44358:223::-;;;;;;:::i;:::-;;:::i;72914:21::-;;;:::i;44089:207::-;;;;;;:::i;:::-;;:::i;2849:103::-;;;:::i;2201:87::-;2274:6;;-1:-1:-1;;;;;2274:6:0;2201:87;;73780:197;;;;;;:::i;:::-;;:::i;44817:104::-;;;:::i;72976:24::-;;;;;-1:-1:-1;;;;;72976:24:0;;;46403:155;;;;;;:::i;:::-;;:::i;47522:322::-;;;;;;:::i;:::-;;:::i;44992:281::-;;;;;;:::i;:::-;;:::i;75209:216::-;;;;;;:::i;:::-;;:::i;46629:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;46750:25:0;;;46726:4;46750:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46629:164;3107:201;;;;;;:::i;:::-;;:::i;74362:354::-;74511:4;74553:47;74588:11;74553:34;:47::i;:::-;:102;;;;74617:38;74643:11;74617:25;:38::i;:::-;74553:155;;;;74672:36;74696:11;74672:23;:36::i;:::-;74533:175;74362:354;-1:-1:-1;;74362:354:0:o;44648:100::-;44702:13;44735:5;44728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44648:100;:::o;46160:171::-;46236:7;46256:23;46271:7;46256:14;:23::i;:::-;-1:-1:-1;46299:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46299:24:0;;46160:171::o;45678:416::-;45759:13;45775:23;45790:7;45775:14;:23::i;:::-;45759:39;;45823:5;-1:-1:-1;;;;;45817:11:0;:2;-1:-1:-1;;;;;45817:11:0;;45809:57;;;;-1:-1:-1;;;45809:57:0;;7216:2:1;45809:57:0;;;7198:21:1;7255:2;7235:18;;;7228:30;7294:34;7274:18;;;7267:62;-1:-1:-1;;;7345:18:1;;;7338:31;7386:19;;45809:57:0;;;;;;;;;828:10;-1:-1:-1;;;;;45901:21:0;;;;:62;;-1:-1:-1;45926:37:0;45943:5;828:10;46629:164;:::i;45926:37::-;45879:173;;;;-1:-1:-1;;;45879:173:0;;7618:2:1;45879:173:0;;;7600:21:1;7657:2;7637:18;;;7630:30;7696:34;7676:18;;;7669:62;7767:31;7747:18;;;7740:59;7816:19;;45879:173:0;7416:425:1;45879:173:0;46065:21;46074:2;46078:7;46065:8;:21::i;:::-;45748:346;45678:416;;:::o;46860:335::-;47055:41;828:10;47088:7;47055:18;:41::i;:::-;47047:99;;;;-1:-1:-1;;;47047:99:0;;8048:2:1;47047:99:0;;;8030:21:1;8087:2;8067:18;;;8060:30;8126:34;8106:18;;;8099:62;-1:-1:-1;;;8177:18:1;;;8170:43;8230:19;;47047:99:0;7846:409:1;47047:99:0;47159:28;47169:4;47175:2;47179:7;47159:9;:28::i;8184:442::-;8281:7;8339:27;;;:17;:27;;;;;;;;8310:56;;;;;;;;;-1:-1:-1;;;;;8310:56:0;;;;;-1:-1:-1;;;8310:56:0;;;-1:-1:-1;;;;;8310:56:0;;;;;;;;8281:7;;8379:92;;-1:-1:-1;8430:29:0;;;;;;;;;8440:19;8430:29;-1:-1:-1;;;;;8430:29:0;;;;-1:-1:-1;;;8430:29:0;;-1:-1:-1;;;;;8430:29:0;;;;;8379:92;8521:23;;;;8483:21;;8992:5;;8508:36;;-1:-1:-1;;;;;8508:36:0;:10;:36;:::i;:::-;8507:58;;;;:::i;:::-;8586:16;;;;;-1:-1:-1;8184:442:0;;-1:-1:-1;;;;8184:442:0:o;62337:256::-;62434:7;62470:23;62487:5;62470:16;:23::i;:::-;62462:5;:31;62454:87;;;;-1:-1:-1;;;62454:87:0;;9121:2:1;62454:87:0;;;9103:21:1;9160:2;9140:18;;;9133:30;9199:34;9179:18;;;9172:62;-1:-1:-1;;;9250:18:1;;;9243:41;9301:19;;62454:87:0;8919:407:1;62454:87:0;-1:-1:-1;;;;;;62559:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62337:256::o;74073:173::-;74132:4;72869;74153:8;:22;74149:54;;74184:19;;-1:-1:-1;;;74184:19:0;;;;;;;;;;;74149:54;49647:4;49245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49245:16:0;49671:31;;74221:17;49582:128;47266:185;47404:39;47421:4;47427:2;47431:7;47404:39;;;;;;;;;;;;:16;:39::i;74813:167::-;2087:13;:11;:13::i;:::-;74889:9:::1;::::0;-1:-1:-1;;;;;74889:9:0::1;:23:::0;74885:54:::1;;74921:18;;-1:-1:-1::0;;;74921:18:0::1;;;;;;;;;;;74885:54;74950:9;:22:::0;;-1:-1:-1;;;;;;74950:22:0::1;-1:-1:-1::0;;;;;74950:22:0;;;::::1;::::0;;;::::1;::::0;;74813:167::o;62859:233::-;62934:7;62970:30;62757:10;:17;;62669:113;62970:30;62962:5;:38;62954:95;;;;-1:-1:-1;;;62954:95:0;;9533:2:1;62954:95:0;;;9515:21:1;9572:2;9552:18;;;9545:30;9611:34;9591:18;;;9584:62;-1:-1:-1;;;9662:18:1;;;9655:42;9714:19;;62954:95:0;9331:408:1;62954:95:0;63067:10;63078:5;63067:17;;;;;;;;:::i;:::-;;;;;;;;;63060:24;;62859:233;;;:::o;75022:145::-;2087:13;:11;:13::i;:::-;75092:7:::1;:14;75102:4:::0;75092:7;:14:::1;:::i;:::-;;75133:10;-1:-1:-1::0;;;;;75122:37:0::1;;75145:4;75151:7;75122:37;;;;;;;:::i;:::-;;;;;;;;75022:145:::0;:::o;44358:223::-;44430:7;49245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49245:16:0;;44494:56;;;;-1:-1:-1;;;44494:56:0;;13380:2:1;44494:56:0;;;13362:21:1;13419:2;13399:18;;;13392:30;13458:26;13438:18;;;13431:54;13502:18;;44494:56:0;13178:348:1;72914:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44089:207::-;44161:7;-1:-1:-1;;;;;44189:19:0;;44181:73;;;;-1:-1:-1;;;44181:73:0;;13733:2:1;44181:73:0;;;13715:21:1;13772:2;13752:18;;;13745:30;13811:34;13791:18;;;13784:62;-1:-1:-1;;;13862:18:1;;;13855:39;13911:19;;44181:73:0;13531:405:1;44181:73:0;-1:-1:-1;;;;;;44272:16:0;;;;;:9;:16;;;;;;;44089:207::o;2849:103::-;2087:13;:11;:13::i;:::-;2914:30:::1;2941:1;2914:18;:30::i;:::-;2849:103::o:0;73780:197::-;73392:9;;-1:-1:-1;;;;;73392:9:0;73405:10;73392:23;73388:51;;73424:15;;-1:-1:-1;;;73424:15:0;;;;;;;;;;;73388:51;71871:21:::1;:19;:21::i;:::-;72869:4:::2;73880:8;:22;73876:54;;73911:19;;-1:-1:-1::0;;;73911:19:0::2;;;;;;;;;;;73876:54;73941:28;73951:7;73960:8;73941:9;:28::i;:::-;71915:20:::1;71309:1:::0;72435:7;:22;72252:213;71915:20:::1;73780:197:::0;;:::o;44817:104::-;44873:13;44906:7;44899:14;;;;;:::i;46403:155::-;46498:52;828:10;46531:8;46541;46498:18;:52::i;47522:322::-;47696:41;828:10;47729:7;47696:18;:41::i;:::-;47688:99;;;;-1:-1:-1;;;47688:99:0;;8048:2:1;47688:99:0;;;8030:21:1;8087:2;8067:18;;;8060:30;8126:34;8106:18;;;8099:62;-1:-1:-1;;;8177:18:1;;;8170:43;8230:19;;47688:99:0;7846:409:1;47688:99:0;47798:38;47812:4;47818:2;47822:7;47831:4;47798:13;:38::i;:::-;47522:322;;;;:::o;44992:281::-;45065:13;45091:23;45106:7;45091:14;:23::i;:::-;45127:21;45151:10;:8;:10::i;:::-;45127:34;;45203:1;45185:7;45179:21;:25;:86;;;;;;;;;;;;;;;;;45231:7;45240:18;:7;:16;:18::i;:::-;45214:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45179:86;45172:93;44992:281;-1:-1:-1;;;44992:281:0:o;75209:216::-;2087:13;:11;:13::i;:::-;75308:49:::1;75327:16;75345:11;75308:18;:49::i;:::-;75373:44;::::0;-1:-1:-1;;;;;14604:39:1;;14586:58;;-1:-1:-1;;;;;75373:44:0;::::1;::::0;::::1;::::0;14574:2:1;14559:18;75373:44:0::1;;;;;;;75209:216:::0;;:::o;3107:201::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;3196:22:0;::::1;3188:73;;;::::0;-1:-1:-1;;;3188:73:0;;14857:2:1;3188:73:0::1;::::0;::::1;14839:21:1::0;14896:2;14876:18;;;14869:30;14935:34;14915:18;;;14908:62;-1:-1:-1;;;14986:18:1;;;14979:36;15032:19;;3188:73:0::1;14655:402:1::0;3188:73:0::1;3272:28;3291:8;3272:18;:28::i;:::-;3107:201:::0;:::o;62029:224::-;62131:4;-1:-1:-1;;;;;;62155:50:0;;-1:-1:-1;;;62155:50:0;;:90;;;62209:36;62233:11;62209:23;:36::i;7914:215::-;8016:4;-1:-1:-1;;;;;;8040:41:0;;-1:-1:-1;;;8040:41:0;;:81;;;8085:36;8109:11;8085:23;:36::i;55979:135::-;49647:4;49245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49245:16:0;56053:53;;;;-1:-1:-1;;;56053:53:0;;13380:2:1;56053:53:0;;;13362:21:1;13419:2;13399:18;;;13392:30;13458:26;13438:18;;;13431:54;13502:18;;56053:53:0;13178:348:1;55258:174:0;55333:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;55333:29:0;-1:-1:-1;;;;;55333:29:0;;;;;;;;:24;;55387:23;55333:24;55387:14;:23::i;:::-;-1:-1:-1;;;;;55378:46:0;;;;;;;;;;;55258:174;;:::o;49877:264::-;49970:4;49987:13;50003:23;50018:7;50003:14;:23::i;:::-;49987:39;;50056:5;-1:-1:-1;;;;;50045:16:0;:7;-1:-1:-1;;;;;50045:16:0;;:52;;;-1:-1:-1;;;;;;46750:25:0;;;46726:4;46750:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50065:32;50045:87;;;;50125:7;-1:-1:-1;;;;;50101:31:0;:20;50113:7;50101:11;:20::i;:::-;-1:-1:-1;;;;;50101:31:0;;50045:87;50037:96;49877:264;-1:-1:-1;;;;49877:264:0:o;53876:1263::-;54035:4;-1:-1:-1;;;;;54008:31:0;:23;54023:7;54008:14;:23::i;:::-;-1:-1:-1;;;;;54008:31:0;;54000:81;;;;-1:-1:-1;;;54000:81:0;;15264:2:1;54000:81:0;;;15246:21:1;15303:2;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;-1:-1:-1;;;15393:18:1;;;15386:35;15438:19;;54000:81:0;15062:401:1;54000:81:0;-1:-1:-1;;;;;54100:16:0;;54092:65;;;;-1:-1:-1;;;54092:65:0;;15670:2:1;54092:65:0;;;15652:21:1;15709:2;15689:18;;;15682:30;15748:34;15728:18;;;15721:62;-1:-1:-1;;;15799:18:1;;;15792:34;15843:19;;54092:65:0;15468:400:1;54092:65:0;54170:42;54191:4;54197:2;54201:7;54210:1;54170:20;:42::i;:::-;54342:4;-1:-1:-1;;;;;54315:31:0;:23;54330:7;54315:14;:23::i;:::-;-1:-1:-1;;;;;54315:31:0;;54307:81;;;;-1:-1:-1;;;54307:81:0;;15264:2:1;54307:81:0;;;15246:21:1;15303:2;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;-1:-1:-1;;;15393:18:1;;;15386:35;15438:19;;54307:81:0;15062:401:1;54307:81:0;54460:24;;;;:15;:24;;;;;;;;54453:31;;-1:-1:-1;;;;;;54453:31:0;;;;;;-1:-1:-1;;;;;54936:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;54936:20:0;;;54971:13;;;;;;;;;:18;;54453:31;54971:18;;;55011:16;;;:7;:16;;;;;;:21;;;;;;;;;;55050:27;;54476:7;;55050:27;;;45748:346;45678:416;;:::o;2366:132::-;2274:6;;-1:-1:-1;;;;;2274:6:0;828:10;2430:23;2422:68;;;;-1:-1:-1;;;2422:68:0;;16075:2:1;2422:68:0;;;16057:21:1;;;16094:18;;;16087:30;16153:34;16133:18;;;16126:62;16205:18;;2422:68:0;15873:356:1;3468:191:0;3561:6;;;-1:-1:-1;;;;;3578:17:0;;;-1:-1:-1;;;;;;3578:17:0;;;;;;;3611:40;;3561:6;;;3578:17;3561:6;;3611:40;;3542:16;;3611:40;3531:128;3468:191;:::o;71951:293::-;71353:1;72085:7;;:19;72077:63;;;;-1:-1:-1;;;72077:63:0;;16436:2:1;72077:63:0;;;16418:21:1;16475:2;16455:18;;;16448:30;16514:33;16494:18;;;16487:61;16565:18;;72077:63:0;16234:355:1;72077:63:0;71353:1;72218:7;:18;71951:293::o;50483:110::-;50559:26;50569:2;50573:7;50559:26;;;;;;;;;;;;:9;:26::i;55575:315::-;55730:8;-1:-1:-1;;;;;55721:17:0;:5;-1:-1:-1;;;;;55721:17:0;;55713:55;;;;-1:-1:-1;;;55713:55:0;;16796:2:1;55713:55:0;;;16778:21:1;16835:2;16815:18;;;16808:30;16874:27;16854:18;;;16847:55;16919:18;;55713:55:0;16594:349:1;55713:55:0;-1:-1:-1;;;;;55779:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;55779:46:0;;;;;;;;;;55841:41;;540::1;;;55841::0;;513:18:1;55841:41:0;;;;;;;55575:315;;;:::o;48725:313::-;48881:28;48891:4;48897:2;48901:7;48881:9;:28::i;:::-;48928:47;48951:4;48957:2;48961:7;48970:4;48928:22;:47::i;:::-;48920:110;;;;-1:-1:-1;;;48920:110:0;;17150:2:1;48920:110:0;;;17132:21:1;17189:2;17169:18;;;17162:30;17228:34;17208:18;;;17201:62;-1:-1:-1;;;17279:18:1;;;17272:48;17337:19;;48920:110:0;16948:414:1;74254:100:0;74306:13;74339:7;74332:14;;;;;:::i;40415:716::-;40471:13;40522:14;40539:17;40550:5;40539:10;:17::i;:::-;40559:1;40539:21;40522:38;;40575:20;40609:6;40598:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40598:18:0;-1:-1:-1;40575:41:0;-1:-1:-1;40740:28:0;;;40756:2;40740:28;40797:288;-1:-1:-1;;40829:5:0;40971:8;40966:2;40955:14;;40950:30;40829:5;40937:44;41027:2;41018:11;;;-1:-1:-1;41048:21:0;40797:288;41048:21;-1:-1:-1;41106:6:0;40415:716;-1:-1:-1;;;40415:716:0:o;9276:332::-;8992:5;-1:-1:-1;;;;;9379:33:0;;;;9371:88;;;;-1:-1:-1;;;9371:88:0;;17569:2:1;9371:88:0;;;17551:21:1;17608:2;17588:18;;;17581:30;17647:34;17627:18;;;17620:62;-1:-1:-1;;;17698:18:1;;;17691:40;17748:19;;9371:88:0;17367:406:1;9371:88:0;-1:-1:-1;;;;;9478:22:0;;9470:60;;;;-1:-1:-1;;;9470:60:0;;17980:2:1;9470:60:0;;;17962:21:1;18019:2;17999:18;;;17992:30;18058:27;18038:18;;;18031:55;18103:18;;9470:60:0;17778:349:1;9470:60:0;9565:35;;;;;;;;;-1:-1:-1;;;;;9565:35:0;;;;;;-1:-1:-1;;;;;9565:35:0;;;;;;;;;;-1:-1:-1;;;9543:57:0;;;;:19;:57;9276:332::o;43720:305::-;43822:4;-1:-1:-1;;;;;;43859:40:0;;-1:-1:-1;;;43859:40:0;;:105;;-1:-1:-1;;;;;;;43916:48:0;;-1:-1:-1;;;43916:48:0;43859:105;:158;;;-1:-1:-1;;;;;;;;;;6469:40:0;;;43981:36;6360:157;63166:915;63433:1;63421:9;:13;63417:222;;;63564:63;;-1:-1:-1;;;63564:63:0;;18334:2:1;63564:63:0;;;18316:21:1;18373:2;18353:18;;;18346:30;18412:34;18392:18;;;18385:62;18483:23;18463:18;;;18456:51;18524:19;;63564:63:0;18132:417:1;63417:222:0;63669:12;-1:-1:-1;;;;;63698:18:0;;63694:187;;63733:40;63765:7;64908:10;:17;;64881:24;;;;:15;:24;;;;;:44;;;64936:24;;;;;;;;;;;;64804:164;63733:40;63694:187;;;63803:2;-1:-1:-1;;;;;63795:10:0;:4;-1:-1:-1;;;;;63795:10:0;;63791:90;;63822:47;63855:4;63861:7;63822:32;:47::i;:::-;-1:-1:-1;;;;;63895:16:0;;63891:183;;63928:45;63965:7;63928:36;:45::i;:::-;63891:183;;;64001:4;-1:-1:-1;;;;;63995:10:0;:2;-1:-1:-1;;;;;63995:10:0;;63991:83;;64022:40;64050:2;64054:7;64022:27;:40::i;:::-;63332:749;63166:915;;;;:::o;50820:319::-;50949:18;50955:2;50959:7;50949:5;:18::i;:::-;51000:53;51031:1;51035:2;51039:7;51048:4;51000:22;:53::i;:::-;50978:153;;;;-1:-1:-1;;;50978:153:0;;17150:2:1;50978:153:0;;;17132:21:1;17189:2;17169:18;;;17162:30;17228:34;17208:18;;;17201:62;-1:-1:-1;;;17279:18:1;;;17272:48;17337:19;;50978:153:0;16948:414:1;56678:853:0;56832:4;-1:-1:-1;;;;;56853:13:0;;19200:19;:23;56849:675;;56889:71;;-1:-1:-1;;;56889:71:0;;-1:-1:-1;;;;;56889:36:0;;;;;:71;;828:10;;56940:4;;56946:7;;56955:4;;56889:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56889:71:0;;;;;;;;-1:-1:-1;;56889:71:0;;;;;;;;;;;;:::i;:::-;;;56885:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57130:6;:13;57147:1;57130:18;57126:328;;57173:60;;-1:-1:-1;;;57173:60:0;;17150:2:1;57173:60:0;;;17132:21:1;17189:2;17169:18;;;17162:30;17228:34;17208:18;;;17201:62;-1:-1:-1;;;17279:18:1;;;17272:48;17337:19;;57173:60:0;16948:414:1;57126:328:0;57404:6;57398:13;57389:6;57385:2;57381:15;57374:38;56885:584;-1:-1:-1;;;;;;57011:51:0;-1:-1:-1;;;57011:51:0;;-1:-1:-1;57004:58:0;;56849:675;-1:-1:-1;57508:4:0;56678:853;;;;;;:::o;37277:922::-;37330:7;;37417:6;37408:15;;37404:102;;37453:6;37444:15;;;-1:-1:-1;37488:2:0;37478:12;37404:102;37533:6;37524:5;:15;37520:102;;37569:6;37560:15;;;-1:-1:-1;37604:2:0;37594:12;37520:102;37649:6;37640:5;:15;37636:102;;37685:6;37676:15;;;-1:-1:-1;37720:2:0;37710:12;37636:102;37765:5;37756;:14;37752:99;;37800:5;37791:14;;;-1:-1:-1;37834:1:0;37824:11;37752:99;37878:5;37869;:14;37865:99;;37913:5;37904:14;;;-1:-1:-1;37947:1:0;37937:11;37865:99;37991:5;37982;:14;37978:99;;38026:5;38017:14;;;-1:-1:-1;38060:1:0;38050:11;37978:99;38104:5;38095;:14;38091:66;;38140:1;38130:11;38185:6;37277:922;-1:-1:-1;;37277:922:0:o;65595:988::-;65861:22;65911:1;65886:22;65903:4;65886:16;:22::i;:::-;:26;;;;:::i;:::-;65923:18;65944:26;;;:17;:26;;;;;;65861:51;;-1:-1:-1;66077:28:0;;;66073:328;;-1:-1:-1;;;;;66144:18:0;;66122:19;66144:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66195:30;;;;;;:44;;;66312:30;;:17;:30;;;;;:43;;;66073:328;-1:-1:-1;66497:26:0;;;;:17;:26;;;;;;;;66490:33;;;-1:-1:-1;;;;;66541:18:0;;;;;:12;:18;;;;;:34;;;;;;;66534:41;65595:988::o;66878:1079::-;67156:10;:17;67131:22;;67156:21;;67176:1;;67156:21;:::i;:::-;67188:18;67209:24;;;:15;:24;;;;;;67582:10;:26;;67131:46;;-1:-1:-1;67209:24:0;;67131:46;;67582:26;;;;;;:::i;:::-;;;;;;;;;67560:48;;67646:11;67621:10;67632;67621:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67726:28;;;:15;:28;;;;;;;:41;;;67898:24;;;;;67891:31;67933:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66949:1008;;;66878:1079;:::o;64382:221::-;64467:14;64484:20;64501:2;64484:16;:20::i;:::-;-1:-1:-1;;;;;64515:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64560:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64382:221:0:o;51475:942::-;-1:-1:-1;;;;;51555:16:0;;51547:61;;;;-1:-1:-1;;;51547:61:0;;19792:2:1;51547:61:0;;;19774:21:1;;;19811:18;;;19804:30;19870:34;19850:18;;;19843:62;19922:18;;51547:61:0;19590:356:1;51547:61:0;49647:4;49245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49245:16:0;49671:31;51619:58;;;;-1:-1:-1;;;51619:58:0;;20153:2:1;51619:58:0;;;20135:21:1;20192:2;20172:18;;;20165:30;20231;20211:18;;;20204:58;20279:18;;51619:58:0;19951:352:1;51619:58:0;51690:48;51719:1;51723:2;51727:7;51736:1;51690:20;:48::i;:::-;49647:4;49245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49245:16:0;49671:31;51828:58;;;;-1:-1:-1;;;51828:58:0;;20153:2:1;51828:58:0;;;20135:21:1;20192:2;20172:18;;;20165:30;20231;20211:18;;;20204:58;20279:18;;51828:58:0;19951:352:1;51828:58:0;-1:-1:-1;;;;;52235:13:0;;;;;;:9;:13;;;;;;;;:18;;52252:1;52235:18;;;52277:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52277:21:0;;;;;52316:33;52285:7;;52235:13;;52316:33;;52235:13;;52316:33;73780:197;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1764:196::-;1832:20;;-1:-1:-1;;;;;1881:54:1;;1871:65;;1861:93;;1950:1;1947;1940:12;1861:93;1764:196;;;:::o;1965:254::-;2033:6;2041;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;2133:29;2152:9;2133:29;:::i;:::-;2123:39;2209:2;2194:18;;;;2181:32;;-1:-1:-1;;;1965:254:1:o;2406:328::-;2483:6;2491;2499;2552:2;2540:9;2531:7;2527:23;2523:32;2520:52;;;2568:1;2565;2558:12;2520:52;2591:29;2610:9;2591:29;:::i;:::-;2581:39;;2639:38;2673:2;2662:9;2658:18;2639:38;:::i;:::-;2629:48;;2724:2;2713:9;2709:18;2696:32;2686:42;;2406:328;;;;;:::o;2739:248::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;-1:-1:-1;;2907:23:1;;;2977:2;2962:18;;;2949:32;;-1:-1:-1;2739:248:1:o;3294:186::-;3353:6;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3445:29;3464:9;3445:29;:::i;3485:127::-;3546:10;3541:3;3537:20;3534:1;3527:31;3577:4;3574:1;3567:15;3601:4;3598:1;3591:15;3617:632;3682:5;3712:18;3753:2;3745:6;3742:14;3739:40;;;3759:18;;:::i;:::-;3834:2;3828:9;3802:2;3888:15;;-1:-1:-1;;3884:24:1;;;3910:2;3880:33;3876:42;3864:55;;;3934:18;;;3954:22;;;3931:46;3928:72;;;3980:18;;:::i;:::-;4020:10;4016:2;4009:22;4049:6;4040:15;;4079:6;4071;4064:22;4119:3;4110:6;4105:3;4101:16;4098:25;4095:45;;;4136:1;4133;4126:12;4095:45;4186:6;4181:3;4174:4;4166:6;4162:17;4149:44;4241:1;4234:4;4225:6;4217;4213:19;4209:30;4202:41;;;;3617:632;;;;;:::o;4254:451::-;4323:6;4376:2;4364:9;4355:7;4351:23;4347:32;4344:52;;;4392:1;4389;4382:12;4344:52;4432:9;4419:23;4465:18;4457:6;4454:30;4451:50;;;4497:1;4494;4487:12;4451:50;4520:22;;4573:4;4565:13;;4561:27;-1:-1:-1;4551:55:1;;4602:1;4599;4592:12;4551:55;4625:74;4691:7;4686:2;4673:16;4668:2;4664;4660:11;4625:74;:::i;4710:254::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4891:9;4878:23;4868:33;;4920:38;4954:2;4943:9;4939:18;4920:38;:::i;:::-;4910:48;;4710:254;;;;;:::o;4969:347::-;5034:6;5042;5095:2;5083:9;5074:7;5070:23;5066:32;5063:52;;;5111:1;5108;5101:12;5063:52;5134:29;5153:9;5134:29;:::i;:::-;5124:39;;5213:2;5202:9;5198:18;5185:32;5260:5;5253:13;5246:21;5239:5;5236:32;5226:60;;5282:1;5279;5272:12;5226:60;5305:5;5295:15;;;4969:347;;;;;:::o;5321:667::-;5416:6;5424;5432;5440;5493:3;5481:9;5472:7;5468:23;5464:33;5461:53;;;5510:1;5507;5500:12;5461:53;5533:29;5552:9;5533:29;:::i;:::-;5523:39;;5581:38;5615:2;5604:9;5600:18;5581:38;:::i;:::-;5571:48;;5666:2;5655:9;5651:18;5638:32;5628:42;;5721:2;5710:9;5706:18;5693:32;5748:18;5740:6;5737:30;5734:50;;;5780:1;5777;5770:12;5734:50;5803:22;;5856:4;5848:13;;5844:27;-1:-1:-1;5834:55:1;;5885:1;5882;5875:12;5834:55;5908:74;5974:7;5969:2;5956:16;5951:2;5947;5943:11;5908:74;:::i;:::-;5898:84;;;5321:667;;;;;;;:::o;5993:366::-;6060:6;6068;6121:2;6109:9;6100:7;6096:23;6092:32;6089:52;;;6137:1;6134;6127:12;6089:52;6160:29;6179:9;6160:29;:::i;:::-;6150:39;;6239:2;6228:9;6224:18;6211:32;-1:-1:-1;;;;;6276:5:1;6272:38;6265:5;6262:49;6252:77;;6325:1;6322;6315:12;6364:260;6432:6;6440;6493:2;6481:9;6472:7;6468:23;6464:32;6461:52;;;6509:1;6506;6499:12;6461:52;6532:29;6551:9;6532:29;:::i;:::-;6522:39;;6580:38;6614:2;6603:9;6599:18;6580:38;:::i;6629:380::-;6708:1;6704:12;;;;6751;;;6772:61;;6826:4;6818:6;6814:17;6804:27;;6772:61;6879:2;6871:6;6868:14;6848:18;6845:38;6842:161;;6925:10;6920:3;6916:20;6913:1;6906:31;6960:4;6957:1;6950:15;6988:4;6985:1;6978:15;6842:161;;6629:380;;;:::o;8260:127::-;8321:10;8316:3;8312:20;8309:1;8302:31;8352:4;8349:1;8342:15;8376:4;8373:1;8366:15;8392:168;8465:9;;;8496;;8513:15;;;8507:22;;8493:37;8483:71;;8534:18;;:::i;8697:217::-;8737:1;8763;8753:132;;8807:10;8802:3;8798:20;8795:1;8788:31;8842:4;8839:1;8832:15;8870:4;8867:1;8860:15;8753:132;-1:-1:-1;8899:9:1;;8697:217::o;9744:127::-;9805:10;9800:3;9796:20;9793:1;9786:31;9836:4;9833:1;9826:15;9860:4;9857:1;9850:15;10002:545;10104:2;10099:3;10096:11;10093:448;;;10140:1;10165:5;10161:2;10154:17;10210:4;10206:2;10196:19;10280:2;10268:10;10264:19;10261:1;10257:27;10251:4;10247:38;10316:4;10304:10;10301:20;10298:47;;;-1:-1:-1;10339:4:1;10298:47;10394:2;10389:3;10385:12;10382:1;10378:20;10372:4;10368:31;10358:41;;10449:82;10467:2;10460:5;10457:13;10449:82;;;10512:17;;;10493:1;10482:13;10449:82;;;10453:3;;;10002:545;;;:::o;10723:1352::-;10849:3;10843:10;10876:18;10868:6;10865:30;10862:56;;;10898:18;;:::i;:::-;10927:97;11017:6;10977:38;11009:4;11003:11;10977:38;:::i;:::-;10971:4;10927:97;:::i;:::-;11079:4;;11143:2;11132:14;;11160:1;11155:663;;;;11862:1;11879:6;11876:89;;;-1:-1:-1;11931:19:1;;;11925:26;11876:89;-1:-1:-1;;10680:1:1;10676:11;;;10672:24;10668:29;10658:40;10704:1;10700:11;;;10655:57;11978:81;;11125:944;;11155:663;9949:1;9942:14;;;9986:4;9973:18;;-1:-1:-1;;11191:20:1;;;11309:236;11323:7;11320:1;11317:14;11309:236;;;11412:19;;;11406:26;11391:42;;11504:27;;;;11472:1;11460:14;;;;11339:19;;11309:236;;;11313:3;11573:6;11564:7;11561:19;11558:201;;;11634:19;;;11628:26;-1:-1:-1;;11717:1:1;11713:14;;;11729:3;11709:24;11705:37;11701:42;11686:58;11671:74;;11558:201;-1:-1:-1;;;;;11805:1:1;11789:14;;;11785:22;11772:36;;-1:-1:-1;10723:1352:1:o;12080:1093::-;12274:2;12263:9;12256:21;12237:4;12300:45;12341:2;12330:9;12326:18;12318:6;12300:45;:::i;:::-;12364:2;12414:9;12406:6;12402:22;12397:2;12386:9;12382:18;12375:50;12445:1;12478:6;12472:13;12508:36;12534:9;12508:36;:::i;:::-;12553:22;;;12594:1;12611:18;;;12638:152;;;;12804:1;12799:348;;;;12604:543;;12638:152;-1:-1:-1;;12683:24:1;;12666:15;;;12659:49;12758:14;;12751:22;12748:1;12744:30;12732:43;;12728:52;;;-1:-1:-1;12638:152:1;;12799:348;12830:6;12827:1;12820:17;12878:2;12875:1;12865:16;12903:1;12917:177;12931:6;12928:1;12925:13;12917:177;;;13021:14;;13000;;;12996:23;;12989:47;13064:16;;;;12946:10;;12917:177;;;13118:14;;13114:23;;;-1:-1:-1;;12604:543:1;-1:-1:-1;13164:3:1;;12080:1093;-1:-1:-1;;;;;;;;;12080:1093:1:o;13941:496::-;14120:3;14158:6;14152:13;14174:66;14233:6;14228:3;14221:4;14213:6;14209:17;14174:66;:::i;:::-;14303:13;;14262:16;;;;14325:70;14303:13;14262:16;14372:4;14360:17;;14325:70;:::i;:::-;14411:20;;13941:496;-1:-1:-1;;;;13941:496:1:o;18554:512::-;18748:4;-1:-1:-1;;;;;18858:2:1;18850:6;18846:15;18835:9;18828:34;18910:2;18902:6;18898:15;18893:2;18882:9;18878:18;18871:43;;18950:6;18945:2;18934:9;18930:18;18923:34;18993:3;18988:2;18977:9;18973:18;18966:31;19014:46;19055:3;19044:9;19040:19;19032:6;19014:46;:::i;:::-;19006:54;18554:512;-1:-1:-1;;;;;;18554:512:1:o;19071:249::-;19140:6;19193:2;19181:9;19172:7;19168:23;19164:32;19161:52;;;19209:1;19206;19199:12;19161:52;19241:9;19235:16;19260:30;19284:5;19260:30;:::i;19325:128::-;19392:9;;;19413:11;;;19410:37;;;19427:18;;:::i;19458:127::-;19519:10;19514:3;19510:20;19507:1;19500:31;19550:4;19547:1;19540:15;19574:4;19571:1;19564:15

Swarm Source

ipfs://3375807f88a992ddc3403b102b1124ca52ff25fe658061afe9b033c4565eea64
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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