ETH Price: $2,491.49 (-1.28%)

Token

AnimApes (AAP)
 

Overview

Max Total Supply

400 AAP

Holders

174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AAP
0x5d5cea32938ebe96421b3a0753cc6fcae2a7598e
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:
AnimApes

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/introspection/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// 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/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File erc721a/contracts/[email protected]

// Creator: Chiru Labs

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 0;
    }

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address, RecoverError)
    {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address)
    {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs &
            bytes32(
                0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
            );
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (
            uint256(s) >
            0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0
        ) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash)
        internal
        pure
        returns (bytes32)
    {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
            );
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n",
                    Strings.toString(s.length),
                    s
                )
            );
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", domainSeparator, structHash)
            );
    }
}

// File contracts/MetaverseComiClub.sol

pragma solidity >=0.8.9 <0.9.0;

contract AnimApes is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    mapping(address => mapping(uint256 => uint256)) public nonWhitelistClaimed;
    mapping(address => mapping(uint256 => uint256)) public whitelistClaimed;
    mapping(address => mapping(uint256 => uint256))
        public superWhitelistClaimed;
    mapping(address => mapping(uint256 => uint256))
        public alphaWhitelistClaimed;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;
    string private constant SIGNING_DOMAIN = "animapes";
    string private constant SIGNATURE_VERSION = "1";
    address signer = 0xa980df57d84635A598d6792c023CfA4617B96f2B;

    uint256 public cost = 0.07 ether;
    uint256 public wlCost = 0.065 ether;
    uint256 public superWlCost = 0.06 ether;
    uint256 public alphaWlCost = 0.055 ether;

    //Real max supply +1 to avoid double check (<=)
    uint256 public maxSupply = 4889;
    //Real max mint amounts per TX +1 to avoid double check (<=)
    uint256 public maxMintAmountPerTx = 3;
    uint256 public superWLMaxMintAmountPerTx = 4;
    uint256 public alphaWlMaxMintAmountPerTx = 6;
    //Real max mint amounts per whitelist +1 to avoid double check (<=)
    uint256 public maxMintAmountPerWl = 3;
    uint256 public maxMintAmountPerSuperWl = 4;
    uint256 public maxMintAmountPerAlphaWl = 6;

    //Real batch supply +1 to avoid double check (<=)
    uint256 public batchSupply = 889;
    uint256 public batch = 1;
    uint256 public batchMinted = 0;

    // EIP 712 Variables
    uint256 private immutable _CACHED_CHAIN_ID;
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    bool public paused = true;
    bool public whitelistMintEnabled = true;
    bool public revealed = false;
    bool public batchSaleEnabled = true;

    struct NFTVoucher {
        uint256 wlLevel;
        bytes signature;
    }

    constructor(string memory _hiddenMetadataUri) ERC721A("AnimApes", "AAP") {
        setHiddenMetadataUri(_hiddenMetadataUri);
        bytes32 hashedName = keccak256(bytes(SIGNING_DOMAIN));
        bytes32 hashedVersion = keccak256(bytes(SIGNATURE_VERSION));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(
            typeHash,
            hashedName,
            hashedVersion
        );
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    function calculateCost(uint256 _mintAmount, uint256 _wlLevel)
        internal
        view
        returns (uint256 _cost)
    {
        if (_wlLevel == 0) {
            _cost = _mintAmount == (maxMintAmountPerTx - 1)
                ? cost - ((cost * 5) / 100)
                : cost;
        }
        if (_wlLevel == 1) {
            _cost = _mintAmount == (maxMintAmountPerTx - 1)
                ? wlCost - ((wlCost * 5) / 100)
                : wlCost;
        }
        if (_wlLevel == 2) {
            _cost = _mintAmount == (superWLMaxMintAmountPerTx - 1)
                ? superWlCost - ((superWlCost * 5) / 100)
                : superWlCost;
        }
        if (_wlLevel == 3) {
            _cost = _mintAmount == (alphaWlMaxMintAmountPerTx - 1)
                ? alphaWlCost - ((alphaWlCost * 5) / 100)
                : alphaWlCost;
        }
    }

    function mint(uint256 _mintAmount, NFTVoucher calldata v) public payable {
        require(!paused, "The contract is paused!");
        require(
            totalSupply() + _mintAmount < maxSupply,
            "Max supply exceeded!"
        );
        if (batchSaleEnabled == true) {
            require(
                batchMinted + _mintAmount < batchSupply,
                "Batch supply exceeded!"
            );
            batchMinted = batchMinted + _mintAmount;
        }
        uint256 wlLevel = v.wlLevel;
        if (whitelistMintEnabled == true) {
            require(wlLevel > 0, "Only Whitelist addresses allowed");
        }

        if (wlLevel == 0) {
            require(
                _mintAmount < maxMintAmountPerTx,
                "Max mint amount per TX exceded!!"
            );
            require(
                nonWhitelistClaimed[msg.sender][batch] + _mintAmount <
                    maxMintAmountPerWl,
                "Max mint amount exceded!!"
            );
            nonWhitelistClaimed[msg.sender][batch] += _mintAmount;
        } else {
            require(_verify(v) == signer, "The vaucher is not valid");
        }

        if (wlLevel == 1) {
            require(
                _mintAmount < maxMintAmountPerTx,
                "Max mint amount per TX exceded!!"
            );
            whitelistClaimed[msg.sender][batch] += _mintAmount;
        }
        if (wlLevel == 2) {
            require(
                _mintAmount < superWLMaxMintAmountPerTx,
                "Max mint amount per TX exceded!!"
            );
            require(
                superWhitelistClaimed[msg.sender][batch] + _mintAmount <
                    maxMintAmountPerSuperWl,
                "Max mint amount exceded!!"
            );

            superWhitelistClaimed[msg.sender][batch] += _mintAmount;
        }
        if (wlLevel == 3) {
            require(
                _mintAmount < alphaWlMaxMintAmountPerTx,
                "Max mint amount per TX exceded!!"
            );
            require(
                alphaWhitelistClaimed[msg.sender][batch] + _mintAmount <
                    maxMintAmountPerAlphaWl,
                "Max mint amount exceded!!"
            );

            alphaWhitelistClaimed[msg.sender][batch] += _mintAmount;
        }

        require(
            msg.value >= calculateCost(_mintAmount, wlLevel) * _mintAmount,
            "Insufficient funds!"
        );

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        onlyOwner
    {
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _safeMint(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex
        ) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned) {
                if (ownership.addr != address(0)) {
                    latestOwnerAddress = ownership.addr;
                }

                if (latestOwnerAddress == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;

                    ownedTokenIndex++;
                }
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        if (revealed == false) {
            currentBaseURI = hiddenMetadataUri;
        }

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

    function batchMintedForBuyer(address owner, uint256 wlLevel)
        public
        view
        returns (uint256 minted)
    {
        minted = 0;
        if (wlLevel == 0) {
            minted = nonWhitelistClaimed[owner][batch];
        }
        if (wlLevel == 1) {
            minted = whitelistClaimed[owner][batch];
        }
        if (wlLevel == 2) {
            minted = superWhitelistClaimed[owner][batch];
        }
        if (wlLevel == 3) {
            minted = alphaWhitelistClaimed[owner][batch];
        }
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setWlCost(uint256 _wlCost) public onlyOwner {
        wlCost = _wlCost;
    }

    function setSuperWlCost(uint256 _superWlCost) public onlyOwner {
        superWlCost = _superWlCost;
    }

    function setAlphaWlCost(uint256 _alphaWlCost) public onlyOwner {
        alphaWlCost = _alphaWlCost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setSuperWLMaxMintAmountPerTx(uint256 _superWLMaxMintAmountPerTx)
        public
        onlyOwner
    {
        superWLMaxMintAmountPerTx = _superWLMaxMintAmountPerTx;
    }

    function setAlphaWlMaxMintAmountPerTx(uint256 _alphaWlMaxMintAmountPerTx)
        public
        onlyOwner
    {
        alphaWlMaxMintAmountPerTx = _alphaWlMaxMintAmountPerTx;
    }

    function setMaxMintAmountPerWl(uint256 _maxMintAmountPerWl)
        public
        onlyOwner
    {
        maxMintAmountPerWl = _maxMintAmountPerWl;
    }

    function setMaxMintAmountPerSuperWl(uint256 _maxMintAmountPerSuperWl)
        public
        onlyOwner
    {
        maxMintAmountPerSuperWl = _maxMintAmountPerSuperWl;
    }

    function setMaxMintAmountPerAlphaWl(uint256 _maxMintAmountPerAlphaWl)
        public
        onlyOwner
    {
        maxMintAmountPerAlphaWl = _maxMintAmountPerAlphaWl;
    }

    function setMaxMintAmountsPerTx(
        uint256 _maxMintAmountPerTx,
        uint256 _superWLMaxMintAmountPerTx,
        uint256 _alphaWlMaxMintAmountPerTx
    ) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
        superWLMaxMintAmountPerTx = _superWLMaxMintAmountPerTx;
        alphaWlMaxMintAmountPerTx = _alphaWlMaxMintAmountPerTx;
    }

    function setMaxMintAmountsPerWl(
        uint256 _maxMintAmountPerWl,
        uint256 _maxMintAmountPerSuperWl,
        uint256 _maxMintAmountPerAlphaWl
    ) public onlyOwner {
        maxMintAmountPerWl = _maxMintAmountPerWl;
        maxMintAmountPerSuperWl = _maxMintAmountPerSuperWl;
        maxMintAmountPerAlphaWl = _maxMintAmountPerAlphaWl;
    }

    function setSigner(address _signer) public onlyOwner {
        signer = _signer;
    }

    //batchSupply
    function setBatchSupply(uint256 _batch, uint256 _batchSupply)
        public
        onlyOwner
    {
        batch = _batch;
        batchSupply = _batchSupply;
        batchMinted = 0;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

    function setBatchSaleEnabled(bool _state) public onlyOwner {
        batchSaleEnabled = _state;
    }

    function withdraw() public onlyOwner nonReentrant {
        // Dev wallet
        (bool dev_hs, ) = payable(0xc89C51e660DB8385962Ddee0bED5C5EaE55cbdf3)
            .call{value: (address(this).balance * 250) / 10000}("");
        require(dev_hs);
        // Community wallet
        (bool hs, ) = payable(0x1644dF28AB0B927f06C9838BDEf2947088d2E758).call{
            value: (address(this).balance * 3000) / 10000
        }("");
        require(hs);

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

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

    function _hash(NFTVoucher calldata voucher)
        internal
        view
        returns (bytes32)
    {
        return
            _hashTypedDataV4(
                keccak256(
                    abi.encode(
                        keccak256("NFTVoucher(uint256 wlLevel,address buyer)"),
                        voucher.wlLevel,
                        _msgSender()
                    )
                )
            );
    }

    function getChainID() external view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    function _verify(NFTVoucher calldata voucher)
        internal
        view
        returns (address)
    {
        bytes32 digest = _hash(voucher);
        return ECDSA.recover(digest, voucher.signature);
    }

    function _domainSeparatorV4() internal view returns (bytes32) {
        if (
            address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID
        ) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return
                _buildDomainSeparator(
                    _TYPE_HASH,
                    _HASHED_NAME,
                    _HASHED_VERSION
                );
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    typeHash,
                    nameHash,
                    versionHash,
                    block.chainid,
                    address(this)
                )
            );
    }

    function _hashTypedDataV4(bytes32 structHash)
        internal
        view
        virtual
        returns (bytes32)
    {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"alphaWhitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaWlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaWlMaxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"wlLevel","type":"uint256"}],"name":"batchMintedForBuyer","outputs":[{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":"maxMintAmountPerAlphaWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerSuperWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"components":[{"internalType":"uint256","name":"wlLevel","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct AnimApes.NFTVoucher","name":"v","type":"tuple"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonWhitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alphaWlCost","type":"uint256"}],"name":"setAlphaWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alphaWlMaxMintAmountPerTx","type":"uint256"}],"name":"setAlphaWlMaxMintAmountPerTx","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":"bool","name":"_state","type":"bool"}],"name":"setBatchSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batch","type":"uint256"},{"internalType":"uint256","name":"_batchSupply","type":"uint256"}],"name":"setBatchSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerAlphaWl","type":"uint256"}],"name":"setMaxMintAmountPerAlphaWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerSuperWl","type":"uint256"}],"name":"setMaxMintAmountPerSuperWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerWl","type":"uint256"}],"name":"setMaxMintAmountPerWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_superWLMaxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_alphaWlMaxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerWl","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerSuperWl","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerAlphaWl","type":"uint256"}],"name":"setMaxMintAmountsPerWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_superWLMaxMintAmountPerTx","type":"uint256"}],"name":"setSuperWLMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_superWlCost","type":"uint256"}],"name":"setSuperWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"superWLMaxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"superWhitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"superWlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

610160604081905260006101408190526200001d91600e9162000373565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004c91600f9162000373565b50601180546001600160a01b03191673a980df57d84635a598d6792c023cfa4617b96f2b17905566f8b0a10e47000060125566e6ed27d666800060135566d529ae9e86000060145566c3663566a58000601555611319601655600360178190556004601881905560066019819055601a92909255601b55601c55610379601d556001601e556000601f5560208054630100010163ffffffff19909116179055348015620000f857600080fd5b5060405162003d0338038062003d038339810160408190526200011b916200042f565b6040805180820182526008815267416e696d4170657360c01b60208083019182528351808501909452600384526204141560ec1b908401528151919291620001669160029162000373565b5080516200017c90600390602084019062000373565b50506001600055506200018f33620002a9565b60016009556200019f81620002fb565b6040805180820182526008815267616e696d6170657360c01b602091820152815180830190925260018252603160f81b9101527fcf4a235d41f69e33f67b19b878e03e0b5faf9ce163e1dd6aab289d5ff4ef26bb60e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6610100819052466080527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620002948184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b60a0523060c052610120525062000547915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200035a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200036f90601090602084019062000373565b5050565b82805462000381906200050b565b90600052602060002090601f016020900481019282620003a55760008555620003f0565b82601f10620003c057805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003f0578251825591602001919060010190620003d3565b50620003fe92915062000402565b5090565b5b80821115620003fe576000815560010162000403565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200044357600080fd5b82516001600160401b03808211156200045b57600080fd5b818501915085601f8301126200047057600080fd5b81518181111562000485576200048562000419565b604051601f8201601f19908116603f01168101908382118183101715620004b057620004b062000419565b816040528281528886848701011115620004c957600080fd5b600093505b82841015620004ed5784840186015181850187015292850192620004ce565b82841115620004ff5760008684830101525b98975050505050505050565b600181811c908216806200052057607f821691505b6020821081036200054157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161376c620005976000396000612d8901526000612dd801526000612db301526000612d0c01526000612d6001526000612d36015261376c6000f3fe6080604052600436106103fa5760003560e01c80636ce2ca8411610213578063b071401b11610123578063d5abeb01116100ab578063ee03d9fc1161007a578063ee03d9fc14610bd3578063efbd73f414610be9578063f12f6d5d14610c09578063f2fde38b14610c29578063fd4f353c14610c4957600080fd5b8063d5abeb0114610b3e578063d70a28d114610b54578063e0a8085314610b6a578063e985e9c514610b8a57600080fd5b8063c87b56dd116100f2578063c87b56dd14610a9e578063cb20496a14610abe578063d13d92fd14610ade578063d3bbbb3d14610afe578063d53a7e9614610b1e57600080fd5b8063b071401b14610a28578063b6ceb50c14610a48578063b767a09814610a5e578063b88d4fde14610a7e57600080fd5b8063877107dc116101a657806394354fd01161017557806394354fd0146109b257806395d89b41146109c8578063a22cb465146109dd578063a45ba8e7146109fd578063af71356614610a1257600080fd5b8063877107dc1461094a578063885de9f3146109605780638da5cb5b1461097357806392613d811461099157600080fd5b8063715018a6116101e2578063715018a6146108bd578063724ed21d146108d25780637618cabf146108f25780637ec4a6591461092a57600080fd5b80636ce2ca84146108395780636d495a951461084f5780636fc3495d1461088757806370a082311461089d57600080fd5b8063438b63001161030e5780635a896cad116102a157806362b99ad41161027057806362b99ad4146107af5780636352211e146107c457806366aee311146107e45780636c19e783146107fa5780636caede3d1461081a57600080fd5b80635a896cad146107355780635c975abb146107555780635d3e650e1461076f5780635e6bbca21461078f57600080fd5b806351830227116102dd57806351830227146106cd5780635503a0e8146106ed57806356273ec114610702578063564b81ef1461072257600080fd5b8063438b63001461064057806344a0d68a1461066d5780634fdd43cb1461068d5780634ff38ea6146106ad57600080fd5b806313faede61161039157806318160ddd1161036057806318160ddd146105b857806323b872dd146105d55780632c8eb7c6146105f55780633ccfd60b1461060b57806342842e0e1461062057600080fd5b806313faede61461054c57806316ba10e01461056257806316c38b3c146105825780631749629e146105a257600080fd5b806306fdde03116103cd57806306fdde03146104b2578063081812fc146104d4578063095ea7b31461050c578063132bcfea1461052c57600080fd5b806301ffc9a7146103ff578063064f110c1461043457806306af692d1461047a57806306d6566114610490575b600080fd5b34801561040b57600080fd5b5061041f61041a366004612ffb565b610c81565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b5061046c61044f366004613034565b600b60209081526000928352604080842090915290825290205481565b60405190815260200161042b565b34801561048657600080fd5b5061046c601d5481565b34801561049c57600080fd5b506104b06104ab36600461305e565b610cd3565b005b3480156104be57600080fd5b506104c7610d0b565b60405161042b91906130cf565b3480156104e057600080fd5b506104f46104ef36600461305e565b610d9d565b6040516001600160a01b03909116815260200161042b565b34801561051857600080fd5b506104b0610527366004613034565b610de1565b34801561053857600080fd5b506104b061054736600461305e565b610e6e565b34801561055857600080fd5b5061046c60125481565b34801561056e57600080fd5b506104b061057d36600461316d565b610e9d565b34801561058e57600080fd5b506104b061059d3660046131c5565b610ede565b3480156105ae57600080fd5b5061046c601a5481565b3480156105c457600080fd5b50600154600054036000190161046c565b3480156105e157600080fd5b506104b06105f03660046131e0565b610f1b565b34801561060157600080fd5b5061046c60185481565b34801561061757600080fd5b506104b0610f26565b34801561062c57600080fd5b506104b061063b3660046131e0565b61111f565b34801561064c57600080fd5b5061066061065b36600461321c565b61113a565b60405161042b9190613237565b34801561067957600080fd5b506104b061068836600461305e565b611279565b34801561069957600080fd5b506104b06106a836600461316d565b6112a8565b3480156106b957600080fd5b506104b06106c83660046131c5565b6112e5565b3480156106d957600080fd5b5060205461041f9062010000900460ff1681565b3480156106f957600080fd5b506104c761132d565b34801561070e57600080fd5b506104b061071d36600461305e565b6113bb565b34801561072e57600080fd5b504661046c565b34801561074157600080fd5b5061046c610750366004613034565b6113ea565b34801561076157600080fd5b5060205461041f9060ff1681565b34801561077b57600080fd5b506104b061078a36600461327b565b6114ae565b34801561079b57600080fd5b506104b06107aa36600461327b565b6114e6565b3480156107bb57600080fd5b506104c761151e565b3480156107d057600080fd5b506104f46107df36600461305e565b61152b565b3480156107f057600080fd5b5061046c601b5481565b34801561080657600080fd5b506104b061081536600461321c565b61153d565b34801561082657600080fd5b5060205461041f90610100900460ff1681565b34801561084557600080fd5b5061046c60195481565b34801561085b57600080fd5b5061046c61086a366004613034565b600c60209081526000928352604080842090915290825290205481565b34801561089357600080fd5b5061046c60145481565b3480156108a957600080fd5b5061046c6108b836600461321c565b611589565b3480156108c957600080fd5b506104b06115d7565b3480156108de57600080fd5b506104b06108ed36600461305e565b61160d565b3480156108fe57600080fd5b5061046c61090d366004613034565b600d60209081526000928352604080842090915290825290205481565b34801561093657600080fd5b506104b061094536600461316d565b61163c565b34801561095657600080fd5b5061046c601f5481565b6104b061096e3660046132a7565b611679565b34801561097f57600080fd5b506008546001600160a01b03166104f4565b34801561099d57600080fd5b5060205461041f906301000000900460ff1681565b3480156109be57600080fd5b5061046c60175481565b3480156109d457600080fd5b506104c7611b29565b3480156109e957600080fd5b506104b06109f83660046132f4565b611b38565b348015610a0957600080fd5b506104c7611bcd565b348015610a1e57600080fd5b5061046c601e5481565b348015610a3457600080fd5b506104b0610a4336600461305e565b611bda565b348015610a5457600080fd5b5061046c60155481565b348015610a6a57600080fd5b506104b0610a793660046131c5565b611c09565b348015610a8a57600080fd5b506104b0610a99366004613327565b611c4d565b348015610aaa57600080fd5b506104c7610ab936600461305e565b611c9e565b348015610aca57600080fd5b506104b0610ad936600461305e565b611e10565b348015610aea57600080fd5b506104b0610af93660046133a2565b611e3f565b348015610b0a57600080fd5b506104b0610b1936600461305e565b611e79565b348015610b2a57600080fd5b506104b0610b3936600461305e565b611ea8565b348015610b4a57600080fd5b5061046c60165481565b348015610b6057600080fd5b5061046c60135481565b348015610b7657600080fd5b506104b0610b853660046131c5565b611ed7565b348015610b9657600080fd5b5061041f610ba53660046133c4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610bdf57600080fd5b5061046c601c5481565b348015610bf557600080fd5b506104b0610c043660046133ee565b611f1d565b348015610c1557600080fd5b506104b0610c2436600461305e565b611fb1565b348015610c3557600080fd5b506104b0610c4436600461321c565b611fe0565b348015610c5557600080fd5b5061046c610c64366004613034565b600a60209081526000928352604080842090915290825290205481565b60006001600160e01b031982166380ac58cd60e01b1480610cb257506001600160e01b03198216635b5e139f60e01b145b80610ccd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d065760405162461bcd60e51b8152600401610cfd90613411565b60405180910390fd5b601855565b606060028054610d1a90613446565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690613446565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b6000610da88261207b565b610dc5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dec8261152b565b9050806001600160a01b0316836001600160a01b031603610e205760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610e405750610e3e8133610ba5565b155b15610e5e576040516367d9dca160e11b815260040160405180910390fd5b610e698383836120b4565b505050565b6008546001600160a01b03163314610e985760405162461bcd60e51b8152600401610cfd90613411565b601c55565b6008546001600160a01b03163314610ec75760405162461bcd60e51b8152600401610cfd90613411565b8051610eda90600f906020840190612f4c565b5050565b6008546001600160a01b03163314610f085760405162461bcd60e51b8152600401610cfd90613411565b6020805460ff1916911515919091179055565b610e69838383612110565b6008546001600160a01b03163314610f505760405162461bcd60e51b8152600401610cfd90613411565b600260095403610fa25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cfd565b6002600955600073c89c51e660db8385962ddee0bed5c5eae55cbdf3612710610fcc4760fa613496565b610fd691906134cb565b604051600081818185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061102557600080fd5b6000731644df28ab0b927f06c9838bdef2947088d2e75861271061104b47610bb8613496565b61105591906134cb565b604051600081818185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806110a457600080fd5b60006110b86008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b505090508061111557600080fd5b5050600160095550565b610e6983838360405180602001604052806000815250611c4d565b6060600061114783611589565b90506000816001600160401b03811115611163576111636130e2565b60405190808252806020026020018201604052801561118c578160200160208202803683370190505b50905060016000805b84821080156111a5575060005483105b1561126e57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061125b5780516001600160a01b03161561121657805191505b876001600160a01b0316826001600160a01b03160361125b5783858481518110611242576112426134df565b602090810291909101015282611257816134f5565b9350505b83611265816134f5565b94505050611195565b509195945050505050565b6008546001600160a01b031633146112a35760405162461bcd60e51b8152600401610cfd90613411565b601255565b6008546001600160a01b031633146112d25760405162461bcd60e51b8152600401610cfd90613411565b8051610eda906010906020840190612f4c565b6008546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610cfd90613411565b6020805491151563010000000263ff00000019909216919091179055565b600f805461133a90613446565b80601f016020809104026020016040519081016040528092919081815260200182805461136690613446565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b6008546001600160a01b031633146113e55760405162461bcd60e51b8152600401610cfd90613411565b601555565b60008160000361141c57506001600160a01b0382166000908152600a60209081526040808320601e5484529091529020545b8160010361144c57506001600160a01b0382166000908152600b60209081526040808320601e5484529091529020545b8160020361147c57506001600160a01b0382166000908152600c60209081526040808320601e5484529091529020545b81600303610ccd5750506001600160a01b03166000908152600d60209081526040808320601e54845290915290205490565b6008546001600160a01b031633146114d85760405162461bcd60e51b8152600401610cfd90613411565b601792909255601855601955565b6008546001600160a01b031633146115105760405162461bcd60e51b8152600401610cfd90613411565b601a92909255601b55601c55565b600e805461133a90613446565b6000611536826122fe565b5192915050565b6008546001600160a01b031633146115675760405162461bcd60e51b8152600401610cfd90613411565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166115b2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116015760405162461bcd60e51b8152600401610cfd90613411565b61160b6000612425565b565b6008546001600160a01b031633146116375760405162461bcd60e51b8152600401610cfd90613411565b601a55565b6008546001600160a01b031633146116665760405162461bcd60e51b8152600401610cfd90613411565b8051610eda90600e906020840190612f4c565b60205460ff16156116cc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610cfd565b60165460015460005484919003600019016116e7919061350e565b1061172b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610cfd565b6020546301000000900460ff1615156001036117aa57601d5482601f54611752919061350e565b106117985760405162461bcd60e51b8152602060048201526016602482015275426174636820737570706c792065786365656465642160501b6044820152606401610cfd565b81601f546117a6919061350e565b601f555b602054813590610100900460ff16151560010361181157600081116118115760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792057686974656c6973742061646472657373657320616c6c6f7765646044820152606401610cfd565b806000036118b957601754831061183a5760405162461bcd60e51b8152600401610cfd90613526565b601a54336000908152600a60209081526040808320601e54845290915290205461186590859061350e565b106118825760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600a60209081526040808320601e548452909152812080548592906118ae90849061350e565b909155506119249050565b6011546001600160a01b03166118ce83612477565b6001600160a01b0316146119245760405162461bcd60e51b815260206004820152601860248201527f5468652076617563686572206973206e6f742076616c696400000000000000006044820152606401610cfd565b8060010361197f57601754831061194d5760405162461bcd60e51b8152600401610cfd90613526565b336000908152600b60209081526040808320601e5484529091528120805485929061197990849061350e565b90915550505b80600203611a225760185483106119a85760405162461bcd60e51b8152600401610cfd90613526565b601b54336000908152600c60209081526040808320601e5484529091529020546119d390859061350e565b106119f05760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600c60209081526040808320601e54845290915281208054859290611a1c90849061350e565b90915550505b80600303611ac5576019548310611a4b5760405162461bcd60e51b8152600401610cfd90613526565b601c54336000908152600d60209081526040808320601e548452909152902054611a7690859061350e565b10611a935760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600d60209081526040808320601e54845290915281208054859290611abf90849061350e565b90915550505b82611ad084836124d0565b611ada9190613496565b341015611b1f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cfd565b610e69338461260f565b606060038054610d1a90613446565b336001600160a01b03831603611b615760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6010805461133a90613446565b6008546001600160a01b03163314611c045760405162461bcd60e51b8152600401610cfd90613411565b601755565b6008546001600160a01b03163314611c335760405162461bcd60e51b8152600401610cfd90613411565b602080549115156101000261ff0019909216919091179055565b611c58848484612110565b6001600160a01b0383163b15158015611c7a5750611c7884848484612629565b155b15611c98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611ca98261207b565b611d0d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cfd565b6000611d17612715565b60205490915062010000900460ff161515600003611dbd5760108054611d3c90613446565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6890613446565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b505050505090505b6000815111611ddb5760405180602001604052806000815250611e09565b80611de584612724565b600f604051602001611df993929190613592565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611e3a5760405162461bcd60e51b8152600401610cfd90613411565b601b55565b6008546001600160a01b03163314611e695760405162461bcd60e51b8152600401610cfd90613411565b601e91909155601d556000601f55565b6008546001600160a01b03163314611ea35760405162461bcd60e51b8152600401610cfd90613411565b601455565b6008546001600160a01b03163314611ed25760405162461bcd60e51b8152600401610cfd90613411565b601955565b6008546001600160a01b03163314611f015760405162461bcd60e51b8152600401610cfd90613411565b60208054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314611f475760405162461bcd60e51b8152600401610cfd90613411565b6016546001546000548491900360001901611f62919061350e565b1115611fa75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610cfd565b610eda818361260f565b6008546001600160a01b03163314611fdb5760405162461bcd60e51b8152600401610cfd90613411565b601355565b6008546001600160a01b0316331461200a5760405162461bcd60e51b8152600401610cfd90613411565b6001600160a01b03811661206f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfd565b61207881612425565b50565b60008160011115801561208f575060005482105b8015610ccd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061211b826122fe565b9050836001600160a01b031681600001516001600160a01b0316146121525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061217057506121708533610ba5565b8061218b57503361218084610d9d565b6001600160a01b0316145b9050806121ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166121d257604051633a954ecd60e21b815260040160405180910390fd5b6121de600084876120b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166122b25760005482146122b257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561232e575060005481105b1561240c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061240a5780516001600160a01b0316156123a1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612405579392505050565b6123a1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061248383612824565b9050611e09816124966020860186613655565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061288b92505050565b6000816000036125225760016017546124e9919061369b565b83146124f75760125461251f565b606460125460056125089190613496565b61251291906134cb565b60125461251f919061369b565b90505b81600103612572576001601754612539919061369b565b83146125475760135461256f565b606460135460056125589190613496565b61256291906134cb565b60135461256f919061369b565b90505b816002036125c2576001601854612589919061369b565b8314612597576014546125bf565b606460145460056125a89190613496565b6125b291906134cb565b6014546125bf919061369b565b90505b81600303610ccd5760016019546125d9919061369b565b83146125e757601554611e09565b606460155460056125f89190613496565b61260291906134cb565b601554611e09919061369b565b610eda8282604051806020016040528060008152506128af565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061265e9033908990889088906004016136b2565b6020604051808303816000875af1925050508015612699575060408051601f3d908101601f19168201909252612696918101906136ef565b60015b6126f7573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516000036126ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e8054610d1a90613446565b60608160000361274b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612775578061275f816134f5565b915061276e9050600a836134cb565b915061274f565b6000816001600160401b0381111561278f5761278f6130e2565b6040519080825280601f01601f1916602001820160405280156127b9576020820181803683370190505b5090505b841561270d576127ce60018361369b565b91506127db600a8661370c565b6127e690603061350e565b60f81b8183815181106127fb576127fb6134df565b60200101906001600160f81b031916908160001a90535061281d600a866134cb565b94506127bd565b6000610ccd7fa46544f8b638f8682f9e7e57207eacd4dac007677ebefcb06d7218f83f6140588335336040805160208101949094528301919091526001600160a01b03166060820152608001604051602081830303815290604052805190602001206128bc565b600080600061289a858561290a565b915091506128a781612978565b509392505050565b610e698383836001612b2e565b6000610ccd6128c9612cff565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041036129405760208301516040840151606085015160001a61293487828585612e26565b94509450505050612971565b8251604003612969576020830151604084015161295e868383612f13565b935093505050612971565b506000905060025b9250929050565b600081600481111561298c5761298c613720565b036129945750565b60018160048111156129a8576129a8613720565b036129f55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610cfd565b6002816004811115612a0957612a09613720565b03612a565760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610cfd565b6003816004811115612a6a57612a6a613720565b03612ac25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610cfd565b6004816004811115612ad657612ad6613720565b036120785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610cfd565b6000546001600160a01b038516612b5757604051622e076360e81b815260040160405180910390fd5b83600003612b785760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612c2957506001600160a01b0387163b15155b15612cb1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c7a6000888480600101955088612629565b612c97576040516368d2bf6b60e11b815260040160405180910390fd5b808203612c2f578260005414612cac57600080fd5b612cf6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612cb2575b506000556122f7565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015612d5857507f000000000000000000000000000000000000000000000000000000000000000046145b15612d8257507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612e5d5750600090506003612f0a565b8460ff16601b14158015612e7557508460ff16601c14155b15612e865750600090506004612f0a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612eda573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612f0357600060019250925050612f0a565b9150600090505b94509492505050565b6000806001600160ff1b03831681612f3060ff86901c601b61350e565b9050612f3e87828885612e26565b935093505050935093915050565b828054612f5890613446565b90600052602060002090601f016020900481019282612f7a5760008555612fc0565b82601f10612f9357805160ff1916838001178555612fc0565b82800160010185558215612fc0579182015b82811115612fc0578251825591602001919060010190612fa5565b50612fcc929150612fd0565b5090565b5b80821115612fcc5760008155600101612fd1565b6001600160e01b03198116811461207857600080fd5b60006020828403121561300d57600080fd5b8135611e0981612fe5565b80356001600160a01b038116811461302f57600080fd5b919050565b6000806040838503121561304757600080fd5b61305083613018565b946020939093013593505050565b60006020828403121561307057600080fd5b5035919050565b60005b8381101561309257818101518382015260200161307a565b83811115611c985750506000910152565b600081518084526130bb816020860160208601613077565b601f01601f19169290920160200192915050565b602081526000611e0960208301846130a3565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613112576131126130e2565b604051601f8501601f19908116603f0116810190828211818310171561313a5761313a6130e2565b8160405280935085815286868601111561315357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561317f57600080fd5b81356001600160401b0381111561319557600080fd5b8201601f810184136131a657600080fd5b61270d848235602084016130f8565b8035801515811461302f57600080fd5b6000602082840312156131d757600080fd5b611e09826131b5565b6000806000606084860312156131f557600080fd5b6131fe84613018565b925061320c60208501613018565b9150604084013590509250925092565b60006020828403121561322e57600080fd5b611e0982613018565b6020808252825182820181905260009190848201906040850190845b8181101561326f57835183529284019291840191600101613253565b50909695505050505050565b60008060006060848603121561329057600080fd5b505081359360208301359350604090920135919050565b600080604083850312156132ba57600080fd5b8235915060208301356001600160401b038111156132d757600080fd5b8301604081860312156132e957600080fd5b809150509250929050565b6000806040838503121561330757600080fd5b61331083613018565b915061331e602084016131b5565b90509250929050565b6000806000806080858703121561333d57600080fd5b61334685613018565b935061335460208601613018565b92506040850135915060608501356001600160401b0381111561337657600080fd5b8501601f8101871361338757600080fd5b613396878235602084016130f8565b91505092959194509250565b600080604083850312156133b557600080fd5b50508035926020909101359150565b600080604083850312156133d757600080fd5b6133e083613018565b915061331e60208401613018565b6000806040838503121561340157600080fd5b8235915061331e60208401613018565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061345a57607f821691505b60208210810361347a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156134b0576134b0613480565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826134da576134da6134b5565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161350757613507613480565b5060010190565b6000821982111561352157613521613480565b500190565b6020808252818101527f4d6178206d696e7420616d6f756e742070657220545820657863656465642121604082015260600190565b60208082526019908201527f4d6178206d696e7420616d6f756e742065786365646564212100000000000000604082015260600190565b6000845160206135a58285838a01613077565b8551918401916135b88184848a01613077565b8554920191600090600181811c90808316806135d557607f831692505b85831081036135f257634e487b7160e01b85526022600452602485fd5b808015613606576001811461361757613644565b60ff19851688528388019550613644565b60008b81526020902060005b8581101561363c5781548a820152908401908801613623565b505083880195505b50939b9a5050505050505050505050565b6000808335601e1984360301811261366c57600080fd5b8301803591506001600160401b0382111561368657600080fd5b60200191503681900382131561297157600080fd5b6000828210156136ad576136ad613480565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136e5908301846130a3565b9695505050505050565b60006020828403121561370157600080fd5b8151611e0981612fe5565b60008261371b5761371b6134b5565b500690565b634e487b7160e01b600052602160045260246000fdfea264697066735822122064ebedaec41ce16701535ab845260ab0c5bb7094738cc09df893d0f25956895764736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524e4a314d5a66375934546647535565364d5550656850536d6b576f4e4d6e4b6d5461416e5966485a6343782f00000000000000000000

Deployed Bytecode

0x6080604052600436106103fa5760003560e01c80636ce2ca8411610213578063b071401b11610123578063d5abeb01116100ab578063ee03d9fc1161007a578063ee03d9fc14610bd3578063efbd73f414610be9578063f12f6d5d14610c09578063f2fde38b14610c29578063fd4f353c14610c4957600080fd5b8063d5abeb0114610b3e578063d70a28d114610b54578063e0a8085314610b6a578063e985e9c514610b8a57600080fd5b8063c87b56dd116100f2578063c87b56dd14610a9e578063cb20496a14610abe578063d13d92fd14610ade578063d3bbbb3d14610afe578063d53a7e9614610b1e57600080fd5b8063b071401b14610a28578063b6ceb50c14610a48578063b767a09814610a5e578063b88d4fde14610a7e57600080fd5b8063877107dc116101a657806394354fd01161017557806394354fd0146109b257806395d89b41146109c8578063a22cb465146109dd578063a45ba8e7146109fd578063af71356614610a1257600080fd5b8063877107dc1461094a578063885de9f3146109605780638da5cb5b1461097357806392613d811461099157600080fd5b8063715018a6116101e2578063715018a6146108bd578063724ed21d146108d25780637618cabf146108f25780637ec4a6591461092a57600080fd5b80636ce2ca84146108395780636d495a951461084f5780636fc3495d1461088757806370a082311461089d57600080fd5b8063438b63001161030e5780635a896cad116102a157806362b99ad41161027057806362b99ad4146107af5780636352211e146107c457806366aee311146107e45780636c19e783146107fa5780636caede3d1461081a57600080fd5b80635a896cad146107355780635c975abb146107555780635d3e650e1461076f5780635e6bbca21461078f57600080fd5b806351830227116102dd57806351830227146106cd5780635503a0e8146106ed57806356273ec114610702578063564b81ef1461072257600080fd5b8063438b63001461064057806344a0d68a1461066d5780634fdd43cb1461068d5780634ff38ea6146106ad57600080fd5b806313faede61161039157806318160ddd1161036057806318160ddd146105b857806323b872dd146105d55780632c8eb7c6146105f55780633ccfd60b1461060b57806342842e0e1461062057600080fd5b806313faede61461054c57806316ba10e01461056257806316c38b3c146105825780631749629e146105a257600080fd5b806306fdde03116103cd57806306fdde03146104b2578063081812fc146104d4578063095ea7b31461050c578063132bcfea1461052c57600080fd5b806301ffc9a7146103ff578063064f110c1461043457806306af692d1461047a57806306d6566114610490575b600080fd5b34801561040b57600080fd5b5061041f61041a366004612ffb565b610c81565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b5061046c61044f366004613034565b600b60209081526000928352604080842090915290825290205481565b60405190815260200161042b565b34801561048657600080fd5b5061046c601d5481565b34801561049c57600080fd5b506104b06104ab36600461305e565b610cd3565b005b3480156104be57600080fd5b506104c7610d0b565b60405161042b91906130cf565b3480156104e057600080fd5b506104f46104ef36600461305e565b610d9d565b6040516001600160a01b03909116815260200161042b565b34801561051857600080fd5b506104b0610527366004613034565b610de1565b34801561053857600080fd5b506104b061054736600461305e565b610e6e565b34801561055857600080fd5b5061046c60125481565b34801561056e57600080fd5b506104b061057d36600461316d565b610e9d565b34801561058e57600080fd5b506104b061059d3660046131c5565b610ede565b3480156105ae57600080fd5b5061046c601a5481565b3480156105c457600080fd5b50600154600054036000190161046c565b3480156105e157600080fd5b506104b06105f03660046131e0565b610f1b565b34801561060157600080fd5b5061046c60185481565b34801561061757600080fd5b506104b0610f26565b34801561062c57600080fd5b506104b061063b3660046131e0565b61111f565b34801561064c57600080fd5b5061066061065b36600461321c565b61113a565b60405161042b9190613237565b34801561067957600080fd5b506104b061068836600461305e565b611279565b34801561069957600080fd5b506104b06106a836600461316d565b6112a8565b3480156106b957600080fd5b506104b06106c83660046131c5565b6112e5565b3480156106d957600080fd5b5060205461041f9062010000900460ff1681565b3480156106f957600080fd5b506104c761132d565b34801561070e57600080fd5b506104b061071d36600461305e565b6113bb565b34801561072e57600080fd5b504661046c565b34801561074157600080fd5b5061046c610750366004613034565b6113ea565b34801561076157600080fd5b5060205461041f9060ff1681565b34801561077b57600080fd5b506104b061078a36600461327b565b6114ae565b34801561079b57600080fd5b506104b06107aa36600461327b565b6114e6565b3480156107bb57600080fd5b506104c761151e565b3480156107d057600080fd5b506104f46107df36600461305e565b61152b565b3480156107f057600080fd5b5061046c601b5481565b34801561080657600080fd5b506104b061081536600461321c565b61153d565b34801561082657600080fd5b5060205461041f90610100900460ff1681565b34801561084557600080fd5b5061046c60195481565b34801561085b57600080fd5b5061046c61086a366004613034565b600c60209081526000928352604080842090915290825290205481565b34801561089357600080fd5b5061046c60145481565b3480156108a957600080fd5b5061046c6108b836600461321c565b611589565b3480156108c957600080fd5b506104b06115d7565b3480156108de57600080fd5b506104b06108ed36600461305e565b61160d565b3480156108fe57600080fd5b5061046c61090d366004613034565b600d60209081526000928352604080842090915290825290205481565b34801561093657600080fd5b506104b061094536600461316d565b61163c565b34801561095657600080fd5b5061046c601f5481565b6104b061096e3660046132a7565b611679565b34801561097f57600080fd5b506008546001600160a01b03166104f4565b34801561099d57600080fd5b5060205461041f906301000000900460ff1681565b3480156109be57600080fd5b5061046c60175481565b3480156109d457600080fd5b506104c7611b29565b3480156109e957600080fd5b506104b06109f83660046132f4565b611b38565b348015610a0957600080fd5b506104c7611bcd565b348015610a1e57600080fd5b5061046c601e5481565b348015610a3457600080fd5b506104b0610a4336600461305e565b611bda565b348015610a5457600080fd5b5061046c60155481565b348015610a6a57600080fd5b506104b0610a793660046131c5565b611c09565b348015610a8a57600080fd5b506104b0610a99366004613327565b611c4d565b348015610aaa57600080fd5b506104c7610ab936600461305e565b611c9e565b348015610aca57600080fd5b506104b0610ad936600461305e565b611e10565b348015610aea57600080fd5b506104b0610af93660046133a2565b611e3f565b348015610b0a57600080fd5b506104b0610b1936600461305e565b611e79565b348015610b2a57600080fd5b506104b0610b3936600461305e565b611ea8565b348015610b4a57600080fd5b5061046c60165481565b348015610b6057600080fd5b5061046c60135481565b348015610b7657600080fd5b506104b0610b853660046131c5565b611ed7565b348015610b9657600080fd5b5061041f610ba53660046133c4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610bdf57600080fd5b5061046c601c5481565b348015610bf557600080fd5b506104b0610c043660046133ee565b611f1d565b348015610c1557600080fd5b506104b0610c2436600461305e565b611fb1565b348015610c3557600080fd5b506104b0610c4436600461321c565b611fe0565b348015610c5557600080fd5b5061046c610c64366004613034565b600a60209081526000928352604080842090915290825290205481565b60006001600160e01b031982166380ac58cd60e01b1480610cb257506001600160e01b03198216635b5e139f60e01b145b80610ccd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610d065760405162461bcd60e51b8152600401610cfd90613411565b60405180910390fd5b601855565b606060028054610d1a90613446565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690613446565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b6000610da88261207b565b610dc5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dec8261152b565b9050806001600160a01b0316836001600160a01b031603610e205760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610e405750610e3e8133610ba5565b155b15610e5e576040516367d9dca160e11b815260040160405180910390fd5b610e698383836120b4565b505050565b6008546001600160a01b03163314610e985760405162461bcd60e51b8152600401610cfd90613411565b601c55565b6008546001600160a01b03163314610ec75760405162461bcd60e51b8152600401610cfd90613411565b8051610eda90600f906020840190612f4c565b5050565b6008546001600160a01b03163314610f085760405162461bcd60e51b8152600401610cfd90613411565b6020805460ff1916911515919091179055565b610e69838383612110565b6008546001600160a01b03163314610f505760405162461bcd60e51b8152600401610cfd90613411565b600260095403610fa25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cfd565b6002600955600073c89c51e660db8385962ddee0bed5c5eae55cbdf3612710610fcc4760fa613496565b610fd691906134cb565b604051600081818185875af1925050503d8060008114611012576040519150601f19603f3d011682016040523d82523d6000602084013e611017565b606091505b505090508061102557600080fd5b6000731644df28ab0b927f06c9838bdef2947088d2e75861271061104b47610bb8613496565b61105591906134cb565b604051600081818185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806110a457600080fd5b60006110b86008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611102576040519150601f19603f3d011682016040523d82523d6000602084013e611107565b606091505b505090508061111557600080fd5b5050600160095550565b610e6983838360405180602001604052806000815250611c4d565b6060600061114783611589565b90506000816001600160401b03811115611163576111636130e2565b60405190808252806020026020018201604052801561118c578160200160208202803683370190505b50905060016000805b84821080156111a5575060005483105b1561126e57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061125b5780516001600160a01b03161561121657805191505b876001600160a01b0316826001600160a01b03160361125b5783858481518110611242576112426134df565b602090810291909101015282611257816134f5565b9350505b83611265816134f5565b94505050611195565b509195945050505050565b6008546001600160a01b031633146112a35760405162461bcd60e51b8152600401610cfd90613411565b601255565b6008546001600160a01b031633146112d25760405162461bcd60e51b8152600401610cfd90613411565b8051610eda906010906020840190612f4c565b6008546001600160a01b0316331461130f5760405162461bcd60e51b8152600401610cfd90613411565b6020805491151563010000000263ff00000019909216919091179055565b600f805461133a90613446565b80601f016020809104026020016040519081016040528092919081815260200182805461136690613446565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b6008546001600160a01b031633146113e55760405162461bcd60e51b8152600401610cfd90613411565b601555565b60008160000361141c57506001600160a01b0382166000908152600a60209081526040808320601e5484529091529020545b8160010361144c57506001600160a01b0382166000908152600b60209081526040808320601e5484529091529020545b8160020361147c57506001600160a01b0382166000908152600c60209081526040808320601e5484529091529020545b81600303610ccd5750506001600160a01b03166000908152600d60209081526040808320601e54845290915290205490565b6008546001600160a01b031633146114d85760405162461bcd60e51b8152600401610cfd90613411565b601792909255601855601955565b6008546001600160a01b031633146115105760405162461bcd60e51b8152600401610cfd90613411565b601a92909255601b55601c55565b600e805461133a90613446565b6000611536826122fe565b5192915050565b6008546001600160a01b031633146115675760405162461bcd60e51b8152600401610cfd90613411565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166115b2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116015760405162461bcd60e51b8152600401610cfd90613411565b61160b6000612425565b565b6008546001600160a01b031633146116375760405162461bcd60e51b8152600401610cfd90613411565b601a55565b6008546001600160a01b031633146116665760405162461bcd60e51b8152600401610cfd90613411565b8051610eda90600e906020840190612f4c565b60205460ff16156116cc5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610cfd565b60165460015460005484919003600019016116e7919061350e565b1061172b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610cfd565b6020546301000000900460ff1615156001036117aa57601d5482601f54611752919061350e565b106117985760405162461bcd60e51b8152602060048201526016602482015275426174636820737570706c792065786365656465642160501b6044820152606401610cfd565b81601f546117a6919061350e565b601f555b602054813590610100900460ff16151560010361181157600081116118115760405162461bcd60e51b815260206004820181905260248201527f4f6e6c792057686974656c6973742061646472657373657320616c6c6f7765646044820152606401610cfd565b806000036118b957601754831061183a5760405162461bcd60e51b8152600401610cfd90613526565b601a54336000908152600a60209081526040808320601e54845290915290205461186590859061350e565b106118825760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600a60209081526040808320601e548452909152812080548592906118ae90849061350e565b909155506119249050565b6011546001600160a01b03166118ce83612477565b6001600160a01b0316146119245760405162461bcd60e51b815260206004820152601860248201527f5468652076617563686572206973206e6f742076616c696400000000000000006044820152606401610cfd565b8060010361197f57601754831061194d5760405162461bcd60e51b8152600401610cfd90613526565b336000908152600b60209081526040808320601e5484529091528120805485929061197990849061350e565b90915550505b80600203611a225760185483106119a85760405162461bcd60e51b8152600401610cfd90613526565b601b54336000908152600c60209081526040808320601e5484529091529020546119d390859061350e565b106119f05760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600c60209081526040808320601e54845290915281208054859290611a1c90849061350e565b90915550505b80600303611ac5576019548310611a4b5760405162461bcd60e51b8152600401610cfd90613526565b601c54336000908152600d60209081526040808320601e548452909152902054611a7690859061350e565b10611a935760405162461bcd60e51b8152600401610cfd9061355b565b336000908152600d60209081526040808320601e54845290915281208054859290611abf90849061350e565b90915550505b82611ad084836124d0565b611ada9190613496565b341015611b1f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610cfd565b610e69338461260f565b606060038054610d1a90613446565b336001600160a01b03831603611b615760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6010805461133a90613446565b6008546001600160a01b03163314611c045760405162461bcd60e51b8152600401610cfd90613411565b601755565b6008546001600160a01b03163314611c335760405162461bcd60e51b8152600401610cfd90613411565b602080549115156101000261ff0019909216919091179055565b611c58848484612110565b6001600160a01b0383163b15158015611c7a5750611c7884848484612629565b155b15611c98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611ca98261207b565b611d0d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cfd565b6000611d17612715565b60205490915062010000900460ff161515600003611dbd5760108054611d3c90613446565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6890613446565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b505050505090505b6000815111611ddb5760405180602001604052806000815250611e09565b80611de584612724565b600f604051602001611df993929190613592565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611e3a5760405162461bcd60e51b8152600401610cfd90613411565b601b55565b6008546001600160a01b03163314611e695760405162461bcd60e51b8152600401610cfd90613411565b601e91909155601d556000601f55565b6008546001600160a01b03163314611ea35760405162461bcd60e51b8152600401610cfd90613411565b601455565b6008546001600160a01b03163314611ed25760405162461bcd60e51b8152600401610cfd90613411565b601955565b6008546001600160a01b03163314611f015760405162461bcd60e51b8152600401610cfd90613411565b60208054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314611f475760405162461bcd60e51b8152600401610cfd90613411565b6016546001546000548491900360001901611f62919061350e565b1115611fa75760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610cfd565b610eda818361260f565b6008546001600160a01b03163314611fdb5760405162461bcd60e51b8152600401610cfd90613411565b601355565b6008546001600160a01b0316331461200a5760405162461bcd60e51b8152600401610cfd90613411565b6001600160a01b03811661206f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfd565b61207881612425565b50565b60008160011115801561208f575060005482105b8015610ccd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061211b826122fe565b9050836001600160a01b031681600001516001600160a01b0316146121525760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061217057506121708533610ba5565b8061218b57503361218084610d9d565b6001600160a01b0316145b9050806121ab57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166121d257604051633a954ecd60e21b815260040160405180910390fd5b6121de600084876120b4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166122b25760005482146122b257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561232e575060005481105b1561240c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061240a5780516001600160a01b0316156123a1579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612405579392505050565b6123a1565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008061248383612824565b9050611e09816124966020860186613655565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061288b92505050565b6000816000036125225760016017546124e9919061369b565b83146124f75760125461251f565b606460125460056125089190613496565b61251291906134cb565b60125461251f919061369b565b90505b81600103612572576001601754612539919061369b565b83146125475760135461256f565b606460135460056125589190613496565b61256291906134cb565b60135461256f919061369b565b90505b816002036125c2576001601854612589919061369b565b8314612597576014546125bf565b606460145460056125a89190613496565b6125b291906134cb565b6014546125bf919061369b565b90505b81600303610ccd5760016019546125d9919061369b565b83146125e757601554611e09565b606460155460056125f89190613496565b61260291906134cb565b601554611e09919061369b565b610eda8282604051806020016040528060008152506128af565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061265e9033908990889088906004016136b2565b6020604051808303816000875af1925050508015612699575060408051601f3d908101601f19168201909252612696918101906136ef565b60015b6126f7573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516000036126ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e8054610d1a90613446565b60608160000361274b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612775578061275f816134f5565b915061276e9050600a836134cb565b915061274f565b6000816001600160401b0381111561278f5761278f6130e2565b6040519080825280601f01601f1916602001820160405280156127b9576020820181803683370190505b5090505b841561270d576127ce60018361369b565b91506127db600a8661370c565b6127e690603061350e565b60f81b8183815181106127fb576127fb6134df565b60200101906001600160f81b031916908160001a90535061281d600a866134cb565b94506127bd565b6000610ccd7fa46544f8b638f8682f9e7e57207eacd4dac007677ebefcb06d7218f83f6140588335336040805160208101949094528301919091526001600160a01b03166060820152608001604051602081830303815290604052805190602001206128bc565b600080600061289a858561290a565b915091506128a781612978565b509392505050565b610e698383836001612b2e565b6000610ccd6128c9612cff565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041036129405760208301516040840151606085015160001a61293487828585612e26565b94509450505050612971565b8251604003612969576020830151604084015161295e868383612f13565b935093505050612971565b506000905060025b9250929050565b600081600481111561298c5761298c613720565b036129945750565b60018160048111156129a8576129a8613720565b036129f55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610cfd565b6002816004811115612a0957612a09613720565b03612a565760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610cfd565b6003816004811115612a6a57612a6a613720565b03612ac25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610cfd565b6004816004811115612ad657612ad6613720565b036120785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610cfd565b6000546001600160a01b038516612b5757604051622e076360e81b815260040160405180910390fd5b83600003612b785760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612c2957506001600160a01b0387163b15155b15612cb1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c7a6000888480600101955088612629565b612c97576040516368d2bf6b60e11b815260040160405180910390fd5b808203612c2f578260005414612cac57600080fd5b612cf6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612cb2575b506000556122f7565b6000306001600160a01b037f000000000000000000000000b9252199a4c33399f5dcdca04d972b8c727b1cfe16148015612d5857507f000000000000000000000000000000000000000000000000000000000000000146145b15612d8257507f50c30998068a4ef8dd996c33247356173b8d45e39e7dcd17783f426c33aad03390565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fcf4a235d41f69e33f67b19b878e03e0b5faf9ce163e1dd6aab289d5ff4ef26bb828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612e5d5750600090506003612f0a565b8460ff16601b14158015612e7557508460ff16601c14155b15612e865750600090506004612f0a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612eda573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612f0357600060019250925050612f0a565b9150600090505b94509492505050565b6000806001600160ff1b03831681612f3060ff86901c601b61350e565b9050612f3e87828885612e26565b935093505050935093915050565b828054612f5890613446565b90600052602060002090601f016020900481019282612f7a5760008555612fc0565b82601f10612f9357805160ff1916838001178555612fc0565b82800160010185558215612fc0579182015b82811115612fc0578251825591602001919060010190612fa5565b50612fcc929150612fd0565b5090565b5b80821115612fcc5760008155600101612fd1565b6001600160e01b03198116811461207857600080fd5b60006020828403121561300d57600080fd5b8135611e0981612fe5565b80356001600160a01b038116811461302f57600080fd5b919050565b6000806040838503121561304757600080fd5b61305083613018565b946020939093013593505050565b60006020828403121561307057600080fd5b5035919050565b60005b8381101561309257818101518382015260200161307a565b83811115611c985750506000910152565b600081518084526130bb816020860160208601613077565b601f01601f19169290920160200192915050565b602081526000611e0960208301846130a3565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613112576131126130e2565b604051601f8501601f19908116603f0116810190828211818310171561313a5761313a6130e2565b8160405280935085815286868601111561315357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561317f57600080fd5b81356001600160401b0381111561319557600080fd5b8201601f810184136131a657600080fd5b61270d848235602084016130f8565b8035801515811461302f57600080fd5b6000602082840312156131d757600080fd5b611e09826131b5565b6000806000606084860312156131f557600080fd5b6131fe84613018565b925061320c60208501613018565b9150604084013590509250925092565b60006020828403121561322e57600080fd5b611e0982613018565b6020808252825182820181905260009190848201906040850190845b8181101561326f57835183529284019291840191600101613253565b50909695505050505050565b60008060006060848603121561329057600080fd5b505081359360208301359350604090920135919050565b600080604083850312156132ba57600080fd5b8235915060208301356001600160401b038111156132d757600080fd5b8301604081860312156132e957600080fd5b809150509250929050565b6000806040838503121561330757600080fd5b61331083613018565b915061331e602084016131b5565b90509250929050565b6000806000806080858703121561333d57600080fd5b61334685613018565b935061335460208601613018565b92506040850135915060608501356001600160401b0381111561337657600080fd5b8501601f8101871361338757600080fd5b613396878235602084016130f8565b91505092959194509250565b600080604083850312156133b557600080fd5b50508035926020909101359150565b600080604083850312156133d757600080fd5b6133e083613018565b915061331e60208401613018565b6000806040838503121561340157600080fd5b8235915061331e60208401613018565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061345a57607f821691505b60208210810361347a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156134b0576134b0613480565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826134da576134da6134b5565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161350757613507613480565b5060010190565b6000821982111561352157613521613480565b500190565b6020808252818101527f4d6178206d696e7420616d6f756e742070657220545820657863656465642121604082015260600190565b60208082526019908201527f4d6178206d696e7420616d6f756e742065786365646564212100000000000000604082015260600190565b6000845160206135a58285838a01613077565b8551918401916135b88184848a01613077565b8554920191600090600181811c90808316806135d557607f831692505b85831081036135f257634e487b7160e01b85526022600452602485fd5b808015613606576001811461361757613644565b60ff19851688528388019550613644565b60008b81526020902060005b8581101561363c5781548a820152908401908801613623565b505083880195505b50939b9a5050505050505050505050565b6000808335601e1984360301811261366c57600080fd5b8301803591506001600160401b0382111561368657600080fd5b60200191503681900382131561297157600080fd5b6000828210156136ad576136ad613480565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136e5908301846130a3565b9695505050505050565b60006020828403121561370157600080fd5b8151611e0981612fe5565b60008261371b5761371b6134b5565b500690565b634e487b7160e01b600052602160045260246000fdfea264697066735822122064ebedaec41ce16701535ab845260ab0c5bb7094738cc09df893d0f25956895764736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524e4a314d5a66375934546647535565364d5550656850536d6b576f4e4d6e4b6d5461416e5966485a6343782f00000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): ipfs://QmRNJ1MZf7Y4TfGSUe6MUPehPSmkWoNMnKmTaAnYfHZcCx/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d524e4a314d5a66375934546647535565364d5550656850
Arg [3] : 536d6b576f4e4d6e4b6d5461416e5966485a6343782f00000000000000000000


Deployed Bytecode Sourcemap

59045:15136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25196:355;;;;;;;;;;-1:-1:-1;25196:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25196:355:0;;;;;;;;59222:71;;;;;;;;;;-1:-1:-1;59222:71:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;1175:25:1;;;1163:2;1148:18;59222:71:0;1029:177:1;60530:32:0;;;;;;;;;;;;;;;;68824:187;;;;;;;;;;-1:-1:-1;68824:187:0;;;;;:::i;:::-;;:::i;:::-;;28391:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29991:245::-;;;;;;;;;;-1:-1:-1;29991:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;29991:245:0;2147:203:1;29554:371:0;;;;;;;;;;-1:-1:-1;29554:371:0;;;;;:::i;:::-;;:::i;69568:179::-;;;;;;;;;;-1:-1:-1;69568:179:0;;;;;:::i;:::-;;:::i;59779:32::-;;;;;;;;;;;;;;;;71109:106;;;;;;;;;;-1:-1:-1;71109:106:0;;;;;:::i;:::-;;:::i;71223:83::-;;;;;;;;;;-1:-1:-1;71223:83:0;;;;;:::i;:::-;;:::i;60331:37::-;;;;;;;;;;;;;;;;24445:303;;;;;;;;;;-1:-1:-1;66828:1:0;24699:12;24489:7;24683:13;:28;-1:-1:-1;;24683:46:0;24445:303;;30979:170;;;;;;;;;;-1:-1:-1;30979:170:0;;;;;:::i;:::-;;:::i;60156:44::-;;;;;;;;;;;;;;;;71544:567;;;;;;;;;;;;;:::i;31220:185::-;;;;;;;;;;-1:-1:-1;31220:185:0;;;;;:::i;:::-;;:::i;65719:1009::-;;;;;;;;;;-1:-1:-1;65719:1009:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68241:80::-;;;;;;;;;;-1:-1:-1;68241:80:0;;;;;:::i;:::-;;:::i;70826:161::-;;;;;;;;;;-1:-1:-1;70826:161:0;;;;;:::i;:::-;;:::i;71433:103::-;;;;;;;;;;-1:-1:-1;71433:103:0;;;;;:::i;:::-;;:::i;61034:28::-;;;;;;;;;;-1:-1:-1;61034:28:0;;;;;;;;;;;59521:33;;;;;;;;;;;;;:::i;68541:108::-;;;;;;;;;;-1:-1:-1;68541:108:0;;;;;:::i;:::-;;:::i;72688:163::-;;;;;;;;;;-1:-1:-1;72804:9:0;72688:163;;67590:548;;;;;;;;;;-1:-1:-1;67590:548:0;;;;;:::i;:::-;;:::i;60956:25::-;;;;;;;;;;-1:-1:-1;60956:25:0;;;;;;;;69755:373;;;;;;;;;;-1:-1:-1;69755:373:0;;;;;:::i;:::-;;:::i;70136:361::-;;;;;;;;;;-1:-1:-1;70136:361:0;;;;;:::i;:::-;;:::i;59486:28::-;;;;;;;;;;;;;:::i;28199:125::-;;;;;;;;;;-1:-1:-1;28199:125:0;;;;;:::i;:::-;;:::i;60375:42::-;;;;;;;;;;;;;;;;70505:88;;;;;;;;;;-1:-1:-1;70505:88:0;;;;;:::i;:::-;;:::i;60988:39::-;;;;;;;;;;-1:-1:-1;60988:39:0;;;;;;;;;;;60207:44;;;;;;;;;;;;;;;;59300:85;;;;;;;;;;-1:-1:-1;59300:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;59860:39;;;;;;;;;;;;;;;;25615:206;;;;;;;;;;-1:-1:-1;25615:206:0;;;;;:::i;:::-;;:::i;45355:103::-;;;;;;;;;;;;;:::i;69214:159::-;;;;;;;;;;-1:-1:-1;69214:159:0;;;;;:::i;:::-;;:::i;59392:85::-;;;;;;;;;;-1:-1:-1;59392:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;70995:106;;;;;;;;;;-1:-1:-1;70995:106:0;;;;;:::i;:::-;;:::i;60600:30::-;;;;;;;;;;;;;;;;62858:2568;;;;;;:::i;:::-;;:::i;44704:87::-;;;;;;;;;;-1:-1:-1;44777:6:0;;-1:-1:-1;;;;;44777:6:0;44704:87;;61069:35;;;;;;;;;;-1:-1:-1;61069:35:0;;;;;;;;;;;60112:37;;;;;;;;;;;;;;;;28560:104;;;;;;;;;;;;;:::i;30308:319::-;;;;;;;;;;-1:-1:-1;30308:319:0;;;;;:::i;:::-;;:::i;59561:31::-;;;;;;;;;;;;;:::i;60569:24::-;;;;;;;;;;;;;;;;68657:159;;;;;;;;;;-1:-1:-1;68657:159:0;;;;;:::i;:::-;;:::i;59906:40::-;;;;;;;;;;;;;;;;71314:111;;;;;;;;;;-1:-1:-1;71314:111:0;;;;;:::i;:::-;;:::i;31476:406::-;;;;;;;;;;-1:-1:-1;31476:406:0;;;;;:::i;:::-;;:::i;66845:737::-;;;;;;;;;;-1:-1:-1;66845:737:0;;;;;:::i;:::-;;:::i;69381:179::-;;;;;;;;;;-1:-1:-1;69381:179:0;;;;;:::i;:::-;;:::i;70620:198::-;;;;;;;;;;-1:-1:-1;70620:198:0;;;;;:::i;:::-;;:::i;68425:108::-;;;;;;;;;;-1:-1:-1;68425:108:0;;;;;:::i;:::-;;:::i;69019:187::-;;;;;;;;;;-1:-1:-1;69019:187:0;;;;;:::i;:::-;;:::i;60008:31::-;;;;;;;;;;;;;;;;59818:35;;;;;;;;;;;;;;;;68146:87;;;;;;;;;;-1:-1:-1;68146:87:0;;;;;:::i;:::-;;:::i;30698:214::-;;;;;;;;;;-1:-1:-1;30698:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;30869:25:0;;;30840:4;30869:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30698:214;60424:42;;;;;;;;;;;;;;;;65434:277;;;;;;;;;;-1:-1:-1;65434:277:0;;;;;:::i;:::-;;:::i;68329:88::-;;;;;;;;;;-1:-1:-1;68329:88:0;;;;;:::i;:::-;;:::i;45613:238::-;;;;;;;;;;-1:-1:-1;45613:238:0;;;;;:::i;:::-;;:::i;59141:74::-;;;;;;;;;;-1:-1:-1;59141:74:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;25196:355;25343:4;-1:-1:-1;;;;;;25385:40:0;;-1:-1:-1;;;25385:40:0;;:105;;-1:-1:-1;;;;;;;25442:48:0;;-1:-1:-1;;;25442:48:0;25385:105;:158;;;-1:-1:-1;;;;;;;;;;20881:40:0;;;25507:36;25365:178;25196:355;-1:-1:-1;;25196:355:0:o;68824:187::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;;;;;;;;;68949:25:::1;:54:::0;68824:187::o;28391:100::-;28445:13;28478:5;28471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28391:100;:::o;29991:245::-;30095:7;30125:16;30133:7;30125;:16::i;:::-;30120:64;;30150:34;;-1:-1:-1;;;30150:34:0;;;;;;;;;;;30120:64;-1:-1:-1;30204:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30204:24:0;;29991:245::o;29554:371::-;29627:13;29643:24;29659:7;29643:15;:24::i;:::-;29627:40;;29688:5;-1:-1:-1;;;;;29682:11:0;:2;-1:-1:-1;;;;;29682:11:0;;29678:48;;29702:24;;-1:-1:-1;;;29702:24:0;;;;;;;;;;;29678:48;17561:10;-1:-1:-1;;;;;29743:21:0;;;;;;:63;;-1:-1:-1;29769:37:0;29786:5;17561:10;30698:214;:::i;29769:37::-;29768:38;29743:63;29739:138;;;29830:35;;-1:-1:-1;;;29830:35:0;;;;;;;;;;;29739:138;29889:28;29898:2;29902:7;29911:5;29889:8;:28::i;:::-;29616:309;29554:371;;:::o;69568:179::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;69689:23:::1;:50:::0;69568:179::o;71109:106::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;71185:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71109:106:::0;:::o;71223:83::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;71283:6:::1;:15:::0;;-1:-1:-1;;71283:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71223:83::o;30979:170::-;31113:28;31123:4;31129:2;31133:7;31113:9;:28::i;71544:567::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;48025:1:::1;48623:7;;:19:::0;48615:63:::1;;;::::0;-1:-1:-1;;;48615:63:0;;8530:2:1;48615:63:0::1;::::0;::::1;8512:21:1::0;8569:2;8549:18;;;8542:30;8608:33;8588:18;;;8581:61;8659:18;;48615:63:0::1;8328:355:1::0;48615:63:0::1;48025:1;48756:7;:18:::0;71629:11:::2;71654:42;71756:5;71725:27;:21;71749:3;71725:27;:::i;:::-;71724:37;;;;:::i;:::-;71646:120;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71628:138;;;71785:6;71777:15;;;::::0;::::2;;71833:7;71854:42;71957:5;71925:28;:21;71949:4;71925:28;:::i;:::-;71924:38;;;;:::i;:::-;71846:131;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71832:145;;;71996:2;71988:11;;;::::0;::::2;;72013:7;72034;44777:6:::0;;-1:-1:-1;;;;;44777:6:0;;44704:87;72034:7:::2;-1:-1:-1::0;;;;;72026:21:0::2;72055;72026:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72012:69;;;72100:2;72092:11;;;::::0;::::2;;-1:-1:-1::0;;47981:1:0::1;48935:7;:22:::0;-1:-1:-1;71544:567:0:o;31220:185::-;31358:39;31375:4;31381:2;31385:7;31358:39;;;;;;;;;;;;:16;:39::i;65719:1009::-;65806:16;65840:23;65866:17;65876:6;65866:9;:17::i;:::-;65840:43;;65894:30;65941:15;-1:-1:-1;;;;;65927:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65927:30:0;-1:-1:-1;65894:63:0;-1:-1:-1;66828:1:0;65968:22;;66096:592;66135:15;66117;:33;:67;;;;;66171:13;;66154:14;:30;66117:67;66096:592;;;66211:31;66245:27;;;:11;:27;;;;;;;;;66211:61;;;;;;;;;-1:-1:-1;;;;;66211:61:0;;;;-1:-1:-1;;;66211:61:0;;-1:-1:-1;;;;;66211:61:0;;;;;;;;-1:-1:-1;;;66211:61:0;;;;;;;;;;;;;;66289:355;;66335:14;;-1:-1:-1;;;;;66335:28:0;;66331:112;;66409:14;;;-1:-1:-1;66331:112:0;66489:6;-1:-1:-1;;;;;66467:28:0;:18;-1:-1:-1;;;;;66467:28:0;;66463:166;;66553:14;66520:13;66534:15;66520:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;66592:17;;;;:::i;:::-;;;;66463:166;66660:16;;;;:::i;:::-;;;;66196:492;66096:592;;;-1:-1:-1;66707:13:0;;65719:1009;-1:-1:-1;;;;;65719:1009:0:o;68241:80::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68301:4:::1;:12:::0;68241:80::o;70826:161::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;70941:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;71433:103::-:0;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;71503:16:::1;:25:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;71503:25:0;;::::1;::::0;;;::::1;::::0;;71433:103::o;59521:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68541:108::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68615:11:::1;:26:::0;68541:108::o;67590:548::-;67699:14;67756:7;67767:1;67756:12;67752:87;;-1:-1:-1;;;;;;67794:26:0;;;;;;:19;:26;;;;;;;;67821:5;;67794:33;;;;;;;;67752:87;67853:7;67864:1;67853:12;67849:84;;-1:-1:-1;;;;;;67891:23:0;;;;;;:16;:23;;;;;;;;67915:5;;67891:30;;;;;;;;67849:84;67947:7;67958:1;67947:12;67943:89;;-1:-1:-1;;;;;;67985:28:0;;;;;;:21;:28;;;;;;;;68014:5;;67985:35;;;;;;;;67943:89;68046:7;68057:1;68046:12;68042:89;;-1:-1:-1;;;;;;;68084:28:0;;;;;:21;:28;;;;;;;;68113:5;;68084:35;;;;;;;;;67590:548::o;69755:373::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;69950:18:::1;:40:::0;;;;70001:25:::1;:54:::0;70066:25:::1;:54:::0;69755:373::o;70136:361::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;70327:18:::1;:40:::0;;;;70378:23:::1;:50:::0;70439:23:::1;:50:::0;70136:361::o;59486:28::-;;;;;;;:::i;28199:125::-;28263:7;28290:21;28303:7;28290:12;:21::i;:::-;:26;;28199:125;-1:-1:-1;;28199:125:0:o;70505:88::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;70569:6:::1;:16:::0;;-1:-1:-1;;;;;;70569:16:0::1;-1:-1:-1::0;;;;;70569:16:0;;;::::1;::::0;;;::::1;::::0;;70505:88::o;25615:206::-;25679:7;-1:-1:-1;;;;;25703:19:0;;25699:60;;25731:28;;-1:-1:-1;;;25731:28:0;;;;;;;;;;;25699:60;-1:-1:-1;;;;;;25785:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25785:27:0;;25615:206::o;45355:103::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;45420:30:::1;45447:1;45420:18;:30::i;:::-;45355:103::o:0;69214:159::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;69325:18:::1;:40:::0;69214:159::o;70995:106::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;71071:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;62858:2568::-:0;62951:6;;;;62950:7;62942:43;;;;-1:-1:-1;;;62942:43:0;;9934:2:1;62942:43:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:25;9992:18;;;9985:53;10055:18;;62942:43:0;9732:347:1;62942:43:0;63048:9;;66828:1;24699:12;24489:7;24683:13;63034:11;;24683:28;;-1:-1:-1;;24683:46:0;63018:27;;;;:::i;:::-;:39;62996:109;;;;-1:-1:-1;;;62996:109:0;;10419:2:1;62996:109:0;;;10401:21:1;10458:2;10438:18;;;10431:30;-1:-1:-1;;;10477:18:1;;;10470:50;10537:18;;62996:109:0;10217:344:1;62996:109:0;63120:16;;;;;;;:24;;63140:4;63120:24;63116:234;;63215:11;;63201;63187;;:25;;;;:::i;:::-;:39;63161:123;;;;-1:-1:-1;;;63161:123:0;;10768:2:1;63161:123:0;;;10750:21:1;10807:2;10787:18;;;10780:30;-1:-1:-1;;;10826:18:1;;;10819:52;10888:18;;63161:123:0;10566:346:1;63161:123:0;63327:11;63313;;:25;;;;:::i;:::-;63299:11;:39;63116:234;63402:20;;63378:9;;;63402:20;;;;;:28;;:20;:28;63398:117;;63465:1;63455:7;:11;63447:56;;;;-1:-1:-1;;;63447:56:0;;11119:2:1;63447:56:0;;;11101:21:1;;;11138:18;;;11131:30;11197:34;11177:18;;;11170:62;11249:18;;63447:56:0;10917:356:1;63447:56:0;63531:7;63542:1;63531:12;63527:525;;63600:18;;63586:11;:32;63560:126;;;;-1:-1:-1;;;63560:126:0;;;;;;;:::i;:::-;63803:18;;63747:10;63727:31;;;;:19;:31;;;;;;;;63759:5;;63727:38;;;;;;;;:52;;63768:11;;63727:52;:::i;:::-;:94;63701:181;;;;-1:-1:-1;;;63701:181:0;;;;;;;:::i;:::-;63917:10;63897:31;;;;:19;:31;;;;;;;;63929:5;;63897:38;;;;;;;:53;;63939:11;;63897:31;:53;;63939:11;;63897:53;:::i;:::-;;;;-1:-1:-1;63527:525:0;;-1:-1:-1;63527:525:0;;64005:6;;-1:-1:-1;;;;;64005:6:0;63991:10;63999:1;63991:7;:10::i;:::-;-1:-1:-1;;;;;63991:20:0;;63983:57;;;;-1:-1:-1;;;63983:57:0;;12195:2:1;63983:57:0;;;12177:21:1;12234:2;12214:18;;;12207:30;12273:26;12253:18;;;12246:54;12317:18;;63983:57:0;11993:348:1;63983:57:0;64068:7;64079:1;64068:12;64064:236;;64137:18;;64123:11;:32;64097:126;;;;-1:-1:-1;;;64097:126:0;;;;;;;:::i;:::-;64255:10;64238:28;;;;:16;:28;;;;;;;;64267:5;;64238:35;;;;;;;:50;;64277:11;;64238:28;:50;;64277:11;;64238:50;:::i;:::-;;;;-1:-1:-1;;64064:236:0;64314:7;64325:1;64314:12;64310:453;;64383:25;;64369:11;:39;64343:133;;;;-1:-1:-1;;;64343:133:0;;;;;;;:::i;:::-;64595:23;;64539:10;64517:33;;;;:21;:33;;;;;;;;64551:5;;64517:40;;;;;;;;:54;;64560:11;;64517:54;:::i;:::-;:101;64491:188;;;;-1:-1:-1;;;64491:188:0;;;;;;;:::i;:::-;64718:10;64696:33;;;;:21;:33;;;;;;;;64730:5;;64696:40;;;;;;;:55;;64740:11;;64696:33;:55;;64740:11;;64696:55;:::i;:::-;;;;-1:-1:-1;;64310:453:0;64777:7;64788:1;64777:12;64773:453;;64846:25;;64832:11;:39;64806:133;;;;-1:-1:-1;;;64806:133:0;;;;;;;:::i;:::-;65058:23;;65002:10;64980:33;;;;:21;:33;;;;;;;;65014:5;;64980:40;;;;;;;;:54;;65023:11;;64980:54;:::i;:::-;:101;64954:188;;;;-1:-1:-1;;;64954:188:0;;;;;;;:::i;:::-;65181:10;65159:33;;;;:21;:33;;;;;;;;65193:5;;65159:40;;;;;;;:55;;65203:11;;65159:33;:55;;65203:11;;65159:55;:::i;:::-;;;;-1:-1:-1;;64773:453:0;65311:11;65273:35;65287:11;65300:7;65273:13;:35::i;:::-;:49;;;;:::i;:::-;65260:9;:62;;65238:131;;;;-1:-1:-1;;;65238:131:0;;12548:2:1;65238:131:0;;;12530:21:1;12587:2;12567:18;;;12560:30;-1:-1:-1;;;12606:18:1;;;12599:49;12665:18;;65238:131:0;12346:343:1;65238:131:0;65382:36;17561:10;65406:11;65382:9;:36::i;28560:104::-;28616:13;28649:7;28642:14;;;;;:::i;30308:319::-;17561:10;-1:-1:-1;;;;;30439:24:0;;;30435:54;;30472:17;;-1:-1:-1;;;30472:17:0;;;;;;;;;;;30435:54;17561:10;30502:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30502:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30502:53:0;;;;;;;;;;30571:48;;540:41:1;;;30502:42:0;;17561:10;30571:48;;513:18:1;30571:48:0;;;;;;;30308:319;;:::o;59561:31::-;;;;;;;:::i;68657:159::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68768:18:::1;:40:::0;68657:159::o;71314:111::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;71388:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;71388:29:0;;::::1;::::0;;;::::1;::::0;;71314:111::o;31476:406::-;31643:28;31653:4;31659:2;31663:7;31643:9;:28::i;:::-;-1:-1:-1;;;;;31700:13:0;;9356:19;:23;;31700:89;;;;;31733:56;31764:4;31770:2;31774:7;31783:5;31733:30;:56::i;:::-;31732:57;31700:89;31682:193;;;31823:40;;-1:-1:-1;;;31823:40:0;;;;;;;;;;;31682:193;31476:406;;;;:::o;66845:737::-;66964:13;67017:17;67025:8;67017:7;:17::i;:::-;66995:114;;;;-1:-1:-1;;;66995:114:0;;12896:2:1;66995:114:0;;;12878:21:1;12935:2;12915:18;;;12908:30;12974:34;12954:18;;;12947:62;-1:-1:-1;;;13025:18:1;;;13018:45;13080:19;;66995:114:0;12694:411:1;66995:114:0;67122:28;67153:10;:8;:10::i;:::-;67178:8;;67122:41;;-1:-1:-1;67178:8:0;;;;;:17;;67190:5;67178:17;67174:84;;67229:17;67212:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67174:84;67321:1;67296:14;67290:28;:32;:284;;;;;;;;;;;;;;;;;67414:14;67455:19;:8;:17;:19::i;:::-;67501:9;67371:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67290:284;67270:304;66845:737;-1:-1:-1;;;66845:737:0:o;69381:179::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;69502:23:::1;:50:::0;69381:179::o;70620:198::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;70733:5:::1;:14:::0;;;;70758:11:::1;:26:::0;-1:-1:-1;70795:11:0::1;:15:::0;70620:198::o;68425:108::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68499:11:::1;:26:::0;68425:108::o;69019:187::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;69144:25:::1;:54:::0;69019:187::o;68146:87::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68208:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;68208:17:0;;::::1;::::0;;;::::1;::::0;;68146:87::o;65434:277::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;65602:9:::1;::::0;66828:1;24699:12;24489:7;24683:13;65587:11;;24683:28;;-1:-1:-1;;24683:46:0;65571:27:::1;;;;:::i;:::-;:40;;65549:110;;;::::0;-1:-1:-1;;;65549:110:0;;10419:2:1;65549:110:0::1;::::0;::::1;10401:21:1::0;10458:2;10438:18;;;10431:30;-1:-1:-1;;;10477:18:1;;;10470:50;10537:18;;65549:110:0::1;10217:344:1::0;65549:110:0::1;65670:33;65680:9;65691:11;65670:9;:33::i;68329:88::-:0;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;68393:6:::1;:16:::0;68329:88::o;45613:238::-;44777:6;;-1:-1:-1;;;;;44777:6:0;17561:10;44924:23;44916:68;;;;-1:-1:-1;;;44916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45716:22:0;::::1;45694:110;;;::::0;-1:-1:-1;;;45694:110:0;;14970:2:1;45694:110:0::1;::::0;::::1;14952:21:1::0;15009:2;14989:18;;;14982:30;15048:34;15028:18;;;15021:62;-1:-1:-1;;;15099:18:1;;;15092:36;15145:19;;45694:110:0::1;14768:402:1::0;45694:110:0::1;45815:28;45834:8;45815:18;:28::i;:::-;45613:238:::0;:::o;32137:213::-;32194:4;32250:7;66828:1;32231:26;;:66;;;;;32284:13;;32274:7;:23;32231:66;:111;;;;-1:-1:-1;;32315:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32315:27:0;;;;32314:28;;32137:213::o;40524:196::-;40639:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40639:29:0;-1:-1:-1;;;;;40639:29:0;;;;;;;;;40684:28;;40639:24;;40684:28;;;;;;;40524:196;;;:::o;35467:2130::-;35582:35;35620:21;35633:7;35620:12;:21::i;:::-;35582:59;;35680:4;-1:-1:-1;;;;;35658:26:0;:13;:18;;;-1:-1:-1;;;;;35658:26:0;;35654:67;;35693:28;;-1:-1:-1;;;35693:28:0;;;;;;;;;;;35654:67;35734:22;17561:10;-1:-1:-1;;;;;35760:20:0;;;;:73;;-1:-1:-1;35797:36:0;35814:4;17561:10;30698:214;:::i;35797:36::-;35760:126;;;-1:-1:-1;17561:10:0;35850:20;35862:7;35850:11;:20::i;:::-;-1:-1:-1;;;;;35850:36:0;;35760:126;35734:153;;35905:17;35900:66;;35931:35;;-1:-1:-1;;;35931:35:0;;;;;;;;;;;35900:66;-1:-1:-1;;;;;35981:16:0;;35977:52;;36006:23;;-1:-1:-1;;;36006:23:0;;;;;;;;;;;35977:52;36150:35;36167:1;36171:7;36180:4;36150:8;:35::i;:::-;-1:-1:-1;;;;;36481:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36481:31:0;;;-1:-1:-1;;;;;36481:31:0;;;-1:-1:-1;;36481:31:0;;;;;;;36527:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36527:29:0;;;;;;;;;;;36607:20;;;:11;:20;;;;;;36642:18;;-1:-1:-1;;;;;;36675:49:0;;;;-1:-1:-1;;;36708:15:0;36675:49;;;;;;;;;;36998:11;;37058:24;;;;;37101:13;;36607:20;;37058:24;;37101:13;37097:384;;37311:13;;37296:11;:28;37292:174;;37349:20;;37418:28;;;;-1:-1:-1;;;;;37392:54:0;-1:-1:-1;;;37392:54:0;-1:-1:-1;;;;;;37392:54:0;;;-1:-1:-1;;;;;37349:20:0;;37392:54;;;;37292:174;36456:1036;;;37528:7;37524:2;-1:-1:-1;;;;;37509:27:0;37518:4;-1:-1:-1;;;;;37509:27:0;;;;;;;;;;;37547:42;35571:2026;;35467:2130;;;:::o;26996:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27139:7:0;;66828:1;27188:23;;:47;;;;;27222:13;;27215:4;:20;27188:47;27184:886;;;27256:31;27290:17;;;:11;:17;;;;;;;;;27256:51;;;;;;;;;-1:-1:-1;;;;;27256:51:0;;;;-1:-1:-1;;;27256:51:0;;-1:-1:-1;;;;;27256:51:0;;;;;;;;-1:-1:-1;;;27256:51:0;;;;;;;;;;;;;;27326:729;;27376:14;;-1:-1:-1;;;;;27376:28:0;;27372:101;;27440:9;26996:1141;-1:-1:-1;;;26996:1141:0:o;27372:101::-;-1:-1:-1;;;27815:6:0;27860:17;;;;:11;:17;;;;;;;;;27848:29;;;;;;;;;-1:-1:-1;;;;;27848:29:0;;;;;-1:-1:-1;;;27848:29:0;;-1:-1:-1;;;;;27848:29:0;;;;;;;;-1:-1:-1;;;27848:29:0;;;;;;;;;;;;;27908:28;27904:109;;27976:9;26996:1141;-1:-1:-1;;;26996:1141:0:o;27904:109::-;27775:261;;;27237:833;27184:886;28098:31;;-1:-1:-1;;;28098:31:0;;;;;;;;;;;46011:191;46104:6;;;-1:-1:-1;;;;;46121:17:0;;;-1:-1:-1;;;;;;46121:17:0;;;;;;;46154:40;;46104:6;;;46121:17;46104:6;;46154:40;;46085:16;;46154:40;46074:128;46011:191;:::o;72859:218::-;72955:7;72980:14;72997;73003:7;72997:5;:14::i;:::-;72980:31;-1:-1:-1;73029:40:0;72980:31;73051:17;;;;:7;:17;:::i;:::-;73029:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73029:13:0;;-1:-1:-1;;;73029:40:0:i;61960:890::-;62072:13;62107:8;62119:1;62107:13;62103:162;;62182:1;62161:18;;:22;;;;:::i;:::-;62145:11;:39;:108;;62249:4;;62145:108;;;62225:3;62213:4;;62220:1;62213:8;;;;:::i;:::-;62212:16;;;;:::i;:::-;62204:4;;:25;;;;:::i;:::-;62137:116;;62103:162;62279:8;62291:1;62279:13;62275:168;;62354:1;62333:18;;:22;;;;:::i;:::-;62317:11;:39;:114;;62425:6;;62317:114;;;62401:3;62387:6;;62396:1;62387:10;;;;:::i;:::-;62386:18;;;;:::i;:::-;62376:6;;:29;;;;:::i;:::-;62309:122;;62275:168;62457:8;62469:1;62457:13;62453:190;;62539:1;62511:25;;:29;;;;:::i;:::-;62495:11;:46;:136;;62620:11;;62495:136;;;62596:3;62577:11;;62591:1;62577:15;;;;:::i;:::-;62576:23;;;;:::i;:::-;62561:11;;:39;;;;:::i;:::-;62487:144;;62453:190;62657:8;62669:1;62657:13;62653:190;;62739:1;62711:25;;:29;;;;:::i;:::-;62695:11;:46;:136;;62820:11;;62695:136;;;62796:3;62777:11;;62791:1;62777:15;;;;:::i;:::-;62776:23;;;;:::i;:::-;62761:11;;:39;;;;:::i;32358:104::-;32427:27;32437:2;32441:8;32427:27;;;;;;;;;;;;:9;:27::i;41212:772::-;41409:155;;-1:-1:-1;;;41409:155:0;;41375:4;;-1:-1:-1;;;;;41409:36:0;;;;;:155;;17561:10;;41495:4;;41518:7;;41544:5;;41409:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41409:155:0;;;;;;;;-1:-1:-1;;41409:155:0;;;;;;;;;;;;:::i;:::-;;;41392:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41735:6;:13;41752:1;41735:18;41731:235;;41781:40;;-1:-1:-1;;;41781:40:0;;;;;;;;;;;41731:235;41924:6;41918:13;41909:6;41905:2;41901:15;41894:38;41392:585;-1:-1:-1;;;;;;41620:55:0;-1:-1:-1;;;41620:55:0;;-1:-1:-1;41392:585:0;41212:772;;;;;;:::o;72119:110::-;72179:13;72212:9;72205:16;;;;;:::i;18064:723::-;18120:13;18341:5;18350:1;18341:10;18337:53;;-1:-1:-1;;18368:10:0;;;;;;;;;;;;-1:-1:-1;;;18368:10:0;;;;;18064:723::o;18337:53::-;18415:5;18400:12;18456:78;18463:9;;18456:78;;18489:8;;;;:::i;:::-;;-1:-1:-1;18512:10:0;;-1:-1:-1;18520:2:0;18512:10;;:::i;:::-;;;18456:78;;;18544:19;18576:6;-1:-1:-1;;;;;18566:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18566:17:0;;18544:39;;18594:154;18601:10;;18594:154;;18628:11;18638:1;18628:11;;:::i;:::-;;-1:-1:-1;18697:10:0;18705:2;18697:5;:10;:::i;:::-;18684:24;;:2;:24;:::i;:::-;18671:39;;18654:6;18661;18654:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18654:56:0;;;;;;;;-1:-1:-1;18725:11:0;18734:2;18725:11;;:::i;:::-;;;18594:154;;72237:443;72331:7;72376:296;72480:54;72561:15;;17561:10;72443:195;;;;;;16898:25:1;;;;16939:18;;16932:34;;;;-1:-1:-1;;;;;17002:32:1;16982:18;;;16975:60;16871:18;;72443:195:0;;;;;;;;;;;;72411:246;;;;;;72376:16;:296::i;53423:263::-;53528:7;53554:17;53573:18;53595:27;53606:4;53612:9;53595:10;:27::i;:::-;53553:69;;;;53633:18;53645:5;53633:11;:18::i;:::-;-1:-1:-1;53669:9:0;53423:263;-1:-1:-1;;;53423:263:0:o;32825:163::-;32948:32;32954:2;32958:8;32968:5;32975:4;32948:5;:32::i;73970:208::-;74083:7;74115:55;74137:20;:18;:20::i;:::-;74159:10;58880:57;;-1:-1:-1;;;58880:57:0;;;18955:27:1;18998:11;;;18991:27;;;19034:12;;;19027:28;;;58807:7:0;;19071:12:1;;58880:57:0;;;;;;;;;;;;58852:100;;;;;;58832:120;;58687:273;;;;;51281:1340;51389:7;51398:12;51628:9;:16;51648:2;51628:22;51624:990;;51924:4;51909:20;;51903:27;51974:4;51959:20;;51953:27;52032:4;52017:20;;52011:27;51667:9;52003:36;52075:25;52086:4;52003:36;51903:27;51953;52075:10;:25::i;:::-;52068:32;;;;;;;;;51624:990;52122:9;:16;52142:2;52122:22;52118:496;;52397:4;52382:20;;52376:27;52448:4;52433:20;;52427:27;52490:23;52501:4;52376:27;52427;52490:10;:23::i;:::-;52483:30;;;;;;;;52118:496;-1:-1:-1;52562:1:0;;-1:-1:-1;52566:35:0;52118:496;51281:1340;;;;;:::o;49552:643::-;49630:20;49621:5;:29;;;;;;;;:::i;:::-;;49617:571;;49552:643;:::o;49617:571::-;49728:29;49719:5;:38;;;;;;;;:::i;:::-;;49715:473;;49774:34;;-1:-1:-1;;;49774:34:0;;17380:2:1;49774:34:0;;;17362:21:1;17419:2;17399:18;;;17392:30;17458:26;17438:18;;;17431:54;17502:18;;49774:34:0;17178:348:1;49715:473:0;49839:35;49830:5;:44;;;;;;;;:::i;:::-;;49826:362;;49891:41;;-1:-1:-1;;;49891:41:0;;17733:2:1;49891:41:0;;;17715:21:1;17772:2;17752:18;;;17745:30;17811:33;17791:18;;;17784:61;17862:18;;49891:41:0;17531:355:1;49826:362:0;49963:30;49954:5;:39;;;;;;;;:::i;:::-;;49950:238;;50010:44;;-1:-1:-1;;;50010:44:0;;18093:2:1;50010:44:0;;;18075:21:1;18132:2;18112:18;;;18105:30;18171:34;18151:18;;;18144:62;-1:-1:-1;;;18222:18:1;;;18215:32;18264:19;;50010:44:0;17891:398:1;49950:238:0;50085:30;50076:5;:39;;;;;;;;:::i;:::-;;50072:116;;50132:44;;-1:-1:-1;;;50132:44:0;;18496:2:1;50132:44:0;;;18478:21:1;18535:2;18515:18;;;18508:30;18574:34;18554:18;;;18547:62;-1:-1:-1;;;18625:18:1;;;18618:32;18667:19;;50132:44:0;18294:398:1;33247:1966:0;33386:20;33409:13;-1:-1:-1;;;;;33437:16:0;;33433:48;;33462:19;;-1:-1:-1;;;33462:19:0;;;;;;;;;;;33433:48;33496:8;33508:1;33496:13;33492:44;;33518:18;;-1:-1:-1;;;33518:18:0;;;;;;;;;;;33492:44;-1:-1:-1;;;;;33887:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33946:49:0;;-1:-1:-1;;;;;33887:44:0;;;;;;;33946:49;;;;-1:-1:-1;;33887:44:0;;;;;;33946:49;;;;;;;;;;;;;;;;34012:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34062:66:0;;;;-1:-1:-1;;;34112:15:0;34062:66;;;;;;;;;;34012:25;34209:23;;;34253:4;:23;;;;-1:-1:-1;;;;;;34261:13:0;;9356:19;:23;;34261:15;34249:832;;;34297:505;34328:38;;34353:12;;-1:-1:-1;;;;;34328:38:0;;;34345:1;;34328:38;;34345:1;;34328:38;34420:212;34489:1;34522:2;34555:14;;;;;;34600:5;34420:30;:212::i;:::-;34389:365;;34690:40;;-1:-1:-1;;;34690:40:0;;;;;;;;;;;34389:365;34797:3;34781:12;:19;34297:505;;34883:12;34866:13;;:29;34862:43;;34897:8;;;34862:43;34249:832;;;34946:120;34977:40;;35002:14;;;;;-1:-1:-1;;;;;34977:40:0;;;34994:1;;34977:40;;34994:1;;34977:40;35061:3;35045:12;:19;34946:120;;34249:832;-1:-1:-1;35095:13:0;:28;35145:60;31476:406;73085:437;73138:7;73184:4;-1:-1:-1;;;;;73193:12:0;73176:29;;:66;;;;;73226:16;73209:13;:33;73176:66;73158:357;;;-1:-1:-1;73276:24:0;;73085:437::o;73158:357::-;-1:-1:-1;73742:197:0;;;73401:10;73742:197;;;;19756:25:1;;;;73434:12:0;19797:18:1;;;19790:34;73469:15:0;19840:18:1;;;19833:34;73871:13:0;19883:18:1;;;19876:34;73915:4:0;19926:19:1;;;;19919:61;;;;73742:197:0;;;;;;;;;;19728:19:1;;;;73742:197:0;;;73714:240;;;;;;73085:437::o;54952:1669::-;55083:7;;56044:66;56018:92;;56000:200;;;-1:-1:-1;56153:1:0;;-1:-1:-1;56157:30:0;56137:51;;56000:200;56214:1;:7;;56219:2;56214:7;;:18;;;;;56225:1;:7;;56230:2;56225:7;;56214:18;56210:102;;;-1:-1:-1;56265:1:0;;-1:-1:-1;56269:30:0;56249:51;;56210:102;56426:24;;;56409:14;56426:24;;;;;;;;;19321:25:1;;;19394:4;19382:17;;19362:18;;;19355:45;;;;19416:18;;;19409:34;;;19459:18;;;19452:34;;;56426:24:0;;19293:19:1;;56426:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56426:24:0;;-1:-1:-1;;56426:24:0;;;-1:-1:-1;;;;;;;56465:20:0;;56461:103;;56518:1;56522:29;56502:50;;;;;;;56461:103;56584:6;-1:-1:-1;56592:20:0;;-1:-1:-1;54952:1669:0;;;;;;;;:::o;53949:389::-;54063:7;;-1:-1:-1;;;;;54109:125:0;;54063:7;54261:25;54277:3;54262:18;;;54284:2;54261:25;:::i;:::-;54245:42;;54305:25;54316:4;54322:1;54325;54328;54305:10;:25::i;:::-;54298:32;;;;;;53949:389;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:1:o;1211:180::-;1270:6;1323:2;1311:9;1302:7;1298:23;1294:32;1291:52;;;1339:1;1336;1329:12;1291:52;-1:-1:-1;1362:23:1;;1211:180;-1:-1:-1;1211:180:1:o;1396:258::-;1468:1;1478:113;1492:6;1489:1;1486:13;1478:113;;;1568:11;;;1562:18;1549:11;;;1542:39;1514:2;1507:10;1478:113;;;1609:6;1606:1;1603:13;1600:48;;;-1:-1:-1;;1644:1:1;1626:16;;1619:27;1396:258::o;1659:::-;1701:3;1739:5;1733:12;1766:6;1761:3;1754:19;1782:63;1838:6;1831:4;1826:3;1822:14;1815:4;1808:5;1804:16;1782:63;:::i;:::-;1899:2;1878:15;-1:-1:-1;;1874:29:1;1865:39;;;;1906:4;1861:50;;1659:258;-1:-1:-1;;1659:258:1:o;1922:220::-;2071:2;2060:9;2053:21;2034:4;2091:45;2132:2;2121:9;2117:18;2109:6;2091:45;:::i;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;-1:-1:-1;;;;;2623:2:1;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;-1:-1:-1;;;;;3327:6:1;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:316::-;5168:6;5176;5184;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;-1:-1:-1;;5276:23:1;;;5346:2;5331:18;;5318:32;;-1:-1:-1;5397:2:1;5382:18;;;5369:32;;5091:316;-1:-1:-1;5091:316:1:o;5412:457::-;5510:6;5518;5571:2;5559:9;5550:7;5546:23;5542:32;5539:52;;;5587:1;5584;5577:12;5539:52;5623:9;5610:23;5600:33;;5684:2;5673:9;5669:18;5656:32;-1:-1:-1;;;;;5703:6:1;5700:30;5697:50;;;5743:1;5740;5733:12;5697:50;5766:22;;5822:2;5804:16;;;5800:25;5797:45;;;5838:1;5835;5828:12;5797:45;5861:2;5851:12;;;5412:457;;;;;:::o;5874:254::-;5939:6;5947;6000:2;5988:9;5979:7;5975:23;5971:32;5968:52;;;6016:1;6013;6006:12;5968:52;6039:29;6058:9;6039:29;:::i;:::-;6029:39;;6087:35;6118:2;6107:9;6103:18;6087:35;:::i;:::-;6077:45;;5874:254;;;;;:::o;6133:667::-;6228:6;6236;6244;6252;6305:3;6293:9;6284:7;6280:23;6276:33;6273:53;;;6322:1;6319;6312:12;6273:53;6345:29;6364:9;6345:29;:::i;:::-;6335:39;;6393:38;6427:2;6416:9;6412:18;6393:38;:::i;:::-;6383:48;;6478:2;6467:9;6463:18;6450:32;6440:42;;6533:2;6522:9;6518:18;6505:32;-1:-1:-1;;;;;6552:6:1;6549:30;6546:50;;;6592:1;6589;6582:12;6546:50;6615:22;;6668:4;6660:13;;6656:27;-1:-1:-1;6646:55:1;;6697:1;6694;6687:12;6646:55;6720:74;6786:7;6781:2;6768:16;6763:2;6759;6755:11;6720:74;:::i;:::-;6710:84;;;6133:667;;;;;;;:::o;6805:248::-;6873:6;6881;6934:2;6922:9;6913:7;6909:23;6905:32;6902:52;;;6950:1;6947;6940:12;6902:52;-1:-1:-1;;6973:23:1;;;7043:2;7028:18;;;7015:32;;-1:-1:-1;6805:248:1:o;7058:260::-;7126:6;7134;7187:2;7175:9;7166:7;7162:23;7158:32;7155:52;;;7203:1;7200;7193:12;7155:52;7226:29;7245:9;7226:29;:::i;:::-;7216:39;;7274:38;7308:2;7297:9;7293:18;7274:38;:::i;7323:254::-;7391:6;7399;7452:2;7440:9;7431:7;7427:23;7423:32;7420:52;;;7468:1;7465;7458:12;7420:52;7504:9;7491:23;7481:33;;7533:38;7567:2;7556:9;7552:18;7533:38;:::i;7582:356::-;7784:2;7766:21;;;7803:18;;;7796:30;7862:34;7857:2;7842:18;;7835:62;7929:2;7914:18;;7582:356::o;7943:380::-;8022:1;8018:12;;;;8065;;;8086:61;;8140:4;8132:6;8128:17;8118:27;;8086:61;8193:2;8185:6;8182:14;8162:18;8159:38;8156:161;;8239:10;8234:3;8230:20;8227:1;8220:31;8274:4;8271:1;8264:15;8302:4;8299:1;8292:15;8156:161;;7943:380;;;:::o;8688:127::-;8749:10;8744:3;8740:20;8737:1;8730:31;8780:4;8777:1;8770:15;8804:4;8801:1;8794:15;8820:168;8860:7;8926:1;8922;8918:6;8914:14;8911:1;8908:21;8903:1;8896:9;8889:17;8885:45;8882:71;;;8933:18;;:::i;:::-;-1:-1:-1;8973:9:1;;8820:168::o;8993:127::-;9054:10;9049:3;9045:20;9042:1;9035:31;9085:4;9082:1;9075:15;9109:4;9106:1;9099:15;9125:120;9165:1;9191;9181:35;;9196:18;;:::i;:::-;-1:-1:-1;9230:9:1;;9125:120::o;9460:127::-;9521:10;9516:3;9512:20;9509:1;9502:31;9552:4;9549:1;9542:15;9576:4;9573:1;9566:15;9592:135;9631:3;9652:17;;;9649:43;;9672:18;;:::i;:::-;-1:-1:-1;9719:1:1;9708:13;;9592:135::o;10084:128::-;10124:3;10155:1;10151:6;10148:1;10145:13;10142:39;;;10161:18;;:::i;:::-;-1:-1:-1;10197:9:1;;10084:128::o;11278:356::-;11480:2;11462:21;;;11499:18;;;11492:30;11558:34;11553:2;11538:18;;11531:62;11625:2;11610:18;;11278:356::o;11639:349::-;11841:2;11823:21;;;11880:2;11860:18;;;11853:30;11919:27;11914:2;11899:18;;11892:55;11979:2;11964:18;;11639:349::o;13236:1527::-;13460:3;13498:6;13492:13;13524:4;13537:51;13581:6;13576:3;13571:2;13563:6;13559:15;13537:51;:::i;:::-;13651:13;;13610:16;;;;13673:55;13651:13;13610:16;13695:15;;;13673:55;:::i;:::-;13817:13;;13750:20;;;13790:1;;13877;13899:18;;;;13952;;;;13979:93;;14057:4;14047:8;14043:19;14031:31;;13979:93;14120:2;14110:8;14107:16;14087:18;14084:40;14081:167;;-1:-1:-1;;;14147:33:1;;14203:4;14200:1;14193:15;14233:4;14154:3;14221:17;14081:167;14264:18;14291:110;;;;14415:1;14410:328;;;;14257:481;;14291:110;-1:-1:-1;;14326:24:1;;14312:39;;14371:20;;;;-1:-1:-1;14291:110:1;;14410:328;13183:1;13176:14;;;13220:4;13207:18;;14505:1;14519:169;14533:8;14530:1;14527:15;14519:169;;;14615:14;;14600:13;;;14593:37;14658:16;;;;14550:10;;14519:169;;;14523:3;;14719:8;14712:5;14708:20;14701:27;;14257:481;-1:-1:-1;14754:3:1;;13236:1527;-1:-1:-1;;;;;;;;;;;13236:1527:1:o;15175:521::-;15252:4;15258:6;15318:11;15305:25;15412:2;15408:7;15397:8;15381:14;15377:29;15373:43;15353:18;15349:68;15339:96;;15431:1;15428;15421:12;15339:96;15458:33;;15510:20;;;-1:-1:-1;;;;;;15542:30:1;;15539:50;;;15585:1;15582;15575:12;15539:50;15618:4;15606:17;;-1:-1:-1;15649:14:1;15645:27;;;15635:38;;15632:58;;;15686:1;15683;15676:12;15701:125;15741:4;15769:1;15766;15763:8;15760:34;;;15774:18;;:::i;:::-;-1:-1:-1;15811:9:1;;15701:125::o;15831:489::-;-1:-1:-1;;;;;16100:15:1;;;16082:34;;16152:15;;16147:2;16132:18;;16125:43;16199:2;16184:18;;16177:34;;;16247:3;16242:2;16227:18;;16220:31;;;16025:4;;16268:46;;16294:19;;16286:6;16268:46;:::i;:::-;16260:54;15831:489;-1:-1:-1;;;;;;15831:489:1:o;16325:249::-;16394:6;16447:2;16435:9;16426:7;16422:23;16418:32;16415:52;;;16463:1;16460;16453:12;16415:52;16495:9;16489:16;16514:30;16538:5;16514:30;:::i;16579:112::-;16611:1;16637;16627:35;;16642:18;;:::i;:::-;-1:-1:-1;16676:9:1;;16579:112::o;17046:127::-;17107:10;17102:3;17098:20;17095:1;17088:31;17138:4;17135:1;17128:15;17162:4;17159:1;17152:15

Swarm Source

ipfs://64ebedaec41ce16701535ab845260ab0c5bb7094738cc09df893d0f259568957
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.