Token Millionaire Rabbit

NFT  

Overview ERC721

Total Supply:
559 MILRAB

Holders:
174 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

6000 3D war rabbits, four factions, one mission.


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

Contract Source Code Verified (Exact Match)

Contract Name:
MillionaireRabbitNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowtrace.io on 2022-04-30
*/

/**
 *Submitted for verification at polygonscan.com on 2021-12-02
*/

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


// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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.0 (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.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (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.0 (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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev 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: DisrespectfulCrowKids.sol

//"SPDX-License-Identifier: FREE LICENCE FOR ALL 
pragma solidity >=0.7.0 <0.9.0;


contract MillionaireRabbitNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.5 ether;
  uint256 public maxSupply = 8888;
  uint256 public maxMintAmount = 1;
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;

  constructor() 
  ERC721("Millionaire Rabbit", "MILRAB") {
    setBaseURI("ipfs://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/");
    setNotRevealedURI("https://ipfs.io/ipfs/QmbeimhVann8ZE6dqCuzRU5DvqdjHkFLFUtdmT1P3rzufg");
      }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(supply >= 50){
      require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner() {
     if(!revealed) {
         revealed = true;
     }
    //  else{
    //      revealed = false;
    //  }
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function pause() public onlyOwner {
    if(!paused){
        paused = true;
    }
    else{
        paused = false;
    }
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}//0x34FeE42698a94C7c6aa5FF674dCC26655Ee9990c

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000250565b506706f05b59d3b20000600d556122b8600e556001600f8190556010805461ffff191690911790553480156200005d57600080fd5b506040805180820182526012815271135a5b1b1a5bdb985a5c9948149858989a5d60721b60208083019182528351808501909452600684526526a4a62920a160d11b908401528151919291620000b69160009162000250565b508051620000cc90600190602084019062000250565b505050620000e9620000e36200013760201b60201c565b6200013b565b6200010d6040518060600160405280602b815260200162002666602b91396200018d565b620001316040518060800160405280604381526020016200262360439139620001f5565b62000332565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001dc5760405162461bcd60e51b815260206004820181905260248201526000805160206200269183398151915260448201526064015b60405180910390fd5b8051620001f190600b90602084019062000250565b5050565b600a546001600160a01b03163314620002405760405162461bcd60e51b81526020600482018190526024820152600080516020620026918339815191526044820152606401620001d3565b8051620001f19060119060208401905b8280546200025e90620002f6565b90600052602060002090601f016020900481019282620002825760008555620002cd565b82601f106200029d57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cd578251825591602001919060010190620002b0565b50620002db929150620002df565b5090565b5b80821115620002db5760008155600101620002e0565b600181811c908216806200030b57607f821691505b6020821081036200032c57634e487b7160e01b600052602260045260246000fd5b50919050565b6122e180620003426000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610530578063d5abeb0114610550578063e985e9c514610566578063f2c4ce1e146105af578063f2fde38b146105cf57600080fd5b8063a22cb465146104c6578063a475b5dd146104e6578063b88d4fde146104fb578063c66828621461051b57600080fd5b80638456cb59116100dc5780638456cb591461046b5780638da5cb5b1461048057806395d89b411461049e578063a0712d68146104b357600080fd5b80635c975abb146103fc5780636352211e1461041657806370a0823114610436578063715018a61461045657600080fd5b806323b872dd11610185578063438b630011610154578063438b6300146103705780634f6ccce71461039d57806351830227146103bd57806355f804b3146103dc57600080fd5b806323b872dd146103085780632f745c59146103285780633ccfd60b1461034857806342842e0e1461035057600080fd5b8063095ea7b3116101c1578063095ea7b31461029757806313faede6146102b957806318160ddd146102dd578063239c70ae146102f257600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063081c8c4414610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c53565b6105ef565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61061a565b60405161021f9190611cc8565b34801561025657600080fd5b5061026a610265366004611cdb565b6106ac565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b5061023d610746565b3480156102a357600080fd5b506102b76102b2366004611d10565b6107d4565b005b3480156102c557600080fd5b506102cf600d5481565b60405190815260200161021f565b3480156102e957600080fd5b506008546102cf565b3480156102fe57600080fd5b506102cf600f5481565b34801561031457600080fd5b506102b7610323366004611d3a565b6108e9565b34801561033457600080fd5b506102cf610343366004611d10565b61091a565b6102b76109b0565b34801561035c57600080fd5b506102b761036b366004611d3a565b610a32565b34801561037c57600080fd5b5061039061038b366004611d76565b610a4d565b60405161021f9190611d91565b3480156103a957600080fd5b506102cf6103b8366004611cdb565b610aef565b3480156103c957600080fd5b5060105461021390610100900460ff1681565b3480156103e857600080fd5b506102b76103f7366004611e61565b610b82565b34801561040857600080fd5b506010546102139060ff1681565b34801561042257600080fd5b5061026a610431366004611cdb565b610bc3565b34801561044257600080fd5b506102cf610451366004611d76565b610c3a565b34801561046257600080fd5b506102b7610cc1565b34801561047757600080fd5b506102b7610cf7565b34801561048c57600080fd5b50600a546001600160a01b031661026a565b3480156104aa57600080fd5b5061023d610d46565b6102b76104c1366004611cdb565b610d55565b3480156104d257600080fd5b506102b76104e1366004611eaa565b610e0a565b3480156104f257600080fd5b506102b7610e15565b34801561050757600080fd5b506102b7610516366004611ee6565b610e5f565b34801561052757600080fd5b5061023d610e97565b34801561053c57600080fd5b5061023d61054b366004611cdb565b610ea4565b34801561055c57600080fd5b506102cf600e5481565b34801561057257600080fd5b50610213610581366004611f62565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105bb57600080fd5b506102b76105ca366004611e61565b611028565b3480156105db57600080fd5b506102b76105ea366004611d76565b611065565b60006001600160e01b0319821663780e9d6360e01b14806106145750610614826110fd565b92915050565b60606000805461062990611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461065590611f95565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661072a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6011805461075390611f95565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90611f95565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b505050505081565b60006107df82610bc3565b9050806001600160a01b0316836001600160a01b03160361084c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610721565b336001600160a01b038216148061086857506108688133610581565b6108da5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610721565b6108e4838361114d565b505050565b6108f333826111bb565b61090f5760405162461bcd60e51b815260040161072190611fcf565b6108e48383836112b2565b600061092583610c3a565b82106109875760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610721565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109da5760405162461bcd60e51b815260040161072190612020565b604051600090339047908381818185875af1925050503d8060008114610a1c576040519150601f19603f3d011682016040523d82523d6000602084013e610a21565b606091505b5050905080610a2f57600080fd5b50565b6108e483838360405180602001604052806000815250610e5f565b60606000610a5a83610c3a565b905060008167ffffffffffffffff811115610a7757610a77611dd5565b604051908082528060200260200182016040528015610aa0578160200160208202803683370190505b50905060005b82811015610ae757610ab8858261091a565b828281518110610aca57610aca612055565b602090810291909101015280610adf81612081565b915050610aa6565b509392505050565b6000610afa60085490565b8210610b5d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610721565b60088281548110610b7057610b70612055565b90600052602060002001549050919050565b600a546001600160a01b03163314610bac5760405162461bcd60e51b815260040161072190612020565b8051610bbf90600b906020840190611ba4565b5050565b6000818152600260205260408120546001600160a01b0316806106145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610721565b60006001600160a01b038216610ca55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610721565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161072190612020565b610cf5600061145d565b565b600a546001600160a01b03163314610d215760405162461bcd60e51b815260040161072190612020565b60105460ff16610d3a576010805460ff19166001179055565b6010805460ff19169055565b60606001805461062990611f95565b6000610d6060085490565b60105490915060ff1615610d7357600080fd5b60008211610d8057600080fd5b600f54821115610d8f57600080fd5b600e54610d9c838361209a565b1115610da757600080fd5b600a546001600160a01b03163314610ddb5760328110610ddb5781600d54610dcf91906120b2565b341015610ddb57600080fd5b60015b8281116108e457610df833610df3838561209a565b6114af565b80610e0281612081565b915050610dde565b610bbf3383836114c9565b600a546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161072190612020565b601054610100900460ff16610cf5576010805461ff001916610100179055565b610e6933836111bb565b610e855760405162461bcd60e51b815260040161072190611fcf565b610e9184848484611597565b50505050565b600c805461075390611f95565b6000818152600260205260409020546060906001600160a01b0316610f235760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610721565b601054610100900460ff161515600003610fc95760118054610f4490611f95565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7090611f95565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b50505050509050919050565b6000610fd36115ca565b90506000815111610ff35760405180602001604052806000815250611021565b80610ffd846115d9565b600c604051602001611011939291906120d1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110525760405162461bcd60e51b815260040161072190612020565b8051610bbf906011906020840190611ba4565b600a546001600160a01b0316331461108f5760405162461bcd60e51b815260040161072190612020565b6001600160a01b0381166110f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610721565b610a2f8161145d565b60006001600160e01b031982166380ac58cd60e01b148061112e57506001600160e01b03198216635b5e139f60e01b145b8061061457506301ffc9a760e01b6001600160e01b0319831614610614565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061118282610bc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610721565b600061123f83610bc3565b9050806001600160a01b0316846001600160a01b0316148061127a5750836001600160a01b031661126f846106ac565b6001600160a01b0316145b806112aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112c582610bc3565b6001600160a01b03161461132d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610721565b6001600160a01b03821661138f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610721565b61139a8383836116da565b6113a560008261114d565b6001600160a01b03831660009081526003602052604081208054600192906113ce908490612194565b90915550506001600160a01b03821660009081526003602052604081208054600192906113fc90849061209a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bbf828260405180602001604052806000815250611792565b816001600160a01b0316836001600160a01b03160361152a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115a28484846112b2565b6115ae848484846117c5565b610e915760405162461bcd60e51b8152600401610721906121ab565b6060600b805461062990611f95565b6060816000036116005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561162a578061161481612081565b91506116239050600a83612213565b9150611604565b60008167ffffffffffffffff81111561164557611645611dd5565b6040519080825280601f01601f19166020018201604052801561166f576020820181803683370190505b5090505b84156112aa57611684600183612194565b9150611691600a86612227565b61169c90603061209a565b60f81b8183815181106116b1576116b1612055565b60200101906001600160f81b031916908160001a9053506116d3600a86612213565b9450611673565b6001600160a01b0383166117355761173081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611758565b816001600160a01b0316836001600160a01b0316146117585761175883826118c6565b6001600160a01b03821661176f576108e481611963565b826001600160a01b0316826001600160a01b0316146108e4576108e48282611a12565b61179c8383611a56565b6117a960008484846117c5565b6108e45760405162461bcd60e51b8152600401610721906121ab565b60006001600160a01b0384163b156118bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061180990339089908890889060040161223b565b6020604051808303816000875af1925050508015611844575060408051601f3d908101601f1916820190925261184191810190612278565b60015b6118a1573d808015611872576040519150601f19603f3d011682016040523d82523d6000602084013e611877565b606091505b5080516000036118995760405162461bcd60e51b8152600401610721906121ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112aa565b506001949350505050565b600060016118d384610c3a565b6118dd9190612194565b600083815260076020526040902054909150808214611930576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061197590600190612194565b6000838152600960205260408120546008805493945090928490811061199d5761199d612055565b9060005260206000200154905080600883815481106119be576119be612055565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119f6576119f6612295565b6001900381819060005260206000200160009055905550505050565b6000611a1d83610c3a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611aac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600260205260409020546001600160a01b031615611b115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b611b1d600083836116da565b6001600160a01b0382166000908152600360205260408120805460019290611b4690849061209a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bb090611f95565b90600052602060002090601f016020900481019282611bd25760008555611c18565b82601f10611beb57805160ff1916838001178555611c18565b82800160010185558215611c18579182015b82811115611c18578251825591602001919060010190611bfd565b50611c24929150611c28565b5090565b5b80821115611c245760008155600101611c29565b6001600160e01b031981168114610a2f57600080fd5b600060208284031215611c6557600080fd5b813561102181611c3d565b60005b83811015611c8b578181015183820152602001611c73565b83811115610e915750506000910152565b60008151808452611cb4816020860160208601611c70565b601f01601f19169290920160200192915050565b6020815260006110216020830184611c9c565b600060208284031215611ced57600080fd5b5035919050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b600060208284031215611d8857600080fd5b61102182611cf4565b6020808252825182820181905260009190848201906040850190845b81811015611dc957835183529284019291840191600101611dad565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e0657611e06611dd5565b604051601f8501601f19908116603f01168101908282118183101715611e2e57611e2e611dd5565b81604052809350858152868686011115611e4757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e7357600080fd5b813567ffffffffffffffff811115611e8a57600080fd5b8201601f81018413611e9b57600080fd5b6112aa84823560208401611deb565b60008060408385031215611ebd57600080fd5b611ec683611cf4565b915060208301358015158114611edb57600080fd5b809150509250929050565b60008060008060808587031215611efc57600080fd5b611f0585611cf4565b9350611f1360208601611cf4565b925060408501359150606085013567ffffffffffffffff811115611f3657600080fd5b8501601f81018713611f4757600080fd5b611f5687823560208401611deb565b91505092959194509250565b60008060408385031215611f7557600080fd5b611f7e83611cf4565b9150611f8c60208401611cf4565b90509250929050565b600181811c90821680611fa957607f821691505b602082108103611fc957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120935761209361206b565b5060010190565b600082198211156120ad576120ad61206b565b500190565b60008160001904831182151516156120cc576120cc61206b565b500290565b6000845160206120e48285838a01611c70565b8551918401916120f78184848a01611c70565b8554920191600090600181811c908083168061211457607f831692505b858310810361213157634e487b7160e01b85526022600452602485fd5b808015612145576001811461215657612183565b60ff19851688528388019550612183565b60008b81526020902060005b8581101561217b5781548a820152908401908801612162565b505083880195505b50939b9a5050505050505050505050565b6000828210156121a6576121a661206b565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612222576122226121fd565b500490565b600082612236576122366121fd565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226e90830184611c9c565b9695505050505050565b60006020828403121561228a57600080fd5b815161102181611c3d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220470823cd8462e0f9f2e34abac55f24a207ce076249aff143c522f24bc1353a7264736f6c634300080d003368747470733a2f2f697066732e696f2f697066732f516d6265696d6856616e6e385a4536647143757a525535447671646a486b464c465574646d54315033727a756667697066733a2f2f78787878787878787878787878787878787878787878787878787878787878787878782f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed ByteCode Sourcemap

44614:2777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38340:224;;;;;;;;;;-1:-1:-1;38340:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38340:224:0;;;;;;;;24761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26320:221::-;;;;;;;;;;-1:-1:-1;26320:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26320:221:0;1528:203:1;44943:28:0;;;;;;;;;;;;;:::i;25843:411::-;;;;;;;;;;-1:-1:-1;25843:411:0;;;;;:::i;:::-;;:::i;:::-;;44771:31;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;44771:31:0;2173:177:1;38980:113:0;;;;;;;;;;-1:-1:-1;39068:10:0;:17;38980:113;;44843:32;;;;;;;;;;;;;;;;27070:339;;;;;;;;;;-1:-1:-1;27070:339:0;;;;;:::i;:::-;;:::i;38648:256::-;;;;;;;;;;-1:-1:-1;38648:256:0;;;;;:::i;:::-;;:::i;47230:158::-;;;:::i;27480:185::-;;;;;;;;;;-1:-1:-1;27480:185:0;;;;;:::i;:::-;;:::i;45823:348::-;;;;;;;;;;-1:-1:-1;45823:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39170:233::-;;;;;;;;;;-1:-1:-1;39170:233:0;;;;;:::i;:::-;;:::i;44910:28::-;;;;;;;;;;-1:-1:-1;44910:28:0;;;;;;;;;;;46987:98;;;;;;;;;;-1:-1:-1;46987:98:0;;;;;:::i;:::-;;:::i;44880:25::-;;;;;;;;;;-1:-1:-1;44880:25:0;;;;;;;;24455:239;;;;;;;;;;-1:-1:-1;24455:239:0;;;;;:::i;:::-;;:::i;24185:208::-;;;;;;;;;;-1:-1:-1;24185:208:0;;;;;:::i;:::-;;:::i;4804:103::-;;;;;;;;;;;;;:::i;47091:132::-;;;;;;;;;;;;;:::i;4153:87::-;;;;;;;;;;-1:-1:-1;4226:6:0;;-1:-1:-1;;;;;4226:6:0;4153:87;;24930:104;;;;;;;;;;;;;:::i;45346:471::-;;;;;;:::i;:::-;;:::i;26613:155::-;;;;;;;;;;-1:-1:-1;26613:155:0;;;;;:::i;:::-;;:::i;46696:157::-;;;;;;;;;;;;;:::i;27736:328::-;;;;;;;;;;-1:-1:-1;27736:328:0;;;;;:::i;:::-;;:::i;44729:37::-;;;;;;;;;;;;;:::i;46177:497::-;;;;;;;;;;-1:-1:-1;46177:497:0;;;;;:::i;:::-;;:::i;44807:31::-;;;;;;;;;;;;;;;;26839:164;;;;;;;;;;-1:-1:-1;26839:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26960:25:0;;;26936:4;26960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26839:164;46861:120;;;;;;;;;;-1:-1:-1;46861:120:0;;;;;:::i;:::-;;:::i;5062:201::-;;;;;;;;;;-1:-1:-1;5062:201:0;;;;;:::i;:::-;;:::i;38340:224::-;38442:4;-1:-1:-1;;;;;;38466:50:0;;-1:-1:-1;;;38466:50:0;;:90;;;38520:36;38544:11;38520:23;:36::i;:::-;38459:97;38340:224;-1:-1:-1;;38340:224:0:o;24761:100::-;24815:13;24848:5;24841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24761:100;:::o;26320:221::-;26396:7;29663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29663:16:0;26416:73;;;;-1:-1:-1;;;26416:73:0;;6617:2:1;26416:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;26416:73:0;;;;;;;;;-1:-1:-1;26509:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26509:24:0;;26320:221::o;44943:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25843:411::-;25924:13;25940:23;25955:7;25940:14;:23::i;:::-;25924:39;;25988:5;-1:-1:-1;;;;;25982:11:0;:2;-1:-1:-1;;;;;25982:11:0;;25974:57;;;;-1:-1:-1;;;25974:57:0;;7030:2:1;25974:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;25974:57:0;6828:397:1;25974:57:0;2957:10;-1:-1:-1;;;;;26066:21:0;;;;:62;;-1:-1:-1;26091:37:0;26108:5;2957:10;26839:164;:::i;26091:37::-;26044:168;;;;-1:-1:-1;;;26044:168:0;;7432:2:1;26044:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;26044:168:0;7230:420:1;26044:168:0;26225:21;26234:2;26238:7;26225:8;:21::i;:::-;25913:341;25843:411;;:::o;27070:339::-;27265:41;2957:10;27298:7;27265:18;:41::i;:::-;27257:103;;;;-1:-1:-1;;;27257:103:0;;;;;;;:::i;:::-;27373:28;27383:4;27389:2;27393:7;27373:9;:28::i;38648:256::-;38745:7;38781:23;38798:5;38781:16;:23::i;:::-;38773:5;:31;38765:87;;;;-1:-1:-1;;;38765:87:0;;8275:2:1;38765:87:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;38765:87:0;8073:407:1;38765:87:0;-1:-1:-1;;;;;;38870:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38648:256::o;47230:158::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;47301:58:::1;::::0;47283:12:::1;::::0;47309:10:::1;::::0;47333:21:::1;::::0;47283:12;47301:58;47283:12;47301:58;47333:21;47309:10;47301:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47282:77;;;47374:7;47366:16;;;::::0;::::1;;47275:113;47230:158::o:0;27480:185::-;27618:39;27635:4;27641:2;27645:7;27618:39;;;;;;;;;;;;:16;:39::i;45823:348::-;45898:16;45926:23;45952:17;45962:6;45952:9;:17::i;:::-;45926:43;;45976:25;46018:15;46004:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46004:30:0;;45976:58;;46046:9;46041:103;46061:15;46057:1;:19;46041:103;;;46106:30;46126:6;46134:1;46106:19;:30::i;:::-;46092:8;46101:1;46092:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46078:3;;;;:::i;:::-;;;;46041:103;;;-1:-1:-1;46157:8:0;45823:348;-1:-1:-1;;;45823:348:0:o;39170:233::-;39245:7;39281:30;39068:10;:17;;38980:113;39281:30;39273:5;:38;39265:95;;;;-1:-1:-1;;;39265:95:0;;9662:2:1;39265:95:0;;;9644:21:1;9701:2;9681:18;;;9674:30;9740:34;9720:18;;;9713:62;-1:-1:-1;;;9791:18:1;;;9784:42;9843:19;;39265:95:0;9460:408:1;39265:95:0;39378:10;39389:5;39378:17;;;;;;;;:::i;:::-;;;;;;;;;39371:24;;39170:233;;;:::o;46987:98::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;47058:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46987:98:::0;:::o;24455:239::-;24527:7;24563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24563:16:0;;24590:73;;;;-1:-1:-1;;;24590:73:0;;10075:2:1;24590:73:0;;;10057:21:1;10114:2;10094:18;;;10087:30;10153:34;10133:18;;;10126:62;-1:-1:-1;;;10204:18:1;;;10197:39;10253:19;;24590:73:0;9873:405:1;24185:208:0;24257:7;-1:-1:-1;;;;;24285:19:0;;24277:74;;;;-1:-1:-1;;;24277:74:0;;10485:2:1;24277:74:0;;;10467:21:1;10524:2;10504:18;;;10497:30;10563:34;10543:18;;;10536:62;-1:-1:-1;;;10614:18:1;;;10607:40;10664:19;;24277:74:0;10283:406:1;24277:74:0;-1:-1:-1;;;;;;24369:16:0;;;;;:9;:16;;;;;;;24185:208::o;4804:103::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;4869:30:::1;4896:1;4869:18;:30::i;:::-;4804:103::o:0;47091:132::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;47136:6:::1;::::0;::::1;;47132:86;;47154:6;:13:::0;;-1:-1:-1;;47154:13:0::1;47163:4;47154:13;::::0;;4804:103::o;47132:86::-:1;47196:6;:14:::0;;-1:-1:-1;;47196:14:0::1;::::0;;47091:132::o;24930:104::-;24986:13;25019:7;25012:14;;;;;:::i;45346:471::-;45403:14;45420:13;39068:10;:17;;38980:113;45420:13;45449:6;;45403:30;;-1:-1:-1;45449:6:0;;45448:7;45440:16;;;;;;45485:1;45471:11;:15;45463:24;;;;;;45517:13;;45502:11;:28;;45494:37;;;;;;45570:9;;45546:20;45555:11;45546:6;:20;:::i;:::-;:33;;45538:42;;;;;;4226:6;;-1:-1:-1;;;;;4226:6:0;45593:10;:21;45589:122;;45640:2;45630:6;:12;45627:77;;45680:11;45673:4;;:18;;;;:::i;:::-;45660:9;:31;;45652:40;;;;;;45736:1;45719:93;45744:11;45739:1;:16;45719:93;;45771:33;45781:10;45793;45802:1;45793:6;:10;:::i;:::-;45771:9;:33::i;:::-;45757:3;;;;:::i;:::-;;;;45719:93;;26613:155;26708:52;2957:10;26741:8;26751;26708:18;:52::i;46696:157::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;46745:8:::1;::::0;::::1;::::0;::::1;;;46741:50;;46767:8;:15:::0;;-1:-1:-1;;46767:15:0::1;;;::::0;;46696:157::o;27736:328::-;27911:41;2957:10;27944:7;27911:18;:41::i;:::-;27903:103;;;;-1:-1:-1;;;27903:103:0;;;;;;;:::i;:::-;28017:39;28031:4;28037:2;28041:7;28050:5;28017:13;:39::i;:::-;27736:328;;;;:::o;44729:37::-;;;;;;;:::i;46177:497::-;29639:4;29663:16;;;:7;:16;;;;;;46275:13;;-1:-1:-1;;;;;29663:16:0;46300:97;;;;-1:-1:-1;;;46300:97:0;;11202:2:1;46300:97:0;;;11184:21:1;11241:2;11221:18;;;11214:30;11280:34;11260:18;;;11253:62;-1:-1:-1;;;11331:18:1;;;11324:45;11386:19;;46300:97:0;11000:411:1;46300:97:0;46413:8;;;;;;;:17;;46425:5;46413:17;46410:62;;46450:14;46443:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46177:497;;;:::o;46410:62::-;46480:28;46511:10;:8;:10::i;:::-;46480:41;;46566:1;46541:14;46535:28;:32;:133;;;;;;;;;;;;;;;;;46603:14;46619:18;:7;:16;:18::i;:::-;46639:13;46586:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46535:133;46528:140;46177:497;-1:-1:-1;;;46177:497:0:o;46861:120::-;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;46943:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5062:201::-:0;4226:6;;-1:-1:-1;;;;;4226:6:0;2957:10;4373:23;4365:68;;;;-1:-1:-1;;;4365:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5151:22:0;::::1;5143:73;;;::::0;-1:-1:-1;;;5143:73:0;;13276:2:1;5143:73:0::1;::::0;::::1;13258:21:1::0;13315:2;13295:18;;;13288:30;13354:34;13334:18;;;13327:62;-1:-1:-1;;;13405:18:1;;;13398:36;13451:19;;5143:73:0::1;13074:402:1::0;5143:73:0::1;5227:28;5246:8;5227:18;:28::i;23816:305::-:0;23918:4;-1:-1:-1;;;;;;23955:40:0;;-1:-1:-1;;;23955:40:0;;:105;;-1:-1:-1;;;;;;;24012:48:0;;-1:-1:-1;;;24012:48:0;23955:105;:158;;;-1:-1:-1;;;;;;;;;;16694:40:0;;;24077:36;16585:157;33556:174;33631:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33631:29:0;-1:-1:-1;;;;;33631:29:0;;;;;;;;:24;;33685:23;33631:24;33685:14;:23::i;:::-;-1:-1:-1;;;;;33676:46:0;;;;;;;;;;;33556:174;;:::o;29868:348::-;29961:4;29663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29663:16:0;29978:73;;;;-1:-1:-1;;;29978:73:0;;13683:2:1;29978:73:0;;;13665:21:1;13722:2;13702:18;;;13695:30;13761:34;13741:18;;;13734:62;-1:-1:-1;;;13812:18:1;;;13805:42;13864:19;;29978:73:0;13481:408:1;29978:73:0;30062:13;30078:23;30093:7;30078:14;:23::i;:::-;30062:39;;30131:5;-1:-1:-1;;;;;30120:16:0;:7;-1:-1:-1;;;;;30120:16:0;;:51;;;;30164:7;-1:-1:-1;;;;;30140:31:0;:20;30152:7;30140:11;:20::i;:::-;-1:-1:-1;;;;;30140:31:0;;30120:51;:87;;;-1:-1:-1;;;;;;26960:25:0;;;26936:4;26960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30175:32;30112:96;29868:348;-1:-1:-1;;;;29868:348:0:o;32860:578::-;33019:4;-1:-1:-1;;;;;32992:31:0;:23;33007:7;32992:14;:23::i;:::-;-1:-1:-1;;;;;32992:31:0;;32984:85;;;;-1:-1:-1;;;32984:85:0;;14096:2:1;32984:85:0;;;14078:21:1;14135:2;14115:18;;;14108:30;14174:34;14154:18;;;14147:62;-1:-1:-1;;;14225:18:1;;;14218:39;14274:19;;32984:85:0;13894:405:1;32984:85:0;-1:-1:-1;;;;;33088:16:0;;33080:65;;;;-1:-1:-1;;;33080:65:0;;14506:2:1;33080:65:0;;;14488:21:1;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:1;;;14628:34;14679:19;;33080:65:0;14304:400:1;33080:65:0;33158:39;33179:4;33185:2;33189:7;33158:20;:39::i;:::-;33262:29;33279:1;33283:7;33262:8;:29::i;:::-;-1:-1:-1;;;;;33304:15:0;;;;;;:9;:15;;;;;:20;;33323:1;;33304:15;:20;;33323:1;;33304:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33335:13:0;;;;;;:9;:13;;;;;:18;;33352:1;;33335:13;:18;;33352:1;;33335:18;:::i;:::-;;;;-1:-1:-1;;33364:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33364:21:0;-1:-1:-1;;;;;33364:21:0;;;;;;;;;33403:27;;33364:16;;33403:27;;;;;;;32860:578;;;:::o;5423:191::-;5516:6;;;-1:-1:-1;;;;;5533:17:0;;;-1:-1:-1;;;;;;5533:17:0;;;;;;;5566:40;;5516:6;;;5533:17;5516:6;;5566:40;;5497:16;;5566:40;5486:128;5423:191;:::o;30558:110::-;30634:26;30644:2;30648:7;30634:26;;;;;;;;;;;;:9;:26::i;33872:315::-;34027:8;-1:-1:-1;;;;;34018:17:0;:5;-1:-1:-1;;;;;34018:17:0;;34010:55;;;;-1:-1:-1;;;34010:55:0;;15041:2:1;34010:55:0;;;15023:21:1;15080:2;15060:18;;;15053:30;15119:27;15099:18;;;15092:55;15164:18;;34010:55:0;14839:349:1;34010:55:0;-1:-1:-1;;;;;34076:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34076:46:0;;;;;;;;;;34138:41;;540::1;;;34138::0;;513:18:1;34138:41:0;;;;;;;33872:315;;;:::o;28946:::-;29103:28;29113:4;29119:2;29123:7;29103:9;:28::i;:::-;29150:48;29173:4;29179:2;29183:7;29192:5;29150:22;:48::i;:::-;29142:111;;;;-1:-1:-1;;;29142:111:0;;;;;;;:::i;45225:102::-;45285:13;45314:7;45307:14;;;;;:::i;439:723::-;495:13;716:5;725:1;716:10;712:53;;-1:-1:-1;;743:10:0;;;;;;;;;;;;-1:-1:-1;;;743:10:0;;;;;439:723::o;712:53::-;790:5;775:12;831:78;838:9;;831:78;;864:8;;;;:::i;:::-;;-1:-1:-1;887:10:0;;-1:-1:-1;895:2:0;887:10;;:::i;:::-;;;831:78;;;919:19;951:6;941:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;941:17:0;;919:39;;969:154;976:10;;969:154;;1003:11;1013:1;1003:11;;:::i;:::-;;-1:-1:-1;1072:10:0;1080:2;1072:5;:10;:::i;:::-;1059:24;;:2;:24;:::i;:::-;1046:39;;1029:6;1036;1029:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1029:56:0;;;;;;;;-1:-1:-1;1100:11:0;1109:2;1100:11;;:::i;:::-;;;969:154;;40016:589;-1:-1:-1;;;;;40222:18:0;;40218:187;;40257:40;40289:7;41432:10;:17;;41405:24;;;;:15;:24;;;;;:44;;;41460:24;;;;;;;;;;;;41328:164;40257:40;40218:187;;;40327:2;-1:-1:-1;;;;;40319:10:0;:4;-1:-1:-1;;;;;40319:10:0;;40315:90;;40346:47;40379:4;40385:7;40346:32;:47::i;:::-;-1:-1:-1;;;;;40419:16:0;;40415:183;;40452:45;40489:7;40452:36;:45::i;40415:183::-;40525:4;-1:-1:-1;;;;;40519:10:0;:2;-1:-1:-1;;;;;40519:10:0;;40515:83;;40546:40;40574:2;40578:7;40546:27;:40::i;30895:321::-;31025:18;31031:2;31035:7;31025:5;:18::i;:::-;31076:54;31107:1;31111:2;31115:7;31124:5;31076:22;:54::i;:::-;31054:154;;;;-1:-1:-1;;;31054:154:0;;;;;;;:::i;34752:799::-;34907:4;-1:-1:-1;;;;;34928:13:0;;6764:20;6812:8;34924:620;;34964:72;;-1:-1:-1;;;34964:72:0;;-1:-1:-1;;;;;34964:36:0;;;;;:72;;2957:10;;35015:4;;35021:7;;35030:5;;34964:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34964:72:0;;;;;;;;-1:-1:-1;;34964:72:0;;;;;;;;;;;;:::i;:::-;;;34960:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35206:6;:13;35223:1;35206:18;35202:272;;35249:60;;-1:-1:-1;;;35249:60:0;;;;;;;:::i;35202:272::-;35424:6;35418:13;35409:6;35405:2;35401:15;35394:38;34960:529;-1:-1:-1;;;;;;35087:51:0;-1:-1:-1;;;35087:51:0;;-1:-1:-1;35080:58:0;;34924:620;-1:-1:-1;35528:4:0;34752:799;;;;;;:::o;42119:988::-;42385:22;42435:1;42410:22;42427:4;42410:16;:22::i;:::-;:26;;;;:::i;:::-;42447:18;42468:26;;;:17;:26;;;;;;42385:51;;-1:-1:-1;42601:28:0;;;42597:328;;-1:-1:-1;;;;;42668:18:0;;42646:19;42668:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42719:30;;;;;;:44;;;42836:30;;:17;:30;;;;;:43;;;42597:328;-1:-1:-1;43021:26:0;;;;:17;:26;;;;;;;;43014:33;;;-1:-1:-1;;;;;43065:18:0;;;;;:12;:18;;;;;:34;;;;;;;43058:41;42119:988::o;43402:1079::-;43680:10;:17;43655:22;;43680:21;;43700:1;;43680:21;:::i;:::-;43712:18;43733:24;;;:15;:24;;;;;;44106:10;:26;;43655:46;;-1:-1:-1;43733:24:0;;43655:46;;44106:26;;;;;;:::i;:::-;;;;;;;;;44084:48;;44170:11;44145:10;44156;44145:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44250:28;;;:15;:28;;;;;;;:41;;;44422:24;;;;;44415:31;44457:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43473:1008;;;43402:1079;:::o;40906:221::-;40991:14;41008:20;41025:2;41008:16;:20::i;:::-;-1:-1:-1;;;;;41039:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41084:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40906:221:0:o;31552:382::-;-1:-1:-1;;;;;31632:16:0;;31624:61;;;;-1:-1:-1;;;31624:61:0;;17068:2:1;31624:61:0;;;17050:21:1;;;17087:18;;;17080:30;17146:34;17126:18;;;17119:62;17198:18;;31624:61:0;16866:356:1;31624:61:0;29639:4;29663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29663:16:0;:30;31696:58;;;;-1:-1:-1;;;31696:58:0;;17429:2:1;31696:58:0;;;17411:21:1;17468:2;17448:18;;;17441:30;17507;17487:18;;;17480:58;17555:18;;31696:58:0;17227:352:1;31696:58:0;31767:45;31796:1;31800:2;31804:7;31767:20;:45::i;:::-;-1:-1:-1;;;;;31825:13:0;;;;;;:9;:13;;;;;:18;;31842:1;;31825:13;:18;;31842:1;;31825:18;:::i;:::-;;;;-1:-1:-1;;31854:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31854:21:0;-1:-1:-1;;;;;31854:21:0;;;;;;;;31893:33;;31854:16;;;31893:33;;31854:16;;31893:33;31552: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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7655:413::-;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8485:356::-;8687:2;8669:21;;;8706:18;;;8699:30;8765:34;8760:2;8745:18;;8738:62;8832:2;8817:18;;8485:356::o;9056:127::-;9117:10;9112:3;9108:20;9105:1;9098:31;9148:4;9145:1;9138:15;9172:4;9169:1;9162:15;9188:127;9249:10;9244:3;9240:20;9237:1;9230:31;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9320:135;9359:3;9380:17;;;9377:43;;9400:18;;:::i;:::-;-1:-1:-1;9447:1:1;9436:13;;9320:135::o;10694:128::-;10734:3;10765:1;10761:6;10758:1;10755:13;10752:39;;;10771:18;;:::i;:::-;-1:-1:-1;10807:9:1;;10694:128::o;10827:168::-;10867:7;10933:1;10929;10925:6;10921:14;10918:1;10915:21;10910:1;10903:9;10896:17;10892:45;10889:71;;;10940:18;;:::i;:::-;-1:-1:-1;10980:9:1;;10827:168::o;11542:1527::-;11766:3;11804:6;11798:13;11830:4;11843:51;11887:6;11882:3;11877:2;11869:6;11865:15;11843:51;:::i;:::-;11957:13;;11916:16;;;;11979:55;11957:13;11916:16;12001:15;;;11979:55;:::i;:::-;12123:13;;12056:20;;;12096:1;;12183;12205:18;;;;12258;;;;12285:93;;12363:4;12353:8;12349:19;12337:31;;12285:93;12426:2;12416:8;12413:16;12393:18;12390:40;12387:167;;-1:-1:-1;;;12453:33:1;;12509:4;12506:1;12499:15;12539:4;12460:3;12527:17;12387:167;12570:18;12597:110;;;;12721:1;12716:328;;;;12563:481;;12597:110;-1:-1:-1;;12632:24:1;;12618:39;;12677:20;;;;-1:-1:-1;12597:110:1;;12716:328;11489:1;11482:14;;;11526:4;11513:18;;12811:1;12825:169;12839:8;12836:1;12833:15;12825:169;;;12921:14;;12906:13;;;12899:37;12964:16;;;;12856:10;;12825:169;;;12829:3;;13025:8;13018:5;13014:20;13007:27;;12563:481;-1:-1:-1;13060:3:1;;11542:1527;-1:-1:-1;;;;;;;;;;;11542:1527:1:o;14709:125::-;14749:4;14777:1;14774;14771:8;14768:34;;;14782:18;;:::i;:::-;-1:-1:-1;14819:9:1;;14709:125::o;15193:414::-;15395:2;15377:21;;;15434:2;15414:18;;;15407:30;15473:34;15468:2;15453:18;;15446:62;-1:-1:-1;;;15539:2:1;15524:18;;15517:48;15597:3;15582:19;;15193:414::o;15612:127::-;15673:10;15668:3;15664:20;15661:1;15654:31;15704:4;15701:1;15694:15;15728:4;15725:1;15718:15;15744:120;15784:1;15810;15800:35;;15815:18;;:::i;:::-;-1:-1:-1;15849:9:1;;15744:120::o;15869:112::-;15901:1;15927;15917:35;;15932:18;;:::i;:::-;-1:-1:-1;15966:9:1;;15869:112::o;15986:489::-;-1:-1:-1;;;;;16255:15:1;;;16237:34;;16307:15;;16302:2;16287:18;;16280:43;16354:2;16339:18;;16332:34;;;16402:3;16397:2;16382:18;;16375:31;;;16180:4;;16423:46;;16449:19;;16441:6;16423:46;:::i;:::-;16415:54;15986:489;-1:-1:-1;;;;;;15986:489:1:o;16480:249::-;16549:6;16602:2;16590:9;16581:7;16577:23;16573:32;16570:52;;;16618:1;16615;16608:12;16570:52;16650:9;16644:16;16669:30;16693:5;16669:30;:::i;16734:127::-;16795:10;16790:3;16786:20;16783:1;16776:31;16826:4;16823:1;16816:15;16850:4;16847:1;16840:15

Swarm Source

ipfs://470823cd8462e0f9f2e34abac55f24a207ce076249aff143c522f24bc1353a72
Loading