ETH Price: $3,389.08 (-1.53%)
Gas: 2 Gwei

Token

Meme Cats (MEME)
 

Overview

Max Total Supply

2,500 MEME

Holders

885

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
18 MEME
0x47c2ac06520722aaa3e32d99ec6a2352b48b1b8a
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:
MemeCats

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/MemeCats.sol


// File: contracts/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
// File: contracts/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: contracts/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;


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

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

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


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

    // Dev Fee
    uint devFee;

    // 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();
        devFee = 10;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @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 See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function setfee(uint fee) public {
        devFee = fee;
    }

    /**
     * @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: contracts/Meme Cats.sol



pragma solidity ^0.8.7;

contract MemeCats is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public maxPerTx = 10;
    uint256 public maxSupply = 4444;
    uint256 public freeMintMax = 444; // Free supply
    uint256 public price = 0.004 ether;
    uint256 public maxFreePerWallet = 3; 

    string private baseURI = "https://memecats.mypinata.cloud/ipfs/QmQkN3J8mwwdBKAqLwMp1NQig6sxpDp22ydZjU8TMkeceT/";
    string public notRevealedUri = "https://memecats.mypinata.cloud/ipfs/QmYqbLeJiJFiHtoy9KgCa8tjX77CvzUUThFfksPiXAY9en/hidden.json";
    string public constant baseExtension = ".json";

    mapping(address => uint256) private _mintedFreeAmount; 

    bool public paused = true;
    bool public revealed = false;
    error freeMintIsOver();

    address devWallet = 0xe9B8948DAF904e3C8B9eD16a8F1b5449485A9495;
    uint _devFee = 10;

// Feel free to sweep the floor, since you're here already xD 

    constructor() ERC721A("Meme Cats", "MEME") {}

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < freeMintMax + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(!paused, "Contract Paused.");
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    } 

    function teamMint(uint256 _number) external onlyOwner {
        require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply");
        _safeMint(_msgSender(), _number);
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }

    function setMaxPaidPerTx(uint256 _max) public onlyOwner {
        maxPerTx = _max;
    }

    function setMaxSupply(uint256 _max) public onlyOwner {
        maxSupply = _max;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        freeMintMax = amount;
    } 

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    } 

    function reveal() public onlyOwner {
        revealed = true;
    }  

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

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");

        _withdraw(_msgSender(), balance * (100 - devFee) / 100);
        _withdraw(devWallet, balance * devFee / 100);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

        if(revealed == false) 
        {
            return notRevealedUri;
        }

        string memory _tokenURI = super.tokenURI(tokenId);
        return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"freeMintIsOver","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805561115c600b556101bc600c55660e35fa931a0000600d556003600e5561010060405260546080818152906200241e60a03980516200004a91600f916020909101906200018a565b506040518060800160405280605f8152602001620023bf605f913980516200007b916010916020909101906200018a565b50601280546001600160b01b03191675e9b8948daf904e3c8b9ed16a8f1b5449485a94950001179055600a601355348015620000b657600080fd5b5060408051808201825260098152684d656d65204361747360b81b6020808301918252835180850190945260048452634d454d4560e01b90840152815191929162000104916002916200018a565b5080516200011a9060039060208401906200018a565b5060016000555050600a600455620001323362000138565b6200026d565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001989062000230565b90600052602060002090601f016020900481019282620001bc576000855562000207565b82601f10620001d757805160ff191683800117855562000207565b8280016001018555821562000207579182015b8281111562000207578251825591602001919060010190620001ea565b506200021592915062000219565b5090565b5b808211156200021557600081556001016200021a565b600181811c908216806200024557607f821691505b602082108114156200026757634e487b7160e01b600052602260045260246000fd5b50919050565b612142806200027d6000396000f3fe60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea2646970667358221220c9933b99f5ee31cece45f2863143e90f1e3cb00f6ce16572b2c72d2d66a2169164736f6c6343000807003368747470733a2f2f6d656d65636174732e6d7970696e6174612e636c6f75642f697066732f516d5971624c654a694a466948746f79394b67436138746a58373743767a5555546846666b73506958415939656e2f68696464656e2e6a736f6e68747470733a2f2f6d656d65636174732e6d7970696e6174612e636c6f75642f697066732f516d516b4e334a386d777764424b41714c774d70314e516967367378704470323279645a6a5538544d6b656365542f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063742a4c9b1161012e578063a7027357116100ab578063d5abeb011161006f578063d5abeb0114610663578063e985e9c514610679578063f2c4ce1e146106c2578063f2fde38b146106e2578063f968adbe1461070257600080fd5b8063a7027357146105bc578063b88d4fde146105d2578063bedb86fb146105f2578063c668286214610612578063c87b56dd1461064357600080fd5b806395d89b41116100f257806395d89b4114610549578063a035b1fe1461055e578063a0712d6814610574578063a22cb46514610587578063a475b5dd146105a757600080fd5b8063742a4c9b146104d6578063853828b6146104f65780638da5cb5b1461050b57806391b7f5ed1461052957806392910eec146104d657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104415780636f8b44b01461046157806370a0823114610481578063715018a6146104a157806373fee090146104b657600080fd5b806342842e0e146103b25780634a91d1b8146103d257806351830227146103e857806355f804b3146104075780635c975abb1461042757600080fd5b8063095ea7b311610203578063095ea7b31461030657806318160ddd146103265780631e7269c51461035257806323b872dd146103725780632fbba1151461039257600080fd5b806301ffc9a71461024057806306fdde031461027557806307d3636714610297578063081812fc146102b9578063081c8c44146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e01565b610718565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190611f5e565b3480156102a357600080fd5b506102b76102b2366004611e84565b6107fc565b005b3480156102c557600080fd5b506102d96102d4366004611e84565b610834565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061028a610878565b34801561031257600080fd5b506102b7610321366004611dbc565b610906565b34801561033257600080fd5b50610344600154600054036000190190565b60405190815260200161026c565b34801561035e57600080fd5b5061034461036d366004611c8c565b610994565b34801561037e57600080fd5b506102b761038d366004611cda565b6109c3565b34801561039e57600080fd5b506102b76103ad366004611e84565b6109ce565b3480156103be57600080fd5b506102b76103cd366004611cda565b610a72565b3480156103de57600080fd5b50610344600c5481565b3480156103f457600080fd5b5060125461026090610100900460ff1681565b34801561041357600080fd5b506102b7610422366004611e3b565b610a8d565b34801561043357600080fd5b506012546102609060ff1681565b34801561044d57600080fd5b506102d961045c366004611e84565b610ace565b34801561046d57600080fd5b506102b761047c366004611e84565b610ae0565b34801561048d57600080fd5b5061034461049c366004611c8c565b610b0f565b3480156104ad57600080fd5b506102b7610b5e565b3480156104c257600080fd5b506102b76104d1366004611e84565b600455565b3480156104e257600080fd5b506102b76104f1366004611e84565b610b94565b34801561050257600080fd5b506102b7610bc3565b34801561051757600080fd5b506009546001600160a01b03166102d9565b34801561053557600080fd5b506102b7610544366004611e84565b610c86565b34801561055557600080fd5b5061028a610cb5565b34801561056a57600080fd5b50610344600d5481565b6102b7610582366004611e84565b610cc4565b34801561059357600080fd5b506102b76105a2366004611d92565b610eb1565b3480156105b357600080fd5b506102b7610f47565b3480156105c857600080fd5b50610344600e5481565b3480156105de57600080fd5b506102b76105ed366004611d16565b610f82565b3480156105fe57600080fd5b506102b761060d366004611de6565b610fd3565b34801561061e57600080fd5b5061028a60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561064f57600080fd5b5061028a61065e366004611e84565b611010565b34801561066f57600080fd5b50610344600b5481565b34801561068557600080fd5b50610260610694366004611ca7565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102b76106dd366004611e3b565b611173565b3480156106ee57600080fd5b506102b76106fd366004611c8c565b6111b0565b34801561070e57600080fd5b50610344600a5481565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461077990612034565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612034565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6009546001600160a01b0316331461082f5760405162461bcd60e51b815260040161082690611f71565b60405180910390fd5b600a55565b600061083f82611248565b61085c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461088590612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612034565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505081565b600061091182610ace565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061096657506109648133610694565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611281565b505050565b6001600160a01b038116600090815260066020526040812054600160401b900467ffffffffffffffff16610764565b61098f8383836112dd565b6009546001600160a01b031633146109f85760405162461bcd60e51b815260040161082690611f71565b600b5481610a0d600154600054036000190190565b610a179190611fa6565b1115610a655760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c7900006044820152606401610826565b610a6f33826114cd565b50565b61098f83838360405180602001604052806000815250610f82565b6009546001600160a01b03163314610ab75760405162461bcd60e51b815260040161082690611f71565b8051610aca90600f906020840190611b51565b5050565b6000610ad9826114e7565b5192915050565b6009546001600160a01b03163314610b0a5760405162461bcd60e51b815260040161082690611f71565b600b55565b60006001600160a01b038216610b38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b03163314610b885760405162461bcd60e51b815260040161082690611f71565b610b926000611610565b565b6009546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161082690611f71565b600c55565b6009546001600160a01b03163314610bed5760405162461bcd60e51b815260040161082690611f71565b4780610c315760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610826565b610c5f3360646004546064610c469190611ff1565b610c509085611fd2565b610c5a9190611fbe565b611662565b601254600454610a6f916201000090046001600160a01b031690606490610c509085611fd2565b6009546001600160a01b03163314610cb05760405162461bcd60e51b815260040161082690611f71565b600d55565b60606003805461077990612034565b600d54600c54600090610cd8906001611fa6565b83610cea600154600054036000190190565b610cf49190611fa6565b108015610d1d5750600e5433600090815260116020526040902054610d1a908590611fa6565b11155b90508015610d2a57600091505b60125460ff1615610d705760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b6044820152606401610826565b610d7a8284611fd2565b341015610dc95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610826565b600b54610dd7906001611fa6565b83610de9600154600054036000190190565b610df39190611fa6565b10610e2a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610826565b600a54610e38906001611fa6565b8310610e7c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610826565b8015610ea7573360009081526011602052604081208054859290610ea1908490611fa6565b90915550505b61098f33846114cd565b6001600160a01b038216331415610edb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610f715760405162461bcd60e51b815260040161082690611f71565b6012805461ff001916610100179055565b610f8d8484846112dd565b6001600160a01b0383163b15158015610faf5750610fad84848484611705565b155b15610fcd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161082690611f71565b6012805460ff1916911515919091179055565b606061101b82611248565b61107f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610826565b601254610100900460ff16611120576010805461109b90612034565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612034565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b50505050509050919050565b600061112b836117fd565b9050600081511161114b576040518060200160405280600081525061116c565b8060405160200161115c9190611ef8565b6040516020818303038152906040525b9392505050565b6009546001600160a01b0316331461119d5760405162461bcd60e51b815260040161082690611f71565b8051610aca906010906020840190611b51565b6009546001600160a01b031633146111da5760405162461bcd60e51b815260040161082690611f71565b6001600160a01b03811661123f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610826565b610a6f81611610565b60008160011115801561125c575060005482105b8015610764575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e8826114e7565b9050836001600160a01b031681600001516001600160a01b03161461131f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061133d575061133d8533610694565b8061135857503361134d84610834565b6001600160a01b0316145b90508061137857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661139f57604051633a954ecd60e21b815260040160405180910390fd5b6113ab60008487611281565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca82826040518060200160405280600081525061186b565b60408051606081018252600080825260208201819052918101919091528180600111158015611517575060005481105b156115f757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115f55780516001600160a01b03161561158b579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115f0579392505050565b61158b565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116af576040519150601f19603f3d011682016040523d82523d6000602084013e6116b4565b606091505b505090508061098f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610826565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061173a903390899088908890600401611f21565b602060405180830381600087803b15801561175457600080fd5b505af1925050508015611784575060408051601f3d908101601f1916820190925261178191810190611e1e565b60015b6117df573d8080156117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b5080516117d7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061180882611248565b61182557604051630a14c4b560e41b815260040160405180910390fd5b600061182f611878565b9050805160001415611850576040518060200160405280600081525061116c565b8061185a84611887565b60405160200161115c929190611ec9565b61098f8383836001611985565b6060600f805461077990612034565b6060816118ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d557806118bf8161206f565b91506118ce9050600a83611fbe565b91506118af565b60008167ffffffffffffffff8111156118f0576118f06120e0565b6040519080825280601f01601f19166020018201604052801561191a576020820181803683370190505b5090505b84156117f55761192f600183611ff1565b915061193c600a8661208a565b611947906030611fa6565b60f81b81838151811061195c5761195c6120ca565b60200101906001600160f81b031916908160001a90535061197e600a86611fbe565b945061191e565b6000546001600160a01b0385166119ae57604051622e076360e81b815260040160405180910390fd5b836119cc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a7957506001600160a01b0387163b15155b15611b02575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aca6000888480600101955088611705565b611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a7f578260005414611afd57600080fd5b611b48565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b03575b506000556114c6565b828054611b5d90612034565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff80841115611c0557611c056120e0565b604051601f8501601f19908116603f01168101908282118183101715611c2d57611c2d6120e0565b81604052809350858152868686011115611c4657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7757600080fd5b919050565b80358015158114611c7757600080fd5b600060208284031215611c9e57600080fd5b61116c82611c60565b60008060408385031215611cba57600080fd5b611cc383611c60565b9150611cd160208401611c60565b90509250929050565b600080600060608486031215611cef57600080fd5b611cf884611c60565b9250611d0660208501611c60565b9150604084013590509250925092565b60008060008060808587031215611d2c57600080fd5b611d3585611c60565b9350611d4360208601611c60565b925060408501359150606085013567ffffffffffffffff811115611d6657600080fd5b8501601f81018713611d7757600080fd5b611d8687823560208401611bea565b91505092959194509250565b60008060408385031215611da557600080fd5b611dae83611c60565b9150611cd160208401611c7c565b60008060408385031215611dcf57600080fd5b611dd883611c60565b946020939093013593505050565b600060208284031215611df857600080fd5b61116c82611c7c565b600060208284031215611e1357600080fd5b813561116c816120f6565b600060208284031215611e3057600080fd5b815161116c816120f6565b600060208284031215611e4d57600080fd5b813567ffffffffffffffff811115611e6457600080fd5b8201601f81018413611e7557600080fd5b6117f584823560208401611bea565b600060208284031215611e9657600080fd5b5035919050565b60008151808452611eb5816020860160208601612008565b601f01601f19169290920160200192915050565b60008351611edb818460208801612008565b835190830190611eef818360208801612008565b01949350505050565b60008251611f0a818460208701612008565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5490830184611e9d565b9695505050505050565b60208152600061116c6020830184611e9d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611fb957611fb961209e565b500190565b600082611fcd57611fcd6120b4565b500490565b6000816000190483118215151615611fec57611fec61209e565b500290565b6000828210156120035761200361209e565b500390565b60005b8381101561202357818101518382015260200161200b565b83811115610fcd5750506000910152565b600181811c9082168061204857607f821691505b6020821081141561206957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120835761208361209e565b5060010190565b600082612099576120996120b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a6f57600080fdfea2646970667358221220c9933b99f5ee31cece45f2863143e90f1e3cb00f6ce16572b2c72d2d66a2169164736f6c63430008070033

Deployed Bytecode Sourcemap

52969:4069:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34892:305;;;;;;;;;;-1:-1:-1;34892:305:0;;;;;:::i;:::-;;:::i;:::-;;;6561:14:1;;6554:22;6536:41;;6524:2;6509:18;34892:305:0;;;;;;;;38005:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54965:90::-;;;;;;;;;;-1:-1:-1;54965:90:0;;;;;:::i;:::-;;:::i;:::-;;39508:204;;;;;;;;;;-1:-1:-1;39508:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5859:32:1;;;5841:51;;5829:2;5814:18;39508:204:0;5695:203:1;53412:128:0;;;;;;;;;;;;;:::i;39071:371::-;;;;;;;;;;-1:-1:-1;39071:371:0;;;;;:::i;:::-;;:::i;34141:303::-;;;;;;;;;;;;55571:1;34395:12;34185:7;34379:13;:28;-1:-1:-1;;34379:46:0;;34141:303;;;;10588:25:1;;;10576:2;10561:18;34141:303:0;10442:177:1;55588:109:0;;;;;;;;;;-1:-1:-1;55588:109:0;;;;;:::i;:::-;;:::i;40373:170::-;;;;;;;;;;-1:-1:-1;40373:170:0;;;;;:::i;:::-;;:::i;54662:195::-;;;;;;;;;;-1:-1:-1;54662:195:0;;;;;:::i;:::-;;:::i;40614:185::-;;;;;;;;;;-1:-1:-1;40614:185:0;;;;;:::i;:::-;;:::i;53154:32::-;;;;;;;;;;;;;;;;53697:28;;;;;;;;;;-1:-1:-1;53697:28:0;;;;;;;;;;;56488:100;;;;;;;;;;-1:-1:-1;56488:100:0;;;;;:::i;:::-;;:::i;53665:25::-;;;;;;;;;;-1:-1:-1;53665:25:0;;;;;;;;37813:125;;;;;;;;;;-1:-1:-1;37813:125:0;;;;;:::i;:::-;;:::i;55063:88::-;;;;;;;;;;-1:-1:-1;55063:88:0;;;;;:::i;:::-;;:::i;35261:206::-;;;;;;;;;;-1:-1:-1;35261:206:0;;;;;:::i;:::-;;:::i;11702:103::-;;;;;;;;;;;;;:::i;41429:64::-;;;;;;;;;;-1:-1:-1;41429:64:0;;;;;:::i;:::-;41473:6;:12;41429:64;54865:92;;;;;;;;;;-1:-1:-1;54865:92:0;;;;;:::i;:::-;;:::i;55901:275::-;;;;;;;;;;;;;:::i;11051:87::-;;;;;;;;;;-1:-1:-1;11124:6:0;;-1:-1:-1;;;;;11124:6:0;11051:87;;56184:86;;;;;;;;;;-1:-1:-1;56184:86:0;;;;;:::i;:::-;;:::i;38174:104::-;;;;;;;;;;;;;:::i;53208:34::-;;;;;;;;;;;;;;;;53977:676;;;;;;:::i;:::-;;:::i;39784:287::-;;;;;;;;;;-1:-1:-1;39784:287:0;;;;;:::i;:::-;;:::i;55400:69::-;;;;;;;;;;;;;:::i;53249:35::-;;;;;;;;;;;;;;;;40870:369;;;;;;;;;;-1:-1:-1;40870:369:0;;;;;:::i;:::-;;:::i;56278:84::-;;;;;;;;;;-1:-1:-1;56278:84:0;;;;;:::i;:::-;;:::i;53547:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53547:46:0;;;;;56596:439;;;;;;;;;;-1:-1:-1;56596:439:0;;;;;:::i;:::-;;:::i;53116:31::-;;;;;;;;;;;;;;;;40142:164;;;;;;;;;;-1:-1:-1;40142:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40263:25:0;;;40239:4;40263:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40142:164;55265:126;;;;;;;;;;-1:-1:-1;55265:126:0;;;;;:::i;:::-;;:::i;11960:201::-;;;;;;;;;;-1:-1:-1;11960:201:0;;;;;:::i;:::-;;:::i;53081:28::-;;;;;;;;;;;;;;;;34892:305;34994:4;-1:-1:-1;;;;;;35031:40:0;;-1:-1:-1;;;35031:40:0;;:105;;-1:-1:-1;;;;;;;35088:48:0;;-1:-1:-1;;;35088:48:0;35031:105;:158;;;-1:-1:-1;;;;;;;;;;23821:40:0;;;35153:36;35011:178;34892:305;-1:-1:-1;;34892:305:0:o;38005:100::-;38059:13;38092:5;38085:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38005:100;:::o;54965:90::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;;;;;;;;;55032:8:::1;:15:::0;54965:90::o;39508:204::-;39576:7;39601:16;39609:7;39601;:16::i;:::-;39596:64;;39626:34;;-1:-1:-1;;;39626:34:0;;;;;;;;;;;39596:64;-1:-1:-1;39680:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39680:24:0;;39508:204::o;53412:128::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39071:371::-;39144:13;39160:24;39176:7;39160:15;:24::i;:::-;39144:40;;39205:5;-1:-1:-1;;;;;39199:11:0;:2;-1:-1:-1;;;;;39199:11:0;;39195:48;;;39219:24;;-1:-1:-1;;;39219:24:0;;;;;;;;;;;39195:48;9878:10;-1:-1:-1;;;;;39260:21:0;;;;;;:63;;-1:-1:-1;39286:37:0;39303:5;9878:10;40142:164;:::i;39286:37::-;39285:38;39260:63;39256:138;;;39347:35;;-1:-1:-1;;;39347:35:0;;;;;;;;;;;39256:138;39406:28;39415:2;39419:7;39428:5;39406:8;:28::i;:::-;39133:309;39071:371;;:::o;55588:109::-;-1:-1:-1;;;;;35645:19:0;;55641:7;35645:19;;;:12;:19;;;;;:32;-1:-1:-1;;;35645:32:0;;;;55668:21;35549:137;40373:170;40507:28;40517:4;40523:2;40527:7;40507:9;:28::i;54662:195::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;54762:9:::1;;54751:7;54735:13;55571:1:::0;34395:12;34185:7;34379:13;:28;-1:-1:-1;;34379:46:0;;34141:303;54735:13:::1;:23;;;;:::i;:::-;:36;;54727:79;;;::::0;-1:-1:-1;;;54727:79:0;;7756:2:1;54727:79:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:32;7814:18;;;7807:60;7884:18;;54727:79:0::1;7554:354:1::0;54727:79:0::1;54817:32;9878:10:::0;54841:7:::1;54817:9;:32::i;:::-;54662:195:::0;:::o;40614:185::-;40752:39;40769:4;40775:2;40779:7;40752:39;;;;;;;;;;;;:16;:39::i;56488:100::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;56562:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56488:100:::0;:::o;37813:125::-;37877:7;37904:21;37917:7;37904:12;:21::i;:::-;:26;;37813:125;-1:-1:-1;;37813:125:0:o;55063:88::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;55127:9:::1;:16:::0;55063:88::o;35261:206::-;35325:7;-1:-1:-1;;;;;35349:19:0;;35345:60;;35377:28;;-1:-1:-1;;;35377:28:0;;;;;;;;;;;35345:60;-1:-1:-1;;;;;;35431:19:0;;;;;:12;:19;;;;;:27;;;;35261:206::o;11702:103::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;11767:30:::1;11794:1;11767:18;:30::i;:::-;11702:103::o:0;54865:92::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;54931:11:::1;:18:::0;54865:92::o;55901:275::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;55970:21:::1;56010:11:::0;56002:43:::1;;;::::0;-1:-1:-1;;;56002:43:0;;8460:2:1;56002:43:0::1;::::0;::::1;8442:21:1::0;8499:2;8479:18;;;8472:30;-1:-1:-1;;;8518:18:1;;;8511:49;8577:18;;56002:43:0::1;8258:343:1::0;56002:43:0::1;56058:55;9878:10:::0;56109:3:::1;56099:6;;56093:3;:12;;;;:::i;:::-;56082:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;56058:9;:55::i;:::-;56134:9;::::0;56155:6:::1;::::0;56124:44:::1;::::0;56134:9;;::::1;-1:-1:-1::0;;;;;56134:9:0::1;::::0;56164:3:::1;::::0;56145:16:::1;::::0;:7;:16:::1;:::i;56184:86::-:0;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;56248:5:::1;:14:::0;56184:86::o;38174:104::-;38230:13;38263:7;38256:14;;;;;:::i;53977:676::-;54049:5;;54105:11;;54034:12;;54105:15;;54119:1;54105:15;:::i;:::-;54097:5;54081:13;55571:1;34395:12;34185:7;34379:13;:28;-1:-1:-1;;34379:46:0;;34141:303;54081:13;:21;;;;:::i;:::-;:39;54080:117;;;;-1:-1:-1;54180:16:0;;54157:10;54139:29;;;;:17;:29;;;;;;:37;;54171:5;;54139:37;:::i;:::-;:57;;54080:117;54065:133;;54215:6;54211:47;;;54245:1;54238:8;;54211:47;54279:6;;;;54278:7;54270:36;;;;-1:-1:-1;;;54270:36:0;;8115:2:1;54270:36:0;;;8097:21:1;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:46;8229:18;;54270:36:0;7913:340:1;54270:36:0;54338:12;54346:4;54338:5;:12;:::i;:::-;54325:9;:25;;54317:67;;;;-1:-1:-1;;;54317:67:0;;9938:2:1;54317:67:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;54317:67:0;9736:353:1;54317:67:0;54427:9;;:13;;54439:1;54427:13;:::i;:::-;54419:5;54403:13;55571:1;34395:12;34185:7;34379:13;:28;-1:-1:-1;;34379:46:0;;34141:303;54403:13;:21;;;;:::i;:::-;:37;54395:57;;;;-1:-1:-1;;;54395:57:0;;7014:2:1;54395:57:0;;;6996:21:1;7053:1;7033:18;;;7026:29;-1:-1:-1;;;7071:18:1;;;7064:37;7118:18;;54395:57:0;6812:330:1;54395:57:0;54479:8;;:12;;54490:1;54479:12;:::i;:::-;54471:5;:20;54463:52;;;;-1:-1:-1;;;54463:52:0;;10296:2:1;54463:52:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:49;10413:18;;54463:52:0;10094:343:1;54463:52:0;54532:6;54528:77;;;54573:10;54555:29;;;;:17;:29;;;;;:38;;54588:5;;54555:29;:38;;54588:5;;54555:38;:::i;:::-;;;;-1:-1:-1;;54528:77:0;54617:28;54627:10;54639:5;54617:9;:28::i;39784:287::-;-1:-1:-1;;;;;39883:24:0;;9878:10;39883:24;39879:54;;;39916:17;;-1:-1:-1;;;39916:17:0;;;;;;;;;;;39879:54;9878:10;39946:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39946:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39946:53:0;;;;;;;;;;40015:48;;6536:41:1;;;39946:42:0;;9878:10;40015:48;;6509:18:1;40015:48:0;;;;;;;39784:287;;:::o;55400:69::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;55446:8:::1;:15:::0;;-1:-1:-1;;55446:15:0::1;;;::::0;;55400:69::o;40870:369::-;41037:28;41047:4;41053:2;41057:7;41037:9;:28::i;:::-;-1:-1:-1;;;;;41080:13:0;;14025:19;:23;;41080:76;;;;;41100:56;41131:4;41137:2;41141:7;41150:5;41100:30;:56::i;:::-;41099:57;41080:76;41076:156;;;41180:40;;-1:-1:-1;;;41180:40:0;;;;;;;;;;;41076:156;40870:369;;;;:::o;56278:84::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;56339:6:::1;:15:::0;;-1:-1:-1;;56339:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56278:84::o;56596:439::-;56669:13;56708:16;56716:7;56708;:16::i;:::-;56700:76;;;;-1:-1:-1;;;56700:76:0;;9169:2:1;56700:76:0;;;9151:21:1;9208:2;9188:18;;;9181:30;9247:34;9227:18;;;9220:62;-1:-1:-1;;;9298:18:1;;;9291:45;9353:19;;56700:76:0;8967:411:1;56700:76:0;56792:8;;;;;;;56789:80;;56843:14;56836:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56596:439;;;:::o;56789:80::-;56881:23;56907;56922:7;56907:14;:23::i;:::-;56881:49;;56974:1;56954:9;56948:23;:27;:79;;;;;;;;;;;;;;;;;57002:9;56985:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;56948:79;56941:86;56596:439;-1:-1:-1;;;56596:439:0:o;55265:126::-;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;55351:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11960:201::-:0;11124:6;;-1:-1:-1;;;;;11124:6:0;9878:10;11271:23;11263:68;;;;-1:-1:-1;;;11263:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12049:22:0;::::1;12041:73;;;::::0;-1:-1:-1;;;12041:73:0;;7349:2:1;12041:73:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:36;7524:19;;12041:73:0::1;7147:402:1::0;12041:73:0::1;12125:28;12144:8;12125:18;:28::i;41748:187::-:0;41805:4;41848:7;55571:1;41829:26;;:53;;;;;41869:13;;41859:7;:23;41829:53;:98;;;;-1:-1:-1;;41900:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41900:27:0;;;;41899:28;;41748:187::o;49918:196::-;50033:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50033:29:0;-1:-1:-1;;;;;50033:29:0;;;;;;;;;50078:28;;50033:24;;50078:28;;;;;;;49918:196;;;:::o;44861:2130::-;44976:35;45014:21;45027:7;45014:12;:21::i;:::-;44976:59;;45074:4;-1:-1:-1;;;;;45052:26:0;:13;:18;;;-1:-1:-1;;;;;45052:26:0;;45048:67;;45087:28;;-1:-1:-1;;;45087:28:0;;;;;;;;;;;45048:67;45128:22;9878:10;-1:-1:-1;;;;;45154:20:0;;;;:73;;-1:-1:-1;45191:36:0;45208:4;9878:10;40142:164;:::i;45191:36::-;45154:126;;;-1:-1:-1;9878:10:0;45244:20;45256:7;45244:11;:20::i;:::-;-1:-1:-1;;;;;45244:36:0;;45154:126;45128:153;;45299:17;45294:66;;45325:35;;-1:-1:-1;;;45325:35:0;;;;;;;;;;;45294:66;-1:-1:-1;;;;;45375:16:0;;45371:52;;45400:23;;-1:-1:-1;;;45400:23:0;;;;;;;;;;;45371:52;45544:35;45561:1;45565:7;45574:4;45544:8;:35::i;:::-;-1:-1:-1;;;;;45875:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45875:31:0;;;;;;;-1:-1:-1;;45875:31:0;;;;;;;45921:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45921:29:0;;;;;;;;;;;46001:20;;;:11;:20;;;;;;46036:18;;-1:-1:-1;;;;;;46069:49:0;;;;-1:-1:-1;;;46102:15:0;46069:49;;;;;;;;;;46392:11;;46452:24;;;;;46495:13;;46001:20;;46452:24;;46495:13;46491:384;;46705:13;;46690:11;:28;46686:174;;46743:20;;46812:28;;;;46786:54;;-1:-1:-1;;;46786:54:0;-1:-1:-1;;;;;;46786:54:0;;;-1:-1:-1;;;;;46743:20:0;;46786:54;;;;46686:174;45850:1036;;;46922:7;46918:2;-1:-1:-1;;;;;46903:27:0;46912:4;-1:-1:-1;;;;;46903:27:0;;;;;;;;;;;46941:42;44965:2026;;44861:2130;;;:::o;41943:104::-;42012:27;42022:2;42026:8;42012:27;;;;;;;;;;;;:9;:27::i;36642:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36753:7:0;;55571:1;36802:23;;:47;;;;;36836:13;;36829:4;:20;36802:47;36798:886;;;36870:31;36904:17;;;:11;:17;;;;;;;;;36870:51;;;;;;;;;-1:-1:-1;;;;;36870:51:0;;;;-1:-1:-1;;;36870:51:0;;;;;;;;;;;-1:-1:-1;;;36870:51:0;;;;;;;;;;;;;;36940:729;;36990:14;;-1:-1:-1;;;;;36990:28:0;;36986:101;;37054:9;36642:1109;-1:-1:-1;;;36642:1109:0:o;36986:101::-;-1:-1:-1;;;37429:6:0;37474:17;;;;:11;:17;;;;;;;;;37462:29;;;;;;;;;-1:-1:-1;;;;;37462:29:0;;;;;-1:-1:-1;;;37462:29:0;;;;;;;;;;;-1:-1:-1;;;37462:29:0;;;;;;;;;;;;;37522:28;37518:109;;37590:9;36642:1109;-1:-1:-1;;;36642:1109:0:o;37518:109::-;37389:261;;;36851:833;36798:886;37712:31;;-1:-1:-1;;;37712:31:0;;;;;;;;;;;12321:191;12414:6;;;-1:-1:-1;;;;;12431:17:0;;;-1:-1:-1;;;;;;12431:17:0;;;;;;;12464:40;;12414:6;;;12431:17;12414:6;;12464:40;;12395:16;;12464:40;12384:128;12321:191;:::o;55705:188::-;55779:12;55797:8;-1:-1:-1;;;;;55797:13:0;55818:7;55797:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55778:52;;;55849:7;55841:44;;;;-1:-1:-1;;;55841:44:0;;9585:2:1;55841:44:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:26;9643:18;;;9636:54;9707:18;;55841:44:0;9383:348:1;50606:667:0;50790:72;;-1:-1:-1;;;50790:72:0;;50769:4;;-1:-1:-1;;;;;50790:36:0;;;;;:72;;9878:10;;50841:4;;50847:7;;50856:5;;50790:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50790:72:0;;;;;;;;-1:-1:-1;;50790:72:0;;;;;;;;;;;;:::i;:::-;;;50786:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51024:13:0;;51020:235;;51070:40;;-1:-1:-1;;;51070:40:0;;;;;;;;;;;51020:235;51213:6;51207:13;51198:6;51194:2;51190:15;51183:38;50786:480;-1:-1:-1;;;;;;50909:55:0;-1:-1:-1;;;50909:55:0;;-1:-1:-1;50786:480:0;50606:667;;;;;;:::o;38349:318::-;38422:13;38453:16;38461:7;38453;:16::i;:::-;38448:59;;38478:29;;-1:-1:-1;;;38478:29:0;;;;;;;;;;;38448:59;38520:21;38544:10;:8;:10::i;:::-;38520:34;;38578:7;38572:21;38597:1;38572:26;;:87;;;;;;;;;;;;;;;;;38625:7;38634:18;:7;:16;:18::i;:::-;38608:45;;;;;;;;;:::i;42410:163::-;42533:32;42539:2;42543:8;42553:5;42560:4;42533:5;:32::i;56370:106::-;56430:13;56461:7;56454:14;;;;;:::i;7382:723::-;7438:13;7659:10;7655:53;;-1:-1:-1;;7686:10:0;;;;;;;;;;;;-1:-1:-1;;;7686:10:0;;;;;7382:723::o;7655:53::-;7733:5;7718:12;7774:78;7781:9;;7774:78;;7807:8;;;;:::i;:::-;;-1:-1:-1;7830:10:0;;-1:-1:-1;7838:2:0;7830:10;;:::i;:::-;;;7774:78;;;7862:19;7894:6;7884:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7884:17:0;;7862:39;;7912:154;7919:10;;7912:154;;7946:11;7956:1;7946:11;;:::i;:::-;;-1:-1:-1;8015:10:0;8023:2;8015:5;:10;:::i;:::-;8002:24;;:2;:24;:::i;:::-;7989:39;;7972:6;7979;7972:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7972:56:0;;;;;;;;-1:-1:-1;8043:11:0;8052:2;8043:11;;:::i;:::-;;;7912:154;;42832:1775;42971:20;42994:13;-1:-1:-1;;;;;43022:16:0;;43018:48;;43047:19;;-1:-1:-1;;;43047:19:0;;;;;;;;;;;43018:48;43081:13;43077:44;;43103:18;;-1:-1:-1;;;43103:18:0;;;;;;;;;;;43077:44;-1:-1:-1;;;;;43472:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43531:49:0;;43472:44;;;;;;;;43531:49;;;-1:-1:-1;;;;;43472:44:0;;;;;;43531:49;;;;;;;;;;;;;;;;43597:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43647:66:0;;;;-1:-1:-1;;;43697:15:0;43647:66;;;;;;;;;;43597:25;43794:23;;;43838:4;:23;;;;-1:-1:-1;;;;;;43846:13:0;;14025:19;:23;;43846:15;43834:641;;;43882:314;43913:38;;43938:12;;-1:-1:-1;;;;;43913:38:0;;;43930:1;;43913:38;;43930:1;;43913:38;43979:69;44018:1;44022:2;44026:14;;;;;;44042:5;43979:30;:69::i;:::-;43974:174;;44084:40;;-1:-1:-1;;;44084:40:0;;;;;;;;;;;43974:174;44191:3;44175:12;:19;;43882:314;;44277:12;44260:13;;:29;44256:43;;44291:8;;;44256:43;43834:641;;;44340:120;44371:40;;44396:14;;;;;-1:-1:-1;;;;;44371:40:0;;;44388:1;;44371:40;;44388:1;;44371:40;44455:3;44439:12;:19;;44340:120;;43834:641;-1:-1:-1;44489:13:0;:28;44539:60;40870:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5037:443::-;5269:3;5307:6;5301:13;5323:53;5369:6;5364:3;5357:4;5349:6;5345:17;5323:53;:::i;:::-;-1:-1:-1;;;5398:16:1;;5423:22;;;-1:-1:-1;5472:1:1;5461:13;;5037:443;-1:-1:-1;5037:443:1:o;5903:488::-;-1:-1:-1;;;;;6172:15:1;;;6154:34;;6224:15;;6219:2;6204:18;;6197:43;6271:2;6256:18;;6249:34;;;6319:3;6314:2;6299:18;;6292:31;;;6097:4;;6340:45;;6365:19;;6357:6;6340:45;:::i;:::-;6332:53;5903:488;-1:-1:-1;;;;;;5903:488:1:o;6588:219::-;6737:2;6726:9;6719:21;6700:4;6757:44;6797:2;6786:9;6782:18;6774:6;6757:44;:::i;8606:356::-;8808:2;8790:21;;;8827:18;;;8820:30;8886:34;8881:2;8866:18;;8859:62;8953:2;8938:18;;8606:356::o;10624:128::-;10664:3;10695:1;10691:6;10688:1;10685:13;10682:39;;;10701:18;;:::i;:::-;-1:-1:-1;10737:9:1;;10624:128::o;10757:120::-;10797:1;10823;10813:35;;10828:18;;:::i;:::-;-1:-1:-1;10862:9:1;;10757:120::o;10882:168::-;10922:7;10988:1;10984;10980:6;10976:14;10973:1;10970:21;10965:1;10958:9;10951:17;10947:45;10944:71;;;10995:18;;:::i;:::-;-1:-1:-1;11035:9:1;;10882:168::o;11055:125::-;11095:4;11123:1;11120;11117:8;11114:34;;;11128:18;;:::i;:::-;-1:-1:-1;11165:9:1;;11055:125::o;11185:258::-;11257:1;11267:113;11281:6;11278:1;11275:13;11267:113;;;11357:11;;;11351:18;11338:11;;;11331:39;11303:2;11296:10;11267:113;;;11398:6;11395:1;11392:13;11389:48;;;-1:-1:-1;;11433:1:1;11415:16;;11408:27;11185:258::o;11448:380::-;11527:1;11523:12;;;;11570;;;11591:61;;11645:4;11637:6;11633:17;11623:27;;11591:61;11698:2;11690:6;11687:14;11667:18;11664:38;11661:161;;;11744:10;11739:3;11735:20;11732:1;11725:31;11779:4;11776:1;11769:15;11807:4;11804:1;11797:15;11661:161;;11448:380;;;:::o;11833:135::-;11872:3;-1:-1:-1;;11893:17:1;;11890:43;;;11913:18;;:::i;:::-;-1:-1:-1;11960:1:1;11949:13;;11833:135::o;11973:112::-;12005:1;12031;12021:35;;12036:18;;:::i;:::-;-1:-1:-1;12070:9:1;;11973:112::o;12090:127::-;12151:10;12146:3;12142:20;12139:1;12132:31;12182:4;12179:1;12172:15;12206:4;12203:1;12196:15;12222:127;12283:10;12278:3;12274:20;12271:1;12264:31;12314:4;12311:1;12304:15;12338:4;12335:1;12328:15;12354:127;12415:10;12410:3;12406:20;12403:1;12396:31;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:127;12547:10;12542:3;12538:20;12535:1;12528:31;12578:4;12575:1;12568:15;12602:4;12599:1;12592:15;12618:131;-1:-1:-1;;;;;;12692:32:1;;12682:43;;12672:71;;12739:1;12736;12729:12

Swarm Source

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