ETH Price: $3,391.80 (-1.54%)
Gas: 5 Gwei

Token

mask by die Verhullung (MASK)
 

Overview

Max Total Supply

1,000 MASK

Holders

259

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thephotograbbear.eth
Balance
1 MASK
0x8c8b692ee84fc1370163151d53edf13529a296a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
maskbydieVerhullung

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

/**
mͫaͣs͛ᴋⷦ вⷡy dͩiͥeͤ Vͮeͤrͬhͪuͧ̈lluͧng

mͫaͣs͛ᴋⷦ вⷡy dͩiͥeͤ Vͮeͤrͬhͪuͧ̈lluͧng

mͫaͣs͛ᴋⷦ вⷡy dͩiͥeͤ Vͮeͤrͬhͪuͧ̈lluͧng
*/
 // SPDX-License-Identifier: MIT
//Developer Info:



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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);
    }
}
    pragma solidity ^0.8.7;
    
    contract maskbydieVerhullung is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix ;
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public costFor1NFT = 0.005 ether;
  uint256 public costFor2NFT = 0.008 ether ;
  uint256 public costFor3NFT = 0.01 ether ;
  

  uint16 public maxSupply = 1000;
  uint8 public maxMintAmountPerTx = 3;
  uint8 public maxMintAmountPerWallet = 3;
                                                             

  bool public paused = true;
  bool public reveal =false;
  
   mapping (address => uint8) public NFTPerPublicAddress;
  
 
  
  
 
  

  constructor() ERC721A("mask by die Verhullung", "MASK") {
  }

 
  

  
 
  function Mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerWallet, "Exceeds max per Wallet.");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Exceeds max per Wallet.");

    require(!paused, "The contract is paused!");
    
      if(_mintAmount == 1)
    {
    require(msg.value >= costFor1NFT, "Insufficient funds!");
    }
      if(_mintAmount == 2)
    {
    require(msg.value >= costFor2NFT, "Insufficient funds!");
    }
    else {
         require(msg.value >= costFor3NFT, "Insufficient funds!");
     
         
    }
    


    _safeMint(msg.sender , _mintAmount);

    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function  Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceees max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



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

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


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
   
  }

  function setCostFor1NFT(uint _cost) external onlyOwner{
      costFor1NFT = _cost;
  }
    function setCostFor2NFT(uint _cost) external onlyOwner{
      costFor2NFT = _cost;
  }
     function setCostFor3NFT(uint _cost) external onlyOwner{
      costFor3NFT = _cost;
  }



 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

  
  function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerWallet = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costFor1NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costFor2NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costFor3NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCostFor1NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostFor2NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostFor3NFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"_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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000150565b506611c37937e08000600c55661c6bf526340000600d55662386f26fc10000600e55600f805465ffffffffffff19166401030303e81790553480156200006d57600080fd5b50604080518082018252601681527f6d61736b206279206469652056657268756c6c756e67000000000000000000006020808301918252835180850190945260048452634d41534b60e01b908401528151919291620000cf9160029162000150565b508051620000e590600390602084019062000150565b5050600160005550620000f833620000fe565b62000233565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e90620001f6565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600181811c908216806200020b57607f821691505b602082108114156200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b61244180620002436000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e201461069c578063d5abeb01146106bc578063e94053c7146106ea578063e985e9c51461071a578063eef440af14610763578063f2fde38b1461077857600080fd5b8063aa06229014610605578063b88d4fde14610625578063bc951b9114610645578063c7e4a8eb14610666578063c87b56dd1461067c57600080fd5b806394354fd0116100fd57806394354fd01461056857806395d89b411461059a578063a22cb465146105af578063a2522d2d146105cf578063a475b5dd146105e257600080fd5b80636352211e146104d557806370a08231146104f5578063715018a6146105155780637ec4a6591461052a5780638da5cb5b1461054a57600080fd5b806326bc2d66116101c75780633bd649681161018b5780633bd64968146104535780633ccfd60b1461046857806342842e0e1461047d5780635c975abb1461049d578063633b4fc3146104bf57600080fd5b806326bc2d66146103be57806328b60d15146103de5780632f6f98e1146103fe578063339afe8d1461041e57806337a66d851461043e57600080fd5b8063095ea7b31161020e578063095ea7b3146103205780631067fcc71461034057806311cea4b21461036057806318160ddd1461038057806323b872dd1461039e57600080fd5b806301ffc9a71461024b578063056e4ae21461028057806306421c2f146102a457806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561025757600080fd5b5061026b610266366004611f44565b610798565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610296600e5481565b604051908152602001610277565b3480156102b057600080fd5b506102c46102bf366004611fc7565b6107ea565b005b3480156102d257600080fd5b506102db610835565b60405161027791906121e5565b3480156102f457600080fd5b50610308610303366004611ffe565b6108c7565b6040516001600160a01b039091168152602001610277565b34801561032c57600080fd5b506102c461033b366004611f1a565b61090b565b34801561034c57600080fd5b506102c461035b366004611f7e565b610999565b34801561036c57600080fd5b506102c461037b366004611ffe565b6109da565b34801561038c57600080fd5b50610296600154600054036000190190565b3480156103aa57600080fd5b506102c46103b9366004611e26565b610a09565b3480156103ca57600080fd5b506102c46103d9366004611ffe565b610a14565b3480156103ea57600080fd5b506102c46103f9366004612017565b610a43565b34801561040a57600080fd5b506102c4610419366004611fe2565b610a8d565b34801561042a57600080fd5b506102c4610439366004611ffe565b610b34565b34801561044a57600080fd5b506102c4610b63565b34801561045f57600080fd5b506102c4610bb0565b34801561047457600080fd5b506102c4610bff565b34801561048957600080fd5b506102c4610498366004611e26565b610c58565b3480156104a957600080fd5b50600f5461026b90640100000000900460ff1681565b3480156104cb57600080fd5b50610296600d5481565b3480156104e157600080fd5b506103086104f0366004611ffe565b610c73565b34801561050157600080fd5b50610296610510366004611dd8565b610c85565b34801561052157600080fd5b506102c4610cd4565b34801561053657600080fd5b506102c4610545366004611f7e565b610d0a565b34801561055657600080fd5b506008546001600160a01b0316610308565b34801561057457600080fd5b50600f546105889062010000900460ff1681565b60405160ff9091168152602001610277565b3480156105a657600080fd5b506102db610d47565b3480156105bb57600080fd5b506102c46105ca366004611ede565b610d56565b6102c46105dd366004612017565b610dec565b3480156105ee57600080fd5b50600f5461026b9065010000000000900460ff1681565b34801561061157600080fd5b506102c4610620366004612017565b611059565b34801561063157600080fd5b506102c4610640366004611e62565b6110a1565b34801561065157600080fd5b50600f54610588906301000000900460ff1681565b34801561067257600080fd5b50610296600c5481565b34801561068857600080fd5b506102db610697366004611ffe565b6110f2565b3480156106a857600080fd5b506102c46106b7366004612032565b611265565b3480156106c857600080fd5b50600f546106d79061ffff1681565b60405161ffff9091168152602001610277565b3480156106f657600080fd5b50610588610705366004611dd8565b60106020526000908152604090205460ff1681565b34801561072657600080fd5b5061026b610735366004611df3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076f57600080fd5b506102db611369565b34801561078457600080fd5b506102c4610793366004611dd8565b6113f7565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b8152600401610814906121f8565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b60606002805461084490612333565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612333565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d282611492565b6108ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091682610c73565b9050806001600160a01b0316836001600160a01b0316141561094b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096b57506109698133610735565b155b15610989576040516367d9dca160e11b815260040160405180910390fd5b6109948383836114cb565b505050565b6008546001600160a01b031633146109c35760405162461bcd60e51b8152600401610814906121f8565b80516109d690600b906020840190611c8a565b5050565b6008546001600160a01b03163314610a045760405162461bcd60e51b8152600401610814906121f8565b600c55565b610994838383611527565b6008546001600160a01b03163314610a3e5760405162461bcd60e51b8152600401610814906121f8565b600d55565b6008546001600160a01b03163314610a6d5760405162461bcd60e51b8152600401610814906121f8565b600f805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610ab75760405162461bcd60e51b8152600401610814906121f8565b6000610aca600154600054036000190190565b600f5490915061ffff16610ade848361225a565b61ffff161115610b265760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610814565b610994828461ffff16611717565b6008546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610814906121f8565b600e55565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b8152600401610814906121f8565b600f805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610814906121f8565b600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610c295760405162461bcd60e51b8152600401610814906121f8565b6040514790339082156108fc029083906000818181858888f193505050501580156109d6573d6000803e3d6000fd5b610994838383604051806020016040528060008152506110a1565b6000610c7e82611731565b5192915050565b60006001600160a01b038216610cae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610814906121f8565b610d08600061185a565b565b6008546001600160a01b03163314610d345760405162461bcd60e51b8152600401610814906121f8565b80516109d6906009906020840190611c8a565b60606003805461084490612333565b6001600160a01b038216331415610d805760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610dff600154600054036000190190565b33600090815260106020526040902054600f5491925060ff9081169161ffff1690610e2c9085168461225a565b61ffff161115610e745760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610814565b600f546301000000900460ff16610e8b8285612298565b60ff161115610ed65760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b6044820152606401610814565b60008360ff16118015610ef85750600f5460ff62010000909104811690841611155b610f3e5760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b6044820152606401610814565b600f54640100000000900460ff1615610f995760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610814565b8260ff1660011415610fc757600c54341015610fc75760405162461bcd60e51b81526004016108149061222d565b8260ff1660021415610ffa57600d54341015610ff55760405162461bcd60e51b81526004016108149061222d565b61101c565b600e5434101561101c5760405162461bcd60e51b81526004016108149061222d565b611029338460ff16611717565b6110338184612298565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b031633146110835760405162461bcd60e51b8152600401610814906121f8565b600f805460ff909216620100000262ff000019909216919091179055565b6110ac848484611527565b6001600160a01b0383163b151580156110ce57506110cc848484846118ac565b155b156110ec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110fd82611492565b6111615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610814565b600f5465010000000000900460ff1661120657600b805461118190612333565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90612333565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b50505050509050919050565b60006112106119a4565b90506000815111611230576040518060200160405280600081525061125e565b8061123a846119b3565b600a60405160200161124e939291906120e4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610814906121f8565b60006112a2600154600054036000190190565b905060006112b38360ff87166122d1565b600f5490915061ffff908116906112cd9083908516612280565b11156113115760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2b99036b0bc1039bab838363c9760691b6044820152606401610814565b60005b838110156113615761134f858583818110611331576113316123c9565b90506020020160208101906113469190611dd8565b8760ff16611717565b806113598161236e565b915050611314565b505050505050565b600b805461137690612333565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290612333565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b505050505081565b6008546001600160a01b031633146114215760405162461bcd60e51b8152600401610814906121f8565b6001600160a01b0381166114865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b61148f8161185a565b50565b6000816001111580156114a6575060005482105b80156107e4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153282611731565b9050836001600160a01b031681600001516001600160a01b0316146115695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061158757506115878533610735565b806115a2575033611597846108c7565b6001600160a01b0316145b9050806115c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e957604051633a954ecd60e21b815260040160405180910390fd5b6115f5600084876114cb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116cb5760005482146116cb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109d6828260405180602001604052806000815250611ab1565b60408051606081018252600080825260208201819052918101919091528180600111158015611761575060005481105b1561184157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061183f5780516001600160a01b0316156117d5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561183a579392505050565b6117d5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e19033908990889088906004016121a8565b602060405180830381600087803b1580156118fb57600080fd5b505af192505050801561192b575060408051601f3d908101601f1916820190925261192891810190611f61565b60015b611986573d808015611959576040519150601f19603f3d011682016040523d82523d6000602084013e61195e565b606091505b50805161197e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461084490612333565b6060816119d75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0157806119eb8161236e565b91506119fa9050600a836122bd565b91506119db565b60008167ffffffffffffffff811115611a1c57611a1c6123df565b6040519080825280601f01601f191660200182016040528015611a46576020820181803683370190505b5090505b841561199c57611a5b6001836122f0565b9150611a68600a86612389565b611a73906030612280565b60f81b818381518110611a8857611a886123c9565b60200101906001600160f81b031916908160001a905350611aaa600a866122bd565b9450611a4a565b61099483838360016000546001600160a01b038516611ae257604051622e076360e81b815260040160405180910390fd5b83611b005760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611bb257506001600160a01b0387163b15155b15611c3b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c0360008884806001019550886118ac565b611c20576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611bb8578260005414611c3657600080fd5b611c81565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c3c575b50600055611710565b828054611c9690612333565b90600052602060002090601f016020900481019282611cb85760008555611cfe565b82601f10611cd157805160ff1916838001178555611cfe565b82800160010185558215611cfe579182015b82811115611cfe578251825591602001919060010190611ce3565b50611d0a929150611d0e565b5090565b5b80821115611d0a5760008155600101611d0f565b600067ffffffffffffffff80841115611d3e57611d3e6123df565b604051601f8501601f19908116603f01168101908282118183101715611d6657611d666123df565b81604052809350858152868686011115611d7f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611db057600080fd5b919050565b803561ffff81168114611db057600080fd5b803560ff81168114611db057600080fd5b600060208284031215611dea57600080fd5b61125e82611d99565b60008060408385031215611e0657600080fd5b611e0f83611d99565b9150611e1d60208401611d99565b90509250929050565b600080600060608486031215611e3b57600080fd5b611e4484611d99565b9250611e5260208501611d99565b9150604084013590509250925092565b60008060008060808587031215611e7857600080fd5b611e8185611d99565b9350611e8f60208601611d99565b925060408501359150606085013567ffffffffffffffff811115611eb257600080fd5b8501601f81018713611ec357600080fd5b611ed287823560208401611d23565b91505092959194509250565b60008060408385031215611ef157600080fd5b611efa83611d99565b915060208301358015158114611f0f57600080fd5b809150509250929050565b60008060408385031215611f2d57600080fd5b611f3683611d99565b946020939093013593505050565b600060208284031215611f5657600080fd5b813561125e816123f5565b600060208284031215611f7357600080fd5b815161125e816123f5565b600060208284031215611f9057600080fd5b813567ffffffffffffffff811115611fa757600080fd5b8201601f81018413611fb857600080fd5b61199c84823560208401611d23565b600060208284031215611fd957600080fd5b61125e82611db5565b60008060408385031215611ff557600080fd5b611e0f83611db5565b60006020828403121561201057600080fd5b5035919050565b60006020828403121561202957600080fd5b61125e82611dc7565b60008060006040848603121561204757600080fd5b61205084611dc7565b9250602084013567ffffffffffffffff8082111561206d57600080fd5b818601915086601f83011261208157600080fd5b81358181111561209057600080fd5b8760208260051b85010111156120a557600080fd5b6020830194508093505050509250925092565b600081518084526120d0816020860160208601612307565b601f01601f19169290920160200192915050565b6000845160206120f78285838a01612307565b85519184019161210a8184848a01612307565b8554920191600090600181811c908083168061212757607f831692505b85831081141561214557634e487b7160e01b85526022600452602485fd5b808015612159576001811461216a57612197565b60ff19851688528388019550612197565b60008b81526020902060005b8581101561218f5781548a820152908401908801612176565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121db908301846120b8565b9695505050505050565b60208152600061125e60208301846120b8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156122775761227761239d565b01949350505050565b600082198211156122935761229361239d565b500190565b600060ff821660ff84168060ff038211156122b5576122b561239d565b019392505050565b6000826122cc576122cc6123b3565b500490565b60008160001904831182151516156122eb576122eb61239d565b500290565b6000828210156123025761230261239d565b500390565b60005b8381101561232257818101518382015260200161230a565b838111156110ec5750506000910152565b600181811c9082168061234757607f821691505b6020821081141561236857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123825761238261239d565b5060010190565b600082612398576123986123b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148f57600080fdfea264697066735822122051f33ae28427c00191feca45a9610e54828d92b948021c60112a1d162139335964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636352211e11610139578063aa062290116100b6578063cffb6e201161007a578063cffb6e201461069c578063d5abeb01146106bc578063e94053c7146106ea578063e985e9c51461071a578063eef440af14610763578063f2fde38b1461077857600080fd5b8063aa06229014610605578063b88d4fde14610625578063bc951b9114610645578063c7e4a8eb14610666578063c87b56dd1461067c57600080fd5b806394354fd0116100fd57806394354fd01461056857806395d89b411461059a578063a22cb465146105af578063a2522d2d146105cf578063a475b5dd146105e257600080fd5b80636352211e146104d557806370a08231146104f5578063715018a6146105155780637ec4a6591461052a5780638da5cb5b1461054a57600080fd5b806326bc2d66116101c75780633bd649681161018b5780633bd64968146104535780633ccfd60b1461046857806342842e0e1461047d5780635c975abb1461049d578063633b4fc3146104bf57600080fd5b806326bc2d66146103be57806328b60d15146103de5780632f6f98e1146103fe578063339afe8d1461041e57806337a66d851461043e57600080fd5b8063095ea7b31161020e578063095ea7b3146103205780631067fcc71461034057806311cea4b21461036057806318160ddd1461038057806323b872dd1461039e57600080fd5b806301ffc9a71461024b578063056e4ae21461028057806306421c2f146102a457806306fdde03146102c6578063081812fc146102e8575b600080fd5b34801561025757600080fd5b5061026b610266366004611f44565b610798565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610296600e5481565b604051908152602001610277565b3480156102b057600080fd5b506102c46102bf366004611fc7565b6107ea565b005b3480156102d257600080fd5b506102db610835565b60405161027791906121e5565b3480156102f457600080fd5b50610308610303366004611ffe565b6108c7565b6040516001600160a01b039091168152602001610277565b34801561032c57600080fd5b506102c461033b366004611f1a565b61090b565b34801561034c57600080fd5b506102c461035b366004611f7e565b610999565b34801561036c57600080fd5b506102c461037b366004611ffe565b6109da565b34801561038c57600080fd5b50610296600154600054036000190190565b3480156103aa57600080fd5b506102c46103b9366004611e26565b610a09565b3480156103ca57600080fd5b506102c46103d9366004611ffe565b610a14565b3480156103ea57600080fd5b506102c46103f9366004612017565b610a43565b34801561040a57600080fd5b506102c4610419366004611fe2565b610a8d565b34801561042a57600080fd5b506102c4610439366004611ffe565b610b34565b34801561044a57600080fd5b506102c4610b63565b34801561045f57600080fd5b506102c4610bb0565b34801561047457600080fd5b506102c4610bff565b34801561048957600080fd5b506102c4610498366004611e26565b610c58565b3480156104a957600080fd5b50600f5461026b90640100000000900460ff1681565b3480156104cb57600080fd5b50610296600d5481565b3480156104e157600080fd5b506103086104f0366004611ffe565b610c73565b34801561050157600080fd5b50610296610510366004611dd8565b610c85565b34801561052157600080fd5b506102c4610cd4565b34801561053657600080fd5b506102c4610545366004611f7e565b610d0a565b34801561055657600080fd5b506008546001600160a01b0316610308565b34801561057457600080fd5b50600f546105889062010000900460ff1681565b60405160ff9091168152602001610277565b3480156105a657600080fd5b506102db610d47565b3480156105bb57600080fd5b506102c46105ca366004611ede565b610d56565b6102c46105dd366004612017565b610dec565b3480156105ee57600080fd5b50600f5461026b9065010000000000900460ff1681565b34801561061157600080fd5b506102c4610620366004612017565b611059565b34801561063157600080fd5b506102c4610640366004611e62565b6110a1565b34801561065157600080fd5b50600f54610588906301000000900460ff1681565b34801561067257600080fd5b50610296600c5481565b34801561068857600080fd5b506102db610697366004611ffe565b6110f2565b3480156106a857600080fd5b506102c46106b7366004612032565b611265565b3480156106c857600080fd5b50600f546106d79061ffff1681565b60405161ffff9091168152602001610277565b3480156106f657600080fd5b50610588610705366004611dd8565b60106020526000908152604090205460ff1681565b34801561072657600080fd5b5061026b610735366004611df3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076f57600080fd5b506102db611369565b34801561078457600080fd5b506102c4610793366004611dd8565b6113f7565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b8152600401610814906121f8565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b60606002805461084490612333565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612333565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d282611492565b6108ef576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091682610c73565b9050806001600160a01b0316836001600160a01b0316141561094b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096b57506109698133610735565b155b15610989576040516367d9dca160e11b815260040160405180910390fd5b6109948383836114cb565b505050565b6008546001600160a01b031633146109c35760405162461bcd60e51b8152600401610814906121f8565b80516109d690600b906020840190611c8a565b5050565b6008546001600160a01b03163314610a045760405162461bcd60e51b8152600401610814906121f8565b600c55565b610994838383611527565b6008546001600160a01b03163314610a3e5760405162461bcd60e51b8152600401610814906121f8565b600d55565b6008546001600160a01b03163314610a6d5760405162461bcd60e51b8152600401610814906121f8565b600f805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610ab75760405162461bcd60e51b8152600401610814906121f8565b6000610aca600154600054036000190190565b600f5490915061ffff16610ade848361225a565b61ffff161115610b265760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610814565b610994828461ffff16611717565b6008546001600160a01b03163314610b5e5760405162461bcd60e51b8152600401610814906121f8565b600e55565b6008546001600160a01b03163314610b8d5760405162461bcd60e51b8152600401610814906121f8565b600f805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610814906121f8565b600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610c295760405162461bcd60e51b8152600401610814906121f8565b6040514790339082156108fc029083906000818181858888f193505050501580156109d6573d6000803e3d6000fd5b610994838383604051806020016040528060008152506110a1565b6000610c7e82611731565b5192915050565b60006001600160a01b038216610cae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cfe5760405162461bcd60e51b8152600401610814906121f8565b610d08600061185a565b565b6008546001600160a01b03163314610d345760405162461bcd60e51b8152600401610814906121f8565b80516109d6906009906020840190611c8a565b60606003805461084490612333565b6001600160a01b038216331415610d805760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610dff600154600054036000190190565b33600090815260106020526040902054600f5491925060ff9081169161ffff1690610e2c9085168461225a565b61ffff161115610e745760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610814565b600f546301000000900460ff16610e8b8285612298565b60ff161115610ed65760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b6044820152606401610814565b60008360ff16118015610ef85750600f5460ff62010000909104811690841611155b610f3e5760405162461bcd60e51b815260206004820152601760248201527622bc31b2b2b2399036b0bc103832b9102bb0b63632ba1760491b6044820152606401610814565b600f54640100000000900460ff1615610f995760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610814565b8260ff1660011415610fc757600c54341015610fc75760405162461bcd60e51b81526004016108149061222d565b8260ff1660021415610ffa57600d54341015610ff55760405162461bcd60e51b81526004016108149061222d565b61101c565b600e5434101561101c5760405162461bcd60e51b81526004016108149061222d565b611029338460ff16611717565b6110338184612298565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b6008546001600160a01b031633146110835760405162461bcd60e51b8152600401610814906121f8565b600f805460ff909216620100000262ff000019909216919091179055565b6110ac848484611527565b6001600160a01b0383163b151580156110ce57506110cc848484846118ac565b155b156110ec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110fd82611492565b6111615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610814565b600f5465010000000000900460ff1661120657600b805461118190612333565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90612333565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b50505050509050919050565b60006112106119a4565b90506000815111611230576040518060200160405280600081525061125e565b8061123a846119b3565b600a60405160200161124e939291906120e4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610814906121f8565b60006112a2600154600054036000190190565b905060006112b38360ff87166122d1565b600f5490915061ffff908116906112cd9083908516612280565b11156113115760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2b99036b0bc1039bab838363c9760691b6044820152606401610814565b60005b838110156113615761134f858583818110611331576113316123c9565b90506020020160208101906113469190611dd8565b8760ff16611717565b806113598161236e565b915050611314565b505050505050565b600b805461137690612333565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290612333565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b505050505081565b6008546001600160a01b031633146114215760405162461bcd60e51b8152600401610814906121f8565b6001600160a01b0381166114865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b61148f8161185a565b50565b6000816001111580156114a6575060005482105b80156107e4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061153282611731565b9050836001600160a01b031681600001516001600160a01b0316146115695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061158757506115878533610735565b806115a2575033611597846108c7565b6001600160a01b0316145b9050806115c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115e957604051633a954ecd60e21b815260040160405180910390fd5b6115f5600084876114cb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116cb5760005482146116cb578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109d6828260405180602001604052806000815250611ab1565b60408051606081018252600080825260208201819052918101919091528180600111158015611761575060005481105b1561184157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061183f5780516001600160a01b0316156117d5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561183a579392505050565b6117d5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e19033908990889088906004016121a8565b602060405180830381600087803b1580156118fb57600080fd5b505af192505050801561192b575060408051601f3d908101601f1916820190925261192891810190611f61565b60015b611986573d808015611959576040519150601f19603f3d011682016040523d82523d6000602084013e61195e565b606091505b50805161197e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461084490612333565b6060816119d75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0157806119eb8161236e565b91506119fa9050600a836122bd565b91506119db565b60008167ffffffffffffffff811115611a1c57611a1c6123df565b6040519080825280601f01601f191660200182016040528015611a46576020820181803683370190505b5090505b841561199c57611a5b6001836122f0565b9150611a68600a86612389565b611a73906030612280565b60f81b818381518110611a8857611a886123c9565b60200101906001600160f81b031916908160001a905350611aaa600a866122bd565b9450611a4a565b61099483838360016000546001600160a01b038516611ae257604051622e076360e81b815260040160405180910390fd5b83611b005760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611bb257506001600160a01b0387163b15155b15611c3b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c0360008884806001019550886118ac565b611c20576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611bb8578260005414611c3657600080fd5b611c81565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c3c575b50600055611710565b828054611c9690612333565b90600052602060002090601f016020900481019282611cb85760008555611cfe565b82601f10611cd157805160ff1916838001178555611cfe565b82800160010185558215611cfe579182015b82811115611cfe578251825591602001919060010190611ce3565b50611d0a929150611d0e565b5090565b5b80821115611d0a5760008155600101611d0f565b600067ffffffffffffffff80841115611d3e57611d3e6123df565b604051601f8501601f19908116603f01168101908282118183101715611d6657611d666123df565b81604052809350858152868686011115611d7f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611db057600080fd5b919050565b803561ffff81168114611db057600080fd5b803560ff81168114611db057600080fd5b600060208284031215611dea57600080fd5b61125e82611d99565b60008060408385031215611e0657600080fd5b611e0f83611d99565b9150611e1d60208401611d99565b90509250929050565b600080600060608486031215611e3b57600080fd5b611e4484611d99565b9250611e5260208501611d99565b9150604084013590509250925092565b60008060008060808587031215611e7857600080fd5b611e8185611d99565b9350611e8f60208601611d99565b925060408501359150606085013567ffffffffffffffff811115611eb257600080fd5b8501601f81018713611ec357600080fd5b611ed287823560208401611d23565b91505092959194509250565b60008060408385031215611ef157600080fd5b611efa83611d99565b915060208301358015158114611f0f57600080fd5b809150509250929050565b60008060408385031215611f2d57600080fd5b611f3683611d99565b946020939093013593505050565b600060208284031215611f5657600080fd5b813561125e816123f5565b600060208284031215611f7357600080fd5b815161125e816123f5565b600060208284031215611f9057600080fd5b813567ffffffffffffffff811115611fa757600080fd5b8201601f81018413611fb857600080fd5b61199c84823560208401611d23565b600060208284031215611fd957600080fd5b61125e82611db5565b60008060408385031215611ff557600080fd5b611e0f83611db5565b60006020828403121561201057600080fd5b5035919050565b60006020828403121561202957600080fd5b61125e82611dc7565b60008060006040848603121561204757600080fd5b61205084611dc7565b9250602084013567ffffffffffffffff8082111561206d57600080fd5b818601915086601f83011261208157600080fd5b81358181111561209057600080fd5b8760208260051b85010111156120a557600080fd5b6020830194508093505050509250925092565b600081518084526120d0816020860160208601612307565b601f01601f19169290920160200192915050565b6000845160206120f78285838a01612307565b85519184019161210a8184848a01612307565b8554920191600090600181811c908083168061212757607f831692505b85831081141561214557634e487b7160e01b85526022600452602485fd5b808015612159576001811461216a57612197565b60ff19851688528388019550612197565b60008b81526020902060005b8581101561218f5781548a820152908401908801612176565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121db908301846120b8565b9695505050505050565b60208152600061125e60208301846120b8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156122775761227761239d565b01949350505050565b600082198211156122935761229361239d565b500190565b600060ff821660ff84168060ff038211156122b5576122b561239d565b019392505050565b6000826122cc576122cc6123b3565b500490565b60008160001904831182151516156122eb576122eb61239d565b500290565b6000828210156123025761230261239d565b500390565b60005b8381101561232257818101518382015260200161230a565b838111156110ec5750506000910152565b600181811c9082168061234757607f821691505b6020821081141561236857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123825761238261239d565b5060010190565b600082612398576123986123b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461148f57600080fdfea264697066735822122051f33ae28427c00191feca45a9610e54828d92b948021c60112a1d162139335964736f6c63430008070033

Deployed Bytecode Sourcemap

44331:4310:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24655:305;;;;;;;;;;-1:-1:-1;24655:305:0;;;;;:::i;:::-;;:::i;:::-;;;8357:14:1;;8350:22;8332:41;;8320:2;8305:18;24655:305:0;;;;;;;;44621:39;;;;;;;;;;;;;;;;;;;11879:25:1;;;11867:2;11852:18;44621:39:0;11733:177:1;46871:97:0;;;;;;;;;;-1:-1:-1;46871:97:0;;;;;:::i;:::-;;:::i;:::-;;27768:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29271:204::-;;;;;;;;;;-1:-1:-1;29271:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7655:32:1;;;7637:51;;7625:2;7610:18;29271:204:0;7491:203:1;28834:371:0;;;;;;;;;;-1:-1:-1;28834:371:0;;;;;:::i;:::-;;:::i;47594:102::-;;;;;;;;;;-1:-1:-1;47594:102:0;;;;;:::i;:::-;;:::i;47784:88::-;;;;;;;;;;-1:-1:-1;47784:88:0;;;;;:::i;:::-;;:::i;23904:303::-;;;;;;;;;;;;23761:1;24158:12;23948:7;24142:13;:28;-1:-1:-1;;24142:46:0;;23904:303;30136:170;;;;;;;;;;-1:-1:-1;30136:170:0;;;;;:::i;:::-;;:::i;47878:88::-;;;;;;;;;;-1:-1:-1;47878:88:0;;;;;:::i;:::-;;:::i;48263:115::-;;;;;;;;;;-1:-1:-1;48263:115:0;;;;;:::i;:::-;;:::i;46055:326::-;;;;;;;;;;-1:-1:-1;46055:326:0;;;;;:::i;:::-;;:::i;47973:88::-;;;;;;;;;;-1:-1:-1;47973:88:0;;;;;:::i;:::-;;:::i;47704:74::-;;;;;;;;;;;;;:::i;48070:70::-;;;;;;;;;;;;;:::i;48389:144::-;;;;;;;;;;;;;:::i;30377:185::-;;;;;;;;;;-1:-1:-1;30377:185:0;;;;;:::i;:::-;;:::i;44856:25::-;;;;;;;;;;-1:-1:-1;44856:25:0;;;;;;;;;;;44575:40;;;;;;;;;;;;;;;;27576:125;;;;;;;;;;-1:-1:-1;27576:125:0;;;;;:::i;:::-;;:::i;25024:206::-;;;;;;;;;;-1:-1:-1;25024:206:0;;;;;:::i;:::-;;:::i;43477:103::-;;;;;;;;;;;;;:::i;47487:102::-;;;;;;;;;;-1:-1:-1;47487:102:0;;;;;:::i;:::-;;:::i;42825:87::-;;;;;;;;;;-1:-1:-1;42898:6:0;;-1:-1:-1;;;;;42898:6:0;42825:87;;44707:35;;;;;;;;;;-1:-1:-1;44707:35:0;;;;;;;;;;;;;;12087:4:1;12075:17;;;12057:36;;12045:2;12030:18;44707:35:0;11915:184:1;27937:104:0;;;;;;;;;;;;;:::i;29547:287::-;;;;;;;;;;-1:-1:-1;29547:287:0;;;;;:::i;:::-;;:::i;45087:960::-;;;;;;:::i;:::-;;:::i;44886:25::-;;;;;;;;;;-1:-1:-1;44886:25:0;;;;;;;;;;;48146:107;;;;;;;;;;-1:-1:-1;48146:107:0;;;;;:::i;:::-;;:::i;30633:369::-;;;;;;;;;;-1:-1:-1;30633:369:0;;;;;:::i;:::-;;:::i;44747:39::-;;;;;;;;;;-1:-1:-1;44747:39:0;;;;;;;;;;;44530:40;;;;;;;;;;;;;;;;46983:490;;;;;;;;;;-1:-1:-1;46983:490:0;;;;;:::i;:::-;;:::i;46387:473::-;;;;;;;;;;-1:-1:-1;46387:473:0;;;;;:::i;:::-;;:::i;44672:30::-;;;;;;;;;;-1:-1:-1;44672:30:0;;;;;;;;;;;11714:6:1;11702:19;;;11684:38;;11672:2;11657:18;44672:30:0;11540:188:1;44921:53:0;;;;;;;;;;-1:-1:-1;44921:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29905:164;;;;;;;;;;-1:-1:-1;29905:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30026:25:0;;;30002:4;30026:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29905:164;44490:23;;;;;;;;;;;;;:::i;43735:201::-;;;;;;;;;;-1:-1:-1;43735:201:0;;;;;:::i;:::-;;:::i;24655:305::-;24757:4;-1:-1:-1;;;;;;24794:40:0;;-1:-1:-1;;;24794:40:0;;:105;;-1:-1:-1;;;;;;;24851:48:0;;-1:-1:-1;;;24851:48:0;24794:105;:158;;;-1:-1:-1;;;;;;;;;;14689:40:0;;;24916:36;24774:178;24655:305;-1:-1:-1;;24655:305:0:o;46871:97::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;;;;;;;;;46940:9:::1;:22:::0;;-1:-1:-1;;46940:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46871:97::o;27768:100::-;27822:13;27855:5;27848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27768:100;:::o;29271:204::-;29339:7;29364:16;29372:7;29364;:16::i;:::-;29359:64;;29389:34;;-1:-1:-1;;;29389:34:0;;;;;;;;;;;29359:64;-1:-1:-1;29443:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29443:24:0;;29271:204::o;28834:371::-;28907:13;28923:24;28939:7;28923:15;:24::i;:::-;28907:40;;28968:5;-1:-1:-1;;;;;28962:11:0;:2;-1:-1:-1;;;;;28962:11:0;;28958:48;;;28982:24;;-1:-1:-1;;;28982:24:0;;;;;;;;;;;28958:48;3130:10;-1:-1:-1;;;;;29023:21:0;;;;;;:63;;-1:-1:-1;29049:37:0;29066:5;3130:10;29905:164;:::i;29049:37::-;29048:38;29023:63;29019:138;;;29110:35;;-1:-1:-1;;;29110:35:0;;;;;;;;;;;29019:138;29169:28;29178:2;29182:7;29191:5;29169:8;:28::i;:::-;28896:309;28834:371;;:::o;47594:102::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;47668:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47594:102:::0;:::o;47784:88::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;47847:11:::1;:19:::0;47784:88::o;30136:170::-;30270:28;30280:4;30286:2;30290:7;30270:9;:28::i;47878:88::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;47941:11:::1;:19:::0;47878:88::o;48263:115::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;48339:22:::1;:31:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48339:31:0;;::::1;::::0;;;::::1;::::0;;48263:115::o;46055:326::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;46138:18:::1;46166:13;23761:1:::0;24158:12;23948:7;24142:13;:28;-1:-1:-1;;24142:46:0;;23904:303;46166:13:::1;46224:9;::::0;46138:42;;-1:-1:-1;46224:9:0::1;;46195:25;46209:11:::0;46138:42;46195:25:::1;:::i;:::-;:38;;;;46187:70;;;::::0;-1:-1:-1;;;46187:70:0;;11046:2:1;46187:70:0::1;::::0;::::1;11028:21:1::0;11085:2;11065:18;;;11058:30;-1:-1:-1;;;11104:18:1;;;11097:49;11163:18;;46187:70:0::1;10844:343:1::0;46187:70:0::1;46265:34;46275:9;46287:11;46265:34;;:9;:34::i;47973:88::-:0;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;48036:11:::1;:19:::0;47973:88::o;47704:74::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;47761:6:::1;::::0;;-1:-1:-1;;47751:16:0;::::1;47761:6:::0;;;;::::1;;;47760:7;47751:16:::0;;::::1;;::::0;;47704:74::o;48070:70::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;48129:6:::1;::::0;;-1:-1:-1;;48119:16:0;::::1;48129:6:::0;;;;::::1;;;48128:7;48119:16:::0;;::::1;;::::0;;48070:70::o;48389:144::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;48478:39:::1;::::0;48449:21:::1;::::0;48486:10:::1;::::0;48478:39;::::1;;;::::0;48449:21;;48433:13:::1;48478:39:::0;48433:13;48478:39;48449:21;48486:10;48478:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30377:185:::0;30515:39;30532:4;30538:2;30542:7;30515:39;;;;;;;;;;;;:16;:39::i;27576:125::-;27640:7;27667:21;27680:7;27667:12;:21::i;:::-;:26;;27576:125;-1:-1:-1;;27576:125:0:o;25024:206::-;25088:7;-1:-1:-1;;;;;25112:19:0;;25108:60;;25140:28;;-1:-1:-1;;;25140:28:0;;;;;;;;;;;25108:60;-1:-1:-1;;;;;;25194:19:0;;;;;:12;:19;;;;;:27;;;;25024:206::o;43477:103::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;43542:30:::1;43569:1;43542:18;:30::i;:::-;43477:103::o:0;47487:102::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;47561:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27937:104::-:0;27993:13;28026:7;28019:14;;;;;:::i;29547:287::-;-1:-1:-1;;;;;29646:24:0;;3130:10;29646:24;29642:54;;;29679:17;;-1:-1:-1;;;29679:17:0;;;;;;;;;;;29642:54;3130:10;29709:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29709:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29709:53:0;;;;;;;;;;29778:48;;8332:41:1;;;29709:42:0;;3130:10;29778:48;;8305:18:1;29778:48:0;;;;;;;29547:287;;:::o;45087:960::-;45146:18;45174:13;23761:1;24158:12;23948:7;24142:13;:28;-1:-1:-1;;24142:46:0;;23904:303;45174:13;45228:10;45196:9;45208:31;;;:19;:31;;;;;;45283:9;;45146:42;;-1:-1:-1;45208:31:0;;;;;45283:9;;;45254:25;;;;45146:42;45254:25;:::i;:::-;:38;;;;45246:70;;;;-1:-1:-1;;;45246:70:0;;11046:2:1;45246:70:0;;;11028:21:1;11085:2;11065:18;;;11058:30;-1:-1:-1;;;11104:18:1;;;11097:49;11163:18;;45246:70:0;10844:343:1;45246:70:0;45352:22;;;;;;;45331:17;45345:3;45331:11;:17;:::i;:::-;:43;;;;45323:79;;;;-1:-1:-1;;;45323:79:0;;9565:2:1;45323:79:0;;;9547:21:1;9604:2;9584:18;;;9577:30;-1:-1:-1;;;9623:18:1;;;9616:53;9686:18;;45323:79:0;9363:347:1;45323:79:0;45431:1;45417:11;:15;;;:52;;;;-1:-1:-1;45451:18:0;;;;;;;;;45436:33;;;;;45417:52;45409:88;;;;-1:-1:-1;;;45409:88:0;;9565:2:1;45409:88:0;;;9547:21:1;9604:2;9584:18;;;9577:30;-1:-1:-1;;;9623:18:1;;;9616:53;9686:18;;45409:88:0;9363:347:1;45409:88:0;45515:6;;;;;;;45514:7;45506:43;;;;-1:-1:-1;;;45506:43:0;;10278:2:1;45506:43:0;;;10260:21:1;10317:2;10297:18;;;10290:30;10356:25;10336:18;;;10329:53;10399:18;;45506:43:0;10076:347:1;45506:43:0;45567:11;:16;;45582:1;45567:16;45564:97;;;45618:11;;45605:9;:24;;45597:56;;;;-1:-1:-1;;;45597:56:0;;;;;;;:::i;:::-;45672:11;:16;;45687:1;45672:16;45669:202;;;45723:11;;45710:9;:24;;45702:56;;;;-1:-1:-1;;;45702:56:0;;;;;;;:::i;:::-;45669:202;;;45810:11;;45797:9;:24;;45789:56;;;;-1:-1:-1;;;45789:56:0;;;;;;;:::i;:::-;45887:35;45897:10;45910:11;45887:35;;:9;:35::i;:::-;45965:17;45979:3;45965:11;:17;:::i;:::-;45951:10;45931:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;45931:51:0;;;;;;;;;;;;-1:-1:-1;;;45087:960:0:o;48146:107::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;48218:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48218:27:0;;::::1;::::0;;;::::1;::::0;;48146:107::o;30633:369::-;30800:28;30810:4;30816:2;30820:7;30800:9;:28::i;:::-;-1:-1:-1;;;;;30843:13:0;;4792:19;:23;;30843:76;;;;;30863:56;30894:4;30900:2;30904:7;30913:5;30863:30;:56::i;:::-;30862:57;30843:76;30839:156;;;30943:40;;-1:-1:-1;;;30943:40:0;;;;;;;;;;;30839:156;30633:369;;;;:::o;46983:490::-;47082:13;47123:17;47131:8;47123:7;:17::i;:::-;47107:98;;;;-1:-1:-1;;;47107:98:0;;10630:2:1;47107:98:0;;;10612:21:1;10669:2;10649:18;;;10642:30;10708:34;10688:18;;;10681:62;-1:-1:-1;;;10759:18:1;;;10752:45;10814:19;;47107:98:0;10428:411:1;47107:98:0;47223:6;;;;;;;47218:50;;47255:9;47248:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46983:490;;;:::o;47218:50::-;47282:28;47313:10;:8;:10::i;:::-;47282:41;;47368:1;47343:14;47337:28;:32;:130;;;;;;;;;;;;;;;;;47405:14;47421:19;:8;:17;:19::i;:::-;47442:9;47388:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47337:130;47330:137;46983:490;-1:-1:-1;;;46983:490:0:o;46387:473::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;46487:18:::1;46515:13;23761:1:::0;24158:12;23948:7;24142:13;:28;-1:-1:-1;;24142:46:0;;23904:303;46515:13:::1;46487:42:::0;-1:-1:-1;46537:16:0::1;46558:36;46578:9:::0;46558:36:::1;::::0;::::1;;:::i;:::-;46638:9;::::0;46537:57;;-1:-1:-1;46638:9:0::1;::::0;;::::1;::::0;46609:25:::1;::::0;46537:57;;46609:25;::::1;;:::i;:::-;:38;;46601:70;;;::::0;-1:-1:-1;;;46601:70:0;;9217:2:1;46601:70:0::1;::::0;::::1;9199:21:1::0;9256:2;9236:18;;;9229:30;-1:-1:-1;;;9275:18:1;;;9268:49;9334:18;;46601:70:0::1;9015:343:1::0;46601:70:0::1;46684:9;46679:116;46699:20:::0;;::::1;46679:116;;;46741:42;46751:9;;46761:1;46751:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46765:17;46741:42;;:9;:42::i;:::-;46721:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46679:116;;;-1:-1:-1::0;;;;;;46387:473:0:o;44490:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43735:201::-;42898:6;;-1:-1:-1;;;;;42898:6:0;3130:10;43045:23;43037:69;;;;-1:-1:-1;;;43037:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43824:22:0;::::1;43816:73;;;::::0;-1:-1:-1;;;43816:73:0;;8810:2:1;43816:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:36;8985:19;;43816:73:0::1;8608:402:1::0;43816:73:0::1;43900:28;43919:8;43900:18;:28::i;:::-;43735:201:::0;:::o;31257:187::-;31314:4;31357:7;23761:1;31338:26;;:53;;;;;31378:13;;31368:7;:23;31338:53;:98;;;;-1:-1:-1;;31409:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31409:27:0;;;;31408:28;;31257:187::o;39427:196::-;39542:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39542:29:0;-1:-1:-1;;;;;39542:29:0;;;;;;;;;39587:28;;39542:24;;39587:28;;;;;;;39427:196;;;:::o;34370:2130::-;34485:35;34523:21;34536:7;34523:12;:21::i;:::-;34485:59;;34583:4;-1:-1:-1;;;;;34561:26:0;:13;:18;;;-1:-1:-1;;;;;34561:26:0;;34557:67;;34596:28;;-1:-1:-1;;;34596:28:0;;;;;;;;;;;34557:67;34637:22;3130:10;-1:-1:-1;;;;;34663:20:0;;;;:73;;-1:-1:-1;34700:36:0;34717:4;3130:10;29905:164;:::i;34700:36::-;34663:126;;;-1:-1:-1;3130:10:0;34753:20;34765:7;34753:11;:20::i;:::-;-1:-1:-1;;;;;34753:36:0;;34663:126;34637:153;;34808:17;34803:66;;34834:35;;-1:-1:-1;;;34834:35:0;;;;;;;;;;;34803:66;-1:-1:-1;;;;;34884:16:0;;34880:52;;34909:23;;-1:-1:-1;;;34909:23:0;;;;;;;;;;;34880:52;35053:35;35070:1;35074:7;35083:4;35053:8;:35::i;:::-;-1:-1:-1;;;;;35384:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35384:31:0;;;;;;;-1:-1:-1;;35384:31:0;;;;;;;35430:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35430:29:0;;;;;;;;;;;35510:20;;;:11;:20;;;;;;35545:18;;-1:-1:-1;;;;;;35578:49:0;;;;-1:-1:-1;;;35611:15:0;35578:49;;;;;;;;;;35901:11;;35961:24;;;;;36004:13;;35510:20;;35961:24;;36004:13;36000:384;;36214:13;;36199:11;:28;36195:174;;36252:20;;36321:28;;;;36295:54;;-1:-1:-1;;;36295:54:0;-1:-1:-1;;;;;;36295:54:0;;;-1:-1:-1;;;;;36252:20:0;;36295:54;;;;36195:174;35359:1036;;;36431:7;36427:2;-1:-1:-1;;;;;36412:27:0;36421:4;-1:-1:-1;;;;;36412:27:0;;;;;;;;;;;36450:42;34474:2026;;34370:2130;;;:::o;31452:104::-;31521:27;31531:2;31535:8;31521:27;;;;;;;;;;;;:9;:27::i;26405:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26516:7:0;;23761:1;26565:23;;:47;;;;;26599:13;;26592:4;:20;26565:47;26561:886;;;26633:31;26667:17;;;:11;:17;;;;;;;;;26633:51;;;;;;;;;-1:-1:-1;;;;;26633:51:0;;;;-1:-1:-1;;;26633:51:0;;;;;;;;;;;-1:-1:-1;;;26633:51:0;;;;;;;;;;;;;;26703:729;;26753:14;;-1:-1:-1;;;;;26753:28:0;;26749:101;;26817:9;26405:1109;-1:-1:-1;;;26405:1109:0:o;26749:101::-;-1:-1:-1;;;27192:6:0;27237:17;;;;:11;:17;;;;;;;;;27225:29;;;;;;;;;-1:-1:-1;;;;;27225:29:0;;;;;-1:-1:-1;;;27225:29:0;;;;;;;;;;;-1:-1:-1;;;27225:29:0;;;;;;;;;;;;;27285:28;27281:109;;27353:9;26405:1109;-1:-1:-1;;;26405:1109:0:o;27281:109::-;27152:261;;;26614:833;26561:886;27475:31;;-1:-1:-1;;;27475:31:0;;;;;;;;;;;44096:191;44189:6;;;-1:-1:-1;;;;;44206:17:0;;;-1:-1:-1;;;;;;44206:17:0;;;;;;;44239:40;;44189:6;;;44206:17;44189:6;;44239:40;;44170:16;;44239:40;44159:128;44096:191;:::o;40115:667::-;40299:72;;-1:-1:-1;;;40299:72:0;;40278:4;;-1:-1:-1;;;;;40299:36:0;;;;;:72;;3130:10;;40350:4;;40356:7;;40365:5;;40299:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40299:72:0;;;;;;;;-1:-1:-1;;40299:72:0;;;;;;;;;;;;:::i;:::-;;;40295:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40533:13:0;;40529:235;;40579:40;;-1:-1:-1;;;40579:40:0;;;;;;;;;;;40529:235;40722:6;40716:13;40707:6;40703:2;40699:15;40692:38;40295:480;-1:-1:-1;;;;;;40418:55:0;-1:-1:-1;;;40418:55:0;;-1:-1:-1;40295:480:0;40115:667;;;;;;:::o;48541:97::-;48594:13;48623:9;48616:16;;;;;:::i;612:723::-;668:13;889:10;885:53;;-1:-1:-1;;916:10:0;;;;;;;;;;;;-1:-1:-1;;;916:10:0;;;;;612:723::o;885:53::-;963:5;948:12;1004:78;1011:9;;1004:78;;1037:8;;;;:::i;:::-;;-1:-1:-1;1060:10:0;;-1:-1:-1;1068:2:0;1060:10;;:::i;:::-;;;1004:78;;;1092:19;1124:6;1114:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1114:17:0;;1092:39;;1142:154;1149:10;;1142:154;;1176:11;1186:1;1176:11;;:::i;:::-;;-1:-1:-1;1245:10:0;1253:2;1245:5;:10;:::i;:::-;1232:24;;:2;:24;:::i;:::-;1219:39;;1202:6;1209;1202:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1202:56:0;;;;;;;;-1:-1:-1;1273:11:0;1282:2;1273:11;;:::i;:::-;;;1142:154;;31919:163;32042:32;32048:2;32052:8;32062:5;32069:4;32480:20;32503:13;-1:-1:-1;;;;;32531:16:0;;32527:48;;32556:19;;-1:-1:-1;;;32556:19:0;;;;;;;;;;;32527:48;32590:13;32586:44;;32612:18;;-1:-1:-1;;;32612:18:0;;;;;;;;;;;32586:44;-1:-1:-1;;;;;32981:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33040:49:0;;32981:44;;;;;;;;33040:49;;;;-1:-1:-1;;32981:44:0;;;;;;33040:49;;;;;;;;;;;;;;;;33106:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33156:66:0;;;;-1:-1:-1;;;33206:15:0;33156:66;;;;;;;;;;33106:25;33303:23;;;33347:4;:23;;;;-1:-1:-1;;;;;;33355:13:0;;4792:19;:23;;33355:15;33343:641;;;33391:314;33422:38;;33447:12;;-1:-1:-1;;;;;33422:38:0;;;33439:1;;33422:38;;33439:1;;33422:38;33488:69;33527:1;33531:2;33535:14;;;;;;33551:5;33488:30;:69::i;:::-;33483:174;;33593:40;;-1:-1:-1;;;33593:40:0;;;;;;;;;;;33483:174;33700:3;33684:12;:19;;33391:314;;33786:12;33769:13;;:29;33765:43;;33800:8;;;33765:43;33343:641;;;33849:120;33880:40;;33905:14;;;;;-1:-1:-1;;;;;33880:40:0;;;33897:1;;33880:40;;33897:1;;33880:40;33964:3;33948:12;:19;;33849:120;;33343:641;-1:-1:-1;33998:13:0;:28;34048:60;30633:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;12177:1;12170:14;;;12214:4;12201:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7699:488::-;-1:-1:-1;;;;;7968:15:1;;;7950:34;;8020:15;;8015:2;8000:18;;7993:43;8067:2;8052:18;;8045:34;;;8115:3;8110:2;8095:18;;8088:31;;;7893:4;;8136:45;;8161:19;;8153:6;8136:45;:::i;:::-;8128:53;7699:488;-1:-1:-1;;;;;;7699:488:1:o;8384:219::-;8533:2;8522:9;8515:21;8496:4;8553:44;8593:2;8582:9;8578:18;8570:6;8553:44;:::i;9715:356::-;9917:2;9899:21;;;9936:18;;;9929:30;9995:34;9990:2;9975:18;;9968:62;10062:2;10047:18;;9715:356::o;11192:343::-;11394:2;11376:21;;;11433:2;11413:18;;;11406:30;-1:-1:-1;;;11467:2:1;11452:18;;11445:49;11526:2;11511:18;;11192:343::o;12230:224::-;12269:3;12297:6;12330:2;12327:1;12323:10;12360:2;12357:1;12353:10;12391:3;12387:2;12383:12;12378:3;12375:21;12372:47;;;12399:18;;:::i;:::-;12435:13;;12230:224;-1:-1:-1;;;;12230:224:1:o;12459:128::-;12499:3;12530:1;12526:6;12523:1;12520:13;12517:39;;;12536:18;;:::i;:::-;-1:-1:-1;12572:9:1;;12459:128::o;12592:204::-;12630:3;12666:4;12663:1;12659:12;12698:4;12695:1;12691:12;12733:3;12727:4;12723:14;12718:3;12715:23;12712:49;;;12741:18;;:::i;:::-;12777:13;;12592:204;-1:-1:-1;;;12592:204:1:o;12801:120::-;12841:1;12867;12857:35;;12872:18;;:::i;:::-;-1:-1:-1;12906:9:1;;12801:120::o;12926:168::-;12966:7;13032:1;13028;13024:6;13020:14;13017:1;13014:21;13009:1;13002:9;12995:17;12991:45;12988:71;;;13039:18;;:::i;:::-;-1:-1:-1;13079:9:1;;12926:168::o;13099:125::-;13139:4;13167:1;13164;13161:8;13158:34;;;13172:18;;:::i;:::-;-1:-1:-1;13209:9:1;;13099:125::o;13229:258::-;13301:1;13311:113;13325:6;13322:1;13319:13;13311:113;;;13401:11;;;13395:18;13382:11;;;13375:39;13347:2;13340:10;13311:113;;;13442:6;13439:1;13436:13;13433:48;;;-1:-1:-1;;13477:1:1;13459:16;;13452:27;13229:258::o;13492:380::-;13571:1;13567:12;;;;13614;;;13635:61;;13689:4;13681:6;13677:17;13667:27;;13635:61;13742:2;13734:6;13731:14;13711:18;13708:38;13705:161;;;13788:10;13783:3;13779:20;13776:1;13769:31;13823:4;13820:1;13813:15;13851:4;13848:1;13841:15;13705:161;;13492:380;;;:::o;13877:135::-;13916:3;-1:-1:-1;;13937:17:1;;13934:43;;;13957:18;;:::i;:::-;-1:-1:-1;14004:1:1;13993:13;;13877:135::o;14017:112::-;14049:1;14075;14065:35;;14080:18;;:::i;:::-;-1:-1:-1;14114:9:1;;14017:112::o;14134:127::-;14195:10;14190:3;14186:20;14183:1;14176:31;14226:4;14223:1;14216:15;14250:4;14247:1;14240:15;14266:127;14327:10;14322:3;14318:20;14315:1;14308:31;14358:4;14355:1;14348:15;14382:4;14379:1;14372:15;14398:127;14459:10;14454:3;14450:20;14447:1;14440:31;14490:4;14487:1;14480:15;14514:4;14511:1;14504:15;14530:127;14591:10;14586:3;14582:20;14579:1;14572:31;14622:4;14619:1;14612:15;14646:4;14643:1;14636:15;14662:131;-1:-1:-1;;;;;;14736:32:1;;14726:43;;14716:71;;14783:1;14780;14773:12

Swarm Source

ipfs://51f33ae28427c00191feca45a9610e54828d92b948021c60112a1d1621393359
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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