ETH Price: $2,973.54 (-4.20%)
Gas: 2 Gwei

Token

Rescue Dogz (DOGZ)
 

Overview

Max Total Supply

516 DOGZ

Holders

480

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DOGZ
0x1c7c15c3b23d5f6ec287ba463fb130f522e4f2a0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RescueDogz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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/Address.sol


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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/rescuedogz.sol


pragma solidity ^0.8.8;




/* 
     ____                             ____
    |  _ \ ___  ___  ___ _   _  ___  |  _ \  ___   __ _ ____
    | |_) / _ \/ __|/ __| | | |/ _ \ | | | |/ _ \ / _` |_  /
    |  _ <  __/\__ \ (__| |_| |  __/ | |_| | (_) | (_| |/ /
    |_| \_\___||___/\___|\__,_|\___| |____/ \___/ \__, /___|
                                                  |___/

                      www.rescuedogz.io
*/

contract RescueDogz is ERC721Enumerable, Ownable, ReentrancyGuard {
    string baseTokenURI;
    uint256 private reserved = 100;
    uint256 private price = 0.03 ether;
    bool public paused = false;

    // Set provenance hash
    string public DOGZ_PROVENANCE = "";

    mapping(address => uint256) public addressMintedBalance;

    // withdraw addresses
    address designer = 0x8dc42ab1229D5ea9372a69BC4a42aFc1D01Ae801;
    address developer = 0x68D4b5EED105d26ADad7d3FD33523AC00cfAfd3b;

    constructor(string memory baseURI) ERC721("Rescue Dogz", "DOGZ")  {
        setBaseURI(baseURI);

        _safeMint(designer, 0);
        _safeMint(developer, 1);
    }

    // Set provenance hash
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        DOGZ_PROVENANCE = provenanceHash;
    }

    // Minting process
    function mint(uint256 mintQty) public payable nonReentrant {
        uint256 supply = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(!paused,                                   "Sale is paused");
        require(mintQty > 0,                               "Mint at least 1 NFT");
        require(mintQty <= 10,                             "You can mint a maximum of 10");
        require(supply + mintQty < 10000 - reserved,       "Exceeds maximum supply");

        // The first 500 are free
        if (supply < 500) {
            if (supply < 250) {
                require(ownerMintedCount + mintQty <= 1,   "Max NFT per address exceeded for the first 250");
            }
            else {
                require(ownerMintedCount + mintQty <= 2,   "Max NFT per address exceeded for the first 500");
            }

            require(mintQty == 1,                          "Limited to 1 per mint at launch time");
            require(msg.value >= 0.00 ether * mintQty,     "Ether sent is not correct");
        }

        // There is a fee for 500+
        if (supply >= 500) {
            require(ownerMintedCount + mintQty <= 10,      "Exceeds max NFT per address");
            require(msg.value >= price * mintQty,          "Ether sent is not correct");
        }

        // Mint
        for(uint256 i; i < mintQty; i++){
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    // Retrieve tokens belonging to address
    function walletOfOwner(address owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function getPrice() public view returns (uint256){
        uint256 supply = totalSupply();
        uint256 currentPrice = (supply < 500) ? 0.0 ether : price;
        return currentPrice;
    }

    function giveAway(address to, uint256 amount) external nonReentrant onlyOwner {
        require(amount <= reserved, "Exceeds reserved supply");

        uint256 supply = totalSupply();
        for(uint256 i; i < amount; i++){
            _safeMint(to, supply + i);
        }

        reserved -= amount;
    }

    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 half_amount = address(this).balance / 2;
        require(payable(designer).send(half_amount));
        require(payable(developer).send(half_amount));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOGZ_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"mintQty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6064600d55666a94d74f430000600e55600f805460ff1916905560a06040819052600060808190526200003591601091620008b4565b50601280546001600160a01b0319908116738dc42ab1229d5ea9372a69bc4a42afc1d01ae80117909155601380549091167368d4b5eed105d26adad7d3fd33523ac00cfafd3b1790553480156200008b57600080fd5b506040516200327138038062003271833981016040819052620000ae91620009a3565b604080518082018252600b81526a2932b9b1bab2902237b3bd60a91b6020808301918252835180850190945260048452632227a3ad60e11b908401528151919291620000fd91600091620008b4565b50805162000113906001906020840190620008b4565b505050620001306200012a6200017960201b60201c565b6200017d565b6001600b556200014081620001cf565b60125462000159906001600160a01b0316600062000248565b60135462000172906001600160a01b0316600162000248565b5062000b98565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200022f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200024490600c906020840190620008b4565b5050565b620002448282604051806020016040528060008152506200026a60201b60201c565b620002768383620002e2565b62000285600084848462000438565b620002dd5760405162461bcd60e51b815260206004820152603260248201526000805160206200325183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000226565b505050565b6001600160a01b0382166200033a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000226565b6000818152600260205260409020546001600160a01b031615620003a15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000226565b620003af6000838362000591565b6001600160a01b0382166000908152600360205260408120805460019290620003da90849062000a71565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000459846001600160a01b03166200066d60201b6200153c1760201c565b156200058557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200049390339089908890889060040162000a8c565b6020604051808303816000875af1925050508015620004d1575060408051601f3d908101601f19168201909252620004ce9181019062000ae2565b60015b6200056a573d80801562000502576040519150601f19603f3d011682016040523d82523d6000602084013e62000507565b606091505b508051620005625760405162461bcd60e51b815260206004820152603260248201526000805160206200325183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000226565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000589565b5060015b949350505050565b620005a9838383620002dd60201b620008801760201c565b6001600160a01b03831662000607576200060181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200062d565b816001600160a01b0316836001600160a01b0316146200062d576200062d838262000673565b6001600160a01b0382166200064757620002dd8162000720565b826001600160a01b0316826001600160a01b031614620002dd57620002dd8282620007da565b3b151590565b600060016200068d846200082b60201b62000b911760201c565b62000699919062000b15565b600083815260076020526040902054909150808214620006ed576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007349060019062000b15565b600083815260096020526040812054600880549394509092849081106200075f576200075f62000b2f565b90600052602060002001549050806008838154811062000783576200078362000b2f565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620007be57620007be62000b45565b6001900381819060005260206000200160009055905550505050565b6000620007f2836200082b60201b62000b911760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620008985760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000226565b506001600160a01b031660009081526003602052604090205490565b828054620008c29062000b5b565b90600052602060002090601f016020900481019282620008e6576000855562000931565b82601f106200090157805160ff191683800117855562000931565b8280016001018555821562000931579182015b828111156200093157825182559160200191906001019062000914565b506200093f92915062000943565b5090565b5b808211156200093f576000815560010162000944565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200098d57818101518382015260200162000973565b838111156200099d576000848401525b50505050565b600060208284031215620009b657600080fd5b81516001600160401b0380821115620009ce57600080fd5b818401915084601f830112620009e357600080fd5b815181811115620009f857620009f86200095a565b604051601f8201601f19908116603f0116810190838211818310171562000a235762000a236200095a565b8160405282815287602084870101111562000a3d57600080fd5b62000a5083602083016020880162000970565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000a875762000a8762000a5b565b500190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000acb8160a085016020870162000970565b601f01601f19169190910160a00195945050505050565b60006020828403121562000af557600080fd5b81516001600160e01b03198116811462000b0e57600080fd5b9392505050565b60008282101562000b2a5762000b2a62000a5b565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000b7057607f821691505b6020821081141562000b9257634e487b7160e01b600052602260045260246000fd5b50919050565b6126a98062000ba86000396000f3fe6080604052600436106101d85760003560e01c80636352211e1161010257806398d5fdca11610095578063c87b56dd11610064578063c87b56dd1461052e578063ca8001441461054e578063e985e9c51461056e578063f2fde38b146105b757600080fd5b806398d5fdca146104c6578063a0712d68146104db578063a22cb465146104ee578063b88d4fde1461050e57600080fd5b806388c9cfda116100d157806388c9cfda1461045e5780638da5cb5b1461047357806391b7f5ed1461049157806395d89b41146104b157600080fd5b80636352211e1461040157806370a0823114610421578063715018a614610441578063853828b61461045657600080fd5b806318cae2691161017a578063438b630011610149578063438b63001461037a5780634f6ccce7146103a757806355f804b3146103c75780635c975abb146103e757600080fd5b806318cae269146102ed57806323b872dd1461031a5780632f745c591461033a57806342842e0e1461035a57600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e57806310969523146102ae57806318160ddd146102ce57600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612093565b6105d7565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d3660046120c5565b610602565b005b34801561024057600080fd5b50610249610648565b6040516102099190612138565b34801561026257600080fd5b5061027661027136600461214b565b6106da565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a936600461217b565b61076f565b3480156102ba57600080fd5b506102326102c9366004612231565b610885565b3480156102da57600080fd5b506008545b604051908152602001610209565b3480156102f957600080fd5b506102df61030836600461227a565b60116020526000908152604090205481565b34801561032657600080fd5b50610232610335366004612295565b6108c6565b34801561034657600080fd5b506102df61035536600461217b565b6108f7565b34801561036657600080fd5b50610232610375366004612295565b61098d565b34801561038657600080fd5b5061039a61039536600461227a565b6109a8565b60405161020991906122d1565b3480156103b357600080fd5b506102df6103c236600461214b565b610a4a565b3480156103d357600080fd5b506102326103e2366004612231565b610add565b3480156103f357600080fd5b50600f546101fd9060ff1681565b34801561040d57600080fd5b5061027661041c36600461214b565b610b1a565b34801561042d57600080fd5b506102df61043c36600461227a565b610b91565b34801561044d57600080fd5b50610232610c18565b610232610c4e565b34801561046a57600080fd5b50610249610ced565b34801561047f57600080fd5b50600a546001600160a01b0316610276565b34801561049d57600080fd5b506102326104ac36600461214b565b610d7b565b3480156104bd57600080fd5b50610249610daa565b3480156104d257600080fd5b506102df610db9565b6102326104e936600461214b565b610de4565b3480156104fa57600080fd5b50610232610509366004612315565b611259565b34801561051a57600080fd5b50610232610529366004612348565b611264565b34801561053a57600080fd5b5061024961054936600461214b565b61129c565b34801561055a57600080fd5b5061023261056936600461217b565b611376565b34801561057a57600080fd5b506101fd6105893660046123c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c357600080fd5b506102326105d236600461227a565b6114a4565b60006001600160e01b0319821663780e9d6360e01b14806105fc57506105fc82611542565b92915050565b600a546001600160a01b031633146106355760405162461bcd60e51b815260040161062c906123ee565b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461065790612423565b80601f016020809104026020016040519081016040528092919081815260200182805461068390612423565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062c565b506000908152600460205260409020546001600160a01b031690565b600061077a82610b1a565b9050806001600160a01b0316836001600160a01b031614156107e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062c565b336001600160a01b038216148061080457506108048133610589565b6108765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161062c565b6108808383611592565b505050565b600a546001600160a01b031633146108af5760405162461bcd60e51b815260040161062c906123ee565b80516108c2906010906020840190611fe4565b5050565b6108d03382611600565b6108ec5760405162461bcd60e51b815260040161062c9061245e565b6108808383836116f7565b600061090283610b91565b82106109645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161062c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088083838360405180602001604052806000815250611264565b606060006109b583610b91565b905060008167ffffffffffffffff8111156109d2576109d26121a5565b6040519080825280602002602001820160405280156109fb578160200160208202803683370190505b50905060005b82811015610a4257610a1385826108f7565b828281518110610a2557610a256124af565b602090810291909101015280610a3a816124db565b915050610a01565b509392505050565b6000610a5560085490565b8210610ab85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161062c565b60088281548110610acb57610acb6124af565b90600052602060002001549050919050565b600a546001600160a01b03163314610b075760405162461bcd60e51b815260040161062c906123ee565b80516108c290600c906020840190611fe4565b6000818152600260205260408120546001600160a01b0316806105fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161062c565b60006001600160a01b038216610bfc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161062c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c425760405162461bcd60e51b815260040161062c906123ee565b610c4c60006118a2565b565b600a546001600160a01b03163314610c785760405162461bcd60e51b815260040161062c906123ee565b6000610c8560024761250c565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610cb857600080fd5b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610cea57600080fd5b50565b60108054610cfa90612423565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2690612423565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b600a546001600160a01b03163314610da55760405162461bcd60e51b815260040161062c906123ee565b600e55565b60606001805461065790612423565b600080610dc560085490565b905060006101f48210610dda57600e54610ddd565b60005b9392505050565b6002600b541415610e375760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062c565b6002600b556000610e4760085490565b33600090815260116020526040902054600f549192509060ff1615610e9f5760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b604482015260640161062c565b60008311610ee55760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161062c565b600a831115610f365760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f6620313000000000604482015260640161062c565b600d54610f4590612710612520565b610f4f8484612537565b10610f955760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161062c565b6101f48210156111415760fa82101561101e576001610fb48483612537565b11156110195760405162461bcd60e51b815260206004820152602e60248201527f4d6178204e465420706572206164647265737320657863656564656420666f7260448201526d020746865206669727374203235360941b606482015260840161062c565b61108f565b600261102a8483612537565b111561108f5760405162461bcd60e51b815260206004820152602e60248201527f4d6178204e465420706572206164647265737320657863656564656420666f7260448201526d020746865206669727374203530360941b606482015260840161062c565b826001146110eb5760405162461bcd60e51b8152602060048201526024808201527f4c696d6974656420746f203120706572206d696e74206174206c61756e63682060448201526374696d6560e01b606482015260840161062c565b6110f683600061254f565b3410156111415760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161062c565b6101f482106111fd57600a6111568483612537565b11156111a45760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178204e46542070657220616464726573730000000000604482015260640161062c565b82600e546111b2919061254f565b3410156111fd5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161062c565b60005b8381101561124e57336000908152601160205260408120805491611223836124db565b9091555061123c9050336112378386612537565b6118f4565b80611246816124db565b915050611200565b50506001600b555050565b6108c233838361190e565b61126e3383611600565b61128a5760405162461bcd60e51b815260040161062c9061245e565b611296848484846119dd565b50505050565b6000818152600260205260409020546060906001600160a01b031661131b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161062c565b6000611325611a10565b905060008151116113455760405180602001604052806000815250610ddd565b8061134f84611a1f565b60405160200161136092919061256e565b6040516020818303038152906040529392505050565b6002600b5414156113c95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062c565b6002600b55600a546001600160a01b031633146113f85760405162461bcd60e51b815260040161062c906123ee565b600d5481111561144a5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161062c565b600061145560085490565b905060005b8281101561148257611470846112378385612537565b8061147a816124db565b91505061145a565b5081600d60008282546114959190612520565b90915550506001600b55505050565b600a546001600160a01b031633146114ce5760405162461bcd60e51b815260040161062c906123ee565b6001600160a01b0381166115335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062c565b610cea816118a2565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061157357506001600160e01b03198216635b5e139f60e01b145b806105fc57506301ffc9a760e01b6001600160e01b03198316146105fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115c782610b1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062c565b600061168483610b1a565b9050806001600160a01b0316846001600160a01b031614806116bf5750836001600160a01b03166116b4846106da565b6001600160a01b0316145b806116ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170a82610b1a565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161062c565b6001600160a01b0382166117d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062c565b6117df838383611b1d565b6117ea600082611592565b6001600160a01b0383166000908152600360205260408120805460019290611813908490612520565b90915550506001600160a01b0382166000908152600360205260408120805460019290611841908490612537565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c2828260405180602001604052806000815250611bd5565b816001600160a01b0316836001600160a01b031614156119705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e88484846116f7565b6119f484848484611c08565b6112965760405162461bcd60e51b815260040161062c9061259d565b6060600c805461065790612423565b606081611a435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6d5780611a57816124db565b9150611a669050600a8361250c565b9150611a47565b60008167ffffffffffffffff811115611a8857611a886121a5565b6040519080825280601f01601f191660200182016040528015611ab2576020820181803683370190505b5090505b84156116ef57611ac7600183612520565b9150611ad4600a866125ef565b611adf906030612537565b60f81b818381518110611af457611af46124af565b60200101906001600160f81b031916908160001a905350611b16600a8661250c565b9450611ab6565b6001600160a01b038316611b7857611b7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b9b565b816001600160a01b0316836001600160a01b031614611b9b57611b9b8382611d06565b6001600160a01b038216611bb25761088081611da3565b826001600160a01b0316826001600160a01b031614610880576108808282611e52565b611bdf8383611e96565b611bec6000848484611c08565b6108805760405162461bcd60e51b815260040161062c9061259d565b60006001600160a01b0384163b15611cfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4c903390899088908890600401612603565b6020604051808303816000875af1925050508015611c87575060408051601f3d908101601f19168201909252611c8491810190612640565b60015b611ce1573d808015611cb5576040519150601f19603f3d011682016040523d82523d6000602084013e611cba565b606091505b508051611cd95760405162461bcd60e51b815260040161062c9061259d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116ef565b506001949350505050565b60006001611d1384610b91565b611d1d9190612520565b600083815260076020526040902054909150808214611d70576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611db590600190612520565b60008381526009602052604081205460088054939450909284908110611ddd57611ddd6124af565b906000526020600020015490508060088381548110611dfe57611dfe6124af565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3657611e3661265d565b6001900381819060005260206000200160009055905550505050565b6000611e5d83610b91565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062c565b6000818152600260205260409020546001600160a01b031615611f515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062c565b611f5d60008383611b1d565b6001600160a01b0382166000908152600360205260408120805460019290611f86908490612537565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ff090612423565b90600052602060002090601f0160209004810192826120125760008555612058565b82601f1061202b57805160ff1916838001178555612058565b82800160010185558215612058579182015b8281111561205857825182559160200191906001019061203d565b50612064929150612068565b5090565b5b808211156120645760008155600101612069565b6001600160e01b031981168114610cea57600080fd5b6000602082840312156120a557600080fd5b8135610ddd8161207d565b803580151581146120c057600080fd5b919050565b6000602082840312156120d757600080fd5b610ddd826120b0565b60005b838110156120fb5781810151838201526020016120e3565b838111156112965750506000910152565b600081518084526121248160208601602086016120e0565b601f01601f19169290920160200192915050565b602081526000610ddd602083018461210c565b60006020828403121561215d57600080fd5b5035919050565b80356001600160a01b03811681146120c057600080fd5b6000806040838503121561218e57600080fd5b61219783612164565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121d6576121d66121a5565b604051601f8501601f19908116603f011681019082821181831017156121fe576121fe6121a5565b8160405280935085815286868601111561221757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224357600080fd5b813567ffffffffffffffff81111561225a57600080fd5b8201601f8101841361226b57600080fd5b6116ef848235602084016121bb565b60006020828403121561228c57600080fd5b610ddd82612164565b6000806000606084860312156122aa57600080fd5b6122b384612164565b92506122c160208501612164565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612309578351835292840192918401916001016122ed565b50909695505050505050565b6000806040838503121561232857600080fd5b61233183612164565b915061233f602084016120b0565b90509250929050565b6000806000806080858703121561235e57600080fd5b61236785612164565b935061237560208601612164565b925060408501359150606085013567ffffffffffffffff81111561239857600080fd5b8501601f810187136123a957600080fd5b6123b8878235602084016121bb565b91505092959194509250565b600080604083850312156123d757600080fd5b6123e083612164565b915061233f60208401612164565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061243757607f821691505b6020821081141561245857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124ef576124ef6124c5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261251b5761251b6124f6565b500490565b600082821015612532576125326124c5565b500390565b6000821982111561254a5761254a6124c5565b500190565b6000816000190483118215151615612569576125696124c5565b500290565b600083516125808184602088016120e0565b8351908301906125948183602088016120e0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826125fe576125fe6124f6565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126369083018461210c565b9695505050505050565b60006020828403121561265257600080fd5b8151610ddd8161207d565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204b1150fcef5372bd94d57f8a33fee503a8aed1a4f9244f0cee7eb5abeb9613ff64736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e726573637565646f677a2e696f2f76312f000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e1161010257806398d5fdca11610095578063c87b56dd11610064578063c87b56dd1461052e578063ca8001441461054e578063e985e9c51461056e578063f2fde38b146105b757600080fd5b806398d5fdca146104c6578063a0712d68146104db578063a22cb465146104ee578063b88d4fde1461050e57600080fd5b806388c9cfda116100d157806388c9cfda1461045e5780638da5cb5b1461047357806391b7f5ed1461049157806395d89b41146104b157600080fd5b80636352211e1461040157806370a0823114610421578063715018a614610441578063853828b61461045657600080fd5b806318cae2691161017a578063438b630011610149578063438b63001461037a5780634f6ccce7146103a757806355f804b3146103c75780635c975abb146103e757600080fd5b806318cae269146102ed57806323b872dd1461031a5780632f745c591461033a57806342842e0e1461035a57600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e57806310969523146102ae57806318160ddd146102ce57600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612093565b6105d7565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d3660046120c5565b610602565b005b34801561024057600080fd5b50610249610648565b6040516102099190612138565b34801561026257600080fd5b5061027661027136600461214b565b6106da565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a936600461217b565b61076f565b3480156102ba57600080fd5b506102326102c9366004612231565b610885565b3480156102da57600080fd5b506008545b604051908152602001610209565b3480156102f957600080fd5b506102df61030836600461227a565b60116020526000908152604090205481565b34801561032657600080fd5b50610232610335366004612295565b6108c6565b34801561034657600080fd5b506102df61035536600461217b565b6108f7565b34801561036657600080fd5b50610232610375366004612295565b61098d565b34801561038657600080fd5b5061039a61039536600461227a565b6109a8565b60405161020991906122d1565b3480156103b357600080fd5b506102df6103c236600461214b565b610a4a565b3480156103d357600080fd5b506102326103e2366004612231565b610add565b3480156103f357600080fd5b50600f546101fd9060ff1681565b34801561040d57600080fd5b5061027661041c36600461214b565b610b1a565b34801561042d57600080fd5b506102df61043c36600461227a565b610b91565b34801561044d57600080fd5b50610232610c18565b610232610c4e565b34801561046a57600080fd5b50610249610ced565b34801561047f57600080fd5b50600a546001600160a01b0316610276565b34801561049d57600080fd5b506102326104ac36600461214b565b610d7b565b3480156104bd57600080fd5b50610249610daa565b3480156104d257600080fd5b506102df610db9565b6102326104e936600461214b565b610de4565b3480156104fa57600080fd5b50610232610509366004612315565b611259565b34801561051a57600080fd5b50610232610529366004612348565b611264565b34801561053a57600080fd5b5061024961054936600461214b565b61129c565b34801561055a57600080fd5b5061023261056936600461217b565b611376565b34801561057a57600080fd5b506101fd6105893660046123c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105c357600080fd5b506102326105d236600461227a565b6114a4565b60006001600160e01b0319821663780e9d6360e01b14806105fc57506105fc82611542565b92915050565b600a546001600160a01b031633146106355760405162461bcd60e51b815260040161062c906123ee565b60405180910390fd5b600f805460ff1916911515919091179055565b60606000805461065790612423565b80601f016020809104026020016040519081016040528092919081815260200182805461068390612423565b80156106d05780601f106106a5576101008083540402835291602001916106d0565b820191906000526020600020905b8154815290600101906020018083116106b357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062c565b506000908152600460205260409020546001600160a01b031690565b600061077a82610b1a565b9050806001600160a01b0316836001600160a01b031614156107e85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161062c565b336001600160a01b038216148061080457506108048133610589565b6108765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161062c565b6108808383611592565b505050565b600a546001600160a01b031633146108af5760405162461bcd60e51b815260040161062c906123ee565b80516108c2906010906020840190611fe4565b5050565b6108d03382611600565b6108ec5760405162461bcd60e51b815260040161062c9061245e565b6108808383836116f7565b600061090283610b91565b82106109645760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161062c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61088083838360405180602001604052806000815250611264565b606060006109b583610b91565b905060008167ffffffffffffffff8111156109d2576109d26121a5565b6040519080825280602002602001820160405280156109fb578160200160208202803683370190505b50905060005b82811015610a4257610a1385826108f7565b828281518110610a2557610a256124af565b602090810291909101015280610a3a816124db565b915050610a01565b509392505050565b6000610a5560085490565b8210610ab85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161062c565b60088281548110610acb57610acb6124af565b90600052602060002001549050919050565b600a546001600160a01b03163314610b075760405162461bcd60e51b815260040161062c906123ee565b80516108c290600c906020840190611fe4565b6000818152600260205260408120546001600160a01b0316806105fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161062c565b60006001600160a01b038216610bfc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161062c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c425760405162461bcd60e51b815260040161062c906123ee565b610c4c60006118a2565b565b600a546001600160a01b03163314610c785760405162461bcd60e51b815260040161062c906123ee565b6000610c8560024761250c565b6012546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610cb857600080fd5b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610cea57600080fd5b50565b60108054610cfa90612423565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2690612423565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b600a546001600160a01b03163314610da55760405162461bcd60e51b815260040161062c906123ee565b600e55565b60606001805461065790612423565b600080610dc560085490565b905060006101f48210610dda57600e54610ddd565b60005b9392505050565b6002600b541415610e375760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062c565b6002600b556000610e4760085490565b33600090815260116020526040902054600f549192509060ff1615610e9f5760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b604482015260640161062c565b60008311610ee55760405162461bcd60e51b8152602060048201526013602482015272135a5b9d08185d081b19585cdd080c48139195606a1b604482015260640161062c565b600a831115610f365760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f6620313000000000604482015260640161062c565b600d54610f4590612710612520565b610f4f8484612537565b10610f955760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161062c565b6101f48210156111415760fa82101561101e576001610fb48483612537565b11156110195760405162461bcd60e51b815260206004820152602e60248201527f4d6178204e465420706572206164647265737320657863656564656420666f7260448201526d020746865206669727374203235360941b606482015260840161062c565b61108f565b600261102a8483612537565b111561108f5760405162461bcd60e51b815260206004820152602e60248201527f4d6178204e465420706572206164647265737320657863656564656420666f7260448201526d020746865206669727374203530360941b606482015260840161062c565b826001146110eb5760405162461bcd60e51b8152602060048201526024808201527f4c696d6974656420746f203120706572206d696e74206174206c61756e63682060448201526374696d6560e01b606482015260840161062c565b6110f683600061254f565b3410156111415760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161062c565b6101f482106111fd57600a6111568483612537565b11156111a45760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d6178204e46542070657220616464726573730000000000604482015260640161062c565b82600e546111b2919061254f565b3410156111fd5760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161062c565b60005b8381101561124e57336000908152601160205260408120805491611223836124db565b9091555061123c9050336112378386612537565b6118f4565b80611246816124db565b915050611200565b50506001600b555050565b6108c233838361190e565b61126e3383611600565b61128a5760405162461bcd60e51b815260040161062c9061245e565b611296848484846119dd565b50505050565b6000818152600260205260409020546060906001600160a01b031661131b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161062c565b6000611325611a10565b905060008151116113455760405180602001604052806000815250610ddd565b8061134f84611a1f565b60405160200161136092919061256e565b6040516020818303038152906040529392505050565b6002600b5414156113c95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161062c565b6002600b55600a546001600160a01b031633146113f85760405162461bcd60e51b815260040161062c906123ee565b600d5481111561144a5760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161062c565b600061145560085490565b905060005b8281101561148257611470846112378385612537565b8061147a816124db565b91505061145a565b5081600d60008282546114959190612520565b90915550506001600b55505050565b600a546001600160a01b031633146114ce5760405162461bcd60e51b815260040161062c906123ee565b6001600160a01b0381166115335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062c565b610cea816118a2565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061157357506001600160e01b03198216635b5e139f60e01b145b806105fc57506301ffc9a760e01b6001600160e01b03198316146105fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115c782610b1a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161062c565b600061168483610b1a565b9050806001600160a01b0316846001600160a01b031614806116bf5750836001600160a01b03166116b4846106da565b6001600160a01b0316145b806116ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661170a82610b1a565b6001600160a01b0316146117725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161062c565b6001600160a01b0382166117d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161062c565b6117df838383611b1d565b6117ea600082611592565b6001600160a01b0383166000908152600360205260408120805460019290611813908490612520565b90915550506001600160a01b0382166000908152600360205260408120805460019290611841908490612537565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108c2828260405180602001604052806000815250611bd5565b816001600160a01b0316836001600160a01b031614156119705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161062c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119e88484846116f7565b6119f484848484611c08565b6112965760405162461bcd60e51b815260040161062c9061259d565b6060600c805461065790612423565b606081611a435750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a6d5780611a57816124db565b9150611a669050600a8361250c565b9150611a47565b60008167ffffffffffffffff811115611a8857611a886121a5565b6040519080825280601f01601f191660200182016040528015611ab2576020820181803683370190505b5090505b84156116ef57611ac7600183612520565b9150611ad4600a866125ef565b611adf906030612537565b60f81b818381518110611af457611af46124af565b60200101906001600160f81b031916908160001a905350611b16600a8661250c565b9450611ab6565b6001600160a01b038316611b7857611b7381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b9b565b816001600160a01b0316836001600160a01b031614611b9b57611b9b8382611d06565b6001600160a01b038216611bb25761088081611da3565b826001600160a01b0316826001600160a01b031614610880576108808282611e52565b611bdf8383611e96565b611bec6000848484611c08565b6108805760405162461bcd60e51b815260040161062c9061259d565b60006001600160a01b0384163b15611cfb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4c903390899088908890600401612603565b6020604051808303816000875af1925050508015611c87575060408051601f3d908101601f19168201909252611c8491810190612640565b60015b611ce1573d808015611cb5576040519150601f19603f3d011682016040523d82523d6000602084013e611cba565b606091505b508051611cd95760405162461bcd60e51b815260040161062c9061259d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116ef565b506001949350505050565b60006001611d1384610b91565b611d1d9190612520565b600083815260076020526040902054909150808214611d70576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611db590600190612520565b60008381526009602052604081205460088054939450909284908110611ddd57611ddd6124af565b906000526020600020015490508060088381548110611dfe57611dfe6124af565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3657611e3661265d565b6001900381819060005260206000200160009055905550505050565b6000611e5d83610b91565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161062c565b6000818152600260205260409020546001600160a01b031615611f515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161062c565b611f5d60008383611b1d565b6001600160a01b0382166000908152600360205260408120805460019290611f86908490612537565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ff090612423565b90600052602060002090601f0160209004810192826120125760008555612058565b82601f1061202b57805160ff1916838001178555612058565b82800160010185558215612058579182015b8281111561205857825182559160200191906001019061203d565b50612064929150612068565b5090565b5b808211156120645760008155600101612069565b6001600160e01b031981168114610cea57600080fd5b6000602082840312156120a557600080fd5b8135610ddd8161207d565b803580151581146120c057600080fd5b919050565b6000602082840312156120d757600080fd5b610ddd826120b0565b60005b838110156120fb5781810151838201526020016120e3565b838111156112965750506000910152565b600081518084526121248160208601602086016120e0565b601f01601f19169290920160200192915050565b602081526000610ddd602083018461210c565b60006020828403121561215d57600080fd5b5035919050565b80356001600160a01b03811681146120c057600080fd5b6000806040838503121561218e57600080fd5b61219783612164565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121d6576121d66121a5565b604051601f8501601f19908116603f011681019082821181831017156121fe576121fe6121a5565b8160405280935085815286868601111561221757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561224357600080fd5b813567ffffffffffffffff81111561225a57600080fd5b8201601f8101841361226b57600080fd5b6116ef848235602084016121bb565b60006020828403121561228c57600080fd5b610ddd82612164565b6000806000606084860312156122aa57600080fd5b6122b384612164565b92506122c160208501612164565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612309578351835292840192918401916001016122ed565b50909695505050505050565b6000806040838503121561232857600080fd5b61233183612164565b915061233f602084016120b0565b90509250929050565b6000806000806080858703121561235e57600080fd5b61236785612164565b935061237560208601612164565b925060408501359150606085013567ffffffffffffffff81111561239857600080fd5b8501601f810187136123a957600080fd5b6123b8878235602084016121bb565b91505092959194509250565b600080604083850312156123d757600080fd5b6123e083612164565b915061233f60208401612164565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061243757607f821691505b6020821081141561245857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124ef576124ef6124c5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261251b5761251b6124f6565b500490565b600082821015612532576125326124c5565b500390565b6000821982111561254a5761254a6124c5565b500190565b6000816000190483118215151615612569576125696124c5565b500290565b600083516125808184602088016120e0565b8351908301906125948183602088016120e0565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826125fe576125fe6124f6565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126369083018461210c565b9695505050505050565b60006020828403121561265257600080fd5b8151610ddd8161207d565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204b1150fcef5372bd94d57f8a33fee503a8aed1a4f9244f0cee7eb5abeb9613ff64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e726573637565646f677a2e696f2f76312f000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://api.rescuedogz.io/v1/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [2] : 68747470733a2f2f6170692e726573637565646f677a2e696f2f76312f000000


Deployed Bytecode Sourcemap

47647:3971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41025:224;;;;;;;;;;-1:-1:-1;41025:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;41025:224:0;;;;;;;;51309:73;;;;;;;;;;-1:-1:-1;51309:73:0;;;;;:::i;:::-;;:::i;:::-;;28519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30078:221::-;;;;;;;;;;-1:-1:-1;30078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;30078:221:0;1878:203:1;29601:411:0;;;;;;;;;;-1:-1:-1;29601:411:0;;;;;:::i;:::-;;:::i;48369:125::-;;;;;;;;;;-1:-1:-1;48369:125:0;;;;;:::i;:::-;;:::i;41665:113::-;;;;;;;;;;-1:-1:-1;41753:10:0;:17;41665:113;;;3894:25:1;;;3882:2;3867:18;41665:113:0;3748:177:1;47930:55:0;;;;;;;;;;-1:-1:-1;47930:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;30828:339;;;;;;;;;;-1:-1:-1;30828:339:0;;;;;:::i;:::-;;:::i;41333:256::-;;;;;;;;;;-1:-1:-1;41333:256:0;;;;;:::i;:::-;;:::i;31238:185::-;;;;;;;;;;-1:-1:-1;31238:185:0;;;;;:::i;:::-;;:::i;50106:339::-;;;;;;;;;;-1:-1:-1;50106:339:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41855:233::-;;;;;;;;;;-1:-1:-1;41855:233:0;;;;;:::i;:::-;;:::i;50670:101::-;;;;;;;;;;-1:-1:-1;50670:101:0;;;;;:::i;:::-;;:::i;47824:26::-;;;;;;;;;;-1:-1:-1;47824:26:0;;;;;;;;28213:239;;;;;;;;;;-1:-1:-1;28213:239:0;;;;;:::i;:::-;;:::i;27943:208::-;;;;;;;;;;-1:-1:-1;27943:208:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;51390:225::-;;;:::i;47887:34::-;;;;;;;;;;;;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;50453:88;;;;;;;;;;-1:-1:-1;50453:88:0;;;;;:::i;:::-;;:::i;28688:104::-;;;;;;;;;;;;;:::i;50779:196::-;;;;;;;;;;;;;:::i;48526:1527::-;;;;;;:::i;:::-;;:::i;30371:155::-;;;;;;;;;;-1:-1:-1;30371:155:0;;;;;:::i;:::-;;:::i;31494:328::-;;;;;;;;;;-1:-1:-1;31494:328:0;;;;;:::i;:::-;;:::i;28863:334::-;;;;;;;;;;-1:-1:-1;28863:334:0;;;;;:::i;:::-;;:::i;50983:318::-;;;;;;;;;;-1:-1:-1;50983:318:0;;;;;:::i;:::-;;:::i;30597:164::-;;;;;;;;;;-1:-1:-1;30597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30597:164;7747:201;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;41025:224::-;41127:4;-1:-1:-1;;;;;;41151:50:0;;-1:-1:-1;;;41151:50:0;;:90;;;41205:36;41229:11;41205:23;:36::i;:::-;41144:97;41025:224;-1:-1:-1;;41025:224:0:o;51309:73::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;;;;;;;;;51362:6:::1;:12:::0;;-1:-1:-1;;51362:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51309:73::o;28519:100::-;28573:13;28606:5;28599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28519:100;:::o;30078:221::-;30154:7;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;30174:73;;;;-1:-1:-1;;;30174:73:0;;7235:2:1;30174:73:0;;;7217:21:1;7274:2;7254:18;;;7247:30;7313:34;7293:18;;;7286:62;-1:-1:-1;;;7364:18:1;;;7357:42;7416:19;;30174:73:0;7033:408:1;30174:73:0;-1:-1:-1;30267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30267:24:0;;30078:221::o;29601:411::-;29682:13;29698:23;29713:7;29698:14;:23::i;:::-;29682:39;;29746:5;-1:-1:-1;;;;;29740:11:0;:2;-1:-1:-1;;;;;29740:11:0;;;29732:57;;;;-1:-1:-1;;;29732:57:0;;7648:2:1;29732:57:0;;;7630:21:1;7687:2;7667:18;;;7660:30;7726:34;7706:18;;;7699:62;-1:-1:-1;;;7777:18:1;;;7770:31;7818:19;;29732:57:0;7446:397:1;29732:57:0;5642:10;-1:-1:-1;;;;;29824:21:0;;;;:62;;-1:-1:-1;29849:37:0;29866:5;5642:10;30597:164;:::i;29849:37::-;29802:168;;;;-1:-1:-1;;;29802:168:0;;8050:2:1;29802:168:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;8199:26;8179:18;;;8172:54;8243:19;;29802:168:0;7848:420:1;29802:168:0;29983:21;29992:2;29996:7;29983:8;:21::i;:::-;29671:341;29601:411;;:::o;48369:125::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;48454:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48369:125:::0;:::o;30828:339::-;31023:41;5642:10;31056:7;31023:18;:41::i;:::-;31015:103;;;;-1:-1:-1;;;31015:103:0;;;;;;;:::i;:::-;31131:28;31141:4;31147:2;31151:7;31131:9;:28::i;41333:256::-;41430:7;41466:23;41483:5;41466:16;:23::i;:::-;41458:5;:31;41450:87;;;;-1:-1:-1;;;41450:87:0;;8893:2:1;41450:87:0;;;8875:21:1;8932:2;8912:18;;;8905:30;8971:34;8951:18;;;8944:62;-1:-1:-1;;;9022:18:1;;;9015:41;9073:19;;41450:87:0;8691:407:1;41450:87:0;-1:-1:-1;;;;;;41555:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41333:256::o;31238:185::-;31376:39;31393:4;31399:2;31403:7;31376:39;;;;;;;;;;;;:16;:39::i;50106:339::-;50164:16;50193:18;50214:16;50224:5;50214:9;:16::i;:::-;50193:37;;50243:25;50285:10;50271:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50271:25:0;;50243:53;;50311:9;50307:105;50326:10;50322:1;:14;50307:105;;;50371:29;50391:5;50398:1;50371:19;:29::i;:::-;50357:8;50366:1;50357:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;50338:3;;;;:::i;:::-;;;;50307:105;;;-1:-1:-1;50429:8:0;50106:339;-1:-1:-1;;;50106:339:0:o;41855:233::-;41930:7;41966:30;41753:10;:17;;41665:113;41966:30;41958:5;:38;41950:95;;;;-1:-1:-1;;;41950:95:0;;9709:2:1;41950:95:0;;;9691:21:1;9748:2;9728:18;;;9721:30;9787:34;9767:18;;;9760:62;-1:-1:-1;;;9838:18:1;;;9831:42;9890:19;;41950:95:0;9507:408:1;41950:95:0;42063:10;42074:5;42063:17;;;;;;;;:::i;:::-;;;;;;;;;42056:24;;41855:233;;;:::o;50670:101::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50741:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28213:239::-:0;28285:7;28321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28321:16:0;28356:19;28348:73;;;;-1:-1:-1;;;28348:73:0;;10122:2:1;28348:73:0;;;10104:21:1;10161:2;10141:18;;;10134:30;10200:34;10180:18;;;10173:62;-1:-1:-1;;;10251:18:1;;;10244:39;10300:19;;28348:73:0;9920:405:1;27943:208:0;28015:7;-1:-1:-1;;;;;28043:19:0;;28035:74;;;;-1:-1:-1;;;28035:74:0;;10532:2:1;28035:74:0;;;10514:21:1;10571:2;10551:18;;;10544:30;10610:34;10590:18;;;10583:62;-1:-1:-1;;;10661:18:1;;;10654:40;10711:19;;28035:74:0;10330:406:1;28035:74:0;-1:-1:-1;;;;;;28127:16:0;;;;;:9;:16;;;;;;;27943:208::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;51390:225::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51449:19:::1;51471:25;51495:1;51471:21;:25;:::i;:::-;51523:8;::::0;51515:35:::1;::::0;51449:47;;-1:-1:-1;;;;;;51523:8:0::1;::::0;51515:35;::::1;;;::::0;51449:47;;51523:8:::1;51515:35:::0;51523:8;51515:35;51449:47;51523:8;51515:35;::::1;;;;;;51507:44;;;::::0;::::1;;51578:9;::::0;51570:36:::1;::::0;-1:-1:-1;;;;;51578:9:0;;::::1;::::0;51570:36;::::1;;;::::0;51594:11;;51578:9:::1;51570:36:::0;51578:9;51570:36;51594:11;51578:9;51570:36;::::1;;;;;;51562:45;;;::::0;::::1;;51438:177;51390:225::o:0;47887:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50453:88::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50517:5:::1;:16:::0;50453:88::o;28688:104::-;28744:13;28777:7;28770:14;;;;;:::i;50779:196::-;50820:7;50839:14;50856:13;41753:10;:17;;41665:113;50856:13;50839:30;;50880:20;50913:3;50904:6;:12;50903:34;;50932:5;;50903:34;;;50920:9;50903:34;50880:57;50779:196;-1:-1:-1;;;50779:196:0:o;48526:1527::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;11200:2:1;2402:63:0;;;11182:21:1;11239:2;11219:18;;;11212:30;11278:33;11258:18;;;11251:61;11329:18;;2402:63:0;10998:355:1;2402:63:0;1812:1;2543:7;:18;48596:14:::1;48613:13;41753:10:::0;:17;;41665:113;48613:13:::1;48685:10;48637:24;48664:32:::0;;;:20:::1;:32;::::0;;;;;48716:6:::1;::::0;48596:30;;-1:-1:-1;48664:32:0;48716:6:::1;;48715:7;48707:68;;;::::0;-1:-1:-1;;;48707:68:0;;11560:2:1;48707:68:0::1;::::0;::::1;11542:21:1::0;11599:2;11579:18;;;11572:30;-1:-1:-1;;;11618:18:1;;;11611:44;11672:18;;48707:68:0::1;11358:338:1::0;48707:68:0::1;48804:1;48794:7;:11;48786:73;;;::::0;-1:-1:-1;;;48786:73:0;;11903:2:1;48786:73:0::1;::::0;::::1;11885:21:1::0;11942:2;11922:18;;;11915:30;-1:-1:-1;;;11961:18:1;;;11954:49;12020:18;;48786:73:0::1;11701:343:1::0;48786:73:0::1;48889:2;48878:7;:13;;48870:82;;;::::0;-1:-1:-1;;;48870:82:0;;12251:2:1;48870:82:0::1;::::0;::::1;12233:21:1::0;12290:2;12270:18;;;12263:30;12329;12309:18;;;12302:58;12377:18;;48870:82:0::1;12049:352:1::0;48870:82:0::1;48998:8;::::0;48990:16:::1;::::0;:5:::1;:16;:::i;:::-;48971;48980:7:::0;48971:6;:16:::1;:::i;:::-;:35;48963:76;;;::::0;-1:-1:-1;;;48963:76:0;;12871:2:1;48963:76:0::1;::::0;::::1;12853:21:1::0;12910:2;12890:18;;;12883:30;-1:-1:-1;;;12929:18:1;;;12922:52;12991:18;;48963:76:0::1;12669:346:1::0;48963:76:0::1;49100:3;49091:6;:12;49087:528;;;49133:3;49124:6;:12;49120:291;;;49195:1;49165:26;49184:7:::0;49165:16;:26:::1;:::i;:::-;:31;;49157:92;;;::::0;-1:-1:-1;;;49157:92:0;;13222:2:1;49157:92:0::1;::::0;::::1;13204:21:1::0;13261:2;13241:18;;;13234:30;13300:34;13280:18;;;13273:62;-1:-1:-1;;;13351:18:1;;;13344:44;13405:19;;49157:92:0::1;13020:410:1::0;49157:92:0::1;49120:291;;;49341:1;49311:26;49330:7:::0;49311:16;:26:::1;:::i;:::-;:31;;49303:92;;;::::0;-1:-1:-1;;;49303:92:0;;13637:2:1;49303:92:0::1;::::0;::::1;13619:21:1::0;13676:2;13656:18;;;13649:30;13715:34;13695:18;;;13688:62;-1:-1:-1;;;13766:18:1;;;13759:44;13820:19;;49303:92:0::1;13435:410:1::0;49303:92:0::1;49435:7;49446:1;49435:12;49427:86;;;::::0;-1:-1:-1;;;49427:86:0;;14052:2:1;49427:86:0::1;::::0;::::1;14034:21:1::0;14091:2;14071:18;;;14064:30;14130:34;14110:18;;;14103:62;-1:-1:-1;;;14181:18:1;;;14174:34;14225:19;;49427:86:0::1;13850:400:1::0;49427:86:0::1;49549:20;49562:7:::0;49549:10:::1;:20;:::i;:::-;49536:9;:33;;49528:75;;;::::0;-1:-1:-1;;;49528:75:0;;14630:2:1;49528:75:0::1;::::0;::::1;14612:21:1::0;14669:2;14649:18;;;14642:30;-1:-1:-1;;;14688:18:1;;;14681:55;14753:18;;49528:75:0::1;14428:349:1::0;49528:75:0::1;49677:3;49667:6;:13;49663:213;;49735:2;49705:26;49724:7:::0;49705:16;:26:::1;:::i;:::-;:32;;49697:77;;;::::0;-1:-1:-1;;;49697:77:0;;14984:2:1;49697:77:0::1;::::0;::::1;14966:21:1::0;15023:2;15003:18;;;14996:30;15062:29;15042:18;;;15035:57;15109:18;;49697:77:0::1;14782:351:1::0;49697:77:0::1;49818:7;49810:5;;:15;;;;:::i;:::-;49797:9;:28;;49789:75;;;::::0;-1:-1:-1;;;49789:75:0;;14630:2:1;49789:75:0::1;::::0;::::1;14612:21:1::0;14669:2;14649:18;;;14642:30;-1:-1:-1;;;14688:18:1;;;14681:55;14753:18;;49789:75:0::1;14428:349:1::0;49789:75:0::1;49909:9;49905:141;49924:7;49920:1;:11;49905:141;;;49973:10;49952:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;50001:33:0::1;::::0;-1:-1:-1;50011:10:0::1;50023;50032:1:::0;50023:6;:10:::1;:::i;:::-;50001:9;:33::i;:::-;49933:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49905:141;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;;48526:1527:0:o;30371:155::-;30466:52;5642:10;30499:8;30509;30466:18;:52::i;31494:328::-;31669:41;5642:10;31702:7;31669:18;:41::i;:::-;31661:103;;;;-1:-1:-1;;;31661:103:0;;;;;;;:::i;:::-;31775:39;31789:4;31795:2;31799:7;31808:5;31775:13;:39::i;:::-;31494:328;;;;:::o;28863:334::-;33397:4;33421:16;;;:7;:16;;;;;;28936:13;;-1:-1:-1;;;;;33421:16:0;28962:76;;;;-1:-1:-1;;;28962:76:0;;15340:2:1;28962:76:0;;;15322:21:1;15379:2;15359:18;;;15352:30;15418:34;15398:18;;;15391:62;-1:-1:-1;;;15469:18:1;;;15462:45;15524:19;;28962:76:0;15138:411:1;28962:76:0;29051:21;29075:10;:8;:10::i;:::-;29051:34;;29127:1;29109:7;29103:21;:25;:86;;;;;;;;;;;;;;;;;29155:7;29164:18;:7;:16;:18::i;:::-;29138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29096:93;28863:334;-1:-1:-1;;;28863:334:0:o;50983:318::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;11200:2:1;2402:63:0;;;11182:21:1;11239:2;11219:18;;;11212:30;11278:33;11258:18;;;11251:61;11329:18;;2402:63:0;10998:355:1;2402:63:0;1812:1;2543:7;:18;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23:::1;7050:68;;;;-1:-1:-1::0;;;7050:68:0::1;;;;;;;:::i;:::-;51090:8:::2;;51080:6;:18;;51072:54;;;::::0;-1:-1:-1;;;51072:54:0;;16231:2:1;51072:54:0::2;::::0;::::2;16213:21:1::0;16270:2;16250:18;;;16243:30;16309:25;16289:18;;;16282:53;16352:18;;51072:54:0::2;16029:347:1::0;51072:54:0::2;51139:14;51156:13;41753:10:::0;:17;;41665:113;51156:13:::2;51139:30;;51184:9;51180:83;51199:6;51195:1;:10;51180:83;;;51226:25;51236:2:::0;51240:10:::2;51249:1:::0;51240:6;:10:::2;:::i;51226:25::-;51207:3:::0;::::2;::::0;::::2;:::i;:::-;;;;51180:83;;;;51287:6;51275:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1768:1:0;2722:7;:22;-1:-1:-1;;;50983:318:0:o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;16583:2:1;7828:73:0::1;::::0;::::1;16565:21:1::0;16622:2;16602:18;;;16595:30;16661:34;16641:18;;;16634:62;-1:-1:-1;;;16712:18:1;;;16705:36;16758:19;;7828:73:0::1;16381:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;9126:387::-:0;9449:20;9497:8;;;9126:387::o;27574:305::-;27676:4;-1:-1:-1;;;;;;27713:40:0;;-1:-1:-1;;;27713:40:0;;:105;;-1:-1:-1;;;;;;;27770:48:0;;-1:-1:-1;;;27770:48:0;27713:105;:158;;;-1:-1:-1;;;;;;;;;;19379:40:0;;;27835:36;19270:157;37314:174;37389:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37389:29:0;-1:-1:-1;;;;;37389:29:0;;;;;;;;:24;;37443:23;37389:24;37443:14;:23::i;:::-;-1:-1:-1;;;;;37434:46:0;;;;;;;;;;;37314:174;;:::o;33626:348::-;33719:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;33736:73;;;;-1:-1:-1;;;33736:73:0;;16990:2:1;33736:73:0;;;16972:21:1;17029:2;17009:18;;;17002:30;17068:34;17048:18;;;17041:62;-1:-1:-1;;;17119:18:1;;;17112:42;17171:19;;33736:73:0;16788:408:1;33736:73:0;33820:13;33836:23;33851:7;33836:14;:23::i;:::-;33820:39;;33889:5;-1:-1:-1;;;;;33878:16:0;:7;-1:-1:-1;;;;;33878:16:0;;:51;;;;33922:7;-1:-1:-1;;;;;33898:31:0;:20;33910:7;33898:11;:20::i;:::-;-1:-1:-1;;;;;33898:31:0;;33878:51;:87;;;-1:-1:-1;;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33933:32;33870:96;33626:348;-1:-1:-1;;;;33626:348:0:o;36618:578::-;36777:4;-1:-1:-1;;;;;36750:31:0;:23;36765:7;36750:14;:23::i;:::-;-1:-1:-1;;;;;36750:31:0;;36742:85;;;;-1:-1:-1;;;36742:85:0;;17403:2:1;36742:85:0;;;17385:21:1;17442:2;17422:18;;;17415:30;17481:34;17461:18;;;17454:62;-1:-1:-1;;;17532:18:1;;;17525:39;17581:19;;36742:85:0;17201:405:1;36742:85:0;-1:-1:-1;;;;;36846:16:0;;36838:65;;;;-1:-1:-1;;;36838:65:0;;17813:2:1;36838:65:0;;;17795:21:1;17852:2;17832:18;;;17825:30;17891:34;17871:18;;;17864:62;-1:-1:-1;;;17942:18:1;;;17935:34;17986:19;;36838:65:0;17611:400:1;36838:65:0;36916:39;36937:4;36943:2;36947:7;36916:20;:39::i;:::-;37020:29;37037:1;37041:7;37020:8;:29::i;:::-;-1:-1:-1;;;;;37062:15:0;;;;;;:9;:15;;;;;:20;;37081:1;;37062:15;:20;;37081:1;;37062:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37093:13:0;;;;;;:9;:13;;;;;:18;;37110:1;;37093:13;:18;;37110:1;;37093:18;:::i;:::-;;;;-1:-1:-1;;37122:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37122:21:0;-1:-1:-1;;;;;37122:21:0;;;;;;;;;37161:27;;37122:16;;37161:27;;;;;;;36618:578;;;:::o;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;34316:110::-;34392:26;34402:2;34406:7;34392:26;;;;;;;;;;;;:9;:26::i;37630:315::-;37785:8;-1:-1:-1;;;;;37776:17:0;:5;-1:-1:-1;;;;;37776:17:0;;;37768:55;;;;-1:-1:-1;;;37768:55:0;;18218:2:1;37768:55:0;;;18200:21:1;18257:2;18237:18;;;18230:30;18296:27;18276:18;;;18269:55;18341:18;;37768:55:0;18016:349:1;37768:55:0;-1:-1:-1;;;;;37834:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37834:46:0;;;;;;;;;;37896:41;;540::1;;;37896::0;;513:18:1;37896:41:0;;;;;;;37630:315;;;:::o;32704:::-;32861:28;32871:4;32877:2;32881:7;32861:9;:28::i;:::-;32908:48;32931:4;32937:2;32941:7;32950:5;32908:22;:48::i;:::-;32900:111;;;;-1:-1:-1;;;32900:111:0;;;;;;;:::i;50549:113::-;50609:13;50642:12;50635:19;;;;;:::i;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;42701:589;-1:-1:-1;;;;;42907:18:0;;42903:187;;42942:40;42974:7;44117:10;:17;;44090:24;;;;:15;:24;;;;;:44;;;44145:24;;;;;;;;;;;;44013:164;42942:40;42903:187;;;43012:2;-1:-1:-1;;;;;43004:10:0;:4;-1:-1:-1;;;;;43004:10:0;;43000:90;;43031:47;43064:4;43070:7;43031:32;:47::i;:::-;-1:-1:-1;;;;;43104:16:0;;43100:183;;43137:45;43174:7;43137:36;:45::i;43100:183::-;43210:4;-1:-1:-1;;;;;43204:10:0;:2;-1:-1:-1;;;;;43204:10:0;;43200:83;;43231:40;43259:2;43263:7;43231:27;:40::i;34653:321::-;34783:18;34789:2;34793:7;34783:5;:18::i;:::-;34834:54;34865:1;34869:2;34873:7;34882:5;34834:22;:54::i;:::-;34812:154;;;;-1:-1:-1;;;34812:154:0;;;;;;;:::i;38510:799::-;38665:4;-1:-1:-1;;;;;38686:13:0;;9449:20;9497:8;38682:620;;38722:72;;-1:-1:-1;;;38722:72:0;;-1:-1:-1;;;;;38722:36:0;;;;;:72;;5642:10;;38773:4;;38779:7;;38788:5;;38722:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38722:72:0;;;;;;;;-1:-1:-1;;38722:72:0;;;;;;;;;;;;:::i;:::-;;;38718:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38964:13:0;;38960:272;;39007:60;;-1:-1:-1;;;39007:60:0;;;;;;;:::i;38960:272::-;39182:6;39176:13;39167:6;39163:2;39159:15;39152:38;38718:529;-1:-1:-1;;;;;;38845:51:0;-1:-1:-1;;;38845:51:0;;-1:-1:-1;38838:58:0;;38682:620;-1:-1:-1;39286:4:0;38510:799;;;;;;:::o;44804:988::-;45070:22;45120:1;45095:22;45112:4;45095:16;:22::i;:::-;:26;;;;:::i;:::-;45132:18;45153:26;;;:17;:26;;;;;;45070:51;;-1:-1:-1;45286:28:0;;;45282:328;;-1:-1:-1;;;;;45353:18:0;;45331:19;45353:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45404:30;;;;;;:44;;;45521:30;;:17;:30;;;;;:43;;;45282:328;-1:-1:-1;45706:26:0;;;;:17;:26;;;;;;;;45699:33;;;-1:-1:-1;;;;;45750:18:0;;;;;:12;:18;;;;;:34;;;;;;;45743:41;44804:988::o;46087:1079::-;46365:10;:17;46340:22;;46365:21;;46385:1;;46365:21;:::i;:::-;46397:18;46418:24;;;:15;:24;;;;;;46791:10;:26;;46340:46;;-1:-1:-1;46418:24:0;;46340:46;;46791:26;;;;;;:::i;:::-;;;;;;;;;46769:48;;46855:11;46830:10;46841;46830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46935:28;;;:15;:28;;;;;;;:41;;;47107:24;;;;;47100:31;47142:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46158:1008;;;46087:1079;:::o;43591:221::-;43676:14;43693:20;43710:2;43693:16;:20::i;:::-;-1:-1:-1;;;;;43724:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43769:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43591:221:0:o;35310:382::-;-1:-1:-1;;;;;35390:16:0;;35382:61;;;;-1:-1:-1;;;35382:61:0;;19988:2:1;35382:61:0;;;19970:21:1;;;20007:18;;;20000:30;20066:34;20046:18;;;20039:62;20118:18;;35382:61:0;19786:356:1;35382:61:0;33397:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;:30;35454:58;;;;-1:-1:-1;;;35454:58:0;;20349:2:1;35454:58:0;;;20331:21:1;20388:2;20368:18;;;20361:30;20427;20407:18;;;20400:58;20475:18;;35454:58:0;20147:352:1;35454:58:0;35525:45;35554:1;35558:2;35562:7;35525:20;:45::i;:::-;-1:-1:-1;;;;;35583:13:0;;;;;;:9;:13;;;;;:18;;35600:1;;35583:13;:18;;35600:1;;35583:18;:::i;:::-;;;;-1:-1:-1;;35612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35612:21:0;-1:-1:-1;;;;;35612:21:0;;;;;;;;35651:33;;35612:16;;;35651:33;;35612:16;;35651:33;35310:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2523:127::-;2584:10;2579:3;2575:20;2572:1;2565:31;2615:4;2612:1;2605:15;2639:4;2636:1;2629:15;2655:632;2720:5;2750:18;2791:2;2783:6;2780:14;2777:40;;;2797:18;;:::i;:::-;2872:2;2866:9;2840:2;2926:15;;-1:-1:-1;;2922:24:1;;;2948:2;2918:33;2914:42;2902:55;;;2972:18;;;2992:22;;;2969:46;2966:72;;;3018:18;;:::i;:::-;3058:10;3054:2;3047:22;3087:6;3078:15;;3117:6;3109;3102:22;3157:3;3148:6;3143:3;3139:16;3136:25;3133:45;;;3174:1;3171;3164:12;3133:45;3224:6;3219:3;3212:4;3204:6;3200:17;3187:44;3279:1;3272:4;3263:6;3255;3251:19;3247:30;3240:41;;;;2655:632;;;;;:::o;3292:451::-;3361:6;3414:2;3402:9;3393:7;3389:23;3385:32;3382:52;;;3430:1;3427;3420:12;3382:52;3470:9;3457:23;3503:18;3495:6;3492:30;3489:50;;;3535:1;3532;3525:12;3489:50;3558:22;;3611:4;3603:13;;3599:27;-1:-1:-1;3589:55:1;;3640:1;3637;3630:12;3589:55;3663:74;3729:7;3724:2;3711:16;3706:2;3702;3698:11;3663:74;:::i;3930:186::-;3989:6;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4081:29;4100:9;4081:29;:::i;4121:328::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;:::-;4296:39;;4354:38;4388:2;4377:9;4373:18;4354:38;:::i;:::-;4344:48;;4439:2;4428:9;4424:18;4411:32;4401:42;;4121:328;;;;;:::o;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:356::-;6489:2;6471:21;;;6508:18;;;6501:30;6567:34;6562:2;6547:18;;6540:62;6634:2;6619:18;;6287:356::o;6648:380::-;6727:1;6723:12;;;;6770;;;6791:61;;6845:4;6837:6;6833:17;6823:27;;6791:61;6898:2;6890:6;6887:14;6867:18;6864:38;6861:161;;;6944:10;6939:3;6935:20;6932:1;6925:31;6979:4;6976:1;6969:15;7007:4;7004:1;6997:15;6861:161;;6648:380;;;:::o;8273:413::-;8475:2;8457:21;;;8514:2;8494:18;;;8487:30;8553:34;8548:2;8533:18;;8526:62;-1:-1:-1;;;8619:2:1;8604:18;;8597:47;8676:3;8661:19;;8273:413::o;9103:127::-;9164:10;9159:3;9155:20;9152:1;9145:31;9195:4;9192:1;9185:15;9219:4;9216:1;9209:15;9235:127;9296:10;9291:3;9287:20;9284:1;9277:31;9327:4;9324:1;9317:15;9351:4;9348:1;9341:15;9367:135;9406:3;-1:-1:-1;;9427:17:1;;9424:43;;;9447:18;;:::i;:::-;-1:-1:-1;9494:1:1;9483:13;;9367:135::o;10741:127::-;10802:10;10797:3;10793:20;10790:1;10783:31;10833:4;10830:1;10823:15;10857:4;10854:1;10847:15;10873:120;10913:1;10939;10929:35;;10944:18;;:::i;:::-;-1:-1:-1;10978:9:1;;10873:120::o;12406:125::-;12446:4;12474:1;12471;12468:8;12465:34;;;12479:18;;:::i;:::-;-1:-1:-1;12516:9:1;;12406:125::o;12536:128::-;12576:3;12607:1;12603:6;12600:1;12597:13;12594:39;;;12613:18;;:::i;:::-;-1:-1:-1;12649:9:1;;12536:128::o;14255:168::-;14295:7;14361:1;14357;14353:6;14349:14;14346:1;14343:21;14338:1;14331:9;14324:17;14320:45;14317:71;;;14368:18;;:::i;:::-;-1:-1:-1;14408:9:1;;14255:168::o;15554:470::-;15733:3;15771:6;15765:13;15787:53;15833:6;15828:3;15821:4;15813:6;15809:17;15787:53;:::i;:::-;15903:13;;15862:16;;;;15925:57;15903:13;15862:16;15959:4;15947:17;;15925:57;:::i;:::-;15998:20;;15554:470;-1:-1:-1;;;;15554:470:1:o;18370:414::-;18572:2;18554:21;;;18611:2;18591:18;;;18584:30;18650:34;18645:2;18630:18;;18623:62;-1:-1:-1;;;18716:2:1;18701:18;;18694:48;18774:3;18759:19;;18370:414::o;18789:112::-;18821:1;18847;18837:35;;18852:18;;:::i;:::-;-1:-1:-1;18886:9:1;;18789:112::o;18906:489::-;-1:-1:-1;;;;;19175:15:1;;;19157:34;;19227:15;;19222:2;19207:18;;19200:43;19274:2;19259:18;;19252:34;;;19322:3;19317:2;19302:18;;19295:31;;;19100:4;;19343:46;;19369:19;;19361:6;19343:46;:::i;:::-;19335:54;18906:489;-1:-1:-1;;;;;;18906:489:1:o;19400:249::-;19469:6;19522:2;19510:9;19501:7;19497:23;19493:32;19490:52;;;19538:1;19535;19528:12;19490:52;19570:9;19564:16;19589:30;19613:5;19589:30;:::i;19654:127::-;19715:10;19710:3;19706:20;19703:1;19696:31;19746:4;19743:1;19736:15;19770:4;19767:1;19760:15

Swarm Source

ipfs://4b1150fcef5372bd94d57f8a33fee503a8aed1a4f9244f0cee7eb5abeb9613ff
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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